ti_omap4_common.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2010
  4. * Texas Instruments Incorporated.
  5. * Aneesh V <aneesh@ti.com>
  6. * Steve Sakoman <steve@sakoman.com>
  7. *
  8. * TI OMAP4 common configuration settings
  9. */
  10. #ifndef __CONFIG_TI_OMAP4_COMMON_H
  11. #define __CONFIG_TI_OMAP4_COMMON_H
  12. #ifndef CONFIG_SYS_L2CACHE_OFF
  13. #define CONFIG_SYS_L2_PL310 1
  14. #define CONFIG_SYS_PL310_BASE 0x48242000
  15. #endif
  16. /* Get CPU defs */
  17. #include <asm/arch/cpu.h>
  18. #include <asm/arch/omap.h>
  19. /* Use General purpose timer 1 */
  20. #define CONFIG_SYS_TIMERBASE GPT2_BASE
  21. /*
  22. * For the DDR timing information we can either dynamically determine
  23. * the timings to use or use pre-determined timings (based on using the
  24. * dynamic method. Default to the static timing infomation.
  25. */
  26. #define CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
  27. #ifndef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
  28. #define CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION
  29. #define CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS
  30. #endif
  31. #include <configs/ti_armv7_omap.h>
  32. /*
  33. * Hardware drivers
  34. */
  35. #define CONFIG_SYS_NS16550_CLK 48000000
  36. #if defined(CONFIG_SPL_BUILD) || !defined(CONFIG_DM_SERIAL)
  37. #define CONFIG_SYS_NS16550_SERIAL
  38. #define CONFIG_SYS_NS16550_REG_SIZE (-4)
  39. #define CONFIG_SYS_NS16550_COM3 UART3_BASE
  40. #endif
  41. /* TWL6030 */
  42. #ifndef CONFIG_SPL_BUILD
  43. #define CONFIG_TWL6030_POWER 1
  44. #endif
  45. /* USB */
  46. /* USB device configuration */
  47. #define CONFIG_USB_DEVICE 1
  48. #define CONFIG_USB_TTY 1
  49. /*
  50. * Environment setup
  51. */
  52. #define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \
  53. "bootcmd_" #devtypel #instance "=" \
  54. "setenv mmcdev " #instance"; "\
  55. "setenv bootpart " #instance":2 ; "\
  56. "run mmcboot\0"
  57. #define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \
  58. #devtypel #instance " "
  59. #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
  60. #devtypel #instance " "
  61. #define BOOT_TARGET_DEVICES(func) \
  62. func(MMC, mmc, 0) \
  63. func(LEGACY_MMC, legacy_mmc, 0) \
  64. func(MMC, mmc, 1) \
  65. func(LEGACY_MMC, legacy_mmc, 1) \
  66. func(PXE, pxe, na) \
  67. func(DHCP, dhcp, na)
  68. #include <config_distro_bootcmd.h>
  69. #include <environment/ti/mmc.h>
  70. #define CONFIG_EXTRA_ENV_SETTINGS \
  71. DEFAULT_LINUX_BOOT_ENV \
  72. DEFAULT_MMC_TI_ARGS \
  73. DEFAULT_FIT_TI_ARGS \
  74. "console=ttyO2,115200n8\0" \
  75. "fdtfile=undefined\0" \
  76. "bootpart=0:2\0" \
  77. "bootdir=/boot\0" \
  78. "bootfile=zImage\0" \
  79. "usbtty=cdc_acm\0" \
  80. "vram=16M\0" \
  81. "loaduimage=load mmc ${mmcdev} ${loadaddr} uImage\0" \
  82. "uimageboot=echo Booting from mmc${mmcdev} ...; " \
  83. "run args_mmc; " \
  84. "bootm ${loadaddr}\0" \
  85. "findfdt="\
  86. "if test $board_name = sdp4430; then " \
  87. "setenv fdtfile omap4-sdp.dtb; fi; " \
  88. "if test $board_name = panda; then " \
  89. "setenv fdtfile omap4-panda.dtb; fi;" \
  90. "if test $board_name = panda-a4; then " \
  91. "setenv fdtfile omap4-panda-a4.dtb; fi;" \
  92. "if test $board_name = panda-es; then " \
  93. "setenv fdtfile omap4-panda-es.dtb; fi;" \
  94. "if test $board_name = duovero; then " \
  95. "setenv fdtfile omap4-duovero-parlor.dtb; fi;" \
  96. "if test $fdtfile = undefined; then " \
  97. "echo WARNING: Could not determine device tree to use; fi; \0" \
  98. BOOTENV
  99. /*
  100. * Defines for SPL
  101. * It is known that this will break HS devices. Since the current size of
  102. * SPL is overlapped with public stack and breaking non HS devices to boot.
  103. * So moving TEXT_BASE down to non-HS limit.
  104. */
  105. #define CONFIG_SYS_SPL_ARGS_ADDR (CONFIG_SYS_SDRAM_BASE + \
  106. (128 << 20))
  107. #ifdef CONFIG_SPL_BUILD
  108. /* No need for i2c in SPL mode as we will use SRI2C for PMIC access on OMAP4 */
  109. #undef CONFIG_SYS_I2C
  110. #endif
  111. #endif /* __CONFIG_TI_OMAP4_COMMON_H */