1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2013 Siemens Schweiz AG
7 * U-Boot file:/include/configs/am335x_evm.h
9 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
12 #ifndef __CONFIG_THUBAN_H
13 #define __CONFIG_THUBAN_H
15 #include "siemens-am33x-common.h"
17 #define DDR_PLL_FREQ 303
19 #define BOARD_DFU_BUTTON_GPIO 27 /* Use as default */
20 #define GPIO_LAN9303_NRST 88 /* GPIO2_24 = gpio88 */
22 #define CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
27 /* Physical Memory Map */
28 #define CONFIG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */
30 /* I2C Configuration */
31 #define CONFIG_SYS_I2C_SPEED 100000
33 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
34 #define EEPROM_ADDR_DDR3 0x90
35 #define EEPROM_ADDR_CHIP 0x120
37 #define CONFIG_PHY_SMSC
39 #define CONFIG_FACTORYSET
41 /* Define own nand partitions */
42 #define CONFIG_ENV_RANGE (4 * CONFIG_SYS_ENV_SECT_SIZE)
44 #ifndef CONFIG_SPL_BUILD
46 /* Default env settings */
47 #define CONFIG_EXTRA_ENV_SETTINGS \
50 "nand_img_size=0x400000\0" \
52 "preboot=draco_led 0\0" \
53 CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
54 CONFIG_ENV_SETTINGS_V2 \
55 CONFIG_ENV_SETTINGS_NAND_V2
57 #ifndef CONFIG_RESTORE_FLASH
58 /* set to negative value for no autoboot */
60 #define CONFIG_BOOTCOMMAND \
61 "if dfubutton; then " \
66 "run nand_boot_backup;" \
71 #define CONFIG_BOOTCOMMAND \
72 "setenv autoload no; " \
74 "if tftp 80000000 debrick.scr; then " \
78 #endif /* CONFIG_SPL_BUILD */
79 #endif /* ! __CONFIG_THUBAN_H */