Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #
  2. # Copyright (C) 2017-2020 Alibaba Group Holding Limited
  3. #
  4. # SPDX-License-Identifier: GPL-2.0+
  5. #
  6. if TARGET_ANOLE_C860
  7. config SYS_VENDOR
  8. default "thead"
  9. config SYS_BOARD
  10. default "anole-c860"
  11. config SYS_CONFIG_NAME
  12. string "Board configuration name"
  13. default "anole-c860"
  14. help
  15. This option contains information about board configuration name.
  16. Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
  17. will be used for board configuration.
  18. config SYS_TEXT_BASE
  19. default 0x17800000
  20. config SPL_TEXT_BASE
  21. default 0xfe410000
  22. config BOARD_SPECIFIC_OPTIONS
  23. def_bool y
  24. select C860_CSKY
  25. imply CMD_DHCP
  26. imply CMD_EXT2
  27. imply CMD_EXT4
  28. imply CMD_FAT
  29. imply CMD_FS_GENERIC
  30. imply CMD_NET
  31. imply CMD_PING
  32. imply CMD_TFTPPUT
  33. imply CMD_TFTPSRV
  34. imply CMD_BOOT_SLAVE
  35. imply NET_RANDOM_ETHADDR
  36. imply NETDEVICES
  37. imply ETH_DESIGNWARE
  38. imply MMC
  39. imply CMD_MMC
  40. imply DOS_PARTITION
  41. imply EFI_PARTITION
  42. imply IP_DYN
  43. imply ISO_PARTITION
  44. imply MACB
  45. imply MII
  46. imply PHY_LIB
  47. imply PHY_MSCC
  48. imply SPI
  49. config SYS_ANOLE_DDR4
  50. bool "DDR4 support for Anole Board"
  51. default n
  52. help
  53. This enables DDR4 sdram code support for the platforms based
  54. on Anole EVB.
  55. endif