km82xx.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * (C) Copyright 2007-2011
  3. * Heiko Schocher, DENX Software Engineering, hs@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #ifndef __CONFIG_H
  24. #define __CONFIG_H
  25. /*
  26. * High Level Configuration Options
  27. * (easy to change)
  28. */
  29. #define CONFIG_MPC8247
  30. /* MGCOGE */
  31. #if defined(CONFIG_MGCOGE)
  32. #define CONFIG_HOSTNAME mgcoge
  33. #define CONFIG_KM_BOARD_EXTRA_ENV ""
  34. /* MGCOGE3NE */
  35. #elif defined(CONFIG_MGCOGE3NE)
  36. #define CONFIG_HOSTNAME mgcoge3ne
  37. #define CONFIG_KM_82XX
  38. #define CONFIG_KM_BOARD_EXTRA_ENV "bobcatreset=true\0"
  39. #else
  40. #error ("Board unsupported")
  41. #endif
  42. #define CONFIG_SYS_TEXT_BASE 0xFE000000
  43. /* include common defines/options for all Keymile boards */
  44. #include "km/keymile-common.h"
  45. #include "km/km-powerpc.h"
  46. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  47. #define CONFIG_SYS_FLASH_BASE 0xFE000000
  48. #define CONFIG_SYS_FLASH_SIZE 32
  49. #define CONFIG_SYS_FLASH_CFI
  50. #define CONFIG_FLASH_CFI_DRIVER
  51. /* MGCOGE */
  52. #if defined(CONFIG_MGCOGE)
  53. #define CONFIG_SYS_MAX_FLASH_BANKS 3
  54. /* max num of sects on one chip */
  55. #define CONFIG_SYS_MAX_FLASH_SECT 512
  56. #define CONFIG_SYS_FLASH_BASE_1 0x50000000
  57. #define CONFIG_SYS_FLASH_SIZE_1 32
  58. #define CONFIG_SYS_FLASH_BASE_2 0x52000000
  59. #define CONFIG_SYS_FLASH_SIZE_2 32
  60. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE, \
  61. CONFIG_SYS_FLASH_BASE_1, \
  62. CONFIG_SYS_FLASH_BASE_2 }
  63. #define MTDIDS_DEFAULT "nor3=app"
  64. /*
  65. * Bank 1 - 60x bus SDRAM
  66. */
  67. #define SDRAM_MAX_SIZE 0x08000000 /* max. 128 MB */
  68. #define CONFIG_SYS_GLOBAL_SDRAM_LIMIT (256 << 20) /* less than 256 MB */
  69. /* SDRAM initialization values
  70. */
  71. #define CONFIG_SYS_OR1 ((~(CONFIG_SYS_GLOBAL_SDRAM_LIMIT-1) & \
  72. ORxS_SDAM_MSK) |\
  73. ORxS_BPD_8 |\
  74. ORxS_ROWST_PBI0_A7 |\
  75. ORxS_NUMR_13)
  76. #define CONFIG_SYS_PSDMR ( \
  77. PSDMR_SDAM_A14_IS_A5 |\
  78. PSDMR_BSMA_A14_A16 |\
  79. PSDMR_SDA10_PBI0_A9 |\
  80. PSDMR_RFRC_5_CLK |\
  81. PSDMR_PRETOACT_2W |\
  82. PSDMR_ACTTORW_2W |\
  83. PSDMR_LDOTOPRE_1C |\
  84. PSDMR_WRC_1C |\
  85. PSDMR_CL_2)
  86. /* MGCOGE3NE */
  87. #elif defined(CONFIG_MGCOGE3NE)
  88. #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max num of flash banks */
  89. #define CONFIG_SYS_MAX_FLASH_SECT 1024 /*
  90. * max num of sects on one
  91. * chip
  92. */
  93. #define CONFIG_SYS_FLASH_BASE_1 0x50000000
  94. #define CONFIG_SYS_FLASH_SIZE_1 128
  95. #define CONFIG_SYS_FLASH_SIZE_2 0 /* dummy value to calc SYS_OR5 */
  96. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE, \
  97. CONFIG_SYS_FLASH_BASE_1 }
  98. #define MTDIDS_DEFAULT "nor2=app"
  99. /*
  100. * Bank 1 - 60x bus SDRAM
  101. * mgcoge3ne has 256M.
  102. */
  103. #define SDRAM_MAX_SIZE 0x10000000 /* max. 256 MB */
  104. #define CONFIG_SYS_GLOBAL_SDRAM_LIMIT (512 << 20) /* less than 512 MB */
  105. #define CONFIG_SYS_OR1 ((~(CONFIG_SYS_GLOBAL_SDRAM_LIMIT-1) & \
  106. ORxS_SDAM_MSK) |\
  107. ORxS_BPD_4 |\
  108. ORxS_ROWST_PBI1_A4 |\
  109. ORxS_NUMR_13)
  110. #define CONFIG_SYS_PSDMR ( \
  111. PSDMR_PBI |\
  112. PSDMR_SDAM_A17_IS_A5 |\
  113. PSDMR_BSMA_A13_A15 |\
  114. PSDMR_SDA10_PBI1_A6 |\
  115. PSDMR_RFRC_5_CLK |\
  116. PSDMR_PRETOACT_2W |\
  117. PSDMR_ACTTORW_2W |\
  118. PSDMR_LDOTOPRE_1C |\
  119. PSDMR_WRC_2C |\
  120. PSDMR_CL_2)
  121. #endif /* defined(CONFIG_MGCOGE3NE) */
  122. /* include further common stuff for all keymile 82xx boards */
  123. #include "km/km82xx-common.h"
  124. #endif /* __CONFIG_H */