Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 1 | if ARCH_MEDIATEK |
| 2 | |
| 3 | config SYS_SOC |
| 4 | default "mediatek" |
| 5 | |
| 6 | config SYS_VENDOR |
| 7 | default "mediatek" |
| 8 | |
mingming lee | 953bb4c | 2019-12-31 11:29:19 +0800 | [diff] [blame^] | 9 | config MT8512 |
| 10 | bool "MediaTek MT8512 SoC" |
| 11 | default n |
| 12 | |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 13 | choice |
| 14 | prompt "MediaTek board select" |
| 15 | |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 16 | config TARGET_MT7623 |
| 17 | bool "MediaTek MT7623 SoC" |
| 18 | select CPU_V7A |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 19 | help |
| 20 | The MediaTek MT7623 is a ARM-based SoC with a quad-core Cortex-A7 |
| 21 | including NEON and GPU, Mali-450 graphics, several DDR3 options, |
| 22 | crypto engine, built-in Wi-Fi / Bluetooth combo chip, JPEG decoder, |
| 23 | video interfaces supporting HDMI and MIPI, and video codec support. |
| 24 | Peripherals include Gigabit Ethernet, switch, USB3.0 and OTG, PCIe, |
| 25 | I2S, PCM, S/PDIF, UART, SPI, I2C, IR TX/RX, and PWM. |
| 26 | |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 27 | config TARGET_MT7629 |
| 28 | bool "MediaTek MT7629 SoC" |
| 29 | select CPU_V7A |
| 30 | select SPL |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 31 | help |
| 32 | The MediaTek MT7629 is a ARM-based SoC with a dual-core Cortex-A7 |
| 33 | including DDR3, crypto engine, 3x3 11n/ac Wi-Fi, Gigabit Ethernet, |
| 34 | switch, USB3.0, PCIe, UART, SPI, I2C and PWM. |
| 35 | |
mingming lee | 953bb4c | 2019-12-31 11:29:19 +0800 | [diff] [blame^] | 36 | config TARGET_MT8512 |
| 37 | bool "MediaTek MT8512 M1 Board" |
| 38 | select ARM64 |
| 39 | select MT8512 |
| 40 | help |
| 41 | The MediaTek MT8512 is a ARM64-based SoC with a quad-core Cortex-A53. |
| 42 | including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM, |
| 43 | Ethernet, IR TX/RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth combo |
| 44 | chip and several DDR3 and DDR4 options. |
| 45 | |
Fabien Parent | def2fc0 | 2019-03-24 16:46:38 +0100 | [diff] [blame] | 46 | config TARGET_MT8516 |
| 47 | bool "MediaTek MT8516 SoC" |
| 48 | select ARM64 |
Fabien Parent | def2fc0 | 2019-03-24 16:46:38 +0100 | [diff] [blame] | 49 | help |
| 50 | The MediaTek MT8516 is a ARM64-based SoC with a quad-core Cortex-A35. |
| 51 | including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM, |
| 52 | Ethernet, IR TX/RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth combo |
| 53 | chip and several DDR3 and DDR4 options. |
| 54 | |
mingming lee | 13e89d7 | 2019-11-07 19:28:40 +0800 | [diff] [blame] | 55 | config TARGET_MT8518 |
| 56 | bool "MediaTek MT8518 SoC" |
| 57 | select ARM64 |
| 58 | help |
| 59 | The MediaTek MT8518 is a ARM64-based SoC with a quad-core Cortex-A53. |
| 60 | including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM, |
| 61 | Ethernet, IR TX/RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth combo |
| 62 | chip and several DDR3 and DDR4 options. |
| 63 | |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 64 | endchoice |
| 65 | |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 66 | source "board/mediatek/mt7623/Kconfig" |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 67 | source "board/mediatek/mt7629/Kconfig" |
mingming lee | 953bb4c | 2019-12-31 11:29:19 +0800 | [diff] [blame^] | 68 | source "board/mediatek/mt8512/Kconfig" |
mingming lee | abf2c68 | 2019-11-07 19:28:44 +0800 | [diff] [blame] | 69 | source "board/mediatek/mt8518/Kconfig" |
Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 70 | source "board/mediatek/pumpkin/Kconfig" |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 71 | |
| 72 | endif |