]>
Commit | Line | Data |
---|---|---|
578056c3 HS |
1 | /* |
2 | * (C) Copyright 2013 Siemens Schweiz AG | |
3 | * (C) Heiko Schocher, DENX Software Engineering, [email protected]. | |
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 | ||
13 | #ifndef __CONFIG_RASTABAN_H | |
14 | #define __CONFIG_RASTABAN_H | |
15 | ||
16 | #include "siemens-am33x-common.h" | |
17 | ||
18 | #define CONFIG_DISPLAY_CPUINFO | |
19 | #define CONFIG_SYS_MPUCLK 300 | |
20 | #define DDR_PLL_FREQ 303 | |
21 | #undef CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC | |
22 | ||
23 | /* FWD Button = 27 | |
24 | * SRV Button = 87 */ | |
25 | #define BOARD_DFU_BUTTON_GPIO 27 | |
26 | #define GPIO_LAN9303_NRST 88 /* GPIO2_24 = gpio88 */ | |
27 | /* In dfu mode keep led1 on */ | |
28 | #define CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \ | |
29 | "button_dfu0=27\0" \ | |
30 | "button_dfu1=87\0" \ | |
31 | "led0=3,0,1\0" \ | |
32 | "led1=4,0,0\0" \ | |
33 | "led2=5,0,1\0" \ | |
34 | "led3=62,0,1\0" \ | |
35 | "led4=60,0,1\0" \ | |
36 | "led5=63,0,1\0" | |
37 | ||
38 | #undef CONFIG_DOS_PARTITION | |
578056c3 HS |
39 | |
40 | #define CONFIG_BOARD_LATE_INIT | |
41 | ||
42 | /* Physical Memory Map */ | |
43 | #define CONFIG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */ | |
44 | ||
45 | /* I2C Configuration */ | |
46 | #define CONFIG_SYS_I2C_SPEED 100000 | |
47 | ||
48 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 | |
49 | #define EEPROM_ADDR_DDR3 0x90 | |
50 | #define EEPROM_ADDR_CHIP 0x120 | |
51 | ||
52 | #define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS 0x300 | |
53 | ||
54 | #undef CONFIG_SPL_NET_SUPPORT | |
55 | #undef CONFIG_SPL_NET_VCI_STRING | |
56 | #undef CONFIG_SPL_ETH_SUPPORT | |
57 | ||
58 | #undef CONFIG_MII | |
59 | #undef CONFIG_PHY_GIGE | |
60 | #define CONFIG_PHY_SMSC | |
61 | ||
62 | #define CONFIG_FACTORYSET | |
63 | ||
64 | /* Watchdog */ | |
65 | #define CONFIG_OMAP_WATCHDOG | |
66 | ||
67 | /* Define own nand partitions */ | |
68 | #define CONFIG_ENV_OFFSET_REDUND 0x2E0000 | |
69 | #define CONFIG_ENV_SIZE_REDUND 0x2000 | |
70 | #define CONFIG_ENV_RANGE (4 * CONFIG_SYS_ENV_SECT_SIZE) | |
71 | ||
578056c3 HS |
72 | #define MTDPARTS_DEFAULT MTDPARTS_DEFAULT_V3 |
73 | ||
74 | #ifndef CONFIG_SPL_BUILD | |
75 | ||
76 | /* Default env settings */ | |
77 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
78 | "hostname=rastaban\0" \ | |
6b3943f1 | 79 | "ubi_off=2048\0"\ |
578056c3 HS |
80 | "nand_img_size=0x400000\0" \ |
81 | "optargs=\0" \ | |
82 | "preboot=draco_led 0\0" \ | |
83 | CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \ | |
84 | CONFIG_ENV_SETTINGS_V2 \ | |
85 | CONFIG_ENV_SETTINGS_NAND_V2 | |
86 | ||
87 | #ifndef CONFIG_RESTORE_FLASH | |
88 | /* set to negative value for no autoboot */ | |
578056c3 HS |
89 | |
90 | #define CONFIG_BOOTCOMMAND \ | |
91 | "if dfubutton; then " \ | |
92 | "run dfu_start; " \ | |
93 | "reset; " \ | |
94 | "fi;" \ | |
95 | "run nand_boot;" \ | |
96 | "run nand_boot_backup;" \ | |
97 | "reset;" | |
98 | ||
578056c3 | 99 | #else |
578056c3 HS |
100 | |
101 | #define CONFIG_BOOTCOMMAND \ | |
102 | "setenv autoload no; " \ | |
103 | "dhcp; " \ | |
104 | "if tftp 80000000 debrick.scr; then " \ | |
105 | "source 80000000; " \ | |
106 | "fi" | |
107 | #endif | |
108 | #endif /* CONFIG_SPL_BUILD */ | |
109 | #endif /* ! __CONFIG_RASTABAN_H */ |