[U-Boot] [PATCH 9/9] [v3] rsa: Use checksum algorithms from struct hash_algo

2014-12-29 Thread Ruchika Gupta
Sorry. Resending as message bounced on uboot mailing list. Hi Simon, -Original Message- From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass Sent: Wednesday, December 24, 2014 6:20 AM To: Gupta Ruchika-R66431 Cc: U-Boot Mailing List; Sun York-R58495 Subject: Re:

[U-Boot] [PATCH v2] arc: introduce mdbtrick target

2014-12-29 Thread Alexey Brodkin
MetaWare debugger (MDB) is still used as a primary tool for interaction with target via JTAG. Moreover some very advanced features are not yet implemented in GDB for ARC (and not sure if they will be implemnted sometime soon given complexity and rare need for those features for common user). So

[U-Boot] fw_readenv not working with uboot.env stored on FAT partition BAD CRC

2014-12-29 Thread Christian Erhardt
Hello, i'm using a Raspberry Pi with u-boot. I'm building a stock RPI Kernel 3.12.y with buildroot. The u-boot version is 2015.01-rc3. U-Boot is working fine and when i call saveenv a file uboot.env is written to the first FAT Partition on the SD Card. But when i try to access the boot

Re: [U-Boot] [PATCH v2] sunxi: gpio: Add support for gpio pins on the AXP209 pmic

2014-12-29 Thread Ian Campbell
On Sun, 2014-12-28 at 11:35 +0100, Hans de Goede wrote: Some boards use GPIO-s on the pmic, one example of this is the A13-OLinuXino board, which uses gpio0 of the axp209 for the lcd-power signal. This commit adds support for gpio pins on the AXP209 pmic, the sunxi_gpio.c changes are

Re: [U-Boot] [PATCH v2] sunxi: video: Improve monitor video-mode option handling

2014-12-29 Thread Ian Campbell
On Sun, 2014-12-28 at 11:58 +0100, Hans de Goede wrote: Add a sunxi_monitor enum and parse the monitor option string into this enum once, rather then doing strcmp-s on it in various places. This also adds checking for it being a valid value. This also adds new none and lcd values in

Re: [U-Boot] [PATCH 07/17] sunxi: video: Modify sunxi_lcdc_pll_set to work with both tcon0 and tcon1

2014-12-29 Thread Ian Campbell
On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: Modify sunxi_lcdc_pll_set to work with both tcon0 and tcon1, this is a preparation patch for adding lcd support. While at it also swap the divider search order, searching from low to high, as the comment above the code says we should

Re: [U-Boot] [PATCH 08/17] sunxi: video: Move sunxi_drc_init

2014-12-29 Thread Ian Campbell
On Thu, 2014-12-25 at 11:22 +0100, Hans de Goede wrote: Hi, On 25-12-14 10:08, Chen-Yu Tsai wrote: On Thu, Dec 25, 2014 at 3:06 AM, Hans de Goede hdego...@redhat.com wrote: Move sunxi_drc_init to directly above sunxi_engines_init, to avoid unnecessary Unfinished commit message?

Re: [U-Boot] [PATCH 09/17] sunxi: video: Add lcd output support

2014-12-29 Thread Ian Campbell
On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: +static void sunxi_lcdc_panel_enable(void) +{ + int pin; + + /* + * Start with backlight disabled to avoid the screen flashing to + * white while the lcd inits. + */ + pin =

Re: [U-Boot] [PATCH 10/17] sunxi: video: Add suppport SoCs without HDMI, e.g. the A13 and A23

2014-12-29 Thread Ian Campbell
On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: You've got three p's in suppport in the subject. Some SoCs, specifically the A13 (sun5i variant) and the A23 (sun8i) only have lcd output support. Signed-off-by: Hans de Goede hdego...@redhat.com --- board/sunxi/Kconfig |

Re: [U-Boot] [PATCH 11/17] sunxi: video: Add support for VGA via external DACs connected to the LCD pins

2014-12-29 Thread Ian Campbell
On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: Add support for external DACs connected to the parallel LCD interface driving a VGA connector, such as found on the Olimex A13 boards. Signed-off-by: Hans de Goede hdego...@redhat.com Acked-by: Ian Campbell i...@hellion.org.uk ---

Re: [U-Boot] [PATCH 12/17] sunxi: sunxi-common.h: Reduce bootm_size to take the framebuffer into account

2014-12-29 Thread Ian Campbell
On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: Before video output support can be enabled on the A13-OLinuXinoM, bootm_size must first be reduced to take into account that the framebuffer is shaved of the top of the DRAM. For other boards this is not an issue since bootm was set to

Re: [U-Boot] [PATCH 13/17] sunxi: A13-OLinuXino defconfigs: Enable VGA output, add lcd-mode for 7 LCD

2014-12-29 Thread Ian Campbell
On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: Enable VGA output on the A13-OLinuXino and A13-OLinuXinoM now that we've support for it. Also add LCD timing and gpio info for the Olimex 7 LCD module. We can safely put this in the default config on this boards, since by default we

Re: [U-Boot] [PATCH 14/17] sunxi: Add 2 defconfigs for using the Olimex 7 lcd with olinuxino boards

2014-12-29 Thread Ian Campbell
On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: Add defconfigs for using the Olimex 7 lcd with the A10s-OLinuXino-M and the A20-OLinuXino_MICRO boards. Note this cannot be added to the regular defconfigs, like with the A13 boards, because the video code will automatically fallback to

Re: [U-Boot] [PATCH 15/17] sunxi: Ippo_q8h defconfigs: Enable the LCD panel found on these tablets.

2014-12-29 Thread Ian Campbell
On Fri, 2014-12-26 at 14:44 +0800, Chen-Yu Tsai wrote: So if I'm not mistaken for the Ippo_q8h_v5 the timings should be: CONFIG_VIDEO_LCD_MODE=x:800,y:480,depth:18,pclk_khz:33000,le:87,ri:168,up:31,lo:13,hs:1,vs:1,sync:0,vmode:0 The new values look better. Thanks. I've not seen a v2 of

Re: [U-Boot] [PATCH 16/17] sunxi: video: Remove sunxi_display.enabled variable

2014-12-29 Thread Ian Campbell
On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: Having both a sunxi_display.enabled variable and sunxi_display.monitor == sunxi_monitor_none duplicates state, use sunxi_display.monitor = sunxi_monitor_none when ever we do not have a display. Signed-off-by: Hans de Goede

Re: [U-Boot] [PATCH 17/17] sunxi: video: Use sunxi_lcdc_get_clk_delay to calculate tcon1 delay

2014-12-29 Thread Ian Campbell
On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: Use sunxi_lcdc_get_clk_delay to calculate tcon1 delay instead of hardcoding it to 30. We will still end up using 30 for most modes, but for e.g. 800x600 this makes a (small) difference. Signed-off-by: Hans de Goede hdego...@redhat.com

Re: [U-Boot] [PATCH 1/2] sunxi: video: Add a hpd_delay parameter to configure hpd delay

2014-12-29 Thread Ian Campbell
On Sun, 2014-12-28 at 17:08 +0100, Hans de Goede wrote: In some extreme cases it may be necessary to wait 1.5 seconds or more for a hpd signal to show up (and be able to read edid info), but we do not want to penalize all headless boots with an extra second boot delay, so add a hpd_delay

Re: [U-Boot] [PATCH 2/2] sunxi: clock_sun6i: Remove magic m and k params from clock_set_pll5

2014-12-29 Thread Ian Campbell
On Sun, 2014-12-28 at 17:08 +0100, Hans de Goede wrote: Let clock_set_pll5 pick the optimal m and k values itself based on the requested rate, rather then passing them in as magic constants. Suggested-by: Siarhei Siamashka siarhei.siamas...@gmail.com Signed-off-by: Hans de Goede

Re: [U-Boot] coreboot uboot qemu x86

2014-12-29 Thread Simon Glass
Hi, On 28 December 2014 at 21:38, Ajoy Das dasajo...@gmail.com wrote: Hi Need Help I want to run U-BOOT as coreboot payload on QEMU platform I am on uboot-x86 git Compiled U-BOOT with make coreboot-x86_defconfig and make all Running qemu with qemu-system-i386 -bios

Re: [U-Boot] [PATCH 1/2] sun7i: Add support for taking CPUs offline via PSCI

2014-12-29 Thread Ian Campbell
On Mon, 2014-12-15 at 12:37 +0100, Jan Kiszka wrote: + movwr8, #(GICC_BASE 0x) + movtr8, #(GICC_BASE 16) + ldr r9, [r8, #GICC_IAR] + movwr10, #0x3ff + movtr10, #0 + cmp r9, r10 + beq out + movwr10, #0x3fe + cmp

Re: [U-Boot] [PATCH 2/2] sun7i: Add PSCI v0.2 support

2014-12-29 Thread Ian Campbell
On Mon, 2014-12-15 at 12:37 +0100, Jan Kiszka wrote: This extends the PSCI support for the A20 to a dual v0.2 and v0.1 interface. Recent OSes will prefer v0.2, olders will still find the original interface, just at v0.2 service IDs. In addition to the existing services, v0.2 requires us to

Re: [U-Boot] [PATCH 1/4] sunxi: video: Fix tcon0 hsync / vsync setting

2014-12-29 Thread Ian Campbell
On Sat, 2014-12-27 at 16:53 +0100, Hans de Goede wrote: It turns out that the problems I was seeing were due to a bad powersupply, so enable proper negative hsync / vsync support. Also adjust various defconfigs to keep the hsync and vsync for the lcd panels positive, changing sync:0 into

Re: [U-Boot] [PATCH 2/4] vexpress64: switch to generic board

2014-12-29 Thread Simon Glass
Hi Linus. On 23 December 2014 at 18:02, Linus Walleij linus.wall...@linaro.org wrote: The few Versatile Express ARMv8 platforms we have may just as well be switched to generic board from the beginning. Tested on the ARM foundation model and the in progress support for the ARMv8 Juno board.

Re: [U-Boot] [PATCH 2/4] sunxi: video: Add support for using PORTD hsync/vsync pins with tcon1

2014-12-29 Thread Ian Campbell
On Sat, 2014-12-27 at 16:53 +0100, Hans de Goede wrote: Add support for using PORTD hsync/vsync pins with tcon1, this is a preparation patch for adding native VGA support. Signed-off-by: Hans de Goede hdego...@redhat.com Acked-by: Ian Campbell i...@hellion.org.uk

Re: [U-Boot] [PATCH v2] sunxi: video: Fallback from HDMI to VGA on boards with VGA

2014-12-29 Thread Ian Campbell
On Sat, 2014-12-27 at 18:02 +0100, Hans de Goede wrote: If a board has no LCD, but does have VGA fallback to VGA when no HDMI cable is connected (unless hpd=0). Signed-off-by: Hans de Goede hdego...@redhat.com Acked-by: Ian Campbell i...@hellion.org.uk

Re: [U-Boot] [PATCH 4/4] sunxi: video: Add VGA output support

2014-12-29 Thread Ian Campbell
On Sat, 2014-12-27 at 16:53 +0100, Hans de Goede wrote: diff --git a/arch/arm/include/asm/arch-sunxi/display.h b/arch/arm/include/asm/arch-sunxi/display.h index 908c5d9..8c25ad4 100644 --- a/arch/arm/include/asm/arch-sunxi/display.h +++ b/arch/arm/include/asm/arch-sunxi/display.h @@ -158,6

Re: [U-Boot] coreboot uboot qemu x86

2014-12-29 Thread Ajoy Das
Hi Simon Thanks for your reply I have added u-boot ELF as the coreboot payload u-boot: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), statically linked, not stripped. Got this link but its a year old. http://lists.denx.de/pipermail/u-boot/2013-July/159140.html Thanks Ajoy On

[U-Boot] Issue with uboot on imx6slevk

2014-12-29 Thread Arthur Lambert
Hi, I would like to use Buildroot to generate a linux for imx6 sololitevk. I found an existing configuration done for this board in the master branch of Buildroot. To generate my image : make freescale_imx6sololiteevk_defconfig make all Then I used this script in

[U-Boot] [PATCH] arm: fix exception vectors

2014-12-29 Thread Luca Ellero
After relocation, exception vectors still point to the old code (not relocated). This patch fixes them. Signed-off-by: Luca Ellero luca.ell...@brickedbrain.com --- arch/arm/lib/relocate.S | 15 +++ 1 file changed, 15 insertions(+) diff --git a/arch/arm/lib/relocate.S

Re: [U-Boot] Issue with uboot on imx6slevk

2014-12-29 Thread Fabio Estevam
On Mon, Dec 29, 2014 at 11:55 AM, Arthur Lambert lambertarthu...@gmail.com wrote: Hi, I would like to use Buildroot to generate a linux for imx6 sololitevk. I found an existing configuration done for this board in the master branch of Buildroot. It seems that posting to the buildroot list

Re: [U-Boot] [PATCH 15/17] sunxi: Ippo_q8h defconfigs: Enable the LCD panel found on these tablets.

2014-12-29 Thread Chen-Yu Tsai
On Mon, Dec 29, 2014 at 9:57 PM, Ian Campbell i...@hellion.org.uk wrote: On Fri, 2014-12-26 at 14:44 +0800, Chen-Yu Tsai wrote: So if I'm not mistaken for the Ippo_q8h_v5 the timings should be:

Re: [U-Boot] coreboot uboot qemu x86

2014-12-29 Thread Simon Glass
Hi Ajoy, On 29 December 2014 at 07:34, Ajoy Das dasajo...@gmail.com wrote: Hi Simon Thanks for your reply I have added u-boot ELF as the coreboot payload u-boot: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), statically linked, not stripped. Got this link but its a year

Re: [U-Boot] [PATCH v2 5/7] serial: ns16550: Support ns16550 compatible pci uart devices

2014-12-29 Thread Simon Glass
Hi Bin, On 28 December 2014 at 23:15, Bin Meng bmeng...@gmail.com wrote: Hi Simon, On Sun, Dec 28, 2014 at 9:55 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 27 December 2014 at 05:10, Bin Meng bmeng...@gmail.com wrote: There are many pci uart devices which are ns16550 compatible. We

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

2014-12-29 Thread Simon Glass
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: +void board_init_f(ulong dummy) +{ [...] + /* Clear the BSS. */ + memset(__bss_start, 0, __bss_end - __bss_start); + + board_init_r(NULL, 0);

Re: [U-Boot] L2 cache and LCD on sunxi

2014-12-29 Thread Simon Glass
Hi Hans, On 24 December 2014 at 09:47, Hans de Goede hdego...@redhat.com wrote: Hi, On 23-12-14 05:36, Simon Glass wrote: Hi Hans, On 22 December 2014 at 09:45, Hans de Goede hdego...@redhat.com wrote: Hi, On 21-12-14 19:52, Simon Glass wrote: Hi, I ran up a banana PI and noticed

Re: [U-Boot] [PATCH 1/9] arm: Add warnings about using gdata

2014-12-29 Thread Simon Glass
Hi Igor, On 23 December 2014 at 23:53, Igor Grinberg grinb...@compulab.co.il wrote: Hi Simon, On 12/23/14 21:04, Simon Glass wrote: We need to get rid of this SPL-specific setting of the global_data pointer. It is already set up in start.S immediately before board_init_f() is called, and

Re: [U-Boot] [PATCH v1] x86: ahci: Make sure interface is not busy after enabling the port

2014-12-29 Thread Simon Glass
Hi Bin, On 23 December 2014 at 18:42, Bin Meng bmeng...@gmail.com wrote: Hi Simon, On Wed, Dec 24, 2014 at 3:42 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 23 December 2014 at 01:01, Bin Meng bmeng...@gmail.com wrote: Each time U-Boot boots on Intel Crown Bay board, the displayed

Re: [U-Boot] [PATCH] da850evm: Use generic board and libfdt, fix size for SPI flash

2014-12-29 Thread Jagan Teki
On 22 December 2014 at 02:27, Peter Howard p...@northern-ridge.com.au wrote: On Fri, 2014-12-19 at 12:14 +0530, Jagan Teki wrote: On 19 December 2014 at 02:54, Peter Howard p...@northern-ridge.com.au wrote: On Thu, 2014-12-18 at 12:33 +0530, Jagan Teki wrote: On 17 December 2014 at 06:44,

[U-Boot] Pull request: u-boot-spi/master

2014-12-29 Thread Jagannadha Sutradharudu Teki
Hi Tom, Please pull this PR. thanks! Jagan. The following changes since commit e3bf81b1e841ecabe7c8b3d48621256db8b8623e: Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2014-12-16 15:20:02 -0500) are available in the git repository at: git://git.denx.de/u-boot-spi.git master

[U-Boot] [PATCH] mx6sxsabresd: Remove unneeded board_late_init()

2014-12-29 Thread Fabio Estevam
From: Fabio Estevam fabio.este...@freescale.com Since commit 1f98e31bc0b2c37a (imx: mx6sxsabresd: Use the pfuze common init function) board_late_init() became empty, so we can safely remove this unneeded function. Signed-off-by: Fabio Estevam fabio.este...@freescale.com ---

Re: [U-Boot] [PATCH v2 1/2] arm:mx6sx add QSPI support

2014-12-29 Thread Fabio Estevam
Hi Jagan, On Fri, Oct 10, 2014 at 6:58 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Jagan said he would review both patches. Once he gives his Acked-by, the patches will go in -- but note that the series is an addition, not a fix, and came in after the 2014.10 merge window, so it'll go

Re: [U-Boot] [PATCH v2 1/2] arm:mx6sx add QSPI support

2014-12-29 Thread Jagan Teki
On 29 December 2014 at 23:58, Fabio Estevam feste...@gmail.com wrote: Hi Jagan, On Fri, Oct 10, 2014 at 6:58 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Jagan said he would review both patches. Once he gives his Acked-by, the patches will go in -- but note that the series is an

Re: [U-Boot] L2 cache and LCD on sunxi

2014-12-29 Thread Hans de Goede
Hi, On 29-12-14 17:23, Simon Glass wrote: Hi Hans, On 24 December 2014 at 09:47, Hans de Goede hdego...@redhat.com wrote: Hi, On 23-12-14 05:36, Simon Glass wrote: Hi Hans, On 22 December 2014 at 09:45, Hans de Goede hdego...@redhat.com wrote: Hi, On 21-12-14 19:52, Simon Glass wrote:

Re: [U-Boot] [PATCH 11/17] sunxi: video: Add support for VGA via external DACs connected to the LCD pins

2014-12-29 Thread Hans de Goede
Hi, On 29-12-14 14:51, Ian Campbell wrote: On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: Add support for external DACs connected to the parallel LCD interface driving a VGA connector, such as found on the Olimex A13 boards. Signed-off-by: Hans de Goede hdego...@redhat.com

Re: [U-Boot] [PATCH 14/17] sunxi: Add 2 defconfigs for using the Olimex 7 lcd with olinuxino boards

2014-12-29 Thread Hans de Goede
Hi, On 29-12-14 14:55, Ian Campbell wrote: On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: Add defconfigs for using the Olimex 7 lcd with the A10s-OLinuXino-M and the A20-OLinuXino_MICRO boards. Note this cannot be added to the regular defconfigs, like with the A13 boards, because the

Re: [U-Boot] [PATCH 15/17] sunxi: Ippo_q8h defconfigs: Enable the LCD panel found on these tablets.

2014-12-29 Thread Hans de Goede
Hi, On 29-12-14 16:56, Chen-Yu Tsai wrote: On Mon, Dec 29, 2014 at 9:57 PM, Ian Campbell i...@hellion.org.uk wrote: On Fri, 2014-12-26 at 14:44 +0800, Chen-Yu Tsai wrote: So if I'm not mistaken for the Ippo_q8h_v5 the timings should be:

Re: [U-Boot] L2 cache and LCD on sunxi

2014-12-29 Thread Simon Glass
Hi Hans, On 29 December 2014 at 12:17, Hans de Goede hdego...@redhat.com wrote: Hi, On 29-12-14 17:23, Simon Glass wrote: Hi Hans, On 24 December 2014 at 09:47, Hans de Goede hdego...@redhat.com wrote: Hi, On 23-12-14 05:36, Simon Glass wrote: Hi Hans, On 22 December 2014 at

Re: [U-Boot] [PATCH 4/4] sunxi: video: Add VGA output support

2014-12-29 Thread Hans de Goede
Hi, On 29-12-14 15:18, Ian Campbell wrote: On Sat, 2014-12-27 at 16:53 +0100, Hans de Goede wrote: diff --git a/arch/arm/include/asm/arch-sunxi/display.h b/arch/arm/include/asm/arch-sunxi/display.h index 908c5d9..8c25ad4 100644 --- a/arch/arm/include/asm/arch-sunxi/display.h +++

Re: [U-Boot] [PATCH 1/5] x86: Remove include directory in arch/x86/dts

2014-12-29 Thread Simon Glass
Hi Bin, On 28 December 2014 at 23:04, Bin Meng bmeng...@gmail.com wrote: Hi Simon, On Sun, Dec 28, 2014 at 9:02 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 23 December 2014 at 22:06, Bin Meng bmeng...@gmail.com wrote: The include directory in arch/x86/dts is not used, so remove it.

Re: [U-Boot] [PATCH v4 18/23] ARM: Implement non-cached memory support

2014-12-29 Thread Simon Glass
Hi Albert, On 19 December 2014 at 00:02, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hello Tom, On Thu, 18 Dec 2014 21:33:09 +, Tom Warren twar...@nvidia.com wrote: Albert, Please pull u-boot-tegra.git/master into ARM master. ./MAKEALL -s tegra is clean. I assume this is

[U-Boot] [PATCH] mx6slevk: Remove get_board_rev()

2014-12-29 Thread Fabio Estevam
From: Fabio Estevam fabio.este...@freescale.com get_board_rev() just returns the cpu revision, which does not make it really useful for distinguishing between revisions of the board. Let's get rid of get_board_rev() as it is not being used with its correct meaning. Signed-off-by: Fabio

Re: [U-Boot] [PATCH v2 6/7] x86: Use ePAPR defined properties for x86-uart

2014-12-29 Thread Simon Glass
Hi Bin, On 29 December 2014 at 00:45, Bin Meng bmeng...@gmail.com wrote: Hi Simon, On Sun, Dec 28, 2014 at 9:55 AM, Simon Glass s...@chromium.org wrote: On 27 December 2014 at 05:10, Bin Meng bmeng...@gmail.com wrote: Use ePAPR defined properties for x86-uart: clock-frequency and

Re: [U-Boot] Issue with uboot on imx6slevk

2014-12-29 Thread Arthur Lambert
Hi Fabio, Ok I will test it tomorrow. Thanks for the reply. I did not know that I can use the main uboot for my build instead of the fork from Freescale for mx6 Arthur. 2014-12-29 21:07 GMT+01:00 Fabio Estevam feste...@gmail.com: Arthur, On Mon, Dec 29, 2014 at 1:39 PM, Fabio Estevam

Re: [U-Boot] Issue with uboot on imx6slevk

2014-12-29 Thread Fabio Estevam
Arthur, On Mon, Dec 29, 2014 at 1:39 PM, Fabio Estevam feste...@gmail.com wrote: Please use U-boot 2014.10 or 2015.01-rc3 instead. If you have issues, then you can post here again ;-) By the way, just tested top of tree U-boot on a mx6sl evk and I didn't see any issues on booting the kernel.

Re: [U-Boot] Issue with uboot on imx6slevk

2014-12-29 Thread Fabio Estevam
Hi Arthur, On Mon, Dec 29, 2014 at 6:12 PM, Arthur Lambert lambertarthu...@gmail.com wrote: Hi Fabio, Ok I will test it tomorrow. Thanks for the reply. I did not know that I can use the main uboot for my build instead of the fork from Freescale for mx6 I think I understand the issue you

Re: [U-Boot] [PATCH 3/9] [v3] DM: crypto/rsa: Add rsa Modular Exponentiation DM driver

2014-12-29 Thread Simon Glass
Hi Ruchika, On 28 December 2014 at 20:53, Ruchika Gupta ruchika.gu...@freescale.com wrote: Re-sending as delivery to uboot mailing list failed last time... Hi Simon, Thanks for the review comments. -Original Message- From: s...@google.com [mailto:s...@google.com] On Behalf Of

Re: [U-Boot] [PATCH 5/9] [v3] lib/rsa: Modify rsa to use DM driver if available

2014-12-29 Thread Simon Glass
Hi Ruchika, On 28 December 2014 at 23:58, Ruchika Gupta ruchika.gu...@freescale.com wrote: Resending as the message bounced from u-boot mailing list. Hi Simon, -Original Message- From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass Sent: Wednesday, December 24,

Re: [U-Boot] [PATCH 7/9] [v3] lib/rsa: Add Kconfig option for HW accelerated RSA

2014-12-29 Thread Simon Glass
Hi Ruchika, On 29 December 2014 at 00:05, Ruchika Gupta ruchika.gu...@freescale.com wrote: Hi Simon, -Original Message- From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass Sent: Wednesday, December 24, 2014 6:20 AM To: Gupta Ruchika-R66431 Cc: U-Boot Mailing

Re: [U-Boot] FW: [PATCH 5/9] [v3] lib/rsa: Modify rsa to use DM driver if available

2014-12-29 Thread Simon Glass
Hi Ruchika, On 24 December 2014 at 03:29, Ruchika Gupta ruchika.gu...@freescale.com wrote: My Patches to the mailing list using outlook client are failing. So forwarding the message. Any pointers on how to correct the issue will be highly appreciated. I don't use Microsoft Outlook but

Re: [U-Boot] [PATCH 5/9] [v3] lib/rsa: Modify rsa to use DM driver if available

2014-12-29 Thread Simon Glass
Hi Ruchika, On 24 December 2014 at 03:28, Ruchika Gupta ruchika.gu...@freescale.com wrote: Hi Simon, -Original Message- From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass Sent: Wednesday, December 24, 2014 6:19 AM To: Gupta Ruchika-R66431 Cc: U-Boot Mailing

Re: [U-Boot] [PATCH 9/9] [v3] rsa: Use checksum algorithms from struct hash_algo

2014-12-29 Thread Simon Glass
Hi Ruchika, On 29 December 2014 at 00:59, Ruchika Gupta ruchika.gu...@freescale.com wrote: Hi Simon, -Original Message- From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass Sent: Wednesday, December 24, 2014 6:20 AM To: Gupta Ruchika-R66431 Cc: U-Boot Mailing

Re: [U-Boot] [PATCH 8/9] [v3] hash: Add function to find hash_algo struct with progressive hash

2014-12-29 Thread Simon Glass
+Wolfgang Hi Ruchika, On 29 December 2014 at 00:07, Ruchika Gupta ruchika.gu...@freescale.com wrote: Hi Simon, -Original Message- From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass Sent: Wednesday, December 24, 2014 6:20 AM To: Gupta Ruchika-R66431 Cc: U-Boot

Re: [U-Boot] [PATCH] initcall: add explicit hint if initcall was relocated

2014-12-29 Thread Simon Glass
On 27 December 2014 at 15:35, Alexey Brodkin alexey.brod...@synopsys.com wrote: Commit initcall: Improve debugging support makes sense and indeed simplifies process of matching initcalls executed with static disassembly. Until you are debugging relocation functionality. Existign output may

[U-Boot] [PATCH v2] Exynos: Move down common USB configuration

2014-12-29 Thread Sjoerd Simons
USB is a pretty common feature on exynos 5 board, so it seems sensible to configure it directly from exynos5-common. As a side-effect this makes USB available from u-boot on exynos 5420 based boards. While there enable support for common USB ethernet cards to make it more likely the default

Re: [U-Boot] [PATCH 3/4] vexpress64: get rid of CONFIG_SYS_EXTRA_OPTIONS

2014-12-29 Thread Tom Rini
On Wed, Dec 24, 2014 at 02:02:59AM +0100, Linus Walleij wrote: The Versatile Express ARMv8 semihosted FVP platform is still using the legacy CONFIG_SYS_EXTRA_OPTIONS method to configure some compile-time flags. Get rid of this and create a Kconfig entry for the FVP model, and a selectable

Re: [U-Boot] [PATCH 4/4] vexpress64: support the Juno Development Platform

2014-12-29 Thread Tom Rini
On Wed, Dec 24, 2014 at 02:03:16AM +0100, Linus Walleij wrote: The Juno Development Platform is a physical Versatile Express device with some differences from the emulated semihosting models. The main difference is that the system is split in a SoC and an FPGA where the SoC hosts the serial

Re: [U-Boot] coreboot uboot qemu x86

2014-12-29 Thread Ajoy Das
Hi Simon I executed the commands mentioned above. But getting LZMA decode error on coreboot coreboot.rom: 256 kB, bootblocksize 944, romsize 262144, offset 0x0 alignment: 64 bytes, architecture: x86 Name Offset Type Size cmos_layout.bin0x0

Re: [U-Boot] [OpenQuestion] stdint.h and inttypes.h in U-Boot ?

2014-12-29 Thread Simon Glass
-Gabe, who no longer works in this group (Also we have 4 threads going so I'm only going to reply to this one) Hi Masahiro, On 24 December 2014 at 01:41, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hi Simon, On Mon, 22 Dec 2014 21:58:49 -0700 Simon Glass s...@chromium.org wrote:

Re: [U-Boot] [RFC PATCH 1/2] cmd_i2c: change variable type for 10bit addressing support

2014-12-29 Thread Simon Glass
Hi, On 19 December 2014 at 14:23, Simon Glass s...@chromium.org wrote: On 19 December 2014 at 11:34, Masahiro Yamada yamad...@jp.panasonic.com wrote: To store 10bit chip address, the variable type should not be uchar, but uint. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc:

Re: [U-Boot] [RFC PATCH 2/2] dm: i2c: support 10bit addressing in I2C uclass layer

2014-12-29 Thread Simon Glass
Hi Masahiro, On 21 December 2014 at 11:53, Simon Glass s...@chromium.org wrote: Hi Masahiro, On 20 December 2014 at 00:25, Masahiro YAMADA yamad...@jp.panasonic.com wrote: Hi Simon, 2014-12-20 6:34 GMT+09:00 Simon Glass s...@chromium.org: Hi Masahiro, On 19 December 2014 at 11:34,

Re: [U-Boot] [PATCH] dm: README: recommend u-boot.dtb to try driver-model on sandbox

2014-12-29 Thread Simon Glass
On 22 December 2014 at 12:57, Simon Glass s...@chromium.org wrote: Hi Masahiro, On 21 December 2014 at 19:49, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hi Simon, On Fri, 19 Dec 2014 13:48:16 -0700 Simon Glass s...@chromium.org wrote: On 19 December 2014 at 06:39, Masahiro

Re: [U-Boot] [PATCH] i2c_eeprom: include linux/err.h to fix build error

2014-12-29 Thread Simon Glass
On 18 December 2014 at 06:18, Simon Glass s...@chromium.org wrote: On 18 December 2014 at 04:00, Masahiro Yamada yamad...@jp.panasonic.com wrote: drivers/misc/i2c_eeprom.c fails to build unless CONFIG_FIT_SIGNATURE is defined. CC drivers/misc/i2c_eeprom.o drivers/misc/i2c_eeprom.c:

Re: [U-Boot] [PATCH] cros-ec-keyboard: Synchronize DT binding from linux

2014-12-29 Thread Simon Glass
On 17 December 2014 at 20:41, Simon Glass s...@chromium.org wrote: Hi, On 16 December 2014 at 01:03, Sjoerd Simons sjoerd.sim...@collabora.co.uk wrote: On Mon, 2014-12-15 at 23:34 +0100, Pavel Machek wrote: On Thu 2014-11-27 16:34:08, Sjoerd Simons wrote: The ChromeOS EC keyboard is used

[U-Boot] Please pull u-boot-x86.git branch misc

2014-12-29 Thread Simon Glass
Hi Tom, Here are a few misc fixes and updates. Note that the branch is 'misc' (there is also a 'master' branch pull out there). The following changes since commit d8bec60c1b0de7770f9b56ad092ab9be801d99af: ARM: UniPhier: enable CONFIG_CMD_DM (2014-12-18 23:34:30 +0900) are available in the

Re: [U-Boot] coreboot uboot qemu x86

2014-12-29 Thread Simon Glass
Hi Ajoy, On Mon, Dec 29, 2014 at 9:28 PM, Simon Glass s...@chromium.org wrote: Hi Ajoy, On Mon, Dec 29, 2014 at 7:36 PM, Simon Glass s...@chromium.org wrote: Hi, On 28 December 2014 at 21:38, Ajoy Das dasajo...@gmail.com wrote: Hi Need Help I want to run U-BOOT as

[U-Boot] [PATCH 02/10] x86: Add checksum implementation

2014-12-29 Thread Simon Glass
Add a checksum implementation that can be used with CMOS RAM. Signed-off-by: Simon Glass s...@chromium.org --- arch/x86/cpu/Makefile | 1 + arch/x86/cpu/ip_checksum.c | 61 ++ arch/x86/include/asm/ip_checksum.h | 16 ++ 3 files

[U-Boot] [PATCH 06/10] x86: dts: Add SPI flash MRC details for chromebook_link

2014-12-29 Thread Simon Glass
Correct the SPI flash compatible string, add an alias and specify the position of the MRC cache, used to store SDRAM training settings for the Memory Reference Code. Signed-off-by: Simon Glass s...@chromium.org --- arch/x86/dts/link.dts | 15 ++- 1 file changed, 14 insertions(+), 1

[U-Boot] [PATCH 08/10] x86: config: Enable hook for saving MRC configuration

2014-12-29 Thread Simon Glass
Add a hook to ensure that this information is saved. Signed-off-by: Simon Glass s...@chromium.org --- include/configs/chromebook_link.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/chromebook_link.h b/include/configs/chromebook_link.h index 8930210..22cb134 100644 ---

[U-Boot] [PATCH 04/10] x86: spi: Add device tree support

2014-12-29 Thread Simon Glass
As a temporary measure before the ICH driver moves over to driver model, add device tree support to the driver. Signed-off-by: Simon Glass s...@chromium.org --- drivers/spi/ich.c| 7 +++ include/configs/x86-common.h | 1 + 2 files changed, 8 insertions(+) diff --git

[U-Boot] [PATCH 01/10] x86: dts: Add compatible string for Intel ICH9 SPI controller

2014-12-29 Thread Simon Glass
Add this to the enum so that we can use the various fdtdec functions. A later commit will move this driver to driver model. Signed-off-by: Simon Glass s...@chromium.org --- include/fdtdec.h | 1 + lib/fdtdec.c | 1 + 2 files changed, 2 insertions(+) diff --git a/include/fdtdec.h

[U-Boot] [PATCH 05/10] Allow architecture-specific memory reservation

2014-12-29 Thread Simon Glass
All memory to be reserved for use after relocation by adding a new call to perform this reservation. Signed-off-by: Simon Glass s...@chromium.org --- common/board_f.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/common/board_f.c b/common/board_f.c index 1b65575..ae5d425 100644 ---

[U-Boot] [PATCH 03/10] x86: Add helpers to read/write CMOS RAM

2014-12-29 Thread Simon Glass
On x86 we use CMOS RAM to read and write some settings. Add basic support for this. Signed-off-by: Simon Glass s...@chromium.org --- arch/x86/include/asm/cmos.h | 181 1 file changed, 181 insertions(+) create mode 100644 arch/x86/include/asm/cmos.h

[U-Boot] [PATCH 09/10] x86: ivybridge: Drop the Kconfig MRC cache information

2014-12-29 Thread Simon Glass
This is now stored in the device tree. Signed-off-by: Simon Glass s...@chromium.org --- arch/x86/cpu/ivybridge/Kconfig | 28 1 file changed, 28 deletions(-) diff --git a/arch/x86/cpu/ivybridge/Kconfig b/arch/x86/cpu/ivybridge/Kconfig index afca957..e4595be 100644

[U-Boot] [PATCH 07/10] x86: Implement a cache for Memory Reference Code parameters

2014-12-29 Thread Simon Glass
The memory reference code takes a very long time to 'train' its SDRAM interface, around half a second. To avoid this delay on every boot we can store the parameters from the last training sessions to speed up the next. Add an implementation of this, storing the training data in CMOS RAM and SPI

[U-Boot] [PATCH 10/10] x86: config: chromebook_link: Enable environment

2014-12-29 Thread Simon Glass
Enable an environment area. Signed-off-by: Simon Glass s...@chromium.org --- include/configs/chromebook_link.h | 5 + 1 file changed, 5 insertions(+) diff --git a/include/configs/chromebook_link.h b/include/configs/chromebook_link.h index 22cb134..9b70435 100644 ---

Re: [U-Boot] [PATCH 1/5] x86: Remove include directory in arch/x86/dts

2014-12-29 Thread Bin Meng
Hi Simon, On Tue, Dec 30, 2014 at 3:39 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 28 December 2014 at 23:04, Bin Meng bmeng...@gmail.com wrote: Hi Simon, On Sun, Dec 28, 2014 at 9:02 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 23 December 2014 at 22:06, Bin Meng

Re: [U-Boot] [PATCH v1] x86: ahci: Make sure interface is not busy after enabling the port

2014-12-29 Thread Bin Meng
Hi Simon, On Tue, Dec 30, 2014 at 12:33 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 23 December 2014 at 18:42, Bin Meng bmeng...@gmail.com wrote: Hi Simon, On Wed, Dec 24, 2014 at 3:42 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 23 December 2014 at 01:01, Bin Meng

Re: [U-Boot] [PATCH 11/17] sunxi: video: Add support for VGA via external DACs connected to the LCD pins

2014-12-29 Thread Chen-Yu Tsai
Hi Hans, On Tue, Dec 30, 2014 at 3:25 AM, Hans de Goede hdego...@redhat.com wrote: Hi, On 29-12-14 14:51, Ian Campbell wrote: On Wed, 2014-12-24 at 20:06 +0100, Hans de Goede wrote: Add support for external DACs connected to the parallel LCD interface driving a VGA connector, such as

Re: [U-Boot] [PULL] u-boot-usb/master

2014-12-29 Thread Tom Rini
On Thu, Dec 18, 2014 at 12:49:47PM +0100, Marek Vasut wrote: Hi, please find a couple of more fixes for this release. The following changes since commit b9206e61f3d87535ac4f4b0b858e674fd1edfeaf: Merge git://git.denx.de/u-boot-x86 (2014-12-15 17:13:47 -0500) are available in the git

Re: [U-Boot] Please pull u-boot-x86.git branch misc

2014-12-29 Thread Tom Rini
On Mon, Dec 29, 2014 at 03:07:41PM -0700, Simon Glass wrote: Hi Tom, Here are a few misc fixes and updates. Note that the branch is 'misc' (there is also a 'master' branch pull out there). The following changes since commit d8bec60c1b0de7770f9b56ad092ab9be801d99af: ARM: UniPhier:

Re: [U-Boot] Pull request: u-boot-sh/rmolbile

2014-12-29 Thread Tom Rini
On Fri, Dec 26, 2014 at 10:21:39AM +0900, Nobuhiro Iwamatsu wrote: Dear Tom Rini. Please pull u-boot-sh rmobile branch. The following changes since commit d8bec60c1b0de7770f9b56ad092ab9be801d99af: ARM: UniPhier: enable CONFIG_CMD_DM (2014-12-18 23:34:30 +0900) are available in the

Re: [U-Boot] Please pull u-boot-x86.git

2014-12-29 Thread Tom Rini
On Thu, Dec 18, 2014 at 05:29:39PM -0700, Simon Glass wrote: Hi Tom, Here is the last of the Atom changes - we now have good support for one Atom variant (with a path to adding to it) and basic support for ivybridge. A good start. The following changes since commit

Re: [U-Boot] [U-Boot,v3] bcm281xx: add support for USB OTG clock

2014-12-29 Thread Tom Rini
On Tue, Dec 09, 2014 at 11:40:11AM -0800, Steve Rae wrote: enable this clock with the following: clk_usb_otg_enable((void *)HSOTG_BASE_ADDR) Signed-off-by: Steve Rae s...@broadcom.com Reviewed-by: Felipe Balbi ba...@ti.com Applied to u-boot/master, thanks! -- Tom signature.asc

Re: [U-Boot] common/board_f.c: fix compile error when tracing disabled

2014-12-29 Thread Tom Rini
On Tue, Dec 09, 2014 at 03:03:58PM -0800, Kevin Hilman wrote: From: Kevin Hilman khil...@linaro.org When CONFIG_TRACE is disabled, linking fails with: common/built-in.o:(.data.init_sequence_f+0x8): undefined reference to `trace_early_init' To fix, wrap the call to trace_early_init()

Re: [U-Boot] ARM: rpi: only set usbethaddr on relevant systems

2014-12-29 Thread Tom Rini
On Fri, Dec 05, 2014 at 08:56:46PM -0700, Stephen Warren wrote: Model A and CM RPis don't have an on-board USB Ethernet device. Hence, there's no point setting $usbethaddr based on the device fuses. Use the model detection code to gate this. Note that the fuses are actually programmed even on

Re: [U-Boot] [U-Boot,2/3,v2] arm: semihosting: fix up compile bugs

2014-12-29 Thread Tom Rini
On Mon, Dec 15, 2014 at 11:05:56AM +0100, Linus Walleij wrote: There is currently a regression when using newer ARM64 compilers for semihosting: the way long types are inferred from context is no longer the same. The semihosting runtime uses long and size_t, so use this explicitly in the

Re: [U-Boot] [U-Boot, 1/3, v2] arm: semihosting: staticize internal functions

2014-12-29 Thread Tom Rini
On Mon, Dec 15, 2014 at 11:05:43AM +0100, Linus Walleij wrote: The semihosting code exposes internal file handle handling functions to read(), open(), close() and get the length of a certain file handle. However the code using it is only interested in either reading and entire named file

Re: [U-Boot] Fix hash verification

2014-12-29 Thread Tom Rini
On Fri, Dec 12, 2014 at 08:01:23PM +0200, Nikolay Dimitrov wrote: From: Nikolay Dimitrov picmas...@mail.bg Fix issue in parse_verify_sum() which swaps handling of env-var and *address. Move hash_command() argc check earlier. Cosmetic change on do_hash() variable declaration. Improved help

Re: [U-Boot] [U-Boot, 3/3, v2] arm: semihosting: get rid of forward declarations

2014-12-29 Thread Tom Rini
On Mon, Dec 15, 2014 at 11:06:05AM +0100, Linus Walleij wrote: By rearranging the functions in the semihosting code we can avoid forward-declaration of the internal static functions. This puts the stuff in a logical order: read/open/close/len and then higher-order functions follow at the end.

Re: [U-Boot] [U-Boot, 1/4] vexpress64: take over maintenance of the semi vexpress64

2014-12-29 Thread Tom Rini
On Wed, Dec 24, 2014 at 02:02:19AM +0100, Linus Walleij wrote: As agreed with Steve Rae I'm taking over maintenance of the semihosted, emulated FVP/foundation model Versatile Express 64 bit board variant. Signed-off-by: Linus Walleij linus.wall...@linaro.org Acked-by: Steve Rae

  1   2   >