ls1012a_common.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright 2016 Freescale Semiconductor
  4. */
  5. #ifndef __LS1012A_COMMON_H
  6. #define __LS1012A_COMMON_H
  7. #define CONFIG_GICV2
  8. #include <asm/arch/config.h>
  9. #include <asm/arch/stream_id_lsch2.h>
  10. #define CONFIG_SYS_CLK_FREQ 125000000
  11. #define CONFIG_SKIP_LOWLEVEL_INIT
  12. #ifdef CONFIG_TFABOOT
  13. #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE
  14. #else
  15. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_FSL_OCRAM_BASE + 0xfff0)
  16. #endif
  17. #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000)
  18. #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000
  19. #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0
  20. #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
  21. #define CONFIG_SYS_DDR_BLOCK2_BASE 0x880000000ULL
  22. /* Generic Timer Definitions */
  23. #define COUNTER_FREQUENCY 25000000 /* 25MHz */
  24. /* CSU */
  25. #define CONFIG_LAYERSCAPE_NS_ACCESS
  26. /* Size of malloc() pool */
  27. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 1024 * 1024)
  28. /* PFE */
  29. #define CONFIG_SYS_FMAN_FW_ADDR 0x400d0000
  30. #define CONFIG_SYS_QE_FMAN_FW_LENGTH 0x300000
  31. /*SPI device */
  32. #define CONFIG_SYS_FSL_QSPI_BASE 0x40000000
  33. /* SATA */
  34. #define CONFIG_SCSI_AHCI_PLAT
  35. #define CONFIG_SYS_SATA AHCI_BASE_ADDR
  36. #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
  37. #define CONFIG_SYS_SCSI_MAX_LUN 1
  38. #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
  39. CONFIG_SYS_SCSI_MAX_LUN)
  40. /* I2C */
  41. #ifndef CONFIG_DM_I2C
  42. #define CONFIG_SYS_I2C
  43. #else
  44. #define CONFIG_I2C_SET_DEFAULT_BUS_NUM
  45. #define CONFIG_I2C_DEFAULT_BUS_NUMBER 0
  46. #endif
  47. #define CONFIG_SYS_NS16550_SERIAL
  48. #define CONFIG_SYS_NS16550_REG_SIZE 1
  49. #define CONFIG_SYS_NS16550_CLK (get_serial_clock())
  50. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  51. #define CONFIG_SYS_HZ 1000
  52. #define CONFIG_HWCONFIG
  53. #define HWCONFIG_BUFFER_SIZE 128
  54. #ifndef CONFIG_SPL_BUILD
  55. #define BOOT_TARGET_DEVICES(func) \
  56. func(MMC, mmc, 0) \
  57. func(USB, usb, 0) \
  58. func(SCSI, scsi, 0) \
  59. func(DHCP, dhcp, na)
  60. #include <config_distro_bootcmd.h>
  61. #endif
  62. /* Initial environment variables */
  63. #define CONFIG_EXTRA_ENV_SETTINGS \
  64. "verify=no\0" \
  65. "loadaddr=0x80100000\0" \
  66. "kernel_addr=0x100000\0" \
  67. "initrd_high=0xffffffffffffffff\0" \
  68. "kernel_start=0x1000000\0" \
  69. "kernel_load=0xa0000000\0" \
  70. "kernel_size=0x2800000\0" \
  71. "bootm_size=0x10000000\0" \
  72. #undef CONFIG_BOOTCOMMAND
  73. #ifdef CONFIG_TFABOOT
  74. #define QSPI_NOR_BOOTCOMMAND "pfe stop; sf probe 0:0; sf read $kernel_load "\
  75. "$kernel_start $kernel_size && "\
  76. "bootm $kernel_load"
  77. #else
  78. #define CONFIG_BOOTCOMMAND "pfe stop; sf probe 0:0; sf read $kernel_load "\
  79. "$kernel_start $kernel_size && "\
  80. "bootm $kernel_load"
  81. #endif
  82. /* Monitor Command Prompt */
  83. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  84. #define CONFIG_SYS_MAXARGS 64 /* max command args */
  85. #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
  86. #include <asm/arch/soc.h>
  87. #endif /* __LS1012A_COMMON_H */