Re: [U-Boot] [PATCH 0/1] fix ARM DCC support for ARMv7 based cores (e.g. CortexA)

2015-02-01 Thread Albert ARIBAUD
Hello Alexander, On Mon, 26 Jan 2015 14:13:16 +0100, Alexander Merkle alexander.mer...@lauterbach.com wrote: arm_dcc.c supported ARMv4 (ARM7) to ARMv6 (ARM11) correctly. All recent CortexA/ARMv7 based cores share the mrc/mcr coprocessor calls of ARMv6. Due to the missing #ifdef the

Re: [U-Boot] [PATCH 13/13] lcd: split splash code into its own function

2015-02-01 Thread Nikita Kiryanov
Hi Simon, On 01/31/2015 02:25 AM, Simon Glass wrote: Hi Nikita, On 29 January 2015 at 04:21, Nikita Kiryanov nik...@compulab.co.il wrote: lcd_logo() currently performs tasks well beyond just displaying the logo. It has code which displays splash image, it has logic which determines when the

Re: [U-Boot] [PATCH 2/4] usb: add 'bcm_udc_otg' support

2015-02-01 Thread Lukasz Majewski
On Sat, 31 Jan 2015 15:15:24 +0100 Marek Vasut ma...@denx.de wrote: On Saturday, January 31, 2015 at 02:26:16 PM, Lukasz Majewski wrote: On Fri, 30 Jan 2015 23:16:57 +0100 Marek Vasut ma...@denx.de wrote: On Monday, January 26, 2015 at 01:31:39 PM, Lukasz Majewski wrote: Hi Marek,

Re: [U-Boot] [PATCH 02/21] common/lcd: Add command for setting cursor within lcd-framework

2015-02-01 Thread Nikita Kiryanov
Hi Hannes, On 01/30/2015 03:25 PM, Hannes Petermaier wrote: We need this function if we want to make some outputs i.e position the writing cursor out of u-boot scripts. This commit message is inaccurate. Positioning the writing cursor is not in itself output. Also, what is the use case for

[U-Boot] [PATCH] edminiv2: drop CONFIG_CFI_LEGACY

2015-02-01 Thread Albert ARIBAUD
Nowadays generic CFI code properly detects the ED Mini V2's Macronix MC29LV400CB flash chip, therefore we can drop the CONFIG_FLASH_CFI_LEGACY option and associated settings and code. Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- board/LaCie/edminiv2/edminiv2.c | 50

Re: [U-Boot] [PATCH 12/13] lcd: dt: extract simplefb support

2015-02-01 Thread Nikita Kiryanov
Hi Simon, On 01/31/2015 02:25 AM, Simon Glass wrote: On 29 January 2015 at 04:21, Nikita Kiryanov nik...@compulab.co.il wrote: We now have api functions that can support compiling simplefb code as its own module. Since this code is not part of the display functionality, extract it to its own

Re: [U-Boot] [PATCH 12/13] lcd: dt: extract simplefb support

2015-02-01 Thread Nikita Kiryanov
Hi Stephen, On 01/29/2015 07:14 PM, Stephen Warren wrote: On 01/29/2015 04:21 AM, Nikita Kiryanov wrote: We now have api functions that can support compiling simplefb code as its own module. Since this code is not part of the display functionality, extract it to its own file. Raspberry Pi

Re: [U-Boot] [RFC PATCH 6/7] arm: Show relocated PC/LR in the register dump

2015-02-01 Thread Albert ARIBAUD
Hello Simon, On Fri, 30 Jan 2015 12:04:56 -0700, Simon Glass s...@chromium.org wrote: If we don't know the relocation address, the raw values are not very useful. Show the pre-relocation values as well as these can be looked up in System.map, etc. Signed-off-by: Simon Glass

[U-Boot] [PATCH v2] edminiv2: drop CONFIG_CFI_LEGACY

2015-02-01 Thread Albert ARIBAUD
Nowadays generic CFI code properly detects the ED Mini V2's Macronix MX29LV400CB flash chip, therefore we can drop the CONFIG_FLASH_CFI_LEGACY option and associated settings and code. Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- Changes in v2: - Fix typo in flash part name

Re: [U-Boot] [PATCH 2/4] usb: add 'bcm_udc_otg' support

2015-02-01 Thread Marek Vasut
On Sunday, February 01, 2015 at 02:15:45 PM, Lukasz Majewski wrote: On Sat, 31 Jan 2015 15:15:24 +0100 Marek Vasut ma...@denx.de wrote: On Saturday, January 31, 2015 at 02:26:16 PM, Lukasz Majewski wrote: On Fri, 30 Jan 2015 23:16:57 +0100 Marek Vasut ma...@denx.de wrote: On

Re: [U-Boot] [PATCH 1/4] sunxi: Make FEL mode usable again

2015-02-01 Thread Simon Glass
Hi, On 30 January 2015 at 04:58, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: The commit f630974ccb3ce93e9607a3354e9acb266a8b7e95 'sunxi: Move SPL s_init() code to board_init_f()' broke the FEL boot mode. This patch moves the DRAM initialization back to s_init() and introduces an

[U-Boot] [PATCH v2 14/26] tegra: clock: Add checking for invalid clock IDs

2015-02-01 Thread Simon Glass
The get_pll() function can do the wrong thing if passed values that are out of range. Add checks for this and add a function which can return a 'simple' PLL. This can be defined by SoCs with their own clocks. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None

[U-Boot] [PATCH v2 10/26] tegra: Add support for setting up a as3722 PMIC

2015-02-01 Thread Simon Glass
Add support for this PMIC which is used on some Tegra124 boards. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None board/nvidia/common/board.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c index

[U-Boot] [PATCH v2 24/26] tegra: video: support eDP displays on Tegra124 devices

2015-02-01 Thread Simon Glass
Connect up the clocks and the eDP driver to make these displays work with Tegra124-based devices. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Rebase on top of u-boot-dm arch/arm/include/asm/arch-tegra124/display.h | 58 + drivers/video/Kconfig

Re: [U-Boot] [PATCH 2/9] sunxi: Move SPL s_init() code to board_init_f()

2015-02-01 Thread Simon Glass
Hi Siarhei, On 1 February 2015 at 09:45, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: On Sun, 1 Feb 2015 09:29:53 -0700 Simon Glass s...@chromium.org wrote: Hi, On 30 January 2015 at 10:53, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: On Mon, 29 Dec 2014 09:15:36 -0700

[U-Boot] [PATCH v2 18/26] video: Add drm_dp_helper.h

2015-02-01 Thread Simon Glass
This file (from Linux 3.17) provides defines for display port. Use it so that our naming is consistent with Linux. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None include/linux/drm_dp_helper.h | 405 ++ 1 file changed, 405

[U-Boot] [PATCH v2 13/26] tegra: config: Use CONFIG_LCD to detect LCD presence

2015-02-01 Thread Simon Glass
Instead of CONFIG_VIDEO_TEGRA, use CONFIG_LCD to determine whether an LCD is present. Tegra124 uses a different driver. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None include/configs/tegra-common-post.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [U-Boot] [PATCH 02/13] lcd: split configuration_get_cmap

2015-02-01 Thread Nikita Kiryanov
Hi Simon, On 01/31/2015 02:24 AM, Simon Glass wrote: Hi Nikita, On 29 January 2015 at 04:21, Nikita Kiryanov nik...@compulab.co.il wrote: configuration_get_cmap() is multiple platform specific functions stuffed into one function. Split it into multiple versions, and move each version to the

[U-Boot] [PATCH v2 15/26] tegra: clock: Split the clock source code into a separate function

2015-02-01 Thread Simon Glass
Create a function which sets the source clock for a peripheral, given the number of mux bits to adjust. This can then be used more generally. For now, don't export it. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/cpu/tegra-common/clock.c | 51

Re: [U-Boot] [PATCH 1/4] sunxi: Make FEL mode usable again

2015-02-01 Thread Siarhei Siamashka
On Sun, 1 Feb 2015 09:28:36 -0700 Simon Glass s...@chromium.org wrote: Hi, On 30 January 2015 at 04:58, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: The commit f630974ccb3ce93e9607a3354e9acb266a8b7e95 'sunxi: Move SPL s_init() code to board_init_f()' broke the FEL boot mode.

Re: [U-Boot] [PATCH 13/13] lcd: split splash code into its own function

2015-02-01 Thread Simon Glass
Hi NIkita, On 1 February 2015 at 06:59, Nikita Kiryanov nik...@compulab.co.il wrote: Hi Simon, On 01/31/2015 02:25 AM, Simon Glass wrote: Hi Nikita, On 29 January 2015 at 04:21, Nikita Kiryanov nik...@compulab.co.il wrote: lcd_logo() currently performs tasks well beyond just displaying

Re: [U-Boot] [RFC PATCH v2 1/6] x86: Add header files for Intel Quark SoC defines

2015-02-01 Thread Simon Glass
Hi Bin, On 29 January 2015 at 02:18, Bin Meng bmeng...@gmail.com wrote: device.h for integrated pci devices' bdf on Quark SoC and quark.h for various memory-mapped and i/o-mapped base addresses within SoC. Signed-off-by: Bin Meng bmeng...@gmail.com --- Changes in v2: - Move vairous

Re: [U-Boot] [PATCH 2/9] sunxi: Move SPL s_init() code to board_init_f()

2015-02-01 Thread Siarhei Siamashka
On Sun, 1 Feb 2015 09:29:53 -0700 Simon Glass s...@chromium.org wrote: Hi, On 30 January 2015 at 10:53, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: On Mon, 29 Dec 2014 09:15:36 -0700 Simon Glass s...@chromium.org wrote: Hi Ian, On 28 December 2014 at 02:19, Ian Campbell

[U-Boot] Using u-boot for Powerpc P2041

2015-02-01 Thread Coskun AYYILDIZ
Hi, I have a powerpc P2041 board which runs a u-boot successfuly when the u-boot is located at the 0xFFF8 address of the flash. I want to place the u-boot in 0xF000 address as 0xFFF8 will already be used by another software. I changed the address in the config file. Then I connect

Re: [U-Boot] [PATCH v2] armv8/vexpress64: make multientry conditional

2015-02-01 Thread FengHua
hi Linus: While the Freescale ARMv8 board LS2085A will enter U-Boot both on a master and a secondary (slave) CPU, this is not the common behaviour on ARMv8 platforms. The norm is that U-Boot is entered from the master CPU only, while the other CPUs are kept in WFI (wait for interrupt)

[U-Boot] [RFC PATCH] ARM: Merge v7 and v8 outer cache operations

2015-02-01 Thread fenghua
From: David Feng feng...@phytium.com.cn Armv7 and Armv8 allow outer cache exist, it is outside of the architecture defined cache hierarchy and can not be manipulated by architecture defined instructions. It's processor specific. This patch merge v7_outer_cache_* and v8 l3_cache_*. Signed-off-by:

Re: [U-Boot] [PATCH v2 06/11] common/board_f: factor out reserve_stacks

2015-02-01 Thread Simon Glass
Hi Andreas, On 29 January 2015 at 16:07, Andreas Bießmann andreas.de...@googlemail.com wrote: Require each architecture to provide an arch_reserve_stacks() function to setup the required stacks for the architecture. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- This patch

Re: [U-Boot] [PATCH 12/14] microblaze: Move architecture to use generic board init

2015-02-01 Thread Simon Glass
Hi Michal, On 30 January 2015 at 03:13, Michal Simek mon...@monstr.eu wrote: Hi Simon, On 01/29/2015 04:45 PM, Simon Glass wrote: Hi Michal, On 29 January 2015 at 07:20, Michal Simek michal.si...@xilinx.com wrote: Hi Simon, On 01/29/2015 03:15 AM, Simon Glass wrote: Hi Michal, On 27

Re: [U-Boot] [PATCH 2/9] sunxi: Move SPL s_init() code to board_init_f()

2015-02-01 Thread Simon Glass
Hi, On 30 January 2015 at 10:53, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: On Mon, 29 Dec 2014 09:15:36 -0700 Simon Glass s...@chromium.org wrote: Hi Ian, On 28 December 2014 at 02:19, Ian Campbell i...@hellion.org.uk wrote: On Tue, 2014-12-23 at 12:04 -0700, Simon Glass wrote:

Re: [U-Boot] [RFC PATCH v2 3/6] x86: quark: Add Cache-As-RAM initialization

2015-02-01 Thread Simon Glass
Hi Bin, On 29 January 2015 at 02:18, Bin Meng bmeng...@gmail.com wrote: Quark SoC contains an embedded 512KiB SRAM (eSRAM) that is initialized by hardware. eSRAM is the ideal place to be used for Cache-As-RAM (CAR) before system memory is available. Signed-off-by: Bin Meng bmeng...@gmail.com

Re: [U-Boot] [RFC PATCH v2 2/6] x86: quark: Add routines to access message bus registers

2015-02-01 Thread Simon Glass
On 29 January 2015 at 02:18, Bin Meng bmeng...@gmail.com wrote: In the Quark SoC, some chipset commands are accomplished by utilizing the internal message network within the host bridge (D0:F0). Accesses to this network are accomplished by populating the message control register (MCR), Message

[U-Boot] [PATCH v2 22/26] tegra: video: Support serial output resource (SOR) on tegra124

2015-02-01 Thread Simon Glass
The SOR is required for talking to eDP LCD panels. Add a driver for this which will be used by the DisplayPort driver. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None drivers/video/Makefile | 2 + drivers/video/tegra124/Makefile | 7 +

[U-Boot] [PATCH v2 25/26] tegra: config: nyan-big: Enable LCD

2015-02-01 Thread Simon Glass
Add the PMIC, LCD settings, PWM and also show the board info at the top of the LCD when starting up. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None configs/nyan-big_defconfig | 2 ++ include/configs/nyan-big.h | 13 + 2 files changed, 15 insertions(+) diff

[U-Boot] [PATCH v2 23/26] tegra: video: Add Embedded DisplayPort driver

2015-02-01 Thread Simon Glass
This interface is used on laptop devices based on Tegra. Add a driver which provides access to the eDP interface. The driver uses the display port uclass. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None drivers/video/tegra124/Makefile |1 +

[U-Boot] [PATCH v2 08/26] power: Export register access functions from as3722

2015-02-01 Thread Simon Glass
With the full PMIC framework we may be able to avoid this. But for now we need access to the PMIC. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None drivers/power/as3722.c | 16 +--- include/power/as3722.h | 3 +++ 2 files changed, 16 insertions(+), 3

[U-Boot] [PATCH v2 21/26] tegra: dts: nyan-big: Add definitions for eDP display

2015-02-01 Thread Simon Glass
Add the various host1x peripherals to allow an eDP display to be connected. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/dts/tegra124-nyan-big.dts | 43 ++ 1 file changed, 43 insertions(+) diff --git

[U-Boot] [PATCH v2 16/26] tegra124: clock: Add display clocks and functions

2015-02-01 Thread Simon Glass
Add functions to provide access to the display clocks on Tegra124 including setting the clock rate for an EDP display. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/cpu/tegra-common/clock.c | 2 + arch/arm/cpu/tegra124-common/clock.c

[U-Boot] [PATCH v2 26/26] tegra124: video: Add full link training for eDP

2015-02-01 Thread Simon Glass
Add full link training as a fallback in case the fast link training fails. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Rebase on top of u-boot-dm drivers/video/tegra124/displayport.h | 228 +++ drivers/video/tegra124/dp.c | 527

[U-Boot] [PATCH v2 05/26] tegra: pwm: Allow the clock rate to be left as is

2015-02-01 Thread Simon Glass
When enabling a PWM, allow the existing clock rate and source to stand unchanged. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/cpu/armv7/tegra-common/pwm.c | 5 - arch/arm/include/asm/arch-tegra/pwm.h | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-)

[U-Boot] [PATCH v2 04/26] tegra: Move the pww into tegra-common

2015-02-01 Thread Simon Glass
This is needed for tegra124 also, so make it common and add a header file for tegra124. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/cpu/armv7/tegra-common/Makefile | 1 + arch/arm/cpu/armv7/{tegra20 = tegra-common}/pwm.c | 0

[U-Boot] [PATCH v2 06/26] tegra: Move checkboard() into the board code

2015-02-01 Thread Simon Glass
This is only used by Nvidia boards, so move it into nvidia/common to simplify things. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/cpu/tegra-common/board.c | 8 board/nvidia/common/board.c | 13 + 2 files changed, 9 insertions(+), 12

[U-Boot] [PATCH v2 12/26] tegra124: dts: Add host1x node to provide display information

2015-02-01 Thread Simon Glass
This peripheral is required to get the LCD display running. Add it to tegra124 and also bring in the binding file from Linux 3.18 Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/dts/tegra124.dtsi | 84 +

[U-Boot] [PATCH v2 20/26] dm: video: Add a uclass for display port

2015-02-01 Thread Simon Glass
eDP (Embedded DisplayPort) is a standard widely used in laptops to drive LCD panels. Add a uclass for this which supports a few simple operations. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None drivers/video/Kconfig | 7 ++ drivers/video/Makefile| 4

[U-Boot] [PATCH v2 19/26] edid: Add a function to read detailed monitor timings

2015-02-01 Thread Simon Glass
For digital displays (such as EDP LCDs) we would like to read the EDID information and use that to set display timings. Provide a function to do this. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None common/edid.c | 105

[U-Boot] [PATCH v2 17/26] tegra: Move display controller header into common

2015-02-01 Thread Simon Glass
Allow this to be used by other Tegra SoCs. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/cpu/armv7/tegra20/display.c | 2 +- .../include/asm/{arch-tegra20 = arch-tegra}/dc.h | 63 ++ arch/arm/include/asm/arch-tegra20/display.h

[U-Boot] [PATCH v2 09/26] tegra: Provide a function to allow LCD PMIC setup

2015-02-01 Thread Simon Glass
Some LCDs require a PMIC to be set up - add a function for this. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/include/asm/arch-tegra/sys_proto.h | 8 board/nvidia/common/board.c | 10 ++ 2 files changed, 18 insertions(+) diff

[U-Boot] [PATCH v2 07/26] tegra: Add a board ID function

2015-02-01 Thread Simon Glass
Add a way of displaying a numeric board ID on start-up. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/include/asm/arch-tegra/sys_proto.h | 11 ++- board/nvidia/common/board.c | 12 +++- 2 files changed, 17 insertions(+), 6

[U-Boot] [PATCH v2 11/26] tegra: nyan-big: Add LCD PMIC init and board ID

2015-02-01 Thread Simon Glass
Add required setup for the LCD display, and a function to provide the board ID. This requires GPIOs to be available prior to relocation. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None arch/arm/dts/tegra124-nyan-big.dts | 4 board/nvidia/nyan-big/nyan-big.c | 34

[U-Boot] [PATCH v2 01/26] dm: gpio: Add error handling and a function to claim vector GPIOs

2015-02-01 Thread Simon Glass
gpio_get_values_as_int() should return an error if something goes wrong. Also provide gpio_claim_vector(), a function to request the GPIOs and set them to input mode. Otherwise callers have to do this themselves. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None

[U-Boot] [PATCH 2/2] ARMv8: enable DM in vexpress64 board

2015-02-01 Thread fenghua
From: David Feng feng...@phytium.com.cn Signed-off-by: David Feng feng...@phytium.com.cn --- board/armltd/vexpress64/vexpress64.c | 13 + include/configs/vexpress_aemv8a.h| 14 -- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git

Re: [U-Boot] [RFC PATCH 0/21] ARM: start to move SoC code into arch/arm/mach-*

2015-02-01 Thread Simon Glass
Hi Albert, On 1 February 2015 at 03:11, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hello Simon, On Sat, 31 Jan 2015 20:20:06 -0700, Simon Glass s...@chromium.org wrote: Hi Albert, On 31 January 2015 at 20:02, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hello Masahiro, On

Re: [U-Boot] [RFC PATCH 0/21] ARM: start to move SoC code into arch/arm/mach-*

2015-02-01 Thread Albert ARIBAUD
Hello Simon, On Sat, 31 Jan 2015 20:20:06 -0700, Simon Glass s...@chromium.org wrote: Hi Albert, On 31 January 2015 at 20:02, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hello Masahiro, On Sun, 25 Jan 2015 15:11:02 +0900, Masahiro Yamada yamad...@jp.panasonic.com wrote: This

[U-Boot] [PATCH v3] sunxi: Add Linksprite_pcDuino3_Nano board / defconfig

2015-02-01 Thread Adam Sampson
This is a low-cost Allwinner A20 board with Arduino-style GPIO headers; it features 1G RAM, 4G NAND flash, 1 micro-SD, 2 USB sockets, 1 micro USB socket for OTG and another for power in, HDMI, SATA, 5V power for SATA devices, gigabit Ethernet, an IR receiver, 3.5mm audio out and a MIPI camera

[U-Boot] [PATCH] ARMv8: bug fix of mmu setup and code optimization

2015-02-01 Thread fenghua
From: David Feng feng...@phytium.com.cn 1. Fix a bug of mmu_setup that variable i and j should be type long instead of int. 2. Give mmu_setup weak attribute so that other implementation can redfine it. 3. A more common set_pgtable_section(). 4. Give device memory PXN and UXN attribute. CPU

Re: [U-Boot] [RFC PATCH 0/21] ARM: start to move SoC code into arch/arm/mach-*

2015-02-01 Thread Albert ARIBAUD
Hello Masahiro, On Sun, 25 Jan 2015 15:11:02 +0900, Masahiro Yamada yamad...@jp.panasonic.com wrote: This series can be applied on the current u-boot/master (commit 37b608a52dcb133) I'd rather not have all mach-* directories just below arch/arm/. Can't they be created under arch/arm/soc/

Re: [U-Boot] [RFC PATCH 0/21] ARM: start to move SoC code into arch/arm/mach-*

2015-02-01 Thread Simon Glass
Hi Albert, On 31 January 2015 at 20:02, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hello Masahiro, On Sun, 25 Jan 2015 15:11:02 +0900, Masahiro Yamada yamad...@jp.panasonic.com wrote: This series can be applied on the current u-boot/master (commit 37b608a52dcb133) I'd rather not

[U-Boot] [PATCH 0/2] ARMv8: driver model enable

2015-02-01 Thread fenghua
From: David Feng feng...@phytium.com.cn Currently serial_pl01x.c driver contain DM and non-DM mode, but it will access static varible in non-DM mode. So, u-boot using non-DM pl01x driver can not be placed in flash. This patch set enable pre-allocation malloc that is required by DM and enable DM

Re: [U-Boot] [PATCH v2] arm: spl: Allow board_init_r() to run with a larger stack

2015-02-01 Thread Albert ARIBAUD
Hello Simon, On Mon, 26 Jan 2015 08:34:21 -0700, Simon Glass s...@chromium.org wrote: At present SPL uses a single stack, either CONFIG_SPL_STACK or CONFIG_SYS_INIT_SP_ADDR. Since some SPL features (such as MMC and environment) require a lot of stack, some boards set CONFIG_SPL_STACK to point

[U-Boot] [PATCH 1/2] ARMv8: enable pre-allocation malloc

2015-02-01 Thread fenghua
From: David Feng feng...@phytium.com.cn Allocate memory space for pre-allocation malloc and zero global data. This code is partly from crt0.S. Signed-off-by: David Feng feng...@phytium.com.cn --- arch/arm/include/asm/config.h |4 arch/arm/lib/crt0_64.S| 13 +++-- 2

Re: [U-Boot] [PATCH 2/9] sunxi: Move SPL s_init() code to board_init_f()

2015-02-01 Thread Siarhei Siamashka
On Sun, 1 Feb 2015 10:00:43 -0700 Simon Glass s...@chromium.org wrote: Hi Siarhei, On 1 February 2015 at 09:45, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: On Sun, 1 Feb 2015 09:29:53 -0700 Simon Glass s...@chromium.org wrote: Hi, On 30 January 2015 at 10:53, Siarhei

Re: [U-Boot] [PATCH 03/21] common/lcd: Add command for writing to lcd-display

2015-02-01 Thread Nikita Kiryanov
Hi Hannes, On 01/30/2015 03:25 PM, Hannes Petermaier wrote: We need this function if we want to make some outputs out of u-boot scripts. I think this commit message is missing information. What makes this necessary? Why can't your script use regular echo commands with the lcd console

Re: [U-Boot] [RFC PATCH v2 6/6] x86: Enable the Intel quark/galileo build

2015-02-01 Thread Simon Glass
On 29 January 2015 at 02:18, Bin Meng bmeng...@gmail.com wrote: Make the Intel quark/galileo support avaiable in Kconfig and Makefile. With this patch, we can generate u-boot.rom for Intel galileo board. Signed-off-by: Bin Meng bmeng...@gmail.com Reviewed-by: Simon Glass s...@chromium.org

Re: [U-Boot] [RFC PATCH v2 4/6] x86: Add basic Intel Quark processor support

2015-02-01 Thread Simon Glass
Hi Bin, On 29 January 2015 at 02:18, Bin Meng bmeng...@gmail.com wrote: Add minimum codes to support Intel Quark SoC. DRAM initialization is not ready yet so a hardcoded gd-ram_size is assigned. Signed-off-by: Bin Meng bmeng...@gmail.com --- Changes in v2: - Use machine-specific - Move

Re: [U-Boot] [RFC PATCH v2 5/6] x86: Add basic Intel Galileo board support

2015-02-01 Thread Simon Glass
On 29 January 2015 at 02:18, Bin Meng bmeng...@gmail.com wrote: New board/intel/galileo board directory with minimum codes, plus board dts, defconfig and configuration files. Signed-off-by: Bin Meng bmeng...@gmail.com Reviewed-by: Simon Glass s...@chromium.org --- Changes in v2: None

[U-Boot] [PATCH v2 03/26] fdt: Add binding decode function for display-timings

2015-02-01 Thread Simon Glass
This is useful for display parameters. Add a simple decode function to read from this device tree node. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None doc/device-tree-bindings/video/display-timing.txt | 110 ++ include/fdtdec.h

[U-Boot] [PATCH v2 0/26] tegra: Add eDP support for nyan-big

2015-02-01 Thread Simon Glass
This series adds eDP support for nyan-big so that the display works. Nyan-big is based on tegra124. Some support is added for new clocks to make this work. The drm_dp_helper.h file is brought in from Linux since many of the DisplayPort constants are generic. A very simple uclass is added for

[U-Boot] [PATCH v2 02/26] dm: tegra: config: Increase pre-reloc malloc() to 6KB

2015-02-01 Thread Simon Glass
If we enable GPIOs as well as everything else, we need just over 4KB of space. Enlarge it a little. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None include/configs/tegra-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [U-Boot] [PATCH 02/13] lcd: split configuration_get_cmap

2015-02-01 Thread Simon Glass
Hi Nikita, On 1 February 2015 at 10:02, Nikita Kiryanov nik...@compulab.co.il wrote: Hi Simon, On 01/31/2015 02:24 AM, Simon Glass wrote: Hi Nikita, On 29 January 2015 at 04:21, Nikita Kiryanov nik...@compulab.co.il wrote: configuration_get_cmap() is multiple platform specific

Re: [U-Boot] [PATCH 1/4] sunxi: Make FEL mode usable again

2015-02-01 Thread Simon Glass
Hi Siarhei, On 1 February 2015 at 11:48, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: On Sun, 1 Feb 2015 09:28:36 -0700 Simon Glass s...@chromium.org wrote: Hi, On 30 January 2015 at 04:58, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: The commit

Re: [U-Boot] [PATCH 2/9] sunxi: Move SPL s_init() code to board_init_f()

2015-02-01 Thread Simon Glass
Hi Siarhei, On 1 February 2015 at 11:37, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: On Sun, 1 Feb 2015 10:00:43 -0700 Simon Glass s...@chromium.org wrote: Hi Siarhei, On 1 February 2015 at 09:45, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: On Sun, 1 Feb 2015 09:29:53

Re: [U-Boot] [PATCH 1/4] sunxi: Make FEL mode usable again

2015-02-01 Thread Siarhei Siamashka
On Sun, 1 Feb 2015 13:59:41 -0700 Simon Glass s...@chromium.org wrote: Hi Siarhei, On 1 February 2015 at 11:48, Siarhei Siamashka siarhei.siamas...@gmail.com wrote: On Sun, 1 Feb 2015 09:28:36 -0700 Simon Glass s...@chromium.org wrote: Hi, On 30 January 2015 at 04:58, Siarhei

[U-Boot] [PATCH] PCI: add 64-bit prefetchable memory support

2015-02-01 Thread fenghua
From: David Feng feng...@phytium.com.cn PCI specification allow prefetchable memory to be 32-bit or 64-bit. PCI express specification states that all memmory bars for prefetchable memory must be implemented as 64-bit. They all require that 64 bit prefetchble memory are suported especially when

Re: [U-Boot] [RFC PATCH v2 4/6] x86: Add basic Intel Quark processor support

2015-02-01 Thread Bin Meng
Hi Simon, On Mon, Feb 2, 2015 at 12:30 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 29 January 2015 at 02:18, Bin Meng bmeng...@gmail.com wrote: Add minimum codes to support Intel Quark SoC. DRAM initialization is not ready yet so a hardcoded gd-ram_size is assigned. Signed-off-by:

Re: [U-Boot] [RFC PATCH v2 3/6] x86: quark: Add Cache-As-RAM initialization

2015-02-01 Thread Bin Meng
Hi Simon, On Mon, Feb 2, 2015 at 12:30 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 29 January 2015 at 02:18, Bin Meng bmeng...@gmail.com wrote: Quark SoC contains an embedded 512KiB SRAM (eSRAM) that is initialized by hardware. eSRAM is the ideal place to be used for Cache-As-RAM

Re: [U-Boot] [RFC PATCH v2 2/6] x86: quark: Add routines to access message bus registers

2015-02-01 Thread Bin Meng
Hi Simon, On Mon, Feb 2, 2015 at 12:30 AM, Simon Glass s...@chromium.org wrote: On 29 January 2015 at 02:18, Bin Meng bmeng...@gmail.com wrote: In the Quark SoC, some chipset commands are accomplished by utilizing the internal message network within the host bridge (D0:F0). Accesses to this

Re: [U-Boot] [PATCH v3 3/6] Exynos542x: Add and enable get_periph_rate support

2015-02-01 Thread Akshay Saraswat
Hi, Hi, All. On 01/28/2015 02:55 PM, Joonyoung Shim wrote: Hi Simon, On 01/28/2015 02:15 PM, Simon Glass wrote: Hi Joonyoung, On 27 January 2015 at 22:12, Joonyoung Shim jy0922.s...@samsung.com wrote: Hi Simon, On 01/28/2015 02:01 PM, Simon Glass wrote: Hi Joonyoung, On 27 January

Re: [U-Boot] [PATCH V2 06/10] arm: socfpga: Zap checkboard()

2015-02-01 Thread Stefan Roese
On 30.01.2015 23:08, Marek Vasut wrote: Since all boards now have a DT, instead of hard-coding the board name into the U-Boot binary, read the board name from DT model property. Signed-off-by: Marek Vasut ma...@denx.de Cc: Chin Liang See cl...@opensource.altera.com Cc: Dinh Nguyen

Re: [U-Boot] [PATCH V2 08/10] arm: socfpga: Add Altera Arria V DK support

2015-02-01 Thread Stefan Roese
On 30.01.2015 23:08, Marek Vasut wrote: Add support for the Altera Arria V development kit. Signed-off-by: Marek Vasut ma...@denx.de Cc: Chin Liang See cl...@opensource.altera.com Cc: Dinh Nguyen dingu...@opensource.altera.com Cc: Pavel Machek pa...@denx.de Cc: Stefan Roese s...@denx.de Cc:

Re: [U-Boot] U-Boot gitweb

2015-02-01 Thread Nable
Hi! I can also see the same issue. It looks like some problem with permissions: Forbidden You don't have permission to access /gitweb.css on this server. Apache/2.2.22 (Debian) Server at git.denx.de Port 80 Error 403 is also returned for gitweb.js and git-logo.png

Re: [U-Boot] [PATCH 02/21] common/lcd: Add command for setting cursor within lcd-framework

2015-02-01 Thread Hannes Petermaier
U-Boot u-boot-boun...@lists.denx.de schrieb am 01.02.2015 15:48:51: From: Nikita Kiryanov nik...@compulab.co.il To: Hannes Petermaier oe5...@oevsv.at, u-boot@lists.denx.de Date: 01.02.2015 15:49 Subject: Re: [U-Boot] [PATCH 02/21] common/lcd: Add command for setting cursor within

Re: [U-Boot] [PATCH 03/21] common/lcd: Add command for writing to lcd-display

2015-02-01 Thread Hannes Petermaier
From: Nikita Kiryanov nik...@compulab.co.il To: Hannes Petermaier oe5...@oevsv.at, u-boot@lists.denx.de Date: 01.02.2015 15:53 Subject: Re: [U-Boot] [PATCH 03/21] common/lcd: Add command for writing to lcd-display Sent by: U-Boot u-boot-boun...@lists.denx.de Hi Hannes, Hi Nikita, On

Re: [U-Boot] [RFC PATCH v2 4/6] x86: Add basic Intel Quark processor support

2015-02-01 Thread Simon Glass
Hi Bin, On 1 February 2015 at 19:16, Bin Meng bmeng...@gmail.com wrote: Hi Simon, On Mon, Feb 2, 2015 at 12:30 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 29 January 2015 at 02:18, Bin Meng bmeng...@gmail.com wrote: Add minimum codes to support Intel Quark SoC. DRAM initialization

Re: [U-Boot] [PATCH] mtd: atmel_nand: according to pmecc version to perform 0xff page correction

2015-02-01 Thread Josh Wu
Hi, Scott On 1/16/2015 4:24 PM, Andreas Bießmann wrote: Hi Bo, Josh, On 01/16/2015 07:50 AM, Josh Wu wrote: Hi, Bo On 1/16/2015 1:27 PM, Bo Shen wrote: Hi Josh, On 01/16/2015 11:54 AM, Josh Wu wrote: As the PMECC hardware has different version. In SAMA5D4 chip, the PMECC ip can generate

[U-Boot] U-Boot gitweb

2015-02-01 Thread Bin Meng
Hi, I found U-Boot gitweb looks terrible since last week. http://git.denx.de/?p=u-boot.git;a=summary Looks the css is not working (?) Does anyone see the same issue here? Regards, Bin ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] Pull request: u-boot-blackfin

2015-02-01 Thread Sonic Zhang
Hi Tom, Please pull the following patches for Blackfin from u-boot-blackfin into your tree. Thanks Sonic Zhang The following changes since commit 28c4dae114c9b94b2ad81d4da716e9fc2cba: Merge branch 'next' of git://git.denx.de/u-boot-video (2015-01-14 16:26:15 -0500) are available in

Re: [U-Boot] [PATCH] PCI: add 64-bit prefetchable memory support

2015-02-01 Thread Bin Meng
Hi David, On Mon, Feb 2, 2015 at 11:30 AM, feng...@phytium.com.cn wrote: From: David Feng feng...@phytium.com.cn PCI specification allow prefetchable memory to be 32-bit or 64-bit. PCI express specification states that all memmory bars for prefetchable memory must be implemented as 64-bit.

Re: [U-Boot] [RFC PATCH 0/21] ARM: start to move SoC code into arch/arm/mach-*

2015-02-01 Thread Masahiro Yamada
Hi Albert, (cc Simon) On Sun, 1 Feb 2015 11:11:44 +0100 Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hello Simon, On Sat, 31 Jan 2015 20:20:06 -0700, Simon Glass s...@chromium.org wrote: Hi Albert, On 31 January 2015 at 20:02, Albert ARIBAUD albert.u.b...@aribaud.net wrote:

[U-Boot] [PATCH] odroid: update link to X2/U3 proprietary binaries

2015-02-01 Thread Tobias Jakobi
From f12af0fe43378f945de3eaa5acbca4e0a4d711b8 Mon Sep 17 00:00:00 2001 From: Tobias Jakobi tjak...@math.uni-bielefeld.de Date: Sun, 1 Feb 2015 19:47:50 +0100 Subject: odroid: update link to X2/U3 proprietary binaries The old link was dead. Link to the Github repository which is probably a more

[U-Boot] mpc8308rdb generic board support

2015-02-01 Thread Sinan Akman
Hi Ilya MPC8308RDB BOARD M: Ilya Yanok ya...@emcraft.com S: Maintained F: board/freescale/mpc8308rdb/ F: include/configs/MPC8308RDB.h F: configs/MPC8308RDB_defconfig I am not sure what is your more uptodate e-mail but I noticed generic board support is not added