[U-Boot] [PATCH] coldfire: cpu5282: increase malloc space to fix crash on start u-boot

2013-09-23 Thread Jens Scharsig (BuS Elektronik)
From: Jens Scharsig (BuS Elektronik) e...@bus-elektronik.de The malloc space is to small to boot, the current uboot 2013.10-rcX, This will fix the startup problems by increasing the mallog space to 4MiB. Signed-off-by: Jens Scharsig (BuS Elektronik) e...@bus-elektronik.de ---

Re: [U-Boot] [PATCH 3/3] mx35pdk: Fix error handling in board_late_init()

2013-09-23 Thread Stefano Babic
On 20/09/2013 21:30, Fabio Estevam wrote: From: Fabio Estevam fabio.este...@freescale.com If smc911x_initialize() fails we should return the error immediately. While at it, also check the error from cpu_eth_init(). Signed-off-by: Fabio Estevam fabio.este...@freescale.com ---

Re: [U-Boot] [PATCH 1/2] ARM: tegra: support SKU b1 of Tegra30

2013-09-23 Thread Alban Bedel
On Fri, 20 Sep 2013 10:57:42 -0700 Tom Warren twar...@nvidia.com wrote: Alban, Were you going to do a V2 of this patchset? I expected to, but up to now there was no concrete change request. Should I split the PMU stuff to its own mini driver, or is it acceptable as is for now? Alban

[U-Boot] [PATCH] Change maintainer for Avionic Design boards

2013-09-23 Thread Thierry Reding
I no longer work for Avionic Design and don't have access to hardware, so I'll pass on maintainership to Alban. Acked-by: Alban Bedel alban.be...@avionic-design.de Signed-off-by: Thierry Reding tred...@nvidia.com --- Hi Tom, I assume this is something you'd want to take through the Tegra tree?

Re: [U-Boot] U-boot PPC405EX with DDR2 DIMM

2013-09-23 Thread Stefan Roese
Hi Steve, On 18.09.2013 13:26, Steve Miller wrote: I have inherited a design using the PPC405EX that was based on the Kilauea reference design. One of the changes was Kilauea uses on-board DDR2 DRAM ICs and this design uses DDR2 DIMMs. The u-boot is working, except only 256MB of RAM is

[U-Boot] [PATCH] mx6: Fix use of improper value in enable_ipu_clock

2013-09-23 Thread Pierre Aubert
The value MXC_CCM_CCGR3_IPU1_IPU_DI0_OFFSET that was used to initialize the CCGR3 register caused an undefined value for CG0. Signed-off-by: Pierre Aubert p.aub...@staubli.com CC: Stefano Babic sba...@denx.de --- arch/arm/cpu/armv7/mx6/clock.c |2 +- 1 files changed, 1 insertions(+), 1

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Otavio Salvador
On Sun, Sep 22, 2013 at 10:21 PM, Steven Falco stevenfa...@gmail.com wrote: Prevent a crash when PXE boot calls do_bootm with a vmlinuz formatted image. In this case, there will be a null cmdtp pointer, and we must not dereference it. Signed-off-by: Steven A. Falco stevenfa...@gmail.com

Re: [U-Boot] U-boot PPC405EX with DDR2 DIMM

2013-09-23 Thread Steve Miller
Just wanted to tell the group that I am abandoning using the SPD data on PPC405EX. As I stated earlier, I inherited this design from others. As I dug deeper into the HW, I found that a X64 module was used on a processor that only has a X32 wide bus. Apparently, they could get modules for less

Re: [U-Boot] [PATCH] zynq: Use arch_cpu_init() instead of lowlevel_init()

2013-09-23 Thread Albert ARIBAUD
Hi Michal, On Thu, 22 Aug 2013 14:52:02 +0200, Michal Simek michal.si...@xilinx.com wrote: Zynq lowlevel_init() was implemented in C but stack pointer is setup after function call in _main(). Move architecture setup to arch_cpu_init() which is call as the first function in board_init_f()

Re: [U-Boot] [PATCH v3 02/10] USB: xHCI: Add stack support for xHCI

2013-09-23 Thread Dan Murphy
Marek and Vivek On 09/14/2013 03:32 AM, Vivek Gautam wrote: This adds stack layer for eXtensible Host Controller Interface which facilitates use of USB 3.0 in host mode. Adapting xHCI host controller driver in linux-kernel by Sarah Sharp to needs in u-boot. Initial porting from Linux

Re: [U-Boot] [PATCH] arm: prevent using movt/movw address loads

2013-09-23 Thread Albert ARIBAUD
Hi Jeroen, On Sat, 24 Aug 2013 13:55:38 +0200, Jeroen Hofstee jer...@myspectrum.nl wrote: The movt/movw instruction can be used to hardcode an memory location in the instruction itself. The linker starts complaining about this if the compiler decides to do so: relocation R_ARM_MOVW_ABS_NC

[U-Boot] [RFC] i2c_reloc_fixup fails on m68k

2013-09-23 Thread Jens Scharsig
Hello, I have a access violation problem with i2c_reloc_fixup on coldfire m68k systems. I found out, the i2c_reloc_fixup tries to relocate the adapter itself, but at this time i2c_adap_p is already relocated. Can anybody confirm this? I think also m68k, backfin and nds32 systems are affected

Re: [U-Boot] [PATCH] zynq: Use arch_cpu_init() instead of lowlevel_init()

2013-09-23 Thread Michal Simek
On 09/23/2013 02:31 PM, Albert ARIBAUD wrote: Hi Michal, On Thu, 22 Aug 2013 14:52:02 +0200, Michal Simek michal.si...@xilinx.com wrote: Zynq lowlevel_init() was implemented in C but stack pointer is setup after function call in _main(). Move architecture setup to arch_cpu_init() which

Re: [U-Boot] [PATCH] arm: zynq: Fix timer loadaddress

2013-09-23 Thread Albert ARIBAUD
Hi Michal, On Wed, 28 Aug 2013 07:36:31 +0200, Michal Simek michal.si...@xilinx.com wrote: Reload address was written to the counter register instead of load register. The problem happens when timer expires but never reload to ~0UL (it is downcount timer). Reported-by: Stephen MacMahon

Re: [U-Boot] [PATCH] zynq: Use arch_cpu_init() instead of lowlevel_init()

2013-09-23 Thread Albert ARIBAUD
Hi Michal, On Mon, 23 Sep 2013 16:19:52 +0200, Michal Simek mon...@monstr.eu wrote: On 09/23/2013 02:31 PM, Albert ARIBAUD wrote: Hi Michal, On Thu, 22 Aug 2013 14:52:02 +0200, Michal Simek michal.si...@xilinx.com wrote: Zynq lowlevel_init() was implemented in C but stack

Re: [U-Boot] [PATCH] i2c:zynq: I2C multi-bus support on Zynq

2013-09-23 Thread Michael Burr
See below... (My replies are tagged with [MRB:].) Michael Burr  //  Software Engineer II Logic PD T // 612.436.7273 NOTICE: Important disclaimers and limitations apply to this email. Please see this web page for our disclaimers and limitations: http://logicpd.com/email-disclaimer/ -Original

Re: [U-Boot] [PATCH v3 02/10] USB: xHCI: Add stack support for xHCI

2013-09-23 Thread Marek Vasut
Dear Dan Murphy, Marek and Vivek On 09/14/2013 03:32 AM, Vivek Gautam wrote: This adds stack layer for eXtensible Host Controller Interface which facilitates use of USB 3.0 in host mode. Adapting xHCI host controller driver in linux-kernel by Sarah Sharp to needs in u-boot.

Re: [U-Boot] [PATCH] zynq: Use arch_cpu_init() instead of lowlevel_init()

2013-09-23 Thread Michal Simek
On 09/23/2013 04:37 PM, Albert ARIBAUD wrote: Hi Michal, On Mon, 23 Sep 2013 16:19:52 +0200, Michal Simek mon...@monstr.eu wrote: On 09/23/2013 02:31 PM, Albert ARIBAUD wrote: Hi Michal, On Thu, 22 Aug 2013 14:52:02 +0200, Michal Simek michal.si...@xilinx.com wrote: Zynq

Re: [U-Boot] [PATCH] arm: Remove IXP425 boards pdnb3 and scpu

2013-09-23 Thread Albert ARIBAUD
Hi Stefan, On Tue, 10 Sep 2013 17:17:40 +0200, Stefan Roese s...@denx.de wrote: Remove Prodrive pdnb3 board (including the scpu variant) support from mainline. As its unmaintained and not needed any more for quite some time. Signed-off-by: Stefan Roese s...@denx.de Cc: Martijn de Gouw

Re: [U-Boot] [PATCH v3 00/10] USB: XHCI: Add xHCI host controller stack driver

2013-09-23 Thread Marek Vasut
Dear Vivek Gautam, + Marek, Dan, Julius, Simon and Vikas for this cover patch ;-) [...] Thanks, I have the patches lined up. Just waiting for Dans' talk with Sarah. Maybe we should put her on CC too next time so she can rip us to shreds for our mistakes in the implementation ? :) Best

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Fabio Estevam
On Mon, Sep 23, 2013 at 1:11 PM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Then shouldn't the patch subject/summary be print command name only if cmdtp is not NULL rather than the quite uninformative prevent a crash? Yes, I agree that original subject is a bit misleading. When I read

Re: [U-Boot] [PATCH] mx6: Fix use of improper value in enable_ipu_clock

2013-09-23 Thread Eric Nelson
On 09/23/2013 04:37 AM, Pierre Aubert wrote: The value MXC_CCM_CCGR3_IPU1_IPU_DI0_OFFSET that was used to initialize the CCGR3 register caused an undefined value for CG0. Signed-off-by: Pierre Aubert p.aub...@staubli.com CC: Stefano Babic sba...@denx.de --- arch/arm/cpu/armv7/mx6/clock.c |

Re: [U-Boot] [PATCH] ARM: refactor compiler options in config.mk

2013-09-23 Thread Albert ARIBAUD
Hi Masahiro, On Sat, 7 Sep 2013 17:42:37 +0900, Masahiro Yamada yamad...@jp.panasonic.com wrote: Every ARM cpu config.mk (arch/arm/cpu/{CPUDIR}/config.mk) defines: PLATFORM_RELFLAGS += -fno-common -ffixed-r8 -msoft-float So, this patch moves the common compiler options to

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Tom Rini
On Mon, Sep 23, 2013 at 01:21:34PM -0300, Fabio Estevam wrote: On Mon, Sep 23, 2013 at 1:11 PM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Then shouldn't the patch subject/summary be print command name only if cmdtp is not NULL rather than the quite uninformative prevent a crash?

Re: [U-Boot] [RFC 4/5] SPL:Defines function required to env read for IFC env_nand

2013-09-23 Thread Scott Wood
On Wed, 2013-09-18 at 16:40 +0530, Prabhakar Kushwaha wrote: Thanks Scott for taking time and reviewing the RFC patch. Please find my reply in-lined. On 09/17/2013 05:23 AM, Scott Wood wrote: On Mon, 2013-09-16 at 21:35 +0530, Prabhakar Kushwaha wrote: fsl_ifs_spl.c reads data from NAND

Re: [U-Boot] [PATCH v3 00/10] USB: XHCI: Add xHCI host controller stack driver

2013-09-23 Thread Dan Murphy
Marek On 09/23/2013 10:29 AM, Marek Vasut wrote: Dear Vivek Gautam, + Marek, Dan, Julius, Simon and Vikas for this cover patch ;-) [...] Thanks, I have the patches lined up. Just waiting for Dans' talk with Sarah. Maybe we should put her on CC too next time so she can rip us to shreds for

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Wolfgang Denk
Dear Fabio Estevam, In message caomzo5aj56kvtfrqbd3wq7oip8q3wa0yv4evuzerkxfufvx...@mail.gmail.com you wrote: Then shouldn't the patch subject/summary be print command name only if cmdtp is not NULL rather than the quite uninformative prevent a crash? Yes, I agree that original subject

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Albert ARIBAUD
Hi Steven, On Sun, 22 Sep 2013 21:21:32 -0400, Steven Falco stevenfa...@gmail.com wrote: Prevent a crash when PXE boot calls do_bootm with a vmlinuz formatted image. In this case, there will be a null cmdtp pointer, and we must not dereference it. Signed-off-by: Steven A. Falco

Re: [U-Boot] NAND flash question

2013-09-23 Thread Peter Barada
On 09/20/2013 11:27 AM, ANDY KENNEDY wrote: -Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Peter Barada Sent: Thursday, September 19, 2013 3:26 PM To: u-boot@lists.denx.de; Peter Barada Subject: Re: [U-Boot] NAND flash

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Wolfgang Denk
Dear Otavio Salvador, In message cap9odkrdjdph+8mrxof+zojzl3qs1u9k5kadey896foo_cl...@mail.gmail.com you wrote: On Sun, Sep 22, 2013 at 10:21 PM, Steven Falco stevenfa...@gmail.com wrote: Prevent a crash when PXE boot calls do_bootm with a vmlinuz formatted image. In this case, there will be

[U-Boot] [PATCH] cmd_bootm.c: Only pass BOOTM_STATE_OS_CMDLINE on PowerPC/MIPS

2013-09-23 Thread Tom Rini
In 5c427e4 we pass BOOTM_STATE_OS_CMDLINE as part of the bootm states to run, on all arches. However, this is only valid / useful on PowerPC and MIPS, and causes a problem on ARM where we specifically do not use it. Rather than make this state fake pass like we do for GO on some arches (which

Re: [U-Boot] [PATCH V4 10/17] usb: gadget: mv_udc: optimize bounce

2013-09-23 Thread Troy Kisky
On 9/22/2013 5:02 PM, Marek Vasut wrote: Dear Troy Kisky, On 9/20/2013 3:58 AM, Marek Vasut wrote: Dear Troy Kisky, Only perform one copy, either in the bounce routine for IN transfers, or the debounce rtn for OUT transfer. On out transfers, only copy the number of bytes received from the

Re: [U-Boot] [PATCH v3] socfpga: Adding Freeze Controller driver

2013-09-23 Thread Dinh Nguyen
On Fri, 2013-09-20 at 00:08 -0500, Chin Liang See wrote: Adding Freeze Controller driver. All HPS IOs need to be in freeze state during pin mux or IO buffer configuration. It is to avoid any glitch which might happen during the configuration from propagating to external devices.

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Tom Rini
On Mon, Sep 23, 2013 at 08:50:55PM +0200, Wolfgang Denk wrote: Dear Fabio Estevam, In message caomzo5aj56kvtfrqbd3wq7oip8q3wa0yv4evuzerkxfufvx...@mail.gmail.com you wrote: Then shouldn't the patch subject/summary be print command name only if cmdtp is not NULL rather than the

Re: [U-Boot] [PATCH v3 0/3] ARM: use r9 for gd instead of r8

2013-09-23 Thread Albert ARIBAUD
Hi Jeroen, On Sat, 21 Sep 2013 14:04:39 +0200, Jeroen Hofstee jer...@myspectrum.nl wrote: Changes for v3: Drop the unneeded cc-option for the fixed flag. Drop make reserving the gd register a make variable and use http://patchwork.ozlabs.org/patch/273377/ ARM: refactor compiler options in

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Wolfgang Denk
Dear Steven Falco, In message 523f979c.1070...@gmail.com you wrote: Prevent a crash when PXE boot calls do_bootm with a vmlinuz formatted image. In this case, there will be a null cmdtp pointer, and we must not dereference it. ... - printf(Wrong Image Format for %s command\n,

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Tom Rini
On Mon, Sep 23, 2013 at 03:17:57PM -0400, Tom Rini wrote: On Mon, Sep 23, 2013 at 08:50:55PM +0200, Wolfgang Denk wrote: Dear Fabio Estevam, In message caomzo5aj56kvtfrqbd3wq7oip8q3wa0yv4evuzerkxfufvx...@mail.gmail.com you wrote: Then shouldn't the patch subject/summary be

Re: [U-Boot] [PATCH V4 03/17] usb: gadget: ether set wMaxPacketSize

2013-09-23 Thread Troy Kisky
On 9/22/2013 5:04 PM, Marek Vasut wrote: Dear Troy Kisky, On 9/20/2013 3:52 AM, Marek Vasut wrote: Dear Troy Kisky, set wMaxPacketSize for full speed descriptors fs_source_desc, fs_sink_desc to 64. Full-speed bulk endpoint can have a maximum packet size of 8, 16, 32, or 64 bytes, so choice

[U-Boot] [PATCH v2 2/2] Tegra114: Do not program CPCON field for PLLX

2013-09-23 Thread Thierry Reding
PLLX no longer has the CPCON field on Tegra114, so do not attempt to program it. Signed-off-by: Thierry Reding tred...@nvidia.com --- Changes in v2: - new patch arch/arm/cpu/arm720t/tegra-common/cpu.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH v2 1/2] Tegra114: Fix PLLX M, N, P init settings

2013-09-23 Thread Thierry Reding
From: Jimmy Zhang jimmzh...@nvidia.com The M, N and P width have been changed from Tegra30. The maximum value for N is limited to 255. So, the tegra_pll_x_table for Tegra114 should be set accordingly. Signed-off-by: Jimmy Zhang jimmzh...@nvidia.com Reviewed-by: Tom Warren twar...@nvidia.com

Re: [U-Boot] [PATCH V4 01/17] usb: gadget: mv_udc: don't check CONFIG_USB_MAX_CONTROLLER_COUNT

2013-09-23 Thread Troy Kisky
On 9/22/2013 5:05 PM, Marek Vasut wrote: Dear Troy Kisky, On 9/20/2013 3:45 AM, Marek Vasut wrote: Dear Troy Kisky, i.mx6 has 1 otg controller, and 3 host ports. So, CONFIG_USB_MAX_CONTROLLER_COUNT can be greater than 1 even though only 1 device mode controller is supported. Signed-off-by:

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Wolfgang Denk
Dear Tom, In message 20130923191757.GZ5273@bill-the-cat you wrote: I don't know if it's only Wandboard, or if other boards are affected, too (which are these? under which exact test cases?). In any case. the problem is not here, but on the caller's side. It should not call a function

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Wolfgang Denk
Dear Tom, In message 20130923194554.GA5273@bill-the-cat you wrote: So, I went off an modified cmd_pxe.c to pass around cmdtp so that we get an error message out, and it's not too bad looking, but it highlights another problem, which is that we could really use a way to get at least the is

Re: [U-Boot] [PATCH V4 01/17] usb: gadget: mv_udc: don't check CONFIG_USB_MAX_CONTROLLER_COUNT

2013-09-23 Thread Troy Kisky
On 9/23/2013 1:23 PM, Troy Kisky wrote: On 9/22/2013 5:05 PM, Marek Vasut wrote: Dear Troy Kisky, On 9/20/2013 3:45 AM, Marek Vasut wrote: Dear Troy Kisky, i.mx6 has 1 otg controller, and 3 host ports. So, CONFIG_USB_MAX_CONTROLLER_COUNT can be greater than 1 even though only 1 device mode

Re: [U-Boot] [PATCH V4 01/17] usb: gadget: mv_udc: don't check CONFIG_USB_MAX_CONTROLLER_COUNT

2013-09-23 Thread Marek Vasut
Dear Troy Kisky, On 9/23/2013 1:23 PM, Troy Kisky wrote: On 9/22/2013 5:05 PM, Marek Vasut wrote: Dear Troy Kisky, On 9/20/2013 3:45 AM, Marek Vasut wrote: Dear Troy Kisky, i.mx6 has 1 otg controller, and 3 host ports. So, CONFIG_USB_MAX_CONTROLLER_COUNT can be greater than 1

Re: [U-Boot] [PATCH V4 03/17] usb: gadget: ether set wMaxPacketSize

2013-09-23 Thread Marek Vasut
Dear Troy Kisky, On 9/22/2013 5:04 PM, Marek Vasut wrote: Dear Troy Kisky, On 9/20/2013 3:52 AM, Marek Vasut wrote: Dear Troy Kisky, set wMaxPacketSize for full speed descriptors fs_source_desc, fs_sink_desc to 64. Full-speed bulk endpoint can have a maximum packet size of

Re: [U-Boot] [PATCH V4 10/17] usb: gadget: mv_udc: optimize bounce

2013-09-23 Thread Marek Vasut
Dear Troy Kisky, On 9/22/2013 5:02 PM, Marek Vasut wrote: Dear Troy Kisky, On 9/20/2013 3:58 AM, Marek Vasut wrote: Dear Troy Kisky, Only perform one copy, either in the bounce routine for IN transfers, or the debounce rtn for OUT transfer. On out transfers, only copy the

Re: [U-Boot] [PATCH v2 1/2] Tegra114: Fix PLLX M, N, P init settings

2013-09-23 Thread Stephen Warren
On 09/23/2013 02:07 PM, Thierry Reding wrote: From: Jimmy Zhang jimmzh...@nvidia.com The M, N and P width have been changed from Tegra30. The maximum value for N is limited to 255. So, the tegra_pll_x_table for Tegra114 should be set accordingly. The series, Acked-by: Stephen Warren

Re: [U-Boot] [PATCH] powerpc/tool/pbl: fix pbl image compiling process

2013-09-23 Thread York Sun
On 09/10/2013 11:48 PM, shh@gmail.com wrote: From: Shaohui Xie shaohui@freescale.com Previous process of compiling a PBL boot image is: 1: make board_name_config 2: make u-boot.pbl for example: make T4240QDS_SDCARD_config make u-boot.pbl Now the process is: 1: make

[U-Boot] [PATCH] i2c: Zynq: Support for TI PCA9548 bus multiplexer

2013-09-23 Thread Michael Burr
(Interface is not quite the same as Phillips PCA9547.) Signed-off-by: Michael Burr michael.b...@logicpd.com Cc: Heiko Schocher h...@denx.de Cc: Michal Simek mon...@monstr.eu --- drivers/i2c/i2c_core.c |5 + include/i2c.h |2 ++ 2 files changed, 7 insertions(+) diff --git

Re: [U-Boot] [U-boot] OOB-Layout question in NAND Flash chip

2013-09-23 Thread Scott Wood
On Sun, 2013-09-22 at 11:58 +0800, tiger...@viatech.com.cn wrote: Hi, experts: Is the u-boot's NAND OOB-layout same with linux kernel's nand drivers? It's supposed to be, though it's defined by individual drivers and there may be some where the layout has been (unfortunately) changed over

Re: [U-Boot] [PATCH v2 0/5] Add device tree support for VxWorks

2013-09-23 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 09/21/2013 10:57 PM, myan wrote: Hi Tom, I posted some patches to add device tree support for VxWorks several days ago. Wolfgang provided me with some very useful feedback, and I sent v2 patches. The discussion and patches are recorded

Re: [U-Boot] [PATCH] Prevent a U-Boot crash on Wandboard

2013-09-23 Thread Steven Falco
On 09/23/2013 04:44 PM, Wolfgang Denk wrote: Dear Tom, In message 20130923194554.GA5273@bill-the-cat you wrote: So, I went off an modified cmd_pxe.c to pass around cmdtp so that we get an error message out, and it's not too bad looking, but it highlights another problem, which is that we

[U-Boot] [PATCH v2 1/2] buildman: Adjust tests for new boards.cfg format

2013-09-23 Thread Simon Glass
Commit 27af930e9a5c91365ca639ada580b338eabe4989 changed the boards.cfg format but missed to change the parsing in buildman. A follow-on commit 03c1bb242548e4e9d267d784861ccd69a1887aa0 fixed this but missed fixing the tests. This patch updates the tests to fit the new Board constructor.

Re: [U-Boot] [PATCH 1/2] ARM: tegra: support SKU b1 of Tegra30

2013-09-23 Thread Tom Warren
It's fine as-is for now. Send a V2 with any changes Stephen, et al requested (if any), and I'll get it into tegra-next when I return from vacation next Monday (assuming it's been Acked). Thanks, Tom -Original Message- From: Alban Bedel [mailto:alban.be...@avionic-design.de] Sent:

[U-Boot] [PATCH v2 2/2] buildman: Allow make flags to be specified for each board

2013-09-23 Thread Simon Glass
There are a few make options such as BUILD_TAG which can be provided when building U-Boot. Provide a way for buildman to pass these flags to make also. The flags should be in a [make-flags] section and arranged by target name (the 'target' column in boards.cfg. See the README for more details.

Re: [U-Boot] [U-boot] OOB-Layout question in NAND Flash chip

2013-09-23 Thread TigerLiu
Hi, Scott: Thanks for your answer! It's supposed to be, though it's defined by individual drivers and there may be some where the layout has been (unfortunately) changed over time -- such as if a vendor kernel/U-Boot did it differently from upstream. Is there a specific NAND driver you're

[U-Boot] [PATCH 3/5] cosmetic: UDM-net: clean up the remainders of dead driver

2013-09-23 Thread Masahiro Yamada
This commit omits non-existing drivers/net/netarm_eth.c from the list. This driver is deleted by commit b411eb30f. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- doc/driver-model/UDM-net.txt | 6 -- 1 file changed, 6 deletions(-) diff --git a/doc/driver-model/UDM-net.txt

[U-Boot] [PATCH 2/5] cosmetic: UDM-serial: clean up the remainders of dead driver

2013-09-23 Thread Masahiro Yamada
The following serial drivers do not exist any more. - ns9750_serial.c: deleted by commit 4cfc611b4 - s3c4510b_uart.c: deleted by commit afad40299 - serial_clps7111.c: deleted by commit f2e080156 - serial_netarm.c: deleted by commit b411eb30f This commit cleans up UDM-serial.txt.

[U-Boot] [PATCH 4/5] ep93xx: remove remainders of dead board

2013-09-23 Thread Masahiro Yamada
commit 716f7ade104a9aeed647e19a8b8c9ed9f491359d deleted all ep93xx SoC boards. Now ep93xx SoC specific code - arch/arm/cpu/arm920t/ep93xx/ - arch/arm/include/asm/arch-ep93xx/ are not used at all. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com ---

[U-Boot] [PATCH 5/5] net: ep93xx_eth: remove a dead driver.

2013-09-23 Thread Masahiro Yamada
commit 716f7ade104a9aeed647e19a8b8c9ed9f491359d deleted all ep93xx SoC boards. Now there are no boards enabling CONFIG_EP93XX, no boards using ep93xx_eth driver. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- doc/driver-model/UDM-net.txt | 6 - drivers/net/Makefile | 1

[U-Boot] [PATCH 0/5] cleanup docs and remove remainders of dead board

2013-09-23 Thread Masahiro Yamada
This series deletes the remainders of dead board: - arch/arm/cpu/arm920t/ep93xx/* - arch/arm/include/asm/arch-ep93xx/* - drivers/net/ep93xx_eth.[ch] But while I was working to delete a dead driver ep93xx_eth, I realized re-numbering the drivers list in doc/driver-model/UDM-net.txt was a

Re: [U-Boot] [PATCH v3 00/10] USB: XHCI: Add xHCI host controller stack driver

2013-09-23 Thread Vivek Gautam
Hi Marek, On Mon, Sep 23, 2013 at 8:59 PM, Marek Vasut ma...@denx.de wrote: Dear Vivek Gautam, + Marek, Dan, Julius, Simon and Vikas for this cover patch ;-) [...] Thanks, I have the patches lined up. Just waiting for Dans' talk with Sarah. Maybe we should put her on CC too next time so

[U-Boot] [U-boot]question: why write bbt and search bbt use different ops mode in nand_bbt.c in U-boot 2013.04?

2013-09-23 Thread TigerLiu
Hi , Scott: First, My uboot version is 2013.04. In the function scan_write_bbt(), U-boot uses MTD_OOB_PLACE to write BBT data and BBT pattern. See below static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len, uint8_t *buf, uint8_t *oob) {

Re: [U-Boot] [PATCH] drivers:power:max77693: add support for new multi function pmic max77693

2013-09-23 Thread Minkyu Kang
Dear Piotr Wilczek, On 21/05/13 22:00, Piotr Wilczek wrote: This patch add support for new multi function pmic max77693. The driver is split into three modules: pmic, muic and fuelgage. Signed-off-by: Piotr Wilczek p.wilc...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com

Re: [U-Boot] [PATCH] usb: ehci: Fix test mode for connected ports

2013-09-23 Thread Julius Werner
Hi Simon, It seems like you could do something like /* * This is the delay for ...the spec requires a minimum of ... */ #define SOME_SUITABLE_NAME 8000 at the top of the file and then use it twice in your function. The file contains a dozen handshake() calls that have a literal 100 *

Re: [U-Boot] [PATCH] usb: ehci: Fix test mode for connected ports

2013-09-23 Thread Simon Glass
Hi Julius, On Mon, Sep 23, 2013 at 8:55 PM, Julius Werner jwer...@chromium.org wrote: Hi Simon, It seems like you could do something like /* * This is the delay for ...the spec requires a minimum of ... */ #define SOME_SUITABLE_NAME 8000 at the top of the file and then use it

[U-Boot] [PATCH] USB: gadget: atmel: disconnect before unbind

2013-09-23 Thread Bo Shen
When unbind the gadget driver, need call disconnect first. Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/usb/gadget/atmel_usba_udc.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/usb/gadget/atmel_usba_udc.c b/drivers/usb/gadget/atmel_usba_udc.c