summaryrefslogtreecommitdiff
path: root/board/ti/am43xx/board.h
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2014-12-22 16:26:17 -0600
committerTom Rini <trini@ti.com>2015-01-13 15:26:10 -0500
commit403d70abd9dff451661e884e5b3c75fc611b2425 (patch)
treeb4360b3ba9ed849c9862aadaae9d15cf369b73eb /board/ti/am43xx/board.h
parent78fb6e31669f85943aef8806053d443168cbb4be (diff)
downloadu-boot-imx-403d70abd9dff451661e884e5b3c75fc611b2425.zip
u-boot-imx-403d70abd9dff451661e884e5b3c75fc611b2425.tar.gz
u-boot-imx-403d70abd9dff451661e884e5b3c75fc611b2425.tar.bz2
board: ti: am43xx: add support for AM43xx Industrial Development Kit
AM43xx Industrial Development Kit is a new board based on AM437x line of SoCs. Targetted at Industrial Automation applications, it comes with EtherCAT, motor control and other goodies. Thanks to James Doublesin for all the help. Cc: James Doublesin <doublesin@ti.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'board/ti/am43xx/board.h')
-rw-r--r--board/ti/am43xx/board.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/board/ti/am43xx/board.h b/board/ti/am43xx/board.h
index 8e12191..eb9493e 100644
--- a/board/ti/am43xx/board.h
+++ b/board/ti/am43xx/board.h
@@ -53,6 +53,11 @@ static inline int board_is_sk(void)
return !strncmp(am43xx_board_name, "AM43__SK", HDR_NAME_LEN);
}
+static inline int board_is_idk(void)
+{
+ return !strncmp(am43xx_board_name, "AM43_IDK", HDR_NAME_LEN);
+}
+
static inline int board_is_evm_14_or_later(void)
{
return (board_is_gpevm() && strncmp("1.4", am43xx_board_rev, 3) <= 0);