ls1012a_common.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. /*SPI device */
  29. #define CONFIG_SYS_FMAN_FW_ADDR 0x400d0000
  30. #define CONFIG_SYS_FSL_QSPI_BASE 0x40000000
  31. /* SATA */
  32. #define CONFIG_SCSI_AHCI_PLAT
  33. #define CONFIG_SYS_SATA AHCI_BASE_ADDR
  34. #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
  35. #define CONFIG_SYS_SCSI_MAX_LUN 1
  36. #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
  37. CONFIG_SYS_SCSI_MAX_LUN)
  38. /* I2C */
  39. #ifndef CONFIG_DM_I2C
  40. #define CONFIG_SYS_I2C
  41. #else
  42. #define CONFIG_I2C_SET_DEFAULT_BUS_NUM
  43. #define CONFIG_I2C_DEFAULT_BUS_NUMBER 0
  44. #endif
  45. #define CONFIG_SYS_NS16550_SERIAL
  46. #define CONFIG_SYS_NS16550_REG_SIZE 1
  47. #define CONFIG_SYS_NS16550_CLK (get_serial_clock())
  48. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  49. #define CONFIG_SYS_HZ 1000
  50. #define CONFIG_HWCONFIG
  51. #define HWCONFIG_BUFFER_SIZE 128
  52. #ifndef CONFIG_SPL_BUILD
  53. #define BOOT_TARGET_DEVICES(func) \
  54. func(MMC, mmc, 0) \
  55. func(USB, usb, 0) \
  56. func(SCSI, scsi, 0) \
  57. func(DHCP, dhcp, na)
  58. #include <config_distro_bootcmd.h>
  59. #endif
  60. /* Initial environment variables */
  61. #define CONFIG_EXTRA_ENV_SETTINGS \
  62. "verify=no\0" \
  63. "loadaddr=0x80100000\0" \
  64. "kernel_addr=0x100000\0" \
  65. "fdt_high=0xffffffffffffffff\0" \
  66. "initrd_high=0xffffffffffffffff\0" \
  67. "kernel_start=0x1000000\0" \
  68. "kernel_load=0xa0000000\0" \
  69. "kernel_size=0x2800000\0" \
  70. #undef CONFIG_BOOTCOMMAND
  71. #ifdef CONFIG_TFABOOT
  72. #define QSPI_NOR_BOOTCOMMAND "pfe stop; sf probe 0:0; sf read $kernel_load "\
  73. "$kernel_start $kernel_size && "\
  74. "bootm $kernel_load"
  75. #else
  76. #define CONFIG_BOOTCOMMAND "pfe stop; sf probe 0:0; sf read $kernel_load "\
  77. "$kernel_start $kernel_size && "\
  78. "bootm $kernel_load"
  79. #endif
  80. /* Monitor Command Prompt */
  81. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  82. #define CONFIG_SYS_MAXARGS 64 /* max command args */
  83. #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
  84. #include <asm/arch/soc.h>
  85. #endif /* __LS1012A_COMMON_H */