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

2012-05-02 Thread Minkyu Kang
Dear Marek, On 2 May 2012 11:44, Marek Vasut ma...@denx.de wrote: +int gpio_set_value(unsigned gpio, int value) +{ +       unsigned l = readl(GPIO_FULLPORT(gpio)); +       unsigned port = GPIO_FULLPORT(gpio); + +       /* +        * All GPIO Port have a configuration on +        *

[U-Boot] Query about Address line test in POST of Uboot

2012-05-02 Thread Bhorania Amit
-- Forwarded message -- From: Bhorania Amit anbhora...@gmail.com Date: Wed, May 2, 2012 at 11:12 AM Subject: Query about Address line test in POST of Uboot To: u-boot@lists.denx.de Respected Sir, I am understanding the code of POST for RAM. In the comment of

Re: [U-Boot] Can't read kernel if bad blocks are present in partition

2012-05-02 Thread Alexandre Gambier
Assuming you load the kernel to ram with tftp (and that AppKernel is an mtdparts partition in NAND), then you could do: nand erase.part AppKernel tftp $load_addr uImage crc32 $load_addr $filesize nand write.i $load_addr AppKernel $filesize nand read.i $load_addr AppKernel $filesize crc32

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:gadget:composite

[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

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 ag...@denx.de wrote: Hi, On Thu, 26 Apr 2012 08:29:39 +0900 Donghwa Lee dh09@samsung.com 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

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

2012-05-02 Thread Minkyu Kang
On 26 April 2012 16:55, Minkyu Kang mk7.k...@samsung.com wrote: Since Exynos architecture have new SoCs, need to fix cpuinfo correctly. Signed-off-by: Minkyu Kang mk7.k...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Tested-by: Jaehoon Chung jh80.ch...@samsung.com Cc:

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

2012-05-02 Thread Minkyu Kang
On 27 April 2012 13:52, Donghwa Lee dh09@samsung.com 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

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

2012-05-02 Thread Joakim Tjernlund
Scott Wood scottw...@freescale.com 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

[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 eib...@gdsys.de Cc: Timur Tabi ti...@freescale.com --- 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 ++

[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 l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Cc: Marek Vasut ma...@denx.de --- drivers/usb/gadget/s3c_udc_otg.c | 39

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

2012-05-02 Thread Shengzhou Liu
Signed-off-by: Shengzhou Liu shengzhou@freescale.com --- 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

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. Lukasz Majewski

[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 js_at...@scharsoft.de * 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) e...@bus-elektronik.de --- MAINTAINERS

[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 l.majew...@samsung.com Signed-off-by: Kyungmin Park

[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 l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Cc: Marek Vasut ma...@denx.de --- drivers/usb/gadget/s3c_udc_otg.c | 37

[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

[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 l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Cc: Marek Vasut ma...@denx.de --- Changes for v2: - Two separate

[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 l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Cc: Marek Vasut ma...@denx.de --- drivers/usb/gadget/s3c_udc_otg.c |

[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 Vasutma...@denx.de 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

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 Vasutma...@denx.de Date : May

[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

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

[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 gautam.vi...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/include/asm/arch-exynos/ehci-s5p.h | 66 drivers/usb/host/Makefile |1 +

[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

[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 clch...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Reviewed-by: Vivek Gautam gautam.vi...@samsung.com Reviewed-by: Simon Glass s...@chromium.org --- arch/arm/include/asm/arch-exynos/sysreg.h | 43

[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 rajeshwar...@samsung.com --- arch/arm/include/asm/arch-exynos/power.h | 622 ++ 1 files changed, 622 insertions(+), 0 deletions(-) diff --git

[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 gautam.vi...@samsung.com Signed-off-by: Che-Liang Chiou clch...@chromium.org Signed-off-by: Rajeshwari Shinde

[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 gautam.vi...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/include/asm/arch-exynos/cpu.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git

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-level

[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 ma...@denx.de CC: Fabio Estevam feste...@gmail.com Signed-off-by: Wolfgang

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

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 w...@denx.de 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

[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:

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 clch...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Reviewed-by: Vivek Gautam gautam.vi...@samsung.com

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 sba...@denx.de 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

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 sba...@denx.de 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

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 ma...@denx.de wrote: +int gpio_set_value(unsigned gpio, int value) +{ + unsigned l = readl(GPIO_FULLPORT(gpio)); + unsigned port = GPIO_FULLPORT(gpio); + + /* +* All 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 for

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

[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.

[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

[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 daniel.stod...@googlemail.com Acked-by: Luka Perkov ub...@lukaperkov.net --- Changes from version v1: * fix man page * minor cosmetic fixes in

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 w...@denx.de 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

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 scottw...@freescale.com 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

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 ma...@denx.de 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 ma...@denx.de wrote: +int gpio_set_value(unsigned gpio, int value) +{ + unsigned l =

[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 cont...@huau-gabriel.fr --- Changes for v2: - Coding style cleanup - Remove

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 scottw...@freescale.com 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

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 sba...@denx.de 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

[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 ma...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de Cc: Stefano

[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 ma...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Fabio Estevam feste...@gmail.com --- include/configs/m28evk.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/m28evk.h

[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 ma...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Fabio Estevam feste...@gmail.com --- arch/arm/cpu/arm926ejs/mx28/spl_mem_init.c |2 ++ 1 file

Re: [U-Boot] USB on mx53loco

2012-05-02 Thread Fabio Estevam
On Wed, May 2, 2012 at 5:56 PM, stefano babic sba...@denx.de 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:

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 ma...@denx.de 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 ma...@denx.de 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

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

2012-05-02 Thread Marek Vasut
Dear Wolfgang Denk, Dear Graeme Russ, In message calbutckzc7cwoaql4b+mjndczgyzas0jpfzzf7q9psdhe_j...@mail.gmail.com 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

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

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 graeme.r...@gmail.com --- Makefile | 34 ++- common/Makefile |2 + config.mk|2 + doc/README.INIT_FUNC | 65 +++ include/init_func.h | 37 ++ tools/Makefile |6 + tools/mkinitseq.c|

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

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-ub2.30 is

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 about

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)

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 l.majew...@samsung.com wrote: In the MAX8997, LDO regulators needs to preserve previously set voltage values. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Cc: Minkyu

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

2012-05-02 Thread Kyungmin Park
+ Minkyu, On 5/3/12, Marek Vasut ma...@denx.de 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 clch...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com

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 rajeshwar...@samsung.com wrote: This patchset series adds support to enable USB 2.0 on smdk5250. It includes addition of system and power management registers,

[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

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 rajeshwar...@samsung.com wrote: This patchset series adds support to

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 Dependencies

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 eric.nel...@boundarydevices.com --- scripts/checkpatch.pl |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index

[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 cdhmann...@gmail.com --- 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

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 scottw...@freescale.com 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 w...@denx.de 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 eric.nel...@boundarydevices.com --- scripts/checkpatch.pl |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git

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 | lund...@lundman.net Unix Administrator | +81 (0)3 -5456-2687 ext 1017 (work) Shibuya-ku, Tokyo| +81 (0)90-5578-8500 (cell) Japan

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 ma...@denx.de 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 clch...@chromium.org Signed-off-by: Rajeshwari Shinde