devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/4] use correct compatibles for the nxp,se97b chips
@ 2018-01-16 16:06 Peter Rosin
  2018-01-16 16:06 ` [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically Peter Rosin
                   ` (3 more replies)
  0 siblings, 4 replies; 20+ messages in thread
From: Peter Rosin @ 2018-01-16 16:06 UTC (permalink / raw)
  To: linux-kernel
  Cc: Mark Rutland, devicetree, Bartosz Golaszewski, Russell King,
	Rob Herring, Alexandre Belloni, linux-i2c, Peter Rosin,
	linux-arm-kernel

Hi!

The TSE-850 and the Nattis are using se97b chips from NXP. Previously,
these have been specified as compatible to "nxp,24c02". But the updated
bindings for the at24 eeproms makes me think that the right thing to
do is to have their compatible be

   "nxp,se97b", "atmel,24c02"

This series takes care of that, and throws in a sorting patch while at it.

Cheers,
Peter

Peter Rosin (4):
  dt-bindings: at24: sort manufacturers alphabetically
  dt-bindings: at24: add compatible for nxp,se97b
  ARM: dts: at91: nattis: use the correct compatible for the eeprom
  ARM: dts: at91: tse850: use the correct compatible for the eeprom

 Documentation/devicetree/bindings/eeprom/at24.txt | 3 ++-
 arch/arm/boot/dts/at91-nattis-2-natte-2.dts       | 2 +-
 arch/arm/boot/dts/at91-tse850-3.dts               | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

-- 
2.11.0

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

* [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
  2018-01-16 16:06 [PATCH 0/4] use correct compatibles for the nxp,se97b chips Peter Rosin
@ 2018-01-16 16:06 ` Peter Rosin
  2018-01-16 17:26   ` Bartosz Golaszewski
                     ` (2 more replies)
  2018-01-16 16:06 ` [PATCH 2/4] dt-bindings: at24: add compatible for nxp,se97b Peter Rosin
                   ` (2 subsequent siblings)
  3 siblings, 3 replies; 20+ messages in thread
From: Peter Rosin @ 2018-01-16 16:06 UTC (permalink / raw)
  To: linux-kernel
  Cc: Peter Rosin, Bartosz Golaszewski, Rob Herring, Mark Rutland,
	Nicolas Ferre, Alexandre Belloni, Russell King, linux-i2c,
	devicetree, linux-arm-kernel

Makes them easier to find.

Signed-off-by: Peter Rosin <peda@axentia.se>
---
 Documentation/devicetree/bindings/eeprom/at24.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/eeprom/at24.txt b/Documentation/devicetree/bindings/eeprom/at24.txt
index 1812c848e369..abfae1beca2b 100644
--- a/Documentation/devicetree/bindings/eeprom/at24.txt
+++ b/Documentation/devicetree/bindings/eeprom/at24.txt
@@ -38,9 +38,9 @@ Required properties:
 
                 "catalyst",
                 "microchip",
+                "nxp",
                 "ramtron",
                 "renesas",
-                "nxp",
                 "st",
 
                 Some vendors use different model names for chips which are just
-- 
2.11.0

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

* [PATCH 2/4] dt-bindings: at24: add compatible for nxp,se97b
  2018-01-16 16:06 [PATCH 0/4] use correct compatibles for the nxp,se97b chips Peter Rosin
  2018-01-16 16:06 ` [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically Peter Rosin
@ 2018-01-16 16:06 ` Peter Rosin
  2018-01-16 17:26   ` Bartosz Golaszewski
                     ` (2 more replies)
  2018-01-16 16:06 ` [PATCH 3/4] ARM: dts: at91: nattis: use the correct compatible for the eeprom Peter Rosin
  2018-01-16 16:06 ` [PATCH 4/4] ARM: dts: at91: tse850: " Peter Rosin
  3 siblings, 3 replies; 20+ messages in thread
From: Peter Rosin @ 2018-01-16 16:06 UTC (permalink / raw)
  To: linux-kernel
  Cc: Mark Rutland, devicetree, Bartosz Golaszewski, Russell King,
	Rob Herring, Alexandre Belloni, linux-i2c, Peter Rosin,
	linux-arm-kernel

The datasheet talks about the chip being an spd, but the chip is writable
so atmel,24c02 is more appropriate as fallback.

Signed-off-by: Peter Rosin <peda@axentia.se>
---
 Documentation/devicetree/bindings/eeprom/at24.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/eeprom/at24.txt b/Documentation/devicetree/bindings/eeprom/at24.txt
index abfae1beca2b..edf9247613f6 100644
--- a/Documentation/devicetree/bindings/eeprom/at24.txt
+++ b/Documentation/devicetree/bindings/eeprom/at24.txt
@@ -46,6 +46,7 @@ Required properties:
                 Some vendors use different model names for chips which are just
                 variants of the above. Known such exceptions are listed below:
 
+                "nxp,se97b" - the fallback is "atmel,24c02",
                 "renesas,r1ex24002" - the fallback is "atmel,24c02"
 
   - reg: The I2C address of the EEPROM.
-- 
2.11.0

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

* [PATCH 3/4] ARM: dts: at91: nattis: use the correct compatible for the eeprom
  2018-01-16 16:06 [PATCH 0/4] use correct compatibles for the nxp,se97b chips Peter Rosin
  2018-01-16 16:06 ` [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically Peter Rosin
  2018-01-16 16:06 ` [PATCH 2/4] dt-bindings: at24: add compatible for nxp,se97b Peter Rosin
@ 2018-01-16 16:06 ` Peter Rosin
  2018-01-30 22:15   ` Alexandre Belloni
  2018-01-16 16:06 ` [PATCH 4/4] ARM: dts: at91: tse850: " Peter Rosin
  3 siblings, 1 reply; 20+ messages in thread
From: Peter Rosin @ 2018-01-16 16:06 UTC (permalink / raw)
  To: linux-kernel
  Cc: Peter Rosin, Bartosz Golaszewski, Rob Herring, Mark Rutland,
	Nicolas Ferre, Alexandre Belloni, Russell King, linux-i2c,
	devicetree, linux-arm-kernel

The used part does contain an eeprom compatible with an Atmel 24c02
chip and it is from NXP, but it is not called 24c02. It's actually a
se97b chip. Adjust the compatible accordingly.

Fixes: 0e4323899973 ("ARM: dts: at91: add devicetree for the Axentia Nattis with Natte power")
Signed-off-by: Peter Rosin <peda@axentia.se>
---
 arch/arm/boot/dts/at91-nattis-2-natte-2.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/at91-nattis-2-natte-2.dts b/arch/arm/boot/dts/at91-nattis-2-natte-2.dts
index 3ea1d26e1c68..c457eff25911 100644
--- a/arch/arm/boot/dts/at91-nattis-2-natte-2.dts
+++ b/arch/arm/boot/dts/at91-nattis-2-natte-2.dts
@@ -146,7 +146,7 @@
 	};
 
 	eeprom@50 {
-		compatible = "nxp,24c02";
+		compatible = "nxp,se97b", "atmel,24c02";
 		reg = <0x50>;
 		pagesize = <16>;
 	};
-- 
2.11.0

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

* [PATCH 4/4] ARM: dts: at91: tse850: use the correct compatible for the eeprom
  2018-01-16 16:06 [PATCH 0/4] use correct compatibles for the nxp,se97b chips Peter Rosin
                   ` (2 preceding siblings ...)
  2018-01-16 16:06 ` [PATCH 3/4] ARM: dts: at91: nattis: use the correct compatible for the eeprom Peter Rosin
@ 2018-01-16 16:06 ` Peter Rosin
  2018-01-30 22:15   ` Alexandre Belloni
  3 siblings, 1 reply; 20+ messages in thread
From: Peter Rosin @ 2018-01-16 16:06 UTC (permalink / raw)
  To: linux-kernel
  Cc: Peter Rosin, Bartosz Golaszewski, Rob Herring, Mark Rutland,
	Nicolas Ferre, Alexandre Belloni, Russell King, linux-i2c,
	devicetree, linux-arm-kernel

The used part does contain an eeprom compatible with an Atmel 24c02
chip and it is from NXP, but it is not called 24c02. It's actually a
se97b chip. Adjust the compatible accordingly.

Fixes: 21dd0ece34c2 ("ARM: dts: at91: add devicetree for the Axentia TSE-850")
Signed-off-by: Peter Rosin <peda@axentia.se>
---
 arch/arm/boot/dts/at91-tse850-3.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/at91-tse850-3.dts b/arch/arm/boot/dts/at91-tse850-3.dts
index 9b82cc8843e1..97b227693658 100644
--- a/arch/arm/boot/dts/at91-tse850-3.dts
+++ b/arch/arm/boot/dts/at91-tse850-3.dts
@@ -246,7 +246,7 @@
 	};
 
 	eeprom@50 {
-		compatible = "nxp,24c02", "atmel,24c02";
+		compatible = "nxp,se97b", "atmel,24c02";
 		reg = <0x50>;
 		pagesize = <16>;
 	};
-- 
2.11.0

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

* Re: [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
  2018-01-16 16:06 ` [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically Peter Rosin
@ 2018-01-16 17:26   ` Bartosz Golaszewski
       [not found]   ` <20180116160618.27859-2-peda-koto5C5qi+TLoDKTGw+V6w@public.gmane.org>
  2018-02-28  9:28   ` Bartosz Golaszewski
  2 siblings, 0 replies; 20+ messages in thread
From: Bartosz Golaszewski @ 2018-01-16 17:26 UTC (permalink / raw)
  To: Peter Rosin
  Cc: Linux Kernel Mailing List, Rob Herring, Mark Rutland,
	Nicolas Ferre, Alexandre Belloni, Russell King, linux-i2c,
	devicetree, linux-arm-kernel

2018-01-16 17:06 GMT+01:00 Peter Rosin <peda@axentia.se>:
> Makes them easier to find.
>
> Signed-off-by: Peter Rosin <peda@axentia.se>
> ---
>  Documentation/devicetree/bindings/eeprom/at24.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/eeprom/at24.txt b/Documentation/devicetree/bindings/eeprom/at24.txt
> index 1812c848e369..abfae1beca2b 100644
> --- a/Documentation/devicetree/bindings/eeprom/at24.txt
> +++ b/Documentation/devicetree/bindings/eeprom/at24.txt
> @@ -38,9 +38,9 @@ Required properties:
>
>                  "catalyst",
>                  "microchip",
> +                "nxp",
>                  "ramtron",
>                  "renesas",
> -                "nxp",
>                  "st",
>
>                  Some vendors use different model names for chips which are just
> --
> 2.11.0
>

Acked-by: Bartosz Golaszewski <brgl@bgdev.pl>

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

* Re: [PATCH 2/4] dt-bindings: at24: add compatible for nxp,se97b
  2018-01-16 16:06 ` [PATCH 2/4] dt-bindings: at24: add compatible for nxp,se97b Peter Rosin
@ 2018-01-16 17:26   ` Bartosz Golaszewski
  2018-01-29 16:18   ` Rob Herring
  2018-03-02 10:17   ` Bartosz Golaszewski
  2 siblings, 0 replies; 20+ messages in thread
From: Bartosz Golaszewski @ 2018-01-16 17:26 UTC (permalink / raw)
  To: Peter Rosin
  Cc: Linux Kernel Mailing List, Rob Herring, Mark Rutland,
	Nicolas Ferre, Alexandre Belloni, Russell King, linux-i2c,
	devicetree, linux-arm-kernel

2018-01-16 17:06 GMT+01:00 Peter Rosin <peda@axentia.se>:
> The datasheet talks about the chip being an spd, but the chip is writable
> so atmel,24c02 is more appropriate as fallback.
>
> Signed-off-by: Peter Rosin <peda@axentia.se>
> ---
>  Documentation/devicetree/bindings/eeprom/at24.txt | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/eeprom/at24.txt b/Documentation/devicetree/bindings/eeprom/at24.txt
> index abfae1beca2b..edf9247613f6 100644
> --- a/Documentation/devicetree/bindings/eeprom/at24.txt
> +++ b/Documentation/devicetree/bindings/eeprom/at24.txt
> @@ -46,6 +46,7 @@ Required properties:
>                  Some vendors use different model names for chips which are just
>                  variants of the above. Known such exceptions are listed below:
>
> +                "nxp,se97b" - the fallback is "atmel,24c02",
>                  "renesas,r1ex24002" - the fallback is "atmel,24c02"
>
>    - reg: The I2C address of the EEPROM.
> --
> 2.11.0
>

Acked-by: Bartosz Golaszewski <brgl@bgdev.pl>

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

* Re: [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
       [not found]   ` <20180116160618.27859-2-peda-koto5C5qi+TLoDKTGw+V6w@public.gmane.org>
@ 2018-01-29 16:17     ` Rob Herring
  2018-01-29 16:56       ` Bartosz Golaszewski
  0 siblings, 1 reply; 20+ messages in thread
From: Rob Herring @ 2018-01-29 16:17 UTC (permalink / raw)
  To: Peter Rosin
  Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Mark Rutland,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Bartosz Golaszewski,
	Russell King, Alexandre Belloni,
	linux-i2c-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Tue, Jan 16, 2018 at 05:06:15PM +0100, Peter Rosin wrote:
> Makes them easier to find.
> 
> Signed-off-by: Peter Rosin <peda-koto5C5qi+TLoDKTGw+V6w@public.gmane.org>
> ---
>  Documentation/devicetree/bindings/eeprom/at24.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

This one should go into 4.16. I can apply after rc1 or apply to tree 
with at24.txt changes queued.

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

Rob
--
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] 20+ messages in thread

* Re: [PATCH 2/4] dt-bindings: at24: add compatible for nxp,se97b
  2018-01-16 16:06 ` [PATCH 2/4] dt-bindings: at24: add compatible for nxp,se97b Peter Rosin
  2018-01-16 17:26   ` Bartosz Golaszewski
@ 2018-01-29 16:18   ` Rob Herring
  2018-03-02 10:17   ` Bartosz Golaszewski
  2 siblings, 0 replies; 20+ messages in thread
From: Rob Herring @ 2018-01-29 16:18 UTC (permalink / raw)
  To: Peter Rosin
  Cc: linux-kernel, Mark Rutland, devicetree, Bartosz Golaszewski,
	Russell King, Alexandre Belloni, linux-i2c, linux-arm-kernel

On Tue, Jan 16, 2018 at 05:06:16PM +0100, Peter Rosin wrote:
> The datasheet talks about the chip being an spd, but the chip is writable
> so atmel,24c02 is more appropriate as fallback.
> 
> Signed-off-by: Peter Rosin <peda@axentia.se>
> ---
>  Documentation/devicetree/bindings/eeprom/at24.txt | 1 +
>  1 file changed, 1 insertion(+)

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

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

* Re: [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
  2018-01-29 16:17     ` Rob Herring
@ 2018-01-29 16:56       ` Bartosz Golaszewski
  2018-02-21  9:11         ` Wolfram Sang
  0 siblings, 1 reply; 20+ messages in thread
From: Bartosz Golaszewski @ 2018-01-29 16:56 UTC (permalink / raw)
  To: Rob Herring, Wolfram Sang
  Cc: Peter Rosin, Linux Kernel Mailing List, Mark Rutland, devicetree,
	Russell King, Alexandre Belloni, linux-i2c, Linux ARM

2018-01-29 17:17 GMT+01:00 Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>:
> On Tue, Jan 16, 2018 at 05:06:15PM +0100, Peter Rosin wrote:
>> Makes them easier to find.
>>
>> Signed-off-by: Peter Rosin <peda-koto5C5qi+TLoDKTGw+V6w@public.gmane.org>
>> ---
>>  Documentation/devicetree/bindings/eeprom/at24.txt | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> This one should go into 4.16. I can apply after rc1 or apply to tree
> with at24.txt changes queued.
>
> Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
>
> Rob

Wolfram,

can you take this via the i2c tree for 4.16?

Thanks,
Bartosz
--
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] 20+ messages in thread

* Re: [PATCH 3/4] ARM: dts: at91: nattis: use the correct compatible for the eeprom
  2018-01-16 16:06 ` [PATCH 3/4] ARM: dts: at91: nattis: use the correct compatible for the eeprom Peter Rosin
@ 2018-01-30 22:15   ` Alexandre Belloni
  0 siblings, 0 replies; 20+ messages in thread
From: Alexandre Belloni @ 2018-01-30 22:15 UTC (permalink / raw)
  To: Peter Rosin
  Cc: linux-kernel, Bartosz Golaszewski, Rob Herring, Mark Rutland,
	Nicolas Ferre, Russell King, linux-i2c, devicetree,
	linux-arm-kernel

On 16/01/2018 at 17:06:17 +0100, Peter Rosin wrote:
> The used part does contain an eeprom compatible with an Atmel 24c02
> chip and it is from NXP, but it is not called 24c02. It's actually a
> se97b chip. Adjust the compatible accordingly.
> 
> Fixes: 0e4323899973 ("ARM: dts: at91: add devicetree for the Axentia Nattis with Natte power")
> Signed-off-by: Peter Rosin <peda@axentia.se>
> ---
>  arch/arm/boot/dts/at91-nattis-2-natte-2.dts | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
Applied, thanks.

-- 
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* Re: [PATCH 4/4] ARM: dts: at91: tse850: use the correct compatible for the eeprom
  2018-01-16 16:06 ` [PATCH 4/4] ARM: dts: at91: tse850: " Peter Rosin
@ 2018-01-30 22:15   ` Alexandre Belloni
  0 siblings, 0 replies; 20+ messages in thread
From: Alexandre Belloni @ 2018-01-30 22:15 UTC (permalink / raw)
  To: Peter Rosin
  Cc: linux-kernel, Bartosz Golaszewski, Rob Herring, Mark Rutland,
	Nicolas Ferre, Russell King, linux-i2c, devicetree,
	linux-arm-kernel

On 16/01/2018 at 17:06:18 +0100, Peter Rosin wrote:
> The used part does contain an eeprom compatible with an Atmel 24c02
> chip and it is from NXP, but it is not called 24c02. It's actually a
> se97b chip. Adjust the compatible accordingly.
> 
> Fixes: 21dd0ece34c2 ("ARM: dts: at91: add devicetree for the Axentia TSE-850")
> Signed-off-by: Peter Rosin <peda@axentia.se>
> ---
>  arch/arm/boot/dts/at91-tse850-3.dts | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
Applied, thanks.

-- 
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* Re: [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
  2018-01-29 16:56       ` Bartosz Golaszewski
@ 2018-02-21  9:11         ` Wolfram Sang
  2018-02-21  9:23           ` Bartosz Golaszewski
  0 siblings, 1 reply; 20+ messages in thread
From: Wolfram Sang @ 2018-02-21  9:11 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Mark Rutland, Rob Herring, devicetree, Russell King,
	Linux Kernel Mailing List, Alexandre Belloni, linux-i2c,
	Peter Rosin, Linux ARM


[-- Attachment #1.1: Type: text/plain, Size: 814 bytes --]

On Mon, Jan 29, 2018 at 05:56:52PM +0100, Bartosz Golaszewski wrote:
> 2018-01-29 17:17 GMT+01:00 Rob Herring <robh@kernel.org>:
> > On Tue, Jan 16, 2018 at 05:06:15PM +0100, Peter Rosin wrote:
> >> Makes them easier to find.
> >>
> >> Signed-off-by: Peter Rosin <peda@axentia.se>
> >> ---
> >>  Documentation/devicetree/bindings/eeprom/at24.txt | 2 +-
> >>  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > This one should go into 4.16. I can apply after rc1 or apply to tree
> > with at24.txt changes queued.
> >
> > Acked-by: Rob Herring <robh@kernel.org>
> >
> > Rob
> 
> Wolfram,
> 
> can you take this via the i2c tree for 4.16?

I missed this mail because I leave at24 patches to you now.
Please send pull requests for patches I shall take. Least room for
confusion (I hope).


[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
  2018-02-21  9:11         ` Wolfram Sang
@ 2018-02-21  9:23           ` Bartosz Golaszewski
  2018-02-21  9:40             ` Wolfram Sang
  0 siblings, 1 reply; 20+ messages in thread
From: Bartosz Golaszewski @ 2018-02-21  9:23 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Mark Rutland, Rob Herring, devicetree, Russell King,
	Linux Kernel Mailing List, Alexandre Belloni, linux-i2c,
	Peter Rosin, Linux ARM

2018-02-21 10:11 GMT+01:00 Wolfram Sang <wsa@the-dreams.de>:
> On Mon, Jan 29, 2018 at 05:56:52PM +0100, Bartosz Golaszewski wrote:
>> 2018-01-29 17:17 GMT+01:00 Rob Herring <robh@kernel.org>:
>> > On Tue, Jan 16, 2018 at 05:06:15PM +0100, Peter Rosin wrote:
>> >> Makes them easier to find.
>> >>
>> >> Signed-off-by: Peter Rosin <peda@axentia.se>
>> >> ---
>> >>  Documentation/devicetree/bindings/eeprom/at24.txt | 2 +-
>> >>  1 file changed, 1 insertion(+), 1 deletion(-)
>> >
>> > This one should go into 4.16. I can apply after rc1 or apply to tree
>> > with at24.txt changes queued.
>> >
>> > Acked-by: Rob Herring <robh@kernel.org>
>> >
>> > Rob
>>
>> Wolfram,
>>
>> can you take this via the i2c tree for 4.16?
>
> I missed this mail because I leave at24 patches to you now.
> Please send pull requests for patches I shall take. Least room for
> confusion (I hope).
>

Will do. What about this (http://patchwork.ozlabs.org/patch/867169/)
one? It's part of a bigger series, do you want me to apply it to my
tree and provide you with an immutable branch?

Bart

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

* Re: [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
  2018-02-21  9:23           ` Bartosz Golaszewski
@ 2018-02-21  9:40             ` Wolfram Sang
  2018-02-23  7:52               ` Bartosz Golaszewski
  0 siblings, 1 reply; 20+ messages in thread
From: Wolfram Sang @ 2018-02-21  9:40 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Mark Rutland, Rob Herring, devicetree, Russell King,
	Linux Kernel Mailing List, Alexandre Belloni, linux-i2c,
	Peter Rosin, Linux ARM


[-- Attachment #1.1: Type: text/plain, Size: 579 bytes --]


> Will do. What about this (http://patchwork.ozlabs.org/patch/867169/)
> one? It's part of a bigger series, do you want me to apply it to my
> tree and provide you with an immutable branch?

Well, I would accept it for 4.16 using the "plain new id" rule. So, if
you add it on top of Peter's sorting patch, totally fine by me.

If you want it in v4.17, ok, too. I'd think an immutable branch is not
needed. There is a fallback property in the DTS. So at worst, there will
be a DTS warning during the merge window which will be fixed at rc1 time.

Unless I overlooked something.


[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
  2018-02-21  9:40             ` Wolfram Sang
@ 2018-02-23  7:52               ` Bartosz Golaszewski
  2018-02-23 10:32                 ` Wolfram Sang
  0 siblings, 1 reply; 20+ messages in thread
From: Bartosz Golaszewski @ 2018-02-23  7:52 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Mark Rutland, Rob Herring, devicetree, Russell King,
	Linux Kernel Mailing List, Alexandre Belloni, linux-i2c,
	Peter Rosin, Linux ARM

2018-02-21 10:40 GMT+01:00 Wolfram Sang <wsa@the-dreams.de>:
>
>> Will do. What about this (http://patchwork.ozlabs.org/patch/867169/)
>> one? It's part of a bigger series, do you want me to apply it to my
>> tree and provide you with an immutable branch?
>
> Well, I would accept it for 4.16 using the "plain new id" rule. So, if
> you add it on top of Peter's sorting patch, totally fine by me.
>
> If you want it in v4.17, ok, too. I'd think an immutable branch is not
> needed. There is a fallback property in the DTS. So at worst, there will
> be a DTS warning during the merge window which will be fixed at rc1 time.
>
> Unless I overlooked something.
>

Ok, I'll have some time during the weekend, so I'll send a PR for rc3.

Bart

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

* Re: [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
  2018-02-23  7:52               ` Bartosz Golaszewski
@ 2018-02-23 10:32                 ` Wolfram Sang
  2018-02-23 11:40                   ` Bartosz Golaszewski
  0 siblings, 1 reply; 20+ messages in thread
From: Wolfram Sang @ 2018-02-23 10:32 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Mark Rutland, Rob Herring, devicetree, Russell King,
	Linux Kernel Mailing List, Alexandre Belloni, linux-i2c,
	Peter Rosin, Linux ARM


[-- Attachment #1.1: Type: text/plain, Size: 182 bytes --]


> Ok, I'll have some time during the weekend, so I'll send a PR for rc3.

Well, I am away this weekend, so I just sent out my pull request. But we
can make it for rc4, no problem.


[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
  2018-02-23 10:32                 ` Wolfram Sang
@ 2018-02-23 11:40                   ` Bartosz Golaszewski
  0 siblings, 0 replies; 20+ messages in thread
From: Bartosz Golaszewski @ 2018-02-23 11:40 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Mark Rutland, Rob Herring, devicetree, Russell King,
	Linux Kernel Mailing List, Alexandre Belloni, linux-i2c,
	Peter Rosin, Linux ARM

2018-02-23 11:32 GMT+01:00 Wolfram Sang <wsa@the-dreams.de>:
>
>> Ok, I'll have some time during the weekend, so I'll send a PR for rc3.
>
> Well, I am away this weekend, so I just sent out my pull request. But we
> can make it for rc4, no problem.
>

Yeah, I actually meant rc4.

Bart

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

* Re: [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically
  2018-01-16 16:06 ` [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically Peter Rosin
  2018-01-16 17:26   ` Bartosz Golaszewski
       [not found]   ` <20180116160618.27859-2-peda-koto5C5qi+TLoDKTGw+V6w@public.gmane.org>
@ 2018-02-28  9:28   ` Bartosz Golaszewski
  2 siblings, 0 replies; 20+ messages in thread
From: Bartosz Golaszewski @ 2018-02-28  9:28 UTC (permalink / raw)
  To: Peter Rosin
  Cc: Linux Kernel Mailing List, Rob Herring, Mark Rutland,
	Nicolas Ferre, Alexandre Belloni, Russell King, linux-i2c,
	devicetree, Linux ARM

2018-01-16 17:06 GMT+01:00 Peter Rosin <peda@axentia.se>:
> Makes them easier to find.
>
> Signed-off-by: Peter Rosin <peda@axentia.se>
> ---
>  Documentation/devicetree/bindings/eeprom/at24.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/eeprom/at24.txt b/Documentation/devicetree/bindings/eeprom/at24.txt
> index 1812c848e369..abfae1beca2b 100644
> --- a/Documentation/devicetree/bindings/eeprom/at24.txt
> +++ b/Documentation/devicetree/bindings/eeprom/at24.txt
> @@ -38,9 +38,9 @@ Required properties:
>
>                  "catalyst",
>                  "microchip",
> +                "nxp",
>                  "ramtron",
>                  "renesas",
> -                "nxp",
>                  "st",
>
>                  Some vendors use different model names for chips which are just
> --
> 2.11.0
>

Applied to for-current. Thanks.

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

* Re: [PATCH 2/4] dt-bindings: at24: add compatible for nxp,se97b
  2018-01-16 16:06 ` [PATCH 2/4] dt-bindings: at24: add compatible for nxp,se97b Peter Rosin
  2018-01-16 17:26   ` Bartosz Golaszewski
  2018-01-29 16:18   ` Rob Herring
@ 2018-03-02 10:17   ` Bartosz Golaszewski
  2 siblings, 0 replies; 20+ messages in thread
From: Bartosz Golaszewski @ 2018-03-02 10:17 UTC (permalink / raw)
  To: Peter Rosin
  Cc: Linux Kernel Mailing List, Rob Herring, Mark Rutland,
	Nicolas Ferre, Alexandre Belloni, Russell King, linux-i2c,
	devicetree, Linux ARM

2018-01-16 17:06 GMT+01:00 Peter Rosin <peda@axentia.se>:
> The datasheet talks about the chip being an spd, but the chip is writable
> so atmel,24c02 is more appropriate as fallback.
>
> Signed-off-by: Peter Rosin <peda@axentia.se>
> ---
>  Documentation/devicetree/bindings/eeprom/at24.txt | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/eeprom/at24.txt b/Documentation/devicetree/bindings/eeprom/at24.txt
> index abfae1beca2b..edf9247613f6 100644
> --- a/Documentation/devicetree/bindings/eeprom/at24.txt
> +++ b/Documentation/devicetree/bindings/eeprom/at24.txt
> @@ -46,6 +46,7 @@ Required properties:
>                  Some vendors use different model names for chips which are just
>                  variants of the above. Known such exceptions are listed below:
>
> +                "nxp,se97b" - the fallback is "atmel,24c02",
>                  "renesas,r1ex24002" - the fallback is "atmel,24c02"
>
>    - reg: The I2C address of the EEPROM.
> --
> 2.11.0
>

Applied to for-next, thanks.

Bart

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

end of thread, other threads:[~2018-03-02 10:17 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-16 16:06 [PATCH 0/4] use correct compatibles for the nxp,se97b chips Peter Rosin
2018-01-16 16:06 ` [PATCH 1/4] dt-bindings: at24: sort manufacturers alphabetically Peter Rosin
2018-01-16 17:26   ` Bartosz Golaszewski
     [not found]   ` <20180116160618.27859-2-peda-koto5C5qi+TLoDKTGw+V6w@public.gmane.org>
2018-01-29 16:17     ` Rob Herring
2018-01-29 16:56       ` Bartosz Golaszewski
2018-02-21  9:11         ` Wolfram Sang
2018-02-21  9:23           ` Bartosz Golaszewski
2018-02-21  9:40             ` Wolfram Sang
2018-02-23  7:52               ` Bartosz Golaszewski
2018-02-23 10:32                 ` Wolfram Sang
2018-02-23 11:40                   ` Bartosz Golaszewski
2018-02-28  9:28   ` Bartosz Golaszewski
2018-01-16 16:06 ` [PATCH 2/4] dt-bindings: at24: add compatible for nxp,se97b Peter Rosin
2018-01-16 17:26   ` Bartosz Golaszewski
2018-01-29 16:18   ` Rob Herring
2018-03-02 10:17   ` Bartosz Golaszewski
2018-01-16 16:06 ` [PATCH 3/4] ARM: dts: at91: nattis: use the correct compatible for the eeprom Peter Rosin
2018-01-30 22:15   ` Alexandre Belloni
2018-01-16 16:06 ` [PATCH 4/4] ARM: dts: at91: tse850: " Peter Rosin
2018-01-30 22:15   ` Alexandre Belloni

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