mgcoge3ne.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * (C) Copyright 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 __MGCOGE3NE
  24. #define __MGCOGE3NE
  25. /*
  26. * High Level Configuration Options
  27. * (easy to change)
  28. */
  29. #define CONFIG_MPC8247
  30. #define CONFIG_MGCOGE3NE
  31. #define CONFIG_HOSTNAME mgcoge3ne
  32. #define CONFIG_KM_82XX
  33. #define CONFIG_SYS_TEXT_BASE 0xFE000000
  34. /* include common defines/options for all Keymile boards */
  35. #include "km/keymile-common.h"
  36. #include "km/km-powerpc.h"
  37. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  38. #define CONFIG_SYS_FLASH_BASE 0xFE000000
  39. #define CONFIG_SYS_FLASH_SIZE 32
  40. #define CONFIG_SYS_FLASH_CFI
  41. #define CONFIG_FLASH_CFI_DRIVER
  42. #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max num of flash banks */
  43. #define CONFIG_SYS_MAX_FLASH_SECT 1024 /*
  44. * max num of sects on one
  45. * chip
  46. */
  47. #define CONFIG_SYS_FLASH_BASE_1 0x50000000
  48. #define CONFIG_SYS_FLASH_SIZE_1 128
  49. #define CONFIG_SYS_FLASH_SIZE_2 0 /* dummy value to calc SYS_OR5 */
  50. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE, \
  51. CONFIG_SYS_FLASH_BASE_1 }
  52. #define MTDIDS_DEFAULT "nor2=app"
  53. /*
  54. * Bank 1 - 60x bus SDRAM
  55. * mgcoge3ne has 256M.
  56. */
  57. #define SDRAM_MAX_SIZE 0x10000000 /* max. 256 MB */
  58. #define CONFIG_SYS_GLOBAL_SDRAM_LIMIT (512 << 20) /* less than 512 MB */
  59. #define CONFIG_SYS_OR1 ((~(CONFIG_SYS_GLOBAL_SDRAM_LIMIT-1) & \
  60. ORxS_SDAM_MSK) |\
  61. ORxS_BPD_4 |\
  62. ORxS_ROWST_PBI1_A4 |\
  63. ORxS_NUMR_13)
  64. #define CONFIG_SYS_PSDMR (PSDMR_PBI |\
  65. PSDMR_SDAM_A17_IS_A5 |\
  66. PSDMR_BSMA_A13_A15 |\
  67. PSDMR_SDA10_PBI1_A6 |\
  68. PSDMR_RFRC_5_CLK |\
  69. PSDMR_PRETOACT_2W |\
  70. PSDMR_ACTTORW_2W |\
  71. PSDMR_LDOTOPRE_1C |\
  72. PSDMR_WRC_2C |\
  73. PSDMR_CL_2)
  74. #define CONFIG_KM_BOARD_EXTRA_ENV "bobcatreset=true\0"
  75. /* include further common stuff for all keymile 82xx boards */
  76. #include "km/km82xx-common.h"
  77. /* bfticu address */
  78. #define CONFIG_SYS_BFTICU_BASE 0x40000000
  79. #endif /* __MGCOGE3NE */