highbank.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. * Copyright 2010-2011 Calxeda, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the Free
  6. * Software Foundation; either version 2 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This program is distributed in the hope it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef __CONFIG_H
  18. #define __CONFIG_H
  19. #define CONFIG_L2_OFF
  20. #define CONFIG_SYS_NO_FLASH
  21. #define CFG_HZ 1000
  22. #define CONFIG_SYS_HZ CFG_HZ
  23. #define CONFIG_OF_LIBFDT
  24. #define CONFIG_FIT
  25. #define CONFIG_SYS_BOOTMAPSZ (16 << 20)
  26. /*
  27. * Size of malloc() pool
  28. */
  29. #define CONFIG_SYS_MALLOC_LEN (512 * 1024)
  30. #define CONFIG_PL011_SERIAL
  31. #define CONFIG_PL011_CLOCK 150000000
  32. #define CONFIG_PL01x_PORTS { (void *)(0xFFF36000) }
  33. #define CONFIG_CONS_INDEX 0
  34. #define CONFIG_BAUDRATE 38400
  35. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  36. #define CONFIG_MISC_INIT_R
  37. #define CONFIG_SCSI_AHCI
  38. #define CONFIG_SCSI_AHCI_PLAT
  39. #define CONFIG_SYS_SCSI_MAX_SCSI_ID 5
  40. #define CONFIG_SYS_SCSI_MAX_LUN 1
  41. #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
  42. CONFIG_SYS_SCSI_MAX_LUN)
  43. #define CONFIG_DOS_PARTITION
  44. #define CONFIG_CALXEDA_XGMAC
  45. /* PXE support */
  46. #define CONFIG_BOOTP_PXE
  47. #define CONFIG_BOOTP_PXE_CLIENTARCH 0x100
  48. #define CONFIG_BOOTP_VCI_STRING "U-boot.armv7.highbank"
  49. /*
  50. * Command line configuration.
  51. */
  52. #include <config_cmd_default.h>
  53. #define CONFIG_CMD_BDI
  54. #define CONFIG_CMD_DHCP
  55. #define CONFIG_CMD_ELF
  56. #define CONFIG_CMD_MEMORY
  57. #define CONFIG_CMD_LOADS
  58. #define CONFIG_CMD_SCSI
  59. #define CONFIG_CMD_EXT2
  60. #define CONFIG_CMD_PXE
  61. #define CONFIG_MENU
  62. #define CONFIG_BOOTDELAY 2
  63. /*
  64. * Miscellaneous configurable options
  65. */
  66. #define CONFIG_CMDLINE_EDITING
  67. #define CONFIG_AUTO_COMPLETE
  68. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  69. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  70. #define CONFIG_SYS_MAXARGS 16 /* max number of cmd args */
  71. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  72. #define CONFIG_SYS_PROMPT "Highbank #"
  73. /* Print Buffer Size */
  74. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  75. sizeof(CONFIG_SYS_PROMPT)+16)
  76. #define CONFIG_SYS_LOAD_ADDR 0x800000
  77. #define CONFIG_EXTRA_ENV_SETTINGS \
  78. "fdtaddr_r=0x600000\0" \
  79. "pxefile_addr_r=0x700000\0" \
  80. "kernel_addr_r=0x800000\0" \
  81. "ramdisk_addr_r=0x01000000\0" \
  82. /*-----------------------------------------------------------------------
  83. * Stack sizes
  84. *
  85. * The stack sizes are set up in start.S using the settings below
  86. */
  87. #define CONFIG_STACKSIZE (128*1024) /* regular stack */
  88. #ifdef CONFIG_USE_IRQ
  89. #define CONFIG_STACKSIZE_IRQ (4*1024) /* IRQ stack */
  90. #define CONFIG_STACKSIZE_FIQ (4*1024) /* FIQ stack */
  91. #endif
  92. /*-----------------------------------------------------------------------
  93. * Physical Memory Map
  94. */
  95. #define CONFIG_NR_DRAM_BANKS 1
  96. #define PHYS_SDRAM_1_SIZE (4089 << 20)
  97. #define CONFIG_SYS_MEMTEST_START 0x100000
  98. #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1_SIZE - 0x100000)
  99. /* Room required on the stack for the environment data */
  100. #define CONFIG_ENV_SIZE 0x2000
  101. #define CONFIG_ENV_IS_NOWHERE
  102. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  103. #define CONFIG_SYS_TEXT_BASE 0x00008000
  104. #define CONFIG_SYS_INIT_SP_ADDR 0x01000000
  105. #define CONFIG_SKIP_LOWLEVEL_INIT
  106. #endif