blanche.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * include/configs/blanche.h
  3. * This file is blanche board configuration.
  4. *
  5. * Copyright (C) 2016 Renesas Electronics Corporation
  6. *
  7. * SPDX-License-Identifier: GPL-2.0
  8. */
  9. #ifndef __BLANCHE_H
  10. #define __BLANCHE_H
  11. #undef DEBUG
  12. #define CONFIG_R8A7792
  13. #define CONFIG_RMOBILE_BOARD_STRING "Blanche"
  14. #include "rcar-gen2-common.h"
  15. /* STACK */
  16. #define CONFIG_SYS_INIT_SP_ADDR 0xE817FFFC
  17. #define STACK_AREA_SIZE 0xC000
  18. #define LOW_LEVEL_MERAM_STACK \
  19. (CONFIG_SYS_INIT_SP_ADDR + STACK_AREA_SIZE - 4)
  20. /* MEMORY */
  21. #define RCAR_GEN2_SDRAM_BASE 0x40000000
  22. #define RCAR_GEN2_SDRAM_SIZE (1024u * 1024 * 1024)
  23. #define RCAR_GEN2_UBOOT_SDRAM_SIZE (512 * 1024 * 1024)
  24. /* SCIF */
  25. #define CONFIG_SCIF_CONSOLE
  26. #define CONFIG_CONS_SCIF0
  27. #define CONFIG_SYS_MEMTEST_START (RCAR_GEN2_SDRAM_BASE)
  28. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 504 * 1024 * 1024)
  29. #undef CONFIG_SYS_ALT_MEMTEST
  30. #undef CONFIG_SYS_MEMTEST_SCRATCH
  31. #undef CONFIG_SYS_LOADS_BAUD_CHANGE
  32. /* FLASH */
  33. /* #define CONFIG_SYS_NO_FLASH */ /* uncomment if use QSPI-FLASH */
  34. #if defined(CONFIG_SYS_NO_FLASH)
  35. #define CONFIG_SYS_TEXT_BASE 0x40000000
  36. #define CONFIG_SPI
  37. #define CONFIG_SH_QSPI
  38. #define CONFIG_SH_QSPI_BASE 0xE6B10000
  39. #else
  40. #define CONFIG_SYS_TEXT_BASE 0x00000000
  41. #define CONFIG_SYS_FLASH_CFI
  42. #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
  43. #define CONFIG_FLASH_CFI_DRIVER
  44. #define CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS
  45. #define CONFIG_FLASH_SHOW_PROGRESS 45
  46. #define CONFIG_SYS_FLASH_BASE 0x00000000
  47. #define CONFIG_SYS_FLASH_SIZE 0x04000000 /* 64 MB */
  48. #define CONFIG_SYS_MAX_FLASH_SECT 1024
  49. #define CONFIG_SYS_MAX_FLASH_BANKS 1
  50. #define CONFIG_SYS_FLASH_BANKS_LIST { (CONFIG_SYS_FLASH_BASE) }
  51. #define CONFIG_SYS_FLASH_BANKS_SIZES { (CONFIG_SYS_FLASH_SIZE) }
  52. #define CONFIG_SYS_FLASH_ERASE_TOUT 3000
  53. #define CONFIG_SYS_FLASH_WRITE_TOUT 3000
  54. #define CONFIG_SYS_FLASH_LOCK_TOUT 3000
  55. #define CONFIG_SYS_FLASH_UNLOCK_TOUT 3000
  56. #undef CONFIG_CMD_SF
  57. #undef CONFIG_CMD_SPI
  58. #endif
  59. /* BLANCHE on board LANC: SMC89218 (ExCS0) */
  60. #define CONFIG_NET_MULTI
  61. #define CONFIG_SMC911X 1
  62. #define CONFIG_SMC911X_16_BIT 1
  63. #define CONFIG_SMC911X_BASE 0x18000000
  64. /* Board Clock */
  65. #define RMOBILE_XTAL_CLK 20000000u
  66. #define CONFIG_SYS_CLK_FREQ RMOBILE_XTAL_CLK
  67. #define CONFIG_SH_TMU_CLK_FREQ (CONFIG_SYS_CLK_FREQ / 2) /* EXT / 2 */
  68. #define CONFIG_SYS_TMU_CLK_DIV 4
  69. /* ENV setting */
  70. #if defined(CONFIG_SYS_NO_FLASH)
  71. #else
  72. #undef CONFIG_ENV_IS_IN_SPI_FLASH
  73. #undef CONFIG_ENV_ADDR
  74. #define CONFIG_ENV_IS_IN_FLASH
  75. #define CONFIG_ENV_SECT_SIZE (256 * 1024)
  76. #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN)
  77. #define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR)
  78. #define CONFIG_ENV_SIZE (CONFIG_ENV_SECT_SIZE)
  79. #define CONFIG_ENV_SIZE_REDUND (CONFIG_SYS_MONITOR_LEN)
  80. #endif
  81. /* USB */
  82. #undef CONFIG_CMD_USB
  83. #define CONFIG_GENERIC_MMC
  84. /* Module stop status bits */
  85. /* INTC-RT */
  86. #define CONFIG_SMSTP0_ENA 0x00400000
  87. /* SDHI0 */
  88. #define CONFIG_SMSTP3_ENA 0x00004000
  89. /* INTC-SYS, IRQC */
  90. #define CONFIG_SMSTP4_ENA 0x00000180
  91. /* SCIF0 */
  92. #define CONFIG_SMSTP7_ENA 0x00200000
  93. /* QSPI */
  94. #define CONFIG_SMSTP9_ENA 0x00020000
  95. /* SYS-DMAC0 */
  96. #define CONFIG_RMSTP2_ENA 0x00080000
  97. /* SDHI */
  98. #define CONFIG_SH_SDHI_FREQ 97500000
  99. #define HAVE_BLOCK_DEVICE
  100. #endif /* __BLANCHE_H */