mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
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>
This commit is contained in:
parent
1e2f7b9e8e
commit
10d569ea1a
2 changed files with 4 additions and 4 deletions
|
@ -13,6 +13,7 @@
|
|||
#include <asm/irq.h>
|
||||
#include <asm/pci.h>
|
||||
#include <asm/pirq_routing.h>
|
||||
#include <asm/tables.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
|
@ -214,6 +215,9 @@ static int create_pirq_routing_table(struct udevice *dev)
|
|||
|
||||
rt->size = irq_entries * sizeof(struct irq_info) + 32;
|
||||
|
||||
/* Fix up the table checksum */
|
||||
rt->checksum = table_compute_checksum(rt, rt->size);
|
||||
|
||||
pirq_routing_table = rt;
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue