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
use crate::cpu;

use super::ApicGenericAddress;

#[allow(dead_code)]
pub mod flags {
    // Power Management Status Register flags
    pub const PM_STS_TMR: u16 = 1 << 0;
    pub const PM_STS_BM: u16 = 1 << 4;
    pub const PM_STS_GBL: u16 = 1 << 5;
    pub const PM_STS_PWRBTN: u16 = 1 << 8;
    pub const PM_STS_SLPBTN: u16 = 1 << 9;
    pub const PM_STS_RTC: u16 = 1 << 10;
    pub const PM_STS_PCIEXP_WAKE: u16 = 1 << 14;
    pub const PM_STS_WAK: u16 = 1 << 15;

    // Power Management Enable Register flags
    pub const PM_EN_TMR: u16 = 1 << 0;
    pub const PM_EN_GBL: u16 = 1 << 5;
    pub const PM_EN_PWRBTN: u16 = 1 << 8;
    pub const PM_EN_SLPBTN: u16 = 1 << 9;
    pub const PM_EN_RTC: u16 = 1 << 10;
    pub const PM_DIS_PCIEXP_WAKE: u16 = 1 << 14;

    // Power Management Control Register flags
    pub const PM_CTRL_SCI_EN: u16 = 1 << 0;
    pub const PM_CTRL_BM_RLD: u16 = 1 << 1;
    pub const PM_CTRL_GBL_RLS: u16 = 1 << 2;
    pub const PM_CTRL_SLP_EN: u16 = 1 << 13;
    pub const PM_CTRL_SLP_TYP_MASK: u16 = 0b111 << PM_CTRL_SLP_TYP_SHIFT;
    pub const PM_CTRL_SLP_TYP_SHIFT: u8 = 10;
}

#[repr(C, packed)]
#[derive(Debug, Clone)]
pub struct Facp {
    firmware_control: u32,
    pub dsdt: u32,
    reserved: u8,
    preferred_pm_profile: u8,
    sci_interrupt: u16,
    smi_command_port: u32,
    acpi_enable: u8,
    acpi_disable: u8,
    s4bios_req: u8,
    pstate_control: u8,
    pm1a_event_block: u32,
    pm1b_event_block: u32,
    pm1a_control_block: u32,
    pm1b_control_block: u32,
    pm2_control_block: u32,
    pm_timer_block: u32,
    gpe0_block: u32,
    gpe1_block: u32,
    pm1_event_length: u8,
    pm1_control_length: u8,
    pm2_control_length: u8,
    pm_timer_length: u8,
    gpe0_block_length: u8,
    gpe1_block_length: u8,
    gpe1_base: u8,
    cstate_control: u8,
    p_level2_latency: u16,
    p_level3_latency: u16,
    flush_size: u16,
    flush_stride: u16,
    duty_offset: u8,
    duty_width: u8,
    day_alarm: u8,
    month_alarm: u8,
    pub century: u8,
    iapc_boot_arch: u16,
    reserved2: u8,
    flags: u32,
    reset_reg: ApicGenericAddress,
    reset_value: u8,
    arm_boot_arch: u16,
    fadt_minor_version: u8,
    x_firmware_control: u64,
    x_dsdt: u64,
    x_pm1a_event_block: ApicGenericAddress,
    x_pm1b_event_block: ApicGenericAddress,
    x_pm1a_control_block: ApicGenericAddress,
    x_pm1b_control_block: ApicGenericAddress,
    x_pm2_control_block: ApicGenericAddress,
    x_pm_timer_block: ApicGenericAddress,
    x_gpe0_block: ApicGenericAddress,
    x_gpe1_block: ApicGenericAddress,
    sleep_control_reg: ApicGenericAddress,
    sleep_status_reg: ApicGenericAddress,
    hypervisor_vendor_id: u64,
}

#[allow(dead_code)]
impl Facp {
    pub fn sci_interrupt(&self) -> u8 {
        assert!(self.sci_interrupt < 256);
        assert!(self.sci_interrupt > 0);

        self.sci_interrupt as u8
    }

    fn smi_command_port(&self) -> u16 {
        assert!(self.smi_command_port > 0 && self.smi_command_port < 0xFFFF);
        self.smi_command_port as u16
    }

    #[inline]
    pub fn is_acpi_enabled(&self) -> bool {
        (self.read_pm1_control() & 1) != 0
    }

    pub fn enable_acpi(&self) {
        if self.is_acpi_enabled() {
            return;
        }
        unsafe {
            cpu::io_out(self.smi_command_port(), self.acpi_enable);
        }
    }

    fn access_io_write(&self, register: u32, alt_register: Option<u32>, length: u8, value: u32) {
        assert!(register > 0 && register < 0xFFFF);

        match length {
            2 => unsafe {
                cpu::io_out::<u16>(
                    register as u16,
                    value.try_into().expect("Should be in u16 range"),
                );
                if let Some(alt_register) = alt_register {
                    assert!(alt_register > 0 && alt_register < 0xFFFF);
                    cpu::io_out::<u16>(
                        alt_register as u16,
                        value.try_into().expect("Should be in u16 range"),
                    );
                }
            },
            4 => unsafe {
                cpu::io_out::<u32>(register as u16, value);
                if let Some(alt_register) = alt_register {
                    assert!(alt_register > 0 && alt_register < 0xFFFF);
                    cpu::io_out::<u32>(alt_register as u16, value);
                }
            },
            _ => {
                todo!("Can't handle `register length` of {}", length)
            }
        }
    }

    fn access_io_read(&self, register: u32, length: u8) -> u32 {
        assert!(register > 0 && register < 0xFFFF);

        match length {
            2 => unsafe { cpu::io_in::<u16>(register as u16) as u32 },
            4 => unsafe { cpu::io_in::<u32>(register as u16) },
            _ => {
                todo!("Can't handle `register length` of {}", length)
            }
        }
    }

    pub fn write_pm1_status(&self, value: u16) {
        if !self.x_pm1a_event_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        let pm1_evt_part_len = self.pm1_event_length / 2;
        let alt_reg = if self.pm1b_event_block == 0 {
            None
        } else {
            Some(self.pm1b_event_block)
        };

        self.access_io_write(
            self.pm1a_event_block,
            alt_reg,
            pm1_evt_part_len,
            value as u32,
        )
    }

    pub fn read_pm1_status(&self) -> u16 {
        if !self.x_pm1a_event_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        let pm1_evt_part_len = self.pm1_event_length / 2;
        self.access_io_read(self.pm1a_event_block, pm1_evt_part_len)
            .try_into()
            .expect("Should be in u16 range")
    }

    pub fn write_pm1_enable(&self, value: u16) {
        if !self.x_pm1a_event_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        let pm1_evt_part_len = self.pm1_event_length / 2;
        let alt_reg = if self.pm1b_event_block == 0 {
            None
        } else {
            Some(self.pm1b_event_block + pm1_evt_part_len as u32)
        };

        self.access_io_write(
            self.pm1a_event_block + pm1_evt_part_len as u32,
            alt_reg,
            pm1_evt_part_len,
            value as u32,
        )
    }

    pub fn read_pm1_enable(&self) -> u16 {
        if !self.x_pm1a_event_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        let pm1_evt_part_len = self.pm1_event_length / 2;
        self.access_io_read(
            self.pm1a_event_block + pm1_evt_part_len as u32,
            pm1_evt_part_len,
        )
        .try_into()
        .expect("Should be in u16 range")
    }

    pub fn write_pm1_control(&self, value: u16) {
        if !self.x_pm1a_control_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        let alt_reg = if self.pm1b_control_block == 0 {
            None
        } else {
            Some(self.pm1b_control_block)
        };
        self.access_io_write(
            self.pm1a_control_block,
            alt_reg,
            self.pm1_control_length,
            value as u32,
        )
    }

    pub fn read_pm1_control(&self) -> u16 {
        if !self.x_pm1a_control_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        self.access_io_read(self.pm1a_control_block, self.pm1_control_length)
            .try_into()
            .expect("Should be in u16 range")
    }

    pub fn read_pm1_control_a(&self) -> u16 {
        self.access_io_read(self.pm1a_control_block, self.pm1_control_length)
            .try_into()
            .expect("Should be in u16 range")
    }

    pub fn read_pm1_control_b(&self) -> Option<u16> {
        if self.pm1b_control_block == 0 {
            return None;
        }

        Some(
            self.access_io_read(self.pm1b_control_block, self.pm1_control_length)
                .try_into()
                .expect("Should be in u16 range"),
        )
    }

    pub fn write_pm1_control_a(&self, value: u16) {
        self.access_io_write(
            self.pm1a_control_block,
            None,
            self.pm1_control_length,
            value as u32,
        )
    }

    pub fn write_pm1_control_b(&self, value: u16) {
        self.access_io_write(
            self.pm1b_control_block,
            None,
            self.pm1_control_length,
            value as u32,
        )
    }

    pub fn read_pm_timer(&self) -> Option<u32> {
        if !self.x_pm_timer_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        if self.pm_timer_block == 0 {
            return None;
        }
        assert_eq!(self.pm_timer_length, 4);

        Some(self.access_io_read(self.pm_timer_block, self.pm_timer_length))
    }

    pub fn write_pm2_control(&self, value: u16) -> Option<()> {
        if !self.x_pm2_control_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        if self.pm2_control_block == 0 {
            return None;
        }

        self.access_io_write(
            self.pm2_control_block,
            Some(self.pm2_control_block),
            self.pm2_control_length,
            value as u32,
        );

        Some(())
    }

    pub fn read_pm2_control(&self) -> Option<u16> {
        if !self.x_pm2_control_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        if self.pm2_control_block == 0 {
            return None;
        }

        Some(self.access_io_read(self.pm2_control_block, self.pm2_control_length) as u16)
    }

    fn gpe_reg_write(register: u32, length: u8, mut value: u32) {
        assert!(register > 0 && register < 0xFFFF);
        assert!(length <= 4);

        // GPE is accessible by bytes regardless of the length
        for i in 0..length as u16 {
            unsafe {
                cpu::io_out::<u8>(register as u16 + i, (value & 0xff) as u8);
            }

            value >>= 8;
        }
    }

    fn gpe_reg_read(register: u32, length: u8) -> u32 {
        assert!(register > 0 && register < 0xFFFF);
        assert!(length <= 4);

        let mut result = 0;

        for i in 0..length as u16 {
            let s = unsafe { cpu::io_in::<u8>(register as u16 + i) as u32 };
            result |= s << (i * 8);
        }

        result
    }

    pub fn write_gpe_0_event_status(&self, value: u32) -> Option<()> {
        if !self.x_gpe0_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        if self.gpe0_block == 0 {
            return None;
        }

        Self::gpe_reg_write(self.gpe0_block, self.gpe0_block_length / 2, value);

        Some(())
    }

    pub fn read_gpe_0_event_status(&self) -> Option<u32> {
        if !self.x_gpe0_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        if self.gpe0_block == 0 {
            return None;
        }

        Some(Self::gpe_reg_read(
            self.gpe0_block,
            self.gpe0_block_length / 2,
        ))
    }

    pub fn write_gpe_0_event_enable(&self, value: u16) -> Option<()> {
        if !self.x_gpe0_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        if self.gpe0_block == 0 {
            return None;
        }

        Self::gpe_reg_write(
            self.gpe0_block + (self.gpe0_block_length / 2) as u32,
            self.gpe0_block_length / 2,
            value as u32,
        );

        Some(())
    }

    pub fn read_gpe_0_event_enable(&self) -> Option<u32> {
        if !self.x_gpe0_block.is_zero() {
            todo!("implement GenericAddress access");
        }

        if self.gpe0_block == 0 {
            return None;
        }

        Some(Self::gpe_reg_read(
            self.gpe0_block + (self.gpe0_block_length / 2) as u32,
            self.gpe0_block_length / 2,
        ))
    }
}