summaryrefslogtreecommitdiff
path: root/arch/x86/lib/pirq_routing.c
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2016-05-11 14:44:57 (GMT)
committerBin Meng <bmeng.cn@gmail.com>2016-05-23 07:18:00 (GMT)
commit10d569ea1a6083eec6022dfd1e6b35e74c962ee3 (patch)
tree2c23445b2e70b405509d59116017b585e9cc0162 /arch/x86/lib/pirq_routing.c
parent1e2f7b9e8e077cb6937204c305d554ef7a970be5 (diff)
downloadu-boot-10d569ea1a6083eec6022dfd1e6b35e74c962ee3.tar.xz
x86: Fix up PIRQ routing table checksum earlier
PIRQ routing table checksum is fixed up in copy_pirq_routing_table(), which is fine if we only write the configuration table once. But with the SeaBIOS case, when we write the table for the second time, the checksum will be fixed up to zero per the checksum algorithm, which is caused by the checksum field not being zero before fix up, since the checksum has already been calculated in the first run. To fix this, move the checksum fixup to create_pirq_routing_table(), so that copy_pirq_routing_table() only does what its function name suggests: copy the table to somewhere else. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/lib/pirq_routing.c')
-rw-r--r--arch/x86/lib/pirq_routing.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/x86/lib/pirq_routing.c b/arch/x86/lib/pirq_routing.c
index 3cc6adb..a93d355 100644
--- a/arch/x86/lib/pirq_routing.c
+++ b/arch/x86/lib/pirq_routing.c
@@ -10,7 +10,6 @@
#include <pci.h>
#include <asm/pci.h>
#include <asm/pirq_routing.h>
-#include <asm/tables.h>
static bool irq_already_routed[16];
@@ -111,9 +110,6 @@ u32 copy_pirq_routing_table(u32 addr, struct irq_routing_table *rt)
{
struct irq_routing_table *rom_rt;
- /* Fix up the table checksum */
- rt->checksum = table_compute_checksum(rt, rt->size);
-
/* Align the table to be 16 byte aligned */
addr = ALIGN(addr, 16);