X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/0f73e6cc9945f9b4a074bb62b9708d1751fa3723..c4565f97ce186d1999082ae4c6d56c97c426fede:/lunaix-os/hal/gfxa/vga/vga_pci.c diff --git a/lunaix-os/hal/gfxa/vga/vga_pci.c b/lunaix-os/hal/gfxa/vga/vga_pci.c index fe77652..1109e5a 100644 --- a/lunaix-os/hal/gfxa/vga/vga_pci.c +++ b/lunaix-os/hal/gfxa/vga/vga_pci.c @@ -6,7 +6,6 @@ #include #include -#include #include @@ -59,7 +58,7 @@ static u32_t palette[] = { #define VGA_REG_OFF 0x0400 static int -vga_pci_init(struct device_def* devdef, struct device* pcidev_base) +vga_pci_bind(struct device_def* devdef, struct device* pcidev_base) { struct pci_device* pcidev = PCI_DEVICE(pcidev_base); @@ -76,8 +75,8 @@ vga_pci_init(struct device_def* devdef, struct device* pcidev_base) pci_write_cspace(pcidev->cspace_base, PCI_REG_STATUS_CMD, cmd); - ptr_t fb_mapped = (ptr_t)ioremap(fb->start, FB256K); - ptr_t mmio_mapped = (ptr_t)ioremap(mmio->start, mmio->size); + ptr_t fb_mapped = ioremap(fb->start, FB256K); + ptr_t mmio_mapped = ioremap(mmio->start, mmio->size); struct vga* vga_state = vga_new_state(mmio_mapped + VGA_REG_OFF, fb_mapped, FB256K); @@ -97,14 +96,27 @@ vga_pci_init(struct device_def* devdef, struct device* pcidev_base) return 0; } +static int +vga_pci_init(struct device_def* def) +{ + return pci_bind_definition_all(pcidev_def(def)); +} + #define VGA_PCI_CLASS 0x30000 +static bool +vga_pci_compat(struct pci_device_def* def, + struct pci_device* pcidev) +{ + return pci_device_class(pcidev) == VGA_PCI_CLASS; +} + + static struct pci_device_def vga_pci_devdef = { - .dev_class = VGA_PCI_CLASS, - .dev_ident = PCI_DEVIDENT(0x1234, 0x1111), - .ident_mask = PCI_MATCH_EXACT, .devdef = { .class = DEVCLASS(DEVIF_PCI, DEVFN_DISP, DEV_VGA), .name = "Generic VGA", - .bind = vga_pci_init } + .init = vga_pci_init, + .bind = vga_pci_bind }, + .test_compatibility = vga_pci_compat }; -EXPORT_PCI_DEVICE(vga_pci, &vga_pci_devdef); \ No newline at end of file +EXPORT_PCI_DEVICE(vga_pci, &vga_pci_devdef, load_onboot); \ No newline at end of file