Skip to content

Commit caa3c19

Browse files
fifteenhexarndb
authored andcommitted
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 <[email protected]> Signed-off-by: Arnd Bergmann <[email protected]>
1 parent 3e54698 commit caa3c19

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

arch/arm/boot/dts/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,6 +1342,9 @@ dtb-$(CONFIG_ARCH_MEDIATEK) += \
13421342
mt8127-moose.dtb \
13431343
mt8135-evbp1.dtb
13441344
dtb-$(CONFIG_ARCH_MILBEAUT) += milbeaut-m10v-evb.dtb
1345+
dtb-$(CONFIG_ARCH_MSTARV7) += \
1346+
infinity-msc313-breadbee_crust.dtb \
1347+
infinity3-msc313e-breadbee.dtb
13451348
dtb-$(CONFIG_ARCH_ZX) += zx296702-ad1.dtb
13461349
dtb-$(CONFIG_ARCH_ASPEED) += \
13471350
aspeed-ast2500-evb.dtb \
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
/*
3+
* Copyright (c) 2019 thingy.jp.
4+
* Author: Daniel Palmer <[email protected]>
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+
};
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
/*
3+
* Copyright (c) 2019 thingy.jp.
4+
* Author: Daniel Palmer <[email protected]>
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+
};

0 commit comments

Comments
 (0)