AdderII.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /******************************************************************************
  2. * A collection of structures, addresses, and values associated with
  3. * the Motorola 850T AdderIIF board. Copied from the FADS stuff.
  4. * Magnus Damm added defines for 8xxrom and extended bd_info.
  5. * Helmut Buchsbaum added bitvalues for BCSRx
  6. *
  7. * Copyright (c) 1998 Dan Malek (dmalek@jlc.net)
  8. *******************************************************************************
  9. * 2003-JUL: The AdderII is using the following physical memorymap:
  10. *******************************************************************************
  11. * FA200000 -> FA20FFFF : IMAP internal in the cpu
  12. * FE000000 -> FE400000 : flash connected to CS0, setup by 8xxrom
  13. * 00000000 -> 00800000 : sdram setup by 8xxrom
  14. *******************************************************************************/
  15. #ifndef __CONFIG_H
  16. #define __CONFIG_H
  17. #include <mpc8xx_irq.h>
  18. #define CONFIG_MPC860 1
  19. #define CONFIG_MPC860T 1
  20. #define CONFIG_ADDERII 1
  21. /* CPU Clock speed */
  22. #define MPC8XX_FACT 12 /* Multilpy by 12 */
  23. #define MPC8XX_XIN 4000000 /* 4MHz */
  24. #define MPC8XX_HZ ( MPC8XX_FACT * MPC8XX_XIN )
  25. #define CONFIG_8xx_GCLK_FREQ MPC8XX_HZ
  26. #define CONFIG_SDRAM_50MHZ 1
  27. /* Default Serial Console, baudrate */
  28. #define CONFIG_8xx_CONS_SMC1 1 /* Console is on SMC1 */
  29. #define CONFIG_BAUDRATE 38400
  30. #define CONFIG_LOADS_ECHO 1
  31. /* FEC Ethernet controller configurations */
  32. #define CONFIG_FEC_ETH 1
  33. #define CONFIG_NET_MULTI 1
  34. #define FEC_ENET 1
  35. /* Interrupt level assignments.
  36. */
  37. #define FEC_INTERRUPT SIU_LEVEL3 /* FEC interrupt */
  38. /* Older kernels need clock in MHz newer in Hz */
  39. #define CONFIG_CLOCKS_IN_MHZ 1
  40. /* Monitor Functions */
  41. #define CONFIG_COMMANDS ( CFG_CMD_ENV | \
  42. CFG_CMD_FLASH | \
  43. CFG_CMD_MEMORY| \
  44. CFG_CMD_NET | \
  45. CFG_CMD_PING | \
  46. CFG_CMD_SDRAM )
  47. /* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
  48. #include <cmd_confdefs.h>
  49. /* Configuration Settings */
  50. #define CFG_PROMPT "=>" /* Monitor Command Prompt */
  51. #if ( CONFIG_COMMANDS & CFG_CMD_KGDB )
  52. #define CFG_CBSIZE 1024 /* Console I/P buffer size */
  53. #else
  54. #define CFG_CBSIZE 256
  55. #endif
  56. #define CFG_PBSIZE ( CFG_CBSIZE + sizeof( CFG_PROMPT ) + 16 )
  57. /* Print buffer size */
  58. #define CFG_MAXARGS 16 /* Max number of cmd args */
  59. #define CFG_BARGSIZE CFG_CBSIZE /* Boot args buffer size */
  60. #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  61. #define CFG_MEMTEST_START 0x00100000 /* Mem test works on */
  62. #define CFG_MEMTEST_END 0x00800000 /* 1 ... 8MB in SDRAM */
  63. #define CFG_LOAD_ADDR 0x00100000
  64. #define CFG_HZ 1000
  65. /******************************************************************************
  66. ** Low level configuration settings.
  67. ** ( adderss mappings, register init values, etc. )
  68. ** You should know what you are doing if you make changes here.
  69. ******************************************************************************/
  70. /* Start address for the final memory configuration set up by startup code
  71. ** Please note that CFG_SDRAM_BASE must start at 0
  72. */
  73. #define CFG_SDRAM_BASE 0x00000000
  74. #define CFG_FLASH_BASE 0xFE000000
  75. #define CFG_FLASH_SIZE (( uint ) ( 4 * 1024 * 1024 )) /* 4MB */
  76. #define CFG_MONITOR_BASE CFG_FLASH_BASE
  77. #define CFG_MONITOR_LEN ( 256 << 10 ) /* 256 KByte */
  78. #define CFG_MALLOC_LEN ( 384 << 10 ) /* 384 KByte SDRAM rsvd */
  79. /* malloc() usage */
  80. /**
  81. ** For booting Linux, the board info and command line data
  82. ** have to be in the first 8 MB of memory, since this is
  83. ** the maximum mapped by the Linux kernel during initialization.
  84. **/
  85. #define CFG_BOOTMAPSZ ( 8 << 20 ) /* Initial Memory map for Linux */
  86. /******************************************************************************
  87. ** Flash Organization
  88. ******************************************************************************/
  89. #define CFG_MAX_FLASH_BANKS 1 /* Max no of flash mem banks */
  90. #define CFG_MAX_FLASH_SECT 71 /* Max no of sec on 1 chip */
  91. #define CFG_FLASH_ERASE_TOUT 120000 /* Erase flash timeout (ms) */
  92. #define CFG_FLASH_WRITE_TOUT 500 /* Write flash timeout (ms) */
  93. /******************************************************************************
  94. ** U-BOOT Environment variables in Flash
  95. ******************************************************************************/
  96. #define CFG_ENV_IS_IN_FLASH 1
  97. #define CFG_ENV_OFFSET 0x00040000
  98. #define CFG_ENV_SIZE 0x10000 /* 64KBytes env space */
  99. #define CFG_ENV_SECT_SIZE 0x10000
  100. /******************************************************************************
  101. ** Cache Configuration
  102. ******************************************************************************/
  103. #define CFG_CACHELINE_SIZE 16 /* For all MPC8xx CPUs */
  104. #if ( CONFIG_COMMANDS & CFG_CMD_KGDB )
  105. #define CFG_CACHELINE_SHIFT 4 /* log base 2 of the above value */
  106. #endif
  107. /******************************************************************************
  108. ** Internal memory mapped register
  109. ******************************************************************************/
  110. #define CFG_IMMR 0xFA200000
  111. #define CFG_IMMR_SIZE (( uint) ( 62 * 1024 )) /* 64 KByte res */
  112. /* Definitions for initial stack pointer and data area ( in DPRAM ) */
  113. #define CFG_INIT_RAM_ADDR CFG_IMMR
  114. #define CFG_INIT_RAM_END 0x2F00 /* end of used area in DPRAM */
  115. #define CFG_GBL_DATA_SIZE 64
  116. #define CFG_GBL_DATA_OFFSET ( CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE )
  117. #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
  118. /* SIU Module Configuration Register */
  119. #define CFG_SIUMCR ( SIUMCR_AEME | SIUMCR_MLRC01 | SIUMCR_DBGC10 )
  120. /******************************************************************************
  121. ** SYPCR - System protection and control
  122. ** SYPCR - can be written only once after reset
  123. ******************************************************************************/
  124. #if defined( CONFIG_WATCHDOG )
  125. #define CFG_SYPCR ( SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | \
  126. SYPCR_SWF | SYPCR_SWE | SYPCR_SWRI | \
  127. SYPCR_SWP )
  128. #else
  129. #define CFG_SYPCR ( SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | \
  130. SYPCR_SWF | SYPCR_SWP )
  131. #endif
  132. /* TBSCR - Time Base Status and Control Register */
  133. #define CFG_TBSCR ( TBSCR_REFA | TBSCR_REFB | TBSCR_TBE )
  134. /* PISCR - Periodic Interrupt Status and Control */
  135. #define CFG_PISCR ( PISCR_PS | PISCR_PITF )
  136. /* PLPRCR - PLL, Low-Power, and Reset Control Register */
  137. #define CFG_PLPRCR ((( MPC8XX_FACT - 1 ) << PLPRCR_MF_SHIFT ) | \
  138. PLPRCR_SPLSS | PLPRCR_TEXPS | PLPRCR_TMIST )
  139. /* SCCR - System Clock and reset Control Register */
  140. #define SCCR_MASK SCCR_EBDF11
  141. #define CFG_SCCR ( SCCR_TBS | SCCR_COM00 | SCCR_DFSYNC00 | \
  142. SCCR_DFBRG00 | SCCR_DFNL000| SCCR_DFNH000 | \
  143. SCCR_DFLCD000 | SCCR_DFALCD00 )
  144. #define CFG_DER 0
  145. /******************************************************************************
  146. ** Because of the way the 860 starts up and assigns CS0 the
  147. ** entire address space, we have to set the memory controller
  148. ** differently. Normally, you write the option register
  149. ** first, and then enable the chip select by writing the
  150. ** base register. For CS0, you must write the base register
  151. ** first, followed by the option register.
  152. ******************************************************************************/
  153. /**
  154. ** Memory Controller Definitions
  155. ** BR0/1/2... and OR0/1/2...
  156. */
  157. /* For AdderII BR0 FLASH */
  158. #define CFG_REMAP_OR_AM 0xFF800000 /* OR addr mask */
  159. #define CFG_PRELIM_OR_AM 0xFF800000 /* OR addr mask */
  160. /* Flash Timings: ACS = 11, TRLX = 1, CSNT = 0, SCY = 7 */
  161. #define CFG_OR_TIMING_FLASH ( OR_ACS_DIV2 | OR_BI | OR_SCY_7_CLK | OR_TRLX )
  162. #define CFG_OR0_REMAP ( CFG_REMAP_OR_AM | CFG_OR_TIMING_FLASH )
  163. #define CFG_OR0_PRELIM CFG_OR0_REMAP
  164. #define CFG_BR0_PRELIM (( CFG_FLASH_BASE & BR_BA_MSK ) | \
  165. BR_PS_16 | BR_V )
  166. /* For AdderII BR1 SDRAM */
  167. #define CFG_PRELIM_OR1_AM 0xFF800000
  168. #define CFG_OR1_REMAP ( CFG_PRELIM_OR1_AM | OR_CSNT_SAM | OR_ACS_DIV2 )
  169. #define CFG_OR1_PRELIM ( CFG_PRELIM_OR1_AM | OR_CSNT_SAM | OR_ACS_DIV2 )
  170. #define CFG_BR1_PRELIM ( CFG_SDRAM_BASE | BR_MS_UPMA | BR_V )
  171. /*******************************************************************************
  172. * Internal Definitions Boot Flags
  173. *******************************************************************************/
  174. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  175. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  176. #endif
  177. /* __CONFIG_H */