xref: /openbmc/u-boot/include/configs/dra7xx_evm.h (revision 1a4596601fd395f3afb8f82f3f840c5e00bdd57a)
1 /*
2  * (C) Copyright 2013
3  * Texas Instruments Incorporated.
4  * Lokesh Vutla	  <lokeshvutla@ti.com>
5  *
6  * Configuration settings for the TI DRA7XX board.
7  * See omap5_common.h for omap5 common settings.
8  *
9  * SPDX-License-Identifier:	GPL-2.0+
10  */
11 
12 #ifndef __CONFIG_DRA7XX_EVM_H
13 #define __CONFIG_DRA7XX_EVM_H
14 
15 /* High Level Configuration Options */
16 #define CONFIG_DRA7XX		/* in a TI DRA7XX core */
17 #define CONFIG_ENV_IS_NOWHERE		/* For now. */
18 
19 #include <configs/omap5_common.h>
20 
21 #define CONFIG_SYS_PROMPT		"DRA752 EVM # "
22 
23 #define CONFIG_CONS_INDEX		1
24 #define CONFIG_SYS_NS16550_COM1		UART1_BASE
25 #define CONFIG_BAUDRATE			115200
26 
27 #define CONFIG_SYS_OMAP_ABE_SYSCK
28 
29 #define CONSOLEDEV		"ttyO0"
30 
31 #endif /* __CONFIG_DRA7XX_EVM_H */
32