forked from Qortal/Brooklyn
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
39 lines
694 B
Plaintext
39 lines
694 B
Plaintext
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/ {
|
|
compatible = "brcm,bcm2835";
|
|
fragment@0 {
|
|
target-path = "/";
|
|
__overlay__ {
|
|
pps: pps@12 {
|
|
compatible = "pps-gpio";
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pps_pins>;
|
|
gpios = <&gpio 18 0>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
|
|
fragment@1 {
|
|
target = <&gpio>;
|
|
__overlay__ {
|
|
pps_pins: pps_pins@12 {
|
|
brcm,pins = <18>;
|
|
brcm,function = <0>; // in
|
|
brcm,pull = <0>; // off
|
|
};
|
|
};
|
|
};
|
|
|
|
__overrides__ {
|
|
gpiopin = <&pps>,"gpios:4",
|
|
<&pps>,"reg:0",
|
|
<&pps_pins>,"brcm,pins:0",
|
|
<&pps_pins>,"reg:0";
|
|
assert_falling_edge = <&pps>,"assert-falling-edge?";
|
|
capture_clear = <&pps>,"capture-clear?";
|
|
};
|
|
};
|