[U-Boot] [PATCH v4] powerpc/mpc85xx: modify erratum A007186

2014-10-30 Thread Zhao Qiang
T2080 v1.0 has this errata while v1.1 has fixed this errata by hardware, add a new function has_errata_a007186 to check the SVR_SOC_VER, SVR_MAJ and SVR_MIN first, if the sil has errata a007186, then run the errata code, if not, doesn't run the code. Signed-off-by: Zhao Qiang b45...@freescale.com

[U-Boot] [PATCH v3] zynq: Use GPLed files for SPL

2014-10-30 Thread Soren Brinkmann
The latest Xilinx tools generate ps7_init files that are explicitly available under GPL. Change the makefile to allow drop in of those files for building the SPL. Signed-off-by: Soren Brinkmann soren.brinkm...@xilinx.com Acked-by: Jagannadha Sutradharudu Teki jagannadh.t...@gmail.com --- v3: -

[U-Boot] [PATCH 3/5] sparc: merge arch/sparc/cpu/*/config.mk to arch/sparc/config.mk

2014-10-30 Thread Masahiro Yamada
Remove arch/sparc/cpu/{leon2,leon3}/config.mk and move duplicated defines of -fPIC to arch/sparc/config.mk. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/config.mk | 2 ++ arch/sparc/cpu/leon2/config.mk | 8

[U-Boot] [PATCH 0/5] sparc: some refactoring before generic board conversion and a new board

2014-10-30 Thread Masahiro Yamada
Francois Retief has posted patch sets to convert SPARC boards into generic board and add a new board. Before the new work, let's do code cleanups by using Kconfig. I build all the SPARC boards and compared MD5SUM to confirm this series still produce the same result. Masahiro Yamada (5):

[U-Boot] [PATCH 1/5] sparc: Use nicer prompt for board select menu

2014-10-30 Thread Masahiro Yamada
The Board names in the board select menu were simply taken from the board directory name by a conversion tool when switching to Kconfig. Let's use more descriptive prompts taken from include/configs/gr*.h and board/gaisler/*/config.mk. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc:

[U-Boot] [PATCH 2/5] sparc: move CONFIG_{LEON, LEON2, LEON3} to Kconfig

2014-10-30 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/Kconfig | 16 arch/sparc/cpu/leon2/config.mk | 2 -- arch/sparc/cpu/leon3/config.mk | 2 -- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git

[U-Boot] [PATCH 4/5] sparc: merge CONFIG_SYS_CPU and CONFIG_SYS_VENDOR defines

2014-10-30 Thread Masahiro Yamada
For now, all the SPARC boards in U-Boot are provided by Gaisler. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/Kconfig | 13 ++--- board/gaisler/gr_cpci_ax2000/Kconfig | 6 --

[U-Boot] [PATCH 5/5] sparc: move CONFIG_SYS_TEXT_BASE to Kconfig

2014-10-30 Thread Masahiro Yamada
Defining CONFIG_SYS_TEXT_BASE in config.mk is very old style. Create CONFIG_SYS_TEXT_BASE option in Kconfig, but let it depend on CONFIG_SPARC because we do not want to disturb the other architectures that still define CONFIG_SYS_TEXT_BASE in their header files. Signed-off-by: Masahiro Yamada

Re: [U-Boot] [RFC PATCH v1 9/9] sparc: Add support for gr712rc-board

2014-10-30 Thread Masahiro Yamada
Hi Francois, On Wed, 29 Oct 2014 10:53:07 +0200 Francois Retief fgret...@spaceteq.co.za wrote: Add support of the Aeroflex Gaisler GR712RC-BOARD Development Kit. Signed-off-by: Francois Retief fgret...@spaceteq.co.za --- Thanks for your great job! I am sorry for bothering you work,

[U-Boot] [PATCH] Remove the CREDITS file

2014-10-30 Thread Masahiro Yamada
This file is not maintained these days. We use MAINTAINERS for the maintainership of the supported boards. For dead boards, we have some clues in doc/README.scrapyard and also imperishable history in git-log. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Wolfgang Denk w...@denx.de

Re: [U-Boot] [U-boot] [Patch] net: phy: marvell: add errata w/a for 88E151* chips

2014-10-30 Thread Stefan Roese
On 29.10.2014 19:38, Ivan Khoronzhuk wrote: From: Hao Zhang hzh...@ti.com As per Marvell Release Notes - Alaska 88E1510/88E1518/88E1512/88E1514 Rev A0, Errata Section 3.1 Marvell PHY has an errata which requires that certain registers get written in order to restart autonegotiation.

Re: [U-Boot] [PATCH v1 2/2] ppc4xx: Handle i2c stuck on combined xfer

2014-10-30 Thread Heiko Schocher
Hello Dirk, Am 29.10.2014 15:56, schrieb dirk.eib...@gdsys.cc: From: Dirk Eibachdirk.eib...@gdsys.cc ppc4xx i2c master gets stuck on errors while repeated start is active. Can be easily reproduced by i2c md on an unpopulated i2c address. There is not stop condition given, scl remains pulled

Re: [U-Boot] [PATCH v1 2/2] ppc4xx: Handle i2c stuck on combined xfer

2014-10-30 Thread Dirk Eibach
Hello Heiko, +++ b/drivers/i2c/ppc4xx_i2c.c @@ -289,6 +289,27 @@ static int _i2c_transfer(struct i2c_adapter *adap, /* Transfer aborted? */ if (status IIC_EXTSTS_XFRA) result = IIC_NOK_XFRA; +

Re: [U-Boot] [PATCH v3] zynq: Use GPLed files for SPL

2014-10-30 Thread Masahiro Yamada
Hi Soren, On Wed, 29 Oct 2014 23:26:28 -0700 Soren Brinkmann soren.brinkm...@xilinx.com wrote: The latest Xilinx tools generate ps7_init files that are explicitly available under GPL. Change the makefile to allow drop in of those files for building the SPL. Signed-off-by: Soren Brinkmann

[U-Boot] [PATCH] arm:ls1021a:configure ls1021 scfg for QSPI

2014-10-30 Thread Chao Fu
From: Chao Fu b44...@freescale.com Configure ls1021a scfg register for QSPI clock initalization. Signed-off-by: Chao Fu b44...@freescale.com Signed-off-by: Alison Wang alison.w...@freescale.com --- arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h | 1 + board/freescale/ls1021aqds/ls1021aqds.c

[U-Boot] [PATCH] sunxi: Ippo_q8h_v5: fix config name typo

2014-10-30 Thread Albert ARIBAUD
This removes the following warnings when building: WARNING: no status info for 'Ippo_q8h' WARNING: no maintainers for 'Ippo_q8h' Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- configs/{Ippo_q8h_defconfig = Ippo_q8h_v5_defconfig} | 0 1 file changed, 0 insertions(+), 0

Re: [U-Boot] Need FTP client support in U-Boot

2014-10-30 Thread Gilles Chanteperdrix
On Wed, Oct 29, 2014 at 03:49:15PM +0100, Wolfgang Denk wrote: Dear Madhu, In message 23c3598d8b87452eb6a3d1f52afb8...@sg2pr01mb0394.apcprd01.prod.exchangelabs.com you wrote: We are looking for FTP client command in U-boot commands, So that, we can boot the O.S kernel-image through

Re: [U-Boot] [PATCH] sunxi: Ippo_q8h_v5: fix config name typo

2014-10-30 Thread Masahiro Yamada
Hi Albert, (ccing Hans) On Thu, 30 Oct 2014 08:18:46 +0100 Albert ARIBAUD albert.u.b...@aribaud.net wrote: This removes the following warnings when building: WARNING: no status info for 'Ippo_q8h' WARNING: no maintainers for 'Ippo_q8h' Signed-off-by: Albert ARIBAUD

Re: [U-Boot] [PATCH 02/10] Add some standard headers external code might need

2014-10-30 Thread Masahiro Yamada
Hi Simon, On Wed, 29 Oct 2014 19:43:26 -0600 Simon Glass s...@chromium.org wrote: Hi Masahiro, On 29 October 2014 08:06, Masahiro YAMADA yamad...@jp.panasonic.com wrote: Hi Simon, 2014-10-29 3:24 GMT+09:00 Simon Glass s...@chromium.org: Hi, On 28 October 2014 11:46, Jeroen

Re: [U-Boot] Collapsing buildman output dir?

2014-10-30 Thread Albert ARIBAUD
Hello Simon, On Wed, 29 Oct 2014 13:22:08 -0600, Simon Glass s...@chromium.org wrote: Hi Tom, On 24 October 2014 13:12, Tom Rini tr...@ti.com wrote: On Thu, Oct 23, 2014 at 12:28:10PM -0600, Simon Glass wrote: Hi Tom, On 23 October 2014 07:03, Tom Rini tr...@ti.com wrote: Hey,

Re: [U-Boot] [PATCH] kbuild: drop clang-specific extra warnings

2014-10-30 Thread Albert ARIBAUD
Hello Masahiro, On Thu, 30 Oct 2014 10:57:49 +0900, Masahiro Yamada yamad...@jp.panasonic.com wrote: It is true clang has more warnings enabled by default but Jeroen Hofstee are making lots of efforts to eliminate warnings. Let's drop clang-related checks and continue to fix C code.

[U-Boot] [v2 PATCH 01/12] spi, atmel: move CONFIG_SYS_SPI_WRITE_TOUT into common header

2014-10-30 Thread Heiko Schocher
move CONFIG_SYS_SPI_WRITE_TOUT into drivers/spi/atmel_spi.h and define a default value. Delete this define in the board config files, where it is possible (all boards use currently the same value). Signed-off-by: Heiko Schocher h...@denx.de --- Changes in v2: rebased against

[U-Boot] [v2 PATCH 04/12] arm, at91: compile mpddrc ram init code also for AT91SAM9M10G45

2014-10-30 Thread Heiko Schocher
- compile mpddrc ram init code also for AT91SAM9M10G45 based boards. - in CONFIG_SAMA5D3 case, look for the ATMEL_MPDDRC_CR_DECOD_INTERLEAVED in the cr configuration Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2:

[U-Boot] [v2 PATCH 05/12] arm, at91: add missing ddr2 cr register MPDDRC_CR_EBISHARE define

2014-10-30 Thread Heiko Schocher
Signed-off-by: Heiko Schocher h...@denx.de --- Changes in v2: add comment from Andreas Biessmann: - rename MPDDRC_CR_EBISHARE to MPDDRC_CR_DQMS_SHARED arch/arm/include/asm/arch-at91/atmel_mpddrc.h | 1 + 1 file changed, 1 insertion(+) diff --git

[U-Boot] [v2 PATCH 03/12] arm, at91, mpddrc: fix typo in ddr2_init()

2014-10-30 Thread Heiko Schocher
use the configure value for computing the ba_off value not the value from the cr register. This leaded in a wrong ram configuration on the upcoming corvus spl board support. Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2:

[U-Boot] [v2 PATCH 02/12] arm, at91: add spi dataflash support for the taurus board

2014-10-30 Thread Heiko Schocher
Signed-off-by: Heiko Schocher h...@denx.de --- Changes in v2: - add comment from Jagan Teki: - remove spi_init_f() from board file - remove CONFIG_SYS_SPI_WRITE_TOUT from board config file instead define a default in the spi driver - new patch for v2

[U-Boot] [v2 PATCH 06/12] spl, nand: add option to boot raw u-boot.bin image only

2014-10-30 Thread Heiko Schocher
enable to boot only a raw u-boot.bin image from nand with the CONFIG_SPL_NAND_RAW_ONLY define. This option saves space on boards where spl space is low. Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- on the siemens taurus board, this

[U-Boot] [v2 PATCH 09/12] spl, mtd, nand, atmel_nand: invert device ready pin logic

2014-10-30 Thread Heiko Schocher
device ready pin is signalling that the device is ready on state 1 not on 0. Simmiliar as it is in drivers/mtd/nand/nand_spl_simple.c Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: add Reviewed-by: Andreas Bießmann

[U-Boot] [v2 PATCH 10/12] arm, spl, at91: add at91sam9260 and at91sam9g45 spl support

2014-10-30 Thread Heiko Schocher
add support for using spl code on at91sam9260 and at91sam9g45 based boards. Signed-off-by: Heiko Schocher h...@denx.de --- Changes in v2: None arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c | 22 +++ arch/arm/cpu/arm926ejs/at91/clock.c| 60 +++

[U-Boot] [v2 PATCH 08/12] spl, nand, atmel_nand: add erase one block function

2014-10-30 Thread Heiko Schocher
erase one nand block in spl code. keep it simple, as size matters This is used on the upcoming taurus spl support. Signed-off-by: Heiko Schocher h...@denx.de --- Changes in v2: add comment from scott wood: - move nand_erase_one into include/nand.h and rename it to spl_nand_erase_one

[U-Boot] [v2 PATCH 12/12] arm, spl, at91: add spl support for the corvus board

2014-10-30 Thread Heiko Schocher
replaces the at91bootstrap code with SPL code. make the spl image with: ./tools/mkimage -T atmelimage -d spl/u-boot-spl.bin spl/boot.bin this writes the length of the spl image into the 6th execption vector. This is needed from the ROM bootloader. Signed-off-by: Heiko Schocher h...@denx.de ---

[U-Boot] [v2 PATCH 07/12] mtd: atmel_nand: add missign include

2014-10-30 Thread Heiko Schocher
using this driver in SPL code with CONFIG_SPL_NAND_ECC configured leads in an compileerror. Fix this. Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: add Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com

Re: [U-Boot] [PATCH] sunxi: Ippo_q8h_v5: fix config name typo

2014-10-30 Thread Albert ARIBAUD
Hello Albert, On Thu, 30 Oct 2014 08:18:46 +0100, Albert ARIBAUD albert.u.b...@aribaud.net wrote: This removes the following warnings when building: WARNING: no status info for 'Ippo_q8h' WARNING: no maintainers for 'Ippo_q8h' Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net

[U-Boot] [v2 PATCH 11/12] arm, at91, spl: add spl support for the taurus board

2014-10-30 Thread Heiko Schocher
replaces the at91bootstrap code with SPL code. make the spl image with: ./tools/mkimage -T atmelimage -d spl/u-boot-spl.bin spl/boot.bin this writes the length of the spl image into the 6th execption vector. This is needed from the ROM bootloader. Signed-off-by: Heiko Schocher h...@denx.de ---

[U-Boot] [PATCH] SMDK2410: convert to generic board

2014-10-30 Thread David Müller
Compile-time tested only, as I currently don't have access to the eval board. Signed-off-by: David Müller d.muel...@elsoft.ch --- include/configs/smdk2410.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/smdk2410.h b/include/configs/smdk2410.h index d4ae19f..5df0e28 100644

[U-Boot] [PATCH] arm: socfpga: Add DT support for SoCFPGA

2014-10-30 Thread Stefan Roese
This patch includes the latest DT sources for socfpga from the current Linux kernel. And enables CONFIG_OF_CONTROL for socfpga_cyclone5 to make use of this new DT support. Note that now the image to use is u-boot-dtb.img! Signed-off-by: Stefan Roese s...@denx.de Cc: Marek Vasut ma...@denx.de Cc:

[U-Boot] [PATCH v2] arm: socfpga: Add I2C support to SoCFPGA

2014-10-30 Thread Stefan Roese
This patch adds I2C support for the SoCFPGA. Using the designware I2C controller driver. It supports all 4 I2C busses on the SoCFPGA. The designware I2C driver has now been converted to the CONFIG_SYS_I2C framework. So lets enable it on SoCFPGA. Tested on SoCrates. Signed-off-by: Stefan Roese

Re: [U-Boot] [U-Boot, v2, 2/6] dm: sunxi: Add a new config for an FDT-based pcDuino3

2014-10-30 Thread Hans de Goede
Hi, On 10/29/2014 08:30 PM, Simon Glass wrote: Hi Hans, On 29 October 2014 03:32, Hans de Goede hdego...@redhat.com wrote: snip If you can do a respin based on tip of the latest master and with this one small item fixed, then I'll queue up your patches in u-boot-sunxi/next I will

Re: [U-Boot] [PATCH v2] arm: socfpga: Add I2C support to SoCFPGA

2014-10-30 Thread Heiko Schocher
Hello Stefan, Am 30.10.2014 09:33, schrieb Stefan Roese: This patch adds I2C support for the SoCFPGA. Using the designware I2C controller driver. It supports all 4 I2C busses on the SoCFPGA. The designware I2C driver has now been converted to the CONFIG_SYS_I2C framework. So lets enable it on

[U-Boot] [PATCH] arm, at91: generate boot.bin file for all all atmel SoC

2014-10-30 Thread Heiko Schocher
generate the boot.bin file for all atmel SoC (arm920, arm926, armv7) Signed-off-by: Heiko Schocher h...@denx.de --- arch/arm/cpu/armv7/at91/config.mk | 4 +--- scripts/Makefile.spl | 4 2 files changed, 5 insertions(+), 3 deletions(-) diff --git

Re: [U-Boot] [PATCH v3] board: wandboard: add usb storage

2014-10-30 Thread Stefano Babic
On 23/10/2014 23:02, Jeroen Hofstee wrote: Cc: Fabio Estevam fabio.este...@freescale.com Signed-off-by: Jeroen Hofstee jer...@myspectrum.nl --- Applied to u-boot-imx, thanks ! Best regards, Stefano Babic -- = DENX

Re: [U-Boot] [PATCH v2 6/6] dm: sunxi: Add support for serial using driver model

2014-10-30 Thread Ian Campbell
On Wed, 2014-10-29 at 13:28 -0600, Simon Glass wrote: In the meantime could we somehow replace/augment the #ifdef chain in gpio_init with something keyed off the stdout alias perhaps? Tegra has code to convert a device interrupt number (which uniquely identifies a peripheral in that SoC)

Re: [U-Boot] [PATCH V8] ARM: mx6: Add support for Kosagi Novena

2014-10-30 Thread Stefano Babic
On 24/10/2014 23:39, Marek Vasut wrote: Add support for the Kosagi Novena board. Currently supported are: - I2C busses - FEC Ethernet - MMC0, MMC1, Booting from MMC - SATA - USB ports - USB Ethernet Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Sean

Re: [U-Boot] [PATCH] mx6sabresd: Add Seiko WVGA panel support

2014-10-30 Thread Stefano Babic
Hi Fabio, I understand that the issue with the clock inversion is solved. On 22/10/2014 01:14, Fabio Estevam wrote: From: Fabio Estevam fabio.este...@freescale.com Add support for the 4.3'' Seiko WVGA parallel display. In order to direct the splash screen to the Seiko display: = setenv

Re: [U-Boot] [PATCH] mxs: add watchdog

2014-10-30 Thread Stefano Babic
Hi Alexey, sorry for delay - I missed your patch. On 08/10/2014 05:14, Alexey Ignatov wrote: Use RTC watchdog feature as hardware watchdog. Signed-off-by: Alexey Ignatov lexsz...@gmail.com --- drivers/watchdog/Makefile | 1 + drivers/watchdog/mxsrtc_wdt.c | 23

[U-Boot] [PATCH] Remove unused files

2014-10-30 Thread Masahiro Yamada
[1] arch/arm/include/asm/arch-at91/at91_shdwn.h The top9000 was the last board to use this header file. It was removed by commit d58a9451e733 (ppc/arm: zap EMK boards). [2] board/matrix_vision/common/* Some Matrix Vision boards were dropped by commit e7a565638a7a (powerpc: mpc83xx: remove

[U-Boot] [PATCH] ppc/arm: remove remainders of dead boards in Kconfig

2014-10-30 Thread Masahiro Yamada
Commit d58a9451e733 (ppc/arm: zap EMK boards) removed TOP* boards support but missed to remove entries in Kconfig. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Wolfgang Denk w...@denx.de --- arch/arm/Kconfig | 4 arch/powerpc/cpu/mpc5xxx/Kconfig | 3 ---

[U-Boot] [PATCH] arm: socfpga: Add example config entry for EPCS/EPCQ SPI

2014-10-30 Thread Marek Vasut
Add example config file entry for the Altera SPI controller. This SPI controller can also, under special conditions, be used to operate the EPCS/EPCQ SPI NOR. Signed-off-by: Marek Vasut ma...@denx.de Cc: Chin Liang See cl...@altera.com Cc: Dinh Nguyen dingu...@opensource.altera.com Cc: Vince

Re: [U-Boot] [PATCH v2 6/6] dm: sunxi: Add support for serial using driver model

2014-10-30 Thread Hans de Goede
Hi, On 10/30/2014 10:08 AM, Ian Campbell wrote: On Wed, 2014-10-29 at 13:28 -0600, Simon Glass wrote: In the meantime could we somehow replace/augment the #ifdef chain in gpio_init with something keyed off the stdout alias perhaps? Tegra has code to convert a device interrupt number (which

Re: [U-Boot] [PATCH v2] arm: socfpga: Add I2C support to SoCFPGA

2014-10-30 Thread Marek Vasut
On Thursday, October 30, 2014 at 09:33:13 AM, Stefan Roese wrote: This patch adds I2C support for the SoCFPGA. Using the designware I2C controller driver. It supports all 4 I2C busses on the SoCFPGA. The designware I2C driver has now been converted to the CONFIG_SYS_I2C framework. So lets

Re: [U-Boot] [ 1/2] tqma6: fix sf detection

2014-10-30 Thread Stefano Babic
On 23/10/2014 15:47, Markus Niebel wrote: From: Markus Niebel markus.nie...@tq-group.com Commit 155fa9af95ac5be857a7327e7a968a296e60d4c8 changed the way to define a GPIO line, which can be used to force CS high across multiple transactions. In order to fix sf detection change board code to

Re: [U-Boot] [ 2/2] tqma6: fix typo in header guard define

2014-10-30 Thread Stefano Babic
On 23/10/2014 15:47, Markus Niebel wrote: From: Markus Niebel markus.nie...@tq-group.com Signed-off-by: Markus Niebel markus.nie...@tq-group.com --- Applied to u-boot-imx, thanks ! Best regards, Stefano Babic -- = DENX

Re: [U-Boot] [PATCH 1/3] ot1200: add feature pads

2014-10-30 Thread Stefano Babic
On 23/10/2014 13:46, Christian Gmeiner wrote: The older 'mr' variant and the generic variant of the OT1200 differ in some places. As the name suggests the generic variant supports more boot devices. In order to be compatible with the 'mr' variant we define some 'feature' GPIOs. On the 'mr'

Re: [U-Boot] [PATCH 2/3] ot1200: add support for usdhc4

2014-10-30 Thread Stefano Babic
On 23/10/2014 13:46, Christian Gmeiner wrote: On the 'mr' variant switching to 'mmc dev 1' will result in MMC: no card present. Signed-off-by: Christian Gmeiner christian.gmei...@gmail.com --- Applied to u-boot-imx, thanks ! Best regards, Stefano Babic --

Re: [U-Boot] [PATCH 3/3] ot1200: rework card detect for eMMC

2014-10-30 Thread Stefano Babic
On 23/10/2014 13:46, Christian Gmeiner wrote: Signed-off-by: Christian Gmeiner christian.gmei...@gmail.com --- Applied to u-boot-imx, thanks ! Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD:

Re: [U-Boot] [PATCH] novena: Fix ethernet PHY reset sequence

2014-10-30 Thread Stefano Babic
On 12/10/2014 12:47, picmas...@mail.bg wrote: From: Nikolay Dimitrov picmas...@mail.bg This patch fixes conflict between PHY pins becoming outputs after reset and imx6 still driving the pins. It also fixes the reset timing as recommended by the PHY datasheet. Signed-off-by: Nikolay

Re: [U-Boot] [PATCH] arm: imx6: fix typos in CCM_ANALOG_PLL_VIDEO_DENOM register name

2014-10-30 Thread Stefano Babic
On 16/10/2014 20:37, Anatolij Gustschin wrote: Fix name for Video PLL denominator register. Signed-off-by: Anatolij Gustschin ag...@denx.de --- Applied to u-boot-imx, thanks ! Best regards, Stefano Babic -- = DENX

Re: [U-Boot] [U-boot] [Patch] net: phy: marvell: add errata w/a for 88E151* chips

2014-10-30 Thread Ivan Khoronzhuk
On 10/30/2014 08:53 AM, Stefan Roese wrote: On 29.10.2014 19:38, Ivan Khoronzhuk wrote: From: Hao Zhang hzh...@ti.com As per Marvell Release Notes - Alaska 88E1510/88E1518/88E1512/88E1514 Rev A0, Errata Section 3.1 Marvell PHY has an errata which requires that certain registers get written in

[U-Boot] [PATCH v2] imximage: Fix the bootdata.size calculation

2014-10-30 Thread Ye . Li
In system boot chapter of i.MX6 reference manual, the Image Vector Table figure shows the bootdata.start points to the beginning of the destination memory. It means the bootdata.size should contain the IVT offset part, but the calculation in imximage tool does not have. We found this issue when

Re: [U-Boot] [PATCH v2 1/5] imx: gpt: Add High frequency clock source support for GPT

2014-10-30 Thread Stefano Babic
Hi Ye, On 28/10/2014 10:40, Ye.Li wrote: Introduce a new configuration CONFIG_MXC_GPT_HCLK. When it is set, the GPT will select a high frequency clock as clock source. Otherwise, the GPT will stay to use 32Khz OSC as clock source. In the implementation, since only the GPT on i.MX6 series

Re: [U-Boot] Need FTP client support in U-Boot

2014-10-30 Thread Mythri, Madhukar (Artesyn)
We are looking for FTP client command in U-boot commands, So that, we can boot the O.S kernel-image through ftp-client(instead of tftpboot over network). It would have been usful if you had told us whyyou thing the existing network protocols (TFTP, NFS) are not sufficient for your use cases?

Re: [U-Boot] [PATCH] mtd: nand: mxs: Add ECC geometry for 2048b/112b NAND

2014-10-30 Thread Stefano Babic
On 25/09/2014 21:13, Marek Vasut wrote: Add ECC geometry for NAND which has 2048b pagesize and 112b OOB size. This is for example Macronix MX30LF2G28AB chip. Signed-off-by: Marek Vasut ma...@denx.de --- Applied to u-boot-imx, thanks ! Best regards, Stefano Babic --

Re: [U-Boot] [PATCH v2 2/2] imx: mx6slevk: Add support for USDHC1 and USDHC3 slots

2014-10-30 Thread Stefano Babic
Hi Ye, On 14/10/2014 09:14, Ye.Li wrote: There are three SD/MMC sockets on mx6slevk boards. Implements the full support for them. The default boot socket is USDHC2, so the MMC environment is set to that device. Signed-off-by: Ye.Li b37...@freescale.com --- Please fix checkpatch warnings

Re: [U-Boot] [PATCH v2 6/6] dm: sunxi: Add support for serial using driver model

2014-10-30 Thread Ian Campbell
On Thu, 2014-10-30 at 10:36 +0100, Hans de Goede wrote: Hi, On 10/30/2014 10:08 AM, Ian Campbell wrote: On Wed, 2014-10-29 at 13:28 -0600, Simon Glass wrote: In the meantime could we somehow replace/augment the #ifdef chain in gpio_init with something keyed off the stdout alias perhaps?

Re: [U-Boot] [v2 PATCH 10/12] arm, spl, at91: add at91sam9260 and at91sam9g45 spl support

2014-10-30 Thread Bo Shen
Hi Heiko, On 10/30/2014 04:15 PM, Heiko Schocher wrote: diff --git a/arch/arm/include/asm/arch-at91/at91_pmc.h b/arch/arm/include/asm/arch-at91/at91_pmc.h index 27331ff..5f64583 100644 --- a/arch/arm/include/asm/arch-at91/at91_pmc.h +++ b/arch/arm/include/asm/arch-at91/at91_pmc.h @@ -95,7

Re: [U-Boot] [PATCH v2] imx: mx6 sabreauto: Add board support for USB EHCI

2014-10-30 Thread Stefano Babic
Hi Ye, On 13/10/2014 14:38, Ye.Li wrote: On mx6 sabreauto board, there are two USB ports: 0: OTG 1: HOST The EHCI driver is enabled for this board, but the IOMUX and VBUS power control is not implemented, which cause both USB port failed to work. This patch fix the problem by adding the

[U-Boot] [PATCH v3 1/5] imx: gpt: Add High frequency clock source support for GPT

2014-10-30 Thread Ye . Li
Introduce a new configuration CONFIG_MXC_GPT_HCLK. When it is set, the GPT will select a high frequency clock as clock source. Otherwise, the GPT will stay to use 32Khz OSC as clock source. In the implementation, since only the GPT on i.MX6 series provide the clock source option for 24Mhz OSC.

[U-Boot] [PATCH v3 2/5] imx: mx6sl: Add perclk_clk_sel bit define in CCM

2014-10-30 Thread Ye . Li
The MX6SL has the perclk_clk_sel to select the perclk source. Add its define in CCM Signed-off-by: Ye.Li b37...@freescale.com --- Changes since v2: - None Changes since v1: - None arch/arm/include/asm/arch-mx6/crm_regs.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH v3 5/5] imx: mx6: Enable high frequency clock source for GPT

2014-10-30 Thread Ye . Li
Set the CONFIG_MXC_GPT_HCLK configuration in mx6_common.h, so that 24Mhz OSC clock source will be selected for GPT on all MX6 platforms. Signed-off-by: Ye.Li b37...@freescale.com --- Changes since v2: - None Changes since v1: - Modify the patch message subject and content to use high frequency

[U-Boot] [PATCH v3 4/5] imx: mx6sl: Set the preclk clock source to OSC 24Mhz

2014-10-30 Thread Ye . Li
For MX6SL, uses the OSC 24Mhz as the preclk source in CCM. Align the preclk setting with kernel. Signed-off-by: Ye.Li b37...@freescale.com --- Changes since v2: - None Changes since v1: - None arch/arm/cpu/armv7/mx6/soc.c | 17 + 1 files changed, 17 insertions(+), 0

[U-Boot] [PATCH v3 3/5] imx: mx6: Change the get_ipg_per_clk for OSC 24Mhz source

2014-10-30 Thread Ye . Li
For MX6SL and MX6SX, the perclk can come from OSC 24Mhz source. Fix the get_ipg_per_clk function to support it. Signed-off-by: Ye.Li b37...@freescale.com --- Changes since v2: - None Changes since v1: - None arch/arm/cpu/armv7/mx6/clock.c |4 1 files changed, 4 insertions(+), 0

[U-Boot] [PATCH v3 2/2] imx: mx6slevk: Add support for USDHC1 and USDHC3 slots

2014-10-30 Thread Ye . Li
There are three SD/MMC sockets on mx6slevk boards. Implements the full support for them. The default boot socket is USDHC2, so the MMC environment is set to that device. Signed-off-by: Ye.Li b37...@freescale.com --- Changes since v2: - Resolve the checkpatch warnings Changes since v1: - Correct

[U-Boot] [PATCH v3 1/2] imx: mx6sl: Add IOMUX setting for USDHC1-3

2014-10-30 Thread Ye . Li
Set the USDHC1-3 IOMUX settings which are used for mx6slevk board. Signed-off-by: Ye.Li b37...@freescale.com --- Changes since v2: - None Changes since v1: - None arch/arm/include/asm/arch-mx6/mx6sl_pins.h | 19 +++ 1 files changed, 19 insertions(+), 0 deletions(-) diff

Re: [U-Boot] [PATCH 2/4] imx: mx6slevk: Add PMIC Pfuze support

2014-10-30 Thread Stefano Babic
Hi Ye, On 10/09/2014 11:08, Ye.Li wrote: Initialize the Pfuze on I2C1 at board late init. The mx6slevk board has Pfuze100 or Pfuze200, print the chip type by parsing the ID. Signed-off-by: Ye.Li b37...@freescale.com --- Slowly (sorry for that..) I am checking again all PMIC related patches

Re: [U-Boot] [PATCH v2 3/3] video: speedup writing strings to fb console

2014-10-30 Thread Stefano Babic
Hi, On 24/10/2014 16:33, Soeren Moch wrote: With enabled framebuffer console the printenv command can take several seconds to complete. This patch temporarily disables cache flush when writing strings to fb console. Then there is no noticable delay anymore. Tested with imx6 hdmi

[U-Boot] [PATCH v3] imx: mx6 sabreauto: Add board support for USB EHCI

2014-10-30 Thread Ye . Li
On mx6 sabreauto board, there are two USB ports: 0: OTG 1: HOST The EHCI driver is enabled for this board, but the IOMUX and VBUS power control is not implemented, which cause both USB port failed to work. This patch fix the problem by adding the board support codes. Since the power control uses

Re: [U-Boot] [PATCH v2 1/3] arm: arch-mx6: typo fixes in crm_regs.h

2014-10-30 Thread Stefano Babic
Hi Soeren, On 24/10/2014 16:33, Soeren Moch wrote: fix typos in video pll related register names and bit defines Signed-off-by: Soeren Moch sm...@web.de --- Cc: Stefano Babic sba...@denx.de --- arch/arm/include/asm/arch-mx6/crm_regs.h | 10 +- 1 file changed, 5 insertions(+), 5

Re: [U-Boot] [PATCH v2 2/3] arm: mx6: add support for TBS2910 Matrix ARM miniPC

2014-10-30 Thread Stefano Babic
Hi Soeren, On 24/10/2014 16:33, Soeren Moch wrote: Add initial support for TBS2910 Matrix ARM miniPC. Support includes MMC, Ethernet, UARTs, HDMI, USB, SATA, PCI, I2C, RTC. Signed-off-by: Soeren Moch sm...@web.de --- checkpatch reports several issues with this patch. Can you fix it and

[U-Boot] [PATCH] arm, imx, spi: detect spi flash again on aristainetos board

2014-10-30 Thread Heiko Schocher
155fa9af95a spi: mxc: fix sf probe when using mxc_spi break spi flash detection on the aristainetos board. Fix this. Signed-off-by: Heiko Schocher h...@denx.de Patch-cc: Stefano Babic sba...@denx.de Patch-cc: Jagannadha Sutradharudu Teki jaga...@xilinx.com --- board/aristainetos/aristainetos.c |

[U-Boot] u-boot 1.1.6 binary file

2014-10-30 Thread Roar Pettersen
Hi ! I have a MPC8641 board which have corrupt flash and I have to restore the bootloader on the card. The card had version 1.1.6, but I have no access to a powerpc so I can't compile the source code. Is there a place where I can fine a bin file ? Or could someone who have access to a powerpc

Re: [U-Boot] verified boot of beaglebone black

2014-10-30 Thread Srinivasan S
Hi Simon, Extremely Sorry to push you Hard, Could you please provide any updates w.r.t the below issue Thanks in advance Srinivasan S From: s...@google.com s...@google.com on behalf of Simon Glass s...@chromium.org Sent: Thursday, October 30, 2014 9:46

[U-Boot] [v2 PATCH 0/12] arm, at91, spl: add spl support for the taurus and corvus boards

2014-10-30 Thread Heiko Schocher
This patchset add SPL support for the AT91SAM9G20 based taurus board, and the AT91SAM9M10G45 based corvus board from siemens, and replaces the at91bootstrap code. The boot.bin which replaces the at91bootstrap image can created with mkimage: ./tools/mkimage -T atmelimage -d spl/u-boot-spl.bin

Re: [U-Boot] [PATCH] arm: socfpga: Add example config entry for EPCS/EPCQ SPI

2014-10-30 Thread Pavel Machek
On Thu 2014-10-30 10:30:25, Marek Vasut wrote: Add example config file entry for the Altera SPI controller. This SPI controller can also, under special conditions, be used to operate the EPCS/EPCQ SPI NOR. Signed-off-by: Marek Vasut ma...@denx.de Cc: Chin Liang See cl...@altera.com Cc:

Re: [U-Boot] [U-boot] [Patch] net: phy: marvell: add errata w/a for 88E151* chips

2014-10-30 Thread Stefan Roese
On 30.10.2014 10:52, Ivan Khoronzhuk wrote: +static int m88e1518_config(struct phy_device *phydev) +{ +/* + * As per Marvell Release Notes - Alaska 88E1510/88E1518/88E1512/88E1514 + * Rev A0, Errata Section 3.1 + */ +phy_write(phydev, MDIO_DEVAD_NONE, 22, 0x00ff);/* reg

Re: [U-Boot] [PATCH] arm: socfpga: Add example config entry for EPCS/EPCQ SPI

2014-10-30 Thread Stefan Roese
On 30.10.2014 10:30, Marek Vasut wrote: Add example config file entry for the Altera SPI controller. This SPI controller can also, under special conditions, be used to operate the EPCS/EPCQ SPI NOR. Signed-off-by: Marek Vasut ma...@denx.de Cc: Chin Liang See cl...@altera.com Cc: Dinh Nguyen

Re: [U-Boot] [v2 PATCH 10/12] arm, spl, at91: add at91sam9260 and at91sam9g45 spl support

2014-10-30 Thread Heiko Schocher
Hello Bo, Am 30.10.2014 11:17, schrieb Bo Shen: Hi Heiko, On 10/30/2014 04:15 PM, Heiko Schocher wrote: diff --git a/arch/arm/include/asm/arch-at91/at91_pmc.h b/arch/arm/include/asm/arch-at91/at91_pmc.h index 27331ff..5f64583 100644 --- a/arch/arm/include/asm/arch-at91/at91_pmc.h +++

[U-Boot] [PATCH v2] arm, imx, spi: detect spi flash again on aristainetos board

2014-10-30 Thread Heiko Schocher
155fa9af95a spi: mxc: fix sf probe when using mxc_spi break spi flash detection on the aristainetos board. Fix this. Signed-off-by: Heiko Schocher h...@denx.de --- Changes in v2: - fix bus number board/aristainetos/aristainetos.c | 6 ++ include/configs/aristainetos.h| 2 +- 2 files

Re: [U-Boot] [PATCH] Remove the CREDITS file

2014-10-30 Thread Wolfgang Denk
Dear Masahiro Yamada, In message 1414651815-23671-1-git-send-email-yamad...@jp.panasonic.com you wrote: This file is not maintained these days. We use MAINTAINERS for the maintainership of the supported boards. For dead boards, we have some clues in doc/README.scrapyard and also

Re: [U-Boot] Need FTP client support in U-Boot

2014-10-30 Thread Wolfgang Denk
Dear Madhu, In message 8f2265d4f62b409f83f6bdd21953d...@sg2pr01mb0394.apcprd01.prod.exchangelabs.com you wrote: Our motivation is to boot the OS over the network using FTP ( because it is going to be more secure with login/passwd credentials, before file-transfer), instead of TFTP. Hence

Re: [U-Boot] [PATCH] Remove unused files

2014-10-30 Thread Wolfgang Denk
Dear Masahiro Yamada, In message 1414661281-4633-1-git-send-email-yamad...@jp.panasonic.com you wrote: [1] arch/arm/include/asm/arch-at91/at91_shdwn.h The top9000 was the last board to use this header file. It was removed by commit d58a9451e733 (ppc/arm: zap EMK boards). Mea culpa. Sorry

Re: [U-Boot] u-boot 1.1.6 binary file

2014-10-30 Thread Wolfgang Denk
Dear Roar, In message CA+_CDE6xKC=ffxpue-ns8lutn7hcq0vd2wzjissw7g+32os...@mail.gmail.com you wrote: I have a MPC8641 board which have corrupt flash and I have to restore the bootloader on the card. What is the exact board name - who is the vendor? I'm asking because you really have to make

Re: [U-Boot] [PATCH v3 0/3] spi, sf: add mtdparts feature to spi and sf commands

2014-10-30 Thread Heiko Schocher
Hello Jagan, Am 09.10.2014 12:38, schrieb Jagan Teki: On 8 October 2014 11:01, Heiko Schocherh...@denx.de wrote: Hello Jagannadha Sutradharudu Teki, Am 05.09.2014 07:38, schrieb Heiko Schocher: This patchserie add the popssibility to define mtd partitions on spi nor flash, and use this

Re: [U-Boot] [PATCH v2 2/3] arm: mx6: add support for TBS2910 Matrix ARM miniPC

2014-10-30 Thread Fabio Estevam
Hi Soeren, On Fri, Oct 24, 2014 at 12:33 PM, Soeren Moch sm...@web.de wrote: Add initial support for TBS2910 Matrix ARM miniPC. Support includes MMC, Ethernet, UARTs, HDMI, USB, SATA, PCI, I2C, RTC. Signed-off-by: Soeren Moch sm...@web.de --- Cc: Stefano Babic sba...@denx.de Changes in

Re: [U-Boot] Need FTP client support in U-Boot

2014-10-30 Thread Mythri, Madhukar (Artesyn)
Hi Wolfgang, If not, we are looking for any Authenticated file transfer over network in existing U_boot. This probably makes more sense - especially, as it's already supported in mainline U-Boot - assuming you have good ways to manage your keys on your device. Authentication mechanism

[U-Boot] [PATCH v3] arm: mx6: add support for TBS2910 Matrix ARM miniPC

2014-10-30 Thread Soeren Moch
Add initial support for TBS2910 Matrix ARM miniPC. Support includes MMC, Ethernet, UARTs, HDMI, USB, SATA, PCI, I2C, RTC. Signed-off-by: Soeren Moch sm...@web.de --- Cc: Stefano Babic sba...@denx.de Cc: Fabio Estevam feste...@gmail.com Changes in v2: - board_phy_config() removed, not needed -

Re: [U-Boot] [PATCH v2 1/2] exynos: Enable config_distro_defaults.h

2014-10-30 Thread Minkyu Kang
On 16/10/14 22:44, Ian Campbell wrote: From: Ian Campbell ian.campb...@citrix.com ...and remove explicit setting of things which this implies. This is done for all exynos platforms (4 5) so it is added to exynos-common.h I'm mainly interested in CONFIG_CMD_BOOTZ and

Re: [U-Boot] [PATCH v2 2/2] exynos5: Use config_distro_bootcmd.h

2014-10-30 Thread Minkyu Kang
On 16/10/14 22:44, Ian Campbell wrote: From: Ian Campbell ian.campb...@citrix.com This replaces the existing CONFIG_BOOTCOMMAND for exynos5250 and 5420. exynos4 platforms seem to have existing complex extra env configuration for booting and so are excluded here. Hence the bootcmd.h is

Re: [U-Boot] [PATCH 2/3] exynos4/4x12: gpio: use gpio extra base addresses

2014-10-30 Thread Minkyu Kang
On 29/10/14 01:31, Przemyslaw Marczak wrote: This patch adds extra gpio part addresses to exynos4 and exynos4x12_gpio_data arrays, which are required since the gpio enum lists are linear Signed-off-by: Przemyslaw Marczak p.marc...@samsung.com --- arch/arm/include/asm/arch-exynos/gpio.h |

Re: [U-Boot] [PATCH 1/3] exynos4/4x12: cpu: add extra gpio base addresses

2014-10-30 Thread Minkyu Kang
On 29/10/14 01:31, Przemyslaw Marczak wrote: After remove the offsets in Exynos4/4x12 gpio enums, an additional gpio base addresses are required. Signed-off-by: Przemyslaw Marczak p.marc...@samsung.com --- arch/arm/include/asm/arch-exynos/cpu.h | 9 + 1 file changed, 9

Re: [U-Boot] [PATCH 3/3] odroid: adjust gpio calls to dm gpio api

2014-10-30 Thread Minkyu Kang
On 29/10/14 01:31, Przemyslaw Marczak wrote: Setting gpio value before dm gpio init has no effect, so now, odroid gpio settings are moved after the gpio uclass init. Using non-requested gpio pin cases printing error messages. To avoid this, gpio_request() is added for those gpios.

  1   2   >