mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 23:03:06 +00:00
* NVME, SATA NAND Security added * Qortal Core exception fetcher is now redone. * Update DT overlays for firmware * Fix for bvb clockj settings * Fix for no audio for sissy desktop porn watchers -_- ( thanks crowetic for watching gay porn and reporting me that bug asshat ) * Normalize the fetch() stream while doing a peer to peer handshake for nodes * Fix for RNG token editing error while performing a SHA256 encryption * Now under voltage errors will blink red led constantly for 5 minutes then go solid. * Improve kernel thread scaling for Qortal 2.0 core * HDMI circuit is now enabled at power up instead. * Added KMS * Added line replication instead of interpolation for VC4 GPU resulting in slightly better frame rates * Fix for long and doubles * Backplane clock is now set at standard rate * Capped HVEC clocks * Add support for Creative Cinema webcam for donkers who like sharing dick pics. *looks at crowetic* * More scanline XGA modes for people who have weird ass monitors of all sorts. * TX/RX flow control support is now 100% stable. No lags over 1Gbps ethernet. ( Hello Qortal 3.0 ) * Using flush cache instead of fetch for QC 2.0 resulting in performance gains * VC4 clock is now enforced for desktop oriented images. * Ondemand governor now waits for 2 seconds instead of 0.5ms to scale down to the lowest safest clock freq preventing lags to the core. * Timeout of OC set at 35ms from 90ms resulting in way better clocks and sync for Qortal 2.0 core
84 lines
1.6 KiB
Plaintext
84 lines
1.6 KiB
Plaintext
/*
|
|
* adafruit-st7735r-overlay.dts
|
|
*
|
|
* ST7735R based SPI LCD displays. Either
|
|
* Adafruit 1.8" 160x128
|
|
* or
|
|
* Okaya 1.44" 128x128
|
|
*/
|
|
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
/ {
|
|
compatible = "brcm,bcm2835";
|
|
|
|
fragment@0 {
|
|
target = <&spidev0>;
|
|
__overlay__ {
|
|
status = "disabled";
|
|
};
|
|
};
|
|
|
|
fragment@1 {
|
|
target = <&gpio>;
|
|
__overlay__ {
|
|
adafruit_pins: adafruit_pins {
|
|
brcm,pins = <25 24>;
|
|
brcm,function = <1>; /* out */
|
|
};
|
|
backlight_pins: backlight_pins {
|
|
brcm,pins = <18>;
|
|
brcm,function = <1>; /* out */
|
|
};
|
|
};
|
|
};
|
|
|
|
fragment@2 {
|
|
target-path = "/";
|
|
__overlay__ {
|
|
af18_backlight: backlight {
|
|
compatible = "gpio-backlight";
|
|
gpios = <&gpio 18 GPIO_ACTIVE_HIGH>;
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&backlight_pins>;
|
|
};
|
|
};
|
|
};
|
|
|
|
fragment@3 {
|
|
target = <&spi0>;
|
|
__overlay__ {
|
|
/* needed to avoid dtc warning */
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
status = "okay";
|
|
|
|
af18: adafruit18@0 {
|
|
compatible = "jianda,jd-t18003-t01";
|
|
reg = <0>;
|
|
spi-max-frequency = <32000000>;
|
|
dc-gpios = <&gpio 24 GPIO_ACTIVE_HIGH>;
|
|
reset-gpios = <&gpio 25 GPIO_ACTIVE_HIGH>;
|
|
rotate = <90>;
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&adafruit_pins>;
|
|
backlight = <&af18_backlight>;
|
|
};
|
|
};
|
|
};
|
|
|
|
__overrides__ {
|
|
128x128 = <&af18>, "compatible=okaya,rh128128t";
|
|
speed = <&af18>,"spi-max-frequency:0";
|
|
rotate = <&af18>,"rotate:0";
|
|
dc_pin = <&af18>,"dc-gpios:4", <&adafruit_pins>,"brcm,pins:4";
|
|
reset_pin = <&af18>,"reset-gpios:4",
|
|
<&adafruit_pins>,"brcm,pins:0";
|
|
led_pin = <&af18_backlight>,"gpios:4",
|
|
<&backlight_pins>,"brcm,pins:0";
|
|
};
|
|
};
|