blob: 82fadeba8afc53bb35326ade73f9410098f5a936 [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
mingming lee953bb4c2019-12-31 11:29:19 +08009config MT8512
10 bool "MediaTek MT8512 SoC"
mingming lee953bb4c2019-12-31 11:29:19 +080011
Ryder Leecbd2fba2018-11-15 10:07:52 +080012choice
13 prompt "MediaTek board select"
14
Sam Shihac57e2b2020-01-10 16:30:26 +080015config TARGET_MT7622
16 bool "MediaTek MT7622 SoC"
17 select ARM64
18 help
19 The MediaTek MT7622 is a ARM64-based SoC with a dual-core Cortex-A53.
20 including UART, SPI, USB3.0, SD and MMC cards, NAND, SNFI, PWM, PCIe,
21 Gigabit Ethernet, I2C, built-in Wi-Fi, and PCIe.
22
Weijie Gao361e13f2018-11-15 10:07:53 +080023config TARGET_MT7623
24 bool "MediaTek MT7623 SoC"
25 select CPU_V7A
Weijie Gao361e13f2018-11-15 10:07:53 +080026 help
27 The MediaTek MT7623 is a ARM-based SoC with a quad-core Cortex-A7
28 including NEON and GPU, Mali-450 graphics, several DDR3 options,
29 crypto engine, built-in Wi-Fi / Bluetooth combo chip, JPEG decoder,
30 video interfaces supporting HDMI and MIPI, and video codec support.
31 Peripherals include Gigabit Ethernet, switch, USB3.0 and OTG, PCIe,
32 I2S, PCM, S/PDIF, UART, SPI, I2C, IR TX/RX, and PWM.
33
Ryder Leecbd2fba2018-11-15 10:07:52 +080034config TARGET_MT7629
35 bool "MediaTek MT7629 SoC"
36 select CPU_V7A
37 select SPL
Ryder Leecbd2fba2018-11-15 10:07:52 +080038 help
39 The MediaTek MT7629 is a ARM-based SoC with a dual-core Cortex-A7
40 including DDR3, crypto engine, 3x3 11n/ac Wi-Fi, Gigabit Ethernet,
41 switch, USB3.0, PCIe, UART, SPI, I2C and PWM.
42
Weijie Gao10c62332022-09-09 19:59:09 +080043config TARGET_MT7986
44 bool "MediaTek MT7986 SoC"
45 select ARM64
46 select CPU
47 help
48 The MediaTek MT7986 is a ARM64-based SoC with a quad-core Cortex-A53.
49 including UART, SPI, SPI flash, USB3.0, MMC, NAND, SNFI, PWM, PCIe,
50 Gigabit Ethernet, I2C, built-in 4x4 Wi-Fi, and PCIe.
51
Fabien Parent18380432021-02-15 19:21:11 +010052config TARGET_MT8183
53 bool "MediaTek MT8183 SoC"
54 select ARM64
55 help
56 The MediaTek MT8183 is a ARM64-based SoC with a quad-core Cortex-A73 and
57 a quad-core Cortex-A53. It is including UART, SPI, USB3.0 dual role,
58 SD and MMC cards, UFS, PWM, I2C, I2S, S/PDIF, and several LPDDR3
59 and LPDDR4 options.
60
mingming lee953bb4c2019-12-31 11:29:19 +080061config TARGET_MT8512
62 bool "MediaTek MT8512 M1 Board"
63 select ARM64
64 select MT8512
65 help
Mingming Lee75fb7b92020-09-04 13:35:22 +080066 The MediaTek MT8512 is a ARM64-based SoC with a dual-core Cortex-A53.
mingming lee953bb4c2019-12-31 11:29:19 +080067 including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM,
Mingming Lee75fb7b92020-09-04 13:35:22 +080068 IR RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth digital
69 and several LPDDR3 and LPDDR4 options.
mingming lee953bb4c2019-12-31 11:29:19 +080070
Fabien Parentdef2fc02019-03-24 16:46:38 +010071config TARGET_MT8516
72 bool "MediaTek MT8516 SoC"
73 select ARM64
Fabien Parentdef2fc02019-03-24 16:46:38 +010074 help
75 The MediaTek MT8516 is a ARM64-based SoC with a quad-core Cortex-A35.
76 including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM,
77 Ethernet, IR TX/RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth combo
78 chip and several DDR3 and DDR4 options.
79
mingming lee13e89d72019-11-07 19:28:40 +080080config TARGET_MT8518
81 bool "MediaTek MT8518 SoC"
82 select ARM64
83 help
84 The MediaTek MT8518 is a ARM64-based SoC with a quad-core Cortex-A53.
85 including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM,
86 Ethernet, IR TX/RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth combo
87 chip and several DDR3 and DDR4 options.
88
Ryder Leecbd2fba2018-11-15 10:07:52 +080089endchoice
90
Guillaume La Roquedf3ab892021-09-10 10:21:06 +020091config SYS_BOARD
92 string "Board name"
93 default "mt7622" if TARGET_MT7622
94 default "mt7623" if TARGET_MT7623
95 default "mt7629" if TARGET_MT7629
Weijie Gao10c62332022-09-09 19:59:09 +080096 default "mt7986" if TARGET_MT7986
Guillaume La Roquedf3ab892021-09-10 10:21:06 +020097 default "mt8183" if TARGET_MT8183
98 default "mt8512" if TARGET_MT8512
99 default "mt8516" if TARGET_MT8516
100 default "mt8518" if TARGET_MT8518
101 default ""
102 help
103 This option contains information about board name.
104 Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> will
105 be used.
106
107config SYS_CONFIG_NAME
108 string "Board configuration name"
109 default "mt7622" if TARGET_MT7622
110 default "mt7623" if TARGET_MT7623
111 default "mt7629" if TARGET_MT7629
Weijie Gao10c62332022-09-09 19:59:09 +0800112 default "mt7986" if TARGET_MT7986
Guillaume La Roquedf3ab892021-09-10 10:21:06 +0200113 default "mt8183" if TARGET_MT8183
114 default "mt8512" if TARGET_MT8512
115 default "mt8516" if TARGET_MT8516
116 default "mt8518" if TARGET_MT8518
117 default ""
118 help
119 This option contains information about board configuration name.
120 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
121 will be used for board configuration.
122
123config MTK_BROM_HEADER_INFO
124 string
125 default "media=nor" if TARGET_MT8518 || TARGET_MT8512 || TARGET_MT7629 || TARGET_MT7622
126 default "media=emmc" if TARGET_MT8516 || TARGET_MT8365 || TARGET_MT8183
Weijie Gao10c62332022-09-09 19:59:09 +0800127 default "media=snand;nandinfo=2k+64" if TARGET_MT7986
Guillaume La Roquedf3ab892021-09-10 10:21:06 +0200128 default "lk=1" if TARGET_MT7623
Ryder Leecbd2fba2018-11-15 10:07:52 +0800129
130endif