mirror of
https://github.com/andreili/SBC_builder.git
synced 2025-08-24 03:14:06 +02:00
37 lines
598 B
Plaintext
37 lines
598 B
Plaintext
/dts-v1/;
|
|
/plugin/;
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
#include <dt-bindings/input/input.h>
|
|
#include <dt-bindings/pinctrl/rockchip.h>
|
|
|
|
/**
|
|
* Generic rk3318 board with base common configuration.
|
|
* Some boards with this configuration have signature: RK3318_V1.x
|
|
*/
|
|
|
|
&gpio_led {
|
|
|
|
working {
|
|
gpios = <&gpio2 RK_PC7 GPIO_ACTIVE_HIGH>;
|
|
linux,default-trigger = "mmc2";
|
|
};
|
|
|
|
};
|
|
|
|
/*
|
|
* TODO: needs to find the GPIO for this
|
|
*
|
|
&gpio_keys {
|
|
|
|
reset {
|
|
gpios = <&gpio3 RK_PD1 GPIO_ACTIVE_LOW>;
|
|
label = "reset";
|
|
linux,code = <KEY_RESTART>;
|
|
debounce-interval = <200>;
|
|
wakeup-source;
|
|
};
|
|
|
|
};
|
|
*/
|