diff options
author | Felipe Balbi <balbi@ti.com> | 2014-06-10 15:01:20 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-19 17:53:58 -0400 |
commit | 9cb9f3331b20b79c7b1cf6428d4b985860c5dbb6 (patch) | |
tree | beb25f845c53ea13b855e5a11c1a51242dbcf4e8 /board/ti/am43xx/board.h | |
parent | 9f1220a9ca9f583fbb6e85cf43674c4258c85d24 (diff) | |
download | u-boot-9cb9f3331b20b79c7b1cf6428d4b985860c5dbb6.tar.gz |
board: ti: am43xx: add support for AM43xx Starter Kit
AM43xx Starter Kit is a new board based on
AM437x line of SoCs. Being a low-cost EVM and
small size EVM are intended to provide an entry
level development platform on a full fledged
Hardware System.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'board/ti/am43xx/board.h')
-rw-r--r-- | board/ti/am43xx/board.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/board/ti/am43xx/board.h b/board/ti/am43xx/board.h index 091162ee20..017047d2d0 100644 --- a/board/ti/am43xx/board.h +++ b/board/ti/am43xx/board.h @@ -47,6 +47,11 @@ static inline int board_is_gpevm(void) return !strncmp(am43xx_board_name, "AM43__GP", HDR_NAME_LEN); } +static inline int board_is_sk(void) +{ + return !strncmp(am43xx_board_name, "AM43__SK", HDR_NAME_LEN); +} + void enable_uart0_pin_mux(void); void enable_board_pin_mux(void); void enable_i2c0_pin_mux(void); |