ableos/sysdata/libraries/pci/src/lib.hb

81 lines
1.5 KiB
Plaintext
Raw Normal View History

2024-09-16 20:45:00 -05:00
stn := @use("rel:../../stn/src/lib.hb");
.{string, memory, buffer} := stn
2024-09-14 03:51:57 -05:00
PCIAddress := struct {
bus: u8,
device: u8,
function: u8,
}
2024-09-17 12:08:19 -05:00
PCI_ID := struct {
vendor: u16,
device: u16,
}
get_ids := fn(bus: u8, device: u8, function: u8): PCI_ID {
res := config_read32(bus, device, function, 0)
dev_id := res >> 16
dev_id &= 0xFFFF
vnd_id := res & 0xFFFF
return PCI_ID.(dev_id, vnd_id)
}
PciDeviceInfo := struct {
pci_id: PCI_ID,
}
calculate_address := fn(bus: u8, device: u8, function: u8, offset: u8): int {
address := bus << 16
address |= device << 11
address |= function << 8
address |= offset & 0xFC
address |= 0x80000000
return address
}
check_device := fn(bus: u8, device: u8): PciDeviceInfo {
pci_id := get_ids(bus, device, 0)
if pci_id.vendor == 0xFFFF {
stn.log.warn(":|\0")
} else {
stn.log.info(":)\0")
}
address := calculate_address(bus, device, 0, 0x8)
reg2 := config_read32(bus, device, 0, 0x8)
class := reg2 >> 16 & 0xFFFF
b := "\0\0\0\0\0\0\0"
string.display_int(class, b)
stn.log.info(b)
return PciDeviceInfo.(pci_id)
}
find_device := fn(vendor_id: int, device_id: int, pci_address: PCIAddress): PCI_ID {
pci_id := get_ids(0, 2, 0)
return pci_id
2024-09-14 03:51:57 -05:00
}
scan_bus := fn(): void {
}
config_read32 := fn(bus: u32, device: u32, func: u32, offset: u32): u32 {
// construct address param
2024-09-16 20:45:00 -05:00
offset_and := offset & 0xFC
address := bus << 16
address |= device << 11
address |= func << 8
address |= offset_and
2024-09-14 04:28:45 -05:00
address |= 0x80000000
2024-09-14 03:51:57 -05:00
// write address
2024-09-16 20:45:00 -05:00
memory.outl(0xCF8, address)
2024-09-14 03:51:57 -05:00
// read data
2024-09-16 20:45:00 -05:00
return memory.inl(0xCFC)
2024-09-14 03:51:57 -05:00
}