omap3_zoom1.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*
  2. * (C) Copyright 2006-2008
  3. * Texas Instruments.
  4. * Richard Woodruff <r-woodruff2@ti.com>
  5. * Syed Mohammed Khasim <x0khasim@ti.com>
  6. * Nishanth Menon <nm@ti.com>
  7. *
  8. * Configuration settings for the TI OMAP3430 Zoom MDK board.
  9. *
  10. * SPDX-License-Identifier: GPL-2.0+
  11. */
  12. #ifndef __CONFIG_H
  13. #define __CONFIG_H
  14. /*
  15. * High Level Configuration Options
  16. */
  17. #define CONFIG_OMAP3_ZOOM1 1 /* working with Zoom MDK Rev1 */
  18. #define CONFIG_NAND
  19. #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
  20. #include <asm/arch/cpu.h> /* get chip and board defs */
  21. #include <asm/arch/omap.h>
  22. #include <configs/ti_omap3_common.h>
  23. /* Remove SPL boot option - we do not support that on LDP yet */
  24. #undef CONFIG_SPL_FRAMEWORK
  25. /* Generic NAND definition conflicts with debug_base */
  26. #undef CONFIG_SYS_NAND_BASE
  27. #define CONFIG_MISC_INIT_R
  28. #define CONFIG_REVISION_TAG 1
  29. #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
  30. /*
  31. * Hardware drivers
  32. */
  33. /* USB */
  34. #define CONFIG_USB_MUSB_UDC 1
  35. #define CONFIG_USB_OMAP3 1
  36. #define CONFIG_TWL4030_USB 1
  37. /* USB device configuration */
  38. #define CONFIG_USB_DEVICE 1
  39. #define CONFIG_USB_TTY 1
  40. /* Change these to suit your needs */
  41. #define CONFIG_USBD_VENDORID 0x0451
  42. #define CONFIG_USBD_PRODUCTID 0x5678
  43. #define CONFIG_USBD_MANUFACTURER "Texas Instruments"
  44. #define CONFIG_USBD_PRODUCT_NAME "Zoom1"
  45. #define MTDIDS_DEFAULT "nand0=nand"
  46. #define MTDPARTS_DEFAULT "mtdparts=nand:512k(x-loader),"\
  47. "1920k(u-boot),128k(u-boot-env),"\
  48. "4m(kernel),-(fs)"
  49. #if defined(CONFIG_CMD_NAND)
  50. /* NAND: SPL falcon mode configs */
  51. #ifdef CONFIG_SPL_OS_BOOT
  52. #define CONFIG_CMD_SPL_NAND_OFS 0x240000
  53. #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
  54. #define CONFIG_CMD_SPL_WRITE_SIZE 0x2000
  55. #endif
  56. #define CONFIG_CMD_NAND_LOCK_UNLOCK /* Enable lock/unlock support */
  57. #endif
  58. #undef CONFIG_SYS_I2C_OMAP24XX
  59. #define CONFIG_SYS_I2C_OMAP34XX
  60. /*
  61. * TWL4030
  62. */
  63. #define CONFIG_TWL4030_LED 1
  64. /*
  65. * Board NAND Info.
  66. */
  67. #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
  68. /* to access nand */
  69. #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
  70. /* to access nand at */
  71. /* CS0 */
  72. #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
  73. /* Environment information */
  74. #define CONFIG_EXTRA_ENV_SETTINGS \
  75. "loadaddr=0x82000000\0" \
  76. "fdtaddr=0x80f80000\0" \
  77. "bootfile=uImage\0" \
  78. "fdtfile=omap3-ldp.dtb\0" \
  79. "bootdir=/\0" \
  80. "bootpart=0:1\0" \
  81. "usbtty=cdc_acm\0" \
  82. "console=ttyO2,115200n8\0" \
  83. "mmcdev=0\0" \
  84. "videomode=1024x768@60,vxres=1024,vyres=768\0" \
  85. "videospec=omapfb:vram:2M,vram:4M\0" \
  86. "mmcargs=setenv bootargs console=${console} " \
  87. "video=${videospec},mode:${videomode} " \
  88. "root=/dev/mmcblk0p2 rw " \
  89. "rootfstype=ext3 rootwait\0" \
  90. "nandargs=setenv bootargs console=${console} " \
  91. "video=${videospec},mode:${videomode} " \
  92. "root=/dev/mtdblock4 rw " \
  93. "rootfstype=jffs2\0" \
  94. "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
  95. "bootscript=echo Running bootscript from mmc ...; " \
  96. "source ${loadaddr}\0" \
  97. "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
  98. "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
  99. "loadzimage=setenv bootfile zImage; if run loadimage; then run loadfdt;fi\0"\
  100. "mmcboot=echo Booting from mmc ...; " \
  101. "run mmcargs; " \
  102. "bootm ${loadaddr}\0" \
  103. "mmczboot=echo Booting from mmc ...; " \
  104. "run mmcargs; " \
  105. "bootz ${loadaddr} - ${fdtaddr}\0" \
  106. "nandboot=echo Booting from nand ...; " \
  107. "run nandargs; " \
  108. "nand read ${loadaddr} 280000 400000; " \
  109. "bootm ${loadaddr}\0" \
  110. #define CONFIG_BOOTCOMMAND \
  111. "mmc dev ${mmcdev}; if mmc rescan; then " \
  112. "if run loadbootscript; then " \
  113. "run bootscript; " \
  114. "else " \
  115. "if run loadimage; then " \
  116. "run mmcboot; " \
  117. "else if run loadzimage; then " \
  118. "run mmczboot; " \
  119. "else run nandboot; " \
  120. "fi; fi;" \
  121. "fi; " \
  122. "else run nandboot; fi"
  123. /*
  124. * Miscellaneous configurable options
  125. */
  126. #define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1) /* memtest */
  127. #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_2 + \
  128. 0x01F00000) /* 31MB */
  129. /*-----------------------------------------------------------------------
  130. * FLASH and environment organization
  131. */
  132. /* **** PISMO SUPPORT *** */
  133. #if defined(CONFIG_CMD_NAND)
  134. #define CONFIG_SYS_FLASH_BASE NAND_BASE
  135. #endif
  136. /* Monitor at start of flash */
  137. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  138. #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
  139. #define CONFIG_ENV_IS_IN_NAND 1
  140. #define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
  141. #define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
  142. #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
  143. #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
  144. #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
  145. #ifdef CONFIG_CMD_NET
  146. /* Ethernet (LAN9211 from SMSC9118 family) */
  147. #define CONFIG_SMC911X
  148. #define CONFIG_SMC911X_32_BIT
  149. #define CONFIG_SMC911X_BASE DEBUG_BASE
  150. #endif
  151. #endif /* __CONFIG_H */