Re: [U-Boot] [PATCH v3 4/8] arm: bootm: call udc_disable() before booting linux

2013-04-15 Thread Marek Vasut
Dear Albert ARIBAUD, > Hi Tom, > > On Mon, 15 Apr 2013 08:45:07 -0400, Tom Rini wrote: > > On Sun, Apr 14, 2013 at 10:12:36PM +0200, Marek Vasut wrote: > > > Dear Albert ARIBAUD, > > > > > > > Hi Mike, > > > > > > > > On Fri, 12 Apr 2013 11:59:16 -0700, Mike Dunn > > > > > > > > wrote: > > >

Re: [U-Boot] [PATCH v3 4/8] arm: bootm: call udc_disable() before booting linux

2013-04-15 Thread Albert ARIBAUD
Hi Tom, On Mon, 15 Apr 2013 08:45:07 -0400, Tom Rini wrote: > On Sun, Apr 14, 2013 at 10:12:36PM +0200, Marek Vasut wrote: > > Dear Albert ARIBAUD, > > > > > Hi Mike, > > > > > > On Fri, 12 Apr 2013 11:59:16 -0700, Mike Dunn > > > > > > wrote: > > > > On the pxa270, if the udc device is not

Re: [U-Boot] [PATCH v3 4/8] arm: bootm: call udc_disable() before booting linux

2013-04-15 Thread Tom Rini
On Sun, Apr 14, 2013 at 10:12:36PM +0200, Marek Vasut wrote: > Dear Albert ARIBAUD, > > > Hi Mike, > > > > On Fri, 12 Apr 2013 11:59:16 -0700, Mike Dunn > > > > wrote: > > > On the pxa270, if the udc device is not disabled before jumping to linux, > > > the device fails to initialize in linux b

Re: [U-Boot] [PATCH v3 4/8] arm: bootm: call udc_disable() before booting linux

2013-04-14 Thread Marek Vasut
Dear Albert ARIBAUD, > Hi Mike, > > On Fri, 12 Apr 2013 11:59:16 -0700, Mike Dunn > > wrote: > > On the pxa270, if the udc device is not disabled before jumping to linux, > > the device fails to initialize in linux because it was left in a running > > state, and the linux driver assumes that it

Re: [U-Boot] [PATCH v3 4/8] arm: bootm: call udc_disable() before booting linux

2013-04-14 Thread Albert ARIBAUD
Hi Mike, On Fri, 12 Apr 2013 11:59:16 -0700, Mike Dunn wrote: > On the pxa270, if the udc device is not disabled before jumping to linux, the > device fails to initialize in linux because it was left in a running state, > and > the linux driver assumes that it is in a disabled state. > > Signe

Re: [U-Boot] [PATCH v3 4/8] arm: bootm: call udc_disable() before booting linux

2013-04-14 Thread Marek Vasut
Dear Mike Dunn, > On the pxa270, if the udc device is not disabled before jumping to linux, > the device fails to initialize in linux because it was left in a running > state, and the linux driver assumes that it is in a disabled state. > > Signed-off-by: Mike Dunn Albert, can I get your ACK on

[U-Boot] [PATCH v3 4/8] arm: bootm: call udc_disable() before booting linux

2013-04-12 Thread Mike Dunn
On the pxa270, if the udc device is not disabled before jumping to linux, the device fails to initialize in linux because it was left in a running state, and the linux driver assumes that it is in a disabled state. Signed-off-by: Mike Dunn --- Changelog: v3: no change v2: no change Arguably,