blob: 04aa2fd97f807abbf2beca55c946c8e0420faf70 [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 Gaoed86e4f2022-09-09 19:59:11 +080043config TARGET_MT7981
44 bool "MediaTek MT7981 SoC"
45 select ARM64
46 select CPU
47 help
48 The MediaTek MT7981 is a ARM64-based SoC with a dual-core Cortex-A53.
49 including UART, SPI, USB, NAND, SNFI, PWM, Gigabit Ethernet, I2C,
50 built-in Wi-Fi, and PCIe.
51
Weijie Gao10c62332022-09-09 19:59:09 +080052config TARGET_MT7986
53 bool "MediaTek MT7986 SoC"
54 select ARM64
55 select CPU
56 help
57 The MediaTek MT7986 is a ARM64-based SoC with a quad-core Cortex-A53.
58 including UART, SPI, SPI flash, USB3.0, MMC, NAND, SNFI, PWM, PCIe,
59 Gigabit Ethernet, I2C, built-in 4x4 Wi-Fi, and PCIe.
60
Fabien Parent18380432021-02-15 19:21:11 +010061config TARGET_MT8183
62 bool "MediaTek MT8183 SoC"
63 select ARM64
64 help
65 The MediaTek MT8183 is a ARM64-based SoC with a quad-core Cortex-A73 and
66 a quad-core Cortex-A53. It is including UART, SPI, USB3.0 dual role,
67 SD and MMC cards, UFS, PWM, I2C, I2S, S/PDIF, and several LPDDR3
68 and LPDDR4 options.
69
mingming lee953bb4c2019-12-31 11:29:19 +080070config TARGET_MT8512
71 bool "MediaTek MT8512 M1 Board"
72 select ARM64
73 select MT8512
74 help
Mingming Lee75fb7b92020-09-04 13:35:22 +080075 The MediaTek MT8512 is a ARM64-based SoC with a dual-core Cortex-A53.
mingming lee953bb4c2019-12-31 11:29:19 +080076 including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM,
Mingming Lee75fb7b92020-09-04 13:35:22 +080077 IR RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth digital
78 and several LPDDR3 and LPDDR4 options.
mingming lee953bb4c2019-12-31 11:29:19 +080079
Fabien Parentdef2fc02019-03-24 16:46:38 +010080config TARGET_MT8516
81 bool "MediaTek MT8516 SoC"
82 select ARM64
Fabien Parentdef2fc02019-03-24 16:46:38 +010083 help
84 The MediaTek MT8516 is a ARM64-based SoC with a quad-core Cortex-A35.
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
mingming lee13e89d72019-11-07 19:28:40 +080089config TARGET_MT8518
90 bool "MediaTek MT8518 SoC"
91 select ARM64
92 help
93 The MediaTek MT8518 is a ARM64-based SoC with a quad-core Cortex-A53.
94 including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM,
95 Ethernet, IR TX/RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth combo
96 chip and several DDR3 and DDR4 options.
97
Ryder Leecbd2fba2018-11-15 10:07:52 +080098endchoice
99
Guillaume La Roquedf3ab892021-09-10 10:21:06 +0200100config SYS_BOARD
101 string "Board name"
102 default "mt7622" if TARGET_MT7622
103 default "mt7623" if TARGET_MT7623
104 default "mt7629" if TARGET_MT7629
Weijie Gaoed86e4f2022-09-09 19:59:11 +0800105 default "mt7981" if TARGET_MT7981
Weijie Gao10c62332022-09-09 19:59:09 +0800106 default "mt7986" if TARGET_MT7986
Guillaume La Roquedf3ab892021-09-10 10:21:06 +0200107 default "mt8183" if TARGET_MT8183
108 default "mt8512" if TARGET_MT8512
109 default "mt8516" if TARGET_MT8516
110 default "mt8518" if TARGET_MT8518
111 default ""
112 help
113 This option contains information about board name.
114 Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> will
115 be used.
116
117config SYS_CONFIG_NAME
118 string "Board configuration name"
119 default "mt7622" if TARGET_MT7622
120 default "mt7623" if TARGET_MT7623
121 default "mt7629" if TARGET_MT7629
Weijie Gaoed86e4f2022-09-09 19:59:11 +0800122 default "mt7981" if TARGET_MT7981
Weijie Gao10c62332022-09-09 19:59:09 +0800123 default "mt7986" if TARGET_MT7986
Guillaume La Roquedf3ab892021-09-10 10:21:06 +0200124 default "mt8183" if TARGET_MT8183
125 default "mt8512" if TARGET_MT8512
126 default "mt8516" if TARGET_MT8516
127 default "mt8518" if TARGET_MT8518
128 default ""
129 help
130 This option contains information about board configuration name.
131 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
132 will be used for board configuration.
133
134config MTK_BROM_HEADER_INFO
135 string
136 default "media=nor" if TARGET_MT8518 || TARGET_MT8512 || TARGET_MT7629 || TARGET_MT7622
137 default "media=emmc" if TARGET_MT8516 || TARGET_MT8365 || TARGET_MT8183
Weijie Gaoed86e4f2022-09-09 19:59:11 +0800138 default "media=snand;nandinfo=2k+64" if TARGET_MT7981 || TARGET_MT7986
Guillaume La Roquedf3ab892021-09-10 10:21:06 +0200139 default "lk=1" if TARGET_MT7623
Ryder Leecbd2fba2018-11-15 10:07:52 +0800140
141endif