devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] of: add mundoreader and radxa vendor prefixes
@ 2014-05-06 17:10 Beniamino Galvani
  2014-05-06 17:10 ` [PATCH v2 2/2] ARM: dts: rockchip: add root compatible properties Beniamino Galvani
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Beniamino Galvani @ 2014-05-06 17:10 UTC (permalink / raw)
  To: Heiko Stuebner
  Cc: Mark Rutland, devicetree, Pawel Moll, linux-doc, Ian Campbell,
	linux-kernel, Beniamino Galvani, Rob Herring, Kumar Gala,
	Matthias Brugger, linux-arm-kernel

Add new vendor prefixes for:

    * Mundo Reader S.L., a company that produces tablets and e-readers
    * Radxa, manufacturer of ARM boards

Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
---

v2:
 - use mundoreader prefix instead of bq as suggested by Heiko Stuebner

 Documentation/devicetree/bindings/vendor-prefixes.txt |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index abc3080..53bd92f 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -79,6 +79,7 @@ microchip	Microchip Technology Inc.
 mosaixtech	Mosaix Technologies, Inc.
 moxa	Moxa
 mpl	MPL AG
+mundoreader	Mundo Reader S.L.
 mxicy	Macronix International Co., Ltd.
 national	National Semiconductor
 neonode		Neonode Inc.
@@ -98,6 +99,7 @@ powervr	PowerVR (deprecated, use img)
 qca	Qualcomm Atheros, Inc.
 qcom	Qualcomm Technologies, Inc
 qnap	QNAP Systems, Inc.
+radxa	Radxa
 raidsonic	RaidSonic Technology GmbH
 ralink	Mediatek/Ralink Technology Corp.
 ramtron	Ramtron International
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH v2 2/2] ARM: dts: rockchip: add root compatible properties
  2014-05-06 17:10 [PATCH v2 1/2] of: add mundoreader and radxa vendor prefixes Beniamino Galvani
@ 2014-05-06 17:10 ` Beniamino Galvani
       [not found]   ` <1399396211-25353-2-git-send-email-b.galvani-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  2014-05-06 17:24 ` [PATCH v2 1/2] of: add mundoreader and radxa vendor prefixes Rob Herring
  2014-05-16 10:09 ` Heiko Stübner
  2 siblings, 1 reply; 5+ messages in thread
From: Beniamino Galvani @ 2014-05-06 17:10 UTC (permalink / raw)
  To: Heiko Stuebner
  Cc: Matthias Brugger, devicetree, linux-arm-kernel, linux-doc,
	linux-kernel, Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell,
	Kumar Gala, Beniamino Galvani

Add the missing 'compatible' property to device tree root node of

 - rk3066a-bqcurie2.dts
 - rk3188-radxarock.dts

and document the new values.

Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
---

v2:
 - use mundoreader prefix instead of bq as suggested by Heiko Stuebner

 Documentation/devicetree/bindings/arm/rockchip.txt |   10 ++++++++++
 arch/arm/boot/dts/rk3066a-bqcurie2.dts             |    1 +
 arch/arm/boot/dts/rk3188-radxarock.dts             |    1 +
 3 files changed, 12 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/arm/rockchip.txt

diff --git a/Documentation/devicetree/bindings/arm/rockchip.txt b/Documentation/devicetree/bindings/arm/rockchip.txt
new file mode 100644
index 0000000..857f126
--- /dev/null
+++ b/Documentation/devicetree/bindings/arm/rockchip.txt
@@ -0,0 +1,10 @@
+Rockchip platforms device tree bindings
+---------------------------------------
+
+- bq Curie 2 tablet:
+    Required root node properties:
+      - compatible = "mundoreader,bq-curie2", "rockchip,rk3066a";
+
+- Radxa Rock board:
+    Required root node properties:
+      - compatible = "radxa,rock", "rockchip,rk3188";
diff --git a/arch/arm/boot/dts/rk3066a-bqcurie2.dts b/arch/arm/boot/dts/rk3066a-bqcurie2.dts
index 035df40..afb3273 100644
--- a/arch/arm/boot/dts/rk3066a-bqcurie2.dts
+++ b/arch/arm/boot/dts/rk3066a-bqcurie2.dts
@@ -18,6 +18,7 @@
 
 / {
 	model = "bq Curie 2";
+	compatible = "mundoreader,bq-curie2", "rockchip,rk3066a";
 
 	memory {
 		reg = <0x60000000 0x40000000>;
diff --git a/arch/arm/boot/dts/rk3188-radxarock.dts b/arch/arm/boot/dts/rk3188-radxarock.dts
index 3ba1968..a5eee55 100644
--- a/arch/arm/boot/dts/rk3188-radxarock.dts
+++ b/arch/arm/boot/dts/rk3188-radxarock.dts
@@ -17,6 +17,7 @@
 
 / {
 	model = "Radxa Rock";
+	compatible = "radxa,rock", "rockchip,rk3188";
 
 	memory {
 		reg = <0x60000000 0x80000000>;
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 2/2] ARM: dts: rockchip: add root compatible properties
       [not found]   ` <1399396211-25353-2-git-send-email-b.galvani-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2014-05-06 17:23     ` Rob Herring
  0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2014-05-06 17:23 UTC (permalink / raw)
  To: Beniamino Galvani
  Cc: Heiko Stuebner, Matthias Brugger,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Rob Herring,
	Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala

On Tue, May 6, 2014 at 12:10 PM, Beniamino Galvani <b.galvani-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> Add the missing 'compatible' property to device tree root node of
>
>  - rk3066a-bqcurie2.dts
>  - rk3188-radxarock.dts
>
> and document the new values.
>
> Signed-off-by: Beniamino Galvani <b.galvani-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>

> ---
>
> v2:
>  - use mundoreader prefix instead of bq as suggested by Heiko Stuebner
>
>  Documentation/devicetree/bindings/arm/rockchip.txt |   10 ++++++++++
>  arch/arm/boot/dts/rk3066a-bqcurie2.dts             |    1 +
>  arch/arm/boot/dts/rk3188-radxarock.dts             |    1 +
>  3 files changed, 12 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/arm/rockchip.txt
>
> diff --git a/Documentation/devicetree/bindings/arm/rockchip.txt b/Documentation/devicetree/bindings/arm/rockchip.txt
> new file mode 100644
> index 0000000..857f126
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/arm/rockchip.txt
> @@ -0,0 +1,10 @@
> +Rockchip platforms device tree bindings
> +---------------------------------------
> +
> +- bq Curie 2 tablet:
> +    Required root node properties:
> +      - compatible = "mundoreader,bq-curie2", "rockchip,rk3066a";
> +
> +- Radxa Rock board:
> +    Required root node properties:
> +      - compatible = "radxa,rock", "rockchip,rk3188";
> diff --git a/arch/arm/boot/dts/rk3066a-bqcurie2.dts b/arch/arm/boot/dts/rk3066a-bqcurie2.dts
> index 035df40..afb3273 100644
> --- a/arch/arm/boot/dts/rk3066a-bqcurie2.dts
> +++ b/arch/arm/boot/dts/rk3066a-bqcurie2.dts
> @@ -18,6 +18,7 @@
>
>  / {
>         model = "bq Curie 2";
> +       compatible = "mundoreader,bq-curie2", "rockchip,rk3066a";
>
>         memory {
>                 reg = <0x60000000 0x40000000>;
> diff --git a/arch/arm/boot/dts/rk3188-radxarock.dts b/arch/arm/boot/dts/rk3188-radxarock.dts
> index 3ba1968..a5eee55 100644
> --- a/arch/arm/boot/dts/rk3188-radxarock.dts
> +++ b/arch/arm/boot/dts/rk3188-radxarock.dts
> @@ -17,6 +17,7 @@
>
>  / {
>         model = "Radxa Rock";
> +       compatible = "radxa,rock", "rockchip,rk3188";
>
>         memory {
>                 reg = <0x60000000 0x80000000>;
> --
> 1.7.10.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	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 1/2] of: add mundoreader and radxa vendor prefixes
  2014-05-06 17:10 [PATCH v2 1/2] of: add mundoreader and radxa vendor prefixes Beniamino Galvani
  2014-05-06 17:10 ` [PATCH v2 2/2] ARM: dts: rockchip: add root compatible properties Beniamino Galvani
@ 2014-05-06 17:24 ` Rob Herring
  2014-05-16 10:09 ` Heiko Stübner
  2 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2014-05-06 17:24 UTC (permalink / raw)
  To: Beniamino Galvani
  Cc: Heiko Stuebner, Matthias Brugger, devicetree@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org, Rob Herring, Pawel Moll,
	Mark Rutland, Ian Campbell, Kumar Gala

On Tue, May 6, 2014 at 12:10 PM, Beniamino Galvani <b.galvani@gmail.com> wrote:
> Add new vendor prefixes for:
>
>     * Mundo Reader S.L., a company that produces tablets and e-readers
>     * Radxa, manufacturer of ARM boards
>
> Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>

Acked-by: Rob Herring <robh@kernel.org>

> ---
>
> v2:
>  - use mundoreader prefix instead of bq as suggested by Heiko Stuebner
>
>  Documentation/devicetree/bindings/vendor-prefixes.txt |    2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
> index abc3080..53bd92f 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
> @@ -79,6 +79,7 @@ microchip     Microchip Technology Inc.
>  mosaixtech     Mosaix Technologies, Inc.
>  moxa   Moxa
>  mpl    MPL AG
> +mundoreader    Mundo Reader S.L.
>  mxicy  Macronix International Co., Ltd.
>  national       National Semiconductor
>  neonode                Neonode Inc.
> @@ -98,6 +99,7 @@ powervr       PowerVR (deprecated, use img)
>  qca    Qualcomm Atheros, Inc.
>  qcom   Qualcomm Technologies, Inc
>  qnap   QNAP Systems, Inc.
> +radxa  Radxa
>  raidsonic      RaidSonic Technology GmbH
>  ralink Mediatek/Ralink Technology Corp.
>  ramtron        Ramtron International
> --
> 1.7.10.4
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 1/2] of: add mundoreader and radxa vendor prefixes
  2014-05-06 17:10 [PATCH v2 1/2] of: add mundoreader and radxa vendor prefixes Beniamino Galvani
  2014-05-06 17:10 ` [PATCH v2 2/2] ARM: dts: rockchip: add root compatible properties Beniamino Galvani
  2014-05-06 17:24 ` [PATCH v2 1/2] of: add mundoreader and radxa vendor prefixes Rob Herring
@ 2014-05-16 10:09 ` Heiko Stübner
  2 siblings, 0 replies; 5+ messages in thread
From: Heiko Stübner @ 2014-05-16 10:09 UTC (permalink / raw)
  To: Beniamino Galvani
  Cc: Matthias Brugger, devicetree, linux-arm-kernel, linux-doc,
	linux-kernel, Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell,
	Kumar Gala

Hi Beniamino,

Am Dienstag, 6. Mai 2014, 19:10:10 schrieb Beniamino Galvani:
> Add new vendor prefixes for:
> 
>     * Mundo Reader S.L., a company that produces tablets and e-readers
>     * Radxa, manufacturer of ARM boards
> 
> Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>

Just FYI, I've sent both patches off, as part of my dt changes pull request on 
monday.


Heiko

> ---
> 
> v2:
>  - use mundoreader prefix instead of bq as suggested by Heiko Stuebner
> 
>  Documentation/devicetree/bindings/vendor-prefixes.txt |    2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt
> b/Documentation/devicetree/bindings/vendor-prefixes.txt index
> abc3080..53bd92f 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
> @@ -79,6 +79,7 @@ microchip	Microchip Technology Inc.
>  mosaixtech	Mosaix Technologies, Inc.
>  moxa	Moxa
>  mpl	MPL AG
> +mundoreader	Mundo Reader S.L.
>  mxicy	Macronix International Co., Ltd.
>  national	National Semiconductor
>  neonode		Neonode Inc.
> @@ -98,6 +99,7 @@ powervr	PowerVR (deprecated, use img)
>  qca	Qualcomm Atheros, Inc.
>  qcom	Qualcomm Technologies, Inc
>  qnap	QNAP Systems, Inc.
> +radxa	Radxa
>  raidsonic	RaidSonic Technology GmbH
>  ralink	Mediatek/Ralink Technology Corp.
>  ramtron	Ramtron International


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-05-16 10:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-06 17:10 [PATCH v2 1/2] of: add mundoreader and radxa vendor prefixes Beniamino Galvani
2014-05-06 17:10 ` [PATCH v2 2/2] ARM: dts: rockchip: add root compatible properties Beniamino Galvani
     [not found]   ` <1399396211-25353-2-git-send-email-b.galvani-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-05-06 17:23     ` Rob Herring
2014-05-06 17:24 ` [PATCH v2 1/2] of: add mundoreader and radxa vendor prefixes Rob Herring
2014-05-16 10:09 ` Heiko Stübner

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).