Re: [U-Boot] Signed-off-by for RPI U-Boot USB patches

2014-02-01 Thread Greg KH
On Sat, Feb 01, 2014 at 11:17:03PM -0700, Stephen Warren wrote: > (Sorry for the spam; resending with the correct U-Boot mailing list in CC) > > On 02/01/2014 11:14 PM, Stephen Warren wrote: > > Oleksandr, I'm starting to look at getting USB support enabled for the > > Raspberry Pi in mainline U-B

Re: [U-Boot] Signed-off-by for RPI U-Boot USB patches

2014-02-01 Thread Stephen Warren
(Sorry for the spam; resending with the correct U-Boot mailing list in CC) On 02/01/2014 11:14 PM, Stephen Warren wrote: > Oleksandr, I'm starting to look at getting USB support enabled for the > Raspberry Pi in mainline U-Boot. To that end, I looked at: > > git://github.com/gonzoua/u-boot-pi.git

Re: [U-Boot] [PATCH 2/6] usb:udc:samsung: Remove redundant cache operation from Samsung UDC driver

2014-02-01 Thread Marek Vasut
On Saturday, February 01, 2014 at 10:56:27 AM, Lukasz Majewski wrote: > On Sat, 1 Feb 2014 03:50:26 +0100 > > Marek Vasut wrote: > > On Friday, January 31, 2014 at 01:16:25 PM, Lukasz Majewski wrote: > > > A set of cache operations (both invalidation and flush) were > > > redundant in the S3C HS

Re: [U-Boot] [PATCH 4/6] usb:udc:samsung: Zero copy approach for data passed to Samsung's UDC driver

2014-02-01 Thread Marek Vasut
On Saturday, February 01, 2014 at 12:05:29 PM, Lukasz Majewski wrote: > On Sat, 1 Feb 2014 03:55:20 +0100 > > Marek Vasut wrote: > > On Friday, January 31, 2014 at 01:16:27 PM, Lukasz Majewski wrote: > > > The Samsung's UDC driver is not anymore copying data from USB > > > requests to data aligne

[U-Boot] [PATCH 1/2] OMAP24xx I2C: Add support for 'setspeed'

2014-02-01 Thread Hannes Petermaier
Signed-off-by: Hannes Petermaier --- drivers/i2c/omap24xx_i2c.c | 122 1 file changed, 77 insertions(+), 45 deletions(-) diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c index c784004..51ceda1 100644 --- a/drivers/i2c/omap24xx_i2c

Re: [U-Boot] [PATCH] OMAP24xx I2C: Add support for 'setspeed'

2014-02-01 Thread Wolfgang Denk
Dear Hannes, In message <52ed5174.5080...@petermaier.org> you wrote: > > supports changing the bus-speed of the OMAP24xx Adapter. > Signed-off-by: Hannes Petermaier > --- > drivers/i2c/omap24xx_i2c.c | 122 > > 1 file changed, 77 insertions(+), 4

Re: [U-Boot] [PATCH] omap3: Derive config for Beagleboard-XM sans NAND support

2014-02-01 Thread Sanjeev Premi
> On Tuesday, 7 January 2014 12:59 AM, Tom Rini wrote: > > On Sun, Jan 05, 2014 at 08:02:07PM +0530, Sanjeev Premi wrote: > >> Beagleboard XM doesn't have a NAND chip. >> Let the configuration reflect so. >> >> Signed-off-by: Sanjeev Premi >> Cc: Tom Rini > > True, but why?  And please

[U-Boot] [PATCH] OMAP24xx I2C: Add support for 'setspeed'

2014-02-01 Thread Hannes Petermaier
supports changing the bus-speed of the OMAP24xx Adapter. Signed-off-by: Hannes Petermaier --- drivers/i2c/omap24xx_i2c.c | 122 1 file changed, 77 insertions(+), 45 deletions(-) diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c

[U-Boot] [PATCH 1/2] power: add PFUZE100 PMIC driver

2014-02-01 Thread Tim Harvey
Signed-off-by: Tim Harvey --- drivers/power/pmic/Makefile| 1 + drivers/power/pmic/pmic_pfuze100.c | 42 + include/power/pfuze100_pmic.h | 96 ++ 3 files changed, 139 insertions(+) create mode 100644 drivers/power/pmic/pmic_pfuze1

[U-Boot] [PATCH 0/2] IMX6: Add Gateworks Ventana support

2014-02-01 Thread Tim Harvey
Signed-off-by: Tim Harvey Cc: Stefano Babic Cc: Stefan Roese Cc: Fabio Estevam --- v2: - rebase on top of u-boot-imx - use switch..case for model specific init instead of strcmps - move checkboard to late init allowing i2c_setup to be moved to board_init() eeprom reading to be done after relo

Re: [U-Boot] [U-boot isn't booting from uSD]

2014-02-01 Thread Tom Rini
On Sun, Feb 02, 2014 at 12:08:37AM +0530, Devarsh gadhia wrote: > Hi, > > I want to try porting u-boot on BBB by myself for that > I've compiled a U-boot source code for BBB and want it to boot from > uSD(8GB size) > > I've copied u-boot.bin image on FAT formatted card and then I tried > proce

[U-Boot] [U-boot isn't booting from uSD]

2014-02-01 Thread Devarsh gadhia
Hi, I want to try porting u-boot on BBB by myself for that I've compiled a U-boot source code for BBB and want it to boot from uSD(8GB size) I've copied u-boot.bin image on FAT formatted card and then I tried process to boot from uSD as described in BBB reff. module. But I am getting '' out

Re: [U-Boot] [PATCH v8 0/38] Switch over to real Kbuild

2014-02-01 Thread Tom Rini
On Fri, Jan 31, 2014 at 06:12:49PM +0900, Masahiro Yamada wrote: > Hello Tom, > > Now, this kbuild series cleanly applies on the current u-boot/master. > (commit 07e2822d158940a0e8ba45b6ab0344ffa1011a07) > > What's your plan about this series? > Are we ready to switch to Kbuild, or need more re

Re: [U-Boot] [PATCH 1/6] usb:gadget:ums: Replace malloc calls with memalign to fix cache buffer alignment

2014-02-01 Thread Lukasz Majewski
On Sat, 1 Feb 2014 03:48:57 +0100 Marek Vasut wrote: Hi Marek, > On Friday, January 31, 2014 at 01:16:24 PM, Lukasz Majewski wrote: > > Calls to malloc() have been replaced by memalign. It provides proper > > buffer alignment. > > > > Change-Id: Iffcf42082a125f848124bc84d1a95353493798a4 > > ^ W

Re: [U-Boot] [PATCH 4/6] usb:udc:samsung: Zero copy approach for data passed to Samsung's UDC driver

2014-02-01 Thread Lukasz Majewski
On Sat, 1 Feb 2014 03:55:20 +0100 Marek Vasut wrote: > On Friday, January 31, 2014 at 01:16:27 PM, Lukasz Majewski wrote: > > The Samsung's UDC driver is not anymore copying data from USB > > requests to data aligned internal buffers. Now it works directly in > > data allocated in the upper layer

Re: [U-Boot] [PATCH 2/6] usb:udc:samsung: Remove redundant cache operation from Samsung UDC driver

2014-02-01 Thread Lukasz Majewski
On Sat, 1 Feb 2014 03:50:26 +0100 Marek Vasut wrote: > On Friday, January 31, 2014 at 01:16:25 PM, Lukasz Majewski wrote: > > A set of cache operations (both invalidation and flush) were > > redundant in the S3C HS OTG Samsung driver. > > > > Test condition > > - test HW + measurement: Trats - E