This series is doing a basic bringup of the MediaTek Genio 360 Evaluation Kit board. This contains a new application processor (MT8366) that hasn't been seen in U-Boot yet, so basic support for that is added as well. Clock, pinctrl, net, phy, spi, power drivers to add support for any missing compatibles were sent as standalone patches.
There isn't an upstream devicetree at this point, so most of this is picking up the downstream devicetree along with a little init code and a defconfig. This has been tested on Genio 360 EVK booting to eMMC, microSD card, and USB storage and booting from eMMC and SPI NOR flash as well as testing that networking is working. Signed-off-by: David Lechner <[email protected]> --- Changes in v2: - Updated devicetrees to align better with know similar upstream bindings. - Added nodes for mm1, pmic/pwrap, snor. - Added more options in defconfig to enable gpios, regulators, phy, net, snor, usb. - Dropped clock dt-binding header patch (will merge the one from v1 with the clock driver patch if we don't need a v2 of the clock driver patch). - Dropped the pinctrl dt-binding header patch (will send with pinctrl driver patch v2 instead). - Link to v1: https://patch.msgid.link/[email protected] --- Chris Chen (1): arm: mediatek: add MT8366 application processor Macpaul Lin (3): arm: dts: add MT8366 application processor arm: dts: mediatek: add Genio 360 EVK board: mediatek: add Genio 360 EVK defconfig arch/arm/dts/Makefile | 1 + arch/arm/dts/mt8366-genio-360-evk-common.dtsi | 564 +++++++++++++++++++++ arch/arm/dts/mt8366-genio-360-evk.dts | 14 + arch/arm/dts/mt8366.dtsi | 698 ++++++++++++++++++++++++++ arch/arm/mach-mediatek/Kconfig | 12 +- arch/arm/mach-mediatek/Makefile | 1 + arch/arm/mach-mediatek/cpu.c | 3 +- arch/arm/mach-mediatek/mt8366/Makefile | 3 + arch/arm/mach-mediatek/mt8366/init.c | 58 +++ board/mediatek/MAINTAINERS | 8 + configs/mt8366_genio_360_evk_defconfig | 59 +++ 11 files changed, 1419 insertions(+), 2 deletions(-) --- base-commit: 97fdb6113084797d6e5640fc7c60f4349460fb5e change-id: 20260729-mtk-genio-360-bringup-de3bedc2ec94 Best regards, -- David Lechner <[email protected]>
