aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/board/ti/am43xx/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/board/ti/am43xx/board.h')
-rw-r--r--roms/u-boot/board/ti/am43xx/board.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/roms/u-boot/board/ti/am43xx/board.h b/roms/u-boot/board/ti/am43xx/board.h
new file mode 100644
index 000000000..06b737445
--- /dev/null
+++ b/roms/u-boot/board/ti/am43xx/board.h
@@ -0,0 +1,62 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * board.h
+ *
+ * TI AM437x boards information header
+ * Derived from AM335x board.
+ *
+ * Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/
+ */
+
+#ifndef _BOARD_H_
+#define _BOARD_H_
+
+#include <asm/arch/omap.h>
+
+#define DEV_ATTR_MAX_OFFSET 5
+#define DEV_ATTR_MIN_OFFSET 0
+
+static inline int board_is_eposevm(void)
+{
+ return board_ti_is("AM43EPOS");
+}
+
+static inline int board_is_gpevm(void)
+{
+ return board_ti_is("AM43__GP");
+}
+
+static inline int board_is_sk(void)
+{
+ return board_ti_is("AM43__SK");
+}
+
+static inline int board_is_idk(void)
+{
+ return board_ti_is("AM43_IDK");
+}
+
+static inline int board_is_hsevm(void)
+{
+ return board_ti_is("AM43XXHS");
+}
+
+static inline int board_is_evm(void)
+{
+ return board_is_gpevm() || board_is_hsevm();
+}
+
+static inline int board_is_evm_14_or_later(void)
+{
+ return board_is_evm() && strncmp("1.4", board_ti_get_rev(), 3) <= 0;
+}
+
+static inline int board_is_evm_12_or_later(void)
+{
+ return board_is_evm() && strncmp("1.2", board_ti_get_rev(), 3) <= 0;
+}
+
+void enable_uart0_pin_mux(void);
+void enable_board_pin_mux(void);
+void enable_i2c0_pin_mux(void);
+#endif