am335x_sl50.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * am335x_sl50.h
  3. *
  4. * Copyright (C) 2015 Toby Churchill Ltd - http://www.toby-churchill.com/
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __CONFIG_AM335X_EVM_H
  9. #define __CONFIG_AM335X_EVM_H
  10. #include <configs/ti_am335x_common.h>
  11. #ifndef CONFIG_SPL_BUILD
  12. # define CONFIG_TIMESTAMP
  13. # define CONFIG_LZO
  14. #endif
  15. #define CONFIG_SYS_BOOTM_LEN (16 << 20)
  16. /*#define CONFIG_MACH_TYPE 3589 Until the next sync */
  17. #define CONFIG_BOARD_LATE_INIT
  18. /* Clock Defines */
  19. #define V_OSCK 24000000 /* Clock output from T2 */
  20. #define V_SCLK (V_OSCK)
  21. /* Always 128 KiB env size */
  22. #define CONFIG_ENV_SIZE (128 << 10)
  23. /* Enhance our eMMC support / experience. */
  24. #define CONFIG_CMD_GPT
  25. #define CONFIG_EFI_PARTITION
  26. #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
  27. #ifndef CONFIG_SPL_BUILD
  28. #include <config_distro_defaults.h>
  29. #define MEM_LAYOUT_ENV_SETTINGS \
  30. "scriptaddr=0x80000000\0" \
  31. "pxefile_addr_r=0x80100000\0" \
  32. "kernel_addr_r=0x82000000\0" \
  33. "fdt_addr_r=0x88000000\0" \
  34. "ramdisk_addr_r=0x88080000\0" \
  35. #define BOOT_TARGET_DEVICES(func) \
  36. func(MMC, mmc, 0) \
  37. func(MMC, mmc, 1)
  38. #define AM335XX_BOARD_FDTFILE \
  39. "fdtfile=am335x-sl50.dtb\0" \
  40. #include <config_distro_bootcmd.h>
  41. #define CONFIG_EXTRA_ENV_SETTINGS \
  42. AM335XX_BOARD_FDTFILE \
  43. MEM_LAYOUT_ENV_SETTINGS \
  44. BOOTENV
  45. #endif
  46. /* NS16550 Configuration */
  47. #define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */
  48. #define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */
  49. #define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */
  50. #define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */
  51. #define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */
  52. #define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */
  53. #define CONFIG_BAUDRATE 115200
  54. #define CONFIG_CMD_EEPROM
  55. #define CONFIG_ENV_EEPROM_IS_ON_I2C
  56. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* Main EEPROM */
  57. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
  58. /* PMIC support */
  59. #define CONFIG_POWER_TPS65217
  60. #define CONFIG_POWER_TPS65910
  61. /* SPL */
  62. /* Bootcount using the RTC block */
  63. #define CONFIG_BOOTCOUNT_LIMIT
  64. #define CONFIG_BOOTCOUNT_AM33XX
  65. #define CONFIG_SYS_BOOTCOUNT_BE
  66. #define CONFIG_SPL_LDSCRIPT "arch/arm/mach-omap2/u-boot-spl.lds"
  67. #ifndef CONFIG_SPL_USBETH_SUPPORT
  68. #define CONFIG_FASTBOOT_FLASH_MMC_DEV 1
  69. #endif
  70. #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT)
  71. /* Remove other SPL modes. */
  72. #define CONFIG_ENV_IS_NOWHERE
  73. #undef CONFIG_ENV_IS_IN_NAND
  74. /* disable host part of MUSB in SPL */
  75. #undef CONFIG_MUSB_HOST
  76. /* disable EFI partitions and partition UUID support */
  77. #undef CONFIG_PARTITION_UUIDS
  78. #undef CONFIG_EFI_PARTITION
  79. #endif
  80. #if defined(CONFIG_EMMC_BOOT)
  81. #undef CONFIG_ENV_IS_NOWHERE
  82. #define CONFIG_ENV_IS_IN_MMC
  83. #define CONFIG_SYS_MMC_ENV_DEV 1
  84. #define CONFIG_SYS_MMC_ENV_PART 2
  85. #define CONFIG_ENV_OFFSET 0x0
  86. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
  87. #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
  88. #endif
  89. /* Network. */
  90. #define CONFIG_PHY_GIGE
  91. #define CONFIG_PHYLIB
  92. #define CONFIG_PHY_SMSC
  93. #endif /* ! __CONFIG_AM335X_SL50_H */