Re: [U-Boot] [PATCH 0/4] usb:gadget:composite: Support for composite gadget framework

2012-05-02 Thread Lukasz Majewski
Hi Marek, > Dear Lukasz Majewski, > > > This patch set provides support for composite gadget framework. > > Files from Linux kernel (2.6.36) - namely composite.{c|h} have been > > ported. > > > > Some extra "compatibility" code has been added as well. > > > > Lukasz Majewski (4): > > usb:gadg

[U-Boot] U-boot Required

2012-05-02 Thread Amber and Sarosh
Hi Can somebody mail us the u-boot files for these PR1 Appliances? ; Appliance with 2xMT48LC32M8A2P-75 i.e. 64MB SDRAM Appliance with 2xhy57v56820bt-h The one available on the switchfin site i.e. u-boot-pr1-ub2.30 is only for Appliance with 2xMT48LC64M8A2P-75 i.e. 128 MB SDRAM and

Re: [U-Boot] [PATCH v2] TRATS: initialize panel_info data structure in board file

2012-05-02 Thread Minkyu Kang
On 26 April 2012 16:59, Anatolij Gustschin wrote: > Hi, > > On Thu, 26 Apr 2012 08:29:39 +0900 > Donghwa Lee wrote: > >> panel_info data structure is gloable variable, so, I have initialized it >> in board file. If it is initialized in init_panel_info() like existing, >> it can't be used in drv_l

Re: [U-Boot] [PATCH] Exynos: fix cpuinfo and cpu detecting

2012-05-02 Thread Minkyu Kang
On 26 April 2012 16:55, Minkyu Kang wrote: > Since Exynos architecture have new SoCs, > need to fix cpuinfo correctly. > > Signed-off-by: Minkyu Kang > Signed-off-by: Kyungmin Park > Tested-by: Jaehoon Chung > Cc: Chander Kashyap > --- >  arch/arm/cpu/armv7/s5p-common/cpu_info.c |    5 ++- >  

Re: [U-Boot] [PATCH] LCD: support another s6e8ax0 panel type

2012-05-02 Thread Minkyu Kang
On 27 April 2012 13:52, Donghwa Lee wrote: > s6e8ax0 panel has many panel of types. This patch support another panel > on TIZEN lunchbox board(HWREVISION 2). This panel has reversed panel > display type. So, I had added necessary command. > > Signed-off-by: Donghwa Lee > Signed-off-by: Kyungmin P

Re: [U-Boot] [PATCH] powerpc/85xx: fix NAND boot linker scripts for -fpic

2012-05-02 Thread Joakim Tjernlund
Scott Wood wrote on 2012/05/01 23:45:51: > > GOT is now handled the way the main u-boot.lds does it. Without this, > the boot hangs when built with newer GCC (since 4.6). Older toolchains > hid the issue by converting -fpic to -fPIC. > > Signed-off-by: Scott Wood Loks good Acked-by: Joakim Tj

[U-Boot] [PATCH v3] powerpc/p1022ds: Add sdcard and spi boot support to P1022DS

2012-05-02 Thread Dirk Eibach
Signed-off-by: Dirk Eibach Cc: Timur Tabi --- Changes in v2: - add Cc - split up original patch series Changes in v3: - use clrsetbits() instead of clrbits()/setbits() - remove dead code - remove unnecessary #undef board/freescale/p1022ds/p1022ds.c |3 ++ board/freescale/p1022ds/tlb.c |

[U-Boot] [PATCH] usb:udc:samsung:cleanup Replace DEBUG_* macros with debug_cond() calls

2012-05-02 Thread Lukasz Majewski
This patch cleans up the Samsung's UDC driver. It replaces several DEBUG_* macros with debug_cond(). Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers/usb/gadget/s3c_udc_otg.c | 39 ++--- drivers/usb/gadget/s3c_udc_otg_xfer_dma.c | 287

[U-Boot] [PATCH] powerpc/p1010rdb: add readme document for p1010rdb

2012-05-02 Thread Shengzhou Liu
Signed-off-by: Shengzhou Liu --- doc/README.p1010rdb | 138 +++ 1 files changed, 138 insertions(+), 0 deletions(-) create mode 100644 doc/README.p1010rdb diff --git a/doc/README.p1010rdb b/doc/README.p1010rdb new file mode 100644 index 000..7

Re: [U-Boot] [PATCH 0/4] usb:gadget:composite: Support for composite gadget framework

2012-05-02 Thread Marek Vasut
Dear Lukasz Majewski, > Hi Marek, > > > Dear Lukasz Majewski, > > > > > This patch set provides support for composite gadget framework. > > > Files from Linux kernel (2.6.36) - namely composite.{c|h} have been > > > ported. > > > > > > Some extra "compatibility" code has been added as well. > >

[U-Boot] [PATCH] rename EB+MCF-EV123 to its current marketing name EB+CPU5282

2012-05-02 Thread Jens Scharsig (BuS Elektronik)
From: Jens Scharsig * rename board directory to eb_cpu5282 * rename EB+MCF-EV123_.*config to eb_cpu5282_.*config * add Maintainer for EB+CPU5282 board * rename prompt Signed-off-by: Jens Scharsig (BuS Elektronik) --- MAINTAINERS|4 board/BuS/{EB

[U-Boot] [RESEND PATCH 1/5] usb:udc: Remove duplicated USB definitions from include/linux/usb/ch9.h file

2012-05-02 Thread Lukasz Majewski
Remove the repeated USB descriptor code and use usbdescriptors.h file. ch9.h file has been copied from linux and is needed for USB gadget related work. Now usbdescriptors.h and ch9.h shall be used together. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers

[U-Boot] [RESEND PATCH 2/5] usb:udc:samsung:cleanup Replace DEBUG_* macros with debug_cond() calls

2012-05-02 Thread Lukasz Majewski
This patch cleans up the Samsung's UDC driver. It replaces several DEBUG_* macros with debug_cond(). Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers/usb/gadget/s3c_udc_otg.c | 37 ++-- drivers/usb/gadget/s3c_udc_otg_xfer_dma.c | 287 +

[U-Boot] [RESEND PATCH 0/5] usb:udc:composite: Samsung's UDC cleanup and composite gadget implementation

2012-05-02 Thread Lukasz Majewski
This patch serie has been created as a combination of several patches previously sent to u-boot mailing list: - Duplicated USB code has been removed. - Samsung's UDC driver has been cleaned up -> DEBUG_ macros have been replaced with debug_cond() calls. - Version v4. of composite gadget implementa

[U-Boot] [RESEND PATCH 4/5] usb:gadget:composite: Support for composite at gadget.h

2012-05-02 Thread Lukasz Majewski
Add device data pointer to the USB gadget's device struct. Wrapper for extracting usb_gadget from Linux's usb device Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- Changes for v2: - Two separate patches regarding gadget.h file squashed together --- include/lin

[U-Boot] [RESEND PATCH 5/5] usb:udc:samsung Add functions for storing private gadget data in UDC driver

2012-05-02 Thread Lukasz Majewski
This commit adds support for storing private data to Samsung's UDC driver. This data is afterward used by usb gadget. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers/usb/gadget/s3c_udc_otg.c | 15 ++- 1 files changed, 14 insertions(+), 1 de

[U-Boot] [RESEND PATCH 3/5] usb:gadget:composite USB composite gadget support

2012-05-02 Thread Lukasz Majewski
USB Composite gadget implementation for u-boot. It builds on top of USB UDC drivers. This commit is based on following files from Linux Kernel v2.6.36: ./include/linux/usb/composite.h ./drivers/usb/gadget/composite.c SHA1: d187abb9a83e6c6b6e9f2ca17962bdeafb4bc903 Signed-off-by: Lukasz Majewski

Re: [U-Boot] [PATCH] USB: S5P: Add ehci support

2012-05-02 Thread Rajeshwari Birje
Hi Marek Vasut, Thank you for the comments. On Wed, May 2, 2012 at 10:00 AM, Marek Vasut wrote: > Dear Rajeshwari Shinde, > > This patch adds ehci driver support  for s5p. > >It'd be awesome if you CCed me ;-) >Also, it might be worth CCing Lukasz? -- Will do so. > > > Signed-off-by: Vivek Gautam

Re: [U-Boot] [PATCH] USB: S5P: Add ehci support

2012-05-02 Thread Marek Vasut
Dear RAJESHWARI S SHINDE, > Hi Marek, > > Thank you for the comments, would modify the code and send V2. Thank you for your patches and your work, they are what's important here :-) > Regards, > Rajeshwari Shinde. > > --- Original Message --- > Sender : Marek Vasut > Date : May 02, 201

[U-Boot] [PATCH v2] i.MX6: Add ANATOP regulator init

2012-05-02 Thread Dirk Behme
Init the core regulator voltage to 1.2V. This is required for the correct functioning of the GPU and when the ARM LDO is set to 1.225V. This is a workaround to fix some memory clock jitter. Note: This should be but can't be done in the DCD. The bootloader prevents access to the ANATOP regist

Re: [U-Boot] [RESEND PATCH 3/5] usb:gadget:composite USB composite gadget support

2012-05-02 Thread Marek Vasut
Dear Lukasz Majewski, > USB Composite gadget implementation for u-boot. It builds on top > of USB UDC drivers. > > This commit is based on following files from Linux Kernel v2.6.36: This one still doens't apply -- fails at lin-gadget-compat ... can you rebase this particular one? I just pushed

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-05-02 Thread Wolfgang Denk
Dear Thirumalesha N, Please keep the mailing list on Cc: In message you wrote: > > Unable to get a BDI tool. Am trying to do directly. Please feel free to contact off...@denx.de for a quotation. > Please can you explain me where the u-boot starts execution ? means > not address. In

[U-Boot] [PATCH V2] USB: S5P: Add ehci support

2012-05-02 Thread Rajeshwari Shinde
This patch adds ehci driver support for s5p. Signed-off-by: Vivek Gautam Signed-off-by: Rajeshwari Shinde --- arch/arm/include/asm/arch-exynos/ehci-s5p.h | 66 drivers/usb/host/Makefile |1 + drivers/usb/host/ehci-s5p.c | 110 +++

[U-Boot] [PATCH 0/5] exynos5: usb: Enable USB 2.0 support

2012-05-02 Thread Rajeshwari Shinde
This patchset series adds support to enable USB 2.0 on smdk5250. It includes addition of system and power management registers, functions to enable and disable power to the USB host controller. This patchset is based on: USB: S5P: Add ehci support.patch Rajeshwari Shinde (5): exynos5: Add sys

[U-Boot] [PATCH 1/5] exynos5: Add system register structure

2012-05-02 Thread Rajeshwari Shinde
This patch add structure for SYSREG. Signed-off-by: Che-Liang Chiou Signed-off-by: Rajeshwari Shinde Reviewed-by: Vivek Gautam Reviewed-by: Simon Glass --- arch/arm/include/asm/arch-exynos/sysreg.h | 43 + 1 files changed, 43 insertions(+), 0 deletions(-) create

[U-Boot] [PATCH 2/5] exynos5: Add structure for PMU register

2012-05-02 Thread Rajeshwari Shinde
This patch adds power mananagement register structure for exynos5 SoC. Signed-off-by: Rajeshwari Shinde --- arch/arm/include/asm/arch-exynos/power.h | 622 ++ 1 files changed, 622 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/arch-exynos/power.h b

[U-Boot] [PATCH 3/5] exynos5: Add power Enable/Disable for USB-EHCI

2012-05-02 Thread Rajeshwari Shinde
This patch adds functions to enable/disable the power of USB host controller for exynos5. This patch depends on the patch: USB: S5P: Add ehci support.patch Signed-off-by: Vivek Gautam Signed-off-by: Che-Liang Chiou Signed-off-by: Rajeshwari Shinde --- arch/arm/cpu/armv7/exynos/power.c

[U-Boot] [PATCH 4/5] exynos5: usb: Fix incorrect USB base addresses

2012-05-02 Thread Rajeshwari Shinde
This patch corrects the base addresses for USB_PHY and USB_OTG. Signed-off-by: Vivek Gautam Signed-off-by: Rajeshwari Shinde --- arch/arm/include/asm/arch-exynos/cpu.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/include/asm/arch-exynos/cpu.h b/arch/arm/

[U-Boot] [PATCH 5/5] exynos5: usb: Enable USB 2.0 on smdk5250

2012-05-02 Thread Rajeshwari Shinde
Signed-off-by: Vivek Gautam Signed-off-by: Rajeshwari Shinde --- arch/arm/include/asm/arch-exynos/cpu.h |1 + include/configs/smdk5250.h |6 ++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/arch-exynos/cpu.h b/arch/arm/include/asm/ar

Re: [U-Boot] uboot and ZFS

2012-05-02 Thread Wolfgang Denk
Dear Jorgen, In message <4fa0a7f3.8010...@lundman.net> you wrote: > > Sorry if I am posting some kind of FAQ here, Don't worry - AFAICT thisis the first time ZFS came up here. > At first glance, it would suggest that it should be feasible to add ZFS to > uboot. But since I only have 'usage-lev

[U-Boot] [PATCH] USB: ehci-mx6: Fix broken IO access

2012-05-02 Thread Wolfgang Grandegger
To get USB working again on the i.MX6, this patch fixes a bug introduced with commit 522b2a0 "Add proper IO accessors for mx6 usb registers.". At that occasion, I also added the missing __iomem directive. Cc: Marek Vasut CC: Fabio Estevam Signed-off-by: Wolfgang Grandegger --- drivers/usb/host

Re: [U-Boot] [PATCH] tegra2: trivially enable 13 mhz crystal frequency

2012-05-02 Thread Stephen Warren
On 05/01/2012 04:50 PM, Lucas Stach wrote: > This is needed for upcoming Toradex Colibri T20 upstream support. You probably want to CC the Tegra maintainer, so he notices this patch. I've done so here. ___ U-Boot mailing list U-Boot@lists.denx.de http://

Re: [U-Boot] [PATCH] USB: ehci-mx6: Fix broken IO access

2012-05-02 Thread Fabio Estevam
On Wed, May 2, 2012 at 11:36 AM, Wolfgang Grandegger wrote: > To get USB working again on the i.MX6, this patch fixes a bug introduced > with commit 522b2a0 "Add proper IO accessors for mx6 usb registers.". Good catch on the usb register name change. > At that occasion, I also added the missing

[U-Boot] [RESEND++ PATCH 3/5] usb:gadget:composite USB composite gadget support

2012-05-02 Thread Lukasz Majewski
USB Composite gadget implementation for u-boot. It builds on top of USB UDC drivers. This commit is based on following files from Linux Kernel v2.6.36: ./include/linux/usb/composite.h ./drivers/usb/gadget/composite.c SHA1: d187abb9a83e6c6b6e9f2ca17962bdeafb4bc903 Signed-off-by: Lukasz Majewski

Re: [U-Boot] [RESEND++ PATCH 3/5] usb:gadget:composite USB composite gadget support

2012-05-02 Thread Marek Vasut
Dear Lukasz Majewski, > USB Composite gadget implementation for u-boot. It builds on top > of USB UDC drivers. > > This commit is based on following files from Linux Kernel v2.6.36: Ok, applied, thanks ;-) > > ./include/linux/usb/composite.h > ./drivers/usb/gadget/composite.c > > SHA1: d187abb

Re: [U-Boot] [PATCH 1/5] exynos5: Add system register structure

2012-05-02 Thread Marek Vasut
Dear Rajeshwari Shinde, > This patch add structure for SYSREG. Ccing Minkyu. Can I get your opinion on these patches please? > > Signed-off-by: Che-Liang Chiou > Signed-off-by: Rajeshwari Shinde > Reviewed-by: Vivek Gautam > Reviewed-by: Simon Glass > --- > arch/arm/include/asm/arch-exynos

Re: [U-Boot] [PATCH] mx28evk: add NAND support

2012-05-02 Thread Fabio Estevam
Hi Stefano, On Tue, Apr 17, 2012 at 11:30 AM, Stefano Babic wrote: > Well, this is not a fix because it adds a feature that is not yet > supported. It should be deferred to the next release. Can this be applied now? ___ U-Boot mailing list U-Boot@list

Re: [U-Boot] [PATCH] mx28evk: add NAND support

2012-05-02 Thread Marek Vasut
Dear Fabio Estevam, > Hi Stefano, > > On Tue, Apr 17, 2012 at 11:30 AM, Stefano Babic wrote: > > Well, this is not a fix because it adds a feature that is not yet > > supported. It should be deferred to the next release. > > Can this be applied now? Should be ... Best regards, Marek Vasut ___

Re: [U-Boot] [PATCH 1/2 v4] ARM : Add GPIO Driver and IOMUX definition for S3C2440

2012-05-02 Thread Scott Wood
On 05/02/2012 01:16 AM, Minkyu Kang wrote: > Dear Marek, > > On 2 May 2012 11:44, Marek Vasut wrote: +int gpio_set_value(unsigned gpio, int value) +{ + unsigned l = readl(GPIO_FULLPORT(gpio)); + unsigned port = GPIO_FULLPORT(gpio); + + /* +

Re: [U-Boot] [PATCH] powerpc/p1010rdb: add readme document for p1010rdb

2012-05-02 Thread Scott Wood
On 05/02/2012 04:17 AM, Shengzhou Liu wrote: > +Settings of DIP-switch > +== > + SW4[1:4]= and SW6[4]=0 for boot from 16bit NOR flash > + SW4[1:4]= 1000 and SW6[4]=1 for boot from 8bit NAND flash > + SW4[1:4]= 0110 and SW6[4]=0 for boot from SPI flash > +Note: 1 stands f

Re: [U-Boot] [PATCH] kirkwood: add support for D-Link DNS-320

2012-05-02 Thread Luka Perkov
Hi Jamie, I know that you have sent newer version of this patch but here is easier for me to comment... I have also put maintainer of NAS325 board in CC. On Thu, Apr 26, 2012 at 11:23:58AM +0100, Jamie Lentin wrote: > This patch adds support for D-Link DNS-320 ShareCenter NAS. ... > +#ifdef CO

[U-Boot] USB on mx53loco

2012-05-02 Thread Fabio Estevam
Hi Wolfgang, Have you tested USB host functionality on a mx53loco with a Freescale MC34708 PMIC ? I can succesfully detect a USB pen drive on a mx53loco board with a Dialog PMIC, but not on the FSL PMIC version. I am going to debug this, but just wondering if you have already seen this issue. T

[U-Boot] Default LAWBAR mapping at reset for mpc85xx?

2012-05-02 Thread Joakim Tjernlund
Still trying to wrap my head around the P2010 cpu and its boot sequence(NOR) We can run the full u-boot it we use the BDI emulator but without emulator it won't boot. We have 64 MB NOR flash and have based out design on the P1020RDB and we boot from NOR. Using the emulator but with minimal config

[U-Boot] [PATCH v2] kwboot: boot Marvell Kirkwood SoCs over a serial link

2012-05-02 Thread Luka Perkov
The kwboot program boots boards based on Marvell's Kirkwood platform via Xmodem over their integrated UART. Signed-off-by: Daniel Stodden Acked-by: Luka Perkov --- Changes from version v1: * fix man page * minor cosmetic fixes in tools/kwboot.c I changed things pointed out on v1 of this patc

Re: [U-Boot] [PATCH] USB: ehci-mx6: Fix broken IO access

2012-05-02 Thread Wolfgang Grandegger
Hi Fabio, On 05/02/2012 05:24 PM, Fabio Estevam wrote: > On Wed, May 2, 2012 at 11:36 AM, Wolfgang Grandegger wrote: >> To get USB working again on the i.MX6, this patch fixes a bug introduced >> with commit 522b2a0 "Add proper IO accessors for mx6 usb registers.". > > Good catch on the usb regi

Re: [U-Boot] USB on mx53loco

2012-05-02 Thread Wolfgang Grandegger
On 05/02/2012 08:48 PM, Fabio Estevam wrote: > Hi Wolfgang, > > Have you tested USB host functionality on a mx53loco with a Freescale > MC34708 PMIC ? I have a i.MX53 quick start board, which is named in U-Boot and Linux mx53[_]loco. And yes, USB is working. > I can succesfully detect a USB pen

Re: [U-Boot] Default LAWBAR mapping at reset for mpc85xx?

2012-05-02 Thread Scott Wood
On 05/02/2012 02:04 PM, Joakim Tjernlund wrote: > > Still trying to wrap my head around the P2010 cpu and its boot sequence(NOR) Yeah, it's a bit convoluted. > We can run the full u-boot it we use the BDI emulator but without emulator it > won't boot. I'm not sure what "BDI emulator but without

Re: [U-Boot] Default LAWBAR mapping at reset for mpc85xx?

2012-05-02 Thread Joakim Tjernlund
Scott Wood wrote on 2012/05/02 21:34:18: > > On 05/02/2012 02:04 PM, Joakim Tjernlund wrote: > > > > Still trying to wrap my head around the P2010 cpu and its boot sequence(NOR) > > Yeah, it's a bit convoluted. Yes, fully agreed. I miss the sane 0 address boot vector too. > > > We can run the fu

Re: [U-Boot] [PATCH 1/2 v4] ARM : Add GPIO Driver and IOMUX definition for S3C2440

2012-05-02 Thread Gabriel Huau
On Wed, May 02, 2012 at 01:40:35PM -0500, Scott Wood wrote: > On 05/02/2012 01:16 AM, Minkyu Kang wrote: > > Dear Marek, > > > > On 2 May 2012 11:44, Marek Vasut wrote: > +int gpio_set_value(unsigned gpio, int value) > +{ > + unsigned l = readl(GPIO_FULLPORT(gpio)); > +

Re: [U-Boot] [PATCH 1/2 v4] ARM : Add GPIO Driver and IOMUX definition for S3C2440

2012-05-02 Thread Scott Wood
On 05/02/2012 03:16 PM, Gabriel Huau wrote: > On Wed, May 02, 2012 at 01:40:35PM -0500, Scott Wood wrote: >> On 05/02/2012 01:16 AM, Minkyu Kang wrote: >>> Dear Marek, >>> >>> On 2 May 2012 11:44, Marek Vasut wrote: >> +int gpio_set_value(unsigned gpio, int value) >> +{ >> + unsi

[U-Boot] [PATCH 2/2 v10] ARM : Add support for MINI2440 (s3c2440).

2012-05-02 Thread Gabriel Huau
Support of the MINI2440 board from FriendlyARM from an old version of u-boot : http://repo.or.cz/r/u-boot-openmoko/mini2440.git Currently, supporting only boot from NOR. Signed-off-by: Gabriel Huau --- Changes for v2: - Coding style cleanup - Remove unnecessary files modification

[U-Boot] [PATCH 1/2 v5] ARM : Add GPIO Driver and IOMUX definition for S3C2440

2012-05-02 Thread Gabriel Huau
It's now possible to use the gpio driver interface for s3c2440. This patch add iomux definitions too. Signed-off-by: Gabriel Huau --- Changes for v2: - Modification of the coding style - Add my email address to copyright - Remove a typedef - Move some defines to dr

Re: [U-Boot] Default LAWBAR mapping at reset for mpc85xx?

2012-05-02 Thread Scott Wood
On 05/02/2012 03:09 PM, Joakim Tjernlund wrote: > Scott Wood wrote on 2012/05/02 21:34:18: >> >> On 05/02/2012 02:04 PM, Joakim Tjernlund wrote: >>> We can run the full u-boot it we use the BDI emulator but without emulator >>> it >>> won't boot. >> >> I'm not sure what "BDI emulator but without

Re: [U-Boot] USB on mx53loco

2012-05-02 Thread stefano babic
Am 02/05/2012 20:48, schrieb Fabio Estevam: > Hi Wolfgang, > > Have you tested USB host functionality on a mx53loco with a Freescale > MC34708 PMIC ? No, I tested on a board with the Dialog PMIC, and it worked flawlessy. Maybe someone else tesetd with a newer board.. Best regards, Stefano Babic

Re: [U-Boot] [PATCH] mx28evk: add NAND support

2012-05-02 Thread stefano babic
Am 02/05/2012 19:26, schrieb Fabio Estevam: > Hi Stefano, > > On Tue, Apr 17, 2012 at 11:30 AM, Stefano Babic wrote: > >> Well, this is not a fix because it adds a feature that is not yet >> supported. It should be deferred to the next release. > > Can this be applied now? > Yes, I will do it

[U-Boot] [PATCH 1/3] Revert "i.MX28: Enable additional DRAM address bits"

2012-05-02 Thread Marek Vasut
This reverts commit 69d26d09de1cb93e0a09ca71d9f0d41a66f0756a. Apparently, this commit got mainline only because of OOT port and causes breakage on board that is mainline. Revert. Signed-off-by: Marek Vasut Cc: Wolfgang Denk Cc: Detlev Zundel Cc: Stefano Babic Cc: Fabio Estevam --- arch/arm/

[U-Boot] [PATCH 2/3] M28: Scan only first 512 MB of DRAM to avoid memory wraparound

2012-05-02 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Wolfgang Denk Cc: Detlev Zundel Cc: Stefano Babic Cc: Fabio Estevam --- include/configs/m28evk.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/m28evk.h b/include/configs/m28evk.h index 4016570..7e1661e 100644 --- a/includ

[U-Boot] [PATCH 3/3] i.MX28: Increase the delay after DRAM init

2012-05-02 Thread Marek Vasut
This solves issues when larger amount of DRAM is used. Signed-off-by: Marek Vasut Cc: Wolfgang Denk Cc: Detlev Zundel Cc: Stefano Babic Cc: Fabio Estevam --- arch/arm/cpu/arm926ejs/mx28/spl_mem_init.c |2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/cpu/arm926ejs/mx28/spl_me

[U-Boot] [PATCH] M28: Enable FDT support

2012-05-02 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Wolfgang Denk Cc: Detlev Zundel Cc: Stefano Babic Cc: Fabio Estevam --- include/configs/m28evk.h |2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/m28evk.h b/include/configs/m28evk.h index 7e1661e..b419516 100644 --- a/include/configs/m28e

Re: [U-Boot] USB on mx53loco

2012-05-02 Thread Fabio Estevam
On Wed, May 2, 2012 at 5:56 PM, stefano babic wrote: > No, I tested on a board with the Dialog PMIC, and it worked flawlessy. > Maybe someone else tesetd with a newer board.. I have both boards here. On a mx53loco with Dialog PMIC: MX53LOCO U-Boot > usb start (Re)start USB... USB: Register 1

Re: [U-Boot] [PATCH 3/3] i.MX28: Increase the delay after DRAM init

2012-05-02 Thread Fabio Estevam
On Wed, May 2, 2012 at 7:14 PM, Marek Vasut wrote: > This solves issues when larger amount of DRAM is used. Shouldn't we check if we are using a "large amount of DRAM"? If we don't check then even boards with small amount of RAM would have this additional delay. _

Re: [U-Boot] [PATCH 3/3] i.MX28: Increase the delay after DRAM init

2012-05-02 Thread Marek Vasut
Dear Fabio Estevam, > On Wed, May 2, 2012 at 7:14 PM, Marek Vasut wrote: > > This solves issues when larger amount of DRAM is used. > > Shouldn't we check if we are using a "large amount of DRAM"? > > If we don't check then even boards with small amount of RAM would have > this additional delay

Re: [U-Boot] "make menuconfig" does not work

2012-05-02 Thread Marek Vasut
Dear Wolfgang Denk, > Dear Graeme Russ, > > In message you wrote: > > > Any plan to add Kconfig or any other way to configure u-boot? > > > > Not that I am aware of, but I would support anyone who submitted > > patches to add Kconfig support > > Well, please talk to Marek, then... Yohoho ...

Re: [U-Boot] [PATCH 0/3] Initialisation Sequence Framework

2012-05-02 Thread Marek Vasut
Dear Graeme Russ, > Well here it is (finally) - My Initialisation Sequence Framework > > This series is limited to x86 and is controlled by CONFIG_INIT_FUNC so > no other arch should be effected. I don't have any cross compilers, so I > would appreciate if others could confirm the zero impact ass

Re: [U-Boot] [PATCH 1/3] init_func: Add fundamental framework

2012-05-02 Thread Marek Vasut
Dear Graeme Russ, > Signed-off-by: Graeme Russ > --- > Makefile | 34 ++- > common/Makefile |2 + > config.mk|2 + > doc/README.INIT_FUNC | 65 +++ > include/init_func.h | 37 ++ > tools/Makefile |6 + > tools/mkinitseq.c| 1512 >

Re: [U-Boot] msm7630 mainline request

2012-05-02 Thread Marek Vasut
Dear mohamed.han...@lntinfotech.com, > The patch for msm7630 was released to the u-boot community on 16-feb-2-2012 > can this be mainlined in v2012.07 release.The Patches contain the > following support * low speed uart for msm7630 > * interprocessor communication > * qc_mmc microc

Re: [U-Boot] U-boot Required

2012-05-02 Thread Marek Vasut
Dear Amber and Sarosh, > Hi > > Can somebody mail us the u-boot files for these PR1 Appliances? ; > > Appliance with 2xMT48LC32M8A2P-75 i.e. 64MB SDRAM > > Appliance with 2xhy57v56820bt-h There are memory chips, correct? > > The one available on the switchfin site i.e. u-boot-pr1-ub

Re: [U-Boot] uboot and ZFS

2012-05-02 Thread Marek Vasut
Dear Jorgen Lundman, > Sorry if I am posting some kind of FAQ here, > > I recently picked up a Cubox (arm) which uses uboot. Added ZFS to Linux and > made it have a ZFS root filesystem. The only drawback is the small boot > partition of ext2/fat to read uImage and initrd. > > So I am curious abo

Re: [U-Boot] [PATCH] tegra2: trivially enable 13 mhz crystal frequency

2012-05-02 Thread Marek Vasut
Dear Lucas Stach, > This is needed for upcoming Toradex Colibri T20 upstream support. Neat, you're doing support for this board? That'd be great to have :) Keep me in CC, I have one and I'd be glad to review patches. (I hope you noticed the work of antmicro on the tegra/u-boot) > > Signed-of

Re: [U-Boot] [PATCH] misc:pmic:trats: Correct procedure of enabling/disabling USB regulators

2012-05-02 Thread Minkyu Kang
Dear Marek Vasut, On 26 April 2012 18:30, Lukasz Majewski wrote: > In the MAX8997, LDO regulators needs to preserve previously set voltage > values. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > Cc: Minkyu Kang > --- >  board/samsung/trats/trats.c |   15 +++ >

Re: [U-Boot] [PATCH 1/5] exynos5: Add system register structure

2012-05-02 Thread Kyungmin Park
+ Minkyu, On 5/3/12, Marek Vasut wrote: > Dear Rajeshwari Shinde, > >> This patch add structure for SYSREG. > > Ccing Minkyu. Can I get your opinion on these patches please? > >> >> Signed-off-by: Che-Liang Chiou >> Signed-off-by: Rajeshwari Shinde >> Reviewed-by: Vivek Gautam >> Reviewed-by:

Re: [U-Boot] [PATCH 0/5] exynos5: usb: Enable USB 2.0 support

2012-05-02 Thread Kyungmin Park
Hi, Can you share the purpose of USB host support at bootloader? Just curious. Thank you, Kyungmin Park On 5/2/12, Rajeshwari Shinde wrote: > This patchset series adds support to enable USB 2.0 on smdk5250. > It includes addition of system and power management registers, > functions to enable

[U-Boot] [PATCH 1/1] fat: FAT sector offsets overflow on large disks and/or FAT partitions

2012-05-02 Thread Aaron Williams
This patch fixes several issues where sector offsets can overflow due to being limited to 16-bits. There are many cases which can cause an overflow, including large FAT32 partitions and partitions that start at a sufficiently large offset on the storage device. Numerous issues were observed and f

Re: [U-Boot] [PATCH 0/5] exynos5: usb: Enable USB 2.0 support

2012-05-02 Thread Marek Vasut
Dear Kyungmin Park, > Hi, > > Can you share the purpose of USB host support at bootloader? You can boot the system completely off a USB stick ... > > Just curious. > > Thank you, > Kyungmin Park > > On 5/2/12, Rajeshwari Shinde wrote: > > This patchset series adds support to enable USB 2.0

Re: [U-Boot] [PATCH] checkpatch: warn of whitespace before semicolon at end of line.

2012-05-02 Thread Mike Frysinger
On Tuesday 01 May 2012 18:06:16 Eric Nelson wrote: > tools/checkpatch.pl |6 ++ > 1 files changed, 6 insertions(+), 0 deletions(-) should be sent to lkml/kbuild lists ... -mike signature.asc Description: This is a digitally signed message part. __

Re: [U-Boot] [PATCH 1/3] init_func: Add fundamental framework

2012-05-02 Thread Graeme Russ
Hi Marek, Thanks for taking a look >> +The INIT_FUNC macro allows initialisation functions (i.e. functions which >> are +executed before the main loop) to be easily added to the init >> sequence + >> + >> +Specifying an Initialisation Function and is Dependencies >> +

Re: [U-Boot] [PATCH 1/3] init_func: Add fundamental framework

2012-05-02 Thread Marek Vasut
Dear Graeme Russ, > Hi Marek, > > Thanks for taking a look > > >> +The INIT_FUNC macro allows initialisation functions (i.e. functions > >> which are +executed before the main loop) to be easily added to the > >> init sequence + > >> + > >> +Specifying an Initialisation Function and is Dependenc

Re: [U-Boot] [PATCH] checkpatch: warn of whitespace before semicolon at end of line.

2012-05-02 Thread Eric Nelson
On 05/02/2012 08:00 PM, Mike Frysinger wrote: On Tuesday 01 May 2012 18:06:16 Eric Nelson wrote: tools/checkpatch.pl |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) should be sent to lkml/kbuild lists ... -mike Thanks for the pointer Mike.

[U-Boot] [PATCH] checkpatch: add check for whitespace before semicolon at end-of-line

2012-05-02 Thread Eric Nelson
This tests for a bad habits of mine like this: return 0 ; Signed-off-by: Eric Nelson --- scripts/checkpatch.pl |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index a3b9782..0e6977e 100755 --- a/scripts/checkpat

Re: [U-Boot] [PATCH] misc:pmic:trats: Correct procedure of enabling/disabling USB regulators

2012-05-02 Thread Minkyu Kang
On 26 April 2012 18:30, Lukasz Majewski wrote: > In the MAX8997, LDO regulators needs to preserve previously set voltage > values. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > Cc: Minkyu Kang > --- >  board/samsung/trats/trats.c |   15 +++ >  1 files changed,

Re: [U-Boot] [PATCH 1/3] init_func: Add fundamental framework

2012-05-02 Thread Graeme Russ
Hi Marek, On Thu, May 3, 2012 at 1:18 PM, Marek Vasut wrote: > Dear Graeme Russ, > >> Hi Marek, >> >> Thanks for taking a look >> >> >> +The INIT_FUNC macro allows initialisation functions (i.e. functions >> >> which are +executed before the main loop) to be easily added to the >> >> init sequenc

[U-Boot] [PATCH] Add gc-section support for ARM

2012-05-02 Thread Charles Manning
Seems odd that this hasn't been done yet. Shaves 5k off an omap overo build. Signed-off-by: Charles Manning --- arch/arm/config.mk |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/arm/config.mk b/arch/arm/config.mk index 45f9dca..73e0cce 100644 --- a/arch/arm/conf

Re: [U-Boot] [PATCH] powerpc/85xx: fix NAND boot linker scripts for -fpic

2012-05-02 Thread Chunhe Lan
Scott Wood wrote: GOT is now handled the way the main u-boot.lds does it. Without this, the boot hangs when built with newer GCC (since 4.6). Older toolchains hid the issue by converting -fpic to -fPIC. Signed-off-by: Scott Wood Tested-by: Chunhe Lan _

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-05-02 Thread Thirumalesha N
On Wed, May 2, 2012 at 7:15 PM, Wolfgang Denk wrote: > Dear Thirumalesha N, > > Please keep the mailing list on Cc: > > In message < > cao1rv-ayvvrd1urk3eq3asyqz2rrddpyyaexstktjh7tbuq...@mail.gmail.com> you > wrote: > > > > Unable to get a BDI tool. Am trying to do directly. > > Please feel

Re: [U-Boot] [PATCH] checkpatch: add check for whitespace before semicolon at end-of-line

2012-05-02 Thread Joe Perches
On Wed, 2012-05-02 at 20:32 -0700, Eric Nelson wrote: > This tests for a bad habits of mine like this: > > return 0 ; > > Signed-off-by: Eric Nelson > --- > scripts/checkpatch.pl |6 ++ > 1 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/scripts/checkpatch.pl b/sc

Re: [U-Boot] uboot and ZFS

2012-05-02 Thread Jorgen Lundman
At first glance, it would suggest that it should be feasible to add ZFS to uboot. But since I only have 'usage-level knowledge' of both boot systems, I am unaware of any show-stoppers. Oh please study this and submit a patch, I believe at least Pavel (CCed) would be glad to see it in :-) Well

Re: [U-Boot] uboot and ZFS

2012-05-02 Thread Jorgen Lundman
done by Siemens, and practised merging that in, compiling, and flashing the Samsung! My bad, credits where due! -- Jorgen Lundman | Unix Administrator | +81 (0)3 -5456-2687 ext 1017 (work) Shibuya-ku, Tokyo| +81 (0)90-5578-8500 (cell) Japan| +81 (0)3 -3

Re: [U-Boot] [PATCH 1/5] exynos5: Add system register structure

2012-05-02 Thread Chander Kashyap
Dear Rajeshwari, On 2 May 2012 21:23, Marek Vasut wrote: > Dear Rajeshwari Shinde, > >> This patch add structure for SYSREG. > > Ccing Minkyu. Can I get your opinion on these patches please? > >> >> Signed-off-by: Che-Liang Chiou >> Signed-off-by: Rajeshwari Shinde >> Reviewed-by: Vivek Gautam

Re: [U-Boot] [PATCH 2/5] exynos5: Add structure for PMU register

2012-05-02 Thread Chander Kashyap
On 2 May 2012 19:22, Rajeshwari Shinde wrote: > This patch adds power mananagement register structure for exynos5 SoC. > > Signed-off-by: Rajeshwari Shinde > --- >  arch/arm/include/asm/arch-exynos/power.h |  622 > ++ >  1 files changed, 622 insertions(+), 0 deletions

Re: [U-Boot] [PATCH 2/5] exynos5: Add structure for PMU register

2012-05-02 Thread Chander Kashyap
Dear Rajeshwari, On 3 May 2012 11:43, Chander Kashyap wrote: > On 2 May 2012 19:22, Rajeshwari Shinde wrote: >> This patch adds power mananagement register structure for exynos5 SoC. s/mananagement/management >> Signed-off-by: Rajeshwari Shinde >> --- >>  arch/arm/include/asm/arch-exynos/power.

Re: [U-Boot] [PATCH 4/5] exynos5: usb: Fix incorrect USB base addresses

2012-05-02 Thread Chander Kashyap
Hi Rajeshwari, On 2 May 2012 19:22, Rajeshwari Shinde wrote: > This patch corrects the base addresses for USB_PHY and USB_OTG. > > Signed-off-by: Vivek Gautam > Signed-off-by: Rajeshwari Shinde > --- >  arch/arm/include/asm/arch-exynos/cpu.h |    4 ++-- >  1 files changed, 2 insertions(+), 2 del

Re: [U-Boot] [PATCH 5/5] exynos5: usb: Enable USB 2.0 on smdk5250

2012-05-02 Thread Chander Kashyap
Dear Rajeshwari, On 2 May 2012 19:22, Rajeshwari Shinde wrote: > Signed-off-by: Vivek Gautam > Signed-off-by: Rajeshwari Shinde > --- >  arch/arm/include/asm/arch-exynos/cpu.h |    1 + >  include/configs/smdk5250.h             |    6 ++ >  2 files changed, 7 insertions(+), 0 deletions(-) >