1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
use alloc::vec::Vec;
use tracing::{error, warn};

use crate::{
    acpi::tables::{self, BiosTables, InterruptControllerStruct, InterruptSourceOverride},
    cpu::{self, idt::InterruptStackFrame64, Cpu, CPUS, MAX_CPUS},
    memory_management::virtual_space::VirtualSpace,
    sync::{once::OnceLock, spin::mutex::Mutex},
    utils::vcell::RW,
};

use super::{
    allocate_basic_user_interrupt, allocate_user_interrupt, allocate_user_interrupt_all_saved,
    InterruptHandler,
};

const APIC_BAR_ENABLED: u64 = 1 << 11;
const APIC_BASE_MASK: u64 = 0xFFFF_FFFF_FFFF_F000;

static APIC: OnceLock<Mutex<Apic>> = OnceLock::new();

pub fn init(bios_tables: &BiosTables) {
    if APIC.try_get().is_some() {
        panic!("APIC already initialized");
    }

    disable_pic();
    APIC.get_or_init(|| Mutex::new(Apic::new(bios_tables)));
}

fn disable_pic() {
    unsafe {
        cpu::io_out::<u8>(0x21, 0xFF);
        cpu::io_out::<u8>(0xA1, 0xFF);
    }
}

pub fn return_from_interrupt() {
    APIC.get().lock().return_from_interrupt();
}

pub fn is_irq_assigned(irq_num: u8) -> bool {
    APIC.get().lock().is_irq_assigned(irq_num)
}

pub fn assign_io_irq<H: InterruptHandler>(handler: H, interrupt_num: u8, cpu: &Cpu) {
    APIC.get().lock().assign_io_irq(handler, interrupt_num, cpu)
}

#[allow(dead_code)]
pub fn assign_io_irq_custom<H: InterruptHandler, F>(
    handler: H,
    interrupt_num: u8,
    cpu: &Cpu,
    modify_entry: F,
) where
    F: FnOnce(IoApicRedirectionBuilder) -> IoApicRedirectionBuilder,
{
    APIC.get()
        .lock()
        .assign_io_irq_custom(handler, interrupt_num, cpu, modify_entry)
}

#[repr(C, align(4))]
struct ApicReg {
    reg: RW<u32>,
    pad: [u32; 3],
}

impl ApicReg {
    fn write(&mut self, value: u32) {
        unsafe { self.reg.write(value) };
    }

    fn read(&self) -> u32 {
        self.reg.read()
    }
}

#[repr(C)]
struct LocalVectorRegister {
    reg: ApicReg,
}

#[allow(dead_code)]
impl LocalVectorRegister {
    fn read(&self) -> LocalVectorRegisterBuilder {
        LocalVectorRegisterBuilder {
            reg: self.reg.read(),
        }
    }

    fn write(&mut self, builder: LocalVectorRegisterBuilder) {
        self.reg.write(builder.reg)
    }
}

const LVT_VECTOR_MASK: u32 = 0xFF;
const LVT_MESSAGE_TYPE_MASK: u32 = 0x7 << 8;
const LVT_TRIGGER_MODE_MASK: u32 = 1 << 15;
const LVT_MASK_MASK: u32 = 1 << 16;
const LVT_TIMER_MODE_MASK: u32 = 1 << 17;

const SPURIOUS_ENABLE: u32 = 1 << 8;

#[derive(Default, Clone, Copy)]
struct LocalVectorRegisterBuilder {
    reg: u32,
}

#[allow(dead_code)]
impl LocalVectorRegisterBuilder {
    fn with_vector(mut self, vector: u8) -> Self {
        self.reg = (self.reg & !LVT_VECTOR_MASK) | vector as u32;
        self
    }

    fn with_message_type(mut self, message_type: u8) -> Self {
        self.reg = (self.reg & !LVT_MESSAGE_TYPE_MASK) | ((message_type & 0x7) as u32) << 8;
        self
    }

    fn with_trigger_mode(mut self, trigger_mode: bool) -> Self {
        self.reg = (self.reg & !LVT_TRIGGER_MODE_MASK) | (trigger_mode as u32) << 15;
        self
    }

    fn with_mask(mut self, mask: bool) -> Self {
        self.reg = (self.reg & !LVT_MASK_MASK) | (mask as u32) << 16;
        self
    }

    fn with_periodic_timer(mut self, timer_mode: bool) -> Self {
        self.reg = (self.reg & !LVT_TIMER_MODE_MASK) | (timer_mode as u32) << 17;
        self
    }
}

#[repr(C, align(16))]
struct ApicMmio {
    _pad1: [ApicReg; 2],
    id: ApicReg,
    version: ApicReg,
    _pad2: [ApicReg; 4],
    task_priority: ApicReg,
    arbitration_priority: ApicReg,
    processor_priority: ApicReg,
    end_of_interrupt: ApicReg,
    remote_read: ApicReg,
    logical_destination: ApicReg,
    destination_format: ApicReg,
    spurious_interrupt_vector: ApicReg,
    in_service: [ApicReg; 8],
    trigger_mode: [ApicReg; 8],
    interrupt_request: [ApicReg; 8],
    error_status: ApicReg,
    _pad3: [ApicReg; 7],
    interrupt_command_low: ApicReg,
    interrupt_command_high: ApicReg,
    timer_local_vector_table: LocalVectorRegister,
    thermal_local_vector_table: LocalVectorRegister,
    performance_local_vector_table: LocalVectorRegister,
    lint0_local_vector_table: LocalVectorRegister,
    lint1_local_vector_table: LocalVectorRegister,
    error_local_vector_table: LocalVectorRegister,
    timer_initial_count: ApicReg,
    timer_current_count: ApicReg,
    _pad4: [ApicReg; 4],
    timer_divide_configuration: ApicReg,
    _pad5: ApicReg,
    extended_apic_features: ApicReg,
    extended_apic_control: ApicReg,
    specific_end_of_interrupt: ApicReg,
    _pad6: [ApicReg; 5],
    interrupt_enable: [ApicReg; 8],
    extended_interrupt_local_vector_tables: [ApicReg; 4],
}

#[allow(dead_code)]
mod io_apic {
    pub const IO_APIC_ID: u32 = 0;
    pub const IO_APIC_VERSION: u32 = 1;
    pub const IO_APIC_ARBITRATION_ID: u32 = 2;
    pub const IO_APIC_REDIRECTION_TABLE: u32 = 0x10;

    pub const RDR_VECTOR_MASK: u64 = 0xFF;
    pub const RDR_DELIVERY_MODE_MASK: u64 = 0x7 << 8;
    pub const RDR_DESTINATION_MODE_MASK: u64 = 1 << 11;
    pub const RDR_DELIVERY_STATUS_MASK: u64 = 1 << 12;
    pub const RDR_PIN_POLARITY_MASK: u64 = 1 << 13;
    pub const RDR_REMOTE_IRR_MASK: u64 = 1 << 14;
    pub const RDR_TRIGGER_MODE_MASK: u64 = 1 << 15;
    pub const RDR_MASK_MASK: u64 = 1 << 16;
    pub const RDR_DESTINATION_PHYSICAL_MASK: u64 = 0x1F << 59;
    pub const RDR_DESTINATION_LOGICAL_MASK: u64 = 0xFF << 56;
}

#[allow(dead_code)]
enum DestinationType {
    Physical(u8),
    Logical(u8),
}

#[derive(Default, Clone, Copy)]
pub struct IoApicRedirectionBuilder {
    reg: u64,
}

#[allow(dead_code)]
impl IoApicRedirectionBuilder {
    fn with_vector(mut self, vector: u8) -> Self {
        self.reg = (self.reg & !io_apic::RDR_VECTOR_MASK) | vector as u64;
        self
    }

    fn with_delivery_mode(mut self, delivery_mode: u8) -> Self {
        self.reg =
            (self.reg & !io_apic::RDR_DELIVERY_MODE_MASK) | ((delivery_mode & 0x7) as u64) << 8;
        self
    }

    pub fn with_interrupt_polarity_low(mut self, polarity: bool) -> Self {
        self.reg = (self.reg & !io_apic::RDR_PIN_POLARITY_MASK) | (polarity as u64) << 13;
        self
    }

    pub fn with_trigger_mode_level(mut self, trigger_mode: bool) -> Self {
        self.reg = (self.reg & !io_apic::RDR_TRIGGER_MODE_MASK) | (trigger_mode as u64) << 15;
        self
    }

    pub fn with_mask(mut self, mask: bool) -> Self {
        self.reg = (self.reg & !io_apic::RDR_MASK_MASK) | (mask as u64) << 16;
        self
    }

    fn with_destination(mut self, destination: DestinationType) -> Self {
        match destination {
            DestinationType::Physical(d) => {
                assert!(d < 32, "physical destination is out of range");
                // clear the destination mode bit
                self.reg &= !io_apic::RDR_DESTINATION_MODE_MASK;
                self.reg = (self.reg & !io_apic::RDR_DESTINATION_PHYSICAL_MASK)
                    | (((d & 0x1F) as u64) << 59);
            }
            DestinationType::Logical(d) => {
                // set the destination mode bit
                self.reg |= io_apic::RDR_DESTINATION_MODE_MASK;
                self.reg = (self.reg & !io_apic::RDR_DESTINATION_LOGICAL_MASK) | ((d as u64) << 56);
            }
        }

        self
    }
}

#[repr(C, align(16))]
struct IoApicMmio {
    register_select: ApicReg,
    data: ApicReg,
}

impl IoApicMmio {
    pub fn read_register(&mut self, register: u32) -> u32 {
        self.register_select.write(register);
        self.data.read()
    }

    pub fn write_register(&mut self, register: u32, value: u32) {
        self.register_select.write(register);
        self.data.write(value);
    }
}

#[allow(dead_code)]
struct IoApic {
    id: u8,
    global_irq_base: u32,
    n_entries: u8,
    mmio: VirtualSpace<IoApicMmio>,
}

impl IoApic {
    fn reset_all_interrupts(&mut self) {
        for i in 0..self.n_entries {
            let b = IoApicRedirectionBuilder::default()
                .with_vector(0)
                .with_mask(true);
            self.write_redirect_entry(i, b);
        }
    }

    fn read_register(&mut self, register: u32) -> u32 {
        self.mmio.read_register(register)
    }

    fn write_register(&mut self, register: u32, value: u32) {
        self.mmio.write_register(register, value)
    }

    fn write_redirect_entry(&mut self, entry: u8, builder: IoApicRedirectionBuilder) {
        let lo = builder.reg as u32;
        let hi = (builder.reg >> 32) as u32;
        self.write_register(io_apic::IO_APIC_REDIRECTION_TABLE + entry as u32 * 2, lo);
        self.write_register(
            io_apic::IO_APIC_REDIRECTION_TABLE + entry as u32 * 2 + 1,
            hi,
        );
    }

    fn is_entry_taken(&mut self, entry: u8) -> bool {
        let lo = self.read_register(io_apic::IO_APIC_REDIRECTION_TABLE + entry as u32 * 2);
        lo as u64 & io_apic::RDR_VECTOR_MASK != 0
    }
}

impl From<tables::IoApic> for IoApic {
    fn from(table: tables::IoApic) -> Self {
        assert!(table.io_apic_address != 0, "IO APIC address is 0");
        assert_eq!(
            table.io_apic_address & 0xF,
            0,
            "IO APIC address is not aligned"
        );
        let mut s = Self {
            id: table.io_apic_id,
            global_irq_base: table.global_system_interrupt_base,
            n_entries: 0, // to be filled next
            // Safety: we are sure that the address is valid
            mmio: unsafe { VirtualSpace::new(table.io_apic_address as u64).unwrap() },
        };
        s.n_entries = (s.read_register(io_apic::IO_APIC_VERSION) >> 16) as u8 + 1;
        s
    }
}

struct Apic {
    mmio: VirtualSpace<ApicMmio>,
    n_cpus: usize,
    io_apics: Vec<IoApic>,
    source_overrides: Vec<InterruptSourceOverride>,
}

impl Apic {
    fn new(bios_tables: &BiosTables) -> Self {
        // do we have APIC in this cpu?
        let cpuid = unsafe { cpu::cpuid::cpuid!(cpu::cpuid::FN_FEAT) };
        if cpuid.edx & cpu::cpuid::FEAT_EDX_APIC == 0 {
            panic!("APIC is not supported");
        }
        let apic_bar = unsafe { cpu::msr::read(cpu::msr::APIC_BASE) };
        if apic_bar & APIC_BAR_ENABLED == 0 {
            // enable APIC
            unsafe {
                cpu::msr::write(cpu::msr::APIC_BASE, apic_bar | APIC_BAR_ENABLED);
            }
            // recheck
            let apic_bar = unsafe { cpu::msr::read(cpu::msr::APIC_BASE) };
            if apic_bar & APIC_BAR_ENABLED == 0 {
                panic!("APIC is not enabled");
            }
        }
        let mut apic_address = apic_bar & APIC_BASE_MASK;

        // process the MADT table
        let madt_table = bios_tables
            .rsdt
            .get_table::<tables::Apic>()
            .expect("MADT table not found");

        if madt_table.local_apic_address as u64 != apic_address {
            warn!(
                "MADT table has a different APIC address (CPU:{:X}, MADT:{:X}), using MADT...",
                apic_address, madt_table.local_apic_address
            );
            apic_address = madt_table.local_apic_address as u64;
        }

        let mut n_cpus = 0;
        let mut io_apics = Vec::new();
        let mut source_overrides = Vec::new();

        for strct in &madt_table.interrupt_controller_structs {
            match strct {
                InterruptControllerStruct::ProcessorLocalApic(s) => {
                    if s.flags & 1 == 0 {
                        // this is a disabled processor
                        continue;
                    }
                    if n_cpus >= MAX_CPUS {
                        warn!("too many CPUs, have {MAX_CPUS} already, ignoring the rest");
                    } else {
                        // initialize the CPUs
                        // SAFETY: this is safe
                        unsafe {
                            CPUS[n_cpus].init(n_cpus, s.apic_id);
                        }
                        n_cpus += 1;
                    }
                }
                InterruptControllerStruct::IoApic(s) => {
                    io_apics.push(s.clone().into());
                }
                InterruptControllerStruct::InterruptSourceOverride(s) => {
                    source_overrides.push(s.clone());
                }
                InterruptControllerStruct::NonMaskableInterrupt(_) => todo!(),
                InterruptControllerStruct::LocalApicNmi(_s) => {
                    // for now, we are not using nmi, so we just ignore it
                    // assert!(s.acpi_processor_uid == 0xFF);
                    // assert!(s.flags == 0);
                    // assert!(s.local_apic_lint == 1);
                }
                InterruptControllerStruct::LocalApicAddressOverride(s) => {
                    apic_address = s.local_apic_address;
                }
                InterruptControllerStruct::Unknown { struct_type, bytes } => {
                    warn!(
                        "unknown interrupt controller struct type {:#X} with {:#X?} bytes",
                        struct_type, bytes
                    );
                }
            }
        }

        assert!(
            n_cpus > 0,
            "no CPUs found in the MADT table, cannot continue"
        );
        assert!(
            !io_apics.is_empty(),
            "no IO APICs found in the MADT table, cannot continue"
        );
        assert_ne!(apic_address, 0, "APIC address is 0, cannot continue");
        assert_eq!(apic_address & 0xF, 0, "APIC address is not aligned");

        // reset all interrupts
        io_apics.iter_mut().for_each(|io_apic: &mut IoApic| {
            io_apic.reset_all_interrupts();
        });

        let mut s = Self {
            // Safety: we are sure that the address is valid
            mmio: unsafe {
                VirtualSpace::new(apic_address).expect("Could not map APIC virtual space")
            },
            n_cpus,
            io_apics,
            source_overrides,
        };

        s.initialize_spurious_interrupt();
        s.disable_local_interrupts();
        s.initialize_timer();
        s.setup_error_interrupt();
        // ack any pending interrupts
        s.return_from_interrupt();

        s
    }

    fn return_from_interrupt(&mut self) {
        self.mmio.end_of_interrupt.write(0);
    }

    fn initialize_spurious_interrupt(&mut self) {
        let interrupt_num = allocate_basic_user_interrupt(spurious_handler);
        // 1 << 8, to enable spurious interrupts
        self.mmio
            .spurious_interrupt_vector
            .write(SPURIOUS_ENABLE | interrupt_num as u32);
    }

    /// disable the Local interrupts 0 and 1
    fn disable_local_interrupts(&mut self) {
        let vector_table = LocalVectorRegisterBuilder::default().with_mask(true);
        self.mmio.lint0_local_vector_table.write(vector_table);
        self.mmio.lint1_local_vector_table.write(vector_table);
    }

    fn initialize_timer(&mut self) {
        let interrupt_num = allocate_user_interrupt_all_saved(super::handlers::apic_timer_handler);

        // divide by 1
        self.mmio.timer_divide_configuration.write(0b1011);
        // just random value, this is based on the CPU clock speed
        // so its not accurate timing.
        self.mmio.timer_initial_count.write(0x1000000);
        // periodic mode, not masked, and with the allocated vector number
        let vector_table = LocalVectorRegisterBuilder::default()
            .with_periodic_timer(true)
            .with_mask(false)
            .with_vector(interrupt_num);
        self.mmio.timer_local_vector_table.write(vector_table);
    }

    fn setup_error_interrupt(&mut self) {
        // clear the error status and write 0 to it
        // 1- clear the error status
        self.mmio.error_status.write(0);
        // 2- write 0 to it (yes, we have to do this twice)
        self.mmio.error_status.write(0);

        let interrupt_num = allocate_basic_user_interrupt(error_interrupt_handler);
        // not masked, and with the allocated vector number
        let vector_table = LocalVectorRegisterBuilder::default()
            .with_mask(false)
            .with_vector(interrupt_num);
        self.mmio.error_local_vector_table.write(vector_table);
    }

    fn get_irq_ioapic_entry(
        &mut self,
        irq_num: u8,
    ) -> Option<(u8, &mut IoApic, Option<&InterruptSourceOverride>)> {
        // if we have override mapping for this interrupt, use it.
        let int_override = self
            .source_overrides
            .iter()
            .find(|int_override| int_override.source == irq_num);
        let mut interrupt_num = irq_num as u32;
        if let Some(int_override) = int_override {
            interrupt_num = int_override.global_system_interrupt;
        }
        self.io_apics
            .iter_mut()
            .find(|io_apic| {
                io_apic.global_irq_base <= interrupt_num
                    && interrupt_num < io_apic.global_irq_base + io_apic.n_entries as u32
            })
            .map(|io_apic| {
                let entry_in_ioapic = interrupt_num - io_apic.global_irq_base;
                (entry_in_ioapic as u8, io_apic, int_override)
            })
    }

    fn is_irq_assigned(&mut self, irq_num: u8) -> bool {
        let (entry_in_ioapic, io_apic, _) = self
            .get_irq_ioapic_entry(irq_num)
            .expect("Could not find IO APIC for the interrupt");
        io_apic.is_entry_taken(entry_in_ioapic)
    }

    fn assign_io_irq<H: InterruptHandler>(&mut self, handler: H, irq_num: u8, cpu: &Cpu) {
        self.assign_io_irq_custom(handler, irq_num, cpu, |b| b)
    }

    fn assign_io_irq_custom<H: InterruptHandler, F>(
        &mut self,
        handler: H,
        irq_num: u8,
        cpu: &Cpu,
        modify_entry: F,
    ) where
        F: FnOnce(IoApicRedirectionBuilder) -> IoApicRedirectionBuilder,
    {
        assert!(cpu.id < self.n_cpus, "CPU ID is out of range");
        assert!(irq_num < 24, "interrupt number is out of range");

        let (entry_in_ioapic, io_apic, int_override) = self
            .get_irq_ioapic_entry(irq_num)
            .expect("Could not find IO APIC for the interrupt");
        // TODO: this is added for catching bugs early, probably we should return `Result`
        // using `is_irq_assigned`.
        assert!(
            !io_apic.is_entry_taken(entry_in_ioapic),
            "entry is already taken"
        );

        // override config
        let trigger_mode_level = if let Some(int_override) = int_override {
            match (int_override.flags >> 2) & 0b11 {
                0b00 => {
                    // Conforms to the specifications of the bus
                    // TODO: ok to keep without changing?
                    false
                }
                0b01 => {
                    // Edge
                    false
                }
                0b10 => {
                    panic!("Reserved value 0b10 used for trigger mode in interrupt override");
                }
                0b11 => {
                    // Level
                    true
                }
                _ => unreachable!(),
            }
        } else {
            // default
            false
        };
        let polarity_low = if let Some(int_override) = int_override {
            match int_override.flags & 0b11 {
                0b00 => {
                    // Conforms to the specifications of the bus
                    true
                }
                0b01 => {
                    // High
                    false
                }
                0b10 => {
                    panic!("Reserved value 0b10 used for polarity in interrupt override");
                }
                0b11 => {
                    // Low
                    true
                }
                _ => unreachable!(),
            }
        } else {
            // default
            false
        };

        let vector_num = allocate_user_interrupt(handler);
        let b = IoApicRedirectionBuilder::default()
            .with_vector(vector_num)
            .with_delivery_mode(0) // fixed
            .with_interrupt_polarity_low(polarity_low) // active high
            .with_trigger_mode_level(trigger_mode_level) // edge
            .with_mask(false) // not masked
            .with_destination(DestinationType::Physical(cpu.apic_id));

        let b = modify_entry(b);

        io_apic.write_redirect_entry(entry_in_ioapic, b);
    }
}

extern "x86-interrupt" fn spurious_handler(_frame: InterruptStackFrame64) {
    warn!("Spurious interrupt");
    return_from_interrupt();
}

extern "x86-interrupt" fn error_interrupt_handler(_frame: InterruptStackFrame64) {
    let error_status = APIC.get().lock().mmio.error_status.read();
    error!("APIC error: {:#X}", error_status);
    // clear the error
    APIC.get().lock().mmio.error_status.write(0);
    return_from_interrupt();
}