Re: [U-Boot] [PATCH v2 52/63] x86: Move pirq_routing_table to global_data

2017-02-06 Thread Simon Glass
Hi Bin, On 3 February 2017 at 22:01, Bin Meng wrote: > Hi Simon, > > On Tue, Jan 17, 2017 at 12:34 PM, Bin Meng wrote: >> Hi Simon, >> >> On Mon, Jan 16, 2017 at 10:08 PM, Simon Glass wrote: >>> Hi Bin, >>> >>> On 14 January 2017 at 06:32, Bin Meng wrote: Hi Simon, On Sun, Nov 2

Re: [U-Boot] [PATCH v2 52/63] x86: Move pirq_routing_table to global_data

2017-02-03 Thread Bin Meng
Hi Simon, On Tue, Jan 17, 2017 at 12:34 PM, Bin Meng wrote: > Hi Simon, > > On Mon, Jan 16, 2017 at 10:08 PM, Simon Glass wrote: >> Hi Bin, >> >> On 14 January 2017 at 06:32, Bin Meng wrote: >>> Hi Simon, >>> >>> On Sun, Nov 20, 2016 at 4:25 AM, Simon Glass wrote: To avoid using BSS in SP

Re: [U-Boot] [PATCH v2 52/63] x86: Move pirq_routing_table to global_data

2017-01-16 Thread Bin Meng
Hi Simon, On Mon, Jan 16, 2017 at 10:08 PM, Simon Glass wrote: > Hi Bin, > > On 14 January 2017 at 06:32, Bin Meng wrote: >> Hi Simon, >> >> On Sun, Nov 20, 2016 at 4:25 AM, Simon Glass wrote: >>> To avoid using BSS in SPL before SDRAM is set up, move this field to >>> global_data. >>> >> >> Wh

Re: [U-Boot] [PATCH v2 52/63] x86: Move pirq_routing_table to global_data

2017-01-16 Thread Simon Glass
Hi Bin, On 14 January 2017 at 06:32, Bin Meng wrote: > Hi Simon, > > On Sun, Nov 20, 2016 at 4:25 AM, Simon Glass wrote: >> To avoid using BSS in SPL before SDRAM is set up, move this field to >> global_data. >> > > Why is this needed? pirq routing table setup is done after SDRAM > initializatio

Re: [U-Boot] [PATCH v2 52/63] x86: Move pirq_routing_table to global_data

2017-01-14 Thread Bin Meng
Hi Simon, On Sun, Nov 20, 2016 at 4:25 AM, Simon Glass wrote: > To avoid using BSS in SPL before SDRAM is set up, move this field to > global_data. > Why is this needed? pirq routing table setup is done after SDRAM initialization. Isn't SPL doing this with a different order? > Signed-off-by: Si

[U-Boot] [PATCH v2 52/63] x86: Move pirq_routing_table to global_data

2016-11-19 Thread Simon Glass
To avoid using BSS in SPL before SDRAM is set up, move this field to global_data. Signed-off-by: Simon Glass --- Changes in v2: None arch/x86/cpu/irq.c | 12 +--- arch/x86/include/asm/global_data.h | 1 + 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/a