luan.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /*
  2. * (C) Copyright 2005
  3. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  4. * John Otken, jotken@softadvances.com
  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. /************************************************************************
  25. * luan.h - configuration for LUAN board
  26. ***********************************************************************/
  27. #ifndef __CONFIG_H
  28. #define __CONFIG_H
  29. /*-----------------------------------------------------------------------
  30. * High Level Configuration Options
  31. *----------------------------------------------------------------------*/
  32. #define CONFIG_LUAN 1 /* Board is Luan */
  33. #define CONFIG_440SP 1 /* Specific PPC440SP support */
  34. #define CONFIG_4xx 1 /* PPC4xx family */
  35. #define CONFIG_440 1
  36. #define CONFIG_SYS_CLK_FREQ 33333333 /* external freq to pll */
  37. #define CONFIG_SYS_TEXT_BASE 0xFFFB0000
  38. /*
  39. * Include common defines/options for all AMCC eval boards
  40. */
  41. #define CONFIG_HOSTNAME luan
  42. #include "amcc-common.h"
  43. #define CONFIG_BOARD_EARLY_INIT_F 1 /* call board_early_init_f() */
  44. #define CONFIG_MISC_INIT_R 1 /* call misc_init_r() */
  45. /*-----------------------------------------------------------------------
  46. * Base addresses -- Note these are effective addresses where the
  47. * actual resources get mapped (not physical addresses)
  48. *----------------------------------------------------------------------*/
  49. #define CONFIG_SYS_LARGE_FLASH 0xffc00000 /* 4MB flash address CS0 */
  50. #define CONFIG_SYS_SMALL_FLASH 0xff900000 /* 1MB flash address CS2 */
  51. #define CONFIG_SYS_SRAM_BASE 0xff800000 /* 1MB SRAM address CS2 */
  52. #define CONFIG_SYS_SRAM_SIZE (1 << 20)
  53. #define CONFIG_SYS_EPLD_BASE 0xff000000 /* EPLD and FRAM CS1 */
  54. #define CONFIG_SYS_ISRAM_BASE 0xf8000000 /* internal 8k SRAM (L2 cache) */
  55. #define CONFIG_SYS_PCI_MEMBASE 0x80000000 /* mapped pci memory */
  56. #define CONFIG_SYS_PCI_BASE 0xd0000000 /* internal PCI regs */
  57. #define CONFIG_SYS_PCI_TARGBASE 0x80000000 /* PCIaddr mapped to CONFIG_SYS_PCI_MEMBASE */
  58. #if CONFIG_SYS_LARGE_FLASH == 0xffc00000
  59. #define CONFIG_SYS_FLASH_BASE CONFIG_SYS_LARGE_FLASH
  60. #else
  61. #define CONFIG_SYS_FLASH_BASE CONFIG_SYS_SMALL_FLASH
  62. #endif
  63. #if CONFIG_SYS_SRAM_BASE
  64. #define CONFIG_SYS_KBYTES_SDRAM 1024*2
  65. #else
  66. #define CONFIG_SYS_KBYTES_SDRAM 1024
  67. #endif
  68. /*-----------------------------------------------------------------------
  69. * Initial RAM & stack pointer (placed in SDRAM)
  70. *----------------------------------------------------------------------*/
  71. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_ISRAM_BASE
  72. #define CONFIG_SYS_INIT_RAM_END (8 << 10)
  73. #define CONFIG_SYS_GBL_DATA_SIZE 256 /* num bytes initial data */
  74. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  75. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  76. /*-----------------------------------------------------------------------
  77. * Serial Port
  78. *----------------------------------------------------------------------*/
  79. #define CONFIG_CONS_INDEX 1 /* Use UART0 */
  80. #define CONFIG_SYS_EXT_SERIAL_CLOCK 11059200 /* external 11.059MHz clk */
  81. /*-----------------------------------------------------------------------
  82. * Environment
  83. *----------------------------------------------------------------------*/
  84. /*
  85. * Define here the location of the environment variables (FLASH or EEPROM).
  86. * Note: DENX encourages to use redundant environment in FLASH.
  87. */
  88. #define CONFIG_ENV_IS_IN_FLASH 1 /* use FLASH for environment vars */
  89. /*-----------------------------------------------------------------------
  90. * FLASH related
  91. *----------------------------------------------------------------------*/
  92. #define CONFIG_SYS_MAX_FLASH_BANKS 3 /* max number of memory banks */
  93. #define CONFIG_SYS_MAX_FLASH_SECT 64 /* max number of sectors on one chip */
  94. #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
  95. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
  96. #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */
  97. #define CONFIG_SYS_FLASH_ADDR0 0x555
  98. #define CONFIG_SYS_FLASH_ADDR1 0x2aa
  99. #define CONFIG_SYS_FLASH_WORD_SIZE unsigned char
  100. #ifdef CONFIG_ENV_IS_IN_FLASH
  101. #define CONFIG_ENV_SECT_SIZE 0x10000 /* size of one complete sector */
  102. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE-CONFIG_ENV_SECT_SIZE)
  103. #define CONFIG_ENV_SIZE 0x2000 /* Total Size of Environment Sector */
  104. /* Address and size of Redundant Environment Sector */
  105. #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR-CONFIG_ENV_SECT_SIZE)
  106. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  107. #endif /* CONFIG_ENV_IS_IN_FLASH */
  108. /*-----------------------------------------------------------------------
  109. * DDR SDRAM
  110. *----------------------------------------------------------------------*/
  111. #define CONFIG_SPD_EEPROM 1 /* Use SPD EEPROM for setup */
  112. #define SPD_EEPROM_ADDRESS {0x53, 0x52} /* SPD i2c spd addresses*/
  113. #define CONFIG_DDR_ECC 1 /* with ECC support */
  114. /*-----------------------------------------------------------------------
  115. * I2C
  116. *----------------------------------------------------------------------*/
  117. #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */
  118. #define CONFIG_SYS_I2C_MULTI_EEPROMS
  119. #define CONFIG_SYS_I2C_EEPROM_ADDR (0xa8>>1)
  120. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
  121. #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3
  122. #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10
  123. /*
  124. * Default environment variables
  125. */
  126. #define CONFIG_EXTRA_ENV_SETTINGS \
  127. CONFIG_AMCC_DEF_ENV \
  128. CONFIG_AMCC_DEF_ENV_PPC \
  129. CONFIG_AMCC_DEF_ENV_NOR_UPD \
  130. "kernel_addr=fc000000\0" \
  131. "ramdisk_addr=fc100000\0" \
  132. ""
  133. #define CONFIG_HAS_ETH0
  134. #define CONFIG_PHY_ADDR 1
  135. #define CONFIG_CIS8201_PHY 1 /* Enable 'special' RGMII mode for Cicada phy */
  136. #define CONFIG_PHY_GIGE 1 /* Include GbE speed/duplex detection */
  137. #ifdef DEBUG
  138. #define CONFIG_PANIC_HANG
  139. #else
  140. #define CONFIG_HW_WATCHDOG /* watchdog */
  141. #endif
  142. /*
  143. * Commands additional to the ones defined in amcc-common.h
  144. */
  145. #define CONFIG_CMD_PCI
  146. #define CONFIG_CMD_SDRAM
  147. /*-----------------------------------------------------------------------
  148. * PCI stuff
  149. *-----------------------------------------------------------------------
  150. */
  151. #if defined(CONFIG_CMD_PCI)
  152. /* General PCI */
  153. #define CONFIG_PCI /* include pci support */
  154. #define CONFIG_PCI_PNP /* do (not) pci plug-and-play */
  155. #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
  156. /* Board-specific PCI */
  157. #define CONFIG_SYS_PCI_TARGET_INIT
  158. #undef CONFIG_SYS_PCI_MASTER_INIT
  159. #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x10e8 /* AMCC */
  160. #define CONFIG_SYS_PCI_SUBSYS_DEVICEID 0x4403 /* whatever */
  161. #endif
  162. #endif /* __CONFIG_H */