espt.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * Configuation settings for the ESPT-GIGA board
  3. *
  4. * Copyright (C) 2008 Renesas Solutions Corp.
  5. * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@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 __ESPT_H
  26. #define __ESPT_H
  27. #define CONFIG_SH 1
  28. #define CONFIG_SH4 1
  29. #define CONFIG_CPU_SH7763 1
  30. #define CONFIG_ESPT 1
  31. #define __LITTLE_ENDIAN 1
  32. /*
  33. * Command line configuration.
  34. */
  35. #define CONFIG_CMD_SDRAM
  36. #define CONFIG_CMD_FLASH
  37. #define CONFIG_CMD_MEMORY
  38. #define CONFIG_CMD_NET
  39. #define CONFIG_CMD_PING
  40. #define CONFIG_CMD_ENV
  41. #define CONFIG_CMD_NFS
  42. #define CONFIG_CMD_SAVEENV
  43. #define CONFIG_BOOTDELAY -1
  44. #define CONFIG_BOOTARGS "console=ttySC0,115200 root=1f01"
  45. #define CONFIG_ENV_OVERWRITE 1
  46. #define CONFIG_VERSION_VARIABLE
  47. #undef CONFIG_SHOW_BOOT_PROGRESS
  48. /* SCIF */
  49. #define CONFIG_SCIF_CONSOLE 1
  50. #define CONFIG_BAUDRATE 115200
  51. #define CONFIG_CONS_SCIF0 1
  52. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  53. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  54. #define CONFIG_SYS_CBSIZE 256 /* Buffer size for input from the Console */
  55. #define CONFIG_SYS_PBSIZE 256 /* Buffer size for Console output */
  56. #define CONFIG_SYS_MAXARGS 16 /* max args accepted for monitor commands */
  57. #define CONFIG_SYS_BARGSIZE 512 /* Buffer size for Boot Arguments
  58. passed to kernel */
  59. #define CONFIG_SYS_BAUDRATE_TABLE { 115200 } /* List of legal baudrate
  60. settings for this board */
  61. /* SDRAM */
  62. #define CONFIG_SYS_SDRAM_BASE (0x8C000000)
  63. #define CONFIG_SYS_SDRAM_SIZE (64 * 1024 * 1024)
  64. #define CONFIG_SYS_MEMTEST_START (CONFIG_SYS_SDRAM_BASE)
  65. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + (60 * 1024 * 1024))
  66. /* Flash(NOR) S29JL064H */
  67. #define CONFIG_SYS_FLASH_BASE (0xA0000000)
  68. #define CONFIG_SYS_FLASH_CFI_WIDTH (FLASH_CFI_16BIT)
  69. #define CONFIG_SYS_MAX_FLASH_BANKS (1)
  70. #define CONFIG_SYS_MAX_FLASH_SECT (150)
  71. /* U-boot setting */
  72. #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 4 * 1024 * 1024)
  73. #define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_FLASH_BASE)
  74. #define CONFIG_SYS_MONITOR_LEN (128 * 1024)
  75. /* Size of DRAM reserved for malloc() use */
  76. #define CONFIG_SYS_MALLOC_LEN (1024 * 1024)
  77. /* size in bytes reserved for initial data */
  78. #define CONFIG_SYS_GBL_DATA_SIZE (256)
  79. #define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024)
  80. #define CONFIG_SYS_FLASH_CFI
  81. #define CONFIG_FLASH_CFI_DRIVER
  82. #undef CONFIG_SYS_FLASH_QUIET_TEST
  83. #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */
  84. /* Timeout for Flash erase operations (in ms) */
  85. #define CONFIG_SYS_FLASH_ERASE_TOUT (3 * 1000)
  86. /* Timeout for Flash write operations (in ms) */
  87. #define CONFIG_SYS_FLASH_WRITE_TOUT (3 * 1000)
  88. /* Timeout for Flash set sector lock bit operations (in ms) */
  89. #define CONFIG_SYS_FLASH_LOCK_TOUT (3 * 1000)
  90. /* Timeout for Flash clear lock bit operations (in ms) */
  91. #define CONFIG_SYS_FLASH_UNLOCK_TOUT (3 * 1000)
  92. /* Use hardware flash sectors protection instead of U-Boot software protection */
  93. #undef CONFIG_SYS_FLASH_PROTECTION
  94. #undef CONFIG_SYS_DIRECT_FLASH_TFTP
  95. #define CONFIG_ENV_IS_IN_FLASH
  96. #define CONFIG_ENV_SECT_SIZE (128 * 1024)
  97. #define CONFIG_ENV_SIZE (CONFIG_ENV_SECT_SIZE)
  98. #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + (1 * CONFIG_ENV_SECT_SIZE))
  99. /* Offset of env Flash sector relative to CONFIG_SYS_FLASH_BASE */
  100. #define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE)
  101. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SECT_SIZE)
  102. #define CONFIG_ENV_ADDR_REDUND (CONFIG_SYS_FLASH_BASE + (2 * CONFIG_ENV_SECT_SIZE))
  103. /* Clock */
  104. #define CONFIG_SYS_CLK_FREQ 66666666
  105. #define CONFIG_SYS_TMU_CLK_DIV 4
  106. #define CONFIG_SYS_HZ 1000
  107. /* Ether */
  108. #define CONFIG_NET_MULTI 1
  109. #define CONFIG_SH_ETHER 1
  110. #define CONFIG_SH_ETHER_USE_PORT (1)
  111. #define CONFIG_SH_ETHER_PHY_ADDR (0x00)
  112. #endif /* __SH7763RDP_H */