diff options
author | Tom Rini <trini@konsulko.com> | 2015-11-05 07:46:45 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-11-05 07:46:45 -0500 |
commit | 60b25259a5540686add02cf6c94cd7494a3e2d23 (patch) | |
tree | abccf513238a9bab314b4672858512801da85580 /include/samsung/exynos5-dt-types.h | |
parent | 1674942ad777bc1ae26fe93684836dcd8820f47f (diff) | |
parent | 58cb44cf6623faeebd9b04ac44cf11d2eb39ea36 (diff) |
Merge git://git.denx.de/u-boot-samsung
Diffstat (limited to 'include/samsung/exynos5-dt-types.h')
-rw-r--r-- | include/samsung/exynos5-dt-types.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/samsung/exynos5-dt-types.h b/include/samsung/exynos5-dt-types.h new file mode 100644 index 0000000000..479e2e793d --- /dev/null +++ b/include/samsung/exynos5-dt-types.h @@ -0,0 +1,27 @@ +#ifndef _EXYNOS5_DT_H_ +#define _EXYNOS5_DT_H_ + +enum { + EXYNOS5_BOARD_GENERIC, + + EXYNOS5_BOARD_ODROID_XU3, + EXYNOS5_BOARD_ODROID_XU3_REV01, + EXYNOS5_BOARD_ODROID_XU3_REV02, + EXYNOS5_BOARD_ODROID_XU4_REV01, + EXYNOS5_BOARD_ODROID_UNKNOWN, + + EXYNOS5_BOARD_COUNT, +}; + +struct odroid_rev_info { + int board_type; + int board_rev; + int adc_val; + const char *name; +}; + +bool board_is_generic(void); +bool board_is_odroidxu3(void); +bool board_is_odroidxu4(void); + +#endif |