Yanhong Wang | 39331e4 | 2023-06-15 17:36:48 +0800 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (C) 2023 StarFive Technology Co., Ltd. |
| 4 | * Author: Yanhong Wang<yanhong.wang@starfivetech.com> |
| 5 | */ |
| 6 | |
| 7 | #ifndef _ASM_RISCV_EEPROM_H |
| 8 | #define _ASM_RISCV_EEPROM_H |
| 9 | |
Tom Rini | b6b9900 | 2023-10-12 19:03:59 -0400 | [diff] [blame] | 10 | #include <linux/types.h> |
| 11 | |
Yanhong Wang | 39331e4 | 2023-06-15 17:36:48 +0800 | [diff] [blame] | 12 | u8 get_pcb_revision_from_eeprom(void); |
| 13 | u32 get_ddr_size_from_eeprom(void); |
| 14 | |
| 15 | #endif /* _ASM_RISCV_EEPROM_H */ |