mgcoge.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. #define CONFIG_MGCOGE
  31. #define CONFIG_HOSTNAME mgcoge
  32. #define CONFIG_SYS_TEXT_BASE 0xFE000000
  33. /* include common defines/options for all Keymile boards */
  34. #include "keymile-common.h"
  35. #include "km-powerpc.h"
  36. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  37. #define CONFIG_SYS_FLASH_BASE 0xFE000000
  38. #define CONFIG_SYS_FLASH_SIZE 32
  39. #define CONFIG_SYS_FLASH_CFI
  40. #define CONFIG_FLASH_CFI_DRIVER
  41. #define CONFIG_SYS_MAX_FLASH_BANKS 3
  42. /* max num of sects on one chip */
  43. #define CONFIG_SYS_MAX_FLASH_SECT 512
  44. #define CONFIG_SYS_FLASH_BASE_1 0x50000000
  45. #define CONFIG_SYS_FLASH_SIZE_1 32
  46. #define CONFIG_SYS_FLASH_BASE_2 0x52000000
  47. #define CONFIG_SYS_FLASH_SIZE_2 32
  48. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE, \
  49. CONFIG_SYS_FLASH_BASE_1, \
  50. CONFIG_SYS_FLASH_BASE_2 }
  51. #define MTDIDS_DEFAULT "nor3=app"
  52. /* include further common stuff for all keymile 82xx boards */
  53. #include "km82xx-common.h"
  54. /* bfticu address */
  55. #define CONFIG_SYS_BFTICU_BASE 0x40000000
  56. #endif /* __CONFIG_H */