Home
last modified time | relevance | path

Searched defs:where (Results 1 – 25 of 189) sorted by relevance

12345678

/openbmc/linux/arch/mips/pci/
H A Dops-rc32434.c48 unsigned char where, u32 *data) in config_access()
73 int where, u8 *val) in read_config_byte()
84 int where, u16 *val) in read_config_word()
95 int where, u32 *val) in read_config_dword()
129 write_config_byte(struct pci_bus *bus, unsigned int devfn, int where, in write_config_byte()
148 write_config_word(struct pci_bus *bus, unsigned int devfn, int where, in write_config_word()
168 write_config_dword(struct pci_bus *bus, unsigned int devfn, int where, in write_config_dword()
178 int where, int size, u32 *val) in pci_config_read()
191 int where, int size, u32 val) in pci_config_write()
H A Dops-bcm63xx.c20 static int postprocess_read(u32 data, int where, unsigned int size) in postprocess_read()
39 static int preprocess_write(u32 orig_data, u32 val, int where, in preprocess_write()
65 unsigned int devfn, int where) in bcm63xx_setup_cfg_access()
101 unsigned int devfn, int where, int size, in bcm63xx_do_cfg_read()
122 unsigned int devfn, int where, int size, in bcm63xx_do_cfg_write()
148 int where, int size, u32 *val) in bcm63xx_pci_read()
162 int where, int size, u32 val) in bcm63xx_pci_write()
363 int where, int size, u32 *val) in bcm63xx_cb_read()
387 int where, int size, u32 val) in bcm63xx_cb_write()
484 int where, int size, u32 *val) in bcm63xx_pcie_read()
[all …]
H A Dpci-alchemy.c100 unsigned int dev_fn, unsigned char where, u32 *data) in config_access()
189 int where, u8 *val) in read_config_byte()
203 int where, u16 *val) in read_config_word()
215 int where, u32 *val) in read_config_dword()
221 int where, u8 val) in write_config_byte()
238 int where, u16 val) in write_config_word()
255 int where, u32 val) in write_config_dword()
261 int where, int size, u32 *val) in alchemy_pci_read()
284 int where, int size, u32 val) in alchemy_pci_write()
H A Dpci-bcm1480ht.c38 #define CFGOFFSET(bus, devfn, where) (((bus)<<16)+((devfn)<<8)+(where)) argument
39 #define CFGADDR(bus, devfn, where) CFGOFFSET((bus)->number, (devfn), where) argument
97 int where, int size, u32 * val) in bcm1480ht_pcibios_read()
122 int where, int size, u32 val) in bcm1480ht_pcibios_write()
H A Dpci-bcm1480.c40 #define CFGOFFSET(bus, devfn, where) (((bus)<<16)+((devfn)<<8)+(where)) argument
41 #define CFGADDR(bus, devfn, where) CFGOFFSET((bus)->number, (devfn), where) argument
108 int where, int size, u32 * val) in bcm1480_pcibios_read()
133 int where, int size, u32 val) in bcm1480_pcibios_write()
H A Dops-lantiq.c27 unsigned int devfn, unsigned int where, u32 *data) in ltq_pci_config_access()
72 int where, int size, u32 *val) in ltq_pci_read_config_dword()
90 int where, int size, u32 val) in ltq_pci_write_config_dword()
H A Dpci-sb1250.c40 #define CFGOFFSET(bus, devfn, where) (((bus)<<16) + ((devfn)<<8) + (where)) argument
41 #define CFGADDR(bus, devfn, where) CFGOFFSET((bus)->number, (devfn), where) argument
117 int where, int size, u32 * val) in sb1250_pcibios_read()
142 int where, int size, u32 val) in sb1250_pcibios_write()
H A Dops-gt64xxx_pci0.c31 struct pci_bus *bus, unsigned int devfn, int where, u32 * data) in gt64xxx_pci0_pcibios_config_access()
92 int where, int size, u32 * val) in gt64xxx_pci0_pcibios_read()
111 int where, int size, u32 val) in gt64xxx_pci0_pcibios_write()
H A Dops-msc.c34 struct pci_bus *bus, unsigned int devfn, int where, u32 * data) in msc_pcibios_config_access()
76 int where, int size, u32 * val) in msc_pcibios_read()
100 int where, int size, u32 val) in msc_pcibios_write()
H A Dops-bonito64.c26 unsigned int devfn, int where, in bonito64_pcibios_config_access()
90 int where, int size, u32 * val) in bonito64_pcibios_read()
114 int where, int size, u32 val) in bonito64_pcibios_write()
H A Dpci-ar71xx.c69 static inline u32 ar71xx_pci_get_ble(int where, int size, int local) in ar71xx_pci_get_ble()
81 int where) in ar71xx_pci_bus_addr()
145 int where, int size, u32 value) in ar71xx_pci_local_write()
161 int where, int size, u32 cmd) in ar71xx_pci_set_cfgaddr()
177 int where, int size, u32 *value) in ar71xx_pci_read_config()
201 int where, int size, u32 value) in ar71xx_pci_write_config()
/openbmc/linux/drivers/pci/
H A Daccess.c81 int where, int size, u32 *val) in pci_generic_config_read()
101 int where, int size, u32 val) in pci_generic_config_write()
121 int where, int size, u32 *val) in pci_generic_config_read32()
139 int where, int size, u32 val) in pci_generic_config_write32()
546 int pci_read_config_byte(const struct pci_dev *dev, int where, u8 *val) in pci_read_config_byte()
556 int pci_read_config_word(const struct pci_dev *dev, int where, u16 *val) in pci_read_config_word()
566 int pci_read_config_dword(const struct pci_dev *dev, int where, in pci_read_config_dword()
577 int pci_write_config_byte(const struct pci_dev *dev, int where, u8 val) in pci_write_config_byte()
585 int pci_write_config_word(const struct pci_dev *dev, int where, u16 val) in pci_write_config_word()
593 int pci_write_config_dword(const struct pci_dev *dev, int where, in pci_write_config_dword()
/openbmc/linux/drivers/pci/controller/
H A Dpci-thunder-ecam.c16 static void set_val(u32 v, int where, int size, u32 *val) in set_val()
30 unsigned int devfn, int where, int size, u32 *val) in handle_ea_bar()
84 int where, int size, u32 *val) in thunder_ecam_p2_config_read()
123 int where, int size, u32 *val) in thunder_ecam_config_read()
320 int where, int size, u32 val) in thunder_ecam_config_write()
/openbmc/linux/arch/powerpc/kernel/
H A Drtas_pci.c36 static inline int config_access_valid(struct pci_dn *dn, int where) in config_access_valid()
46 int rtas_read_config(struct pci_dn *pdn, int where, int size, u32 *val) in rtas_read_config()
80 int where, int size, u32 *val) in rtas_pci_read_config()
98 int rtas_write_config(struct pci_dn *pdn, int where, int size, u32 val) in rtas_write_config()
130 int where, int size, u32 val) in rtas_pci_write_config()
/openbmc/linux/arch/sh/drivers/pci/
H A Dops-sh4.c16 #define CONFIG_CMD(bus, devfn, where) \ argument
23 int where, int size, u32 *val) in sh4_pci_read()
61 int where, int size, u32 val) in sh4_pci_write()
H A Dops-sh7786.c20 struct pci_bus *bus, unsigned int devfn, int where, u32 *data) in sh7786_pcie_config_access()
90 int where, int size, u32 *val) in sh7786_pcie_read()
126 int where, int size, u32 val) in sh7786_pcie_write()
/openbmc/linux/arch/alpha/kernel/
H A Dsys_marvel.c175 unsigned int where) in io7_redirect_irq()
189 io7_redirect_one_lsi(struct io7 *io7, unsigned int which, unsigned int where) in io7_redirect_one_lsi()
206 io7_redirect_one_msi(struct io7 *io7, unsigned int which, unsigned int where) in io7_redirect_one_msi()
223 init_one_io7_lsi(struct io7 *io7, unsigned int which, unsigned int where) in init_one_io7_lsi()
234 init_one_io7_msi(struct io7 *io7, unsigned int which, unsigned int where) in init_one_io7_msi()
H A Dcore_polaris.c67 mk_conf_addr(struct pci_bus *pbus, unsigned int device_fn, int where, in mk_conf_addr()
84 polaris_read_config(struct pci_bus *bus, unsigned int devfn, int where, in polaris_read_config()
110 polaris_write_config(struct pci_bus *bus, unsigned int devfn, int where, in polaris_write_config()
/openbmc/linux/fs/ext4/
H A Dext4_jbd2.c116 int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle) in __ext4_journal_stop()
229 int __ext4_journal_get_write_access(const char *where, unsigned int line, in __ext4_journal_get_write_access()
265 int __ext4_forget(const char *where, unsigned int line, handle_t *handle, in __ext4_forget()
319 int __ext4_journal_get_create_access(const char *where, unsigned int line, in __ext4_journal_get_create_access()
343 int __ext4_handle_dirty_metadata(const char *where, unsigned int line, in __ext4_handle_dirty_metadata()
/openbmc/linux/arch/m68k/coldfire/
H A Dpci.c53 static unsigned long mcf_mk_pcicar(int bus, unsigned int devfn, int where) in mcf_mk_pcicar()
59 int where, int size, u32 *value) in mcf_pci_readconfig()
93 int where, int size, u32 value) in mcf_pci_writeconfig()
/openbmc/linux/drivers/isdn/mISDN/
H A Dfsm.c119 mISDN_FsmDelTimer(struct FsmTimer *ft, int where) in mISDN_FsmDelTimer()
132 int millisec, int event, void *arg, int where) in mISDN_FsmAddTimer()
160 int millisec, int event, void *arg, int where) in mISDN_FsmRestartTimer()
/openbmc/linux/arch/sparc/kernel/
H A Dpci_common.c55 int where, int size, u32 *value) in sun4u_read_pci_cfg_host()
110 int where, int size, u32 *value) in sun4u_read_pci_cfg()
168 int where, int size, u32 value) in sun4u_write_pci_cfg_host()
214 int where, int size, u32 value) in sun4u_write_pci_cfg()
259 int where, int size, u32 *value) in sun4v_read_pci_cfg()
292 int where, int size, u32 value) in sun4v_write_pci_cfg()
/openbmc/linux/arch/arm/mach-orion5x/
H A Dpci.c73 static int pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, in pcie_rd_conf()
92 int where, int size, u32 *val) in pcie_rd_conf_wa()
118 int where, int size, u32 val) in pcie_wr_conf()
274 u32 where, u32 size, u32 *val) in orion5x_pci_hw_rd_conf()
296 u32 where, u32 size, u32 val) in orion5x_pci_hw_wr_conf()
343 int where, int size, u32 *val) in orion5x_pci_rd_conf()
355 int where, int size, u32 val) in orion5x_pci_wr_conf()
/openbmc/linux/drivers/pci/controller/dwc/
H A Dpcie-hisi.c25 static int hisi_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, in hisi_pcie_rd_conf()
44 int where, int size, u32 val) in hisi_pcie_wr_conf()
62 int where) in hisi_pcie_map_bus()
/openbmc/linux/arch/parisc/kernel/
H A Dreal2.S106 # define PUSH_CR(r, where) mfctl r, %r1 ! STREG,ma %r1, REG_SZ(where) argument
107 # define POP_CR(r, where) LDREG,mb -REG_SZ(where), %r1 ! mtctl %r1, r argument

12345678