]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/samsung/exynos5-dt-types.h
mtd/spi: fix block count for is25lq040b
[people/ms/u-boot.git] / include / samsung / exynos5-dt-types.h
1 #ifndef _EXYNOS5_DT_H_
2 #define _EXYNOS5_DT_H_
3
4 enum {
5 EXYNOS5_BOARD_GENERIC,
6
7 EXYNOS5_BOARD_ODROID_XU3,
8 EXYNOS5_BOARD_ODROID_XU3_REV01,
9 EXYNOS5_BOARD_ODROID_XU3_REV02,
10 EXYNOS5_BOARD_ODROID_XU4_REV01,
11 EXYNOS5_BOARD_ODROID_UNKNOWN,
12
13 EXYNOS5_BOARD_COUNT,
14 };
15
16 struct odroid_rev_info {
17 int board_type;
18 int board_rev;
19 int adc_val;
20 const char *name;
21 };
22
23 bool board_is_generic(void);
24 bool board_is_odroidxu3(void);
25 bool board_is_odroidxu4(void);
26
27 #endif