* [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings
@ 2020-02-28 6:14 Johan Jonker
2020-02-28 6:14 ` [PATCH 2/4] dt-bindings: arm: add Rockchip rk3036-evb board Johan Jonker
` (3 more replies)
0 siblings, 4 replies; 11+ messages in thread
From: Johan Jonker @ 2020-02-28 6:14 UTC (permalink / raw)
To: heiko; +Cc: robh+dt, devicetree, linux-arm-kernel, linux-rockchip,
linux-kernel
A test with the command below gives this error:
arch/arm/boot/dts/rk3036-kylin.dt.yaml: /: compatible:
['rockchip,rk3036-kylin', 'rockchip,rk3036']
is not valid under any of the given schemas
Fix this error by changing 'rockchip,kylin-rk3036' to
'rockchip,rk3036-kylin' in rockchip.yaml.
make ARCH=arm dtbs_check
DT_SCHEMA_FILES=Documentation/devicetree/bindings/arm/rockchip.yaml
Signed-off-by: Johan Jonker <jbx6244@gmail.com>
---
Documentation/devicetree/bindings/arm/rockchip.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/arm/rockchip.yaml b/Documentation/devicetree/bindings/arm/rockchip.yaml
index 874b0eaa2..203158038 100644
--- a/Documentation/devicetree/bindings/arm/rockchip.yaml
+++ b/Documentation/devicetree/bindings/arm/rockchip.yaml
@@ -443,7 +443,7 @@ properties:
- description: Rockchip Kylin
items:
- - const: rockchip,kylin-rk3036
+ - const: rockchip,rk3036-kylin
- const: rockchip,rk3036
- description: Rockchip PX3 Evaluation board
--
2.11.0
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH 2/4] dt-bindings: arm: add Rockchip rk3036-evb board 2020-02-28 6:14 [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings Johan Jonker @ 2020-02-28 6:14 ` Johan Jonker 2020-02-28 6:14 ` [PATCH 3/4] dt-bindings: arm: fix Rockchip rk3399-evb bindings Johan Jonker ` (2 subsequent siblings) 3 siblings, 0 replies; 11+ messages in thread From: Johan Jonker @ 2020-02-28 6:14 UTC (permalink / raw) To: heiko; +Cc: robh+dt, devicetree, linux-arm-kernel, linux-rockchip, linux-kernel A test with the command below gives this error: arch/arm/boot/dts/rk3036-evb.dt.yaml: /: compatible: ['rockchip,rk3036-evb', 'rockchip,rk3036'] is not valid under any of the given schemas This board was somehow never added to the documentation. Fix this error by adding the rk3036-evb board to rockchip.yaml. make ARCH=arm dtbs_check DT_SCHEMA_FILES=Documentation/devicetree/bindings/arm/rockchip.yaml Signed-off-by: Johan Jonker <jbx6244@gmail.com> --- Documentation/devicetree/bindings/arm/rockchip.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Documentation/devicetree/bindings/arm/rockchip.yaml b/Documentation/devicetree/bindings/arm/rockchip.yaml index 203158038..d303790f5 100644 --- a/Documentation/devicetree/bindings/arm/rockchip.yaml +++ b/Documentation/devicetree/bindings/arm/rockchip.yaml @@ -468,6 +468,11 @@ properties: - const: rockchip,r88 - const: rockchip,rk3368 + - description: Rockchip RK3036 Evaluation board + items: + - const: rockchip,rk3036-evb + - const: rockchip,rk3036 + - description: Rockchip RK3228 Evaluation board items: - const: rockchip,rk3228-evb -- 2.11.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/4] dt-bindings: arm: fix Rockchip rk3399-evb bindings 2020-02-28 6:14 [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings Johan Jonker 2020-02-28 6:14 ` [PATCH 2/4] dt-bindings: arm: add Rockchip rk3036-evb board Johan Jonker @ 2020-02-28 6:14 ` Johan Jonker 2020-02-28 12:42 ` Robin Murphy 2020-02-28 6:14 ` [PATCH 4/4] arm64: dts: rockchip: fix compatible property for Radxa ROCK Pi N10 Johan Jonker 2020-02-28 12:35 ` [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings Robin Murphy 3 siblings, 1 reply; 11+ messages in thread From: Johan Jonker @ 2020-02-28 6:14 UTC (permalink / raw) To: heiko; +Cc: robh+dt, devicetree, linux-arm-kernel, linux-rockchip, linux-kernel A test with the command below gives this error: arch/arm64/boot/dts/rockchip/rk3399-evb.dt.yaml: /: compatible: ['rockchip,rk3399-evb', 'rockchip,rk3399', 'google,rk3399evb-rev2'] is not valid under any of the given schemas Fix this error by adding 'google,rk3399evb-rev2' to the compatible property in rockchip.yaml make ARCH=arm64 dtbs_check DT_SCHEMA_FILES=Documentation/devicetree/bindings/arm/rockchip.yaml Signed-off-by: Johan Jonker <jbx6244@gmail.com> --- Documentation/devicetree/bindings/arm/rockchip.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/arm/rockchip.yaml b/Documentation/devicetree/bindings/arm/rockchip.yaml index d303790f5..6c6e8273e 100644 --- a/Documentation/devicetree/bindings/arm/rockchip.yaml +++ b/Documentation/devicetree/bindings/arm/rockchip.yaml @@ -509,6 +509,7 @@ properties: items: - const: rockchip,rk3399-evb - const: rockchip,rk3399 + - const: google,rk3399evb-rev2 - description: Rockchip RK3399 Sapphire standalone items: -- 2.11.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 3/4] dt-bindings: arm: fix Rockchip rk3399-evb bindings 2020-02-28 6:14 ` [PATCH 3/4] dt-bindings: arm: fix Rockchip rk3399-evb bindings Johan Jonker @ 2020-02-28 12:42 ` Robin Murphy 2020-02-28 13:28 ` Johan Jonker 0 siblings, 1 reply; 11+ messages in thread From: Robin Murphy @ 2020-02-28 12:42 UTC (permalink / raw) To: Johan Jonker, heiko Cc: devicetree, robh+dt, linux-kernel, linux-arm-kernel, linux-rockchip On 28/02/2020 6:14 am, Johan Jonker wrote: > A test with the command below gives this error: > > arch/arm64/boot/dts/rockchip/rk3399-evb.dt.yaml: /: compatible: > ['rockchip,rk3399-evb', 'rockchip,rk3399', 'google,rk3399evb-rev2'] > is not valid under any of the given schemas > > Fix this error by adding 'google,rk3399evb-rev2' to the compatible > property in rockchip.yaml > > make ARCH=arm64 dtbs_check > DT_SCHEMA_FILES=Documentation/devicetree/bindings/arm/rockchip.yaml > > Signed-off-by: Johan Jonker <jbx6244@gmail.com> > --- > Documentation/devicetree/bindings/arm/rockchip.yaml | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/Documentation/devicetree/bindings/arm/rockchip.yaml b/Documentation/devicetree/bindings/arm/rockchip.yaml > index d303790f5..6c6e8273e 100644 > --- a/Documentation/devicetree/bindings/arm/rockchip.yaml > +++ b/Documentation/devicetree/bindings/arm/rockchip.yaml > @@ -509,6 +509,7 @@ properties: > items: > - const: rockchip,rk3399-evb > - const: rockchip,rk3399 > + - const: google,rk3399evb-rev2 This looks wrong - the board can't reasonably be a *more* general match than the SoC. If this is supposed to represent a specific variant of the basic EVB design then it should come before "rockchip,rk3399-evb" (and possibly be optional if other variants also exist). Robin. > > - description: Rockchip RK3399 Sapphire standalone > items: > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/4] dt-bindings: arm: fix Rockchip rk3399-evb bindings 2020-02-28 12:42 ` Robin Murphy @ 2020-02-28 13:28 ` Johan Jonker 2020-03-01 0:02 ` Heiko Stuebner 0 siblings, 1 reply; 11+ messages in thread From: Johan Jonker @ 2020-02-28 13:28 UTC (permalink / raw) To: Robin Murphy, heiko Cc: devicetree, robh+dt, linux-kernel, linux-arm-kernel, linux-rockchip Hi Robin, When I look at the review process of rk3399-evb.dts it is mentioned here: https://lore.kernel.org/patchwork/patch/672327/ >> + model = "Rockchip RK3399 Evaluation Board"; >> + compatible = "rockchip,rk3399-evb", "rockchip,rk3399", >> + "google,rk3399evb-rev2", google,rk3399evb-rev1", >> + "google,rk3399evb-rev0" ; > > can you check against which compatibles that coreboot really matches? > > As we said that the evb changed between rev1 and rev2, I would expect the > compatible to be something like > > compatible = "rockchip,rk3399-evb", "google,rk3399evb-rev2", > "rockchip,rk3399"; > > leaving out the rev1 and rev0 The consensus in version 4 ends in what is shown in the dts file, so I changed it in rockchip.yaml. Things from the past maybe can better be explained by Heiko. Please advise if this patch needs to change and in what file. Kind regards, Johan On 2/28/20 1:42 PM, Robin Murphy wrote: > On 28/02/2020 6:14 am, Johan Jonker wrote: >> A test with the command below gives this error: >> >> arch/arm64/boot/dts/rockchip/rk3399-evb.dt.yaml: /: compatible: >> ['rockchip,rk3399-evb', 'rockchip,rk3399', 'google,rk3399evb-rev2'] >> is not valid under any of the given schemas >> >> Fix this error by adding 'google,rk3399evb-rev2' to the compatible >> property in rockchip.yaml >> >> make ARCH=arm64 dtbs_check >> DT_SCHEMA_FILES=Documentation/devicetree/bindings/arm/rockchip.yaml >> >> Signed-off-by: Johan Jonker <jbx6244@gmail.com> >> --- >> Documentation/devicetree/bindings/arm/rockchip.yaml | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/Documentation/devicetree/bindings/arm/rockchip.yaml >> b/Documentation/devicetree/bindings/arm/rockchip.yaml >> index d303790f5..6c6e8273e 100644 >> --- a/Documentation/devicetree/bindings/arm/rockchip.yaml >> +++ b/Documentation/devicetree/bindings/arm/rockchip.yaml >> @@ -509,6 +509,7 @@ properties: >> items: >> - const: rockchip,rk3399-evb >> - const: rockchip,rk3399 >> + - const: google,rk3399evb-rev2 > > This looks wrong - the board can't reasonably be a *more* general match > than the SoC. If this is supposed to represent a specific variant of the > basic EVB design then it should come before "rockchip,rk3399-evb" (and > possibly be optional if other variants also exist). > > Robin. > >> - description: Rockchip RK3399 Sapphire standalone >> items: >> ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/4] dt-bindings: arm: fix Rockchip rk3399-evb bindings 2020-02-28 13:28 ` Johan Jonker @ 2020-03-01 0:02 ` Heiko Stuebner 0 siblings, 0 replies; 11+ messages in thread From: Heiko Stuebner @ 2020-03-01 0:02 UTC (permalink / raw) To: Johan Jonker, dianders Cc: Robin Murphy, devicetree, robh+dt, linux-kernel, linux-arm-kernel, linux-rockchip Hi Johan, Am Freitag, 28. Februar 2020, 14:28:36 CET schrieb Johan Jonker: > Hi Robin, > > When I look at the review process of rk3399-evb.dts > it is mentioned here: > > https://lore.kernel.org/patchwork/patch/672327/ > > >> + model = "Rockchip RK3399 Evaluation Board"; > >> + compatible = "rockchip,rk3399-evb", "rockchip,rk3399", > >> + "google,rk3399evb-rev2", google,rk3399evb-rev1", > >> + "google,rk3399evb-rev0" ; > > > > can you check against which compatibles that coreboot really matches? > > > > As we said that the evb changed between rev1 and rev2, I would expect the > > compatible to be something like > > > > compatible = "rockchip,rk3399-evb", "google,rk3399evb-rev2", > > "rockchip,rk3399"; > > > > leaving out the rev1 and rev0 > > The consensus in version 4 ends in what is shown in the dts file, so I > changed it in rockchip.yaml. Things from the past maybe can better be > explained by Heiko. Please advise if this patch needs to change and in > what file. Just get rid of the "google,rk3399evb-rev2" from the .dts please :-) . (1) "rockchip,rk3399-evb", "rockchip,rk3399", "google,rk3399evb-rev2"; is just wrong for the reasons Robin explained, I guess that slipped through review at the time. (2) "google,rk3399evb-rev2" was a specific variant for Google I'm pretty sure they'll have scraped all these boards directly after they had the first actual rk3399-gru development devices So I'm pretty sure the only rk3399-evbs in existence are the general ones. Heiko ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 4/4] arm64: dts: rockchip: fix compatible property for Radxa ROCK Pi N10 2020-02-28 6:14 [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings Johan Jonker 2020-02-28 6:14 ` [PATCH 2/4] dt-bindings: arm: add Rockchip rk3036-evb board Johan Jonker 2020-02-28 6:14 ` [PATCH 3/4] dt-bindings: arm: fix Rockchip rk3399-evb bindings Johan Jonker @ 2020-02-28 6:14 ` Johan Jonker 2020-03-01 0:04 ` Heiko Stuebner 2020-02-28 12:35 ` [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings Robin Murphy 3 siblings, 1 reply; 11+ messages in thread From: Johan Jonker @ 2020-02-28 6:14 UTC (permalink / raw) To: heiko; +Cc: robh+dt, devicetree, linux-arm-kernel, linux-rockchip, linux-kernel A test with the command below gives this error: arch/arm64/boot/dts/rockchip/rk3399pro-rock-pi-n10.dt.yaml: /: compatible: ['radxa,rockpi-n10', 'rockchip,rk3399pro'] is not valid under any of the given schemas During the review process the binding was changed, but the dts file was somehow not updated. Fix this error by adding 'vamrs,rk3399pro-vmarc-som' to the compatible property. make ARCH=arm64 dtbs_check DT_SCHEMA_FILES=Documentation/devicetree/bindings/arm/rockchip.yaml Signed-off-by: Johan Jonker <jbx6244@gmail.com> --- arch/arm64/boot/dts/rockchip/rk3399pro-rock-pi-n10.dts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/rockchip/rk3399pro-rock-pi-n10.dts b/arch/arm64/boot/dts/rockchip/rk3399pro-rock-pi-n10.dts index b42f94179..a1783e7f7 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399pro-rock-pi-n10.dts +++ b/arch/arm64/boot/dts/rockchip/rk3399pro-rock-pi-n10.dts @@ -13,5 +13,6 @@ / { model = "Radxa ROCK Pi N10"; - compatible = "radxa,rockpi-n10", "rockchip,rk3399pro"; + compatible = "radxa,rockpi-n10", "vamrs,rk3399pro-vmarc-som", + "rockchip,rk3399pro"; }; -- 2.11.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 4/4] arm64: dts: rockchip: fix compatible property for Radxa ROCK Pi N10 2020-02-28 6:14 ` [PATCH 4/4] arm64: dts: rockchip: fix compatible property for Radxa ROCK Pi N10 Johan Jonker @ 2020-03-01 0:04 ` Heiko Stuebner 0 siblings, 0 replies; 11+ messages in thread From: Heiko Stuebner @ 2020-03-01 0:04 UTC (permalink / raw) To: Johan Jonker Cc: robh+dt, devicetree, linux-arm-kernel, linux-rockchip, linux-kernel Am Freitag, 28. Februar 2020, 07:14:36 CET schrieb Johan Jonker: > A test with the command below gives this error: > > arch/arm64/boot/dts/rockchip/rk3399pro-rock-pi-n10.dt.yaml: /: compatible: > ['radxa,rockpi-n10', 'rockchip,rk3399pro'] > is not valid under any of the given schemas > > During the review process the binding was changed, > but the dts file was somehow not updated. > Fix this error by adding 'vamrs,rk3399pro-vmarc-som' to > the compatible property. > > make ARCH=arm64 dtbs_check > DT_SCHEMA_FILES=Documentation/devicetree/bindings/arm/rockchip.yaml > > Signed-off-by: Johan Jonker <jbx6244@gmail.com> applied for 5.7 Thanks Heiko ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings 2020-02-28 6:14 [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings Johan Jonker ` (2 preceding siblings ...) 2020-02-28 6:14 ` [PATCH 4/4] arm64: dts: rockchip: fix compatible property for Radxa ROCK Pi N10 Johan Jonker @ 2020-02-28 12:35 ` Robin Murphy 2020-02-28 12:50 ` Johan Jonker 3 siblings, 1 reply; 11+ messages in thread From: Robin Murphy @ 2020-02-28 12:35 UTC (permalink / raw) To: Johan Jonker, heiko Cc: devicetree, robh+dt, linux-kernel, linux-arm-kernel, linux-rockchip On 28/02/2020 6:14 am, Johan Jonker wrote: > A test with the command below gives this error: > > arch/arm/boot/dts/rk3036-kylin.dt.yaml: /: compatible: > ['rockchip,rk3036-kylin', 'rockchip,rk3036'] > is not valid under any of the given schemas > > Fix this error by changing 'rockchip,kylin-rk3036' to > 'rockchip,rk3036-kylin' in rockchip.yaml. Although I can guess, it might be worth a note to explain why it's the binding rather than the DTS that gets changed here. Robin. > make ARCH=arm dtbs_check > DT_SCHEMA_FILES=Documentation/devicetree/bindings/arm/rockchip.yaml > > Signed-off-by: Johan Jonker <jbx6244@gmail.com> > --- > Documentation/devicetree/bindings/arm/rockchip.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/arm/rockchip.yaml b/Documentation/devicetree/bindings/arm/rockchip.yaml > index 874b0eaa2..203158038 100644 > --- a/Documentation/devicetree/bindings/arm/rockchip.yaml > +++ b/Documentation/devicetree/bindings/arm/rockchip.yaml > @@ -443,7 +443,7 @@ properties: > > - description: Rockchip Kylin > items: > - - const: rockchip,kylin-rk3036 > + - const: rockchip,rk3036-kylin > - const: rockchip,rk3036 > > - description: Rockchip PX3 Evaluation board > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings 2020-02-28 12:35 ` [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings Robin Murphy @ 2020-02-28 12:50 ` Johan Jonker 2020-02-29 23:55 ` Heiko Stuebner 0 siblings, 1 reply; 11+ messages in thread From: Johan Jonker @ 2020-02-28 12:50 UTC (permalink / raw) To: Robin Murphy, heiko Cc: devicetree, robh+dt, linux-kernel, linux-arm-kernel, linux-rockchip On 2/28/20 1:35 PM, Robin Murphy wrote: > On 28/02/2020 6:14 am, Johan Jonker wrote: >> A test with the command below gives this error: >> >> arch/arm/boot/dts/rk3036-kylin.dt.yaml: /: compatible: >> ['rockchip,rk3036-kylin', 'rockchip,rk3036'] >> is not valid under any of the given schemas >> >> Fix this error by changing 'rockchip,kylin-rk3036' to >> 'rockchip,rk3036-kylin' in rockchip.yaml. > > Although I can guess, it might be worth a note to explain why it's the > binding rather than the DTS that gets changed here. Hi Robin, My guess is that given a look at the other boards the processor name comes first and then the board name, so I changed it in rockchip.yaml. But maybe Heiko can better explain what the naming consensus in the past was. Kind regards, Johan > > Robin. > >> make ARCH=arm dtbs_check >> DT_SCHEMA_FILES=Documentation/devicetree/bindings/arm/rockchip.yaml >> >> Signed-off-by: Johan Jonker <jbx6244@gmail.com> >> --- >> Documentation/devicetree/bindings/arm/rockchip.yaml | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/Documentation/devicetree/bindings/arm/rockchip.yaml >> b/Documentation/devicetree/bindings/arm/rockchip.yaml >> index 874b0eaa2..203158038 100644 >> --- a/Documentation/devicetree/bindings/arm/rockchip.yaml >> +++ b/Documentation/devicetree/bindings/arm/rockchip.yaml >> @@ -443,7 +443,7 @@ properties: >> - description: Rockchip Kylin >> items: >> - - const: rockchip,kylin-rk3036 >> + - const: rockchip,rk3036-kylin >> - const: rockchip,rk3036 >> - description: Rockchip PX3 Evaluation board >> ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings 2020-02-28 12:50 ` Johan Jonker @ 2020-02-29 23:55 ` Heiko Stuebner 0 siblings, 0 replies; 11+ messages in thread From: Heiko Stuebner @ 2020-02-29 23:55 UTC (permalink / raw) To: Johan Jonker Cc: Robin Murphy, devicetree, robh+dt, linux-kernel, linux-arm-kernel, linux-rockchip Hi Johan, Am Freitag, 28. Februar 2020, 13:50:11 CET schrieb Johan Jonker: > On 2/28/20 1:35 PM, Robin Murphy wrote: > > On 28/02/2020 6:14 am, Johan Jonker wrote: > >> A test with the command below gives this error: > >> > >> arch/arm/boot/dts/rk3036-kylin.dt.yaml: /: compatible: > >> ['rockchip,rk3036-kylin', 'rockchip,rk3036'] > >> is not valid under any of the given schemas > >> > >> Fix this error by changing 'rockchip,kylin-rk3036' to > >> 'rockchip,rk3036-kylin' in rockchip.yaml. > > > > > > Although I can guess, it might be worth a note to explain why it's the > > binding rather than the DTS that gets changed here. > > Hi Robin, > > My guess is that given a look at the other boards the processor name > comes first and then the board name, so I changed it in rockchip.yaml. > But maybe Heiko can better explain what the naming consensus in the past > was. I think what Robin meant was that there should be an explanation in the commit message on why you change the binding and not the board. Normally the dt-binding is the authoritative part, so boards should follow the binding, but in the kylin-case the compatible from the .dts is used fr years in the field now, so you're correct to fix the binding, as otherwise we would break old users. So just add a paragraph to the commit message with the above ;-) Heiko ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2020-03-01 0:04 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-02-28 6:14 [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings Johan Jonker 2020-02-28 6:14 ` [PATCH 2/4] dt-bindings: arm: add Rockchip rk3036-evb board Johan Jonker 2020-02-28 6:14 ` [PATCH 3/4] dt-bindings: arm: fix Rockchip rk3399-evb bindings Johan Jonker 2020-02-28 12:42 ` Robin Murphy 2020-02-28 13:28 ` Johan Jonker 2020-03-01 0:02 ` Heiko Stuebner 2020-02-28 6:14 ` [PATCH 4/4] arm64: dts: rockchip: fix compatible property for Radxa ROCK Pi N10 Johan Jonker 2020-03-01 0:04 ` Heiko Stuebner 2020-02-28 12:35 ` [PATCH 1/4] dt-bindings: arm: fix Rockchip Kylin board bindings Robin Murphy 2020-02-28 12:50 ` Johan Jonker 2020-02-29 23:55 ` Heiko Stuebner
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).