HomeSort by relevance Sort by last modified time
    Searched refs:devfn (Results 1 - 25 of 27) sorted by null

1 2

  /bionic/libc/kernel/common/linux/
pci.h 20 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
21 #define PCI_FUNC(devfn) ((devfn) & 0x07)
  /development/ndk/platforms/android-3/include/linux/
pci.h 20 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
21 #define PCI_FUNC(devfn) ((devfn) & 0x07)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
pci.h 32 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
33 #define PCI_FUNC(devfn) ((devfn) & 0x07)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
pci.h 20 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
21 #define PCI_FUNC(devfn) ((devfn) & 0x07)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
pci.h 20 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
21 #define PCI_FUNC(devfn) ((devfn) & 0x07)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
pci.h 20 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
21 #define PCI_FUNC(devfn) ((devfn) & 0x07)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
pci.h 20 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
21 #define PCI_FUNC(devfn) ((devfn) & 0x07)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
pci.h 20 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
21 #define PCI_FUNC(devfn) ((devfn) & 0x07)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
pci.h 20 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
21 #define PCI_FUNC(devfn) ((devfn) & 0x07)
  /external/grub/netboot/
pci.c 401 unsigned int devfn, l, bus, buses; local
416 for (devfn = 0; devfn < 0xff; ++devfn) {
417 if (PCI_FUNC (devfn) == 0)
418 pcibios_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
421 pcibios_read_config_dword(bus, devfn, PCI_VENDOR_ID, &l);
432 bus, devfn, vendor, device);
438 pcidev[i].devfn = devfn;
    [all...]
pci.h 66 #define PCI_FUNC(devfn) ((devfn) & 0x07)
179 unsigned char devfn; member in struct:pci_device
sis900.c 191 /* the firts entry in this list should contain bus/devfn */
194 pcibios_read_config_byte(p->bus,p->devfn, 0x48, &reg);
195 pcibios_write_config_byte(p->bus,p->devfn, 0x48, reg | 0x40);
202 pcibios_write_config_byte(p->bus,p->devfn, 0x48, reg & ~0x40);
239 pcibios_write_config_dword(pci->bus, pci->devfn, 0x40, 0x00000000);
245 pcibios_read_config_byte(pci->bus,pci->devfn, PCI_REVISION, &revision);
natsemi.c 272 pcibios_read_config_dword(pci->bus, pci->devfn, PCIPM, &tmp);
276 pcibios_write_config_dword(pci->bus, pci->devfn, PCIPM, newtmp);
otulip.c 353 pcibios_write_config_dword(pci->bus,pci->devfn,0x40,0x00000000);
davicom.c 674 pcibios_write_config_dword(pci->bus, pci->devfn, 0x40, 0x00000000);
  /external/qemu/hw/
pci.h 16 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
17 #define PCI_FUNC(devfn) ((devfn) & 0x07)
147 int devfn; member in struct:PCIDevice
164 int instance_size, int devfn,
186 PCIDevice *pci_nic_init(PCIBus *bus, NICInfo *nd, int devfn,
199 PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint16_t vid, uint16_t did,
223 PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name);
233 void usb_uhci_piix3_init(PCIBus *bus, int devfn);
    [all...]
pci.c 241 /* -1 for devfn means auto assign */
243 const char *name, int devfn,
247 if (devfn < 0) {
248 for(devfn = bus->devfn_min ; devfn < 256; devfn += 8) {
249 if (!bus->devices[devfn])
256 pci_dev->devfn = devfn;
267 bus->devices[devfn] = pci_dev
769 int devfn; local
912 int devfn; local
    [all...]
pc.h 111 i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
127 int piix3_init(PCIBus *bus, int devfn);
131 int piix4_init(PCIBus *bus, int devfn);
156 void pci_piix3_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
158 void pci_piix4_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
devices.h 69 int num_ports, int devfn, qemu_irq irq);
usb-ohci.c     [all...]
pxa.h 217 void usb_ohci_init_pxa(target_phys_addr_t base, int num_ports, int devfn,
  /external/kernel-headers/original/linux/
pci.h 35 #define PCI_SLOT(devfn) (((devfn) >> 3) & 0x1f)
36 #define PCI_FUNC(devfn) ((devfn) & 0x07)
120 unsigned int devfn; /* encoded device & function index */ member in struct:pci_dev
269 int (*read)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val);
270 int (*write)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val);
274 int (*read)(unsigned int domain, unsigned int bus, unsigned int devfn,
276 int (*write)(unsigned int domain, unsigned int bus, unsigned int devfn,
427 int pci_scan_slot(struct pci_bus *bus, int devfn);
    [all...]
pm.h 70 #define PM_PCI_ID(dev) ((dev)->bus->number << 16 | (dev)->devfn)
  /hardware/broadcom/wlan/bcm4329/src/bcmsdio/sys/
bcmsdh_linux.c 380 PCI_SLOT(pdev->devfn) != (sd_pci_slot&0xffff)) {
386 pdev->bus->number, PCI_SLOT(pdev->devfn),
395 pdev->bus->number, PCI_SLOT(pdev->devfn),
430 pdev->bus->number, PCI_SLOT(pdev->devfn),
431 PCI_FUNC(pdev->devfn), pdev->irq));
  /hardware/broadcom/wlan/bcm4329/src/shared/
linux_osl.c 432 return PCI_SLOT(((struct pci_dev *)osh->pdev)->devfn);

Completed in 932 milliseconds

1 2