The Elimo Engineering Initium is an Open Source Hardware Single Board Computer based on the Elimo Impetus SoM. It is meant as the first development platform for the Impetus, providing convenient access to the peripherals on the Impetus. It provides: USB-C power input UART-to-USB bridge on the USB-C connector, connected to UART1 USB-A connector for USB2.0 (Host, Device, OTG) Audio Line In/Out Pin header to access all signals on the M2 connector of the SoM Signed-off-by: Matteo Scordino <matteo.scordino@gmail.com> Signed-off-by: Maxime Ripard <maxime@cerno.tech> Link: https://lore.kernel.org/r/20201105183231.12952-4-matteo.scordino@gmail.com
30 lines
488 B
Plaintext
30 lines
488 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (C) 2020 Matteo Scordino <matteo@elimo.io>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "sun8i-s3-elimo-impetus.dtsi"
|
|
|
|
/ {
|
|
model = "Elimo Initium";
|
|
compatible = "elimo,initium", "elimo,impetus", "sochip,s3",
|
|
"allwinner,sun8i-v3";
|
|
|
|
aliases {
|
|
serial1 = &uart1;
|
|
};
|
|
};
|
|
|
|
&uart1 {
|
|
pinctrl-0 = <&uart1_pg_pins>;
|
|
pinctrl-names = "default";
|
|
status = "okay";
|
|
};
|
|
|
|
&emac {
|
|
phy-handle = <&int_mii_phy>;
|
|
phy-mode = "mii";
|
|
status = "okay";
|
|
};
|