Re: [U-Boot] [PATCH 02/16] x86: Display the SPL banner only once

2017-04-18 Thread Bin Meng
On Tue, Apr 18, 2017 at 3:30 PM, Bin Meng  wrote:
> On Wed, Apr 12, 2017 at 11:29 AM, Simon Glass  wrote:
>> Hi Bin,
>>
>> On 11 April 2017 at 21:09, Bin Meng  wrote:
>>>
>>> Hi Simon,
>>>
>>> On Mon, Mar 20, 2017 at 2:59 AM, Simon Glass  wrote:
>>> > At present on a cold reboot we must reset the CPU to get it to full speed.
>>> > With 64-bit U-Boot this happens in SPL. At present we print the banner
>>> > before doing this, the end result being that we print the banner twice.
>>> > Print the banner a little later (after the CPU is ready) to avoid this.
>>> >
>>> > Signed-off-by: Simon Glass 
>>> > ---
>>> >
>>> >  arch/x86/lib/spl.c | 3 +--
>>> >  1 file changed, 1 insertion(+), 2 deletions(-)
>>> >
>>>
>>> Looks no difference when testing this on QEMU 64-bit. Am I missing anything?
>>
>> I suspect that QEMU doesn't have this problem, but on chromebook_link
>> we have to reset to change the CPU speed.
>>
>
> That makes sense.
>
> Reviewed-by: Bin Meng 
> Tested on QEMU
> Tested-by: Bin Meng 

applied to u-boot-x86, thanks!
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 02/16] x86: Display the SPL banner only once

2017-04-18 Thread Bin Meng
On Wed, Apr 12, 2017 at 11:29 AM, Simon Glass  wrote:
> Hi Bin,
>
> On 11 April 2017 at 21:09, Bin Meng  wrote:
>>
>> Hi Simon,
>>
>> On Mon, Mar 20, 2017 at 2:59 AM, Simon Glass  wrote:
>> > At present on a cold reboot we must reset the CPU to get it to full speed.
>> > With 64-bit U-Boot this happens in SPL. At present we print the banner
>> > before doing this, the end result being that we print the banner twice.
>> > Print the banner a little later (after the CPU is ready) to avoid this.
>> >
>> > Signed-off-by: Simon Glass 
>> > ---
>> >
>> >  arch/x86/lib/spl.c | 3 +--
>> >  1 file changed, 1 insertion(+), 2 deletions(-)
>> >
>>
>> Looks no difference when testing this on QEMU 64-bit. Am I missing anything?
>
> I suspect that QEMU doesn't have this problem, but on chromebook_link
> we have to reset to change the CPU speed.
>

That makes sense.

Reviewed-by: Bin Meng 
Tested on QEMU
Tested-by: Bin Meng 
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 02/16] x86: Display the SPL banner only once

2017-04-11 Thread Simon Glass
Hi Bin,

On 11 April 2017 at 21:09, Bin Meng  wrote:
>
> Hi Simon,
>
> On Mon, Mar 20, 2017 at 2:59 AM, Simon Glass  wrote:
> > At present on a cold reboot we must reset the CPU to get it to full speed.
> > With 64-bit U-Boot this happens in SPL. At present we print the banner
> > before doing this, the end result being that we print the banner twice.
> > Print the banner a little later (after the CPU is ready) to avoid this.
> >
> > Signed-off-by: Simon Glass 
> > ---
> >
> >  arch/x86/lib/spl.c | 3 +--
> >  1 file changed, 1 insertion(+), 2 deletions(-)
> >
>
> Looks no difference when testing this on QEMU 64-bit. Am I missing anything?

I suspect that QEMU doesn't have this problem, but on chromebook_link
we have to reset to change the CPU speed.

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 02/16] x86: Display the SPL banner only once

2017-04-11 Thread Bin Meng
Hi Simon,

On Mon, Mar 20, 2017 at 2:59 AM, Simon Glass  wrote:
> At present on a cold reboot we must reset the CPU to get it to full speed.
> With 64-bit U-Boot this happens in SPL. At present we print the banner
> before doing this, the end result being that we print the banner twice.
> Print the banner a little later (after the CPU is ready) to avoid this.
>
> Signed-off-by: Simon Glass 
> ---
>
>  arch/x86/lib/spl.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>

Looks no difference when testing this on QEMU 64-bit. Am I missing anything?

Regards,
Bin
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH 02/16] x86: Display the SPL banner only once

2017-03-19 Thread Simon Glass
At present on a cold reboot we must reset the CPU to get it to full speed.
With 64-bit U-Boot this happens in SPL. At present we print the banner
before doing this, the end result being that we print the banner twice.
Print the banner a little later (after the CPU is ready) to avoid this.

Signed-off-by: Simon Glass 
---

 arch/x86/lib/spl.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/x86/lib/spl.c b/arch/x86/lib/spl.c
index ed2d40b552..fa93d64a7a 100644
--- a/arch/x86/lib/spl.c
+++ b/arch/x86/lib/spl.c
@@ -37,8 +37,6 @@ static int x86_spl_init(void)
debug("%s: spl_init() failed\n", __func__);
return ret;
}
-   preloader_console_init();
-
ret = arch_cpu_init();
if (ret) {
debug("%s: arch_cpu_init() failed\n", __func__);
@@ -49,6 +47,7 @@ static int x86_spl_init(void)
debug("%s: arch_cpu_init_dm() failed\n", __func__);
return ret;
}
+   preloader_console_init();
ret = print_cpuinfo();
if (ret) {
debug("%s: print_cpuinfo() failed\n", __func__);
-- 
2.12.0.367.g23dc2f6d3c-goog

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot