mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
bba8618c8e
Where possible, I have tried to find compatible drivers based on the layout of registers. However, many devices remain untested. All untested devices have been left disabled, but some tentative properties (such as compatible strings, and clocks, interrupts, and resets properties) have been added. Signed-off-by: Sean Anderson <seanga2@gmail.com>
47 lines
733 B
Text
47 lines
733 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2019-20 Sean Anderson <seanga2@gmail.com>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "k210.dtsi"
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
/ {
|
|
model = "Sipeed Maix Bit 2.0";
|
|
compatible = "sipeed,maix-bitm", "sipeed,maix-bit", "kendryte,k210";
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200";
|
|
};
|
|
|
|
sound {
|
|
compatible = "simple-audio-card";
|
|
simple-audio-card,format = "i2s";
|
|
status = "disabled";
|
|
|
|
simple-audio-card,cpu {
|
|
sound-dai = <&i2s0 0>;
|
|
};
|
|
|
|
simple-audio-card,codec {
|
|
sound-dai = <&mic>;
|
|
};
|
|
};
|
|
|
|
mic: mic {
|
|
#sound-dai-cells = <0>;
|
|
compatible = "memsensing,msm61s4030h0";
|
|
status = "disabled";
|
|
};
|
|
};
|
|
|
|
&uarths0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&i2s0 {
|
|
#sound-dai-cells = <1>;
|
|
};
|