r7780mp.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. * Configuation settings for the Renesas R7780MP board
  3. *
  4. * Copyright (C) 2007 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  5. * Copyright (C) 2008 Yusuke Goda <goda.yusuke@renesas.com>
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #ifndef __R7780RP_H
  26. #define __R7780RP_H
  27. #undef DEBUG
  28. #define CONFIG_SH 1
  29. #define CONFIG_SH4A 1
  30. #define CONFIG_CPU_SH7780 1
  31. #define CONFIG_R7780MP 1
  32. #define __LITTLE_ENDIAN 1
  33. /*
  34. * Command line configuration.
  35. */
  36. #define CONFIG_CMD_SDRAM
  37. #define CONFIG_CMD_FLASH
  38. #define CONFIG_CMD_MEMORY
  39. #define CONFIG_CMD_PCI
  40. #define CONFIG_CMD_NET
  41. #define CONFIG_CMD_PING
  42. #define CONFIG_CMD_ENV
  43. #define CONFIG_CMD_NFS
  44. #define CONFIG_CMD_IDE
  45. #define CONFIG_CMD_EXT2
  46. #define CONFIG_DOS_PARTITION
  47. #define CFG_SCIF_CONSOLE 1
  48. #define CONFIG_BAUDRATE 115200
  49. #define CONFIG_CONS_SCIF0 1
  50. #define CONFIG_BOOTDELAY 3
  51. #define CONFIG_BOOTARGS "console=ttySC0,115200"
  52. #define CONFIG_ENV_OVERWRITE 1
  53. /* check for keypress on bootdelay==0 */
  54. /*#define CONFIG_ZERO_BOOTDELAY_CHECK*/
  55. /* Network setting */
  56. #define CONFIG_NETMASK 255.0.0.0
  57. #define CONFIG_IPADDR 10.0.192.82
  58. #define CONFIG_SERVERIP 10.0.0.1
  59. #define CONFIG_GATEWAYIP 10.0.0.1
  60. #define CFG_SDRAM_BASE (0x08000000)
  61. #define CFG_SDRAM_SIZE (128 * 1024 * 1024)
  62. #define CFG_LONGHELP
  63. #define CFG_PROMPT "=> "
  64. #define CFG_CBSIZE 256
  65. #define CFG_PBSIZE 256
  66. #define CFG_MAXARGS 16
  67. #define CFG_BARGSIZE 512
  68. /* List of legal baudrate settings for this board */
  69. #define CFG_BAUDRATE_TABLE { 115200, 57600, 38400, 19200, 9600 }
  70. #define CFG_MEMTEST_START (CFG_SDRAM_BASE)
  71. #define CFG_MEMTEST_END (TEXT_BASE - 0x100000)
  72. /* NOR Flash (S29PL127J60TFI130) */
  73. #define CFG_FLASH_BASE (0xA0000000)
  74. #define CFG_FLASH_CFI_WIDTH FLASH_CFI_32BIT
  75. #define CFG_MAX_FLASH_BANKS (2)
  76. #define CFG_MAX_FLASH_SECT 270
  77. #define CFG_FLASH_BANKS_LIST { CFG_FLASH_BASE,\
  78. CFG_FLASH_BASE + 0x100000,\
  79. CFG_FLASH_BASE + 0x400000,\
  80. CFG_FLASH_BASE + 0x700000, }
  81. #define CFG_LOAD_ADDR (CFG_SDRAM_BASE + 4 * 1024 * 1024)
  82. /* Address of u-boot image in Flash */
  83. #define CFG_MONITOR_BASE (CFG_FLASH_BASE)
  84. #define CFG_MONITOR_LEN (112 * 1024)
  85. /* Size of DRAM reserved for malloc() use */
  86. #define CFG_MALLOC_LEN (256 * 1024)
  87. /* size in bytes reserved for initial data */
  88. #define CFG_GBL_DATA_SIZE (256)
  89. #define CFG_BOOTMAPSZ (8 * 1024 * 1024)
  90. #define CFG_RX_ETH_BUFFER (8)
  91. #define CFG_FLASH_CFI
  92. #define CFG_FLASH_CFI_DRIVER
  93. #undef CFG_FLASH_CFI_BROKEN_TABLE
  94. #undef CFG_FLASH_QUIET_TEST
  95. /* print 'E' for empty sector on flinfo */
  96. #define CFG_FLASH_EMPTY_INFO
  97. #define CFG_ENV_IS_IN_FLASH
  98. #define CFG_ENV_SECT_SIZE (16 * 1024)
  99. #define CFG_ENV_SIZE (CFG_ENV_SECT_SIZE)
  100. #define CFG_ENV_ADDR (CFG_MONITOR_BASE + CFG_MONITOR_LEN)
  101. #define CFG_FLASH_ERASE_TOUT 120000
  102. #define CFG_FLASH_WRITE_TOUT 500
  103. /* Board Clock */
  104. #define CONFIG_SYS_CLK_FREQ 33333333
  105. #define TMU_CLK_DIVIDER 4
  106. #define CFG_HZ (CONFIG_SYS_CLK_FREQ / TMU_CLK_DIVIDER)
  107. /* PCI Controller */
  108. #if defined(CONFIG_CMD_PCI)
  109. #define CONFIG_PCI
  110. #define CONFIG_SH4_PCI
  111. #define CONFIG_SH7780_PCI
  112. #define CONFIG_PCI_PNP
  113. #define CONFIG_PCI_SCAN_SHOW 1
  114. #define __io
  115. #define __mem_pci
  116. #define CONFIG_PCI_MEM_BUS 0xFD000000 /* Memory space base addr */
  117. #define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS
  118. #define CONFIG_PCI_MEM_SIZE 0x01000000 /* Size of Memory window */
  119. #define CONFIG_PCI_IO_BUS 0xFE200000 /* IO space base address */
  120. #define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS
  121. #define CONFIG_PCI_IO_SIZE 0x00200000 /* Size of IO window */
  122. #endif /* CONFIG_CMD_PCI */
  123. #if defined(CONFIG_CMD_NET)
  124. /* #define CONFIG_NET_MULTI
  125. #define CONFIG_RTL8169 */
  126. /* AX88696L Support(NE2000 base chip) */
  127. #define CONFIG_DRIVER_NE2000
  128. #define CONFIG_DRIVER_AX88796L
  129. #define CONFIG_DRIVER_NE2000_BASE 0xA4100000
  130. #endif
  131. /* Compact flash Support */
  132. #if defined(CONFIG_CMD_IDE)
  133. #define CONFIG_IDE_RESET 1
  134. #define CFG_PIO_MODE 1
  135. #define CFG_IDE_MAXBUS 1 /* IDE bus */
  136. #define CFG_IDE_MAXDEVICE 1
  137. #define CFG_ATA_BASE_ADDR 0xb4000000
  138. #define CFG_ATA_STRIDE 2 /* 1bit shift */
  139. #define CFG_ATA_DATA_OFFSET 0x1000 /* data reg offset */
  140. #define CFG_ATA_REG_OFFSET 0x1000 /* reg offset */
  141. #define CFG_ATA_ALT_OFFSET 0x800 /* alternate register offset */
  142. #endif /* CONFIG_CMD_IDE */
  143. #endif /* __R7780RP_H */