Lines Matching defs:where
16 #define CONFIG_CMD(bus, devfn, where) \
17 (0x80000000 | (bus->number << 16) | (devfn << 8) | (where & ~3))
23 int where, int size, u32 *val)
34 pci_write_reg(chan, CONFIG_CMD(bus, devfn, where), SH4_PCIPAR);
40 *val = (data >> ((where & 3) << 3)) & 0xff;
43 *val = (data >> ((where & 2) << 3)) & 0xffff;
61 int where, int size, u32 val)
69 pci_write_reg(chan, CONFIG_CMD(bus, devfn, where), SH4_PCIPAR);
75 shift = (where & 3) << 3;
80 shift = (where & 2) << 3;