mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 15:22:18 +00:00
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)
56 lines
1.0 KiB
Plaintext
56 lines
1.0 KiB
Plaintext
// Overlay for the Qualcomm Atheros QCA7000 on I2SE's PLC Stamp micro EVK
|
|
// Visit: https://www.i2se.com/product/plc-stamp-micro-evk for details
|
|
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/ {
|
|
compatible = "brcm,bcm2835";
|
|
|
|
fragment@0 {
|
|
target = <&spidev0>;
|
|
__overlay__ {
|
|
status = "disabled";
|
|
};
|
|
};
|
|
|
|
fragment@1 {
|
|
target = <&spi0>;
|
|
__overlay__ {
|
|
/* needed to avoid dtc warning */
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
status = "okay";
|
|
|
|
eth1: qca7000@0 {
|
|
compatible = "qca,qca7000";
|
|
reg = <0>; /* CE0 */
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <ð1_pins>;
|
|
interrupt-parent = <&gpio>;
|
|
interrupts = <23 0x1>; /* rising edge */
|
|
spi-max-frequency = <12000000>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
|
|
fragment@2 {
|
|
target = <&gpio>;
|
|
__overlay__ {
|
|
eth1_pins: eth1_pins {
|
|
brcm,pins = <23>;
|
|
brcm,function = <0>; /* in */
|
|
brcm,pull = <0>; /* none */
|
|
};
|
|
};
|
|
};
|
|
|
|
__overrides__ {
|
|
int_pin = <ð1>, "interrupts:0",
|
|
<ð1_pins>, "brcm,pins:0";
|
|
speed = <ð1>, "spi-max-frequency:0";
|
|
};
|
|
};
|