1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2011-2012
9 * Derived from Beagle Board code:
10 * (C) Copyright 2006-2008
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
29 * Nokia X-Loader loading secondary image to address 0x80400000
30 * NOLO loading boot image to random place, so it doesn't really
31 * matter what we set this to. We have to copy u-boot to this address
34 #include <asm/arch/cpu.h> /* get chip and board defs */
35 #include <asm/arch/omap.h>
36 #include <asm/arch/mem.h>
37 #include <linux/stringify.h>
40 #define V_OSCK 26000000 /* Clock output from T2 */
41 #define V_SCLK (V_OSCK >> 1)
43 #define CONFIG_SKIP_LOWLEVEL_INIT /* X-Loader set everything up */
45 #define CONFIG_CMDLINE_TAG /* enable passing kernel command line string */
46 #define CONFIG_INITRD_TAG /* enable passing initrd */
47 #define CONFIG_REVISION_TAG /* enable passing revision tag*/
48 #define CONFIG_SETUP_MEMORY_TAGS /* enable memory tag */
51 * Size of malloc() pool
53 #define CONFIG_ENV_SIZE (128 << 10)
54 #define CONFIG_UBI_SIZE (512 << 10)
55 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + CONFIG_UBI_SIZE + \
63 * NS16550 Configuration
65 #define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
67 #define CONFIG_SYS_NS16550_SERIAL
68 #define CONFIG_SYS_NS16550_REG_SIZE (-4)
69 #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
72 * select serial console configuration
74 #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
75 #define CONFIG_SERIAL3 3 /* UART3 on RX-51 */
77 /* allow to overwrite serial and ethaddr */
78 #define CONFIG_ENV_OVERWRITE
79 #define CONFIG_SYS_BAUDRATE_TABLE { 4800, 9600, 19200, 38400, 57600, 115200 }
81 /* USB device configuration */
82 #define CONFIG_USB_DEVICE
83 #define CONFIG_USBD_VENDORID 0x0421
84 #define CONFIG_USBD_PRODUCTID 0x01c8
85 #define CONFIG_USBD_MANUFACTURER "Nokia"
86 #define CONFIG_USBD_PRODUCT_NAME "N900"
88 /* commands to include */
90 #define CONFIG_SYS_I2C
95 #define CONFIG_TWL4030_LED
96 #define CONFIG_TWL4030_KEYPAD
101 * Board ONENAND Info.
104 #define PART1_NAME "bootloader"
105 #define PART1_SIZE 128
106 #define PART1_MULL 1024
107 #define PART1_SUFF "k"
108 #define PART1_OFFS 0x00000000
109 #define PART1_MASK 0x00000003
111 #define PART2_NAME "config"
112 #define PART2_SIZE 384
113 #define PART2_MULL 1024
114 #define PART2_SUFF "k"
115 #define PART2_OFFS 0x00020000
116 #define PART2_MASK 0x00000000
118 #define PART3_NAME "log"
119 #define PART3_SIZE 256
120 #define PART3_MULL 1024
121 #define PART3_SUFF "k"
122 #define PART3_OFFS 0x00080000
123 #define PART3_MASK 0x00000000
125 #define PART4_NAME "kernel"
127 #define PART4_MULL 1024*1024
128 #define PART4_SUFF "m"
129 #define PART4_OFFS 0x000c0000
130 #define PART4_MASK 0x00000000
132 #define PART5_NAME "initfs"
134 #define PART5_MULL 1024*1024
135 #define PART5_SUFF "m"
136 #define PART5_OFFS 0x002c0000
137 #define PART5_MASK 0x00000000
139 #define PART6_NAME "rootfs"
140 #define PART6_SIZE 257280
141 #define PART6_MULL 1024
142 #define PART6_SUFF "k"
143 #define PART6_OFFS 0x004c0000
144 #define PART6_MASK 0x00000000
146 #ifdef ONENAND_SUPPORT
148 #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
152 /* Watchdog support */
153 #define CONFIG_HW_WATCHDOG
159 #define CONFIG_VIDEO_LOGO
160 #define VIDEO_FB_16BPP_PIXEL_SWAP
161 #define VIDEO_FB_16BPP_WORD_SWAP
162 #define CONFIG_SPLASH_SCREEN
164 /* functions for cfb_console */
165 #define VIDEO_KBD_INIT_FCT rx51_kp_init()
166 #define VIDEO_TSTC_FCT rx51_kp_tstc
167 #define VIDEO_GETC_FCT rx51_kp_getc
170 int rx51_kp_init(void);
171 int rx51_kp_tstc(struct stdio_dev *sdev);
172 int rx51_kp_getc(struct stdio_dev *sdev);
175 /* Environment information */
176 #ifdef CONFIG_MTDPARTS_DEFAULT
177 #define MTDPARTS "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0"
181 #define CONFIG_EXTRA_ENV_SETTINGS \
187 "setcon=setenv stdin ${con};" \
188 "setenv stdout ${con};" \
189 "setenv stderr ${con}\0" \
190 "sercon=setenv con serial; run setcon\0" \
191 "usbcon=setenv con usbtty; run setcon\0" \
192 "vgacon=setenv con vga; run setcon\0" \
193 "slide=gpio input " __stringify(GPIO_SLIDE) "\0" \
194 "switchmmc=mmc dev ${mmcnum}\0" \
195 "kernaddr=0x82008000\0" \
196 "initrdaddr=0x84008000\0" \
197 "scriptaddr=0x86008000\0" \
198 "fileload=${mmctype}load mmc ${mmcnum}:${mmcpart} " \
199 "${loadaddr} ${mmcfile}\0" \
200 "kernload=setenv loadaddr ${kernaddr};" \
201 "setenv mmcfile ${mmckernfile};" \
203 "initrdload=setenv loadaddr ${initrdaddr};" \
204 "setenv mmcfile ${mmcinitrdfile};" \
206 "scriptload=setenv loadaddr ${scriptaddr};" \
207 "setenv mmcfile ${mmcscriptfile};" \
209 "scriptboot=echo Running ${mmcscriptfile} from mmc " \
210 "${mmcnum}:${mmcpart} ...; source ${scriptaddr}\0" \
211 "kernboot=echo Booting ${mmckernfile} from mmc " \
212 "${mmcnum}:${mmcpart} ...; bootm ${kernaddr}\0" \
213 "kerninitrdboot=echo Booting ${mmckernfile} ${mmcinitrdfile} from mmc "\
214 "${mmcnum}:${mmcpart} ...; bootm ${kernaddr} ${initrdaddr}\0" \
215 "attachboot=echo Booting attached kernel image ...;" \
216 "setenv setup_omap_atag 1;" \
217 "bootm ${attkernaddr};" \
218 "setenv setup_omap_atag\0" \
219 "trymmcscriptboot=if run switchmmc; then " \
220 "if run scriptload; then " \
224 "trymmckernboot=if run switchmmc; then " \
225 "if run kernload; then " \
229 "trymmckerninitrdboot=if run switchmmc; then " \
230 "if run initrdload; then " \
231 "if run kernload; then " \
232 "run kerninitrdboot;" \
236 "trymmcpartboot=setenv mmcscriptfile boot.scr; run trymmcscriptboot;" \
237 "setenv mmckernfile uImage; run trymmckernboot\0" \
238 "trymmcallpartboot=setenv mmcpart 1; run trymmcpartboot;" \
239 "setenv mmcpart 2; run trymmcpartboot;" \
240 "setenv mmcpart 3; run trymmcpartboot;" \
241 "setenv mmcpart 4; run trymmcpartboot\0" \
242 "trymmcboot=if run switchmmc; then " \
243 "setenv mmctype fat;" \
244 "run trymmcallpartboot;" \
245 "setenv mmctype ext2;" \
246 "run trymmcallpartboot;" \
247 "setenv mmctype ext4;" \
248 "run trymmcallpartboot;" \
250 "emmcboot=setenv mmcnum 1; run trymmcboot\0" \
251 "sdboot=setenv mmcnum 0; run trymmcboot\0" \
252 "menucmd=bootmenu\0" \
253 "bootmenu_0=Attached kernel=run attachboot\0" \
254 "bootmenu_1=Internal eMMC=run emmcboot\0" \
255 "bootmenu_2=External SD card=run sdboot\0" \
256 "bootmenu_3=U-Boot boot order=boot\0" \
257 "bootmenu_delay=30\0" \
260 #define CONFIG_PREBOOT \
261 "setenv mmcnum 1; setenv mmcpart 1;" \
262 "setenv mmcscriptfile bootmenu.scr;" \
263 "if run switchmmc; then " \
264 "setenv mmcdone true;" \
265 "setenv mmctype fat;" \
266 "if run scriptload; then true; else " \
267 "setenv mmctype ext2;" \
268 "if run scriptload; then true; else " \
269 "setenv mmctype ext4;" \
270 "if run scriptload; then true; else " \
271 "setenv mmcdone false;" \
275 "if ${mmcdone}; then " \
279 "if run slide; then true; else " \
280 "setenv bootmenu_delay 0;" \
281 "setenv bootdelay 0;" \
284 #define CONFIG_POSTBOOTMENU \
286 "echo Extra commands:;" \
287 "echo run sercon - Use serial port for control.;" \
288 "echo run usbcon - Use usbtty for control.;" \
289 "echo run vgacon - Use framebuffer/keyboard.;" \
290 "echo run sdboot - Boot from SD card slot.;" \
291 "echo run emmcboot - Boot internal eMMC memory.;" \
292 "echo run attachboot - Boot attached kernel image.;" \
295 #define CONFIG_BOOTCOMMAND \
301 #define CONFIG_MENU_SHOW
304 * Miscellaneous configurable options
307 #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
308 #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + 0x01F00000)/*31MB*/
310 /* default load address */
311 #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0)
314 * OMAP3 has 12 GP timers, they can be driven by the system clock
315 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
316 * This rate is divided by a local divisor.
318 #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2)
319 #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
322 * Physical Memory Map
324 #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
327 * FLASH and environment organization
330 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
331 #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
332 #define CONFIG_SYS_INIT_RAM_SIZE 0x800
333 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
334 CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
337 * Attached kernel image
340 #define SDRAM_SIZE 0x10000000 /* 256 MB */
341 #define SDRAM_END (CONFIG_SYS_SDRAM_BASE + SDRAM_SIZE)
343 #define IMAGE_MAXSIZE 0x1FF800 /* 2 MB - 2 kB */
344 #define KERNEL_OFFSET 0x40000 /* 256 kB */
345 #define KERNEL_MAXSIZE (IMAGE_MAXSIZE-KERNEL_OFFSET)
346 #define KERNEL_ADDRESS (SDRAM_END-KERNEL_MAXSIZE)
348 /* Reserve protected RAM for attached kernel */
349 #define CONFIG_PRAM ((KERNEL_MAXSIZE >> 10)+1)
351 #endif /* __CONFIG_H */