diff options
author | weichangzheng <nicholas_zheng@outlook.com> | 2022-03-02 15:09:05 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-10 13:57:04 -0500 |
commit | b9d0f00a9d3fc4b2ea9a1f3e41cae59c18396f1a (patch) | |
tree | 5295a74580666d2b9c9d268f17809e97de1879d2 /arch/arm/Kconfig | |
parent | 901ff692d17b8368ab29281b82c03660dca1a03b (diff) | |
download | u-boot-b9d0f00a9d3fc4b2ea9a1f3e41cae59c18396f1a.tar.gz |
arm: add initial support for the Phytium Pomelo Board
This adds platform code and the device tree for the Phytium Pomelo Board.
The initial support comprises the UART and the PCIE.
Signed-off-by: weichangzheng <nicholas_zheng@outlook.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index a6f2e7a100..403156bec9 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1986,6 +1986,25 @@ config TARGET_DURIAN Support for durian platform. It has 2GB Sdram, uart and pcie. +config TARGET_POMELO + bool "Support Phytium Pomelo Platform" + select ARM64 + select DM + select AHCI + select SCSI_AHCI + select AHCI_PCI + select BLK + select PCI + select DM_PCI + select SCSI + select DM_SCSI + select DM_SERIAL + select DM_ETH if NET + imply CMD_PCI + help + Support for pomelo platform. + It has 8GB Sdram, uart and pcie. + config TARGET_PRESIDIO_ASIC bool "Support Cortina Presidio ASIC Platform" select ARM64 @@ -2257,6 +2276,7 @@ source "board/traverse/ten64/Kconfig" source "board/variscite/dart_6ul/Kconfig" source "board/vscom/baltos/Kconfig" source "board/phytium/durian/Kconfig" +source "board/phytium/pomelo/Kconfig" source "board/xen/xenguest_arm64/Kconfig" source "board/keymile/Kconfig" |