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)
50 lines
984 B
Plaintext
50 lines
984 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Author: Anthoine Bourgeois <anthoine.bourgeois@gmail.com>
|
|
*/
|
|
/dts-v1/;
|
|
|
|
#include "omap3-devkit8000-common.dtsi"
|
|
/ {
|
|
model = "TimLL OMAP3 Devkit8000";
|
|
compatible = "timll,omap3-devkit8000", "ti,omap3430", "ti,omap3";
|
|
|
|
aliases {
|
|
display1 = &dvi0;
|
|
display2 = &tv0;
|
|
};
|
|
};
|
|
|
|
/* Unusable as clocksource because of unreliable oscillator */
|
|
&counter32k {
|
|
status = "disabled";
|
|
};
|
|
|
|
/* Unusable as clockevent because if unreliable oscillator, allow to idle */
|
|
&timer1_target {
|
|
/delete-property/ti,no-reset-on-init;
|
|
/delete-property/ti,no-idle;
|
|
timer@0 {
|
|
/delete-property/ti,timer-alwon;
|
|
};
|
|
};
|
|
|
|
/* Preferred always-on timer for clocksource */
|
|
&timer12_target {
|
|
ti,no-reset-on-init;
|
|
ti,no-idle;
|
|
timer@0 {
|
|
/* Always clocked by secure_32k_fck */
|
|
};
|
|
};
|
|
|
|
/* Preferred timer for clockevent */
|
|
&timer2_target {
|
|
ti,no-reset-on-init;
|
|
ti,no-idle;
|
|
timer@0 {
|
|
assigned-clocks = <&gpt2_fck>;
|
|
assigned-clock-parents = <&sys_ck>;
|
|
};
|
|
};
|