* [PATCH v4 0/8] Support more devices on rockchip rv1108
@ 2017-08-14 8:31 Andy Yan
[not found] ` <1502699477-8063-1-git-send-email-andy.yan-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Andy Yan @ 2017-08-14 8:31 UTC (permalink / raw)
To: heiko
Cc: devicetree, thierry.reding, linux-pwm, broonie, linux-kernel,
linux-spi, linux-rockchip, robh+dt, linux-arm-kernel, Andy Yan
This series try to support i2c/spi/pwm/saradc/pmic/watchdog
on rockchip rv1108 soc.
The clk tree, pinctrl, i2c, watchdog and saradc dt-bindings has
been applied. So there are not included in this version.
Changes in v4:
- remove unnecessary property io-channel-ranges of saradc
- order i2c devices by i2c address.
Changes in v3:
- make the compatible string be: "rockchip,rv1108-pwm", "rockchip,rk3288-pwm"
for rv1108
Changes in v2:
- add compatible string "rockchip,rv1108-pwm"
- add compatible string "rockchip,rv1108-saradc"
Andy Yan (8):
spi: rockchip: add compatible string for rv1108 spi
ARM: dts: rockchip: add spi dt node for rv1108
dt-bindings: pwm: add description for rv1108 pwm
ARM: dts: rockchip: add pwm dt node for rv1108
ARM: dts: rockchip: add saradc support for rv1108
ARM: dts: rockchip: add pwm backlight for rv1108 evb
ARM: dts: rockchip: add pmic rk805 dt node for rv1108 evb
ARM: dts: rockchip: add accelerometer bma250e dt node for rv1108 evb
.../devicetree/bindings/pwm/pwm-rockchip.txt | 3 +-
.../devicetree/bindings/spi/spi-rockchip.txt | 1 +
arch/arm/boot/dts/rv1108-evb.dts | 158 +++++++++++++++++++
arch/arm/boot/dts/rv1108.dtsi | 167 +++++++++++++++++++++
drivers/spi/spi-rockchip.c | 1 +
5 files changed, 329 insertions(+), 1 deletion(-)
--
2.7.4
^ permalink raw reply [flat|nested] 4+ messages in thread[parent not found: <1502699477-8063-1-git-send-email-andy.yan-TNX95d0MmH7DzftRWevZcw@public.gmane.org>]
* [PATCH v4 3/8] dt-bindings: pwm: add description for rv1108 pwm [not found] ` <1502699477-8063-1-git-send-email-andy.yan-TNX95d0MmH7DzftRWevZcw@public.gmane.org> @ 2017-08-14 8:37 ` Andy Yan 2017-08-17 20:47 ` Rob Herring 2017-08-18 15:46 ` Thierry Reding 0 siblings, 2 replies; 4+ messages in thread From: Andy Yan @ 2017-08-14 8:37 UTC (permalink / raw) To: thierry.reding-Re5JQEeQqe8AvxtiuMwx3w Cc: heiko-4mtYJXux2i+zQB+pC5nmwQ, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-pwm-u79uwXL29TY76Z2rM5mHXA, linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Andy Yan Add device tree bindings document for pwm on rockchip rv1108 soc. Signed-off-by: Andy Yan <andy.yan-TNX95d0MmH7DzftRWevZcw@public.gmane.org> --- Changes in v4: None Changes in v3: - make the compatible string be: "rockchip,rv1108-pwm", "rockchip,rk3288-pwm" for rv1108 Changes in v2: None Documentation/devicetree/bindings/pwm/pwm-rockchip.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/pwm/pwm-rockchip.txt b/Documentation/devicetree/bindings/pwm/pwm-rockchip.txt index 2350ef9..2c5e52a 100644 --- a/Documentation/devicetree/bindings/pwm/pwm-rockchip.txt +++ b/Documentation/devicetree/bindings/pwm/pwm-rockchip.txt @@ -3,7 +3,8 @@ Rockchip PWM controller Required properties: - compatible: should be "rockchip,<name>-pwm" "rockchip,rk2928-pwm": found on RK29XX,RK3066 and RK3188 SoCs - "rockchip,rk3288-pwm": found on RK3288 SoC + "rockchip,rk3288-pwm": found on RK3288 SOC + "rockchip,rv1108-pwm", "rockchip,rk3288-pwm": found on RV1108 SoC "rockchip,vop-pwm": found integrated in VOP on RK3288 SoC - reg: physical base address and length of the controller's registers - clocks: See ../clock/clock-bindings.txt -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v4 3/8] dt-bindings: pwm: add description for rv1108 pwm 2017-08-14 8:37 ` [PATCH v4 3/8] dt-bindings: pwm: add description for rv1108 pwm Andy Yan @ 2017-08-17 20:47 ` Rob Herring 2017-08-18 15:46 ` Thierry Reding 1 sibling, 0 replies; 4+ messages in thread From: Rob Herring @ 2017-08-17 20:47 UTC (permalink / raw) To: Andy Yan Cc: thierry.reding, heiko, devicetree, linux-kernel, linux-pwm, linux-rockchip, linux-arm-kernel On Mon, Aug 14, 2017 at 04:37:48PM +0800, Andy Yan wrote: > Add device tree bindings document for pwm on > rockchip rv1108 soc. > > Signed-off-by: Andy Yan <andy.yan@rock-chips.com> > > --- > > Changes in v4: None > Changes in v3: > - make the compatible string be: "rockchip,rv1108-pwm", "rockchip,rk3288-pwm" > for rv1108 > > Changes in v2: None > > Documentation/devicetree/bindings/pwm/pwm-rockchip.txt | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) Acked-by: Rob Herring <robh@kernel.org> ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v4 3/8] dt-bindings: pwm: add description for rv1108 pwm 2017-08-14 8:37 ` [PATCH v4 3/8] dt-bindings: pwm: add description for rv1108 pwm Andy Yan 2017-08-17 20:47 ` Rob Herring @ 2017-08-18 15:46 ` Thierry Reding 1 sibling, 0 replies; 4+ messages in thread From: Thierry Reding @ 2017-08-18 15:46 UTC (permalink / raw) To: Andy Yan Cc: heiko, devicetree, linux-kernel, linux-pwm, linux-rockchip, robh+dt, linux-arm-kernel [-- Attachment #1: Type: text/plain, Size: 541 bytes --] On Mon, Aug 14, 2017 at 04:37:48PM +0800, Andy Yan wrote: > Add device tree bindings document for pwm on > rockchip rv1108 soc. > > Signed-off-by: Andy Yan <andy.yan@rock-chips.com> > > --- > > Changes in v4: None > Changes in v3: > - make the compatible string be: "rockchip,rv1108-pwm", "rockchip,rk3288-pwm" > for rv1108 > > Changes in v2: None > > Documentation/devicetree/bindings/pwm/pwm-rockchip.txt | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) Applied to for-4.14/drivers, thanks. Thierry [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-08-18 15:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-14 8:31 [PATCH v4 0/8] Support more devices on rockchip rv1108 Andy Yan
[not found] ` <1502699477-8063-1-git-send-email-andy.yan-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
2017-08-14 8:37 ` [PATCH v4 3/8] dt-bindings: pwm: add description for rv1108 pwm Andy Yan
2017-08-17 20:47 ` Rob Herring
2017-08-18 15:46 ` Thierry Reding
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).