Re: [U-Boot] [PATCH] davinci: added Marvell 88E1111 PHY support

2012-05-04 Thread Brilliantov Kirill Vladimirovich
Tom Rini wrote on 05/04/2012 08:58 PM: OK, we really need the emac driver converted to phylib (which already has this PHY it looks like). Any chance you would have time to try doing that? Tom, now I try modify driver/net/phy/marvell.c. I add next defines in include/configs/davinci_dm365evn.h

[U-Boot] [PATCH] arm,davinci: update for enbw_cmc board

2012-05-04 Thread Heiko Schocher
- change gpio pin settings: - gpio pin 6[13] (PLC reset) default value low - gpio pin 6[0] (TPM reset) default value low - 4 new GPIO pins pin i/o name - 3[9] input Board Type - 2[7] input HW-ID0 - 2[6] input HW-ID1 - 2[3] input HW-ID2 - read board type and hw id fr

Re: [U-Boot] [PATCH 3/3] mxc_i2c: remove setting speed at each start

2012-05-04 Thread Troy Kisky
On 4/24/2012 8:33 PM, Troy Kisky wrote: Other then being very weird, this code was also wrong. For example, say I set speed to 100K. I'll read back the speed as 85937. But the speed is really 85937.5, so we I reset the speed to 85937, I'll get 73660.7. After a couple of transactions my speed is n

[U-Boot] [PATCH 6/6] powerpc/85xx: p1022ds: use the saveenv board preparation functions

2012-05-04 Thread Timur Tabi
On the P1022, the DIU video signals are muxed with the localbus, so when the DIU is active, the localbus is unavailable. The saveenv command now supports board-specific functions that allow the DIU/LBC mux to be switched while saving the environment. This is much more efficient than switching the

[U-Boot] [PATCH 4/6] lib/powerpc: addrmap_phys_to_virt() should return a pointer

2012-05-04 Thread Timur Tabi
addrmap_phys_to_virt() converts a physical address (phys_addr_t) to a virtual address, so it should return a pointer instead of an unsigned long. Its counterpart, addrmap_virt_to_phys(), takes a pointer, so now they're orthogonal. The only caller of addrmap_phys_to_virt() converts the return value

[U-Boot] [PATCH 5/6] cmd_nvedit.c: allow board-specific code before/after saving the environment

2012-05-04 Thread Timur Tabi
Introduce board_start_saveenv() and board_finish_saveenv(), two "weak" functions that are called before and after saving the environment. This allows for board-specific functions that "prepare" the board for saving the environment. This is useful if, for some reason, the non-volatile storage is n

[U-Boot] [PATCH 3/6] powerpc/85xx: clean up P1022DS board configuration header file

2012-05-04 Thread Timur Tabi
Remove some unused default environment variables (memctl_intlv_ctl, perf_mode, diuregs, dium, and diuerr), update 'tftpflash' variable, and add videobootargs as a Linux command line variable (so that we can easily pass video= to the kernel). Signed-off-by: Timur Tabi --- include/configs/P1022DS.

[U-Boot] [PATCH 2/6] powerpc/85xx: fdt_set_phy_handle() should return an error code

2012-05-04 Thread Timur Tabi
fdt_set_phy_handle() makes several FDT calls that could fail, so it should not be hiding these errors. Signed-off-by: Timur Tabi --- board/freescale/common/fman.c | 36 +++- board/freescale/common/fman.h |2 +- 2 files changed, 20 insertions(+), 18 deletions

[U-Boot] [PATCH 1/6] powerpc/85xx: minor clean-ups to the P2020DS board header file

2012-05-04 Thread Timur Tabi
Remove some unused macros and remove all #undef macros. The RTL8139 network adapter is not shipped with the board nor commonly used, so don't define it by default. The E1000 is still defined. Add 57,600 baud as an option. For some reason, this baud rate is missing from many boards. Signed-off-

[U-Boot] [PATCH] tegra: override compiler flags for cmd_nvedit

2012-05-04 Thread Allen Martin
Override -march setting for tegra to -march=armv4t for cmd_nvedit.c The recent change to use -march=armv7-a for armv7 caused a regression on tegra because tegra starts boot on a arm7tdmi processor before transferring control to the cortex-a9. While still executing on the arm7tdmi there is a call

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

2012-05-04 Thread Timur Tabi
Dirk Eibach wrote: > Signed-off-by: Dirk Eibach > Cc: Timur Tabi > --- Can you give me some instructions on how to test this? I'm working on adding NAND boot support to the P1022, so I need to make sure I don't conflict with your patch. > Changes in v2: > - add Cc > - split up original patch s

Re: [U-Boot] [PATCH v6 03/23] Add abs() macro to return absolute value

2012-05-04 Thread Albert ARIBAUD
Hi Simon, Le 04/05/2012 20:25, Simon Glass a écrit : This macro is generally useful to make it available in common. Signed-off-by: Simon Glass --- Changes in v3: - Add new patch to put abs() in common.h Changes in v6: - Update x86emu and omap4 to use the abs() macro arch/arm/cpu/armv7/omap4

[U-Boot] [PATCH v6 03/23] Add abs() macro to return absolute value

2012-05-04 Thread Simon Glass
This macro is generally useful to make it available in common. Signed-off-by: Simon Glass --- Changes in v3: - Add new patch to put abs() in common.h Changes in v6: - Update x86emu and omap4 to use the abs() macro arch/arm/cpu/armv7/omap4/clocks.c |2 -- drivers/bios_emulator/x86emu/

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

2012-05-04 Thread Joe Perches
On Fri, 2012-05-04 at 08:59 -0700, Eric Nelson wrote: > Requires --strict option during invocation: > ~/linux$ scripts/checkpatch --strict foo.patch > > This tests for a bad habits of mine like this: > > return 0 ; > > Note that it does allow a special case of a bare semicolon > for

[U-Boot] No MAC address assigns on OpenRD, connected with [PATCH 2/2] mvgbe: fix network device indices

2012-05-04 Thread Anton Vasilyev
Dear Prafulla, After update project to U-Boot v2012.04.01 I face a problem that no MAC address assigns on OpenRD U

Re: [U-Boot] [PATCH] davinci: added Marvell 88E1111 PHY support

2012-05-04 Thread Tom Rini
On 05/04/2012 03:58 AM, Brilliantov Kirill Vladimirovich wrote: added Marvell 88E PHY support for Davinchi DM36x tested on DM368ZCEF Signed-off-by: Brilliantov Kirill Vladimirovich OK, we really need the emac driver converted to phylib (which already has this PHY it looks like). An

[U-Boot] [PATCH v5 04/10] input: Add support for keyboard matrix decoding from an fdt

2012-05-04 Thread Simon Glass
From: Bernie Thompson Matrix keyboards require a key map to be set up, and must also deal with key ghosting. Create a keyboard matrix management implementation which can be leveraged by various keyboard drivers. This includes code to read the keymap from the FDT and perform debouncing. Signed-o

Re: [U-Boot] [PATCH 3/3] omap4: do not enable auxiliary cores

2012-05-04 Thread R, Sricharan
Hi Tero, [snip] >        u32 *const clk_modules_hw_auto_non_essential[] = { > -               &prcm->cm_mpu_m3_mpu_m3_clkctrl, > -               &prcm->cm_ivahd_ivahd_clkctrl, > -               &prcm->cm_ivahd_sl2_clkctrl, > -               &prcm->cm_dsp_dsp_clkctrl, >                &prcm->cm_l3_

Re: [U-Boot] [PATCH 1/3] mx5: Add clock config interface

2012-05-04 Thread Fabio Estevam
Hi Stefano, On Mon, Apr 30, 2012 at 3:12 PM, Fabio Estevam wrote: > mx5: Add clock config interface > > Add clock config interface support, so that we > can configure CPU or DDR clock in the later init > > Signed-off-by: Jason Liu > Signed-off-by: Eric Miao > Signed-off-by: Fabio Estevam Any

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

2012-05-04 Thread Eric Nelson
Requires --strict option during invocation: ~/linux$ scripts/checkpatch --strict foo.patch This tests for a bad habits of mine like this: return 0 ; Note that it does allow a special case of a bare semicolon for empty loops: while (foo()) ; --- V2 adds t

Re: [U-Boot] pull request for u-boot-tegra/master

2012-05-04 Thread Tom Warren
Albert, On Fri, May 4, 2012 at 12:30 AM, Albert ARIBAUD wrote: > Hi Tom, > > Le 03/05/2012 17:56, Tom Warren a écrit : > >> Albert, >> >> Please pull u-boot-tegra/master into arm master. Thanks! >> >> The following changes since commit >> 026251a5e825d61d3bcdf6dffcc27d15afd574f4: >>   Donghwa Lee

Re: [U-Boot] [PATCH] OMAP4: Set fdt_high for OMAP4 devices to enable booting with Device Tree

2012-05-04 Thread Jon Hunter
Hi Sricharan, On 05/04/2012 06:20 AM, R, Sricharan wrote: > Jon, > [snip] > >> --- a/include/configs/omap4_common.h >> +++ b/include/configs/omap4_common.h >> @@ -151,6 +151,7 @@ >> #define CONFIG_EXTRA_ENV_SETTINGS \ >>"loadaddr=0x8200\0" \ >>"console=ttyO2,115200n8\0" \ >>

[U-Boot] [PATCH] OMAP4: Set fdt_high for OMAP4 devices to enable booting with Device Tree

2012-05-04 Thread Jon Hunter
From: Jon Hunter For OMAP4 boards, such as the panda-es, that have 1GB of memory the linux kernel fails to locate the device tree blob on boot. The reason being is that u-boot is copying the DT blob to the upper part of RAM when booting the kernel and the kernel is unable to access the blob. By s

[U-Boot] [PATCH 3/6] arm/km: skip FPGA config when already configured

2012-05-04 Thread Holger Brunck
From: Valentin Longchamp In order to be able to perform board resets without interrupting the traffic, the configuration of an already properly configured FPGA is skipped. This is because some PCIe FPGAs embed some other function that must continue to work over reset. It is then the responsibil

[U-Boot] [PATCH 0/6] further updates for Keymile ARM boards

2012-05-04 Thread Holger Brunck
This patch seris is based on a already transmitted but currently not committed patch serie: http://lists.denx.de/pipermail/u-boot/2012-March/121009.html It adds some further support for our managed switch on kmnusa and kmcoge5un. And some other feature are added or fixed (dip switch detection for k

[U-Boot] [PATCH 4/6] arm/km: support the 2 PCIe fpga resets

2012-05-04 Thread Holger Brunck
From: Valentin Longchamp The PCIe FPGAs now have to support 2 resets: one for the non traffic affecting part (PCIe) and one for the traffic affecting part. When the FPGA is not reconfigured, we only reset the PCIe part. Signed-off-by: Valentin Longchamp --- board/keymile/km_arm/fpga_config.c

[U-Boot] [PATCH 6/6] arm/km: fix testpin detection for kmcoge5un

2012-05-04 Thread Holger Brunck
From: Thomas Herzmann On kmcoge5un unfortunately the HW wiring is differently to other km arm boards. Signed-off-by: Thomas Herzmann Signed-off-by: Holger Brunck --- board/keymile/km_arm/km_arm.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/board/keymile/km_arm/

[U-Boot] [PATCH 5/6] arm/km: add implementation for read_dip_switch

2012-05-04 Thread Holger Brunck
From: Thomas Herzmann Add a function to read the dip_switch on kmcoge5un. If the switch is set the actual_bank is set to 0 and this SW is booted. Signed-off-by: Thomas Herzmann Signed-off-by: Holger Brunck --- board/keymile/km_arm/km_arm.c | 14 +- include/configs/km_kirkwood.h

[U-Boot] [PATCH 1/6] arm/km: add support for external switch configuration

2012-05-04 Thread Holger Brunck
From: Valentin Longchamp This can be used if we do not want to use an EEPROM for the configuration. Signed-off-by: Valentin Longchamp --- board/keymile/common/common.h |7 -- board/keymile/km_arm/km_arm.c |3 + board/keymile/km_arm/managed_switch.c | 169 ++

[U-Boot] [PATCH 2/6] arm/km: enable external switch configuration for kmnusa

2012-05-04 Thread Holger Brunck
From: Valentin Longchamp The configuration EEPROM should be removed for P1B. Signed-off-by: Valentin Longchamp --- board/keymile/km_arm/km_arm.c | 10 -- 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/board/keymile/km_arm/km_arm.c b/board/keymile/km_arm/km_arm.c index

Re: [U-Boot] [PATCH] DHCP: fix dhcp command parameters overwrite issue

2012-05-04 Thread Wolfgang Denk
Dear voice shen, please do not top post / full quote. Please read http://www.netmeister.org/news/learn2quote.html In message you wrote: > > But, I have a question. The different DHCP server configuration will > cause different result. > Please take following information as a reference. >

[U-Boot] Getting into u-boot (targetting pc7448)

2012-05-04 Thread Frédéric LOCHON
Hello, I'm trying to build my own system using a powerpc 7448 as CPU. My system will be quite unusual since the only used devices will be the CPU and an FPGA (eventually connected to some other devices). My goal is to build some kind of ultra minimal system based on this CPU. Thus, there will b

[U-Boot] [PATCH] davinci: added Marvell 88E1111 PHY support

2012-05-04 Thread Brilliantov Kirill Vladimirovich
added Marvell 88E PHY support for Davinchi DM36x tested on DM368ZCEF Signed-off-by: Brilliantov Kirill Vladimirovich --- arch/arm/cpu/arm926ejs/davinci/Makefile |1 + arch/arm/cpu/arm926ejs/davinci/marvell.c | 232 + arch/arm/include/asm/arch-davinc

[U-Boot] [PATCH] i.MX28: Add delay after CPU bypass is cleared

2012-05-04 Thread Marek Vasut
This solves issues when larger amount of DRAM is used, like 256MB. Behave the same in case of CPU bypass as we do in case of EMI bypass, but wait 15 ms. We need to wait until the clock domain stabilizes. This issue seemed to have been caused by not waiting after frobbing with the CPU bypass, it wa

Re: [U-Boot] [PATCH] OMAP4: Set fdt_high for OMAP4 devices to enable booting with Device Tree

2012-05-04 Thread R, Sricharan
Jon, [snip] > --- a/include/configs/omap4_common.h > +++ b/include/configs/omap4_common.h > @@ -151,6 +151,7 @@ >  #define CONFIG_EXTRA_ENV_SETTINGS \ >        "loadaddr=0x8200\0" \ >        "console=ttyO2,115200n8\0" \ > +       "fdt_high=0x\0" \ Tested this on mainline and worked f

Re: [U-Boot] [PATCH 0/6 V2] EXYNOS5: USB: Enable USB 2.0 support

2012-05-04 Thread Marek Vasut
Dear Rajeshwari Shinde, > This patchset series adds support to enable USB 2.0 on smdk5250. > It corrects sysreg register, usb host, usb otg base address, > adds power management registers,functions to enable and disable power > to the USB host controller are added. > > This patchset is based on:

Re: [U-Boot] [PATCH 3/4 V2] i.MX28: Add delay after CPU bypass is cleared

2012-05-04 Thread Marek Vasut
Dear Detlev Zundel, > Hi Marek, > > > This solves issues when larger amount of DRAM is used. Behave the > > same in case of CPU bypass as we do in case of EMI bypass, wait > > 15 ms. We need to wait until the clock domain stabilizes. > > Sorry to be somewhat persistent here, but can you please i

[U-Boot] [PATCH 6/6 V2] config: EXYNOS5: USB: Enable USB 2.0 on smdk5250

2012-05-04 Thread Rajeshwari Shinde
Signed-off-by: Vivek Gautam --- include/configs/smdk5250.h |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/include/configs/smdk5250.h b/include/configs/smdk5250.h index 9659f9e..47cbb0b 100644 --- a/include/configs/smdk5250.h +++ b/include/configs/smdk5250.h @@ -101,

[U-Boot] [PATCH 5/6 V2] EXYNOS5: USB: Fix incorrect USB base addresses

2012-05-04 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 Acked-by: Chander Kashyap --- arch/arm/include/asm/arch-exynos/cpu.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/include/asm/arc

[U-Boot] [PATCH 4/6 V2] Exynos5: Add power Enable/Disable for USB-EHCI

2012-05-04 Thread Rajeshwari Shinde
This patch adds functions to enable/disable the power of USB host controller for EXYNOS5. Signed-off-by: Vivek Gautam Signed-off-by: Che-Liang Chiou Signed-off-by: Rajeshwari Shinde --- This patchset is based on: USB: EXYNOS: Add ehci support.patch arch/arm/cpu/armv7/exynos/power.c|

[U-Boot] [PATCH 3/6 V2] EXYNOS5 : USB: Set USB 2.0 HOST Link mode

2012-05-04 Thread Rajeshwari Shinde
This patch adds a function to set usb host mode to USB 2.0 HOST Link for EXYNOS5 Signed-off-by: Rajeshwari Shinde --- This patchset is based on: USB: EXYNOS: Add ehci support.patch arch/arm/cpu/armv7/exynos/system.c| 22 ++ arch/arm/include/asm/arch-exynos/system.h

[U-Boot] [PATCH 2/6 V2] EXYNOS: Add structure for PMU registers

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

[U-Boot] [PATCH 1/6 V2] EXYNOS5: Fix system register structure

2012-05-04 Thread Rajeshwari Shinde
This patch corrects the SYSREG structure. We have removed the sysreg.h added in the previous patchset version as the sysreg structure is already defined in system.h. Signe-off-by: Rajeshwari Shinde --- arch/arm/include/asm/arch-exynos/system.h |1 + 1 files changed, 1 insertions(+), 0 deleti

[U-Boot] [PATCH 0/6 V2] EXYNOS5: USB: Enable USB 2.0 support

2012-05-04 Thread Rajeshwari Shinde
This patchset series adds support to enable USB 2.0 on smdk5250. It corrects sysreg register, usb host, usb otg base address, adds power management registers,functions to enable and disable power to the USB host controller are added. This patchset is based on: USB: EXYNOS: Add ehci support.patch

[U-Boot] [PATCH v5 03/10] input: Add generic keyboard input handler

2012-05-04 Thread Simon Glass
Add a module which understands converting key codes (or scan codes) to ASCII characters. It includes FIFO support and can call back to drivers to read new characters when its FIFO is empty. Keycode maps are provided for un-modified, shift and ctrl keys. The plan is to use this module where such m

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

2012-05-04 Thread Chander Kashyap
cc'ng to Minkyu Kang and Lukasz Majewski On 4 May 2012 15:40, Rajeshwari Shinde wrote: > This patch adds ehci driver support for EXYNOS. > > Signed-off-by: Vivek Gautam > Signed-off-by: Rajeshwari Shinde > --- >  arch/arm/include/asm/arch-exynos/cpu.h  |    3 + >  arch/arm/include/asm/arch-exyn

[U-Boot] [resent] New chapter in i.MX51 datasheet an issue?

2012-05-04 Thread David Jander
Hi all, I discovered a bug in u-boot, that got evident after Freescale updated the i.MX51 datasheets to revision 5 in March this year. I don't know if it is a serious problem or not, but if I believe the wording of the datasheet many of the boards that use a i.MX51 processor and running u-boot as

[U-Boot] ETH RBPTR incorrect mapping for rtx volatile structure

2012-05-04 Thread BUGNIOT Geoffrey
Hi, (my configuration is MPC8270 on a Interface Concept board plines VMEb) I'm facing a problem relating to my ETH FCC interface (FCC2) It appears during a TFTPBOOT command that configuration informations are not the expecting one. Basically, I'm facing timeout in my serial terminal and several

[U-Boot] [PATCH V3] USB: EXYNOS: Add ehci support

2012-05-04 Thread Rajeshwari Shinde
This patch adds ehci driver support for EXYNOS. Signed-off-by: Vivek Gautam Signed-off-by: Rajeshwari Shinde --- arch/arm/include/asm/arch-exynos/cpu.h |3 + arch/arm/include/asm/arch-exynos/ehci.h | 66 ++ drivers/usb/host/Makefile |1 + drivers/usb/hos

Re: [U-Boot] [PATCH RESEND] ARM: OMAP3: USB: Fix the EHCI ULPI PHY reset issue

2012-05-04 Thread Igor Grinberg
On 05/04/12 12:06, Russ Dill wrote: > On Thu, May 3, 2012 at 11:03 PM, Igor Grinberg > wrote: >> Hi Russ, >> >> On 05/03/12 22:08, Russ Dill wrote: >>> On Wed, May 2, 2012 at 3:38 AM, Raja, Govindraj >>> wrote: On Wed, May 2, 2012 at 2:17 PM, Russ Dill wrote: > On Mon, Mar 19, 2012 at

[U-Boot] [PATCH v3 14/19] arm/km: add kmcoge5un board support

2012-05-04 Thread Holger Brunck
For u-boot this board is similar to mgcoge3un. But some differences are present. We have a different SDRAM on it and therefore a new SDRAM config file. Additionaly this board has a direct MAC/MAC connection from the kirkwood to a marvell simple switch without a phy inbetween, this needs a new confi

[U-Boot] [PATCH v3 13/19] arm/km: add kmnusa board support

2012-05-04 Thread Holger Brunck
This board is similar to portl2, but it has the u-boot environment in a SPI NOR flash and not in an i2c eeprom like portl2 have. Some other details: - IVM EEPROM is at adress: pca9547:70:9 - PCI is enabled - PIGGY4 is connected via MV88E6352 simple switch. There is no phy between the simple

Re: [U-Boot] [PATCH 3/4 V2] i.MX28: Add delay after CPU bypass is cleared

2012-05-04 Thread Detlev Zundel
Hi Marek, > This solves issues when larger amount of DRAM is used. Behave the > same in case of CPU bypass as we do in case of EMI bypass, wait > 15 ms. We need to wait until the clock domain stabilizes. Sorry to be somewhat persistent here, but can you please include the information what "larger

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

2012-05-04 Thread Detlev Zundel
Hi Marek, > Dear Detlev Zundel, > >> Hi Marek, >> >> [...] >> >> >> Can you please comment on why we are waiting and why we are waiting >> >> exactly this long? Can we maybe poll the needed time somehow? >> > >> > We need to wait for the CPU clock to stabilize. >> >> This would be a worthwhil

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

2012-05-04 Thread Detlev Zundel
Hi Marek, > Dear Detlev Zundel, > >> Hi Marek, >> >> [...] >> >> >> - Why was the change made in the first place and for what OOT port? >> > >> > Change of a DRAM configuration register that enabled additional >> > address bit, at address 512MB of DRAM. Though this caused memory hole >> > on ou

[U-Boot] New chapter in i.MX51 datasheet an issue?

2012-05-04 Thread David Jander
Hi all, I discovered a bug in u-boot, that got evident after Freescale updated the i.MX51 datasheets to revision 5 in March this year. I don't know if it is a serious problem or not, but if I believe the wording of the datasheet many of the boards that use a i.MX51 processor and running u-boot as

[U-Boot] [PATCH 5/6] powerpc/83xx/km: readout dip_switch on kmcoge5ne

2012-05-04 Thread Holger Brunck
From: Thomas Herzmann On kmcoge5ne we have a dip switch present. If this switch was switched on the actual_bank is set to 0 and this SW will be booted. Signed-off-by: Thomas Herzmann Signed-off-by: Holger Brunck --- board/keymile/km83xx/km83xx.c | 11 +++ 1 files changed, 11 inserti

[U-Boot] [PATCH 6/6] km/common: check test_bank and testpin for testboot

2012-05-04 Thread Holger Brunck
From: Thomas Herzmann If the testpin is asserted, first check if a test_bank variable is defined before trying to boot this test_bank. Signed-off-by: Thomas Herzmann Signed-off-by: Holger Brunck --- board/keymile/common/common.c | 36 +++ include/config

[U-Boot] [PATCH 2/6] km/common: increase bootlimit to 3

2012-05-04 Thread Holger Brunck
Increase bootlimit to 3 to be more tolerant during the boot process before switching to the backup application. Signed-off-by: Holger Brunck --- include/configs/km/keymile-common.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/km/keymile-common.h b/in

[U-Boot] [PATCH 1/6] km/common: fixed error in ethaddr (1-byte-shift)

2012-05-04 Thread Holger Brunck
From: Thomas Herzmann The MAC address begins at offset 1. Signed-off-by: Thomas Herzmann Signed-off-by: Holger Brunck --- board/keymile/common/ivm.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/keymile/common/ivm.c b/board/keymile/common/ivm.c index 70d7845.

[U-Boot] [PATCH 3/6] powerpc/83xx/km: added missing enable of application buffer

2012-05-04 Thread Holger Brunck
From: Stefan Bigler Enabled application buffers in uboot to allow application chipselect access in uboot. Signed-off-by: Stefan Bigler --- board/keymile/common/common.h |2 ++ board/keymile/km83xx/km83xx.c |2 ++ 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/board/keym

[U-Boot] [PATCH 4/6] powerpc/83xx: configure CONFIG_POST for kmcoge5ne

2012-05-04 Thread Holger Brunck
From: Thomas Herzmann kmcoge5ne starts the post tests if the testpin on the board was enabled. Currently it does simply a memory test. Signed-off-by: Thomas Herzmann Signed-off-by: Holger Brunck --- board/keymile/common/common.h |6 +- board/keymile/km83xx/km83xx.c | 37

[U-Boot] [PATCH 0/6] further updates for keymile powerpc 83xx boards

2012-05-04 Thread Holger Brunck
This patchserie provides further updates for km ppc 83xx boards. One serie is already posted but until now not committed. This patch serie therefore is made on top of the first serie: http://lists.denx.de/pipermail/u-boot/2012-March/120694.html Beside some enhancements for kmcoge5ne, there are two

[U-Boot] [PATCH v2 4/6] km/common: add support for second flash

2012-05-04 Thread Holger Brunck
From: Andreas Huber Add support for a second flash. By default, a single flash chip is set up: - called 'boot' - mtd name for ubi 'ubi0' MTDIDS and MTDPARTS may be overwritten to add a second flash. The 'ubiattach' command is featured in two versions: - if CONFIG_KM_UBI_PARTITION_NAME_APP is not

Re: [U-Boot] pull request for u-boot-tegra/master

2012-05-04 Thread Albert ARIBAUD
Hi Tom, Le 03/05/2012 17:56, Tom Warren a écrit : Albert, Please pull u-boot-tegra/master into arm master. Thanks! The following changes since commit 026251a5e825d61d3bcdf6dffcc27d15afd574f4: Donghwa Lee (1): EXYNOS: Change bits per pixel value proper for u-boot. are available in