blob: 5516ecfcdf5c79420d48b7c890d3952bac65dd28 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Angelo Dureghelloa3730242017-08-07 01:17:18 +02002/*
3 * Sysam stmark2 board configuration
4 *
5 * (C) Copyright 2017 Angelo Dureghello <angelo@sysam.it>
Angelo Dureghelloa3730242017-08-07 01:17:18 +02006 */
7
8#ifndef __STMARK2_CONFIG_H
9#define __STMARK2_CONFIG_H
10
Mario Six5bc05432018-03-28 14:38:20 +020011#define CONFIG_HOSTNAME "stmark2"
Angelo Dureghelloa3730242017-08-07 01:17:18 +020012
13#define CONFIG_MCFUART
14#define CONFIG_SYS_UART_PORT 0
15#define CONFIG_SYS_BAUDRATE_TABLE { 9600 , 19200 , 38400 , 57600, 115200 }
16
17#define LDS_BOARD_TEXT \
18 board/sysam/stmark2/sbf_dram_init.o (.text*)
19
20#define CONFIG_TIMESTAMP
21
Angelo Dureghelloa3730242017-08-07 01:17:18 +020022#define CONFIG_BOOTCOMMAND \
23 "sf probe 0:1 50000000; " \
24 "sf read ${loadaddr} 0x100000 ${kern_size}; " \
25 "bootm ${loadaddr}"
26
27#define CONFIG_EXTRA_ENV_SETTINGS \
28 "kern_size=0x700000\0" \
29 "loadaddr=0x40001000\0" \
30 "-(rootfs)\0" \
31 "update_uboot=loady ${loadaddr}; " \
32 "sf probe 0:1 50000000; " \
33 "sf erase 0 0x80000; " \
34 "sf write ${loadaddr} 0 ${filesize}\0" \
35 "update_kernel=loady ${loadaddr}; " \
36 "setenv kern_size ${filesize}; saveenv; " \
37 "sf probe 0:1 50000000; " \
38 "sf erase 0x100000 0x700000; " \
39 "sf write ${loadaddr} 0x100000 ${filesize}\0" \
40 "update_rootfs=loady ${loadaddr}; " \
41 "sf probe 0:1 50000000; " \
42 "sf erase 0x00800000 0x100000; " \
43 "sf write ${loadaddr} 0x00800000 ${filesize}\0" \
44 ""
45
46/* Realtime clock */
47#undef CONFIG_MCFRTC
48#define CONFIG_RTC_MCFRRTC
49#define CONFIG_SYS_MCFRRTC_BASE 0xFC0A8000
50
51/* spi not partitions */
Angelo Dureghelloa3730242017-08-07 01:17:18 +020052#define CONFIG_JFFS2_DEV "nor0"
Angelo Dureghelloa3730242017-08-07 01:17:18 +020053
54/* Timer */
55#define CONFIG_MCFTMR
Angelo Dureghelloa3730242017-08-07 01:17:18 +020056
57/* DSPI and Serial Flash */
Angelo Dureghelloa3730242017-08-07 01:17:18 +020058#define CONFIG_CF_DSPI
Angelo Dureghelloa3730242017-08-07 01:17:18 +020059#define CONFIG_SERIAL_FLASH
Angelo Dureghelloa3730242017-08-07 01:17:18 +020060
61#define CONFIG_SYS_SBFHDR_SIZE 0x7
62
Angelo Dureghelloa3730242017-08-07 01:17:18 +020063/* Input, PCI, Flexbus, and VCO */
64#define CONFIG_EXTRA_CLOCK
65
66#define CONFIG_PRAM 2048 /* 2048 KB */
Angelo Dureghelloa3730242017-08-07 01:17:18 +020067#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
68
69/* Print Buffer Size */
70#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
71 sizeof(CONFIG_SYS_PROMPT) + 16)
72#define CONFIG_SYS_MAXARGS 16
73/* Boot Argument Buffer Size */
74#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
75
Angelo Dureghelloa3730242017-08-07 01:17:18 +020076#define CONFIG_SYS_MBAR 0xFC000000
77
78/*
79 * Definitions for initial stack pointer and data area (in internal SRAM)
80 */
81#define CONFIG_SYS_INIT_RAM_ADDR 0x80000000
82/* End of used area in internal SRAM */
83#define CONFIG_SYS_INIT_RAM_SIZE 0x10000
84#define CONFIG_SYS_INIT_RAM_CTRL 0x221
85#define CONFIG_SYS_GBL_DATA_OFFSET ((CONFIG_SYS_INIT_RAM_SIZE - \
86 GENERATED_GBL_DATA_SIZE) - 32)
87#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
88#define CONFIG_SYS_SBFHDR_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - 32)
89
90/*
91 * Start addresses for the final memory configuration
92 * (Set up by the startup code)
93 * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
94 */
95#define CONFIG_SYS_SDRAM_BASE 0x40000000
96#define CONFIG_SYS_SDRAM_SIZE 128 /* SDRAM size in MB */
97
Angelo Dureghelloa3730242017-08-07 01:17:18 +020098#define CONFIG_SYS_DRAM_TEST
99
100#if defined(CONFIG_CF_SBF)
101#define CONFIG_SERIAL_BOOT
102#endif
103
104#if defined(CONFIG_SERIAL_BOOT)
105#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_TEXT_BASE + 0x400)
106#else
107#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_FLASH_BASE + 0x400)
108#endif
109
110#define CONFIG_SYS_BOOTPARAMS_LEN (64 * 1024)
111/* Reserve 256 kB for Monitor */
112#define CONFIG_SYS_MONITOR_LEN (256 << 10)
Angelo Dureghelloa3730242017-08-07 01:17:18 +0200113
114/*
115 * For booting Linux, the board info and command line data
116 * have to be in the first 8 MB of memory, since this is
117 * the maximum mapped by the Linux kernel during initialization ??
118 */
119/* Initial Memory map for Linux */
120#define CONFIG_SYS_BOOTMAPSZ (CONFIG_SYS_SDRAM_BASE + \
121 (CONFIG_SYS_SDRAM_SIZE << 20))
122
123/* Configuration for environment
124 * Environment is embedded in u-boot in the second sector of the flash
125 */
126
127#if defined(CONFIG_CF_SBF)
128#define CONFIG_ENV_IS_IN_SPI_FLASH 1
Angelo Dureghelloa3730242017-08-07 01:17:18 +0200129#endif
130
Angelo Dureghelloa3730242017-08-07 01:17:18 +0200131/* Cache Configuration */
Angelo Dureghelloa3730242017-08-07 01:17:18 +0200132#define ICACHE_STATUS (CONFIG_SYS_INIT_RAM_ADDR + \
133 CONFIG_SYS_INIT_RAM_SIZE - 8)
134#define DCACHE_STATUS (CONFIG_SYS_INIT_RAM_ADDR + \
135 CONFIG_SYS_INIT_RAM_SIZE - 4)
136#define CONFIG_SYS_ICACHE_INV (CF_CACR_BCINVA + CF_CACR_ICINVA)
137#define CONFIG_SYS_DCACHE_INV (CF_CACR_DCINVA)
138#define CONFIG_SYS_CACHE_ACR2 (CONFIG_SYS_SDRAM_BASE | \
139 CF_ADDRMASK(CONFIG_SYS_SDRAM_SIZE) | \
140 CF_ACR_EN | CF_ACR_SM_ALL)
141#define CONFIG_SYS_CACHE_ICACR (CF_CACR_BEC | CF_CACR_IEC | \
142 CF_CACR_ICINVA | CF_CACR_EUSP)
143#define CONFIG_SYS_CACHE_DCACR ((CONFIG_SYS_CACHE_ICACR | \
144 CF_CACR_DEC | CF_CACR_DDCM_P | \
145 CF_CACR_DCINVA) & ~CF_CACR_ICINVA)
146
147#define CACR_STATUS (CONFIG_SYS_INIT_RAM_ADDR + \
148 CONFIG_SYS_INIT_RAM_SIZE - 12)
149
Angelo Durgehelloff56f2b2019-11-15 23:54:15 +0100150#ifdef CONFIG_MCFFEC
151#define CONFIG_MII_INIT 1
152#define CONFIG_SYS_DISCOVER_PHY
153#define CONFIG_SYS_RX_ETH_BUFFER 8
154#define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
155/* If CONFIG_SYS_DISCOVER_PHY is not defined - hardcoded */
156#ifndef CONFIG_SYS_DISCOVER_PHY
157#define FECDUPLEX FULL
158#define FECSPEED _100BASET
159#else
160#ifndef CONFIG_SYS_FAULT_ECHO_LINK_DOWN
161#define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
162#endif
163#endif /* CONFIG_SYS_DISCOVER_PHY */
164#endif
Angelo Dureghelloa3730242017-08-07 01:17:18 +0200165#endif /* __STMARK2_CONFIG_H */