ELPPC.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. /*
  2. * (C) Copyright 2002 ELTEC Elektronik AG
  3. * Frank Gottschling <fgottschling@eltec.de>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /*
  24. * board/config.h - configuration options, board specific
  25. */
  26. #ifndef __CONFIG_H
  27. #define __CONFIG_H
  28. #define GTREGREAD(x) 0xffffffff /* needed for debug */
  29. /*
  30. * High Level Configuration Options
  31. * (easy to change)
  32. */
  33. /* these hardware addresses are pretty bogus, please change them to
  34. suit your needs */
  35. /* first ethernet */
  36. #define CONFIG_ETHADDR 00:00:5b:ee:de:ad
  37. #define CONFIG_IPADDR 192.168.0.105
  38. #define CONFIG_SERVERIP 192.168.0.100
  39. #define CONFIG_ELPPC 1 /* this is an BAB740/BAB750 board */
  40. #define CONFIG_BAUDRATE 9600 /* console baudrate */
  41. #undef CONFIG_WATCHDOG
  42. #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
  43. #define CONFIG_ZERO_BOOTDELAY_CHECK
  44. #undef CONFIG_BOOTARGS
  45. #define CONFIG_BOOTCOMMAND \
  46. "bootp 1000000; " \
  47. "setenv bootargs root=ramfs console=ttyS00,9600 " \
  48. "ip=${ipaddr}:${serverip}:${rootpath}:${gatewayip}:" \
  49. "${netmask}:${hostname}:eth0:none; " \
  50. "bootm"
  51. #define CONFIG_LOADS_ECHO 0 /* echo off for serial download */
  52. #define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate changes */
  53. /*
  54. * BOOTP options
  55. */
  56. #define CONFIG_BOOTP_SUBNETMASK
  57. #define CONFIG_BOOTP_GATEWAY
  58. #define CONFIG_BOOTP_HOSTNAME
  59. #define CONFIG_BOOTP_BOOTPATH
  60. #define CONFIG_BOOTP_BOOTFILESIZE
  61. /*
  62. * Command line configuration.
  63. */
  64. #include <config_cmd_default.h>
  65. #define CONFIG_CMD_PCI
  66. #define CONFIG_CMD_JFFS2
  67. /*
  68. * Miscellaneous configurable options
  69. */
  70. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  71. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  72. /*
  73. * choose between COM1 and COM2 as serial console
  74. */
  75. #define CONFIG_CONS_INDEX 1
  76. #if defined(CONFIG_CMD_KGDB)
  77. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  78. #else
  79. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  80. #endif
  81. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
  82. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  83. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  84. #define CONFIG_SYS_MEMTEST_START 0x00000000 /* memtest works on */
  85. #define CONFIG_SYS_MEMTEST_END 0x04000000 /* 0 ... 64 MB in DRAM */
  86. #define CONFIG_SYS_LOAD_ADDR 0x1000000 /* default load address */
  87. #define CONFIG_SYS_HZ 1000 /* dec. freq: 1 ms ticks */
  88. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
  89. /*
  90. * Low Level Configuration Settings
  91. * (address mappings, register initial values, etc.)
  92. * You should know what you are doing if you make changes here.
  93. */
  94. #define CONFIG_SYS_BOARD_ASM_INIT
  95. #define CONFIG_MISC_INIT_R
  96. /*
  97. * Address mapping scheme for the MPC107 mem controller is mapping B (CHRP)
  98. */
  99. #undef CONFIG_SYS_ADDRESS_MAP_A
  100. #define CONFIG_SYS_PCI_MEMORY_BUS 0x00000000
  101. #define CONFIG_SYS_PCI_MEMORY_PHYS 0x00000000
  102. #define CONFIG_SYS_PCI_MEMORY_SIZE 0x40000000
  103. #define CONFIG_SYS_PCI_MEM_BUS 0x80000000
  104. #define CONFIG_SYS_PCI_MEM_PHYS 0x80000000
  105. #define CONFIG_SYS_PCI_MEM_SIZE 0x7d000000
  106. #define CONFIG_SYS_ISA_MEM_BUS 0x00000000
  107. #define CONFIG_SYS_ISA_MEM_PHYS 0xfd000000
  108. #define CONFIG_SYS_ISA_MEM_SIZE 0x01000000
  109. #define CONFIG_SYS_PCI_IO_BUS 0x00800000
  110. #define CONFIG_SYS_PCI_IO_PHYS 0xfe800000
  111. #define CONFIG_SYS_PCI_IO_SIZE 0x00400000
  112. #define CONFIG_SYS_ISA_IO_BUS 0x00000000
  113. #define CONFIG_SYS_ISA_IO_PHYS 0xfe000000
  114. #define CONFIG_SYS_ISA_IO_SIZE 0x00800000
  115. /* driver defines FDC,IDE,... */
  116. #define CONFIG_SYS_ISA_IO_BASE_ADDRESS CONFIG_SYS_ISA_IO_PHYS
  117. #define CONFIG_SYS_ISA_IO CONFIG_SYS_ISA_IO_PHYS
  118. #define CONFIG_SYS_60X_PCI_IO_OFFSET CONFIG_SYS_ISA_IO_PHYS
  119. /*
  120. * Start addresses for the final memory configuration
  121. * (Set up by the startup code)
  122. * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
  123. */
  124. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  125. #define CONFIG_SYS_USR_LED_BASE 0x78000000
  126. #define CONFIG_SYS_NVRAM_BASE 0xff000000
  127. #define CONFIG_SYS_UART_BASE 0xff400000
  128. #define CONFIG_SYS_FLASH_BASE 0xfff00000
  129. #define MPC107_EUMB_ADDR 0xfce00000
  130. #define MPC107_EUMB_PI 0xfce41090
  131. #define MPC107_EUMB_GCR 0xfce41020
  132. #define MPC107_EUMB_IACKR 0xfce600a0
  133. #define MPC107_I2C_ADDR 0xfce03000
  134. /*
  135. * Definitions for initial stack pointer and data area
  136. */
  137. #define CONFIG_SYS_INIT_RAM_ADDR 0x00fd0000 /* above the memtest region */
  138. #define CONFIG_SYS_INIT_RAM_END 0x4000
  139. #define CONFIG_SYS_GBL_DATA_SIZE 64 /* size in bytes reserved for init data */
  140. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  141. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  142. /*
  143. * Flash mapping/organization on the MPC10x.
  144. */
  145. #define FLASH_BASE0_PRELIM 0xff800000
  146. #define FLASH_BASE1_PRELIM 0xffc00000
  147. #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of memory banks */
  148. #define CONFIG_SYS_MAX_FLASH_SECT 67 /* max number of sectors on one chip */
  149. #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
  150. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
  151. /*
  152. * JFFS2 partitions
  153. *
  154. */
  155. /* No command line, one static partition, whole device */
  156. #undef CONFIG_CMD_MTDPARTS
  157. #define CONFIG_JFFS2_DEV "nor0"
  158. #define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF
  159. #define CONFIG_JFFS2_PART_OFFSET 0x00000000
  160. /* mtdparts command line support */
  161. /* Note: fake mtd_id used, no linux mtd map file */
  162. /*
  163. #define CONFIG_CMD_MTDPARTS
  164. #define MTDIDS_DEFAULT "nor0=elppc-0,nor1=elppc-1"
  165. #define MTDPARTS_DEFAULT "mtdparts=elppc-0:-(jffs2),elppc-1:-(user)"
  166. */
  167. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  168. #define CONFIG_SYS_MONITOR_LEN 0x40000 /* Reserve 256 kB for Monitor */
  169. #define CONFIG_SYS_MALLOC_LEN 0x20000 /* Reserve 128 kB for malloc() */
  170. #undef CONFIG_SYS_MEMTEST
  171. /*
  172. * Environment settings
  173. */
  174. #define CONFIG_ENV_OVERWRITE
  175. #define CONFIG_ENV_IS_IN_NVRAM 1 /* use NVRAM for environment vars */
  176. #define CONFIG_SYS_NVRAM_SIZE 0x800 /* NVRAM size (2kB) */
  177. #define CONFIG_ENV_SIZE 0x400 /* Size of Environment vars (1kB) */
  178. #define CONFIG_ENV_ADDR 0x0
  179. #define CONFIG_ENV_MAP_ADRS 0xff000000
  180. #define CONFIG_SYS_NV_SROM_COPY_ADDR (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE)
  181. #define CONFIG_SYS_NVRAM_ACCESS_ROUTINE /* only byte accsess alowed */
  182. #define CONFIG_SYS_SROM_SIZE 0x100 /* shadow of revision info is in nvram */
  183. /*
  184. * Serial devices
  185. */
  186. #define CONFIG_SYS_NS16550
  187. #define CONFIG_SYS_NS16550_SERIAL
  188. #define CONFIG_SYS_NS16550_REG_SIZE 1
  189. #define CONFIG_SYS_NS16550_CLK 24000000
  190. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_UART_BASE + 0)
  191. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_UART_BASE + 8)
  192. /*
  193. * PCI stuff
  194. */
  195. #define CONFIG_PCI /* include pci support */
  196. #define CONFIG_PCI_PNP /* pci plug-and-play */
  197. #define CONFIG_PCI_HOST PCI_HOST_AUTO
  198. #undef CONFIG_PCI_SCAN_SHOW
  199. /*
  200. * Optional Video console (graphic: SMI LynxEM)
  201. */
  202. #define CONFIG_VIDEO
  203. #define CONFIG_CFB_CONSOLE
  204. #define VIDEO_KBD_INIT_FCT (simple_strtol (getenv("console"), NULL, 10))
  205. #define VIDEO_TSTC_FCT serial_tstc
  206. #define VIDEO_GETC_FCT serial_getc
  207. #define CONFIG_VIDEO_SMI_LYNXEM
  208. #define CONFIG_VIDEO_LOGO
  209. #define CONFIG_CONSOLE_EXTRA_INFO
  210. /*
  211. * Initial BATs
  212. */
  213. #if 1
  214. #define CONFIG_SYS_IBAT0L 0
  215. #define CONFIG_SYS_IBAT0U 0
  216. #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT1L
  217. #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT1U
  218. #define CONFIG_SYS_IBAT1L 0
  219. #define CONFIG_SYS_IBAT1U 0
  220. #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
  221. #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
  222. #define CONFIG_SYS_IBAT2L 0
  223. #define CONFIG_SYS_IBAT2U 0
  224. #define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L
  225. #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
  226. #define CONFIG_SYS_IBAT3L 0
  227. #define CONFIG_SYS_IBAT3U 0
  228. #define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L
  229. #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
  230. #else
  231. /* SDRAM */
  232. #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_RW)
  233. #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
  234. #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT1L
  235. #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT1U
  236. /* address range for flashes */
  237. #define CONFIG_SYS_IBAT1L (CONFIG_SYS_FLASH_BASE | BATL_RW | BATL_CACHEINHIBIT)
  238. #define CONFIG_SYS_IBAT1U (CONFIG_SYS_FLASH_BASE | BATU_BL_16M | BATU_VS | BATU_VP)
  239. #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
  240. #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
  241. /* ISA IO space */
  242. #define CONFIG_SYS_IBAT2L (CONFIG_SYS_ISA_IO | BATL_RW | BATL_CACHEINHIBIT)
  243. #define CONFIG_SYS_IBAT2U (CONFIG_SYS_ISA_IO | BATU_BL_16M | BATU_VS | BATU_VP)
  244. #define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L
  245. #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
  246. /* ISA memory space */
  247. #define CONFIG_SYS_IBAT3L (CONFIG_SYS_ISA_MEM | BATL_RW | BATL_CACHEINHIBIT)
  248. #define CONFIG_SYS_IBAT3U (CONFIG_SYS_ISA_MEM | BATU_BL_16M | BATU_VS | BATU_VP)
  249. #define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L
  250. #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
  251. #endif
  252. /*
  253. * Speed settings are board specific
  254. */
  255. #define CONFIG_SYS_BUS_HZ 100000000
  256. #define CONFIG_SYS_CPU_CLK 400000000
  257. #define CONFIG_SYS_BUS_CLK CONFIG_SYS_BUS_HZ
  258. /*
  259. * For booting Linux, the board info and command line data
  260. * have to be in the first 8 MB of memory, since this is
  261. * the maximum mapped by the Linux kernel during initialization.
  262. */
  263. #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  264. /*
  265. * Cache Configuration
  266. */
  267. #define CONFIG_SYS_CACHELINE_SIZE 32 /* For all MPC74xx CPUs */
  268. #if defined(CONFIG_CMD_KGDB)
  269. #define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
  270. #endif
  271. /*
  272. * L2CR setup -- make sure this is right for your board!
  273. * look in include/74xx_7xx.h for the defines used here
  274. */
  275. #define CONFIG_SYS_L2
  276. #if 1
  277. #define L2_INIT 0 /* cpu 750 CXe*/
  278. #else
  279. #define L2_INIT (L2CR_L2SIZ_2M | L2CR_L2CLK_3 | L2CR_L2RAM_BURST | \
  280. L2CR_L2OH_5 | L2CR_L2CTL | L2CR_L2WT)
  281. #endif
  282. #define L2_ENABLE (L2_INIT | L2CR_L2E)
  283. /*
  284. * Internal Definitions
  285. *
  286. * Boot Flags
  287. */
  288. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  289. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  290. #define CONFIG_NET_MULTI /* Multi ethernet cards support */
  291. #define CONFIG_EEPRO100
  292. #define CONFIG_SYS_RX_ETH_BUFFER 8 /* use 8 rx buffer on eepro100 */
  293. #define CONFIG_EEPRO100_SROM_WRITE
  294. #endif /* __CONFIG_H */