[U-Boot] question regarding USB gadget driver (dwc2)

2016-01-26 Thread Steve Rae
Hi Marek & Lukasz, I have an issue running fastboot on my board (which is USB_SPEED_HIGH): => fastboot0 failed to enable in ep failed to enable in ep failed to enable in ep Because of this, fastboot does not even initialize properly, and I need to "^C" to break out… I have tr

Re: [U-Boot] [PATCH v7 5/7] mips: ath79: add spi driver

2016-01-26 Thread Marek Vasut
On Saturday, January 16, 2016 at 07:13:51 PM, Wills Wang wrote: > Reviewed-by: Thomas Chou > > Signed-off-by: Wills Wang > --- > > Changes in v7: > - Define spi_cs_activate/spi_cs_deactivate > - Rename MHZ to ATH79_SPI_MHZ > - Use clrsetbits_32 The driver gets stuck if I do: => sf probe => sf

Re: [U-Boot] question regarding USB gadget driver (dwc2)

2016-01-26 Thread Marek Vasut
On Wednesday, January 27, 2016 at 01:35:55 AM, Steve Rae wrote: > Hi Marek & Lukasz, > > > I have an issue running fastboot on my board (which is USB_SPEED_HIGH): > > => fastboot0 > > failed to enable in ep > > failed to enable in ep > > failed to enable in ep > > Because of

Re: [U-Boot] [PATCH] mmc: add missing prototype for mmc_get_env_dev

2016-01-26 Thread Peng Fan
On Tue, Jan 26, 2016 at 04:20:38PM +0100, Clemens Gruber wrote: >This is a follow-up patch to e92029c0f4 and adds a prototype for >the weak mmc_get_env_dev function. > >Cc: Tom Rini >Cc: Stephen Warren > >Signed-off-by: Clemens Gruber >--- > include/mmc.h | 1 + > 1 file changed, 1 insertion(+) >

Re: [U-Boot] buildman errors

2016-01-26 Thread Bin Meng
Hi Tom, On Tue, Jan 26, 2016 at 10:47 PM, Tom Rini wrote: > On Tue, Jan 26, 2016 at 12:26:07PM +0800, Bin Meng wrote: >> Hi Tom, >> >> On Mon, Jan 25, 2016 at 10:12 PM, Tom Rini wrote: >> > On Mon, Jan 25, 2016 at 11:18:26AM +0800, Bin Meng wrote: >> >> Hi Tom, >> >> >> >> On Mon, Jan 25, 2016 a

Re: [U-Boot] question regarding USB gadget driver (dwc2)

2016-01-26 Thread Steve Rae
On 16-01-26 05:35 PM, Marek Vasut wrote: On Wednesday, January 27, 2016 at 01:35:55 AM, Steve Rae wrote: Hi Marek & Lukasz, I have an issue running fastboot on my board (which is USB_SPEED_HIGH): => fastboot0 failed to enable in ep failed to enable in ep failed to ena

Re: [U-Boot] Please pull u-boot-sunxi master

2016-01-26 Thread Tom Rini
On Tue, Jan 26, 2016 at 08:51:38PM +0100, Hans de Goede wrote: > Hi Tom, > > Here is the first sunxi pull-req for v2016.04, it > contains various fixes / improvements all over the place. > > The following changes since commit ac01603da4598b4b34ff3a5c428aa925daa12b60: > > checkpatch: ignore re

[U-Boot] [PATCH v2 1/3] ARM: at91: clock: add PLLB enable/disable functions

2016-01-26 Thread Wenyou Yang
To avoid the duplicated code, add the PLLB handle functions. Signed-off-by: Wenyou Yang Reviewed-by: Andreas Bießmann --- Changes in v2: None arch/arm/mach-at91/arm926ejs/clock.c | 38 + arch/arm/mach-at91/include/mach/clk.h |2 ++ 2 files changed, 40 in

[U-Boot] [PATCH v2 0/3] ARM: at91: add PLLB handle functions

2016-01-26 Thread Wenyou Yang
To reduce the duplicated code, add PLLB enable/disable functions, replace the UTMI PLL handle code with these functions. It is based on the following patch set. [PATCH 0/5] ARM: at91: improve peripheral and system clock handle functions [PATCH 0/4] ARM: at91: add UTMI PLL handle f

[U-Boot] [PATCH v2 3/3] board: atmel: siemens: clean up PLLB code

2016-01-26 Thread Wenyou Yang
Due to introducing the new PLLB clock handle functions, use these functions to clean up the PLLB enable code. Signed-off-by: Wenyou Yang Reviewed-by: Andreas Bießmann --- Changes in v2: - collect Reviewed-by from Andreas. board/siemens/smartweb/smartweb.c |6 +- board/siemens/taurus/

Re: [U-Boot] buildman errors

2016-01-26 Thread Tom Rini
On Wed, Jan 27, 2016 at 09:55:02AM +0800, Bin Meng wrote: > Hi Tom, > > On Tue, Jan 26, 2016 at 10:47 PM, Tom Rini wrote: > > On Tue, Jan 26, 2016 at 12:26:07PM +0800, Bin Meng wrote: > >> Hi Tom, > >> > >> On Mon, Jan 25, 2016 at 10:12 PM, Tom Rini wrote: > >> > On Mon, Jan 25, 2016 at 11:18:26

[U-Boot] [PATCH v2 2/3] drivers: usb: ohci-at91: clean up the PLLB code

2016-01-26 Thread Wenyou Yang
Due to introducing the new PLLB clock handle functions, use these functions to clean up the PLLB enable/disable code. Signed-off-by: Wenyou Yang --- Changes in v2: - add return value for timeout checking at91_pllb_clk_enable/disable(). drivers/usb/host/ohci-at91.c | 22 +++--

Re: [U-Boot] question regarding USB gadget driver (dwc2)

2016-01-26 Thread Marek Vasut
On Wednesday, January 27, 2016 at 02:58:38 AM, Steve Rae wrote: > On 16-01-26 05:35 PM, Marek Vasut wrote: > > On Wednesday, January 27, 2016 at 01:35:55 AM, Steve Rae wrote: > >> Hi Marek & Lukasz, > >> > >> I have an issue running fastboot on my board (which is USB_SPEED_HIGH): > >> => fast

[U-Boot] [PATCH 5/5] usb: ehci: Be explicit about the BE IO accessors

2016-01-26 Thread Marek Vasut
Add explicit cpu_to_be32()/be32_to_cpu() conversion to BE EHCI I/O accessors to align them with their LE counterpart. No functional change. Signed-off-by: Marek Vasut Cc: Daniel Schwierzeck Cc: Hans de Goede --- drivers/usb/host/ehci.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)

[U-Boot] [PATCH 1/5] mips: cache: Bulletproof the code against cornercases

2016-01-26 Thread Marek Vasut
This patch makes sure that the flush/invalidate_dcache_range() functions can handle corner-case calls like this -- invalidate_dcache_range(0, 0, 0); This call is valid and is happily produced by USB EHCI code for example. The expected behavior of the cache function(s) in this case is that they will

[U-Boot] [PATCH 4/5] usb: ehci: Clear USBMODE_BE on LE MMIO

2016-01-26 Thread Marek Vasut
If the USB EHCI is configured for little endian MMIO, make sure to clear the USBMODE_BE flag from the USBMODE register. Signed-off-by: Marek Vasut Cc: Daniel Schwierzeck Cc: Hans de Goede --- drivers/usb/host/ehci-hcd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/usb/host/ehc

[U-Boot] [PATCH 2/5] usb: ehci: Use map_physmem in ehci-generic

2016-01-26 Thread Marek Vasut
Some architectures, like MIPS, require remapping of the registers. Add the map_physmem() call to handle it. Signed-off-by: Marek Vasut Cc: Daniel Schwierzeck Cc: Hans de Goede Cc: Masahiro Yamada Cc: Alexey Brodkin --- drivers/usb/host/ehci-generic.c | 4 +++- 1 file changed, 3 insertions(+)

[U-Boot] [PATCH 3/5] usb: ehci: Implement V2P mapping

2016-01-26 Thread Marek Vasut
Certain processor architectures, like MIPS, require that the USB structures and transfer buffers are passed with their PA to the USB controller. If VA is passed, the USB will not work. Add the necessary virt_to_phys() calls into the USB EHCI code to make it work. Signed-off-by: Marek Vasut Cc: Da

Re: [U-Boot] [PATCH] armv7: add cacheline sizes where missing

2016-01-26 Thread Tom Rini
On Tue, Jan 26, 2016 at 05:40:49PM +0100, Albert ARIBAUD wrote: > Some armv7 targets are missing a cache line size declaration. > In preparation for "arm: cache: Implement cache range check for v7" > patch, add these declarations with the appropriate value for > the target's SoC or CPU. > > Signe

[U-Boot] [patch resend] nand: mxs: fix error handling for mxs_nand_init

2016-01-26 Thread Peng Fan
Fix error handling for mxs_nand_init. The original error handling is wrong for err2 and err1. Should first free desc[x], then free desc. This patch also correctly handle err3, should use MXS_DMA_CHANNEL_AHB_APBH_GPMI0 as the check point. Cc: Stefano Babic CC: Fabio Estevam Cc: Scott Wood Cc:

[U-Boot] [PATCH] serial: serial_stm32: move clock config from driver to board

2016-01-26 Thread Vikas Manocha
This patch removes the uart clock enable from serial driver & move it in the board code. Signed-off-by: Vikas Manocha --- arch/arm/include/asm/arch-stm32f4/stm32_defs.h | 15 arch/arm/include/asm/arch-stm32f4/stm32_periph.h | 27 +++ arch/arm/mach-stm32/stm32f4/clock.c

Re: [U-Boot] [PATCH 3/4] spi: omap3: Convert to DM

2016-01-26 Thread Peng Fan
On Tue, Jan 26, 2016 at 10:12:10AM -0500, Tom Rini wrote: >On Tue, Jan 26, 2016 at 10:58:47AM +0800, Peng Fan wrote: >> On Mon, Jan 25, 2016 at 09:45:47PM -0500, Tom Rini wrote: >> >On Tue, Jan 26, 2016 at 09:55:43AM +0800, Peng Fan wrote: >> >> Hi Simon, >> >> >> >> On Mon, Jan 25, 2016 at 06:11:

Re: [U-Boot] [patch resend] nand: mxs: fix error handling for mxs_nand_init

2016-01-26 Thread Marek Vasut
On Wednesday, January 27, 2016 at 03:38:02 AM, Peng Fan wrote: > Fix error handling for mxs_nand_init. > > The original error handling is wrong for err2 and err1. > Should first free desc[x], then free desc. > > This patch also correctly handle err3, should use > MXS_DMA_CHANNEL_AHB_APBH_GPMI0 as

Re: [U-Boot] [PATCH] rpi: fix up Model B entries

2016-01-26 Thread Stephen Warren
On 01/25/2016 01:36 PM, Lubomir Rintel wrote: > It seems like the P5 header was not present on "Model B" any board prior > to Revision 2.0, there's no need for a separate device tree. > > Also, it looks like "rev2" is incorrectly used to only cover the 512MiB > memory models; there also were 256Mi

[U-Boot] [PATCH 1/2] hush: Pull out U-Boot prompt display and read functionality

2016-01-26 Thread Marek Vasut
Pull the code which displays U-Boot prompt and reads the command line into a separate function. No functional change. Signed-off-by: Marek Vasut --- common/cli_hush.c | 21 - 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/common/cli_hush.c b/common/cli_hush.c

[U-Boot] [PATCH 2/2] hush: Add rudimentary support for PS1 and PS2

2016-01-26 Thread Marek Vasut
Add trivial support for changing the U-Boot command prompt string by setting PS1 and PS2 environment variables. Only static variables are supported. Signed-off-by: Marek Vasut --- README| 8 common/cli_hush.c | 10 ++ 2 files changed, 18 insertions(+) diff --git a/

Re: [U-Boot] [PATCH 0/6] usb: dwc2: Add support for SPLIT transactions

2016-01-26 Thread Stephen Warren
On 01/16/2016 08:09 PM, Stefan Brüns wrote: > The first patch fixes an out-of-bounds access, and makes the calculation of > maximum transfer size more straightforward. It also makes overriding the > maximum transfer size easier for split transactions Sorry I haven't been keeping up on the U-Boot d

Re: [U-Boot] [PATCH 0/6] usb: dwc2: Add support for SPLIT transactions

2016-01-26 Thread Marek Vasut
On Wednesday, January 27, 2016 at 04:52:03 AM, Stephen Warren wrote: > On 01/16/2016 08:09 PM, Stefan Brüns wrote: > > The first patch fixes an out-of-bounds access, and makes the calculation > > of maximum transfer size more straightforward. It also makes overriding > > the maximum transfer size e

Re: [U-Boot] [PATCH 2/2] include:configs: Add usb device-tree fixup for all fsl platforms

2016-01-26 Thread Marek Vasut
On Wednesday, January 27, 2016 at 05:14:00 AM, Ramneek Mehresh wrote: > > -Original Message- > > From: Marek Vasut [mailto:ma...@denx.de] > > Sent: Tuesday, January 26, 2016 4:58 PM > > To: Ramneek Mehresh > > Cc: u-boot@lists.denx.de > > Subject: Re: [PATCH 2/2] include:configs: Add usb d

[U-Boot] [PATCHv4 1/9] arm: vybrid: Enable lpuart support

2016-01-26 Thread Bhuvanchandra DV
Add device tree node's for lpuart on Vybrid platform Signed-off-by: Bhuvanchandra DV Acked-by: Stefan Agner Reviewed-by: Bin Meng --- arch/arm/dts/vf.dtsi | 43 +++ 1 file changed, 43 insertions(+) diff --git a/arch/arm/dts/vf.dtsi b/arch/arm/dts/vf.dts

[U-Boot] [PATCHv4 0/9] Migrate NXP/Freescale Vybrid based boards to support pure DT

2016-01-26 Thread Bhuvanchandra DV
Changes since v3: - Add missing space in device tree. - Reorder the patchset to avoid broken state. Changes since v2: - Split the patch for updating the license string. - Reorder the patchset to avoid broken state. Changes since v1: - Update the license string in device tree's. - Update all lpuar

[U-Boot] [PATCHv4 2/9] arm: vybrid: Update the license string

2016-01-26 Thread Bhuvanchandra DV
Since SPDX license is already there, drop the full one. Signed-off-by: Bhuvanchandra DV Acked-by: Stefan Agner Reviewed-by: Bin Meng --- arch/arm/dts/vf-colibri.dtsi | 5 - arch/arm/dts/vf.dtsi | 5 - arch/arm/dts/vf500-colibri.dts | 5 - arch/arm/dts/vf610-colibri.dts

[U-Boot] [PATCHv4 3/9] arm: colibri-vf: Enable serial support

2016-01-26 Thread Bhuvanchandra DV
- Enable lpuart support on Toradex Colibri VF50/VF61 - Use UART0 for stdout. Signed-off-by: Bhuvanchandra DV Reviewed-by: Bin Meng --- arch/arm/dts/vf-colibri.dtsi | 10 ++ 1 file changed, 10 insertions(+) diff --git a/arch/arm/dts/vf-colibri.dtsi b/arch/arm/dts/vf-colibri.dtsi index f

[U-Boot] [PATCHv4 5/9] arm: pcm052: Add device tree file's

2016-01-26 Thread Bhuvanchandra DV
- Add device tree files for Phytec phyCORE-Vybrid Board. - Enable lpuart support for Phytec phyCORE-Vybrid Board. - Use UART1 for stdout. Signed-off-by: Bhuvanchandra DV Reviewed-by: Bin Meng --- arch/arm/dts/Makefile | 3 ++- arch/arm/dts/pcm052.dts | 22 ++ 2 files chan

[U-Boot] [PATCHv4 7/9] arm: vybrid: Drop enabling GPIO, SPI and UART in legacy mode

2016-01-26 Thread Bhuvanchandra DV
Remove the legacy way of enabling GPIO, SPI and UART on Vybrid based boards since these driver's now only supports DT mode. Signed-off-by: Bhuvanchandra DV Acked-by: Stefan Agner Reviewed-by: Bin Meng --- include/configs/colibri_vf.h | 13 - include/configs/pcm052.h | 3 --- i

[U-Boot] [PATCHv4 6/9] arm: vybrid: Update defconfig's

2016-01-26 Thread Bhuvanchandra DV
Let's go with pure DT solution for board's based on NXP/Freescale Vybrid platform. - Merge the DT defconfig with non-DT defconfig for Toradex Colibri VF50/VF61 and drop the non-DT defconfig. - Update the legacy defconfigs for NXP/Freescale VF610 Tower Board with DT. - Update the legacy defconf

[U-Boot] [PATCHv4 4/9] arm: vf610-twr: Add device tree file's

2016-01-26 Thread Bhuvanchandra DV
- Add device tree files for NXP/Freescale VF610 Tower Board. - Enable lpuart support on NXP/Freescale VF610 Tower Board. - Use UART1 as stdout. Signed-off-by: Bhuvanchandra DV Reviewed-by: Bin Meng --- arch/arm/dts/Makefile | 3 ++- arch/arm/dts/vf610-twr.dts | 22 ++

[U-Boot] [PATCHv4 9/9] dm: vybrid_gpio: Drop legacy code

2016-01-26 Thread Bhuvanchandra DV
All boards using this driver are with device tree support, hence drop the legacy code in driver to have a pure DT solution. Signed-off-by: Bhuvanchandra DV Reviewed-by: Bin Meng --- drivers/gpio/vybrid_gpio.c | 18 -- 1 file changed, 18 deletions(-) diff --git a/drivers/gpio/vy

[U-Boot] [PATCHv4 8/9] dm: lpuart: Drop the legacy code

2016-01-26 Thread Bhuvanchandra DV
All boards using this driver are with device tree support, hence drop the legacy code in driver to have a pure DT solution. Signed-off-by: Bhuvanchandra DV Reviewed-by: Bin Meng --- drivers/serial/serial_lpuart.c | 101 + 1 file changed, 2 insertions(+),

Re: [U-Boot] buildman errors

2016-01-26 Thread Bin Meng
Hi Tom, On Wed, Jan 27, 2016 at 10:08 AM, Tom Rini wrote: > On Wed, Jan 27, 2016 at 09:55:02AM +0800, Bin Meng wrote: >> Hi Tom, >> >> On Tue, Jan 26, 2016 at 10:47 PM, Tom Rini wrote: >> > On Tue, Jan 26, 2016 at 12:26:07PM +0800, Bin Meng wrote: >> >> Hi Tom, >> >> >> >> On Mon, Jan 25, 2016 a

Re: [U-Boot] [PATCH] armv7: add cacheline sizes where missing

2016-01-26 Thread Marek Vasut
On Tuesday, January 26, 2016 at 05:40:49 PM, Albert ARIBAUD wrote: > Some armv7 targets are missing a cache line size declaration. > In preparation for "arm: cache: Implement cache range check for v7" > patch, add these declarations with the appropriate value for > the target's SoC or CPU. > > Sig

Re: [U-Boot] [PATCH v4] mmc: socfpga_dw_mmc: Enable calibration for drvsel and smplsel

2016-01-26 Thread Trent Piepho
On Fri, 2015-11-27 at 15:22 +0800, Chin Liang See wrote: > Enable SDMMC calibration to determine the best setting for > drvsel and smplsel. Calibration will be triggered if the > drvsel and smplsel node are not available in DTS. We have a Cyclone V based board and on the latest revision the SD car

Re: [U-Boot] [PATCH 2/2] include:configs: Add usb device-tree fixup for all fsl platforms

2016-01-26 Thread Ramneek Mehresh
> -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Wednesday, January 27, 2016 9:57 AM > To: Ramneek Mehresh > Cc: Ramneek Mehresh ; u- > b...@lists.denx.de; Simon Glass > Subject: Re: [PATCH 2/2] include:configs: Add usb device-tree fixup for all > fsl > platforms

Re: [U-Boot] [PATCH 2/2] include:configs: Add usb device-tree fixup for all fsl platforms

2016-01-26 Thread Ramneek Mehresh
> -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Tuesday, January 26, 2016 4:58 PM > To: Ramneek Mehresh > Cc: u-boot@lists.denx.de > Subject: Re: [PATCH 2/2] include:configs: Add usb device-tree fixup for all > fsl > platforms > > On Tuesday, January 26, 2016 at

Re: [U-Boot] [PATCH 0/1] mvtwsi: Fix breakage introduced by "Fix mvtwsi not working on sun6i and newer sunxi SoCs"

2016-01-26 Thread Heiko Schocher
Hello Hans, Am 26.01.2016 um 18:05 schrieb Hans de Goede: Hi Heiko, Your fix for the checkpatch issues in one of my patches (sorry about those) has broken mvtwsi support. Uh! Sorry! This patch fixes this, I'm currently preparing a sunxi pull-req, and I plan to include this fix, so this is m

Re: [U-Boot] [PATCH 1/4] Implement "pci enum" command for CONFIG_DM_PCI

2016-01-26 Thread Bin Meng
On Wed, Jan 27, 2016 at 2:10 AM, Stephen Warren wrote: > From: Stephen Warren > > With CONFIG_DM_PCI enabled, PCI buses are not enumerated at boot, as they > are without that config option enabled. No command exists to enumerate the > PCI buses. Hence, unless some board-specific code causes PCI e

Re: [U-Boot] [PATCH] mvtwsi: Fix breakage introduced by "Fix mvtwsi not working on sun6i and newer sunxi SoCs"

2016-01-26 Thread Heiko Schocher
Hello Hans, Am 26.01.2016 um 18:05 schrieb Hans de Goede: "Fix mvtwsi not working on sun6i and newer sunxi SoCs" includes the following: @@ -189,7 +200,8 @@ static int twsi_start(struct i2c_adapter *adap, int expected_status) /* globally set TWSIEN in case it was not */ twsi_co

Re: [U-Boot] [PATCH v2 1/3] ARM: at91: clock: add PLLB enable/disable functions

2016-01-26 Thread Heiko Schocher
Hello Wenyou, Am 27.01.2016 um 03:04 schrieb Wenyou Yang: To avoid the duplicated code, add the PLLB handle functions. Signed-off-by: Wenyou Yang Reviewed-by: Andreas Bießmann --- Changes in v2: None arch/arm/mach-at91/arm926ejs/clock.c | 38 + arch/arm

Re: [U-Boot] [PATCH v2 2/3] drivers: usb: ohci-at91: clean up the PLLB code

2016-01-26 Thread Heiko Schocher
Hello Wenyou, Am 27.01.2016 um 03:04 schrieb Wenyou Yang: Due to introducing the new PLLB clock handle functions, use these functions to clean up the PLLB enable/disable code. Signed-off-by: Wenyou Yang --- Changes in v2: - add return value for timeout checking at91_pllb_clk_enable/disable(

Re: [U-Boot] [PATCH v2 3/3] board: atmel: siemens: clean up PLLB code

2016-01-26 Thread Heiko Schocher
Hello Wenyou, Am 27.01.2016 um 03:04 schrieb Wenyou Yang: Due to introducing the new PLLB clock handle functions, use these functions to clean up the PLLB enable code. Signed-off-by: Wenyou Yang Reviewed-by: Andreas Bießmann --- Changes in v2: - collect Reviewed-by from Andreas. board/s

Re: [U-Boot] [PATCH 1/2] hush: Pull out U-Boot prompt display and read functionality

2016-01-26 Thread Heiko Schocher
Hello Marek, Am 27.01.2016 um 04:47 schrieb Marek Vasut: Pull the code which displays U-Boot prompt and reads the command line into a separate function. No functional change. Signed-off-by: Marek Vasut --- common/cli_hush.c | 21 - 1 file changed, 16 insertions(+), 5 del

Re: [U-Boot] [PATCH v2 1/3] ARM: at91: clock: add PLLB enable/disable functions

2016-01-26 Thread Yang, Wenyou
Hello Heiko, Thank you for your test. > -Original Message- > From: Heiko Schocher [mailto:h...@denx.de] > Sent: 2016年1月27日 14:31 > To: Yang, Wenyou > Cc: U-Boot Mailing List > Subject: Re: [U-Boot] [PATCH v2 1/3] ARM: at91: clock: add PLLB enable/disable > functions > > Hello Wenyou, >

Re: [U-Boot] [PATCH 2/2] hush: Add rudimentary support for PS1 and PS2

2016-01-26 Thread Heiko Schocher
Hello Marek, Am 27.01.2016 um 04:47 schrieb Marek Vasut: Add trivial support for changing the U-Boot command prompt string by setting PS1 and PS2 environment variables. Only static variables are supported. Signed-off-by: Marek Vasut --- README| 8 common/cli_hush.c | 1

Re: [U-Boot] [PATCH] arm: mvebu: enable generic distro boot config

2016-01-26 Thread Stefan Roese
Hi Dennis, On 15.01.2016 02:20, Dennis Gilmore wrote: > Switch all of the mvebu boards to support disto generic booting > This will enable Fedora, Debian and other distros to support > mvebu systems easier. Tested on SolidRun ClearFog Sorry for the late review. I have a few issues with this patch

Re: [U-Boot] [PATCH 2/2] arm: mvebu: Add support for the Armada XP theadorable board

2016-01-26 Thread Stefan Roese
On 20.01.2016 08:13, Stefan Roese wrote: This patch adds support for the Armada XP (MV78260) based theadorable board. Its equipped with onboard DDR3, UART, ethernet, I2C, SPI NOR, LCD and SATA (SSD) interfaces / devices. Two defconfigs are added: theadorable_defconfig: The production U-Boot ver

[U-Boot] Please pull u-boot-marvell/master

2016-01-26 Thread Stefan Roese
Hi Tom, please pull the following patch. Thanks, Stefan The following changes since commit 9e4de7fd4acc8f99b6d383c711d21c0159849629: Merge branch 'master' of http://git.denx.de/u-boot-sunxi (2016-01-26 17:45:37 -0500) are available in the git repository at: git://www.denx.de/git/u-boot

Re: [U-Boot] [PATCH v3 0/7] Determine Boot mode at run time

2016-01-26 Thread Aneesh Bansal
> -Original Message- > From: Tom Rini [mailto:tr...@konsulko.com] > Sent: Monday, January 25, 2016 9:06 PM > To: Aneesh Bansal > Cc: u-boot@lists.denx.de; Ruchika Gupta > Subject: Re: [U-Boot] [PATCH v3 0/7] Determine Boot mode at run time > > On Fri, Jan 22, 2016 at 04:37:21PM +0530, An

Re: [U-Boot] [PATCH V6] sf: Turn SPI flash chip into 3-Byte address mode

2016-01-26 Thread Zhiqiang Hou
Hi Jagan, Up to now, I didn't find the 4-Byte addressing mode support. Do you know if anybody have schedule to add it? if no, could you please apply this patch, due to as I have said when do the warm boot up, the SPI flash will be kept in 4-Byte addressing mode that kernel driver set, while t

[U-Boot] [PATCH] armv8: ls2080ardb: invert irq pins polarity for AQR405 PHY

2016-01-26 Thread shh.xie
From: Shaohui Xie To use AQR405 PHY's interrupt, we need to invert the relative IRQ pins polarity by setting IRQCR register, because AQR405 interrupt is low active but GIC accepts high active. Signed-off-by: Shaohui Xie --- board/freescale/ls2080ardb/ls2080ardb.c | 4 include/configs/ls20

Re: [U-Boot] [PATCH 2/2] include:configs: Add usb device-tree fixup for all fsl platforms

2016-01-26 Thread Marek Vasut
On Wednesday, January 27, 2016 at 05:30:51 AM, Ramneek Mehresh wrote: > > -Original Message- > > From: Marek Vasut [mailto:ma...@denx.de] > > Sent: Wednesday, January 27, 2016 9:57 AM > > To: Ramneek Mehresh > > Cc: Ramneek Mehresh ; u- > > b...@lists.denx.de; Simon Glass > > Subject: Re:

Re: [U-Boot] [PATCH] armv7: add cacheline sizes where missing

2016-01-26 Thread Albert ARIBAUD
Hello Marek, On Wed, 27 Jan 2016 05:10:59 +0100, Marek Vasut wrote: > On Tuesday, January 26, 2016 at 05:40:49 PM, Albert ARIBAUD wrote: > > Some armv7 targets are missing a cache line size declaration. > > In preparation for "arm: cache: Implement cache range check for v7" > > patch, add these d

[U-Boot] [PATCH v2] armv7: add cacheline sizes where missing

2016-01-26 Thread Albert ARIBAUD
Some armv7 targets are missing a cache line size declaration. In preparation for "arm: cache: Implement cache range check for v7" patch, add these declarations with the appropriate value for the target's SoC or CPU. Signed-off-by: Albert ARIBAUD --- Changes in v2: - fix include/configs/at91-sama

<    1   2   3