8367611892
The BreadBee and the BreadBee Crust are the same PCB with a different SoC mounted. There are two top level dts to handle this. To avoid deduplicating the parts that are more related to the PCB than the SoC (i.e. the voltage regs and LEDs) add a common dtsi that can be included in both top level dts. Signed-off-by: Daniel Palmer <daniel@0x0f.com> Link: https://lore.kernel.org/r/20201224020354.2212037-1-daniel@0x0f.com' Signed-off-by: Arnd Bergmann <arnd@arndb.de>
27 lines
432 B
Plaintext
27 lines
432 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2019 thingy.jp.
|
|
* Author: Daniel Palmer <daniel@thingy.jp>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "mstar-infinity-msc313.dtsi"
|
|
#include "mstar-infinity-breadbee-common.dtsi"
|
|
|
|
/ {
|
|
model = "BreadBee Crust";
|
|
compatible = "thingyjp,breadbee-crust", "mstar,infinity";
|
|
|
|
aliases {
|
|
serial0 = &pm_uart;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
};
|
|
|
|
&pm_uart {
|
|
status = "okay";
|
|
};
|