Re: [PATCH try3] lite5200(b) support for i2c

2007-03-05 Thread Kumar Gala

On Mar 5, 2007, at 8:53 AM, Kumar Gala wrote:

>
> On Mar 5, 2007, at 4:53 AM, Sylvain Munaut wrote:
>
>> Domen Puncer wrote:
>>> Add fsl-i2c to mpc5200 i2c node in device tree, and enable FSL_SOC.
>>>
>>> Tested to work with built-in eeprom on lite5200b.
>>>
>>>
>>> Signed-off-by: Domen Puncer <[EMAIL PROTECTED]>
>>>
>> Acked-by: Sylvain Munaut <[EMAIL PROTECTED]>
>>
>>
>> I'll make sure this is included in my next merge batch to Paul.
>
> Driver patches should go via the driver subsystem maintainers and not
> Paul.

Sorry, ignore me.  I was looking at Domen's initial patch which  
touched drivers/i2c/busses/i2c-mpc.c

- k
___
Linuxppc-embedded mailing list
Linuxppc-embedded@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-embedded


Re: [PATCH try3] lite5200(b) support for i2c

2007-03-05 Thread Kumar Gala

On Mar 5, 2007, at 4:53 AM, Sylvain Munaut wrote:

> Domen Puncer wrote:
>> Add fsl-i2c to mpc5200 i2c node in device tree, and enable FSL_SOC.
>>
>> Tested to work with built-in eeprom on lite5200b.
>>
>>
>> Signed-off-by: Domen Puncer <[EMAIL PROTECTED]>
>>
> Acked-by: Sylvain Munaut <[EMAIL PROTECTED]>
>
>
> I'll make sure this is included in my next merge batch to Paul.

Driver patches should go via the driver subsystem maintainers and not  
Paul.

- k


___
Linuxppc-embedded mailing list
Linuxppc-embedded@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-embedded


Re: [PATCH try3] lite5200(b) support for i2c

2007-03-05 Thread Sylvain Munaut
Domen Puncer wrote:
> Add fsl-i2c to mpc5200 i2c node in device tree, and enable FSL_SOC.
>
> Tested to work with built-in eeprom on lite5200b.
>
>
> Signed-off-by: Domen Puncer <[EMAIL PROTECTED]>
>   
Acked-by: Sylvain Munaut <[EMAIL PROTECTED]>


I'll make sure this is included in my next merge batch to Paul.

Sylvain

> ---
> D'oh, of course it makes more sense under PPC_MPC52xx.
>
>  arch/powerpc/Kconfig|1 +
>  arch/powerpc/boot/dts/lite5200.dts  |6 --
>  arch/powerpc/boot/dts/lite5200b.dts |6 --
>  3 files changed, 9 insertions(+), 4 deletions(-)
>
> Index: grant.git/arch/powerpc/Kconfig
> ===
> --- grant.git.orig/arch/powerpc/Kconfig
> +++ grant.git/arch/powerpc/Kconfig
> @@ -434,6 +434,7 @@ config PPC_CHRP
>  
>  config PPC_MPC52xx
>   bool
> + select FSL_SOC
>   default n
>  
>  config PPC_MPC5200
> Index: grant.git/arch/powerpc/boot/dts/lite5200b.dts
> ===
> --- grant.git.orig/arch/powerpc/boot/dts/lite5200b.dts
> +++ grant.git/arch/powerpc/boot/dts/lite5200b.dts
> @@ -323,20 +323,22 @@
>  
>   [EMAIL PROTECTED] {
>   device_type = "i2c";
> - compatible = "mpc5200b-i2c\0mpc5200-i2c";
> + compatible = "mpc5200b-i2c\0mpc5200-i2c\0fsl-i2c";
>   cell-index = <0>;
>   reg = <3d00 40>;
>   interrupts = <2 f 0>;
>   interrupt-parent = <500>;
> + fsl5200-clocking;
>   };
>  
>   [EMAIL PROTECTED] {
>   device_type = "i2c";
> - compatible = "mpc5200b-i2c\0mpc5200-i2c";
> + compatible = "mpc5200b-i2c\0mpc5200-i2c\0fsl-i2c";
>   cell-index = <1>;
>   reg = <3d40 40>;
>   interrupts = <2 10 0>;
>   interrupt-parent = <500>;
> + fsl5200-clocking;
>   };
>   [EMAIL PROTECTED] {
>   device_type = "sram";
> Index: grant.git/arch/powerpc/boot/dts/lite5200.dts
> ===
> --- grant.git.orig/arch/powerpc/boot/dts/lite5200.dts
> +++ grant.git/arch/powerpc/boot/dts/lite5200.dts
> @@ -318,20 +318,22 @@
>  
>   [EMAIL PROTECTED] {
>   device_type = "i2c";
> - compatible = "mpc5200-i2c";
> + compatible = "mpc5200-i2c\0fsl-i2c";
>   cell-index = <0>;
>   reg = <3d00 40>;
>   interrupts = <2 f 0>;
>   interrupt-parent = <500>;
> + fsl5200-clocking;
>   };
>  
>   [EMAIL PROTECTED] {
>   device_type = "i2c";
> - compatible = "mpc5200-i2c";
> + compatible = "mpc5200-i2c\0fsl-i2c";
>   cell-index = <1>;
>   reg = <3d40 40>;
>   interrupts = <2 10 0>;
>   interrupt-parent = <500>;
> + fsl5200-clocking;
>   };
>   [EMAIL PROTECTED] {
>   device_type = "sram";
>
>   

___
Linuxppc-embedded mailing list
Linuxppc-embedded@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-embedded


[PATCH try3] lite5200(b) support for i2c

2007-03-05 Thread Domen Puncer
Add fsl-i2c to mpc5200 i2c node in device tree, and enable FSL_SOC.

Tested to work with built-in eeprom on lite5200b.


Signed-off-by: Domen Puncer <[EMAIL PROTECTED]>

---
D'oh, of course it makes more sense under PPC_MPC52xx.

 arch/powerpc/Kconfig|1 +
 arch/powerpc/boot/dts/lite5200.dts  |6 --
 arch/powerpc/boot/dts/lite5200b.dts |6 --
 3 files changed, 9 insertions(+), 4 deletions(-)

Index: grant.git/arch/powerpc/Kconfig
===
--- grant.git.orig/arch/powerpc/Kconfig
+++ grant.git/arch/powerpc/Kconfig
@@ -434,6 +434,7 @@ config PPC_CHRP
 
 config PPC_MPC52xx
bool
+   select FSL_SOC
default n
 
 config PPC_MPC5200
Index: grant.git/arch/powerpc/boot/dts/lite5200b.dts
===
--- grant.git.orig/arch/powerpc/boot/dts/lite5200b.dts
+++ grant.git/arch/powerpc/boot/dts/lite5200b.dts
@@ -323,20 +323,22 @@
 
[EMAIL PROTECTED] {
device_type = "i2c";
-   compatible = "mpc5200b-i2c\0mpc5200-i2c";
+   compatible = "mpc5200b-i2c\0mpc5200-i2c\0fsl-i2c";
cell-index = <0>;
reg = <3d00 40>;
interrupts = <2 f 0>;
interrupt-parent = <500>;
+   fsl5200-clocking;
};
 
[EMAIL PROTECTED] {
device_type = "i2c";
-   compatible = "mpc5200b-i2c\0mpc5200-i2c";
+   compatible = "mpc5200b-i2c\0mpc5200-i2c\0fsl-i2c";
cell-index = <1>;
reg = <3d40 40>;
interrupts = <2 10 0>;
interrupt-parent = <500>;
+   fsl5200-clocking;
};
[EMAIL PROTECTED] {
device_type = "sram";
Index: grant.git/arch/powerpc/boot/dts/lite5200.dts
===
--- grant.git.orig/arch/powerpc/boot/dts/lite5200.dts
+++ grant.git/arch/powerpc/boot/dts/lite5200.dts
@@ -318,20 +318,22 @@
 
[EMAIL PROTECTED] {
device_type = "i2c";
-   compatible = "mpc5200-i2c";
+   compatible = "mpc5200-i2c\0fsl-i2c";
cell-index = <0>;
reg = <3d00 40>;
interrupts = <2 f 0>;
interrupt-parent = <500>;
+   fsl5200-clocking;
};
 
[EMAIL PROTECTED] {
device_type = "i2c";
-   compatible = "mpc5200-i2c";
+   compatible = "mpc5200-i2c\0fsl-i2c";
cell-index = <1>;
reg = <3d40 40>;
interrupts = <2 10 0>;
interrupt-parent = <500>;
+   fsl5200-clocking;
};
[EMAIL PROTECTED] {
device_type = "sram";
___
Linuxppc-embedded mailing list
Linuxppc-embedded@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-embedded