Lines Matching refs:where
43 struct pci_bus *bus, unsigned int devfn, int where, u32 * data) in gt64xxx_pci0_pcibios_config_access() argument
59 ((where / 4) << GT_PCI0_CFGADDR_REGNUM_SHF) | in gt64xxx_pci0_pcibios_config_access()
104 int where, int size, u32 * val) in gt64xxx_pci0_pcibios_read() argument
109 where, &data)) in gt64xxx_pci0_pcibios_read()
113 *val = (data >> ((where & 3) << 3)) & 0xff; in gt64xxx_pci0_pcibios_read()
115 *val = (data >> ((where & 3) << 3)) & 0xffff; in gt64xxx_pci0_pcibios_read()
123 int where, int size, u32 val) in gt64xxx_pci0_pcibios_write() argument
131 devfn, where, &data)) in gt64xxx_pci0_pcibios_write()
135 data = (data & ~(0xff << ((where & 3) << 3))) | in gt64xxx_pci0_pcibios_write()
136 (val << ((where & 3) << 3)); in gt64xxx_pci0_pcibios_write()
138 data = (data & ~(0xffff << ((where & 3) << 3))) | in gt64xxx_pci0_pcibios_write()
139 (val << ((where & 3) << 3)); in gt64xxx_pci0_pcibios_write()
143 where, &data)) in gt64xxx_pci0_pcibios_write()