Lines Matching +full:0 +full:xf00
102 DRIVER_MODULE(rtaspci, ofwbus, rtaspci_driver, 0, 0);
114 if (OF_getproplen(ofw_bus_get_node(dev), "used-by-rtas") < 0) in rtaspci_probe()
116 if (type == NULL || strcmp(type, "pci") != 0) in rtaspci_probe()
139 sc->sc_extended_config = 0; in rtaspci_attach()
151 uint32_t retval = 0xffffffff; in rtaspci_read_config()
157 config_addr = ((bus & 0xff) << 16) | ((slot & 0x1f) << 11) | in rtaspci_read_config()
158 ((func & 0x7) << 8) | (reg & 0xff); in rtaspci_read_config()
160 config_addr |= (reg & 0xf00) << 16; in rtaspci_read_config()
180 if (error < 0 || pcierror != 0) in rtaspci_read_config()
181 retval = 0xffffffff; in rtaspci_read_config()
196 config_addr = ((bus & 0xff) << 16) | ((slot & 0x1f) << 11) | in rtaspci_write_config()
197 ((func & 0x7) << 8) | (reg & 0xff); in rtaspci_write_config()
199 config_addr |= (reg & 0xf00) << 16; in rtaspci_write_config()