blob: d2ada9774d8f44de1ffe2eb67035f0b1fdacd92e [file] [log] [blame]
Ryder Leecbd2fba2018-11-15 10:07:52 +08001if ARCH_MEDIATEK
2
3config SYS_SOC
4 default "mediatek"
5
6config SYS_VENDOR
7 default "mediatek"
8
9choice
10 prompt "MediaTek board select"
11
12config TARGET_MT7629
13 bool "MediaTek MT7629 SoC"
14 select CPU_V7A
15 select SPL
16 select ARCH_MISC_INIT
17 help
18 The MediaTek MT7629 is a ARM-based SoC with a dual-core Cortex-A7
19 including DDR3, crypto engine, 3x3 11n/ac Wi-Fi, Gigabit Ethernet,
20 switch, USB3.0, PCIe, UART, SPI, I2C and PWM.
21
22endchoice
23
24source "board/mediatek/mt7629/Kconfig"
25
26endif