mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
fb72c03e0e
This patch adds a specific wetek dtsi to handle the specific Hub and Play2 boards by no more depending on the p20x dtsi. This simplifies the hub and play2 dts and will avoid breaking these boards when adding p200 and p201 specific changes. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
57 lines
977 B
Plaintext
57 lines
977 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (c) 2016 BayLibre, Inc.
|
|
* Author: Neil Armstrong <narmstrong@baylibre.com>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "meson-gxbb-wetek.dtsi"
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
/ {
|
|
compatible = "wetek,play2", "amlogic,meson-gxbb";
|
|
model = "WeTek Play 2";
|
|
|
|
leds {
|
|
wifi {
|
|
label = "wetek-play:wifi-status";
|
|
gpios = <&gpio GPIODV_26 GPIO_ACTIVE_HIGH>;
|
|
default-state = "off";
|
|
};
|
|
|
|
ethernet {
|
|
label = "wetek-play:ethernet-status";
|
|
gpios = <&gpio GPIODV_27 GPIO_ACTIVE_HIGH>;
|
|
default-state = "off";
|
|
};
|
|
};
|
|
|
|
gpio-keys-polled {
|
|
compatible = "gpio-keys-polled";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
poll-interval = <100>;
|
|
|
|
button@0 {
|
|
label = "reset";
|
|
linux,code = <KEY_RESTART>;
|
|
gpios = <&gpio_ao GPIOAO_3 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&i2c_A {
|
|
status = "okay";
|
|
pinctrl-0 = <&i2c_a_pins>;
|
|
pinctrl-names = "default";
|
|
};
|
|
|
|
&usb1_phy {
|
|
status = "okay";
|
|
};
|
|
|
|
&usb1 {
|
|
status = "okay";
|
|
};
|