voiceblue.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. /*
  2. * (C) Copyright 2005 2N TELEKOMUNIKACE, Ladislav Michl
  3. *
  4. * Configuation settings for the TI OMAP VoiceBlue board.
  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
  11. * version 2 as published by the Free Software Foundation.
  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. #include <configs/omap1510.h>
  26. /*
  27. * High Level Configuration Options
  28. * (easy to change)
  29. */
  30. #define CONFIG_ARM925T 1 /* This is an arm925t CPU */
  31. #define CONFIG_OMAP 1 /* in a TI OMAP core */
  32. #define CONFIG_OMAP1510 1 /* which is in a 5910 */
  33. /* Input clock of PLL */
  34. #define CONFIG_SYS_CLK_FREQ 150000000 /* 150MHz input clock */
  35. #define CONFIG_XTAL_FREQ 12000000
  36. #undef CONFIG_USE_IRQ /* we don't need IRQ/FIQ stuff */
  37. #define CONFIG_MISC_INIT_R /* There is nothing to really init */
  38. #define BOARD_LATE_INIT /* but we flash the LEDs here */
  39. #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
  40. #define CONFIG_SETUP_MEMORY_TAGS 1
  41. #define CONFIG_INITRD_TAG 1
  42. /*
  43. * Physical Memory Map
  44. */
  45. #define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
  46. #define PHYS_SDRAM_1 0x10000000 /* SDRAM Bank #1 */
  47. #define PHYS_SDRAM_1_SIZE SZ_64M
  48. #define PHYS_FLASH_1 0x00000000 /* Flash Bank #1 */
  49. #define PHYS_FLASH_2 0x0c000000
  50. #define CFG_LOAD_ADDR PHYS_SDRAM_1 + 0x400000 /* default load address */
  51. /*
  52. * FLASH organization
  53. */
  54. #define CFG_FLASH_CFI /* Flash is CFI conformant */
  55. #define CFG_FLASH_CFI_DRIVER /* Use the common driver */
  56. #define CFG_MAX_FLASH_BANKS 1
  57. #ifdef VOICEBLUE_SMALL_FLASH
  58. #define CFG_FLASH_BANKS_LIST { PHYS_FLASH_2 }
  59. #else
  60. #define CFG_FLASH_BANKS_LIST { PHYS_FLASH_1 }
  61. #endif
  62. /* FIXME: Does not work on AMD flash */
  63. /* #define CFG_FLASH_USE_BUFFER_WRITE 1 */ /* use buffered writes (20x faster) */
  64. #define CFG_MAX_FLASH_SECT 512 /* max # of sectors on one chip */
  65. #define CFG_MONITOR_BASE PHYS_FLASH_1
  66. #define CFG_MONITOR_LEN SZ_128K
  67. /*
  68. * Environment settings
  69. */
  70. #ifdef VOICEBLUE_SMALL_FLASH
  71. #define CFG_ENV_IS_NOWHERE
  72. #define CFG_ENV_SIZE SZ_1K
  73. #else
  74. #define CFG_ENV_IS_IN_FLASH
  75. #define CFG_ENV_ADDR (PHYS_FLASH_1 + CFG_MONITOR_LEN)
  76. #define CFG_ENV_SIZE SZ_8K
  77. #define CFG_ENV_SECT_SIZE SZ_64K
  78. #define CFG_ENV_ADDR_REDUND (CFG_ENV_ADDR + CFG_ENV_SECT_SIZE)
  79. #define CFG_ENV_SIZE_REDUND CFG_ENV_SIZE
  80. #define CONFIG_ENV_OVERWRITE
  81. #define CFG_JFFS_CUSTOM_PART /* see board/voiceblue/jffs2parts.c */
  82. #endif
  83. /*
  84. * Size of malloc() pool
  85. */
  86. #define CFG_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
  87. #ifdef VOICEBLUE_SMALL_FLASH
  88. #define CFG_MALLOC_LEN (SZ_64K - CFG_GBL_DATA_SIZE)
  89. #else
  90. #define CFG_MALLOC_LEN (SZ_4M - CFG_GBL_DATA_SIZE)
  91. #endif
  92. /*
  93. * The stack size is set up in start.S using the settings below
  94. */
  95. #define CONFIG_STACKSIZE SZ_8K /* regular stack */
  96. /*
  97. * Hardware drivers
  98. */
  99. #define CONFIG_DRIVER_SMC91111
  100. #define CONFIG_SMC91111_BASE 0x08000300
  101. /*
  102. * NS16550 Configuration
  103. */
  104. #define CFG_NS16550
  105. #define CFG_NS16550_SERIAL
  106. #define CFG_NS16550_REG_SIZE (-4)
  107. #define CFG_NS16550_CLK (CONFIG_XTAL_FREQ) /* can be 12M/32Khz or 48Mhz */
  108. #define CFG_NS16550_COM1 OMAP1510_UART1_BASE /* uart1 */
  109. #define CONFIG_CONS_INDEX 1
  110. #define CONFIG_BAUDRATE 115200
  111. #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  112. #ifdef VOICEBLUE_SMALL_FLASH
  113. #define CONFIG_COMMANDS (CFG_CMD_BDI | \
  114. CFG_CMD_LOADB | \
  115. CFG_CMD_IMI | \
  116. CFG_CMD_FLASH | \
  117. CFG_CMD_MEMORY | \
  118. CFG_CMD_NET | \
  119. CFG_CMD_BOOTD | \
  120. CFG_CMD_DHCP | \
  121. CFG_CMD_PING | \
  122. CFG_CMD_RUN)
  123. #else
  124. #define CONFIG_COMMANDS (CFG_CMD_BDI | \
  125. CFG_CMD_LOADB | \
  126. CFG_CMD_IMI | \
  127. CFG_CMD_FLASH | \
  128. CFG_CMD_MEMORY | \
  129. CFG_CMD_NET | \
  130. CFG_CMD_ENV | \
  131. CFG_CMD_BOOTD | \
  132. CFG_CMD_DHCP | \
  133. CFG_CMD_PING | \
  134. CFG_CMD_RUN | \
  135. CFG_CMD_JFFS2)
  136. #endif
  137. #define CONFIG_BOOTP_MASK CONFIG_BOOTP_DEFAULT
  138. #define CONFIG_LOOPW
  139. #ifdef VOICEBLUE_SMALL_FLASH
  140. #define CONFIG_BOOTDELAY 0
  141. #undef CONFIG_BOOTARGS /* the preboot command will set bootargs*/
  142. #define CFG_AUTOLOAD "n" /* No autoload */
  143. #define CONFIG_PREBOOT "run setup"
  144. #define CONFIG_EXTRA_ENV_SETTINGS \
  145. "setup=setenv bootargs console=ttyS0,$(baudrate) " \
  146. "root=/dev/nfs ip=dhcp\0" \
  147. "update=erase c000000 c03ffff; " \
  148. "cp.b 10400000 c000000 $(filesize)\0"
  149. #else
  150. #define CONFIG_BOOTDELAY 3
  151. #undef CONFIG_BOOTARGS /* the boot command will set bootargs*/
  152. #define CFG_AUTOLOAD "n" /* No autoload */
  153. #define CONFIG_BOOTCOMMAND "run nboot"
  154. #define CONFIG_PREBOOT "run setup"
  155. #define CONFIG_EXTRA_ENV_SETTINGS \
  156. "ospart=0\0" \
  157. "swapos=no\0" \
  158. "setpart=" \
  159. "if test $swapos = yes; then " \
  160. "if test $ospart -eq 0; then chpart 4; else chpart 3; fi; "\
  161. "setenv swapos no; saveenv; " \
  162. "else " \
  163. "if test $ospart -eq 0; then chpart 3; else chpart 4; fi; "\
  164. "fi\0" \
  165. "setup=setenv bootargs console=ttyS0,$baudrate " \
  166. "mtdparts=$mtdparts\0" \
  167. "nfsargs=setenv bootargs $bootargs " \
  168. "root=/dev/nfs ip=dhcp; run setpart\0" \
  169. "flashargs=setenv bootargs $bootargs " \
  170. "root=/dev/mtdblock$partition " \
  171. "rootfstype=jffs2; run setpart\0" \
  172. "nboot=run nfsargs; bootp; tftp; bootm\0" \
  173. "fboot=run flashargs; fsload /boot/uImage; bootm\0"
  174. #endif
  175. /* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
  176. #include <cmd_confdefs.h>
  177. /*
  178. * Miscellaneous configurable options
  179. */
  180. #ifndef VOICEBLUE_SMALL_FLASH
  181. #define CFG_HUSH_PARSER
  182. #define CFG_PROMPT_HUSH_PS2 "> "
  183. #define CONFIG_AUTO_COMPLETE
  184. #endif
  185. #define CFG_LONGHELP /* undef to save memory */
  186. #define CFG_PROMPT "# " /* Monitor Command Prompt */
  187. #define CFG_CBSIZE 256 /* Console I/O Buffer Size */
  188. #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
  189. #define CFG_MAXARGS 16 /* max number of command args */
  190. #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
  191. #define CFG_MEMTEST_START PHYS_SDRAM_1
  192. #define CFG_MEMTEST_END PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE
  193. #undef CFG_CLKS_IN_HZ /* everything, incl board info, in Hz */
  194. /* The 1510 has 3 timers, they can be driven by the RefClk (12Mhz) or by DPLL1.
  195. * This time is further subdivided by a local divisor.
  196. */
  197. #define CFG_TIMERBASE OMAP1510_TIMER1_BASE
  198. #define CFG_PVT 7 /* 2^(pvt+1), divide by 256 */
  199. #define CFG_HZ ((CONFIG_SYS_CLK_FREQ)/(2 << CFG_PVT))
  200. #define OMAP5910_DPLL_DIV 1
  201. #define OMAP5910_DPLL_MUL ((CONFIG_SYS_CLK_FREQ * \
  202. (1 << OMAP5910_DPLL_DIV)) / CONFIG_XTAL_FREQ)
  203. #define OMAP5910_ARM_PER_DIV 2 /* CKL/4 */
  204. #define OMAP5910_LCD_DIV 2 /* CKL/4 */
  205. #define OMAP5910_ARM_DIV 0 /* CKL/1 */
  206. #define OMAP5910_DSP_DIV 0 /* CKL/1 */
  207. #define OMAP5910_TC_DIV 1 /* CKL/2 */
  208. #define OMAP5910_DSP_MMU_DIV 1 /* CKL/2 */
  209. #define OMAP5910_ARM_TIM_SEL 1 /* CKL used for MPU timers */
  210. #define OMAP5910_ARM_EN_CLK 0x03d6 /* 0000 0011 1101 0110b Clock Enable */
  211. #define OMAP5910_ARM_CKCTL ((OMAP5910_ARM_PER_DIV) | \
  212. (OMAP5910_LCD_DIV << 2) | \
  213. (OMAP5910_ARM_DIV << 4) | \
  214. (OMAP5910_DSP_DIV << 6) | \
  215. (OMAP5910_TC_DIV << 8) | \
  216. (OMAP5910_DSP_MMU_DIV << 10) | \
  217. (OMAP5910_ARM_TIM_SEL << 12))
  218. #define VOICEBLUE_LED_REG 0x04030000
  219. #endif /* __CONFIG_H */