ls1012a_common.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. #include <asm/arch/config.h>
  8. #include <asm/arch/stream_id_lsch2.h>
  9. #include <linux/sizes.h>
  10. #ifdef CONFIG_TFABOOT
  11. #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE
  12. #else
  13. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_FSL_OCRAM_BASE + 0xfff0)
  14. #endif
  15. #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000
  16. #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0
  17. #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
  18. #define CONFIG_SYS_DDR_BLOCK2_BASE 0x880000000ULL
  19. /* Generic Timer Definitions */
  20. #define COUNTER_FREQUENCY 25000000 /* 25MHz */
  21. /* CSU */
  22. #define CONFIG_LAYERSCAPE_NS_ACCESS
  23. /*SPI device */
  24. #define CONFIG_SYS_FSL_QSPI_BASE 0x40000000
  25. /* SATA */
  26. #define CONFIG_SCSI_AHCI_PLAT
  27. #define CONFIG_SYS_SATA AHCI_BASE_ADDR
  28. #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
  29. #define CONFIG_SYS_SCSI_MAX_LUN 1
  30. /* I2C */
  31. /* GPIO */
  32. #define CONFIG_SYS_NS16550_SERIAL
  33. #define CONFIG_SYS_NS16550_REG_SIZE 1
  34. #define CONFIG_SYS_NS16550_CLK (get_serial_clock())
  35. #define CONFIG_HWCONFIG
  36. #define HWCONFIG_BUFFER_SIZE 128
  37. #ifndef CONFIG_SPL_BUILD
  38. #define BOOT_TARGET_DEVICES(func) \
  39. func(MMC, mmc, 0) \
  40. func(USB, usb, 0) \
  41. func(SCSI, scsi, 0) \
  42. func(DHCP, dhcp, na)
  43. #include <config_distro_bootcmd.h>
  44. #endif
  45. /* Initial environment variables */
  46. #define CONFIG_EXTRA_ENV_SETTINGS \
  47. "verify=no\0" \
  48. "loadaddr=0x80100000\0" \
  49. "kernel_addr=0x100000\0" \
  50. "initrd_high=0xffffffffffffffff\0" \
  51. "kernel_start=0x1000000\0" \
  52. "kernel_load=0xa0000000\0" \
  53. "kernel_size=0x2800000\0" \
  54. "bootm_size=0x10000000\0" \
  55. #ifdef CONFIG_TFABOOT
  56. #define QSPI_NOR_BOOTCOMMAND "sf probe 0:0; sf read $kernel_load "\
  57. "$kernel_start $kernel_size && "\
  58. "bootm $kernel_load"
  59. #endif
  60. /* Monitor Command Prompt */
  61. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  62. #define CONFIG_SYS_MAXARGS 64 /* max command args */
  63. #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
  64. #include <asm/arch/soc.h>
  65. #endif /* __LS1012A_COMMON_H */