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
use core::fmt;

use crate::cpu::{self, IoPortInt};

fn read_pci_config<T: IoPortInt>(bus: u8, dev: u8, func: u8, offset: u8) -> T {
    let address = 0x80000000
        | ((bus as u32) << 16)
        | ((dev as u32) << 11)
        | ((func as u32) << 8)
        | (offset as u32);
    unsafe {
        cpu::io_out(0xCF8, address);
        cpu::io_in(0xCFC)
    }
}

fn write_pci_config<T: IoPortInt>(bus: u8, dev: u8, func: u8, offset: u8, value: T) {
    let address = 0x80000000
        | ((bus as u32) << 16)
        | ((dev as u32) << 11)
        | ((func as u32) << 8)
        | (offset as u32);
    unsafe {
        cpu::io_out(0xCF8, address);
        cpu::io_out(0xCFC, value);
    }
}

#[allow(dead_code)]
pub mod reg {
    pub const VENDOR_ID: u8 = 0x00;
    pub const DEVICE_ID: u8 = 0x02;
    pub const COMMAND: u8 = 0x04;
    pub const STATUS: u8 = 0x06;
    pub const CLASS_DWORD: u8 = 0x08;
    pub const HEADER_TYPE: u8 = 0x0E;
    pub const BAR0: u8 = 0x10;
    pub const BAR1: u8 = 0x14;
    pub const BAR2: u8 = 0x18;
    pub const BAR3: u8 = 0x1C;
    pub const BAR4: u8 = 0x20;
    pub const BAR5: u8 = 0x24;
    pub const SUBSYSTEM_VENDOR_ID: u8 = 0x2C;
    pub const SUBSYSTEM_ID: u8 = 0x2E;
    pub const CAPABILITIES_PTR: u8 = 0x34;
    pub const INTERRUPT_LINE: u8 = 0x3C;
    pub const INTERRUPT_PIN: u8 = 0x3D;
}

pub struct PciDeviceProbeIterator {
    bus: u8,
    dev: u8,
    func: u8,
}

impl PciDeviceProbeIterator {
    pub fn new() -> PciDeviceProbeIterator {
        PciDeviceProbeIterator {
            bus: 0,
            dev: 0,
            func: 0,
        }
    }
}

impl Iterator for PciDeviceProbeIterator {
    type Item = PciDeviceConfig;

    fn next(&mut self) -> Option<Self::Item> {
        // loop until we find a valid device
        loop {
            while self.dev < 32 {
                while self.func < 8 {
                    let config = PciDeviceConfig::probe(self.bus, self.dev, self.func);
                    self.func += 1;
                    if config.is_some() {
                        return config;
                    }
                }
                self.func = 0;
                self.dev += 1;
            }
            self.dev = 0;
            let (bus, overflow) = self.bus.overflowing_add(1);
            if overflow {
                break;
            }
            self.bus = bus;
        }

        None
    }
}

#[repr(u8)]
#[derive(Debug, Clone)]
pub enum PciDeviceType {
    Unclassified(u8, u8, u8),
    MassStorageController(u8, u8, u8),
    NetworkController(u8, u8, u8),
    DisplayController(u8, u8, u8),
    MultimediaController(u8, u8, u8),
    MemoryController(u8, u8, u8),
    BridgeDevice(u8, u8, u8),
    SimpleCommunicationController(u8, u8, u8),
    BaseSystemPeripheral(u8, u8, u8),
    InputDeviceController(u8, u8, u8),
    DockingStation(u8, u8, u8),
    Processor(u8, u8, u8),
    SerialBusController(u8, u8, u8),
    WirelessController(u8, u8, u8),
    IntelligentController(u8, u8, u8),
    SatelliteCommunicationController(u8, u8, u8),
    EncryptionController(u8, u8, u8),
    SignalProcessingController(u8, u8, u8),
    ProcessingAccelerator(u8, u8, u8),
    NonEssentialInstrumentation(u8, u8, u8),
    CoProcessor(u8, u8, u8),
    Reserved(u8, u8, u8, u8),
    Unassigned(u8, u8, u8),
}

impl PciDeviceType {
    pub fn new(class_dword: u32) -> Self {
        let class_id = (class_dword >> 24) as u8;
        let subclass_id = ((class_dword >> 16) & 0xFF) as u8;
        let prog_if = ((class_dword >> 8) & 0xFF) as u8;
        let revision_id = (class_dword & 0xFF) as u8;

        match class_id {
            0x00 => Self::Unclassified(subclass_id, prog_if, revision_id),
            0x01 => Self::MassStorageController(subclass_id, prog_if, revision_id),
            0x02 => Self::NetworkController(subclass_id, prog_if, revision_id),
            0x03 => Self::DisplayController(subclass_id, prog_if, revision_id),
            0x04 => Self::MultimediaController(subclass_id, prog_if, revision_id),
            0x05 => Self::MemoryController(subclass_id, prog_if, revision_id),
            0x06 => Self::BridgeDevice(subclass_id, prog_if, revision_id),
            0x07 => Self::SimpleCommunicationController(subclass_id, prog_if, revision_id),
            0x08 => Self::BaseSystemPeripheral(subclass_id, prog_if, revision_id),
            0x09 => Self::InputDeviceController(subclass_id, prog_if, revision_id),
            0x0A => Self::DockingStation(subclass_id, prog_if, revision_id),
            0x0B => Self::Processor(subclass_id, prog_if, revision_id),
            0x0C => Self::SerialBusController(subclass_id, prog_if, revision_id),
            0x0D => Self::WirelessController(subclass_id, prog_if, revision_id),
            0x0E => Self::IntelligentController(subclass_id, prog_if, revision_id),
            0x0F => Self::SatelliteCommunicationController(subclass_id, prog_if, revision_id),
            0x10 => Self::EncryptionController(subclass_id, prog_if, revision_id),
            0x11 => Self::SignalProcessingController(subclass_id, prog_if, revision_id),
            0x12 => Self::ProcessingAccelerator(subclass_id, prog_if, revision_id),
            0x13 => Self::NonEssentialInstrumentation(subclass_id, prog_if, revision_id),
            0x14..=0x3F => Self::Reserved(class_id, subclass_id, prog_if, revision_id),
            0x40 => Self::CoProcessor(subclass_id, prog_if, revision_id),
            0x41..=0xFE => Self::Reserved(class_id, subclass_id, prog_if, revision_id),
            0xFF => Self::Unassigned(subclass_id, prog_if, revision_id),
        }
    }
}

impl fmt::Display for PciDeviceType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::Reserved(class, subclass, prog, rev) => {
                write!(
                    f,
                    "Reserved({:02X}.{:02X}.{:02X}.{:02X})",
                    class, subclass, prog, rev
                )
            }
            Self::Unassigned(subclass, prog, rev) => {
                write!(f, "Unassigned({subclass:02X}.{prog:02X}.{rev:02X})")
            }
            Self::Unclassified(subclass, prog, rev) => {
                write!(f, "Unclassified({subclass:02X}.{prog:02X}.{rev:02X})")
            }
            Self::MassStorageController(subclass, prog, rev) => {
                write!(
                    f,
                    "MassStorageController({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::NetworkController(subclass, prog, rev) => {
                write!(f, "NetworkController({subclass:02X}.{prog:02X}.{rev:02X})")
            }
            Self::DisplayController(subclass, prog, rev) => {
                write!(f, "DisplayController({subclass:02X}.{prog:02X}.{rev:02X})")
            }
            Self::MultimediaController(subclass, prog, rev) => {
                write!(
                    f,
                    "MultimediaController({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::MemoryController(subclass, prog, rev) => {
                write!(f, "MemoryController({subclass:02X}.{prog:02X}.{rev:02X})")
            }
            Self::BridgeDevice(subclass, prog, rev) => {
                write!(f, "BridgeDevice({subclass:02X}.{prog:02X}.{rev:02X})")
            }
            Self::SimpleCommunicationController(subclass, prog, rev) => {
                write!(
                    f,
                    "SimpleCommunicationController({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::BaseSystemPeripheral(subclass, prog, rev) => {
                write!(
                    f,
                    "BaseSystemPeripheral({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::InputDeviceController(subclass, prog, rev) => {
                write!(
                    f,
                    "InputDeviceController({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::DockingStation(subclass, prog, rev) => {
                write!(f, "DockingStation({subclass:02X}.{prog:02X}.{rev:02X})")
            }
            Self::Processor(subclass, prog, rev) => {
                write!(f, "Processor({subclass:02X}.{prog:02X}.{rev:02X})")
            }
            Self::SerialBusController(subclass, prog, rev) => {
                write!(
                    f,
                    "SerialBusController({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }

            Self::WirelessController(subclass, prog, rev) => {
                write!(f, "WirelessController({subclass:02X}.{prog:02X}.{rev:02X})")
            }
            Self::IntelligentController(subclass, prog, rev) => {
                write!(
                    f,
                    "IntelligentController({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::SatelliteCommunicationController(subclass, prog, rev) => {
                write!(
                    f,
                    "SatelliteCommunicationController({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::EncryptionController(subclass, prog, rev) => {
                write!(
                    f,
                    "EncryptionController({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::SignalProcessingController(subclass, prog, rev) => {
                write!(
                    f,
                    "SignalProcessingController({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::ProcessingAccelerator(subclass, prog, rev) => {
                write!(
                    f,
                    "ProcessingAccelerator({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::NonEssentialInstrumentation(subclass, prog, rev) => {
                write!(
                    f,
                    "NonEssentialInstrumentation({subclass:02X}.{prog:02X}.{rev:02X})"
                )
            }
            Self::CoProcessor(subclass, prog, rev) => {
                write!(f, "CoProcessor({subclass:02X}.{prog:02X}.{rev:02X})")
            }
        }
    }
}

#[allow(dead_code)]
#[derive(Debug, Clone, Copy)]
pub enum PciBar {
    Memory {
        addr: usize,
        size: usize,
        prefetchable: bool,
    },
    Io {
        addr: u16,
        size: usize,
    },
    None,
}

#[allow(dead_code)]
impl PciBar {
    pub fn get_io(&self) -> Option<(u16, usize)> {
        match self {
            Self::Io { addr, size } => Some((*addr, *size)),
            _ => None,
        }
    }

    pub fn get_memory(&self) -> Option<(usize, usize, bool)> {
        match self {
            Self::Memory {
                addr,
                size,
                prefetchable,
            } => Some((*addr, *size, *prefetchable)),
            _ => None,
        }
    }
}

#[allow(dead_code)]
#[derive(Debug, Clone)]
pub struct PciDeviceConfig {
    pub(super) bus: u8,
    pub(super) dev: u8,
    pub(super) func: u8,
    pub(super) vendor_id: u16,
    pub(super) device_id: u16,
    pub(super) device_type: PciDeviceType,
    pub(super) header_type: u8,
    pub(super) base_address: [PciBar; 6],
    pub(super) interrupt_line: u8,
    pub(super) interrupt_pin: u8,
    pub(super) capabilities_ptr: Option<u8>,
}

impl PciDeviceConfig {
    pub fn probe(bus: u8, dev: u8, func: u8) -> Option<PciDeviceConfig> {
        let vendor_id = read_pci_config(bus, dev, func, reg::VENDOR_ID);
        if vendor_id == 0xFFFF {
            return None;
        }
        let device_id = read_pci_config(bus, dev, func, reg::DEVICE_ID);

        let class_dword = read_pci_config(bus, dev, func, reg::CLASS_DWORD);
        let device_type = PciDeviceType::new(class_dword);

        let header_type = read_pci_config(bus, dev, func, reg::HEADER_TYPE);
        // make sure first we are reading the intended header type
        if header_type & 0x7F != 0x00 {
            return None;
        }
        // standard header
        let mut base_address = [PciBar::None; 6];
        let mut i = 0;
        while i < 6 {
            let bar_v = read_pci_config::<u32>(bus, dev, func, reg::BAR0 + i * 4);
            if bar_v == 0 {
                i += 1;
                continue;
            }

            if bar_v & 1 == 1 {
                // IO
                let old_bar = bar_v & 0xFFFF_FFFC;

                write_pci_config(bus, dev, func, reg::BAR0 + i * 4, 0xFFFF_FFFCu32);
                let bar = read_pci_config::<u32>(bus, dev, func, reg::BAR0 + i * 4);
                write_pci_config(bus, dev, func, reg::BAR0 + i * 4, old_bar);
                let size = (!(bar & 0xFFFF_FFFC) + 1) as usize;

                base_address[i as usize] = PciBar::Io {
                    addr: old_bar as u16,
                    size,
                };
            } else {
                // Memory
                let old_bar = bar_v & 0xFFFF_FFF0;

                write_pci_config(bus, dev, func, reg::BAR0 + i * 4, 0xFFFF_FFF0u32);
                let bar = read_pci_config::<u32>(bus, dev, func, reg::BAR0 + i * 4);
                write_pci_config(bus, dev, func, reg::BAR0 + i * 4, old_bar);
                let size = (!(bar & 0xFFFF_FFF0) + 1) as usize;

                let prefetchable = (bar_v & 0x8) == 0x8;
                let ty = (bar_v & 0x6) >> 1;
                match ty {
                    0x0 => {
                        // 32-bit
                        base_address[i as usize] = PciBar::Memory {
                            addr: old_bar as usize,
                            size,
                            prefetchable,
                        }
                    }
                    0x2 => {
                        if cfg!(target_pointer_width = "32") {
                            panic!("64-bit bar on 32-bit system");
                        }

                        // 64-bit
                        assert!(i < 5);
                        let bar_2 = read_pci_config::<u32>(bus, dev, func, reg::BAR0 + (i + 1) * 4);
                        i += 1;

                        let whole_bar = (bar_2 as usize) << 32 | (old_bar as usize);
                        base_address[i as usize] = PciBar::Memory {
                            addr: whole_bar,
                            size,
                            prefetchable,
                        };
                        // store it in the two bars
                        base_address[(i - 1) as usize] = base_address[i as usize];
                    }
                    _ => panic!("Reserved bar memory type {ty}, BAR{i}=0x{bar_v:08X}"),
                };
            }
            i += 1;
        }
        let interrupt_info = read_pci_config::<u16>(bus, dev, func, reg::INTERRUPT_LINE);
        let interrupt_line = interrupt_info as u8;
        let interrupt_pin = (interrupt_info >> 8) as u8;

        let capabilities_ptr = read_pci_config(bus, dev, func, reg::CAPABILITIES_PTR);
        let capabilities_ptr = if capabilities_ptr == 0 {
            None
        } else {
            Some(capabilities_ptr)
        };

        Some(PciDeviceConfig {
            bus,
            dev,
            func,
            vendor_id,
            device_id,
            device_type,
            header_type,
            base_address,
            interrupt_line,
            interrupt_pin,
            capabilities_ptr,
        })
    }

    pub fn read_config<T: IoPortInt>(&self, offset: u8) -> T {
        read_pci_config(self.bus, self.dev, self.func, offset)
    }

    pub fn write_config<T: IoPortInt>(&self, offset: u8, value: T) {
        write_pci_config(self.bus, self.dev, self.func, offset, value);
    }

    #[allow(dead_code)]
    pub fn write_command(&self, value: u16) {
        self.write_config(reg::COMMAND, value);
    }

    #[allow(dead_code)]
    pub fn read_command(&self) -> u16 {
        self.read_config(reg::COMMAND)
    }

    #[allow(dead_code)]
    pub fn write_status(&self, value: u16) {
        self.write_config(reg::STATUS, value);
    }

    #[allow(dead_code)]
    pub fn read_status(&self) -> u16 {
        self.read_config(reg::STATUS)
    }
}

// Some extra args for probing
// this is used since some PCI devices might produce multiple devices
// so we use this to select which one to probe and store them individually
// so that its easier to interact with them
pub struct ProbeExtra {
    pub args: [u64; 4],
}

pub trait PciDevice {
    fn probe_init(config: &PciDeviceConfig, extra: ProbeExtra) -> Option<Self>
    where
        Self: Sized;
    fn device_name(&self) -> &'static str;
}