blob: 18a57f2231b68470709033f88236ac3832622441 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Angelo Dureghello67c4e482017-08-07 01:17:18 +02002/*
3 * Sysam stmark2 board configuration
4 *
5 * (C) Copyright 2017 Angelo Dureghello <angelo@sysam.it>
Angelo Dureghello67c4e482017-08-07 01:17:18 +02006 */
7
8#ifndef __STMARK2_CONFIG_H
9#define __STMARK2_CONFIG_H
10
Mario Six790d8442018-03-28 14:38:20 +020011#define CONFIG_HOSTNAME "stmark2"
Angelo Dureghello67c4e482017-08-07 01:17:18 +020012
Angelo Dureghello67c4e482017-08-07 01:17:18 +020013#define CONFIG_SYS_UART_PORT 0
Angelo Dureghello67c4e482017-08-07 01:17:18 +020014
15#define LDS_BOARD_TEXT \
16 board/sysam/stmark2/sbf_dram_init.o (.text*)
17
18#define CONFIG_TIMESTAMP
19
Angelo Dureghello67c4e482017-08-07 01:17:18 +020020#define CONFIG_EXTRA_ENV_SETTINGS \
21 "kern_size=0x700000\0" \
22 "loadaddr=0x40001000\0" \
23 "-(rootfs)\0" \
24 "update_uboot=loady ${loadaddr}; " \
25 "sf probe 0:1 50000000; " \
26 "sf erase 0 0x80000; " \
27 "sf write ${loadaddr} 0 ${filesize}\0" \
28 "update_kernel=loady ${loadaddr}; " \
29 "setenv kern_size ${filesize}; saveenv; " \
30 "sf probe 0:1 50000000; " \
31 "sf erase 0x100000 0x700000; " \
32 "sf write ${loadaddr} 0x100000 ${filesize}\0" \
33 "update_rootfs=loady ${loadaddr}; " \
34 "sf probe 0:1 50000000; " \
35 "sf erase 0x00800000 0x100000; " \
36 "sf write ${loadaddr} 0x00800000 ${filesize}\0" \
37 ""
38
39/* Realtime clock */
40#undef CONFIG_MCFRTC
41#define CONFIG_RTC_MCFRRTC
42#define CONFIG_SYS_MCFRRTC_BASE 0xFC0A8000
43
Angelo Dureghello67c4e482017-08-07 01:17:18 +020044/* Timer */
45#define CONFIG_MCFTMR
Angelo Dureghello67c4e482017-08-07 01:17:18 +020046
47/* DSPI and Serial Flash */
Angelo Dureghello67c4e482017-08-07 01:17:18 +020048#define CONFIG_CF_DSPI
Angelo Dureghello67c4e482017-08-07 01:17:18 +020049#define CONFIG_SERIAL_FLASH
Angelo Dureghello67c4e482017-08-07 01:17:18 +020050
51#define CONFIG_SYS_SBFHDR_SIZE 0x7
52
Angelo Dureghello67c4e482017-08-07 01:17:18 +020053/* Input, PCI, Flexbus, and VCO */
54#define CONFIG_EXTRA_CLOCK
55
56#define CONFIG_PRAM 2048 /* 2048 KB */
Angelo Dureghello67c4e482017-08-07 01:17:18 +020057#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
58
59/* Print Buffer Size */
60#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
61 sizeof(CONFIG_SYS_PROMPT) + 16)
62#define CONFIG_SYS_MAXARGS 16
63/* Boot Argument Buffer Size */
64#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
65
Angelo Dureghello67c4e482017-08-07 01:17:18 +020066#define CONFIG_SYS_MBAR 0xFC000000
67
68/*
69 * Definitions for initial stack pointer and data area (in internal SRAM)
70 */
71#define CONFIG_SYS_INIT_RAM_ADDR 0x80000000
72/* End of used area in internal SRAM */
73#define CONFIG_SYS_INIT_RAM_SIZE 0x10000
74#define CONFIG_SYS_INIT_RAM_CTRL 0x221
75#define CONFIG_SYS_GBL_DATA_OFFSET ((CONFIG_SYS_INIT_RAM_SIZE - \
76 GENERATED_GBL_DATA_SIZE) - 32)
77#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
78#define CONFIG_SYS_SBFHDR_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - 32)
79
80/*
81 * Start addresses for the final memory configuration
82 * (Set up by the startup code)
83 * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
84 */
85#define CONFIG_SYS_SDRAM_BASE 0x40000000
86#define CONFIG_SYS_SDRAM_SIZE 128 /* SDRAM size in MB */
87
Angelo Dureghello67c4e482017-08-07 01:17:18 +020088#define CONFIG_SYS_DRAM_TEST
89
90#if defined(CONFIG_CF_SBF)
91#define CONFIG_SERIAL_BOOT
92#endif
93
94#if defined(CONFIG_SERIAL_BOOT)
95#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_TEXT_BASE + 0x400)
96#else
97#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_FLASH_BASE + 0x400)
98#endif
99
100#define CONFIG_SYS_BOOTPARAMS_LEN (64 * 1024)
101/* Reserve 256 kB for Monitor */
102#define CONFIG_SYS_MONITOR_LEN (256 << 10)
Angelo Dureghello67c4e482017-08-07 01:17:18 +0200103
104/*
105 * For booting Linux, the board info and command line data
106 * have to be in the first 8 MB of memory, since this is
107 * the maximum mapped by the Linux kernel during initialization ??
108 */
109/* Initial Memory map for Linux */
110#define CONFIG_SYS_BOOTMAPSZ (CONFIG_SYS_SDRAM_BASE + \
111 (CONFIG_SYS_SDRAM_SIZE << 20))
112
113/* Configuration for environment
114 * Environment is embedded in u-boot in the second sector of the flash
115 */
116
Angelo Dureghello67c4e482017-08-07 01:17:18 +0200117/* Cache Configuration */
Angelo Dureghello67c4e482017-08-07 01:17:18 +0200118#define ICACHE_STATUS (CONFIG_SYS_INIT_RAM_ADDR + \
119 CONFIG_SYS_INIT_RAM_SIZE - 8)
120#define DCACHE_STATUS (CONFIG_SYS_INIT_RAM_ADDR + \
121 CONFIG_SYS_INIT_RAM_SIZE - 4)
122#define CONFIG_SYS_ICACHE_INV (CF_CACR_BCINVA + CF_CACR_ICINVA)
123#define CONFIG_SYS_DCACHE_INV (CF_CACR_DCINVA)
124#define CONFIG_SYS_CACHE_ACR2 (CONFIG_SYS_SDRAM_BASE | \
125 CF_ADDRMASK(CONFIG_SYS_SDRAM_SIZE) | \
126 CF_ACR_EN | CF_ACR_SM_ALL)
127#define CONFIG_SYS_CACHE_ICACR (CF_CACR_BEC | CF_CACR_IEC | \
128 CF_CACR_ICINVA | CF_CACR_EUSP)
129#define CONFIG_SYS_CACHE_DCACR ((CONFIG_SYS_CACHE_ICACR | \
130 CF_CACR_DEC | CF_CACR_DDCM_P | \
131 CF_CACR_DCINVA) & ~CF_CACR_ICINVA)
132
133#define CACR_STATUS (CONFIG_SYS_INIT_RAM_ADDR + \
134 CONFIG_SYS_INIT_RAM_SIZE - 12)
135
Angelo Durgehello68d46ad2019-11-15 23:54:15 +0100136#ifdef CONFIG_MCFFEC
137#define CONFIG_MII_INIT 1
138#define CONFIG_SYS_DISCOVER_PHY
139#define CONFIG_SYS_RX_ETH_BUFFER 8
140#define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
141/* If CONFIG_SYS_DISCOVER_PHY is not defined - hardcoded */
142#ifndef CONFIG_SYS_DISCOVER_PHY
143#define FECDUPLEX FULL
144#define FECSPEED _100BASET
145#else
146#ifndef CONFIG_SYS_FAULT_ECHO_LINK_DOWN
147#define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
148#endif
149#endif /* CONFIG_SYS_DISCOVER_PHY */
150#endif
Angelo Dureghello67c4e482017-08-07 01:17:18 +0200151#endif /* __STMARK2_CONFIG_H */