1 /* 2 * (C) Copyright 2011-2012 3 * Pali Rohár <pali.rohar@gmail.com> 4 * 5 * (C) Copyright 2010 6 * Alistair Buxton <a.j.buxton@gmail.com> 7 * 8 * Derived from Beagle Board code: 9 * (C) Copyright 2006-2008 10 * Texas Instruments. 11 * Richard Woodruff <r-woodruff2@ti.com> 12 * Syed Mohammed Khasim <x0khasim@ti.com> 13 * 14 * Configuration settings for the Nokia RX-51 aka N900. 15 * 16 * SPDX-License-Identifier: GPL-2.0+ 17 */ 18 19 #ifndef __CONFIG_H 20 #define __CONFIG_H 21 22 /* 23 * High Level Configuration Options 24 */ 25 26 #define CONFIG_OMAP /* in a TI OMAP core */ 27 #define CONFIG_OMAP3430 /* which is in a 3430 */ 28 #define CONFIG_OMAP3_RX51 /* working with RX51 */ 29 #define CONFIG_SYS_L2CACHE_OFF /* pretend there is no L2 CACHE */ 30 #define CONFIG_OMAP_COMMON 31 /* Common ARM Erratas */ 32 #define CONFIG_ARM_ERRATA_454179 33 #define CONFIG_ARM_ERRATA_430973 34 #define CONFIG_ARM_ERRATA_621766 35 36 #define CONFIG_MACH_TYPE MACH_TYPE_NOKIA_RX51 37 38 /* 39 * Nokia X-Loader loading secondary image to address 0x80400000 40 * NOLO loading boot image to random place, so it doesn't really 41 * matter what we set this to. We have to copy u-boot to this address 42 */ 43 #define CONFIG_SYS_TEXT_BASE 0x80008000 44 45 #define CONFIG_SDRC /* The chip has SDRC controller */ 46 47 #include <asm/arch/cpu.h> /* get chip and board defs */ 48 #include <asm/arch/omap.h> 49 #include <asm/arch/mem.h> 50 #include <linux/stringify.h> 51 52 /* Clock Defines */ 53 #define V_OSCK 26000000 /* Clock output from T2 */ 54 #define V_SCLK (V_OSCK >> 1) 55 56 #undef CONFIG_USE_IRQ /* no support for IRQs */ 57 #define CONFIG_MISC_INIT_R 58 #define CONFIG_SKIP_LOWLEVEL_INIT /* X-Loader set everything up */ 59 60 #define CONFIG_CMDLINE_TAG /* enable passing kernel command line string */ 61 #define CONFIG_INITRD_TAG /* enable passing initrd */ 62 #define CONFIG_REVISION_TAG /* enable passing revision tag*/ 63 #define CONFIG_SETUP_MEMORY_TAGS /* enable memory tag */ 64 65 /* 66 * Size of malloc() pool 67 */ 68 #define CONFIG_ENV_SIZE (128 << 10) 69 #define CONFIG_UBI_SIZE (512 << 10) 70 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + CONFIG_UBI_SIZE + \ 71 (128 << 10)) 72 73 /* 74 * Hardware drivers 75 */ 76 77 /* 78 * NS16550 Configuration 79 */ 80 #define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */ 81 82 #define CONFIG_SYS_NS16550_SERIAL 83 #define CONFIG_SYS_NS16550_REG_SIZE (-4) 84 #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK 85 86 /* 87 * select serial console configuration 88 */ 89 #define CONFIG_CONS_INDEX 3 90 #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3 91 #define CONFIG_SERIAL3 3 /* UART3 on RX-51 */ 92 93 /* allow to overwrite serial and ethaddr */ 94 #define CONFIG_ENV_OVERWRITE 95 #define CONFIG_BAUDRATE 115200 96 #define CONFIG_SYS_BAUDRATE_TABLE { 4800, 9600, 19200, 38400, 57600, 115200 } 97 #define CONFIG_MMC 98 #define CONFIG_GENERIC_MMC 99 #define CONFIG_OMAP_HSMMC 100 #define CONFIG_DOS_PARTITION 101 102 /* USB */ 103 #define CONFIG_USB_MUSB_UDC 104 #define CONFIG_USB_MUSB_HCD 105 #define CONFIG_USB_OMAP3 106 #define CONFIG_TWL4030_USB 107 108 /* USB device configuration */ 109 #define CONFIG_USB_DEVICE 110 #define CONFIG_USBD_VENDORID 0x0421 111 #define CONFIG_USBD_PRODUCTID 0x01c8 112 #define CONFIG_USBD_MANUFACTURER "Nokia" 113 #define CONFIG_USBD_PRODUCT_NAME "N900" 114 115 #define CONFIG_SYS_NO_FLASH 116 117 /* commands to include */ 118 119 #define CONFIG_CMDLINE_EDITING /* add command line history */ 120 #define CONFIG_AUTO_COMPLETE /* add autocompletion support */ 121 122 #define CONFIG_CMD_BOOTMENU /* ANSI terminal Boot Menu */ 123 #define CONFIG_CMD_CLEAR /* ANSI terminal clear screen command */ 124 125 #ifdef ONENAND_SUPPORT 126 127 #define CONFIG_CMD_ONENAND /* ONENAND support */ 128 #define CONFIG_CMD_MTDPARTS /* mtd parts support */ 129 130 #ifdef UBIFS_SUPPORT 131 #define CONFIG_CMD_UBIFS /* UBIFS Support */ 132 #endif 133 134 #endif 135 136 #define CONFIG_OMAP3_SPI 137 #define CONFIG_SYS_I2C 138 #define CONFIG_SYS_OMAP24_I2C_SPEED 100000 139 #define CONFIG_SYS_OMAP24_I2C_SLAVE 1 140 #define CONFIG_SYS_I2C_OMAP34XX 141 142 /* 143 * TWL4030 144 */ 145 #define CONFIG_TWL4030_POWER 146 #define CONFIG_TWL4030_LED 147 #define CONFIG_TWL4030_KEYPAD 148 149 #define CONFIG_OMAP_GPIO 150 #define GPIO_SLIDE 71 151 152 /* 153 * Board ONENAND Info. 154 */ 155 156 #define PART1_NAME "bootloader" 157 #define PART1_SIZE 128 158 #define PART1_MULL 1024 159 #define PART1_SUFF "k" 160 #define PART1_OFFS 0x00000000 161 #define PART1_MASK 0x00000003 162 163 #define PART2_NAME "config" 164 #define PART2_SIZE 384 165 #define PART2_MULL 1024 166 #define PART2_SUFF "k" 167 #define PART2_OFFS 0x00020000 168 #define PART2_MASK 0x00000000 169 170 #define PART3_NAME "log" 171 #define PART3_SIZE 256 172 #define PART3_MULL 1024 173 #define PART3_SUFF "k" 174 #define PART3_OFFS 0x00080000 175 #define PART3_MASK 0x00000000 176 177 #define PART4_NAME "kernel" 178 #define PART4_SIZE 2 179 #define PART4_MULL 1024*1024 180 #define PART4_SUFF "m" 181 #define PART4_OFFS 0x000c0000 182 #define PART4_MASK 0x00000000 183 184 #define PART5_NAME "initfs" 185 #define PART5_SIZE 2 186 #define PART5_MULL 1024*1024 187 #define PART5_SUFF "m" 188 #define PART5_OFFS 0x002c0000 189 #define PART5_MASK 0x00000000 190 191 #define PART6_NAME "rootfs" 192 #define PART6_SIZE 257280 193 #define PART6_MULL 1024 194 #define PART6_SUFF "k" 195 #define PART6_OFFS 0x004c0000 196 #define PART6_MASK 0x00000000 197 198 #ifdef ONENAND_SUPPORT 199 200 #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP 201 #define CONFIG_MTD_DEVICE 202 #define CONFIG_MTD_PARTITIONS 203 204 #ifdef UBIFS_SUPPORT 205 #define CONFIG_RBTREE 206 #define CONFIG_LZO 207 #endif 208 209 #define MTDIDS_DEFAULT "onenand0=onenand" 210 #define MTDPARTS_DEFAULT "mtdparts=onenand:" \ 211 __stringify(PART1_SIZE) PART1_SUFF "(" PART1_NAME ")ro," \ 212 __stringify(PART2_SIZE) PART2_SUFF "(" PART2_NAME ")," \ 213 __stringify(PART3_SIZE) PART3_SUFF "(" PART3_NAME ")," \ 214 __stringify(PART4_SIZE) PART4_SUFF "(" PART4_NAME ")," \ 215 __stringify(PART5_SIZE) PART5_SUFF "(" PART5_NAME ")," \ 216 "-(" PART6_NAME ")" 217 218 #endif 219 220 /* Watchdog support */ 221 #define CONFIG_HW_WATCHDOG 222 223 /* 224 * Framebuffer 225 */ 226 /* Video console */ 227 #define CONFIG_CFB_CONSOLE 228 #define CONFIG_CFB_CONSOLE_ANSI /* Enable ANSI escape codes in framebuffer */ 229 #define CONFIG_VIDEO_LOGO 230 #define VIDEO_FB_16BPP_PIXEL_SWAP 231 #define VIDEO_FB_16BPP_WORD_SWAP 232 #define CONFIG_VIDEO_SW_CURSOR 233 #define CONFIG_SPLASH_SCREEN 234 235 /* functions for cfb_console */ 236 #define VIDEO_KBD_INIT_FCT rx51_kp_init() 237 #define VIDEO_TSTC_FCT rx51_kp_tstc 238 #define VIDEO_GETC_FCT rx51_kp_getc 239 #ifndef __ASSEMBLY__ 240 struct stdio_dev; 241 int rx51_kp_init(void); 242 int rx51_kp_tstc(struct stdio_dev *sdev); 243 int rx51_kp_getc(struct stdio_dev *sdev); 244 #endif 245 246 #ifndef MTDPARTS_DEFAULT 247 #define MTDPARTS_DEFAULT 248 #endif 249 250 /* Environment information */ 251 #define CONFIG_EXTRA_ENV_SETTINGS \ 252 "mtdparts=" MTDPARTS_DEFAULT "\0" \ 253 "usbtty=cdc_acm\0" \ 254 "stdin=vga\0" \ 255 "stdout=vga\0" \ 256 "stderr=vga\0" \ 257 "setcon=setenv stdin ${con};" \ 258 "setenv stdout ${con};" \ 259 "setenv stderr ${con}\0" \ 260 "sercon=setenv con serial; run setcon\0" \ 261 "usbcon=setenv con usbtty; run setcon\0" \ 262 "vgacon=setenv con vga; run setcon\0" \ 263 "slide=gpio input " __stringify(GPIO_SLIDE) "\0" \ 264 "switchmmc=mmc dev ${mmcnum}\0" \ 265 "kernaddr=0x82008000\0" \ 266 "initrdaddr=0x84008000\0" \ 267 "scriptaddr=0x86008000\0" \ 268 "fileload=${mmctype}load mmc ${mmcnum}:${mmcpart} " \ 269 "${loadaddr} ${mmcfile}\0" \ 270 "kernload=setenv loadaddr ${kernaddr};" \ 271 "setenv mmcfile ${mmckernfile};" \ 272 "run fileload\0" \ 273 "initrdload=setenv loadaddr ${initrdaddr};" \ 274 "setenv mmcfile ${mmcinitrdfile};" \ 275 "run fileload\0" \ 276 "scriptload=setenv loadaddr ${scriptaddr};" \ 277 "setenv mmcfile ${mmcscriptfile};" \ 278 "run fileload\0" \ 279 "scriptboot=echo Running ${mmcscriptfile} from mmc " \ 280 "${mmcnum}:${mmcpart} ...; source ${scriptaddr}\0" \ 281 "kernboot=echo Booting ${mmckernfile} from mmc " \ 282 "${mmcnum}:${mmcpart} ...; bootm ${kernaddr}\0" \ 283 "kerninitrdboot=echo Booting ${mmckernfile} ${mmcinitrdfile} from mmc "\ 284 "${mmcnum}:${mmcpart} ...; bootm ${kernaddr} ${initrdaddr}\0" \ 285 "attachboot=echo Booting attached kernel image ...;" \ 286 "setenv setup_omap_atag 1;" \ 287 "bootm ${attkernaddr};" \ 288 "setenv setup_omap_atag\0" \ 289 "trymmcscriptboot=if run switchmmc; then " \ 290 "if run scriptload; then " \ 291 "run scriptboot;" \ 292 "fi;" \ 293 "fi\0" \ 294 "trymmckernboot=if run switchmmc; then " \ 295 "if run kernload; then " \ 296 "run kernboot;" \ 297 "fi;" \ 298 "fi\0" \ 299 "trymmckerninitrdboot=if run switchmmc; then " \ 300 "if run initrdload; then " \ 301 "if run kernload; then " \ 302 "run kerninitrdboot;" \ 303 "fi;" \ 304 "fi; " \ 305 "fi\0" \ 306 "trymmcpartboot=setenv mmcscriptfile boot.scr; run trymmcscriptboot;" \ 307 "setenv mmckernfile uImage; run trymmckernboot\0" \ 308 "trymmcallpartboot=setenv mmcpart 1; run trymmcpartboot;" \ 309 "setenv mmcpart 2; run trymmcpartboot;" \ 310 "setenv mmcpart 3; run trymmcpartboot;" \ 311 "setenv mmcpart 4; run trymmcpartboot\0" \ 312 "trymmcboot=if run switchmmc; then " \ 313 "setenv mmctype fat;" \ 314 "run trymmcallpartboot;" \ 315 "setenv mmctype ext2;" \ 316 "run trymmcallpartboot;" \ 317 "setenv mmctype ext4;" \ 318 "run trymmcallpartboot;" \ 319 "fi\0" \ 320 "emmcboot=setenv mmcnum 1; run trymmcboot\0" \ 321 "sdboot=setenv mmcnum 0; run trymmcboot\0" \ 322 "menucmd=bootmenu\0" \ 323 "bootmenu_0=Attached kernel=run attachboot\0" \ 324 "bootmenu_1=Internal eMMC=run emmcboot\0" \ 325 "bootmenu_2=External SD card=run sdboot\0" \ 326 "bootmenu_3=U-Boot boot order=boot\0" \ 327 "bootmenu_delay=30\0" \ 328 "" 329 330 #define CONFIG_PREBOOT \ 331 "setenv mmcnum 1; setenv mmcpart 1;" \ 332 "setenv mmcscriptfile bootmenu.scr;" \ 333 "if run switchmmc; then " \ 334 "setenv mmcdone true;" \ 335 "setenv mmctype fat;" \ 336 "if run scriptload; then true; else " \ 337 "setenv mmctype ext2;" \ 338 "if run scriptload; then true; else " \ 339 "setenv mmctype ext4;" \ 340 "if run scriptload; then true; else " \ 341 "setenv mmcdone false;" \ 342 "fi;" \ 343 "fi;" \ 344 "fi;" \ 345 "if ${mmcdone}; then " \ 346 "run scriptboot;" \ 347 "fi;" \ 348 "fi;" \ 349 "if run slide; then true; else " \ 350 "setenv bootmenu_delay 0;" \ 351 "setenv bootdelay 0;" \ 352 "fi" 353 354 #define CONFIG_POSTBOOTMENU \ 355 "echo;" \ 356 "echo Extra commands:;" \ 357 "echo run sercon - Use serial port for control.;" \ 358 "echo run usbcon - Use usbtty for control.;" \ 359 "echo run vgacon - Use framebuffer/keyboard.;" \ 360 "echo run sdboot - Boot from SD card slot.;" \ 361 "echo run emmcboot - Boot internal eMMC memory.;" \ 362 "echo run attachboot - Boot attached kernel image.;" \ 363 "echo" 364 365 #define CONFIG_BOOTCOMMAND \ 366 "run sdboot;" \ 367 "run emmcboot;" \ 368 "run attachboot;" \ 369 "echo" 370 371 #define CONFIG_MENU 372 #define CONFIG_MENU_SHOW 373 374 /* 375 * Miscellaneous configurable options 376 */ 377 #define CONFIG_SYS_LONGHELP /* undef to save memory */ 378 #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ 379 /* Print Buffer Size */ 380 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ 381 sizeof(CONFIG_SYS_PROMPT) + 16) 382 #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ 383 /* Boot Argument Buffer Size */ 384 #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE) 385 386 #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) 387 #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + 0x01F00000)/*31MB*/ 388 389 /* default load address */ 390 #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) 391 392 /* 393 * OMAP3 has 12 GP timers, they can be driven by the system clock 394 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK). 395 * This rate is divided by a local divisor. 396 */ 397 #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2) 398 #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */ 399 400 /* 401 * Stack sizes 402 * 403 * The stack sizes are set up in start.S using the settings below 404 */ 405 #define CONFIG_STACKSIZE (128 << 10) /* regular stack 128 KiB */ 406 407 /* 408 * Physical Memory Map 409 */ 410 #define CONFIG_NR_DRAM_BANKS 2 411 #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0 412 413 /* 414 * FLASH and environment organization 415 */ 416 417 #define CONFIG_ENV_IS_NOWHERE 418 419 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 420 #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800 421 #define CONFIG_SYS_INIT_RAM_SIZE 0x800 422 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ 423 CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) 424 425 /* 426 * Attached kernel image 427 */ 428 429 #define SDRAM_SIZE 0x10000000 /* 256 MB */ 430 #define SDRAM_END (CONFIG_SYS_SDRAM_BASE + SDRAM_SIZE) 431 432 #define IMAGE_MAXSIZE 0x1FF800 /* 2 MB - 2 kB */ 433 #define KERNEL_OFFSET 0x40000 /* 256 kB */ 434 #define KERNEL_MAXSIZE (IMAGE_MAXSIZE-KERNEL_OFFSET) 435 #define KERNEL_ADDRESS (SDRAM_END-KERNEL_MAXSIZE) 436 437 /* Reserve protected RAM for attached kernel */ 438 #define CONFIG_PRAM ((KERNEL_MAXSIZE >> 10)+1) 439 440 #endif /* __CONFIG_H */ 441