linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs
@ 2018-09-28  5:25 Vignesh R
  2018-09-28  5:25 ` [PATCH v2 1/2] dt-bindings: i2c-omap: Add new compatible " Vignesh R
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Vignesh R @ 2018-09-28  5:25 UTC (permalink / raw)
  To: Rob Herring, Wolfram Sang
  Cc: Vignesh R, Sekhar Nori, Nishanth Menon, Peter Rosin, linux-i2c,
	devicetree, linux-kernel, linux-arm-kernel

Couple of patches to enable i2c-omap driver to be used with TI's new
AM654 platforms.


Vignesh R (2):
  dt-bindings: i2c-omap: Add new compatible for AM654 SoCs
  i2c: busses: Kconfig: Enable I2C_OMAP for ARCH_K3

 Documentation/devicetree/bindings/i2c/i2c-omap.txt | 8 ++++++--
 drivers/i2c/busses/Kconfig                         | 2 +-
 2 files changed, 7 insertions(+), 3 deletions(-)

-- 
2.19.0


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

* [PATCH v2 1/2] dt-bindings: i2c-omap: Add new compatible for AM654 SoCs
  2018-09-28  5:25 [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs Vignesh R
@ 2018-09-28  5:25 ` Vignesh R
  2018-10-12 19:33   ` Rob Herring
  2018-09-28  5:25 ` [PATCH v2 2/2] i2c: busses: Kconfig: Enable I2C_OMAP for ARCH_K3 Vignesh R
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Vignesh R @ 2018-09-28  5:25 UTC (permalink / raw)
  To: Rob Herring, Wolfram Sang
  Cc: Vignesh R, Sekhar Nori, Nishanth Menon, Peter Rosin, linux-i2c,
	devicetree, linux-kernel, linux-arm-kernel

AM654 SoCs have same I2C IP as OMAP SoCs. Add new compatible to
handle AM654 SoCs. While at that reformat the existing compatible list
for older SoCs to list one valid compatible per line.

Signed-off-by: Vignesh R <vigneshr@ti.com>
---

v2: Reformat compatible existing compatible list.

 Documentation/devicetree/bindings/i2c/i2c-omap.txt | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/i2c/i2c-omap.txt b/Documentation/devicetree/bindings/i2c/i2c-omap.txt
index 7e49839d4124..4b90ba9f31b7 100644
--- a/Documentation/devicetree/bindings/i2c/i2c-omap.txt
+++ b/Documentation/devicetree/bindings/i2c/i2c-omap.txt
@@ -1,8 +1,12 @@
 I2C for OMAP platforms
 
 Required properties :
-- compatible : Must be "ti,omap2420-i2c", "ti,omap2430-i2c", "ti,omap3-i2c"
-  or "ti,omap4-i2c"
+- compatible : Must be
+	"ti,omap2420-i2c" for OMAP2420 SoCs
+	"ti,omap2430-i2c" for OMAP2430 SoCs
+	"ti,omap3-i2c" for OMAP3 SoCs
+	"ti,omap4-i2c" for OMAP4+ SoCs
+	"ti,am654-i2c", "ti,omap4-i2c" for AM654 SoCs
 - ti,hwmods : Must be "i2c<n>", n being the instance number (1-based)
 - #address-cells = <1>;
 - #size-cells = <0>;
-- 
2.19.0


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

* [PATCH v2 2/2] i2c: busses: Kconfig: Enable I2C_OMAP for ARCH_K3
  2018-09-28  5:25 [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs Vignesh R
  2018-09-28  5:25 ` [PATCH v2 1/2] dt-bindings: i2c-omap: Add new compatible " Vignesh R
@ 2018-09-28  5:25 ` Vignesh R
  2018-10-20  7:53 ` [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs Vignesh R
  2018-11-01 16:18 ` Grygorii Strashko
  3 siblings, 0 replies; 8+ messages in thread
From: Vignesh R @ 2018-09-28  5:25 UTC (permalink / raw)
  To: Rob Herring, Wolfram Sang
  Cc: Vignesh R, Sekhar Nori, Nishanth Menon, Peter Rosin, linux-i2c,
	devicetree, linux-kernel, linux-arm-kernel

Allow I2C_OMAP to be built for K3 platforms.

Signed-off-by: Vignesh R <vigneshr@ti.com>
---

v2: No changes

 drivers/i2c/busses/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
index 451d4ae50e66..ac4b09642f63 100644
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -751,7 +751,7 @@ config I2C_OCORES
 
 config I2C_OMAP
 	tristate "OMAP I2C adapter"
-	depends on ARCH_OMAP
+	depends on ARCH_OMAP || ARCH_K3
 	default y if MACH_OMAP_H3 || MACH_OMAP_OSK
 	help
 	  If you say yes to this option, support will be included for the
-- 
2.19.0


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

* Re: [PATCH v2 1/2] dt-bindings: i2c-omap: Add new compatible for AM654 SoCs
  2018-09-28  5:25 ` [PATCH v2 1/2] dt-bindings: i2c-omap: Add new compatible " Vignesh R
@ 2018-10-12 19:33   ` Rob Herring
  0 siblings, 0 replies; 8+ messages in thread
From: Rob Herring @ 2018-10-12 19:33 UTC (permalink / raw)
  To: Vignesh R
  Cc: Wolfram Sang, Vignesh R, Sekhar Nori, Nishanth Menon,
	Peter Rosin, linux-i2c, devicetree, linux-kernel,
	linux-arm-kernel

On Fri, 28 Sep 2018 10:55:56 +0530, Vignesh R wrote:
> AM654 SoCs have same I2C IP as OMAP SoCs. Add new compatible to
> handle AM654 SoCs. While at that reformat the existing compatible list
> for older SoCs to list one valid compatible per line.
> 
> Signed-off-by: Vignesh R <vigneshr@ti.com>
> ---
> 
> v2: Reformat compatible existing compatible list.
> 
>  Documentation/devicetree/bindings/i2c/i2c-omap.txt | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 

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

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

* Re: [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs
  2018-09-28  5:25 [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs Vignesh R
  2018-09-28  5:25 ` [PATCH v2 1/2] dt-bindings: i2c-omap: Add new compatible " Vignesh R
  2018-09-28  5:25 ` [PATCH v2 2/2] i2c: busses: Kconfig: Enable I2C_OMAP for ARCH_K3 Vignesh R
@ 2018-10-20  7:53 ` Vignesh R
  2018-10-28 22:34   ` Wolfram Sang
  2018-11-01 16:18 ` Grygorii Strashko
  3 siblings, 1 reply; 8+ messages in thread
From: Vignesh R @ 2018-10-20  7:53 UTC (permalink / raw)
  To: Rob Herring, Wolfram Sang
  Cc: Sekhar Nori, Nishanth Menon, Peter Rosin, linux-i2c, devicetree,
	linux-kernel, linux-arm-kernel



On 28-Sep-18 10:55 AM, Vignesh R wrote:
> Couple of patches to enable i2c-omap driver to be used with TI's new
> AM654 platforms.
> 
> 
> Vignesh R (2):
>   dt-bindings: i2c-omap: Add new compatible for AM654 SoCs
>   i2c: busses: Kconfig: Enable I2C_OMAP for ARCH_K3
> 
>  Documentation/devicetree/bindings/i2c/i2c-omap.txt | 8 ++++++--
>  drivers/i2c/busses/Kconfig                         | 2 +-
>  2 files changed, 7 insertions(+), 3 deletions(-)
> 

Gentle ping...

Regards
Vignesh

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

* Re: [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs
  2018-10-20  7:53 ` [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs Vignesh R
@ 2018-10-28 22:34   ` Wolfram Sang
  2018-11-07 17:01     ` Vignesh R
  0 siblings, 1 reply; 8+ messages in thread
From: Wolfram Sang @ 2018-10-28 22:34 UTC (permalink / raw)
  To: Vignesh R
  Cc: Rob Herring, Wolfram Sang, Sekhar Nori, Nishanth Menon,
	Peter Rosin, linux-i2c, devicetree, linux-kernel,
	linux-arm-kernel

[-- Attachment #1: Type: text/plain, Size: 729 bytes --]

On Sat, Oct 20, 2018 at 01:23:40PM +0530, Vignesh R wrote:
> 
> 
> On 28-Sep-18 10:55 AM, Vignesh R wrote:
> > Couple of patches to enable i2c-omap driver to be used with TI's new
> > AM654 platforms.
> > 
> > 
> > Vignesh R (2):
> >   dt-bindings: i2c-omap: Add new compatible for AM654 SoCs
> >   i2c: busses: Kconfig: Enable I2C_OMAP for ARCH_K3
> > 
> >  Documentation/devicetree/bindings/i2c/i2c-omap.txt | 8 ++++++--
> >  drivers/i2c/busses/Kconfig                         | 2 +-
> >  2 files changed, 7 insertions(+), 3 deletions(-)
> > 
> 
> Gentle ping...

Maintainer tags are missing. Tony is listed for this driver on OMAP2+.
Is this his realm? Do we need a specific maintainer for this driver?


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

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

* Re: [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs
  2018-09-28  5:25 [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs Vignesh R
                   ` (2 preceding siblings ...)
  2018-10-20  7:53 ` [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs Vignesh R
@ 2018-11-01 16:18 ` Grygorii Strashko
  3 siblings, 0 replies; 8+ messages in thread
From: Grygorii Strashko @ 2018-11-01 16:18 UTC (permalink / raw)
  To: Vignesh R, Rob Herring, Wolfram Sang
  Cc: Sekhar Nori, Nishanth Menon, Peter Rosin, linux-i2c, devicetree,
	linux-kernel, linux-arm-kernel



On 9/28/18 12:25 AM, Vignesh R wrote:
> Couple of patches to enable i2c-omap driver to be used with TI's new
> AM654 platforms.
> 
> 
> Vignesh R (2):
>    dt-bindings: i2c-omap: Add new compatible for AM654 SoCs
>    i2c: busses: Kconfig: Enable I2C_OMAP for ARCH_K3
> 
>   Documentation/devicetree/bindings/i2c/i2c-omap.txt | 8 ++++++--
>   drivers/i2c/busses/Kconfig                         | 2 +-
>   2 files changed, 7 insertions(+), 3 deletions(-)
> 

Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>

-- 
regards,
-grygorii

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

* Re: [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs
  2018-10-28 22:34   ` Wolfram Sang
@ 2018-11-07 17:01     ` Vignesh R
  0 siblings, 0 replies; 8+ messages in thread
From: Vignesh R @ 2018-11-07 17:01 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Rob Herring, Wolfram Sang, Nori, Sekhar, Menon, Nishanth,
	Peter Rosin, linux-i2c, devicetree, linux-kernel,
	linux-arm-kernel, Tony Lindgren


On 29/10/18 4:04 AM, Wolfram Sang wrote:
> On Sat, Oct 20, 2018 at 01:23:40PM +0530, Vignesh R wrote:
>>
>>
>> On 28-Sep-18 10:55 AM, Vignesh R wrote:
>>> Couple of patches to enable i2c-omap driver to be used with TI's new
>>> AM654 platforms.
>>>
>>>
>>> Vignesh R (2):
>>>   dt-bindings: i2c-omap: Add new compatible for AM654 SoCs
>>>   i2c: busses: Kconfig: Enable I2C_OMAP for ARCH_K3
>>>
>>>  Documentation/devicetree/bindings/i2c/i2c-omap.txt | 8 ++++++--
>>>  drivers/i2c/busses/Kconfig                         | 2 +-
>>>  2 files changed, 7 insertions(+), 3 deletions(-)
>>>
>>
>> Gentle ping...
> 
> Maintainer tags are missing. Tony is listed for this driver on OMAP2+.
> Is this his realm? Do we need a specific maintainer for this driver?
> 

I think this driver needs a separate entry, will send a patch adding my
name as reviewer for this driver.

-- 
Regards
Vignesh

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

end of thread, other threads:[~2018-11-07 17:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-28  5:25 [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs Vignesh R
2018-09-28  5:25 ` [PATCH v2 1/2] dt-bindings: i2c-omap: Add new compatible " Vignesh R
2018-10-12 19:33   ` Rob Herring
2018-09-28  5:25 ` [PATCH v2 2/2] i2c: busses: Kconfig: Enable I2C_OMAP for ARCH_K3 Vignesh R
2018-10-20  7:53 ` [PATCH v2 0/2] i2c-omap: Enable i2c-omap driver for AM654 SoCs Vignesh R
2018-10-28 22:34   ` Wolfram Sang
2018-11-07 17:01     ` Vignesh R
2018-11-01 16:18 ` Grygorii Strashko

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