diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/board/ti/ks2_evm/board.h | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/board/ti/ks2_evm/board.h')
-rw-r--r-- | roms/u-boot/board/ti/ks2_evm/board.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/roms/u-boot/board/ti/ks2_evm/board.h b/roms/u-boot/board/ti/ks2_evm/board.h new file mode 100644 index 000000000..93fc3887f --- /dev/null +++ b/roms/u-boot/board/ti/ks2_evm/board.h @@ -0,0 +1,49 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * K2HK EVM : Board common header + * + * (C) Copyright 2014 + * Texas Instruments Incorporated, <www.ti.com> + */ + +#ifndef _KS2_BOARD +#define _KS2_BOARD + +#include <asm/ti-common/keystone_net.h> +#include "../common/board_detect.h" + +#if defined(CONFIG_TI_I2C_BOARD_DETECT) +static inline int board_is_k2g_gp(void) +{ + return board_ti_is("66AK2GGP"); +} +static inline int board_is_k2g_g1(void) +{ + return board_ti_is("66AK2GG1"); +} +static inline int board_is_k2g_ice(void) +{ + return board_ti_is("66AK2GIC"); +} +static inline int board_is_k2g_i1(void) +{ + return board_ti_is("66AK2GI1"); +} +#else +static inline int board_is_k2g_gp(void) +{ + return false; +} +static inline int board_is_k2g_ice(void) +{ + return false; +} +static inline int board_is_k2g_i1(void) +{ + return false; +} +#endif + +void spl_init_keystone_plls(void); + +#endif |