ISPAN.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. /*
  2. * Copyright (C) 2004 Arabella Software Ltd.
  3. * Yuli Barcohen <yuli@arabellasw.com>
  4. *
  5. * Support for Interphase iSPAN Communications Controllers
  6. * (453x and others). Tested on 4532.
  7. *
  8. * Derived from iSPAN 4539 port (iphase4539) by
  9. * Wolfgang Grandegger <wg@denx.de>
  10. *
  11. * See file CREDITS for list of people who contributed to this
  12. * project.
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License as
  16. * published by the Free Software Foundation; either version 2 of
  17. * the License, or (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  27. * MA 02111-1307 USA
  28. */
  29. #ifndef __CONFIG_H
  30. #define __CONFIG_H
  31. #define CONFIG_MPC8260 /* This is an MPC8260 CPU */
  32. #define CONFIG_ISPAN /* ...on one of Interphase iSPAN boards */
  33. #define CONFIG_CPM2 1 /* Has a CPM2 */
  34. #define CONFIG_SYS_TEXT_BASE 0xFE7A0000
  35. /*-----------------------------------------------------------------------
  36. * Select serial console configuration
  37. *
  38. * If either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then
  39. * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4
  40. * for SCC).
  41. *
  42. * If CONFIG_CONS_NONE is defined, then the serial console routines must be
  43. * defined elsewhere (for example, on the cogent platform, there are serial
  44. * ports on the motherboard which are used for the serial console - see
  45. * cogent/cma101/serial.[ch]).
  46. */
  47. #define CONFIG_CONS_ON_SMC /* Define if console on SMC */
  48. #undef CONFIG_CONS_ON_SCC /* Define if console on SCC */
  49. #undef CONFIG_CONS_NONE /* Define if console on something else */
  50. #define CONFIG_CONS_INDEX 1 /* Which serial channel for console */
  51. /*-----------------------------------------------------------------------
  52. * Select Ethernet configuration
  53. *
  54. * If either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected, then
  55. * CONFIG_ETHER_INDEX must be set to the channel number (1-4 for SCC, 1-3
  56. * for FCC).
  57. *
  58. * If CONFIG_ETHER_NONE is defined, then either the Ethernet routines must
  59. * be defined elsewhere (as for the console), or CONFIG_CMD_NET must be unset.
  60. */
  61. #undef CONFIG_ETHER_ON_SCC /* Define if Ethernet on SCC */
  62. #define CONFIG_ETHER_ON_FCC /* Define if Ethernet on FCC */
  63. #undef CONFIG_ETHER_NONE /* Define if Ethernet on something else */
  64. #define CONFIG_ETHER_INDEX 3 /* Which channel for Ethernrt */
  65. #ifdef CONFIG_ETHER_ON_FCC
  66. #if CONFIG_ETHER_INDEX == 3
  67. #define CONFIG_SYS_PHY_ADDR 0
  68. #define CONFIG_SYS_CMXFCR_VALUE3 (CMXFCR_RF3CS_CLK14 | CMXFCR_TF3CS_CLK16)
  69. #define CONFIG_SYS_CMXFCR_MASK3 (CMXFCR_FC3 | CMXFCR_RF3CS_MSK | CMXFCR_TF3CS_MSK)
  70. #endif /* CONFIG_ETHER_INDEX == 3 */
  71. #define CONFIG_SYS_CPMFCR_RAMTYPE 0
  72. #define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB)
  73. #define CONFIG_MII /* MII PHY management */
  74. #define CONFIG_BITBANGMII /* Bit-bang MII PHY management */
  75. /*
  76. * GPIO pins used for bit-banged MII communications
  77. */
  78. #define MDIO_PORT 3 /* Port D */
  79. #define MDIO_DECLARE volatile ioport_t *iop = ioport_addr ( \
  80. (immap_t *) CONFIG_SYS_IMMR, MDIO_PORT )
  81. #define MDC_DECLARE MDIO_DECLARE
  82. #define CONFIG_SYS_MDIO_PIN 0x00040000 /* PD13 */
  83. #define CONFIG_SYS_MDC_PIN 0x00080000 /* PD12 */
  84. #define MDIO_ACTIVE (iop->pdir |= CONFIG_SYS_MDIO_PIN)
  85. #define MDIO_TRISTATE (iop->pdir &= ~CONFIG_SYS_MDIO_PIN)
  86. #define MDIO_READ ((iop->pdat & CONFIG_SYS_MDIO_PIN) != 0)
  87. #define MDIO(bit) if(bit) iop->pdat |= CONFIG_SYS_MDIO_PIN; \
  88. else iop->pdat &= ~CONFIG_SYS_MDIO_PIN
  89. #define MDC(bit) if(bit) iop->pdat |= CONFIG_SYS_MDC_PIN; \
  90. else iop->pdat &= ~CONFIG_SYS_MDC_PIN
  91. #define MIIDELAY udelay(1)
  92. #endif /* CONFIG_ETHER_ON_FCC */
  93. #define CONFIG_8260_CLKIN 65536000 /* in Hz */
  94. #define CONFIG_BAUDRATE 38400
  95. /*
  96. * BOOTP options
  97. */
  98. #define CONFIG_BOOTP_BOOTFILESIZE
  99. #define CONFIG_BOOTP_BOOTPATH
  100. #define CONFIG_BOOTP_GATEWAY
  101. #define CONFIG_BOOTP_HOSTNAME
  102. /*
  103. * Command line configuration.
  104. */
  105. #include <config_cmd_default.h>
  106. #define CONFIG_CMD_ASKENV
  107. #define CONFIG_CMD_DHCP
  108. #define CONFIG_CMD_IMMAP
  109. #define CONFIG_CMD_MII
  110. #define CONFIG_CMD_PING
  111. #define CONFIG_CMD_REGINFO
  112. #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
  113. #define CONFIG_BOOTCOMMAND "bootm fe010000" /* autoboot command */
  114. #define CONFIG_BOOTARGS "root=/dev/ram rw"
  115. #define CONFIG_BZIP2 /* Include support for bzip2 compressed images */
  116. #undef CONFIG_WATCHDOG /* Disable platform specific watchdog */
  117. /*-----------------------------------------------------------------------
  118. * Miscellaneous configurable options
  119. */
  120. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  121. #define CONFIG_SYS_HUSH_PARSER
  122. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  123. #define CONFIG_SYS_LONGHELP /* #undef to save memory */
  124. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  125. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) /* Print Buffer Size */
  126. #define CONFIG_SYS_MAXARGS 16 /* Max number of command args */
  127. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  128. #define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
  129. #define CONFIG_SYS_MEMTEST_END 0x03B00000 /* 1 ... 59 MB in SDRAM */
  130. #define CONFIG_SYS_LOAD_ADDR 0x100000 /* Default load address */
  131. #define CONFIG_SYS_HZ 1000 /* Decrementer freq: 1 ms ticks */
  132. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  133. #define CONFIG_SYS_RESET_ADDRESS 0x09900000
  134. #define CONFIG_MISC_INIT_R /* We need misc_init_r() */
  135. /*-----------------------------------------------------------------------
  136. * For booting Linux, the board info and command line data
  137. * have to be in the first 8 MB of memory, since this is
  138. * the maximum mapped by the Linux kernel during initialization.
  139. */
  140. #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  141. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
  142. #define CONFIG_SYS_MONITOR_LEN (192 << 10) /* Reserve 192 kB for Monitor */
  143. #ifdef CONFIG_BZIP2
  144. #define CONFIG_SYS_MALLOC_LEN (4096 << 10) /* Reserve 4 MB for malloc() */
  145. #else
  146. #define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 KB for malloc() */
  147. #endif /* CONFIG_BZIP2 */
  148. /*-----------------------------------------------------------------------
  149. * FLASH organization
  150. */
  151. #define CONFIG_SYS_FLASH_BASE 0xFE000000
  152. #define CONFIG_SYS_FLASH_CFI /* The flash is CFI compatible */
  153. #define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */
  154. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max num of memory banks */
  155. #define CONFIG_SYS_MAX_FLASH_SECT 142 /* Max num of sects on one chip */
  156. /* Environment is in flash, there is little space left in Serial EEPROM */
  157. #define CONFIG_ENV_IS_IN_FLASH
  158. #define CONFIG_ENV_SECT_SIZE 0x10000 /* We use one complete sector */
  159. #define CONFIG_ENV_SIZE (CONFIG_ENV_SECT_SIZE)
  160. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
  161. #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE)
  162. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  163. /*-----------------------------------------------------------------------
  164. * Hard Reset Configuration Words
  165. *
  166. * If you change bits in the HRCW, you must also change the CONFIG_SYS_*
  167. * defines for the various registers affected by the HRCW e.g. changing
  168. * HRCW_DPPCxx requires you to also change CONFIG_SYS_SIUMCR.
  169. */
  170. /* 0x1686B245 */
  171. #define CONFIG_SYS_HRCW_MASTER (HRCW_EBM | HRCW_BPS01 | HRCW_CIP |\
  172. HRCW_L2CPC10 | HRCW_ISB110 |\
  173. HRCW_BMS | HRCW_MMR11 | HRCW_APPC10 |\
  174. HRCW_CS10PC01 | HRCW_MODCK_H0101 \
  175. )
  176. /* No slaves */
  177. #define CONFIG_SYS_HRCW_SLAVE1 0
  178. #define CONFIG_SYS_HRCW_SLAVE2 0
  179. #define CONFIG_SYS_HRCW_SLAVE3 0
  180. #define CONFIG_SYS_HRCW_SLAVE4 0
  181. #define CONFIG_SYS_HRCW_SLAVE5 0
  182. #define CONFIG_SYS_HRCW_SLAVE6 0
  183. #define CONFIG_SYS_HRCW_SLAVE7 0
  184. /*-----------------------------------------------------------------------
  185. * Internal Memory Mapped Register
  186. */
  187. #define CONFIG_SYS_IMMR 0xF0F00000
  188. #ifdef CONFIG_SYS_REV_B
  189. #define CONFIG_SYS_DEFAULT_IMMR 0xFF000000
  190. #endif /* CONFIG_SYS_REV_B */
  191. /*-----------------------------------------------------------------------
  192. * Definitions for initial stack pointer and data area (in DPRAM)
  193. */
  194. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR
  195. #define CONFIG_SYS_INIT_RAM_SIZE 0x4000 /* Size of used area in DPRAM */
  196. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  197. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  198. /*-----------------------------------------------------------------------
  199. * Cache Configuration
  200. */
  201. #define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC8260 CPU */
  202. /*-----------------------------------------------------------------------
  203. * HIDx - Hardware Implementation-dependent Registers 2-11
  204. *-----------------------------------------------------------------------
  205. * HID0 also contains cache control.
  206. *
  207. * HID1 has only read-only information - nothing to set.
  208. */
  209. #define CONFIG_SYS_HID0_INIT (HID0_ICE|HID0_DCE|HID0_ICFI|HID0_DCI|\
  210. HID0_IFEM|HID0_ABE)
  211. #define CONFIG_SYS_HID0_FINAL (HID0_ICE|HID0_IFEM|HID0_ABE)
  212. #define CONFIG_SYS_HID2 0
  213. /*-----------------------------------------------------------------------
  214. * RMR - Reset Mode Register 5-5
  215. *-----------------------------------------------------------------------
  216. * turn on Checkstop Reset Enable
  217. */
  218. #define CONFIG_SYS_RMR RMR_CSRE
  219. /*-----------------------------------------------------------------------
  220. * BCR - Bus Configuration 4-25
  221. *-----------------------------------------------------------------------
  222. */
  223. #define CONFIG_SYS_BCR 0xA01C0000
  224. /*-----------------------------------------------------------------------
  225. * SIUMCR - SIU Module Configuration 4-31
  226. *-----------------------------------------------------------------------
  227. */
  228. #define CONFIG_SYS_SIUMCR 0x42250000/* 0x4205C000 */
  229. /*-----------------------------------------------------------------------
  230. * SYPCR - System Protection Control 4-35
  231. * SYPCR can only be written once after reset!
  232. *-----------------------------------------------------------------------
  233. * Watchdog & Bus Monitor Timer max, 60x Bus Monitor enable
  234. */
  235. #if defined (CONFIG_WATCHDOG)
  236. #define CONFIG_SYS_SYPCR (SYPCR_SWTC|SYPCR_BMT|SYPCR_PBME|SYPCR_LBME|\
  237. SYPCR_SWRI|SYPCR_SWP|SYPCR_SWE)
  238. #else
  239. #define CONFIG_SYS_SYPCR (SYPCR_SWTC|SYPCR_BMT|SYPCR_PBME|SYPCR_LBME|\
  240. SYPCR_SWRI|SYPCR_SWP)
  241. #endif /* CONFIG_WATCHDOG */
  242. /*-----------------------------------------------------------------------
  243. * TMCNTSC - Time Counter Status and Control 4-40
  244. * Clear once per Second and Alarm Interrupt Status, Set 32KHz timersclk,
  245. * and enable Time Counter
  246. *-----------------------------------------------------------------------
  247. */
  248. #define CONFIG_SYS_TMCNTSC (TMCNTSC_SEC|TMCNTSC_ALR|TMCNTSC_TCF|TMCNTSC_TCE)
  249. /*-----------------------------------------------------------------------
  250. * PISCR - Periodic Interrupt Status and Control 4-42
  251. *-----------------------------------------------------------------------
  252. * Clear Periodic Interrupt Status, Set 32KHz timersclk, and enable
  253. * Periodic timer
  254. */
  255. #define CONFIG_SYS_PISCR (PISCR_PS|PISCR_PTF|PISCR_PTE)
  256. /*-----------------------------------------------------------------------
  257. * SCCR - System Clock Control 9-8
  258. *-----------------------------------------------------------------------
  259. * Ensure DFBRG is Divide by 16
  260. */
  261. #define CONFIG_SYS_SCCR SCCR_DFBRG01
  262. /*-----------------------------------------------------------------------
  263. * RCCR - RISC Controller Configuration 13-7
  264. *-----------------------------------------------------------------------
  265. */
  266. #define CONFIG_SYS_RCCR 0
  267. /*-----------------------------------------------------------------------
  268. * Init Memory Controller:
  269. *
  270. * Bank Bus Machine PortSize Device
  271. * ---- --- ------- ----------------------------- ------
  272. * 0 60x GPCM 8 bit (Rev.B)/16 bit (Rev.D) Flash
  273. * 1 60x SDRAM 64 bit SDRAM
  274. * 2 Local SDRAM 32 bit SDRAM
  275. */
  276. #define CONFIG_SYS_USE_FIRMWARE /* If defined - do not initialise memory
  277. controller, rely on initialisation
  278. performed by the Interphase boot firmware.
  279. */
  280. #define CONFIG_SYS_OR0_PRELIM 0xFE000882
  281. #ifdef CONFIG_SYS_REV_B
  282. #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | BRx_PS_8 | BRx_V)
  283. #else /* Rev. D */
  284. #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | BRx_PS_16 | BRx_V)
  285. #endif /* CONFIG_SYS_REV_B */
  286. #define CONFIG_SYS_MPTPR 0x7F00
  287. /* Please note that 60x SDRAM MUST start at 0 */
  288. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  289. #define CONFIG_SYS_60x_BR 0x00000041
  290. #define CONFIG_SYS_60x_OR 0xF0002CD0
  291. #define CONFIG_SYS_PSDMR 0x0049929A
  292. #define CONFIG_SYS_PSRT 0x07
  293. #define CONFIG_SYS_LSDRAM_BASE 0xF7000000
  294. #define CONFIG_SYS_LOC_BR 0x00001861
  295. #define CONFIG_SYS_LOC_OR 0xFF803280
  296. #define CONFIG_SYS_LSDMR 0x8285A552
  297. #define CONFIG_SYS_LSRT 0x07
  298. #endif /* __CONFIG_H */