diff mbox

[U-Boot,1/3] x86: Check PIRQ routing table sanity in the F segment

Message ID BLU436-SMTP85A7C5C266B23C865C0D50BFE90@phx.gbl
State Accepted
Delegated to: Simon Glass
Headers show

Commit Message

Bin Meng April 27, 2015, 6:16 a.m. UTC
Previously the PIRQ routing table sanity check was performed against
the original table provided by the platform codes. Now we switch to
check its sanity on the final table in the F segment as this one is
the one seen by the OS.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 arch/x86/lib/pirq_routing.c | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

Comments

Simon Glass April 28, 2015, 2:04 p.m. UTC | #1
On 27 April 2015 at 00:16, Bin Meng <bmeng.cn@gmail.com> wrote:
> Previously the PIRQ routing table sanity check was performed against
> the original table provided by the platform codes. Now we switch to
> check its sanity on the final table in the F segment as this one is
> the one seen by the OS.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  arch/x86/lib/pirq_routing.c | 18 +++++++++++++-----
>  1 file changed, 13 insertions(+), 5 deletions(-)

Acked-by: Simon Glass <sjg@chromium.org>
Simon Glass April 28, 2015, 3:39 p.m. UTC | #2
On 28 April 2015 at 08:04, Simon Glass <sjg@chromium.org> wrote:
> On 27 April 2015 at 00:16, Bin Meng <bmeng.cn@gmail.com> wrote:
>> Previously the PIRQ routing table sanity check was performed against
>> the original table provided by the platform codes. Now we switch to
>> check its sanity on the final table in the F segment as this one is
>> the one seen by the OS.
>>
>> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
>> ---
>>
>>  arch/x86/lib/pirq_routing.c | 18 +++++++++++++-----
>>  1 file changed, 13 insertions(+), 5 deletions(-)
>
> Acked-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-x86, thanks!
diff mbox

Patch

diff --git a/arch/x86/lib/pirq_routing.c b/arch/x86/lib/pirq_routing.c
index 5a2591a..7a34dcf 100644
--- a/arch/x86/lib/pirq_routing.c
+++ b/arch/x86/lib/pirq_routing.c
@@ -110,11 +110,7 @@  void pirq_route_irqs(struct irq_info *irq, int num)
 
 u32 copy_pirq_routing_table(u32 addr, struct irq_routing_table *rt)
 {
-	if (rt->signature != PIRQ_SIGNATURE || rt->version != PIRQ_VERSION ||
-	    rt->size % 16) {
-		debug("Interrupt Routing Table not valid\n");
-		return addr;
-	}
+	struct irq_routing_table *rom_rt;
 
 	/* Fix up the table checksum */
 	rt->checksum = table_compute_checksum(rt, rt->size);
@@ -125,5 +121,17 @@  u32 copy_pirq_routing_table(u32 addr, struct irq_routing_table *rt)
 	debug("Copying Interrupt Routing Table to 0x%x\n", addr);
 	memcpy((void *)addr, rt, rt->size);
 
+	/*
+	 * We do the sanity check here against the copied table after memcpy,
+	 * as something might go wrong after the memcpy, which is normally
+	 * due to the F segment decode is not turned on to systeam RAM.
+	 */
+	rom_rt = (struct irq_routing_table *)addr;
+	if (rom_rt->signature != PIRQ_SIGNATURE ||
+	    rom_rt->version != PIRQ_VERSION || rom_rt->size % 16) {
+		printf("Interrupt Routing Table not valid\n");
+		return addr;
+	}
+
 	return addr + rt->size;
 }