public inbox for linux-i2c@vger.kernel.org
 help / color / mirror / Atom feed
* OF support for tsc2007
@ 2009-05-01 15:05 Gary Thomas
       [not found] ` <49FB0FAE.3080609-kIKI1E8EpGZWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Gary Thomas @ 2009-05-01 15:05 UTC (permalink / raw)
  To: linux-i2c-u79uwXL29TY76Z2rM5mHXA

I'm trying to use the TSC2007 (actually TSC2003) on a PowerPC
based platform.  Sadly, the current driver (as of .30-rc4)
does not seem to be OF aware.

Jon Smirl on the PPC list suggested I ask here.

Any help or ideas?

n.b. at the moment, I'm not subscribed to this list, so please
CC me on any replies.

Thanks

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------

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

* Re: OF support for tsc2007
       [not found] ` <49FB0FAE.3080609-kIKI1E8EpGZWk0Htik3J/w@public.gmane.org>
@ 2009-05-01 15:43   ` Jon Smirl
       [not found]     ` <9e4733910905010843u13c03eb5q9daef91842c1f08a-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Jon Smirl @ 2009-05-01 15:43 UTC (permalink / raw)
  To: Gary Thomas; +Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA

On Fri, May 1, 2009 at 11:05 AM, Gary Thomas <gary-kIKI1E8EpGZWk0Htik3J/w@public.gmane.org> wrote:
> I'm trying to use the TSC2007 (actually TSC2003) on a PowerPC
> based platform.  Sadly, the current driver (as of .30-rc4)
> does not seem to be OF aware.
>
> Jon Smirl on the PPC list suggested I ask here.

I thought you said it was an old-style driver that hadn't been
converted to new style?

i2c drivers don't need to be OF aware.  The code in
drivers/of/of_i2c.c set things up for you.
You need a driver tree entry like this:

		i2c@3d40 {
			#address-cells = <1>;
			#size-cells = <0>;
			compatible = "fsl,mpc5200b-i2c","fsl,mpc5200-i2c","fsl-i2c";
			cell-index = <1>;
			reg = <0x3d40 0x40>;
			interrupts = <0x2 0x10 0x0>;
			interrupt-parent = <&mpc5200_pic>;
			fsl5200-clocking;

			rtc@51 {
				device_type = "rtc";
				compatible = "epson,rtc8564";
				reg = <0x51>;
			};
			eeprom@52 {
				compatible = "atmel,24c32", "eeprom";
				reg = <0x52>;
			};
		};




>
> Any help or ideas?
>
> n.b. at the moment, I'm not subscribed to this list, so please
> CC me on any replies.
>
> Thanks
>
> --
> ------------------------------------------------------------
> Gary Thomas                 |  Consulting for the
> MLB Associates              |    Embedded world
> ------------------------------------------------------------
> --
> To unsubscribe from this list: send the line "unsubscribe linux-i2c" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>



-- 
Jon Smirl
jonsmirl-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org

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

* Re: OF support for tsc2007
       [not found]     ` <9e4733910905010843u13c03eb5q9daef91842c1f08a-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2009-05-01 15:49       ` Gary Thomas
  0 siblings, 0 replies; 3+ messages in thread
From: Gary Thomas @ 2009-05-01 15:49 UTC (permalink / raw)
  To: Jon Smirl; +Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA

Jon Smirl wrote:
> On Fri, May 1, 2009 at 11:05 AM, Gary Thomas <gary-kIKI1E8EpGZWk0Htik3J/w@public.gmane.org> wrote:
>> I'm trying to use the TSC2007 (actually TSC2003) on a PowerPC
>> based platform.  Sadly, the current driver (as of .30-rc4)
>> does not seem to be OF aware.
>>
>> Jon Smirl on the PPC list suggested I ask here.
> 
> I thought you said it was an old-style driver that hadn't been
> converted to new style?
> 
> i2c drivers don't need to be OF aware.  The code in
> drivers/of/of_i2c.c set things up for you.
> You need a driver tree entry like this:
> 
> 		i2c@3d40 {
> 			#address-cells = <1>;
> 			#size-cells = <0>;
> 			compatible = "fsl,mpc5200b-i2c","fsl,mpc5200-i2c","fsl-i2c";
> 			cell-index = <1>;
> 			reg = <0x3d40 0x40>;
> 			interrupts = <0x2 0x10 0x0>;
> 			interrupt-parent = <&mpc5200_pic>;
> 			fsl5200-clocking;
> 
> 			rtc@51 {
> 				device_type = "rtc";
> 				compatible = "epson,rtc8564";
> 				reg = <0x51>;
> 			};
> 			eeprom@52 {
> 				compatible = "atmel,24c32", "eeprom";
> 				reg = <0x52>;
> 			};
> 		};
> 
> 
> 
> 
>> Any help or ideas?
>>
>> n.b. at the moment, I'm not subscribed to this list, so please
>> CC me on any replies.

My question remains; how do I provide the platform_data this
driver wants on an OF based platform?

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------

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

end of thread, other threads:[~2009-05-01 15:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-01 15:05 OF support for tsc2007 Gary Thomas
     [not found] ` <49FB0FAE.3080609-kIKI1E8EpGZWk0Htik3J/w@public.gmane.org>
2009-05-01 15:43   ` Jon Smirl
     [not found]     ` <9e4733910905010843u13c03eb5q9daef91842c1f08a-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-01 15:49       ` Gary Thomas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox