Re: [PATCH 1/1] i2c: Kconfig: Enable HSI2C for Exynos5 platform

2014-08-04 Thread Wolfram Sang
On Wed, Jun 25, 2014 at 03:32:03PM +0530, Sachin Kamat wrote:
> All Exynos5 platforms have HSI2C controllers and are needed by
> various IPs connected to the boards based on these SoCs. Thus
> select this by default for Exynos5 platforms.
> 
> Signed-off-by: Sachin Kamat 
> Cc: Doug Anderson 

Applied to for-next, thanks!



signature.asc
Description: Digital signature


Re: [PATCH 1/1] i2c: Kconfig: Enable HSI2C for Exynos5 platform

2014-08-01 Thread Wolfram Sang
On Fri, Jul 25, 2014 at 05:06:32PM +0530, Sachin Kamat wrote:
> On Wed, Jul 16, 2014 at 11:10 PM, Wolfram Sang  wrote:
> > On Wed, Jun 25, 2014 at 10:55:31AM -0700, Doug Anderson wrote:
> >> Sachin,
> >>
> >> On Wed, Jun 25, 2014 at 3:02 AM, Sachin Kamat  
> >> wrote:
> >> > All Exynos5 platforms have HSI2C controllers and are needed by
> >> > various IPs connected to the boards based on these SoCs. Thus
> >> > select this by default for Exynos5 platforms.
> >> >
> >> > Signed-off-by: Sachin Kamat 
> >> > Cc: Doug Anderson 
> >> > ---
> >> >  drivers/i2c/busses/Kconfig |4 ++--
> >> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >> >
> >> > diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
> >> > index 9f7d5859cf65..c7918cffe790 100644
> >> > --- a/drivers/i2c/busses/Kconfig
> >> > +++ b/drivers/i2c/busses/Kconfig
> >> > @@ -465,9 +465,9 @@ config I2C_EG20T
> >> >  config I2C_EXYNOS5
> >> > tristate "Exynos5 high-speed I2C driver"
> >> > depends on ARCH_EXYNOS5 && OF
> >> > +   default y
> >> > help
> >> > - Say Y here to include support for high-speed I2C controller in 
> >> > the
> >> > - Exynos5 based Samsung SoCs.
> >> > + High-speed I2C controller on Exynos5 based Samsung SoCs.
> >> >
> >> >  config I2C_GPIO
> >> > tristate "GPIO-based bitbanging I2C"
> >> > --
> >> > 1.7.9.5
> >>
> >> This seems reasonable to me and I will also take the blame for
> >> suggesting this.  It's hard to imagine running a real exynos5 system
> >> without I2C.  One could argue that on an exynos5250 the high speed I2C
> >> controller is not mandatory (since all the ports can be muxed to use
> >> the old controller) but on newer exynos5 products you're expected to
> >> have the main PMIC on one of the i2c ports.  An exynos system without
> >> access to its PMIC will just sorta limp by.
> >>
> >> ...but I've added Arnd to this thread as he expressed some
> >> reservations about this type of thing, so we'll see what he says.
> >
> > Ping. Arnd? I have no strong opinion and would take this patch...
> 
> Wolfram,
> 
> How do you want to proceed with this?

Giving Arnd a last chance to speak, otherwise I'll take it.



signature.asc
Description: Digital signature


Re: [PATCH 1/1] i2c: Kconfig: Enable HSI2C for Exynos5 platform

2014-07-25 Thread Sachin Kamat
On Wed, Jul 16, 2014 at 11:10 PM, Wolfram Sang  wrote:
> On Wed, Jun 25, 2014 at 10:55:31AM -0700, Doug Anderson wrote:
>> Sachin,
>>
>> On Wed, Jun 25, 2014 at 3:02 AM, Sachin Kamat  
>> wrote:
>> > All Exynos5 platforms have HSI2C controllers and are needed by
>> > various IPs connected to the boards based on these SoCs. Thus
>> > select this by default for Exynos5 platforms.
>> >
>> > Signed-off-by: Sachin Kamat 
>> > Cc: Doug Anderson 
>> > ---
>> >  drivers/i2c/busses/Kconfig |4 ++--
>> >  1 file changed, 2 insertions(+), 2 deletions(-)
>> >
>> > diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
>> > index 9f7d5859cf65..c7918cffe790 100644
>> > --- a/drivers/i2c/busses/Kconfig
>> > +++ b/drivers/i2c/busses/Kconfig
>> > @@ -465,9 +465,9 @@ config I2C_EG20T
>> >  config I2C_EXYNOS5
>> > tristate "Exynos5 high-speed I2C driver"
>> > depends on ARCH_EXYNOS5 && OF
>> > +   default y
>> > help
>> > - Say Y here to include support for high-speed I2C controller in 
>> > the
>> > - Exynos5 based Samsung SoCs.
>> > + High-speed I2C controller on Exynos5 based Samsung SoCs.
>> >
>> >  config I2C_GPIO
>> > tristate "GPIO-based bitbanging I2C"
>> > --
>> > 1.7.9.5
>>
>> This seems reasonable to me and I will also take the blame for
>> suggesting this.  It's hard to imagine running a real exynos5 system
>> without I2C.  One could argue that on an exynos5250 the high speed I2C
>> controller is not mandatory (since all the ports can be muxed to use
>> the old controller) but on newer exynos5 products you're expected to
>> have the main PMIC on one of the i2c ports.  An exynos system without
>> access to its PMIC will just sorta limp by.
>>
>> ...but I've added Arnd to this thread as he expressed some
>> reservations about this type of thing, so we'll see what he says.
>
> Ping. Arnd? I have no strong opinion and would take this patch...

Wolfram,

How do you want to proceed with this?

>
>>
>> Reviewed-by: Doug Anderson 



-- 
Regards,
Sachin.
--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 1/1] i2c: Kconfig: Enable HSI2C for Exynos5 platform

2014-07-16 Thread Wolfram Sang
On Wed, Jun 25, 2014 at 10:55:31AM -0700, Doug Anderson wrote:
> Sachin,
> 
> On Wed, Jun 25, 2014 at 3:02 AM, Sachin Kamat  
> wrote:
> > All Exynos5 platforms have HSI2C controllers and are needed by
> > various IPs connected to the boards based on these SoCs. Thus
> > select this by default for Exynos5 platforms.
> >
> > Signed-off-by: Sachin Kamat 
> > Cc: Doug Anderson 
> > ---
> >  drivers/i2c/busses/Kconfig |4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
> > index 9f7d5859cf65..c7918cffe790 100644
> > --- a/drivers/i2c/busses/Kconfig
> > +++ b/drivers/i2c/busses/Kconfig
> > @@ -465,9 +465,9 @@ config I2C_EG20T
> >  config I2C_EXYNOS5
> > tristate "Exynos5 high-speed I2C driver"
> > depends on ARCH_EXYNOS5 && OF
> > +   default y
> > help
> > - Say Y here to include support for high-speed I2C controller in the
> > - Exynos5 based Samsung SoCs.
> > + High-speed I2C controller on Exynos5 based Samsung SoCs.
> >
> >  config I2C_GPIO
> > tristate "GPIO-based bitbanging I2C"
> > --
> > 1.7.9.5
> 
> This seems reasonable to me and I will also take the blame for
> suggesting this.  It's hard to imagine running a real exynos5 system
> without I2C.  One could argue that on an exynos5250 the high speed I2C
> controller is not mandatory (since all the ports can be muxed to use
> the old controller) but on newer exynos5 products you're expected to
> have the main PMIC on one of the i2c ports.  An exynos system without
> access to its PMIC will just sorta limp by.
> 
> ...but I've added Arnd to this thread as he expressed some
> reservations about this type of thing, so we'll see what he says.

Ping. Arnd? I have no strong opinion and would take this patch...

> 
> Reviewed-by: Doug Anderson 


signature.asc
Description: Digital signature


Re: [PATCH 1/1] i2c: Kconfig: Enable HSI2C for Exynos5 platform

2014-06-25 Thread Doug Anderson
Sachin,

On Wed, Jun 25, 2014 at 3:02 AM, Sachin Kamat  wrote:
> All Exynos5 platforms have HSI2C controllers and are needed by
> various IPs connected to the boards based on these SoCs. Thus
> select this by default for Exynos5 platforms.
>
> Signed-off-by: Sachin Kamat 
> Cc: Doug Anderson 
> ---
>  drivers/i2c/busses/Kconfig |4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
> index 9f7d5859cf65..c7918cffe790 100644
> --- a/drivers/i2c/busses/Kconfig
> +++ b/drivers/i2c/busses/Kconfig
> @@ -465,9 +465,9 @@ config I2C_EG20T
>  config I2C_EXYNOS5
> tristate "Exynos5 high-speed I2C driver"
> depends on ARCH_EXYNOS5 && OF
> +   default y
> help
> - Say Y here to include support for high-speed I2C controller in the
> - Exynos5 based Samsung SoCs.
> + High-speed I2C controller on Exynos5 based Samsung SoCs.
>
>  config I2C_GPIO
> tristate "GPIO-based bitbanging I2C"
> --
> 1.7.9.5

This seems reasonable to me and I will also take the blame for
suggesting this.  It's hard to imagine running a real exynos5 system
without I2C.  One could argue that on an exynos5250 the high speed I2C
controller is not mandatory (since all the ports can be muxed to use
the old controller) but on newer exynos5 products you're expected to
have the main PMIC on one of the i2c ports.  An exynos system without
access to its PMIC will just sorta limp by.

...but I've added Arnd to this thread as he expressed some
reservations about this type of thing, so we'll see what he says.

Reviewed-by: Doug Anderson 
--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


RE: [PATCH 1/1] i2c: Kconfig: Enable HSI2C for Exynos5 platform

2014-06-25 Thread Kukjin Kim
Sachin Kamat wrote:
> 
> All Exynos5 platforms have HSI2C controllers and are needed by
> various IPs connected to the boards based on these SoCs. Thus
> select this by default for Exynos5 platforms.
> 
Yeah right, even upcoming exynos5 SoCs have only HS-I2C not I2C ;-)

> Signed-off-by: Sachin Kamat 
> Cc: Doug Anderson 

Acked-by: Kukjin Kim 

Thanks,
Kukjin

> ---
>  drivers/i2c/busses/Kconfig |4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
> index 9f7d5859cf65..c7918cffe790 100644
> --- a/drivers/i2c/busses/Kconfig
> +++ b/drivers/i2c/busses/Kconfig
> @@ -465,9 +465,9 @@ config I2C_EG20T
>  config I2C_EXYNOS5
>   tristate "Exynos5 high-speed I2C driver"
>   depends on ARCH_EXYNOS5 && OF
> + default y
>   help
> -   Say Y here to include support for high-speed I2C controller in the
> -   Exynos5 based Samsung SoCs.
> +   High-speed I2C controller on Exynos5 based Samsung SoCs.
> 
>  config I2C_GPIO
>   tristate "GPIO-based bitbanging I2C"
> --
> 1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 1/1] i2c: Kconfig: Enable HSI2C for Exynos5 platform

2014-06-25 Thread Sachin Kamat
All Exynos5 platforms have HSI2C controllers and are needed by
various IPs connected to the boards based on these SoCs. Thus
select this by default for Exynos5 platforms.

Signed-off-by: Sachin Kamat 
Cc: Doug Anderson 
---
 drivers/i2c/busses/Kconfig |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
index 9f7d5859cf65..c7918cffe790 100644
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -465,9 +465,9 @@ config I2C_EG20T
 config I2C_EXYNOS5
tristate "Exynos5 high-speed I2C driver"
depends on ARCH_EXYNOS5 && OF
+   default y
help
- Say Y here to include support for high-speed I2C controller in the
- Exynos5 based Samsung SoCs.
+ High-speed I2C controller on Exynos5 based Samsung SoCs.
 
 config I2C_GPIO
tristate "GPIO-based bitbanging I2C"
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html