]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/thuban.h
config: Move CONFIG_BOARD_LATE_INIT to defconfigs
[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
61159b76 18#define CONFIG_SYS_MPUCLK 300
56eb3da4
SE
19#define DDR_PLL_FREQ 303
20#undef CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC
c0dcece7 21
8c65a2fa 22#define BOARD_DFU_BUTTON_GPIO 27 /* Use as default */
cc07294b 23#define GPIO_LAN9303_NRST 88 /* GPIO2_24 = gpio88 */
c0dcece7 24
61159b76
HS
25#define CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
26 "button_dfu0=27\0" \
27 "led0=103,1,0\0" \
28 "led1=64,0,1\0"
29
c0dcece7 30#undef CONFIG_DOS_PARTITION
c0dcece7 31
c0dcece7
HS
32 /* Physical Memory Map */
33#define CONFIG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */
34
35/* I2C Configuration */
36#define CONFIG_SYS_I2C_SPEED 100000
37
38#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
39#define EEPROM_ADDR_DDR3 0x90
40#define EEPROM_ADDR_CHIP 0x120
41
c0dcece7
HS
42#undef CONFIG_MII
43#undef CONFIG_PHY_GIGE
c0dcece7
HS
44#define CONFIG_PHY_SMSC
45
46#define CONFIG_FACTORYSET
47
48/* Watchdog */
49#define CONFIG_OMAP_WATCHDOG
50
61159b76 51/* Define own nand partitions */
8c65a2fa
HS
52#define CONFIG_ENV_OFFSET_REDUND 0x2E0000
53#define CONFIG_ENV_SIZE_REDUND 0x2000
54#define CONFIG_ENV_RANGE (4 * CONFIG_SYS_ENV_SECT_SIZE)
61159b76 55
61159b76
HS
56#define MTDPARTS_DEFAULT MTDPARTS_DEFAULT_V2
57
c0dcece7
HS
58#ifndef CONFIG_SPL_BUILD
59
60/* Default env settings */
61#define CONFIG_EXTRA_ENV_SETTINGS \
8c65a2fa 62 "hostname=thuban\0" \
6b3943f1 63 "ubi_off=2048\0"\
56eb3da4 64 "nand_img_size=0x400000\0" \
c0dcece7 65 "optargs=\0" \
61159b76
HS
66 "preboot=draco_led 0\0" \
67 CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
68 CONFIG_ENV_SETTINGS_V2 \
69 CONFIG_ENV_SETTINGS_NAND_V2
c0dcece7
HS
70
71#ifndef CONFIG_RESTORE_FLASH
72/* set to negative value for no autoboot */
c0dcece7
HS
73
74#define CONFIG_BOOTCOMMAND \
75"if dfubutton; then " \
76 "run dfu_start; " \
77 "reset; " \
78"fi;" \
56eb3da4 79"run nand_boot;" \
61159b76 80"run nand_boot_backup;" \
56eb3da4
SE
81"reset;"
82
c0dcece7 83#else
c0dcece7
HS
84
85#define CONFIG_BOOTCOMMAND \
86 "setenv autoload no; " \
87 "dhcp; " \
88 "if tftp 80000000 debrick.scr; then " \
89 "source 80000000; " \
90 "fi"
91#endif
92#endif /* CONFIG_SPL_BUILD */
8c65a2fa 93#endif /* ! __CONFIG_THUBAN_H */