Re: [U-Boot] [PATCH v2 3/7] ARM: add assembly routine to switch to non-secure state

2013-06-27 Thread Masahiro Yamada
Hi, Andre +.globl _nonsec_init +_nonsec_init: These two lines can be written: ENTRY(_nonsec_init) + mrc p15, 0, r0, c0, c0, 0 @ read MIDR + bfc r0, #20, #4 @ mask out variant + bfc r0, #0, #4 @ and revision Why

Re: [U-Boot] [PATCH v2 4/7] ARM: switch to non-secure state during bootm execution

2013-06-27 Thread Masahiro Yamada
Hi Andre. --- a/arch/arm/lib/Makefile +++ b/arch/arm/lib/Makefile @@ -60,6 +60,8 @@ COBJS-y += reset.o COBJS-y += cache.o COBJS-y += cache-cp15.o +COBJS-$(CONFIG_ARMV7_VIRT) += virt-v7.o + Judging from the file name virt-v7.c, you are thinkig this file is specific to

Re: [U-Boot] [PATCH v2 5/7] ARM: add SMP support for non-secure switch

2013-06-27 Thread Masahiro Yamada
Hi Andre, The actual CPU kick is done by sending an inter-processor interrupt via the GIC to all CPU interfaces except the requesting processor. The secondary cores will then setup their respective GIC CPU interface. This issue might have been raised already, I think how to kick secondary

[U-Boot] [PATCH V2] p1020rdb-pd: platform support

2013-06-27 Thread Haijun . Zhang
From: Haijun.Zhang haijun.zh...@freescale.com Add new board p1020RDB-PD. P1020RDB-PD board was update from P1020RDB. DDR changed from DDR2 1G to DDR3 2G. NAND: 128 MiB Flash: 64 MiB Also change P1020RDB to P1020RDB-PC to distinguish from P1020RDB board. Signed-off-by: Jerry Huang

Re: [U-Boot] [PATCH v2 6/7] ARM: extend non-secure switch to also go into HYP mode

2013-06-27 Thread Masahiro Yamada
Hi Andre [RFC] I'd like to suggest to separate HYP-switching code from Non-secure switching. And define different macros, for example: CONFIG_ARMV7_NONSECURE : switch to nonsecure CONFIG_ARMV7_VIRT : switch to hypervisor Of cource, CONFIG_ARMV7_NONSECURE must be defined when using

Re: [U-Boot] [PATCH v3 1/2] console: usbkbd: Improve TFTP booting performance

2013-06-27 Thread Jim Lin
On Fri, 2013-06-28 at 02:20 +0800, Stephen Warren wrote: On 06/27/2013 03:45 AM, Jim Lin wrote: TFTP booting is observed a little bit slow, especially when a USB keyboard is installed. The fix is to move polling to every second if we sense that other task like TFTP boot is running.

Re: [U-Boot] [PATCH v2 15/21] Refactor the bootm command to reduce code duplication

2013-06-27 Thread Stefan Roese
Hi Simon, On 06/28/2013 04:14 AM, Simon Glass wrote: I can create something with or without compression and I cannot see the failure. Tom is seeing it though. I will see if I can get another board to try. If you have any ideas please let me know. Sorry, but I don't have any ideas. I also

Re: [U-Boot] U-boot2013:07-Recompile with -fPIC error for mips64 board

2013-06-27 Thread krishna dwivedi
Hi Wolfgang, I am using xlp832 mips64 netlogic board.I referred these steps from u-boot README file. Configuration: TARGET archCPU BoardName brcm8xx mipsmips64 brcm8xx - - Options brcm8xx:SYS_BIG_ENDIAN Regards,

Re: [U-Boot] [PATCH v3 1/2] console: usbkbd: Improve TFTP booting performance

2013-06-27 Thread Stephen Warren
On 06/27/2013 09:59 PM, Jim Lin wrote: On Fri, 2013-06-28 at 02:20 +0800, Stephen Warren wrote: On 06/27/2013 03:45 AM, Jim Lin wrote: TFTP booting is observed a little bit slow, especially when a USB keyboard is installed. The fix is to move polling to every second if we sense that other

Re: [U-Boot] u-boot compile error

2013-06-27 Thread Simon Glass
+U-Boot Hi, Yes, it reqiures libssl-dev - please see this: http://patchwork.ozlabs.org/patch/255113/ Regards, Simon On Thu, Jun 27, 2013 at 8:48 PM, Liu Gang-B34182 b34...@freescale.comwrote: Hi, Simon Glass, ** ** The compiling of the lasted u-boot at master branch has the

Re: [U-Boot] [PATCH v2 15/21] Refactor the bootm command to reduce code duplication

2013-06-27 Thread Simon Glass
Hi Stefan, On Thu, Jun 27, 2013 at 9:12 PM, Stefan Roese s...@denx.de wrote: Hi Simon, On 06/28/2013 04:14 AM, Simon Glass wrote: I can create something with or without compression and I cannot see the failure. Tom is seeing it though. I will see if I can get another board to try. If

<    1   2