Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: mstar: Add dts for msc313(e) based BreadBee boards

BreadBee is an opensource development board based on the
MStar msc313(e) SoC.

Hardware details, schematics and so on can be found at:
https://github.com/breadbee/breadbee

Signed-off-by: Daniel Palmer <daniel@0x0f.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

authored by

Daniel Palmer and committed by
Arnd Bergmann
caa3c193 3e54698c

+53
+3
arch/arm/boot/dts/Makefile
··· 1342 1342 mt8127-moose.dtb \ 1343 1343 mt8135-evbp1.dtb 1344 1344 dtb-$(CONFIG_ARCH_MILBEAUT) += milbeaut-m10v-evb.dtb 1345 + dtb-$(CONFIG_ARCH_MSTARV7) += \ 1346 + infinity-msc313-breadbee_crust.dtb \ 1347 + infinity3-msc313e-breadbee.dtb 1345 1348 dtb-$(CONFIG_ARCH_ZX) += zx296702-ad1.dtb 1346 1349 dtb-$(CONFIG_ARCH_ASPEED) += \ 1347 1350 aspeed-ast2500-evb.dtb \
+25
arch/arm/boot/dts/infinity-msc313-breadbee_crust.dts
··· 1 + // SPDX-License-Identifier: GPL-2.0 2 + /* 3 + * Copyright (c) 2019 thingy.jp. 4 + * Author: Daniel Palmer <daniel@thingy.jp> 5 + */ 6 + 7 + /dts-v1/; 8 + #include "infinity-msc313.dtsi" 9 + 10 + / { 11 + model = "BreadBee Crust"; 12 + compatible = "thingyjp,breadbee-crust", "mstar,infinity"; 13 + 14 + aliases { 15 + serial0 = &pm_uart; 16 + }; 17 + 18 + chosen { 19 + stdout-path = "serial0:115200n8"; 20 + }; 21 + }; 22 + 23 + &pm_uart { 24 + status = "okay"; 25 + };
+25
arch/arm/boot/dts/infinity3-msc313e-breadbee.dts
··· 1 + // SPDX-License-Identifier: GPL-2.0 2 + /* 3 + * Copyright (c) 2019 thingy.jp. 4 + * Author: Daniel Palmer <daniel@thingy.jp> 5 + */ 6 + 7 + /dts-v1/; 8 + #include "infinity3-msc313e.dtsi" 9 + 10 + / { 11 + model = "BreadBee"; 12 + compatible = "thingyjp,breadbee", "mstar,infinity3"; 13 + 14 + aliases { 15 + serial0 = &pm_uart; 16 + }; 17 + 18 + chosen { 19 + stdout-path = "serial0:115200n8"; 20 + }; 21 + }; 22 + 23 + &pm_uart { 24 + status = "okay"; 25 + };