Displaying 1 result from an estimated 1 matches for "pci_conf_write32".
Did you mean:
pci_conf_write16
2012 Sep 11
2
[PATCH RFC 5/8] ns16550: MMIO adjustments
...uart->pb_bdf[2],
- 0x1c, (uart->io_base & 0xF000) | ((uart->io_base & 0xF000) >> 8));
+ PCI_IO_BASE,
+ (uart->io_base & 0xF000) |
+ ((uart->io_base & 0xF000) >> 8));
pci_conf_write32(0, uart->ps_bdf[0], uart->ps_bdf[1], uart->ps_bdf[2],
- 0x10, uart->io_base | 0x1);
+ PCI_BASE_ADDRESS_0,
+ uart->io_base | PCI_BASE_ADDRESS_SPACE_IO);
pci_conf_write16(0, uart->ps_bdf[0], uart->ps_bdf[1], uart->ps_bdf[2],...