u-boot-brain/board/ti/am43xx/board.h
Madan Srinivas a5051b727e ti: AM43xx: board: Detect AM43xx HS EVM
Adds code to detect AM43xx HS EVMS - the string in the
I2C EEPROM for HS EVMs differs from GP EVMs. Adds code to
for evm detection, regardless of whether the evm is for
GP or HS parts, and updates board init to use that.

Modifies findfdt command to pick up am437x-gp-evm.dtb for
the HS EVMs also, as the boards are similar except for
some security specific changes around power supply and
enclosure protection.

Signed-off-by: Madan Srinivas <madans@ti.com>
Signed-off-by: Daniel Allred <d-allred@ti.com>
Signed-off-by: Andreas Dannenberg <dannenberg@ti.com>

Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
2016-05-27 15:41:35 -04:00

64 lines
1.1 KiB
C

/*
* board.h
*
* TI AM437x boards information header
* Derived from AM335x board.
*
* Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/
*
* SPDX-License-Identifier: GPL-2.0+
*/
#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