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)
106 lines
1.9 KiB
Plaintext
106 lines
1.9 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-only
|
|
// Definitions for OV7251 camera module on VC I2C bus
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
/{
|
|
compatible = "brcm,bcm2835";
|
|
|
|
fragment@0 {
|
|
target = <&i2c_csi_dsi>;
|
|
__overlay__ {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
status = "okay";
|
|
|
|
ov7251: ov7251@60 {
|
|
compatible = "ovti,ov7251";
|
|
reg = <0x60>;
|
|
status = "okay";
|
|
|
|
clocks = <&ov7251_clk>;
|
|
clock-names = "xclk";
|
|
clock-frequency = <24000000>;
|
|
|
|
vdddo-supply = <&ov7251_dovdd>;
|
|
vdda-supply = <&cam1_reg>;
|
|
vddd-supply = <&ov7251_dvdd>;
|
|
|
|
port {
|
|
ov7251_0: endpoint {
|
|
remote-endpoint = <&csi1_ep>;
|
|
clock-lanes = <0>;
|
|
data-lanes = <1>;
|
|
clock-noncontinuous;
|
|
link-frequencies =
|
|
/bits/ 64 <456000000>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
fragment@1 {
|
|
target = <&csi1>;
|
|
__overlay__ {
|
|
status = "okay";
|
|
|
|
port {
|
|
csi1_ep: endpoint {
|
|
remote-endpoint = <&ov7251_0>;
|
|
data-lanes = <1>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
fragment@2 {
|
|
target = <&i2c0if>;
|
|
__overlay__ {
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
fragment@3 {
|
|
target-path="/";
|
|
__overlay__ {
|
|
ov7251_dovdd: fixedregulator@1 {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "ov7251_dovdd";
|
|
regulator-min-microvolt = <1800000>;
|
|
regulator-max-microvolt = <1800000>;
|
|
};
|
|
ov7251_dvdd: fixedregulator@2 {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "ov7251_dvdd";
|
|
regulator-min-microvolt = <1200000>;
|
|
regulator-max-microvolt = <1200000>;
|
|
};
|
|
ov7251_clk: ov7251-clk {
|
|
compatible = "fixed-clock";
|
|
#clock-cells = <0>;
|
|
clock-frequency = <24000000>;
|
|
};
|
|
};
|
|
};
|
|
|
|
fragment@4 {
|
|
target = <&i2c0mux>;
|
|
__overlay__ {
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
fragment@5 {
|
|
target = <&cam1_reg>;
|
|
__overlay__ {
|
|
status = "okay";
|
|
regulator-name = "ov7251_avdd";
|
|
regulator-min-microvolt = <2800000>;
|
|
regulator-max-microvolt = <2800000>;
|
|
};
|
|
};
|
|
};
|