Christian Marangi | c771b63 | 2025-03-14 19:59:21 +0100 | [diff] [blame] | 1 | if ARCH_AIROHA |
| 2 | |
| 3 | config SYS_VENDOR |
| 4 | default "airoha" |
| 5 | |
| 6 | choice |
| 7 | prompt "Airoha board select" |
| 8 | |
| 9 | config TARGET_AN7581 |
| 10 | bool "Airoha AN7581 SoC" |
| 11 | select ARM64 |
| 12 | help |
| 13 | The Airoha EN7581 is a ARM-based SoC with a quad-core Cortex-A7 |
| 14 | including NEON and GPU, Mali-450 graphics, several DDR3 options, |
| 15 | crypto engine, built-in Wi-Fi / Bluetooth combo chip, JPEG decoder, |
| 16 | video interfaces supporting HDMI and MIPI, and video codec support. |
| 17 | Peripherals include Gigabit Ethernet, switch, USB3.0 and OTG, PCIe, |
| 18 | I2S, PCM, S/PDIF, UART, SPI, I2C, IR TX/RX, and PWM. |
| 19 | |
| 20 | endchoice |
| 21 | |
| 22 | config SYS_SOC |
| 23 | default "an7581" if TARGET_AN7581 |
| 24 | |
| 25 | config SYS_BOARD |
| 26 | default "an7581" if TARGET_AN7581 |
| 27 | |
| 28 | config SYS_CONFIG_NAME |
| 29 | default "an7581" if TARGET_AN7581 |
| 30 | |
| 31 | endif |
| 32 | |