]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/thuban.h
dtoc: Avoid very long lines in output
[people/ms/u-boot.git] / include / configs / thuban.h
CommitLineData
c0dcece7
HS
1/*
2 * (C) Copyright 2013 Siemens Schweiz AG
3 * (C) Heiko Schocher, DENX Software Engineering, hs@denx.de.
4 *
5 * Based on:
6 * U-Boot file:/include/configs/am335x_evm.h
7 *
8 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12
8c65a2fa
HS
13#ifndef __CONFIG_THUBAN_H
14#define __CONFIG_THUBAN_H
c0dcece7
HS
15
16#include "siemens-am33x-common.h"
17
56eb3da4
SE
18#define DDR_PLL_FREQ 303
19#undef CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC
c0dcece7 20
8c65a2fa 21#define BOARD_DFU_BUTTON_GPIO 27 /* Use as default */
cc07294b 22#define GPIO_LAN9303_NRST 88 /* GPIO2_24 = gpio88 */
c0dcece7 23
61159b76
HS
24#define CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
25 "button_dfu0=27\0" \
26 "led0=103,1,0\0" \
27 "led1=64,0,1\0"
28
c0dcece7
HS
29 /* Physical Memory Map */
30#define CONFIG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */
31
32/* I2C Configuration */
33#define CONFIG_SYS_I2C_SPEED 100000
34
35#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
36#define EEPROM_ADDR_DDR3 0x90
37#define EEPROM_ADDR_CHIP 0x120
38
c0dcece7 39#undef CONFIG_MII
c0dcece7
HS
40#define CONFIG_PHY_SMSC
41
42#define CONFIG_FACTORYSET
43
61159b76 44/* Define own nand partitions */
8c65a2fa
HS
45#define CONFIG_ENV_OFFSET_REDUND 0x2E0000
46#define CONFIG_ENV_SIZE_REDUND 0x2000
47#define CONFIG_ENV_RANGE (4 * CONFIG_SYS_ENV_SECT_SIZE)
61159b76 48
61159b76
HS
49#define MTDPARTS_DEFAULT MTDPARTS_DEFAULT_V2
50
c0dcece7
HS
51#ifndef CONFIG_SPL_BUILD
52
53/* Default env settings */
54#define CONFIG_EXTRA_ENV_SETTINGS \
8c65a2fa 55 "hostname=thuban\0" \
6b3943f1 56 "ubi_off=2048\0"\
56eb3da4 57 "nand_img_size=0x400000\0" \
c0dcece7 58 "optargs=\0" \
61159b76
HS
59 "preboot=draco_led 0\0" \
60 CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
61 CONFIG_ENV_SETTINGS_V2 \
62 CONFIG_ENV_SETTINGS_NAND_V2
c0dcece7
HS
63
64#ifndef CONFIG_RESTORE_FLASH
65/* set to negative value for no autoboot */
c0dcece7
HS
66
67#define CONFIG_BOOTCOMMAND \
68"if dfubutton; then " \
69 "run dfu_start; " \
70 "reset; " \
71"fi;" \
56eb3da4 72"run nand_boot;" \
61159b76 73"run nand_boot_backup;" \
56eb3da4
SE
74"reset;"
75
c0dcece7 76#else
c0dcece7
HS
77
78#define CONFIG_BOOTCOMMAND \
79 "setenv autoload no; " \
80 "dhcp; " \
81 "if tftp 80000000 debrick.scr; then " \
82 "source 80000000; " \
83 "fi"
84#endif
85#endif /* CONFIG_SPL_BUILD */
8c65a2fa 86#endif /* ! __CONFIG_THUBAN_H */