Re: [OpenWrt-Devel] [PATCH] usb ehci driver for ssb

2008-06-06 Thread Michael Buesch
On Friday 06 June 2008 06:37:49 Steve Brown wrote: > I will switch things around so the ohci driver calls the ehci driver. I > will remove the ssb register/unregister calls in ehci-hcd and add calls > from to attach, detach, suspend and resume from ohci to ehci. > > It's probably safe to assume

Re: [OpenWrt-Devel] [PATCH] usb ehci driver for ssb

2008-06-05 Thread Steve Brown
Michael Buesch wrote: > On Wednesday 04 June 2008 23:56:36 Steve Brown wrote: > >> Here is another cut at an ssb ehci driver. >> >> Hope this is closer. >> >> Steve >> >> >> > > Ok, looks a lot better. Thanks. > But I'm still not sure on the "companion" pointer. > I think it should probably

Re: [OpenWrt-Devel] [PATCH] usb ehci driver for ssb

2008-06-05 Thread Michael Buesch
On Wednesday 04 June 2008 23:56:36 Steve Brown wrote: > Here is another cut at an ssb ehci driver. > > Hope this is closer. > > Steve > > Ok, looks a lot better. Thanks. But I'm still not sure on the "companion" pointer. I think it should probably live in struct ssb_ehci_device. My intention

Re: [OpenWrt-Devel] [PATCH] usb ehci driver for ssb

2008-06-04 Thread Steve Brown
Here is another cut at an ssb ehci driver. Hope this is closer. Steve diff --git a/target/linux/brcm47xx/config-2.6.25 b/target/linux/brcm47xx/config-2.6.25 index 6ddcd22..720d961 100644 --- a/target/linux/brcm47xx/config-2.6.25 +++ b/target/linux/brcm47xx/config-2.6.25 @@ -257,10 +257,13 @@ CO

Re: [OpenWrt-Devel] [PATCH] usb ehci driver for ssb

2008-06-04 Thread Felipe Maya
EVTABLE_END }; MODULE_DEVICE_TABLE(ssb, ssb_ohci_table); @@ -212,3 +310,4 @@ .suspend= ssb_ohci_suspend, .resume = ssb_ohci_resume, }; + ---- Mensagem Original From: "Michael Buesch" <[EMAIL PROTECTED]> To: openwrt-devel@lists.openwrt

Re: [OpenWrt-Devel] [PATCH] usb ehci driver for ssb

2008-06-03 Thread Steve Brown
Michael Buesch wrote: > On Monday 02 June 2008 23:30:52 Steve Brown wrote: > >> This patch adds a ssb ehci driver as well as support for ssb >> multifunction cores. >> >> It is needed to use the ehci function in the BCM5354's USB2 core. >> >> See https://dev.openwrt.org/ticket/3365 and >> http:

Re: [OpenWrt-Devel] [PATCH] usb ehci driver for ssb

2008-06-03 Thread Michael Buesch
On Tuesday 03 June 2008 17:56:10 Felipe Maya wrote: > The kernel 2.6.26 has these changes and seem to work well No it doesn't have these changes. -- Greetings Michael. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org http://lists.openwrt.

Re: [OpenWrt-Devel] [PATCH] usb ehci driver for ssb

2008-06-03 Thread Felipe Maya
The kernel 2.6.26 has these changes and seem to work well Mensagem Original From: "Michael Buesch" <[EMAIL PROTECTED]> To: openwrt-devel@lists.openwrt.org Sent: Ter, Junho 3, 2008 12:22 pm Subject: Re: [OpenWrt-Devel] [PATCH] usb ehci driver for ssb On Monday 02 Ju

Re: [OpenWrt-Devel] [PATCH] usb ehci driver for ssb

2008-06-03 Thread Michael Buesch
On Monday 02 June 2008 23:30:52 Steve Brown wrote: > This patch adds a ssb ehci driver as well as support for ssb > multifunction cores. > > It is needed to use the ehci function in the BCM5354's USB2 core. > > See https://dev.openwrt.org/ticket/3365 and > http://forum.openwrt.org/viewtopic.php?

[OpenWrt-Devel] [PATCH] usb ehci driver for ssb

2008-06-02 Thread Steve Brown
This patch adds a ssb ehci driver as well as support for ssb multifunction cores. It is needed to use the ehci function in the BCM5354's USB2 core. See https://dev.openwrt.org/ticket/3365 and http://forum.openwrt.org/viewtopic.php?id=15106&p=2 for reports of independent testing. Signed-off-b