cradle.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. /*
  2. * (C) Copyright 2002
  3. * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
  4. *
  5. * (C) Copyright 2002
  6. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  7. * Marius Groeger <mgroeger@sysgo.de>
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. #ifndef __CONFIG_H
  28. #define __CONFIG_H
  29. /*
  30. * High Level Configuration Options
  31. * (easy to change)
  32. */
  33. #define CONFIG_PXA250 1 /* This is an PXA250 CPU */
  34. #define CONFIG_HHP_CRADLE 1 /* on an Cradle Board */
  35. #undef CONFIG_USE_IRQ /* we don't need IRQ/FIQ stuff */
  36. /*
  37. * Size of malloc() pool
  38. */
  39. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128*1024)
  40. #define CONFIG_SYS_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
  41. /*
  42. * Hardware drivers
  43. */
  44. #define CONFIG_DRIVER_SMC91111
  45. #define CONFIG_SMC91111_BASE 0x10000300
  46. #define CONFIG_SMC91111_EXT_PHY
  47. #define CONFIG_SMC_USE_32_BIT
  48. /*
  49. * select serial console configuration
  50. */
  51. #define CONFIG_FFUART 1 /* we use FFUART on LUBBOCK */
  52. /* allow to overwrite serial and ethaddr */
  53. #define CONFIG_ENV_OVERWRITE
  54. #define CONFIG_BAUDRATE 115200
  55. /*
  56. * BOOTP options
  57. */
  58. #define CONFIG_BOOTP_BOOTFILESIZE
  59. #define CONFIG_BOOTP_BOOTPATH
  60. #define CONFIG_BOOTP_GATEWAY
  61. #define CONFIG_BOOTP_HOSTNAME
  62. /*
  63. * Command line configuration.
  64. */
  65. #include <config_cmd_default.h>
  66. #define CONFIG_BOOTDELAY 3
  67. #define CONFIG_BOOTARGS "root=/dev/mtdblock2 console=ttyS0,115200"
  68. #define CONFIG_ETHADDR 08:00:3e:26:0a:5b
  69. #define CONFIG_NETMASK 255.255.0.0
  70. #define CONFIG_IPADDR 192.168.0.21
  71. #define CONFIG_SERVERIP 192.168.0.250
  72. #define CONFIG_BOOTCOMMAND "bootm 40000"
  73. #define CONFIG_CMDLINE_TAG
  74. /*
  75. * Miscellaneous configurable options
  76. */
  77. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  78. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  79. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  80. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
  81. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  82. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  83. #define CONFIG_SYS_MEMTEST_START 0xa0400000 /* memtest works on */
  84. #define CONFIG_SYS_MEMTEST_END 0xa0800000 /* 4 ... 8 MB in DRAM */
  85. #undef CONFIG_SYS_CLKS_IN_HZ /* everything, incl board info, in Hz */
  86. #define CONFIG_SYS_LOAD_ADDR 0xa2000000 /* default load address */
  87. #define CONFIG_SYS_HZ 1000
  88. #define CONFIG_SYS_CPUSPEED 0x141 /* set core clock to 200/200/100 MHz */
  89. /* valid baudrates */
  90. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  91. /*
  92. * Stack sizes
  93. *
  94. * The stack sizes are set up in start.S using the settings below
  95. */
  96. #define CONFIG_STACKSIZE (128*1024) /* regular stack */
  97. #ifdef CONFIG_USE_IRQ
  98. #define CONFIG_STACKSIZE_IRQ (4*1024) /* IRQ stack */
  99. #define CONFIG_STACKSIZE_FIQ (4*1024) /* FIQ stack */
  100. #endif
  101. /*
  102. * Physical Memory Map
  103. */
  104. #define CONFIG_NR_DRAM_BANKS 4 /* we have 2 banks of DRAM */
  105. #define PHYS_SDRAM_1 0xa0000000 /* SDRAM Bank #1 */
  106. #define PHYS_SDRAM_1_SIZE 0x01000000 /* 64 MB */
  107. #define PHYS_SDRAM_2 0xa4000000 /* SDRAM Bank #2 */
  108. #define PHYS_SDRAM_2_SIZE 0x00000000 /* 0 MB */
  109. #define PHYS_SDRAM_3 0xa8000000 /* SDRAM Bank #3 */
  110. #define PHYS_SDRAM_3_SIZE 0x00000000 /* 0 MB */
  111. #define PHYS_SDRAM_4 0xac000000 /* SDRAM Bank #4 */
  112. #define PHYS_SDRAM_4_SIZE 0x00000000 /* 0 MB */
  113. #define PHYS_FLASH_1 0x00000000 /* Flash Bank #1 */
  114. #define PHYS_FLASH_2 0x04000000 /* Flash Bank #1 */
  115. #define PHYS_FLASH_SIZE 0x02000000 /* 32 MB */
  116. #define CONFIG_SYS_DRAM_BASE 0xa0000000
  117. #define CONFIG_SYS_DRAM_SIZE 0x04000000
  118. #define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
  119. /*
  120. * FLASH and environment organization
  121. */
  122. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  123. #define CONFIG_SYS_MAX_FLASH_SECT 32 /* max number of sectors on one chip */
  124. /* timeout values are in ticks */
  125. #define CONFIG_SYS_FLASH_ERASE_TOUT (2*CONFIG_SYS_HZ) /* Timeout for Flash Erase */
  126. #define CONFIG_SYS_FLASH_WRITE_TOUT (2*CONFIG_SYS_HZ) /* Timeout for Flash Write */
  127. #define CONFIG_ENV_IS_IN_FLASH 1
  128. #define CONFIG_ENV_ADDR 0x00020000 /* absolute address for now */
  129. #define CONFIG_ENV_SIZE 0x20000 /* 8K ouch, this may later be */
  130. /******************************************************************************
  131. *
  132. * CPU specific defines
  133. *
  134. ******************************************************************************/
  135. /*
  136. * GPIO settings
  137. *
  138. * GPIO pin assignments
  139. * GPIO Name Dir Out AF
  140. * 0 NC
  141. * 1 NC
  142. * 2 SIRQ1 I
  143. * 3 SIRQ2 I
  144. * 4 SIRQ3 I
  145. * 5 DMAACK1 O 0
  146. * 6 DMAACK2 O 0
  147. * 7 DMAACK3 O 0
  148. * 8 TC1 O 0
  149. * 9 TC2 O 0
  150. * 10 TC3 O 0
  151. * 11 nDMAEN O 1
  152. * 12 AENCTRL O 0
  153. * 13 PLDTC O 0
  154. * 14 ETHIRQ I
  155. * 15 NC
  156. * 16 NC
  157. * 17 NC
  158. * 18 RDY I
  159. * 19 DMASIO I
  160. * 20 ETHIRQ NC
  161. * 21 NC
  162. * 22 PGMEN O 1 FIXME for debug only enable flash
  163. * 23 NC
  164. * 24 NC
  165. * 25 NC
  166. * 26 NC
  167. * 27 NC
  168. * 28 NC
  169. * 29 NC
  170. * 30 NC
  171. * 31 NC
  172. * 32 NC
  173. * 33 NC
  174. * 34 FFRXD I 01
  175. * 35 FFCTS I 01
  176. * 36 FFDCD I 01
  177. * 37 FFDSR I 01
  178. * 38 FFRI I 01
  179. * 39 FFTXD O 1 10
  180. * 40 FFDTR O 0 10
  181. * 41 FFRTS O 0 10
  182. * 42 RS232FOFF O 0 00
  183. * 43 NC
  184. * 44 NC
  185. * 45 IRSL0 O 0
  186. * 46 IRRX0 I 01
  187. * 47 IRTX0 O 0 10
  188. * 48 NC
  189. * 49 nIOWE O 0
  190. * 50 NC
  191. * 51 NC
  192. * 52 NC
  193. * 53 NC
  194. * 54 NC
  195. * 55 NC
  196. * 56 NC
  197. * 57 NC
  198. * 58 DKDIRQ I
  199. * 59 NC
  200. * 60 NC
  201. * 61 NC
  202. * 62 NC
  203. * 63 NC
  204. * 64 COMLED O 0
  205. * 65 COMLED O 0
  206. * 66 COMLED O 0
  207. * 67 COMLED O 0
  208. * 68 COMLED O 0
  209. * 69 COMLED O 0
  210. * 70 COMLED O 0
  211. * 71 COMLED O 0
  212. * 72 NC
  213. * 73 NC
  214. * 74 NC
  215. * 75 NC
  216. * 76 NC
  217. * 77 NC
  218. * 78 CSIO O 1
  219. * 79 NC
  220. * 80 CSETH O 1
  221. *
  222. * NOTE: All NC's are defined to be outputs
  223. *
  224. */
  225. /* Pin direction control */
  226. /* NOTE GPIO 0, 61, 62 are set for inputs due to CPLD SPAREs */
  227. #define CONFIG_SYS_GPDR0_VAL 0xfff3bf02
  228. #define CONFIG_SYS_GPDR1_VAL 0xfbffbf83
  229. #define CONFIG_SYS_GPDR2_VAL 0x0001ffff
  230. /* Set and Clear registers */
  231. #define CONFIG_SYS_GPSR0_VAL 0x00400800
  232. #define CONFIG_SYS_GPSR1_VAL 0x00000480
  233. #define CONFIG_SYS_GPSR2_VAL 0x00014000
  234. #define CONFIG_SYS_GPCR0_VAL 0x00000000
  235. #define CONFIG_SYS_GPCR1_VAL 0x00000000
  236. #define CONFIG_SYS_GPCR2_VAL 0x00000000
  237. /* Edge detect registers (these are set by the kernel) */
  238. #define CONFIG_SYS_GRER0_VAL 0x00000000
  239. #define CONFIG_SYS_GRER1_VAL 0x00000000
  240. #define CONFIG_SYS_GRER2_VAL 0x00000000
  241. #define CONFIG_SYS_GFER0_VAL 0x00000000
  242. #define CONFIG_SYS_GFER1_VAL 0x00000000
  243. #define CONFIG_SYS_GFER2_VAL 0x00000000
  244. /* Alternate function registers */
  245. #define CONFIG_SYS_GAFR0_L_VAL 0x00000000
  246. #define CONFIG_SYS_GAFR0_U_VAL 0x00000010
  247. #define CONFIG_SYS_GAFR1_L_VAL 0x900a9550
  248. #define CONFIG_SYS_GAFR1_U_VAL 0x00000008
  249. #define CONFIG_SYS_GAFR2_L_VAL 0x20000000
  250. #define CONFIG_SYS_GAFR2_U_VAL 0x00000002
  251. /*
  252. * Clocks, power control and interrupts
  253. */
  254. #define CONFIG_SYS_PSSR_VAL 0x00000020
  255. #define CONFIG_SYS_CCCR_VAL 0x00000141 /* 100 MHz memory, 200 MHz CPU */
  256. #define CONFIG_SYS_CKEN_VAL 0x00000060 /* FFUART and STUART enabled */
  257. #define CONFIG_SYS_ICMR_VAL 0x00000000 /* No interrupts enabled */
  258. /* FIXME
  259. *
  260. * RTC settings
  261. * Watchdog
  262. *
  263. */
  264. /*
  265. * Memory settings
  266. *
  267. * FIXME Can ethernet be burst read and/or write?? This is set for lubbock
  268. * Verify timings on all
  269. */
  270. #define CONFIG_SYS_MSC0_VAL 0x000023FA /* flash bank (cs0) */
  271. /*#define CONFIG_SYS_MSC1_VAL 0x00003549 / * SuperIO bank (cs2) */
  272. #define CONFIG_SYS_MSC1_VAL 0x0000354c /* SuperIO bank (cs2) */
  273. #define CONFIG_SYS_MSC2_VAL 0x00001224 /* Ethernet bank (cs4) */
  274. #ifdef REDBOOT_WAY
  275. #define CONFIG_SYS_MDCNFG_VAL 0x00001aa1 /* FIXME can DTC be 01? */
  276. #define CONFIG_SYS_MDMRS_VAL 0x00000000
  277. #define CONFIG_SYS_MDREFR_VAL 0x00018018
  278. #else
  279. #define CONFIG_SYS_MDCNFG_VAL 0x00001aa1 /* FIXME can DTC be 01? */
  280. #define CONFIG_SYS_MDMRS_VAL 0x00000000
  281. #define CONFIG_SYS_MDREFR_VAL 0x00403018 /* Initial setting, individual bits set in lowlevel_init.S */
  282. #endif
  283. /*
  284. * PCMCIA and CF Interfaces (NOT USED, these values from lubbock init)
  285. */
  286. #define CONFIG_SYS_MECR_VAL 0x00000000
  287. #define CONFIG_SYS_MCMEM0_VAL 0x00010504
  288. #define CONFIG_SYS_MCMEM1_VAL 0x00010504
  289. #define CONFIG_SYS_MCATT0_VAL 0x00010504
  290. #define CONFIG_SYS_MCATT1_VAL 0x00010504
  291. #define CONFIG_SYS_MCIO0_VAL 0x00004715
  292. #define CONFIG_SYS_MCIO1_VAL 0x00004715
  293. /* Board specific defines */
  294. /* LED defines */
  295. #define YELLOW 0x03
  296. #define RED 0x02
  297. #define GREEN 0x01
  298. #define OFF 0x00
  299. #define LED_IRDA0 0
  300. #define LED_IRDA1 2
  301. #define LED_IRDA2 4
  302. #define LED_IRDA3 6
  303. #define CRADLE_LED_SET_REG GPSR2
  304. #define CRADLE_LED_CLR_REG GPCR2
  305. /* SuperIO defines */
  306. #define CRADLE_SIO_INDEX 0x2e
  307. #define CRADLE_SIO_DATA 0x2f
  308. /* IO defines */
  309. #define CRADLE_CPLD_PHYS 0x08000000
  310. #define CRADLE_SIO1_PHYS 0x08100000
  311. #define CRADLE_SIO2_PHYS 0x08200000
  312. #define CRADLE_SIO3_PHYS 0x08300000
  313. #define CRADLE_ETH_PHYS 0x10000000
  314. #ifndef __ASSEMBLY__
  315. /* global prototypes */
  316. void led_code(int code, int color);
  317. #endif
  318. #endif /* __CONFIG_H */