nios2-generic.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #ifndef __CONFIG_H
  25. #define __CONFIG_H
  26. /*
  27. * BOARD/CPU
  28. */
  29. #include "../board/altera/nios2-generic/custom_fpga.h" /* fpga parameters */
  30. #define CONFIG_BOARD_NAME "nios2-generic" /* custom board name */
  31. #define CONFIG_BOARD_EARLY_INIT_F /* enable early board-spec. init */
  32. #define CONFIG_SYS_NIOS_SYSID_BASE CONFIG_SYS_SYSID_BASE
  33. /*
  34. * SERIAL
  35. */
  36. #define CONFIG_ALTERA_UART
  37. #if defined(CONFIG_ALTERA_JTAG_UART)
  38. # define CONFIG_SYS_NIOS_CONSOLE CONFIG_SYS_JTAG_UART_BASE
  39. #else
  40. # define CONFIG_SYS_NIOS_CONSOLE CONFIG_SYS_UART_BASE
  41. #endif
  42. #define CONFIG_ALTERA_JTAG_UART_BYPASS
  43. #define CONFIG_SYS_NIOS_FIXEDBAUD
  44. #define CONFIG_BAUDRATE CONFIG_SYS_UART_BAUD
  45. #define CONFIG_SYS_BAUDRATE_TABLE {CONFIG_BAUDRATE}
  46. #define CONFIG_SYS_CONSOLE_INFO_QUIET /* Suppress console info */
  47. /*
  48. * TIMER
  49. */
  50. #define CONFIG_SYS_LOW_RES_TIMER
  51. #define CONFIG_SYS_NIOS_TMRBASE CONFIG_SYS_TIMER_BASE
  52. #define CONFIG_SYS_NIOS_TMRIRQ CONFIG_SYS_TIMER_IRQ
  53. #define CONFIG_SYS_HZ 1000 /* Always 1000 */
  54. #define CONFIG_SYS_NIOS_TMRMS 10 /* Desired period (msec)*/
  55. #define CONFIG_SYS_NIOS_TMRCNT \
  56. (CONFIG_SYS_NIOS_TMRMS * (CONFIG_SYS_TIMER_FREQ / 1000) - 1)
  57. /*
  58. * STATUS LED
  59. */
  60. #define CONFIG_ALTERA_PIO
  61. #define CONFIG_SYS_ALTERA_PIO_NUM 1
  62. #define CONFIG_SYS_ALTERA_PIO_GPIO_NUM LED_PIO_WIDTH
  63. #define CONFIG_STATUS_LED /* Enable status driver */
  64. #define CONFIG_GPIO_LED /* Enable GPIO LED driver */
  65. #define CONFIG_GPIO /* Enable GPIO driver */
  66. #define STATUS_LED_BIT 0 /* Bit-0 on GPIO */
  67. #define STATUS_LED_STATE 1 /* Blinking */
  68. #define STATUS_LED_PERIOD (500 / CONFIG_SYS_NIOS_TMRMS) /* 500 msec */
  69. /*
  70. * BOOTP options
  71. */
  72. #define CONFIG_BOOTP_BOOTFILESIZE
  73. #define CONFIG_BOOTP_BOOTPATH
  74. #define CONFIG_BOOTP_GATEWAY
  75. #define CONFIG_BOOTP_HOSTNAME
  76. /*
  77. * Command line configuration.
  78. */
  79. #include <config_cmd_default.h>
  80. #undef CONFIG_CMD_BOOTD
  81. #undef CONFIG_CMD_FPGA
  82. #undef CONFIG_CMD_IMLS
  83. #undef CONFIG_CMD_ITEST
  84. #undef CONFIG_CMD_NFS
  85. #undef CONFIG_CMD_SETGETDCR
  86. #undef CONFIG_CMD_XIMG
  87. #ifdef CONFIG_CMD_NET
  88. # define CONFIG_CMD_DHCP
  89. # define CONFIG_CMD_PING
  90. #endif
  91. /*
  92. * ENVIRONMENT -- Put environment in sector CONFIG_SYS_MONITOR_LEN above
  93. * CONFIG_SYS_RESET_ADDR, since we assume the monitor is stored at the
  94. * reset address, no? This will keep the environment in user region
  95. * of flash. NOTE: the monitor length must be multiple of sector size
  96. * (which is common practice).
  97. */
  98. #define CONFIG_ENV_IS_IN_FLASH
  99. #define CONFIG_ENV_SIZE 0x10000 /* 64k, 1 sector */
  100. #define CONFIG_ENV_OVERWRITE /* Serial change Ok */
  101. #define CONFIG_ENV_ADDR ((CONFIG_SYS_RESET_ADDR + \
  102. CONFIG_SYS_MONITOR_LEN) | \
  103. CONFIG_SYS_FLASH_BASE)
  104. /*
  105. * MEMORY ORGANIZATION
  106. * -Monitor at top of sdram.
  107. * -The heap is placed below the monitor
  108. * -Global data is placed below the heap.
  109. * -The stack is placed below global data (&grows down).
  110. */
  111. #define CONFIG_MONITOR_IS_IN_RAM
  112. #define CONFIG_SYS_MONITOR_LEN 0x40000 /* Reserve 256k */
  113. #define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_SDRAM_BASE + \
  114. CONFIG_SYS_SDRAM_SIZE - \
  115. CONFIG_SYS_MONITOR_LEN)
  116. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 0x20000)
  117. #define CONFIG_SYS_MALLOC_BASE (CONFIG_SYS_MONITOR_BASE - \
  118. CONFIG_SYS_MALLOC_LEN)
  119. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_MALLOC_BASE - \
  120. GENERATED_GBL_DATA_SIZE - \
  121. GENERATED_BD_INFO_SIZE)
  122. #define CONFIG_SYS_INIT_SP CONFIG_SYS_GBL_DATA_OFFSET
  123. /*
  124. * MISC
  125. */
  126. #define CONFIG_SYS_LONGHELP /* Provide extended help */
  127. #define CONFIG_SYS_PROMPT "==> " /* Command prompt */
  128. #define CONFIG_SYS_CBSIZE 256 /* Console I/O buf size */
  129. #define CONFIG_SYS_MAXARGS 16 /* Max command args */
  130. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Bootarg buf size */
  131. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  132. sizeof(CONFIG_SYS_PROMPT) + \
  133. 16) /* Print buf size */
  134. #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE
  135. #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
  136. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_INIT_SP - 0x20000)
  137. #define CONFIG_CMDLINE_EDITING
  138. #define CONFIG_SYS_HUSH_PARSER
  139. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  140. #endif /* __CONFIG_H */