Lines Matching defs:npa
97 struct pci_attach_args *npa = &parentdev->pd_pa;
98 *npa = *pa;
101 npa->pa_iot = pcisc->sc_iot;
102 npa->pa_memt = pcisc->sc_memt;
103 npa->pa_dmat = pcisc->sc_dmat;
104 npa->pa_dmat64 = pcisc->sc_dmat64;
105 npa->pa_pc = pcisc->sc_pc;
106 npa->pa_flags = 0; /* XXX? */
109 npa->pa_tag = ppbsc->sc_tag;
110 pcireg_t id = pci_conf_read(npa->pa_pc, npa->pa_tag, PCI_ID_REG);
111 pcireg_t subid = pci_conf_read(npa->pa_pc, npa->pa_tag,
113 pcireg_t class = pci_conf_read(npa->pa_pc, npa->pa_tag, PCI_CLASS_REG);
120 pci_decompose_tag(npa->pa_pc, npa->pa_tag, &bus, &device, &function);
121 npa->pa_device = device;
122 npa->pa_function = function;
123 npa->pa_bus = bus;
124 npa->pa_id = id;
125 npa->pa_class = class;
126 npa->pa_intrswiz = pcisc->sc_intrswiz;
127 npa->pa_intrtag = pcisc->sc_intrtag;
128 npa->pa_intrpin = PCI_INTERRUPT_PIN_NONE;