* Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added @ 2009-01-15 15:43 Tony Lindgren 2009-01-15 18:21 ` David Brownell 2009-01-15 22:01 ` David Brownell 0 siblings, 2 replies; 8+ messages in thread From: Tony Lindgren @ 2009-01-15 15:43 UTC (permalink / raw) To: linux-omap Hi all, I've updated our git tree to v2.6.29-rc1, and will start cleaning up code in it by resetting what can be reset to be the same as in the mainline tree. This means that everybody please resend the stuff you want back as patches against the mainline tree! Most likely the stuff I'm removing will require a bit of clean-up work. But cleaning it all up is just way too much work for one person to do, so we take the distributed approach :) I've also added a new branch omap-2.6.28 where we can add few bug fixes until we can tag v2.6.28-omap2. Regards, Tony ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added 2009-01-15 15:43 Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added Tony Lindgren @ 2009-01-15 18:21 ` David Brownell 2009-01-15 22:01 ` David Brownell 1 sibling, 0 replies; 8+ messages in thread From: David Brownell @ 2009-01-15 18:21 UTC (permalink / raw) To: Tony Lindgren; +Cc: linux-omap On Thursday 15 January 2009, Tony Lindgren wrote: > I've updated our git tree to v2.6.29-rc1, CC arch/arm/mach-omap2/usb-musb.o arch/arm/mach-omap2/usb-musb.c:47: error: 'INT_243X_HS_USB_MC' undeclared here (not in a function) arch/arm/mach-omap2/usb-musb.c:51: error: 'INT_243X_HS_USB_DMA' undeclared here (not in a function) make[1]: *** [arch/arm/mach-omap2/usb-musb.o] Error 1 ... just FYI. I won't have time to sort that out for a few hours yet, so if someone else has a patch that'd be good. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added 2009-01-15 15:43 Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added Tony Lindgren 2009-01-15 18:21 ` David Brownell @ 2009-01-15 22:01 ` David Brownell 2009-01-16 7:44 ` Tony Lindgren 1 sibling, 1 reply; 8+ messages in thread From: David Brownell @ 2009-01-15 22:01 UTC (permalink / raw) To: linux-omap On Thursday 15 January 2009, Tony Lindgren wrote: > I've updated our git tree to v2.6.29-rc1, OK, after adding the IRQ patch from Anand, and the appended USB patch (from before the 2.6.29 merge window), it builds. Then when it tries to boot, (a) the HSMMC driver reports "error -110" then chokes, so no root FS; and then (b) MUSB misdetects the high speed hub as full speed then chokes, so no network links either. I'm not thinking (a) relates to the "can't get debounce clock" message, I saw that on earlier code that still booted just fine. That's on a trusty Beagle config. I don't think I'll be upgrading anything else just yet... - Dave ============= CUT HERE Subject: drivers/usb/core/hub.c: fix CONFIG_USB_OTG=y build From: David Brownell <dbrownell@users.sourceforge.net> Carry out the PM-routine interface change in the USB OTG pathway. This was omitted from the earlier interface-change patch by mistake. Signed-off-by: Alan Stern <stern@rowland.harvard.edu> Cc: Greg KH <greg@kroah.com> Cc: Russell King <rmk@arm.linux.org.uk> Cc: Felipe Balbi <felipe.balbi@nokia.com> Cc: Tony Lindgren <tony@atomide.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> --- drivers/usb/core/hub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/usb/core/hub.c~drivers-usb-core-hubc-fix-config_usb_otg=y-build drivers/usb/core/hub.c --- a/drivers/usb/core/hub.c~drivers-usb-core-hubc-fix-config_usb_otg=y-build +++ a/drivers/usb/core/hub.c @@ -1554,7 +1554,7 @@ static int usb_configure_device_otg(stru * (Includes HNP test device.) */ if (udev->bus->b_hnp_enable || udev->bus->is_b_host) { - err = usb_port_suspend(udev); + err = usb_port_suspend(udev, PMSG_SUSPEND); if (err < 0) dev_dbg(&udev->dev, "HNP fail, %d\n", err); } ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added 2009-01-15 22:01 ` David Brownell @ 2009-01-16 7:44 ` Tony Lindgren 2009-01-16 7:59 ` David Brownell 0 siblings, 1 reply; 8+ messages in thread From: Tony Lindgren @ 2009-01-16 7:44 UTC (permalink / raw) To: David Brownell; +Cc: linux-omap * David Brownell <david-b@pacbell.net> [090116 00:03]: > On Thursday 15 January 2009, Tony Lindgren wrote: > > I've updated our git tree to v2.6.29-rc1, > > OK, after adding the IRQ patch from Anand, and the appended > USB patch (from before the 2.6.29 merge window), it builds. > > Then when it tries to boot, (a) the HSMMC driver reports > "error -110" then chokes, so no root FS; and then (b) MUSB > misdetects the high speed hub as full speed then chokes, > so no network links either. I'm not thinking (a) relates > to the "can't get debounce clock" message, I saw that on > earlier code that still booted just fine. Thanks, applied and pushed to l-o tree. > That's on a trusty Beagle config. I don't think I'll be > upgrading anything else just yet... Hmm, that sounds conservative! :) Tony > > - Dave > > > ============= CUT HERE > Subject: drivers/usb/core/hub.c: fix CONFIG_USB_OTG=y build > From: David Brownell <dbrownell@users.sourceforge.net> > > Carry out the PM-routine interface change in the USB OTG pathway. This > was omitted from the earlier interface-change patch by mistake. > > Signed-off-by: Alan Stern <stern@rowland.harvard.edu> > Cc: Greg KH <greg@kroah.com> > Cc: Russell King <rmk@arm.linux.org.uk> > Cc: Felipe Balbi <felipe.balbi@nokia.com> > Cc: Tony Lindgren <tony@atomide.com> > Signed-off-by: Andrew Morton <akpm@linux-foundation.org> > --- > > drivers/usb/core/hub.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff -puN drivers/usb/core/hub.c~drivers-usb-core-hubc-fix-config_usb_otg=y-build drivers/usb/core/hub.c > --- a/drivers/usb/core/hub.c~drivers-usb-core-hubc-fix-config_usb_otg=y-build > +++ a/drivers/usb/core/hub.c > @@ -1554,7 +1554,7 @@ static int usb_configure_device_otg(stru > * (Includes HNP test device.) > */ > if (udev->bus->b_hnp_enable || udev->bus->is_b_host) { > - err = usb_port_suspend(udev); > + err = usb_port_suspend(udev, PMSG_SUSPEND); > if (err < 0) > dev_dbg(&udev->dev, "HNP fail, %d\n", err); > } > -- > To unsubscribe from this list: send the line "unsubscribe linux-omap" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added 2009-01-16 7:44 ` Tony Lindgren @ 2009-01-16 7:59 ` David Brownell 2009-01-16 8:12 ` Tony Lindgren 0 siblings, 1 reply; 8+ messages in thread From: David Brownell @ 2009-01-16 7:59 UTC (permalink / raw) To: Tony Lindgren; +Cc: linux-omap On Thursday 15 January 2009, Tony Lindgren wrote: > > > Then when it tries to boot, (a) the HSMMC driver reports > > "error -110" then chokes, so no root FS; and then (b) MUSB > > misdetects the high speed hub as full speed then chokes, > > so no network links either. .... > > > That's on a trusty Beagle config. I don't think I'll be > > upgrading anything else just yet... > > Hmm, that sounds conservative! :) You're just trying to get me to find out what's broken and fix it! I'm on to that particular dastardly plot... ;) It'd be somewhat usable if the MMC were live. - dave -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added 2009-01-16 7:59 ` David Brownell @ 2009-01-16 8:12 ` Tony Lindgren 2009-01-16 8:51 ` Tony Lindgren 0 siblings, 1 reply; 8+ messages in thread From: Tony Lindgren @ 2009-01-16 8:12 UTC (permalink / raw) To: dbrownell; +Cc: linux-omap * David Brownell <david-b@pacbell.net> [090116 09:59]: > On Thursday 15 January 2009, Tony Lindgren wrote: > > > > > Then when it tries to boot, (a) the HSMMC driver reports > > > "error -110" then chokes, so no root FS; and then (b) MUSB > > > misdetects the high speed hub as full speed then chokes, > > > so no network links either. .... > > > > > That's on a trusty Beagle config. I don't think I'll be > > > upgrading anything else just yet... > > > > Hmm, that sounds conservative! :) > > You're just trying to get me to find out what's broken > and fix it! I'm on to that particular dastardly plot... ;) Oh no, busted! > It'd be somewhat usable if the MMC were live. Seems to work on at least overo, no ideas what might have happened to it on beagle. Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added 2009-01-16 8:12 ` Tony Lindgren @ 2009-01-16 8:51 ` Tony Lindgren 2009-01-18 3:46 ` David Brownell 0 siblings, 1 reply; 8+ messages in thread From: Tony Lindgren @ 2009-01-16 8:51 UTC (permalink / raw) To: dbrownell; +Cc: linux-omap * Tony Lindgren <tony@atomide.com> [090116 10:13]: > * David Brownell <david-b@pacbell.net> [090116 09:59]: > > On Thursday 15 January 2009, Tony Lindgren wrote: > > > > > > > Then when it tries to boot, (a) the HSMMC driver reports > > > > "error -110" then chokes, so no root FS; and then (b) MUSB > > > > misdetects the high speed hub as full speed then chokes, > > > > so no network links either. .... > > > > > > > That's on a trusty Beagle config. I don't think I'll be > > > > upgrading anything else just yet... > > > > > > Hmm, that sounds conservative! :) > > > > You're just trying to get me to find out what's broken > > and fix it! I'm on to that particular dastardly plot... ;) > > Oh no, busted! > > > It'd be somewhat usable if the MMC were live. > > Seems to work on at least overo, no ideas what might have > happened to it on beagle. MMC seems to work also on omap3430sdp. Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added 2009-01-16 8:51 ` Tony Lindgren @ 2009-01-18 3:46 ` David Brownell 0 siblings, 0 replies; 8+ messages in thread From: David Brownell @ 2009-01-18 3:46 UTC (permalink / raw) To: Tony Lindgren; +Cc: linux-omap > Then when it tries to boot, (a) the HSMMC driver reports > "error -110" then chokes, so no root FS; and then (b) MUSB > misdetects the high speed hub as full speed then chokes, > so no network links either. .... Found it. A Kconfig option I thought was "off" got turned "on". Even though the VMMC1, VDAC, VUSB1V5, VUSB1V8, and VUSB3V1 rails aren't yet enabled by the drivers using them ... they sort of need to be left on (except for VDAC). ;) - Dave ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2009-01-18 3:53 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-01-15 15:43 Git tree updated to v2.6.29-rc1, omap-2.6.28 branch added Tony Lindgren 2009-01-15 18:21 ` David Brownell 2009-01-15 22:01 ` David Brownell 2009-01-16 7:44 ` Tony Lindgren 2009-01-16 7:59 ` David Brownell 2009-01-16 8:12 ` Tony Lindgren 2009-01-16 8:51 ` Tony Lindgren 2009-01-18 3:46 ` David Brownell
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox