mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
34 lines
621 B
Text
34 lines
621 B
Text
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||
|
/*
|
||
|
* Copyright (c) 2023 Christian Hewitt <christianshewitt@gmail.com>
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
#include "meson-g12b-a311d.dtsi"
|
||
|
#include "meson-g12b-bananapi.dtsi"
|
||
|
|
||
|
/ {
|
||
|
compatible = "bananapi,bpi-m2s", "amlogic,a311d", "amlogic,g12b";
|
||
|
model = "BananaPi M2S";
|
||
|
|
||
|
aliases {
|
||
|
i2c0 = &i2c1;
|
||
|
i2c1 = &i2c3;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
/* Camera (CSI) bus */
|
||
|
&i2c1 {
|
||
|
status = "okay";
|
||
|
pinctrl-0 = <&i2c1_sda_h6_pins>, <&i2c1_sck_h7_pins>;
|
||
|
pinctrl-names = "default";
|
||
|
};
|
||
|
|
||
|
/* Display (DSI) bus */
|
||
|
&i2c3 {
|
||
|
status = "okay";
|
||
|
pinctrl-0 = <&i2c3_sda_a_pins>, <&i2c3_sck_a_pins>;
|
||
|
pinctrl-names = "default";
|
||
|
};
|