[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/6 gnumach] Fix apic_send_ipi function clobbering read only fiel
From: |
Damien Zammit |
Subject: |
[PATCH 1/6 gnumach] Fix apic_send_ipi function clobbering read only fields |
Date: |
Mon, 05 Feb 2024 11:33:39 +0000 |
This was the root cause of failing to INIT.
We were clobbering remote_read_status.
And also, we need to reference the .r register
when writing the ICR regs otherwise I think
it writes all of the block.
---
i386/i386/apic.c | 8 ++++++--
i386/i386/apic.h | 2 +-
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/i386/i386/apic.c b/i386/i386/apic.c
index 0cf7c37c..700fafd3 100644
--- a/i386/i386/apic.c
+++ b/i386/i386/apic.c
@@ -290,6 +290,10 @@ void apic_send_ipi(unsigned dest_shorthand, unsigned
deliv_mode, unsigned dest_m
IcrLReg icrl_values;
IcrHReg icrh_values;
+ /* Keep previous values and only overwrite known fields */
+ icrl_values.r = lapic->icr_low.r;
+ icrh_values.r = lapic->icr_high.r;
+
icrl_values.destination_shorthand = dest_shorthand;
icrl_values.delivery_mode = deliv_mode;
icrl_values.destination_mode = dest_mode;
@@ -298,8 +302,8 @@ void apic_send_ipi(unsigned dest_shorthand, unsigned
deliv_mode, unsigned dest_m
icrl_values.vector = vector;
icrh_values.destination_field = dest_id;
- lapic->icr_high = icrh_values;
- lapic->icr_low = icrl_values;
+ lapic->icr_high.r = icrh_values.r;
+ lapic->icr_low.r = icrl_values.r;
}
void
diff --git a/i386/i386/apic.h b/i386/i386/apic.h
index e410e9c6..e1d49895 100644
--- a/i386/i386/apic.h
+++ b/i386/i386/apic.h
@@ -83,7 +83,7 @@ typedef union u_icr_low
unsigned :1;
unsigned level: 1;
unsigned trigger_mode: 1;
- unsigned :2;
+ unsigned remote_read_status: 2; /* Read-only field */
unsigned destination_shorthand: 2;
unsigned :12;
};
--
2.43.0
- [PATCH 0/6 gnumach] SMP on AMD hardware, Damien Zammit, 2024/02/05
- [PATCH 1/6 gnumach] Fix apic_send_ipi function clobbering read only fields,
Damien Zammit <=
- [PATCH 2/6 gnumach] separate lapic_enable from lapic_setup, Damien Zammit, 2024/02/05
- [PATCH 3/6 gnumach] smp: Remove hardcoded AP_BOOT_ADDR, Damien Zammit, 2024/02/05
- [PATCH 4/6 gnumach] Add HPET timer for small accurate delays, Damien Zammit, 2024/02/05
- [PATCH 5/6 gnumach] smp: Use HPET instead of pit one-shot that is unreliable, Damien Zammit, 2024/02/05
- [PATCH 6/6 gnumach] smp: Fix INIT/STARTUP IPI sequence, Damien Zammit, 2024/02/05