nios2-generic.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * (C) Copyright 2005, Psyent Corporation <www.psyent.com>
  3. * Scott McNutt <smcnutt@psyent.com>
  4. * (C) Copyright 2010, Thomas Chou <thomas@wytron.com.tw>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __CONFIG_H
  9. #define __CONFIG_H
  10. /*
  11. * BOARD/CPU
  12. */
  13. #define CONFIG_DISPLAY_CPUINFO
  14. #define CONFIG_DISPLAY_BOARDINFO_LATE
  15. /*
  16. * SERIAL
  17. */
  18. #define CONFIG_BAUDRATE 115200
  19. #define CONFIG_SYS_CONSOLE_INFO_QUIET /* Suppress console info */
  20. /*
  21. * CFI Flash
  22. */
  23. #define CONFIG_SYS_FLASH_BASE 0xe0000000
  24. #define CONFIG_FLASH_CFI_DRIVER
  25. #define CONFIG_SYS_CFI_FLASH_STATUS_POLL /* fix amd flash issue */
  26. #define CONFIG_SYS_FLASH_CFI
  27. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
  28. #define CONFIG_SYS_FLASH_PROTECTION
  29. #define CONFIG_SYS_MAX_FLASH_BANKS 1
  30. #define CONFIG_SYS_MAX_FLASH_SECT 512
  31. /*
  32. * MII/PHY
  33. */
  34. #define CONFIG_CMD_MII 1
  35. #define CONFIG_PHY_GIGE 1
  36. #define CONFIG_SYS_FAULT_ECHO_LINK_DOWN 1
  37. #define CONFIG_PHY_MARVELL 1
  38. /*
  39. * BOOTP options
  40. */
  41. #define CONFIG_BOOTP_BOOTFILESIZE
  42. #define CONFIG_BOOTP_BOOTPATH
  43. #define CONFIG_BOOTP_GATEWAY
  44. #define CONFIG_BOOTP_HOSTNAME
  45. /*
  46. * FDT options
  47. */
  48. #define CONFIG_OF_LIBFDT
  49. #define CONFIG_OF_BOARD_SETUP
  50. #define CONFIG_LMB
  51. /*
  52. * ENVIRONMENT -- Put environment in sector CONFIG_SYS_MONITOR_LEN above
  53. * CONFIG_SYS_RESET_ADDR, since we assume the monitor is stored at the
  54. * reset address, no? This will keep the environment in user region
  55. * of flash. NOTE: the monitor length must be multiple of sector size
  56. * (which is common practice).
  57. */
  58. #define CONFIG_ENV_IS_IN_FLASH
  59. #define CONFIG_ENV_SIZE 0x20000 /* 128k, 1 sector */
  60. #define CONFIG_ENV_OVERWRITE /* Serial change Ok */
  61. #define CONFIG_ENV_ADDR 0xe2840000
  62. /*
  63. * MEMORY ORGANIZATION
  64. * -Monitor at top of sdram.
  65. * -The heap is placed below the monitor
  66. * -The stack is placed below the heap (&grows down).
  67. */
  68. #define CONFIG_SYS_SDRAM_BASE 0xD0000000
  69. #define CONFIG_SYS_SDRAM_SIZE 0x08000000
  70. #define CONFIG_MONITOR_IS_IN_RAM
  71. #define CONFIG_SYS_MONITOR_LEN 0x40000 /* Reserve 256k */
  72. #define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_SDRAM_BASE + \
  73. CONFIG_SYS_SDRAM_SIZE - \
  74. CONFIG_SYS_MONITOR_LEN)
  75. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 0x20000)
  76. #define CONFIG_SYS_MALLOC_BASE (CONFIG_SYS_MONITOR_BASE - \
  77. CONFIG_SYS_MALLOC_LEN)
  78. #define CONFIG_SYS_INIT_SP CONFIG_SYS_MALLOC_BASE
  79. /*
  80. * MISC
  81. */
  82. #define CONFIG_SYS_LONGHELP /* Provide extended help */
  83. #define CONFIG_SYS_CBSIZE 256 /* Console I/O buf size */
  84. #define CONFIG_SYS_MAXARGS 16 /* Max command args */
  85. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Bootarg buf size */
  86. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  87. sizeof(CONFIG_SYS_PROMPT) + \
  88. 16) /* Print buf size */
  89. #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE
  90. #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
  91. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_INIT_SP - 0x20000)
  92. #define CONFIG_CMDLINE_EDITING
  93. #define CONFIG_CMD_GPIO
  94. #endif /* __CONFIG_H */