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)
71 lines
1.1 KiB
Plaintext
71 lines
1.1 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/*
|
|
* Copyright (C) 2017 Hamster Tian <haotia@gmail.com>
|
|
* Copyright (C) 2019 Hao Dong <halbertdong@gmail.com>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "bcm47094.dtsi"
|
|
#include "bcm5301x-nand-cs0-bch4.dtsi"
|
|
|
|
/ {
|
|
compatible = "phicomm,k3", "brcm,bcm47094", "brcm,bcm4708";
|
|
model = "Phicomm K3";
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
reg = <0x00000000 0x08000000>,
|
|
<0x88000000 0x18000000>;
|
|
};
|
|
|
|
gpio-keys {
|
|
compatible = "gpio-keys";
|
|
|
|
restart {
|
|
label = "Reset";
|
|
linux,code = <KEY_RESTART>;
|
|
gpios = <&chipcommon 17 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&uart1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&usb3_phy {
|
|
status = "okay";
|
|
};
|
|
|
|
&nandcs {
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
partition@0 {
|
|
label = "boot";
|
|
reg = <0x0000000 0x0080000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@80000 {
|
|
label = "nvram";
|
|
reg = <0x0080000 0x0100000>;
|
|
};
|
|
|
|
partition@180000{
|
|
label = "phicomm";
|
|
reg = <0x0180000 0x0280000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@400000 {
|
|
label = "firmware";
|
|
reg = <0x0400000 0x7C00000>;
|
|
compatible = "brcm,trx";
|
|
};
|
|
};
|
|
};
|