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)
62 lines
1.1 KiB
Plaintext
62 lines
1.1 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-only
|
|
// Definitions for Raspberry Pi video decode engine
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
|
|
/{
|
|
compatible = "brcm,bcm2711";
|
|
|
|
fragment@0 {
|
|
target = <&scb>;
|
|
__overlay__ {
|
|
/* needed to avoid dtc warning */
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
|
|
codec@7eb10000 {
|
|
compatible = "raspberrypi,rpivid-vid-decoder";
|
|
reg = <0x0 0x7eb10000 0x0 0x1000>, /* INTC */
|
|
<0x0 0x7eb00000 0x0 0x10000>; /* HEVC */
|
|
reg-names = "intc",
|
|
"hevc";
|
|
|
|
interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
|
clocks = <&hevc_clk>;
|
|
clock-names = "hevc";
|
|
};
|
|
};
|
|
};
|
|
|
|
fragment@1 {
|
|
target = <&scb>;
|
|
__overlay__ {
|
|
hevc-decoder@7eb00000 {
|
|
status = "disabled";
|
|
};
|
|
rpivid-local-intc@7eb10000 {
|
|
status = "disabled";
|
|
};
|
|
h264-decoder@7eb20000 {
|
|
status = "disabled";
|
|
};
|
|
vp9-decoder@7eb30000 {
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|
|
|
|
fragment@2 {
|
|
target-path = "/";
|
|
__overlay__ {
|
|
hevc_clk: hevc_clk {
|
|
compatible = "fixed-clock";
|
|
#clock-cells = <0>;
|
|
clock-frequency = <500000000>;
|
|
};
|
|
};
|
|
};
|
|
};
|