edb93xx.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /*
  2. * U-Boot - Configuration file for Cirrus Logic EDB93xx boards
  3. */
  4. #ifndef __CONFIG_H
  5. #define __CONFIG_H
  6. #ifdef CONFIG_MK_edb9301
  7. #define CONFIG_EDB9301
  8. #elif defined(CONFIG_MK_edb9302)
  9. #define CONFIG_EDB9302
  10. #elif defined(CONFIG_MK_edb9302a)
  11. #define CONFIG_EDB9302A
  12. #elif defined(CONFIG_MK_edb9307)
  13. #define CONFIG_EDB9307
  14. #elif defined(CONFIG_MK_edb9307a)
  15. #define CONFIG_EDB9307A
  16. #elif defined(CONFIG_MK_edb9312)
  17. #define CONFIG_EDB9312
  18. #elif defined(CONFIG_MK_edb9315)
  19. #define CONFIG_EDB9315
  20. #elif defined(CONFIG_MK_edb9315a)
  21. #define CONFIG_EDB9315A
  22. #else
  23. #error "no board defined"
  24. #endif
  25. /* Initial environment and monitor configuration options. */
  26. #define CONFIG_CMDLINE_TAG 1
  27. #define CONFIG_INITRD_TAG 1
  28. #define CONFIG_SETUP_MEMORY_TAGS 1
  29. #define CONFIG_BOOTFILE "edb93xx.img"
  30. #ifdef CONFIG_EDB9301
  31. #define CONFIG_MACH_TYPE MACH_TYPE_EDB9301
  32. #elif defined(CONFIG_EDB9302)
  33. #define CONFIG_EP9302
  34. #define CONFIG_MACH_TYPE MACH_TYPE_EDB9302
  35. #elif defined(CONFIG_EDB9302A)
  36. #define CONFIG_EP9302
  37. #define CONFIG_MACH_TYPE MACH_TYPE_EDB9302A
  38. #elif defined(CONFIG_EDB9307)
  39. #define CONFIG_EP9307
  40. #define CONFIG_MACH_TYPE MACH_TYPE_EDB9307
  41. #elif defined(CONFIG_EDB9307A)
  42. #define CONFIG_EP9307
  43. #define CONFIG_MACH_TYPE MACH_TYPE_EDB9307A
  44. #elif defined(CONFIG_EDB9312)
  45. #define CONFIG_EP9312
  46. #define CONFIG_MACH_TYPE MACH_TYPE_EDB9312
  47. #elif defined(CONFIG_EDB9315)
  48. #define CONFIG_EP9315
  49. #define CONFIG_MACH_TYPE MACH_TYPE_EDB9315
  50. #elif defined(CONFIG_EDB9315A)
  51. #define CONFIG_EP9315
  52. #define CONFIG_MACH_TYPE MACH_TYPE_EDB9315A
  53. #else
  54. #error "no board defined"
  55. #endif
  56. /* High-level configuration options */
  57. #define CONFIG_EP93XX 1 /* This is a Cirrus Logic 93xx SoC */
  58. #define CONFIG_SYS_CLK_FREQ 14745600 /* EP93xx has a 14.7456 clock */
  59. /* Monitor configuration */
  60. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O buffer size */
  61. /* Serial port hardware configuration */
  62. #define CONFIG_SYS_BAUDRATE_TABLE {9600, 19200, 38400, 57600, \
  63. 115200, 230400}
  64. #define CONFIG_SYS_SERIAL0 0x808C0000
  65. #define CONFIG_SYS_SERIAL1 0x808D0000
  66. /*#define CONFIG_PL01x_PORTS {(void *)CONFIG_SYS_SERIAL0, \
  67. (void *)CONFIG_SYS_SERIAL1} */
  68. #define CONFIG_PL01x_PORTS {(void *)CONFIG_SYS_SERIAL0}
  69. /* Status LED */
  70. /* Optional value */
  71. /* Network hardware configuration */
  72. #define CONFIG_DRIVER_EP93XX_MAC
  73. #define CONFIG_MII_SUPPRESS_PREAMBLE
  74. /* SDRAM configuration */
  75. #if defined(CONFIG_EDB9301) || defined(CONFIG_EDB9302) || \
  76. defined(CONFIG_EDB9307) || defined CONFIG_EDB9312 || \
  77. defined(CONFIG_EDB9315)
  78. /*
  79. * EDB9301/2 has 4 banks of SDRAM consisting of 1x Samsung K4S561632E-TC75
  80. * 256 Mbit SDRAM on a 16-bit data bus, for a total of 32MB of SDRAM. We set
  81. * the SROMLL bit on the processor, resulting in this non-contiguous memory map.
  82. *
  83. * The EDB9307, EDB9312, and EDB9315 have 2 banks of SDRAM consisting of
  84. * 2x Samsung K4S561632E-TC75 256 Mbit on a 32-bit data bus, for a total of
  85. * 64 MB of SDRAM.
  86. */
  87. #define CONFIG_EDB93XX_SDCS3
  88. #elif defined(CONFIG_EDB9302A) || \
  89. defined(CONFIG_EDB9307A) || defined(CONFIG_EDB9315A)
  90. /*
  91. * EDB9302a has 4 banks of SDRAM consisting of 1x Samsung K4S561632E-TC75
  92. * 256 Mbit SDRAM on a 16-bit data bus, for a total of 32MB of SDRAM. We set
  93. * the SROMLL bit on the processor, resulting in this non-contiguous memory map.
  94. *
  95. * The EDB9307A and EDB9315A have 2 banks of SDRAM consisting of 2x Samsung
  96. * K4S561632E-TC75 256 Mbit on a 32-bit data bus, for a total of 64 MB of SDRAM.
  97. */
  98. #define CONFIG_EDB93XX_SDCS0
  99. #else
  100. #error "no SDCS configuration for this board"
  101. #endif
  102. #if defined(CONFIG_EDB93XX_SDCS3)
  103. #define CONFIG_SYS_LOAD_ADDR 0x01000000 /* Default load address */
  104. #define PHYS_SDRAM_1 0x00000000
  105. #elif defined(CONFIG_EDB93XX_SDCS0)
  106. #define CONFIG_SYS_LOAD_ADDR 0xc1000000 /* Default load address */
  107. #define PHYS_SDRAM_1 0xc0000000
  108. #endif
  109. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  110. #define CONFIG_SYS_INIT_SP_ADDR \
  111. (CONFIG_SYS_SDRAM_BASE + 32*1024 - GENERATED_GBL_DATA_SIZE)
  112. /* Must match kernel config */
  113. #define LINUX_BOOT_PARAM_ADDR (PHYS_SDRAM_1 + 0x100)
  114. /* Run-time memory allocatons */
  115. #define CONFIG_SYS_GBL_DATA_SIZE 128
  116. #define CONFIG_SYS_MALLOC_LEN (512 * 1024)
  117. /* -----------------------------------------------------------------------------
  118. * FLASH and environment organization
  119. *
  120. * The EDB9301, EDB9302(a), EDB9307a, EDB9315a have 1 bank of flash memory at
  121. * 0x60000000 consisting of 1x Intel TE28F128J3C-150 128 Mbit flash on a 16-bit
  122. * data bus, for a total of 16 MB of CFI-compatible flash.
  123. *
  124. * The EDB9307, EDB9312, and EDB9315 have 1 bank of flash memory at
  125. * 0x60000000 consisting of 2x Micron MT28F128J3-12 128 Mbit flash on a 32-bit
  126. * data bus, for a total of 32 MB of CFI-compatible flash.
  127. *
  128. *
  129. * EDB9301/02(a)7a/15a EDB9307/12/15
  130. * 0x60000000 - 0x0003FFFF u-boot u-boot
  131. * 0x60040000 - 0x0005FFFF environment #1 environment #1
  132. * 0x60060000 - 0x0007FFFF environment #2 environment #1 (continued)
  133. * 0x60080000 - 0x0009FFFF unused environment #2
  134. * 0x600A0000 - 0x000BFFFF unused environment #2 (continued)
  135. * 0x600C0000 - 0x00FFFFFF unused unused
  136. * 0x61000000 - 0x01FFFFFF not present unused
  137. */
  138. #define CONFIG_SYS_MAX_FLASH_BANKS 1
  139. #define CONFIG_SYS_MAX_FLASH_SECT (256+8)
  140. #define PHYS_FLASH_1 CONFIG_SYS_TEXT_BASE
  141. #define CONFIG_SYS_FLASH_BASE CONFIG_SYS_TEXT_BASE
  142. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  143. #define CONFIG_SYS_MONITOR_LEN (256 * 1024)
  144. #define CONFIG_USB_OHCI_NEW
  145. #define CONFIG_USB_OHCI_EP93XX
  146. #define CONFIG_SYS_USB_OHCI_CPU_INIT
  147. #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 3
  148. #define CONFIG_SYS_USB_OHCI_SLOT_NAME "ep93xx-ohci"
  149. #define CONFIG_SYS_USB_OHCI_REGS_BASE 0x80020000
  150. /* Define to disable flash configuration*/
  151. /* #define CONFIG_EP93XX_NO_FLASH_CFG */
  152. /* Define this for indusrial rated chips */
  153. /* #define CONFIG_EDB93XX_INDUSTRIAL */
  154. #endif /* !defined (__CONFIG_H) */