Lines Matching refs:value

44 				 int where, int size, u32 * value)  in pci_conf0_read_config()  argument
68 res = get_dbe(*value, (u8 *) addr); in pci_conf0_read_config()
70 res = get_dbe(*value, (u16 *) addr); in pci_conf0_read_config()
72 res = get_dbe(*value, (u32 *) addr); in pci_conf0_read_config()
83 *value = emulate_ioc3_cfg(where, size); in pci_conf0_read_config()
98 *value = (cf >> shift) & mask; in pci_conf0_read_config()
104 int where, int size, u32 * value) in pci_conf1_read_config() argument
131 res = get_dbe(*value, (u8 *) addr); in pci_conf1_read_config()
133 res = get_dbe(*value, (u16 *) addr); in pci_conf1_read_config()
135 res = get_dbe(*value, (u32 *) addr); in pci_conf1_read_config()
146 *value = emulate_ioc3_cfg(where, size); in pci_conf1_read_config()
162 *value = (cf >> shift) & mask; in pci_conf1_read_config()
168 int where, int size, u32 * value) in pci_read_config() argument
171 return pci_conf1_read_config(bus, devfn, where, size, value); in pci_read_config()
173 return pci_conf0_read_config(bus, devfn, where, size, value); in pci_read_config()
177 int where, int size, u32 value) in pci_conf0_write_config() argument
201 res = put_dbe(value, (u8 *) addr); in pci_conf0_write_config()
203 res = put_dbe(value, (u16 *) addr); in pci_conf0_write_config()
205 res = put_dbe(value, (u32 *) addr); in pci_conf0_write_config()
235 cf = (cf & ~smask) | ((value & mask) << shift); in pci_conf0_write_config()
243 int where, int size, u32 value) in pci_conf1_write_config() argument
269 res = put_dbe(value, (u8 *) addr); in pci_conf1_write_config()
271 res = put_dbe(value, (u16 *) addr); in pci_conf1_write_config()
273 res = put_dbe(value, (u32 *) addr); in pci_conf1_write_config()
303 cf = (cf & ~smask) | ((value & mask) << shift); in pci_conf1_write_config()
311 int where, int size, u32 value) in pci_write_config() argument
314 return pci_conf1_write_config(bus, devfn, where, size, value); in pci_write_config()
316 return pci_conf0_write_config(bus, devfn, where, size, value); in pci_write_config()