Lines Matching defs:base
48 uint64_t base;
52 base = PCIE_REG_BASE;
56 /* The root port is at the base of the PCIe register space */
65 base += PCIE_EXT_CFG_DATA;
87 return base + offset;
114 uint64_t base;
117 base = pci_segment_lib_get_base(addr, off);
119 if (base == INVALID_PCI_ADDR) {
120 *val = base;
124 *val = mmio_read_8(base);
127 *val = mmio_read_16(base);
130 *val = mmio_read_32(base);
163 uint64_t base;
166 base = pci_segment_lib_get_base(addr, off);
168 if (base != INVALID_PCI_ADDR) {
171 mmio_write_8(base, val);
174 mmio_write_16(base, val);
177 mmio_write_32(base, val);