1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2011-2012
4 * Pali Rohár <pali@kernel.org>
7 * Alistair Buxton <a.j.buxton@gmail.com>
9 * Derived from Beagle Board code:
10 * (C) Copyright 2006-2008
12 * Richard Woodruff <r-woodruff2@ti.com>
13 * Syed Mohammed Khasim <x0khasim@ti.com>
15 * Configuration settings for the Nokia RX-51 aka N900.
22 * High Level Configuration Options
24 #define CONFIG_SYS_L2CACHE_OFF /* pretend there is no L2 CACHE */
26 #define CONFIG_MACH_TYPE MACH_TYPE_NOKIA_RX51
28 #include <asm/arch/cpu.h> /* get chip and board defs */
29 #include <asm/arch/omap.h>
30 #include <asm/arch/mem.h>
31 #include <linux/stringify.h>
34 #define V_OSCK 26000000 /* Clock output from T2 */
35 #define V_SCLK (V_OSCK >> 1)
37 #define CONFIG_SKIP_LOWLEVEL_INIT /* X-Loader set everything up */
39 #define CONFIG_CMDLINE_TAG /* enable passing kernel command line string */
40 #define CONFIG_INITRD_TAG /* enable passing initrd */
41 #define CONFIG_REVISION_TAG /* enable passing revision tag*/
42 #define CONFIG_SETUP_MEMORY_TAGS /* enable memory tag */
45 * Size of malloc() pool
47 #define CONFIG_UBI_SIZE (512 << 10)
48 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + CONFIG_UBI_SIZE + \
56 * NS16550 Configuration
58 #define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
60 #define CONFIG_SYS_NS16550_SERIAL
61 #define CONFIG_SYS_NS16550_REG_SIZE (-4)
62 #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
65 * select serial console configuration
67 #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
69 #define CONFIG_SYS_BAUDRATE_TABLE { 4800, 9600, 19200, 38400, 57600, 115200 }
71 /* USB device configuration */
72 #define CONFIG_USB_DEVICE
73 #define CONFIG_USBD_VENDORID 0x0421
74 #define CONFIG_USBD_PRODUCTID 0x01c8
75 #define CONFIG_USBD_MANUFACTURER "Nokia"
76 #define CONFIG_USBD_PRODUCT_NAME "N900"
78 /* commands to include */
80 #define CONFIG_SYS_I2C
92 #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
94 /* Watchdog support */
95 #define CONFIG_HW_WATCHDOG
101 #define CONFIG_VIDEO_LOGO
102 #define VIDEO_FB_16BPP_PIXEL_SWAP
103 #define VIDEO_FB_16BPP_WORD_SWAP
105 /* functions for cfb_console */
106 #define VIDEO_KBD_INIT_FCT rx51_kp_init()
107 #define VIDEO_TSTC_FCT rx51_kp_tstc
108 #define VIDEO_GETC_FCT rx51_kp_getc
111 int rx51_kp_init(void);
112 int rx51_kp_tstc(struct stdio_dev *sdev);
113 int rx51_kp_getc(struct stdio_dev *sdev);
116 /* Environment information */
117 #define CONFIG_EXTRA_ENV_SETTINGS \
119 "stdin=serial,vga\0" \
120 "stdout=serial,vga\0" \
121 "stderr=serial,vga\0" \
122 "setcon=setenv stdin ${con};" \
123 "setenv stdout ${con};" \
124 "setenv stderr ${con}\0" \
125 "sercon=setenv con serial; run setcon\0" \
126 "usbcon=setenv con usbtty; run setcon\0" \
127 "vgacon=setenv con vga; run setcon\0" \
128 "slide=gpio input " __stringify(GPIO_SLIDE) "\0" \
129 "switchmmc=mmc dev ${mmcnum}\0" \
130 "kernaddr=0x82008000\0" \
131 "initrdaddr=0x84008000\0" \
132 "scriptaddr=0x86008000\0" \
133 "fileload=${mmctype}load mmc ${mmcnum}:${mmcpart} " \
134 "${loadaddr} ${mmcfile}\0" \
135 "kernload=setenv loadaddr ${kernaddr};" \
136 "setenv mmcfile ${mmckernfile};" \
138 "initrdload=setenv loadaddr ${initrdaddr};" \
139 "setenv mmcfile ${mmcinitrdfile};" \
141 "scriptload=setenv loadaddr ${scriptaddr};" \
142 "setenv mmcfile ${mmcscriptfile};" \
144 "scriptboot=echo Running ${mmcscriptfile} from mmc " \
145 "${mmcnum}:${mmcpart} ...; source ${scriptaddr}\0" \
146 "kernboot=echo Booting ${mmckernfile} from mmc " \
147 "${mmcnum}:${mmcpart} ...; bootm ${kernaddr}\0" \
148 "kerninitrdboot=echo Booting ${mmckernfile} ${mmcinitrdfile} from mmc "\
149 "${mmcnum}:${mmcpart} ...; bootm ${kernaddr} ${initrdaddr}\0" \
150 "attachboot=echo Booting attached kernel image ...;" \
151 "setenv setup_omap_atag 1;" \
152 "bootm ${attkernaddr};" \
153 "setenv setup_omap_atag\0" \
154 "trymmcscriptboot=if run switchmmc; then " \
155 "if run scriptload; then " \
159 "trymmckernboot=if run switchmmc; then " \
160 "if run kernload; then " \
164 "trymmckerninitrdboot=if run switchmmc; then " \
165 "if run initrdload; then " \
166 "if run kernload; then " \
167 "run kerninitrdboot;" \
171 "trymmcpartboot=setenv mmcscriptfile boot.scr; run trymmcscriptboot;" \
172 "setenv mmckernfile uImage; run trymmckernboot\0" \
173 "trymmcallpartboot=setenv mmcpart 1; run trymmcpartboot;" \
174 "setenv mmcpart 2; run trymmcpartboot;" \
175 "setenv mmcpart 3; run trymmcpartboot;" \
176 "setenv mmcpart 4; run trymmcpartboot\0" \
177 "trymmcboot=if run switchmmc; then " \
178 "setenv mmctype fat;" \
179 "run trymmcallpartboot;" \
180 "setenv mmctype ext2;" \
181 "run trymmcallpartboot;" \
182 "setenv mmctype ext4;" \
183 "run trymmcallpartboot;" \
185 "emmcboot=setenv mmcnum 1; run trymmcboot\0" \
186 "sdboot=setenv mmcnum 0; run trymmcboot\0" \
187 "preboot=setenv mmcnum 1; setenv mmcpart 1;" \
188 "setenv mmcscriptfile bootmenu.scr;" \
189 "if run switchmmc; then " \
190 "setenv mmcdone true;" \
191 "setenv mmctype fat;" \
192 "if run scriptload; then true; else " \
193 "setenv mmctype ext2;" \
194 "if run scriptload; then true; else " \
195 "setenv mmctype ext4;" \
196 "if run scriptload; then true; else " \
197 "setenv mmcdone false;" \
201 "if ${mmcdone}; then " \
205 "if run slide; then true; else " \
206 "setenv bootmenu_delay 0;" \
207 "setenv bootdelay 0;" \
209 "menucmd=bootmenu\0" \
210 "bootmenu_0=Attached kernel=run attachboot\0" \
211 "bootmenu_1=Internal eMMC=run emmcboot\0" \
212 "bootmenu_2=External SD card=run sdboot\0" \
213 "bootmenu_3=U-Boot boot order=boot\0" \
214 "bootmenu_delay=30\0" \
217 #define CONFIG_POSTBOOTMENU \
219 "echo Extra commands:;" \
220 "echo run sercon - Use serial port for control.;" \
221 "echo run usbcon - Use usbtty for control.;" \
222 "echo run vgacon - Use framebuffer/keyboard.;" \
223 "echo run sdboot - Boot from SD card slot.;" \
224 "echo run emmcboot - Boot internal eMMC memory.;" \
225 "echo run attachboot - Boot attached kernel image.;" \
228 #define CONFIG_BOOTCOMMAND \
235 * Miscellaneous configurable options
238 /* default load address */
239 #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0)
242 * OMAP3 has 12 GP timers, they can be driven by the system clock
243 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
244 * This rate is divided by a local divisor.
246 #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2)
247 #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
250 * Physical Memory Map
252 #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
255 * FLASH and environment organization
258 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
259 #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
260 #define CONFIG_SYS_INIT_RAM_SIZE 0x800
261 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
262 CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
265 * Attached kernel image
268 #define SDRAM_SIZE 0x10000000 /* 256 MB */
269 #define SDRAM_END (CONFIG_SYS_SDRAM_BASE + SDRAM_SIZE)
271 #define IMAGE_MAXSIZE 0x1FF800 /* 2 MB - 2 kB */
272 #define KERNEL_OFFSET 0x40000 /* 256 kB */
273 #define KERNEL_MAXSIZE (IMAGE_MAXSIZE-KERNEL_OFFSET)
274 #define KERNEL_ADDRESS (SDRAM_END-KERNEL_MAXSIZE)
276 /* Reserve protected RAM for attached kernel */
277 #define CONFIG_PRAM ((KERNEL_MAXSIZE >> 10)+1)
279 #endif /* __CONFIG_H */