nmdk8815.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /*
  2. * (C) Copyright 2005
  3. * STMicroelectronics.
  4. * Configuration settings for the STn8815 nomadik board.
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #ifndef __CONFIG_H
  25. #define __CONFIG_H
  26. #include <nomadik.h>
  27. #define CONFIG_ARM926EJS
  28. #define CONFIG_NOMADIK
  29. #define CONFIG_NOMADIK_8815
  30. #define CONFIG_NOMADIK_NDK15
  31. #define CONFIG_NOMADIK_NHK15
  32. #define CONFIG_SKIP_LOWLEVEL_INIT /* we have already been loaded to RAM */
  33. /* commands */
  34. #include <config_cmd_default.h>
  35. #define CONFIG_CMD_NET
  36. #define CONFIG_CMD_PING
  37. #define CONFIG_CMD_DHCP
  38. #define CONFIG_CMD_NFS
  39. /* There is no NOR flash, so undefine these commands */
  40. #undef CONFIG_CMD_FLASH
  41. #undef CONFIG_CMD_IMLS
  42. #define CONFIG_SYS_NO_FLASH
  43. /* There is NAND storage */
  44. #define CONFIG_NAND_NOMADIK
  45. #define CONFIG_CMD_JFFS2
  46. /* user interface */
  47. #define CONFIG_SYS_LONGHELP
  48. #define CONFIG_SYS_HUSH_PARSER
  49. #define CONFIG_SYS_PROMPT "Nomadik> "
  50. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  51. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  52. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \
  53. + sizeof(CONFIG_SYS_PROMPT) + 16)
  54. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Arg Buffer Size */
  55. #define CONFIG_SYS_MAXARGS 16
  56. #define CONFIG_SYS_LOAD_ADDR 0x800000 /* default load address */
  57. #define CONFIG_SYS_LOADS_BAUD_CHANGE
  58. /* boot config */
  59. #define CONFIG_SETUP_MEMORY_TAGS
  60. #define CONFIG_INITRD_TAG
  61. #define CONFIG_CMDLINE_TAG
  62. #define CONFIG_BOOTDELAY 1
  63. #define CONFIG_BOOTARGS "root=/dev/ram0 console=ttyAMA1,115200n8 init=linuxrc"
  64. #define CONFIG_BOOTCOMMAND "fsload 0x100000 kernel.uimg;" \
  65. " fsload 0x800000 initrd.gz.uimg;" \
  66. " bootm 0x100000 0x800000"
  67. /* memory-related information */
  68. #define CONFIG_NR_DRAM_BANKS 2
  69. #define PHYS_SDRAM_1 0x00000000 /* DDR-SDRAM Bank #1 */
  70. #define PHYS_SDRAM_1_SIZE 0x04000000 /* 64 MB */
  71. #define PHYS_SDRAM_2 0x08000000 /* SDR-SDRAM BANK #2*/
  72. #define PHYS_SDRAM_2_SIZE 0x04000000 /* 64 MB */
  73. #define CONFIG_STACKSIZE (128 * 1024) /* regular stack */
  74. #ifdef CONFIG_USE_IRQ
  75. # define CONFIG_STACKSIZE_IRQ (4 * 1024) /* IRQ stack */
  76. # define CONFIG_STACKSIZE_FIQ (4 * 1024) /* FIQ stack */
  77. #endif
  78. #define CONFIG_SYS_MEMTEST_START 0x00000000
  79. #define CONFIG_SYS_MEMTEST_END 0x0FFFFFFF
  80. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 256 * 1024)
  81. #define CONFIG_SYS_GBL_DATA_SIZE 128 /* for initial data */
  82. #define CONFIG_MISC_INIT_R /* call misc_init_r during start up */
  83. /* timing informazion */
  84. #define CONFIG_SYS_HZ (2400000 / 256) /* Timer0: 2.4Mhz + divider */
  85. #define CONFIG_SYS_TIMERBASE 0x101E2000
  86. #undef CONFIG_SYS_CLKS_IN_HZ
  87. /* serial port (PL011) configuration */
  88. #define CONFIG_PL011_SERIAL
  89. #define CONFIG_CONS_INDEX 1
  90. #define CONFIG_BAUDRATE 115200
  91. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  92. #define CFG_SERIAL0 0x101FD000
  93. #define CFG_SERIAL1 0x101FB000
  94. #define CONFIG_PL01x_PORTS { (void *)CFG_SERIAL0, (void *)CFG_SERIAL1 }
  95. #define CONFIG_PL011_CLOCK 48000000
  96. /* Ethernet */
  97. #define PCI_MEMORY_VADDR 0xe8000000
  98. #define PCI_IO_VADDR 0xee000000
  99. #define __io(a) ((void __iomem *)(PCI_IO_VADDR + (a)))
  100. #define __mem_isa(a) ((a) + PCI_MEMORY_VADDR)
  101. #define CONFIG_DRIVER_SMC91111 /* Using SMC91c111*/
  102. #define CONFIG_SMC91111_BASE 0x34000300
  103. #undef CONFIG_SMC91111_EXT_PHY /* Internal PHY */
  104. #define CONFIG_SMC_USE_32_BIT
  105. #define CONFIG_BOOTFILE "uImage"
  106. /* flash memory and filesystem information */
  107. #define CONFIG_DOS_PARTITION
  108. #define CONFIG_MTD_ONENAND_VERIFY_WRITE
  109. #define CONFIG_SYS_ONENAND_BASE 0x30000000
  110. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  111. #define CONFIG_SYS_NAND_BASE 0x40000000 /* SMPS0n */
  112. #ifdef CONFIG_BOOT_ONENAND
  113. # define CONFIG_CMD_ONENAND /* Temporary: nand and onenand can't coexist */
  114. /* Partition Size Start
  115. * XloaderTOC + X-Loader 256KB 0x00000000
  116. * Memory init function 256KB 0x00040000
  117. * U-Boot 2MB 0x00080000
  118. * Sysimage (kernel + ramdisk) 4MB 0x00280000
  119. * JFFS2 Root filesystem 22MB 0x00680000
  120. * JFFS2 User Data 227.5MB 0x01C80000
  121. */
  122. # define CONFIG_JFFS2_PART_SIZE 0x400000
  123. # define CONFIG_JFFS2_PART_OFFSET 0x280000
  124. # define CONFIG_ENV_IS_IN_ONENAND
  125. # define CONFIG_ENV_SIZE (256 * 1024)
  126. # define CONFIG_ENV_ADDR 0x30300000
  127. #else /* ! CONFIG_BOOT_ONENAND */
  128. # define CONFIG_CMD_NAND /* Temporary: nand and onenand can't coexist */
  129. # define CONFIG_JFFS2_DEV "nand0"
  130. # define CONFIG_JFFS2_NAND 1 /* For the jffs2 support*/
  131. # define CONFIG_JFFS2_PART_SIZE 0x00300000
  132. # define CONFIG_JFFS2_PART_OFFSET 0x00280000
  133. # define CONFIG_ENV_IS_IN_NAND
  134. # define CONFIG_ENV_SIZE 0x20000 /* 128 Kb - one sector */
  135. # define CONFIG_ENV_OFFSET (0x8000000 - CONFIG_ENV_SIZE)
  136. #endif /* CONFIG_BOOT_ONENAND */
  137. /* this is needed to make hello_world.c and other stuff happy */
  138. #define CONFIG_SYS_MAX_FLASH_SECT 512
  139. #define CONFIG_SYS_MAX_FLASH_BANKS 1
  140. #endif /* __CONFIG_H */