mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 15:32:33 +00:00
f5919b65d4
Patch generation process: - rebase rpi/rpi-4.14.y on v4.14.89 from linux-stable - git format-patch v4.14.89 Patches skipped during rebase: - lan78xx: Read MAC address from DT if present - lan78xx: Enable LEDs and auto-negotiation - Revert "softirq: Let ksoftirqd do its job" - sc16is7xx: Fix for multi-channel stall - lan78xx: Ignore DT MAC address if already valid - lan78xx: Simple patch to prevent some crashes - tcp_write_queue_purge clears all the SKBs in the write queue - Revert "lan78xx: Simple patch to prevent some crashes" - lan78xx: Connect phy early - Arm: mm: ftrace: Only set text back to ro after kernel has been marked ro - Revert "Revert "softirq: Let ksoftirqd do its job"" - ASoC: cs4265: SOC_SINGLE register value error fix - Revert "ASoC: cs4265: SOC_SINGLE register value error fix" - Revert "net: pskb_trim_rcsum() and CHECKSUM_COMPLETE are friends" - Revert "Revert "net: pskb_trim_rcsum() and CHECKSUM_COMPLETE are friends"" Patches dropped after rebase: - net: Add non-mainline source for rtl8192cu wlan - net: Fix rtl8192cu build errors on other platforms - brcm: adds support for BCM43341 wifi - brcmfmac: Mute expected startup 'errors' - ARM64: Fix build break for RTL8187/RTL8192CU wifi - ARM64: Enable RTL8187/RTL8192CU wifi in build config - This is the driver for Sony CXD2880 DVB-T2/T tuner + demodulator - brcmfmac: add CLM download support - brcmfmac: request_firmware_direct is quieter - Sets the BCDC priority to constant 0 - brcmfmac: Disable ARP offloading when promiscuous - brcmfmac: Avoid possible out-of-bounds read - brcmfmac: Delete redundant length check - net: rtl8192cu: Normalize indentation - net: rtl8192cu: Fix implicit fallthrough warnings - Revert "Sets the BCDC priority to constant 0" - media: cxd2880: Bump to match 4.18.y version - media: cxd2880-spi: Bump to match 4.18.y version - Revert "mm: alloc_contig: re-allow CMA to compact FS pages" - Revert "Revert "mm: alloc_contig: re-allow CMA to compact FS pages"" - cxd2880: CXD2880_SPI_DRV should select DVB_CXD2880 with MEDIA_SUBDRV_AUTOSELECT - 950-0421-HID-hid-bigbenff-driver-for-BigBen-Interactive-PS3OF.patch - 950-0453-Add-hid-bigbenff-to-list-of-have_special_driver-for-.patch Make I2C built-in instead of modular as in upstream defconfig; also the easiest way to get MFD_ARIZONA enabled, which is required by kmod-sound-soc-rpi-cirrus. Add missing compatible strings from 4.9/960-add-rasbperrypi-compatible.patch, using upstream names for compute modules. Add extra patch to enable the LEDs on lan78xx. Compile-tested: bcm2708, bcm2709, bcm2710 (with CONFIG_ALL_KMODS=y) Runtime-tested: bcm2708, bcm2710 Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
73 lines
3.2 KiB
Diff
73 lines
3.2 KiB
Diff
From 4f420b1d3606ec5652dc8fe8092756158f652755 Mon Sep 17 00:00:00 2001
|
|
From: Paul <paulenuta@users.noreply.github.com>
|
|
Date: Thu, 11 Oct 2018 12:17:20 +0300
|
|
Subject: [PATCH 425/454] Update gpio-fan-overlay.dts (#2711)
|
|
|
|
Add references, links, clear details, some typo correction.
|
|
---
|
|
.../boot/dts/overlays/gpio-fan-overlay.dts | 36 +++++++++++--------
|
|
1 file changed, 22 insertions(+), 14 deletions(-)
|
|
|
|
--- a/arch/arm/boot/dts/overlays/gpio-fan-overlay.dts
|
|
+++ b/arch/arm/boot/dts/overlays/gpio-fan-overlay.dts
|
|
@@ -1,29 +1,37 @@
|
|
/*
|
|
* Overlay for the Raspberry Pi GPIO Fan @ BCM GPIO12.
|
|
+ * References:
|
|
+ * - https://www.raspberrypi.org/forums/viewtopic.php?f=107&p=1367135#p1365084
|
|
+ *
|
|
* Optional parameters:
|
|
- * - "gpiopin" - default GPIO12
|
|
- * - "temp" - default 55000
|
|
+ * - "gpiopin" - BCM number of the pin driving the fan, default 12 (GPIO12);
|
|
+ * - "temp" - CPU temperature at which fan is started in millicelsius, default 55000;
|
|
+ *
|
|
* Requires:
|
|
- * - kernel configurations: CONFIG_SENSORS_GPIO_FAN=m and CONFIG_SENSORS_PWM_FAN=m;
|
|
- * - kernel rebuid;
|
|
- * - DC Fan connected to GPIO via a N-MOSFET (2N7002)
|
|
+ * - kernel configurations: CONFIG_SENSORS_GPIO_FAN=m;
|
|
+ * - kernel rebuild;
|
|
+ * - N-MOSFET connected to gpiopin, 2N7002-[https://en.wikipedia.org/wiki/2N7000];
|
|
+ * - DC Fan connected to N-MOSFET Drain terminal, a 12V fan is working fine and quite silently;
|
|
+ * [https://www.tme.eu/en/details/ee40101s1-999-a/dc12v-fans/sunon/ee40101s1-1000u-999/]
|
|
*
|
|
* ┌─────────────────────┐
|
|
* │Fan negative terminal│
|
|
* └┬────────────────────┘
|
|
- * │
|
|
- * │──┘
|
|
+ * │D
|
|
+ * G │──┘
|
|
* [GPIO12]──────┤ │<─┐ 2N7002
|
|
* │──┤
|
|
- * │
|
|
+ * │S
|
|
* ─┴─
|
|
* GND
|
|
*
|
|
- * sudo dtc -W no-unit_address_vs_reg -@ -I dts -O dtb -o /boot/overlays/gpio-fan.dtbo gpio-fan.dts
|
|
- * sudo nano /boot/config.txt add "dtoverlay=gpio-fan" or "dtoverlay=gpio-fan,gpiopin=12,temp=45000"
|
|
- * or
|
|
- * sudo sh -c "echo '\n# Enable PI GPIO-Fan\ndtoverlay=gpio-fan\n' >> /boot/config.txt"
|
|
- * sudo sh -c "echo '\n# Enable PI GPIO-Fan\ndtoverlay=gpio-fan,gpiopin=12\n' >> /boot/config.txt"
|
|
+ * Build:
|
|
+ * - `sudo dtc -W no-unit_address_vs_reg -@ -I dts -O dtb -o /boot/overlays/gpio-fan.dtbo gpio-fan-overlay.dts`
|
|
+ * Activate:
|
|
+ * - sudo nano /boot/config.txt add "dtoverlay=gpio-fan" or "dtoverlay=gpio-fan,gpiopin=12,temp=45000"
|
|
+ * or
|
|
+ * - sudo sh -c 'printf "\n# Enable PI GPIO-Fan Default\ndtoverlay=gpio-fan\n" >> /boot/config.txt'
|
|
+ * - sudo sh -c 'printf "\n# Enable PI GPIO-Fan Custom\ntoverlay=gpio-fan,gpiopin=12,temp=45000\n" >> /boot/config.txt'
|
|
*
|
|
*/
|
|
/dts-v1/;
|
|
@@ -52,7 +60,7 @@
|
|
trips {
|
|
cpu_hot: trip-point@0 {
|
|
temperature = <55000>; /* (millicelsius) Fan started at 55°C */
|
|
- hysteresis = <5000>; /* (millicelsius) Fan stopped at 50°C */
|
|
+ hysteresis = <10000>; /* (millicelsius) Fan stopped at 45°C */
|
|
type = "active";
|
|
};
|
|
};
|