From: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
To: f.fainelli@gmail.com, linux@roeck-us.net, jdelvare@suse.com,
wahrenst@gmx.net,
"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
"Eric Anholt" <eric@anholt.net>,
bcm-kernel-feedback-list@broadcom.com,
linux-rpi-kernel@lists.infradead.org,
linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
linux-pwm@vger.kernel.org
Cc: linux-hwmon@vger.kernel.org, robh+dt@kernel.org,
Nicolas Saenz Julienne <nsaenzjulienne@suse.de>,
linux-kernel@vger.kernel.org
Subject: [PATCH 0/3] Raspberry Pi 4 PoE HAT fan support
Date: Fri, 9 Oct 2020 17:30:27 +0200 [thread overview]
Message-ID: <20201009153031.986-1-nsaenzjulienne@suse.de> (raw)
Hi everyone,
this series aims at adding support to RPi's official PoE HAT fan[1].
The HW setup is the following:
| Raspberry Pi | PoE HAT |
arm core -> Mailbox -> RPi co-processor -> I2C -> Atmel MCU -> PWM -> FAN
The arm cores have only access to the mailbox interface, as i2c0, even if
physically accessible, is to be used solely by the co-processor
(VideoCore 4/6).
This series implements a PWM bus, and has pwm-fan sitting on top of it as per
this discussion: https://lkml.org/lkml/2018/9/2/486. Although this design has a
series of shortcomings:
- It depends on a DT binding: it's not flexible if a new hat shows up with new
functionality, we're not 100% sure we'll be able to expand it without
breaking backwards compatibility. But without it we can't make use of DT
thermal-zones, which IMO is overkill.
- We're using pwm-fan, writing a hwmon driver would, again, give us more
flexibility, but it's not really needed at the moment.
I personally think that it's not worth the effort, it's unlikely we'll get
things right in advance. And ultimately, if the RPi people come up with
something new, we can always write a new driver/bindings from scratch (as in
not reusing previous code).
That said, I'm more than happy to change things if there is a consensus that
another design will do the trick.
[1] https://www.raspberrypi.org/blog/introducing-power-over-ethernet-poe-hat/
---
Nicolas Saenz Julienne (3):
dt-bindings: pwm: Add binding for RPi firmware PWM bus
DO NOT MERGE: ARM: dts: Add RPi's official PoE hat support
pwm: Add Raspberry Pi Firmware based PWM bus
.../arm/bcm/raspberrypi,bcm2835-firmware.yaml | 21 ++
arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 54 +++++
drivers/pwm/Kconfig | 7 +
drivers/pwm/Makefile | 1 +
drivers/pwm/pwm-raspberrypi.c | 216 ++++++++++++++++++
.../pwm/raspberrypi,firmware-pwm.h | 13 ++
6 files changed, 312 insertions(+)
create mode 100644 drivers/pwm/pwm-raspberrypi.c
create mode 100644 include/dt-bindings/pwm/raspberrypi,firmware-pwm.h
--
2.28.0
next reply other threads:[~2020-10-09 15:30 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-09 15:30 Nicolas Saenz Julienne [this message]
2020-10-09 15:30 ` [PATCH 1/3] dt-bindings: pwm: Add binding for RPi firmware PWM bus Nicolas Saenz Julienne
2020-10-12 7:01 ` Uwe Kleine-König
2020-10-13 10:35 ` Nicolas Saenz Julienne
2020-10-13 12:08 ` Uwe Kleine-König
2020-10-13 12:33 ` Nicolas Saenz Julienne
2020-10-13 15:18 ` Uwe Kleine-König
2020-10-09 15:30 ` [PATCH 2/3] DO NOT MERGE: ARM: dts: Add RPi's official PoE hat support Nicolas Saenz Julienne
2020-10-09 15:30 ` [PATCH 3/3] pwm: Add Raspberry Pi Firmware based PWM bus Nicolas Saenz Julienne
2020-10-12 7:06 ` Uwe Kleine-König
2020-10-13 11:20 ` Nicolas Saenz Julienne
2020-10-13 12:17 ` Uwe Kleine-König
2020-10-13 16:50 ` Nicolas Saenz Julienne
2020-10-14 7:02 ` Uwe Kleine-König
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201009153031.986-1-nsaenzjulienne@suse.de \
--to=nsaenzjulienne@suse.de \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=devicetree@vger.kernel.org \
--cc=eric@anholt.net \
--cc=f.fainelli@gmail.com \
--cc=jdelvare@suse.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=linux-rpi-kernel@lists.infradead.org \
--cc=linux@roeck-us.net \
--cc=robh+dt@kernel.org \
--cc=u.kleine-koenig@pengutronix.de \
--cc=wahrenst@gmx.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox