| /freebsd/sys/dev/iwn/ |
| H A D | if_iwn_devid.h | 50 /* SubDevice ID */ 63 /* SubDevice ID */ 77 /* SubDevice ID */ 100 /* SubDevice ID */ 118 /* SubDevice ID */ 138 /* SubDevice ID */ 152 /* SubDevice ID */ 166 /* SubDevice ID */ 181 /* SubDevice ID */ 205 /* SubDevice ID */ [all …]
|
| /freebsd/sys/contrib/dev/iwlwifi/tests/ |
| H A D | devinfo.c | 57 pfx, di->device, di->subdevice, subdevice_mask, buf); in iwl_pci_print_dev_info() 68 ret = iwl_pci_find_dev_info(di->device, di->subdevice, in devinfo_table_order() 100 ret = iwl_pci_find_dev_info(di->device, di->subdevice, in devinfo_discrete_match() 171 /* if subdevice is ANY we can have RF ID/BW limit */ in devinfo_check_subdev_match() 172 if (di->subdevice == (u16)IWL_CFG_ANY) in devinfo_check_subdev_match() 175 /* same if the subdevice mask doesn't overlap them */ in devinfo_check_subdev_match() 194 KUNIT_EXPECT_NE(test, di->subdevice, (u16)IWL_CFG_ANY); in devinfo_check_killer_subdev() 212 dev->subsystem_device = s->subdevice; in devinfo_pci_ids()
|
| /freebsd/sys/dev/nvme/ |
| H A D | nvme_pci.c | 72 uint16_t subdevice; member 100 nvme_match(uint32_t devid, uint16_t subdevice, struct _pcsid *ep) in nvme_match() argument 108 if (subdevice == ep->subdevice) in nvme_match() 120 uint16_t subdevice; in nvme_pci_probe() local 123 subdevice = pci_get_subdevice(device); in nvme_pci_probe() 127 if (nvme_match(devid, subdevice, ep)) in nvme_pci_probe()
|
| /freebsd/sys/dev/puc/ |
| H A D | puc_pci.c | 90 uint16_t subvendor, subdevice; in puc_pci_match() local 95 subdevice = pci_get_subdevice(dev); in puc_pci_match() 101 desc->subdevice == subdevice) in puc_pci_match()
|
| /freebsd/sbin/devd/ |
| H A D | parse.y | 50 %token ATTACH DETACH NOMATCH NOTIFY MEDIA_TYPE CLASS SUBDEVICE 144 | SUBDEVICE STRING SEMICOLON 145 { $$ = new_match(strdup("subdevice"), $2); }
|
| H A D | token.l | 97 subdevice { return SUBDEVICE; }
|
| /freebsd/sys/dev/mps/ |
| H A D | mps_pci.c | 93 uint16_t subdevice; member 125 // Add Customer specific vendor/subdevice id before generic 126 // (0xffff) vendor/subdevice id. 146 MODULE_PNP_INFO("U16:vendor;U16:device;U16:subvendor;U16:subdevice", pci, mps, 161 if ((m->subdevice != 0xffff) && in mps_find_ident() 162 (m->subdevice != pci_get_subdevice(dev))) in mps_find_ident()
|
| /freebsd/usr.sbin/pciconf/ |
| H A D | pciconf.8 | 62 subvendor=0x0000 subdevice=0x0000 64 subvendor=0x0000 subdevice=0x0000 66 subvendor=0x0000 subdevice=0x0000 105 The eigth and ninth columns contain subvendor and subdevice IDs, introduced
|
| /freebsd/sys/contrib/dev/iwlwifi/ |
| H A D | iwl-config.h | 512 #define IWL_SUBDEVICE_RF_ID(subdevice) ((u16)((subdevice) & 0x00F0) >> 4) argument 513 #define IWL_SUBDEVICE_BW_LIM(subdevice) ((u16)((subdevice) & 0x0200) >> 9) argument 514 #define IWL_SUBDEVICE_CORES(subdevice) ((u16)((subdevice) & 0x1C00) >> 10) argument 520 u16 subdevice; member
|
| /freebsd/sys/dev/pci/ |
| H A D | pcivar.h | 183 uint16_t subdevice; /* card device ID, assigned by card vendor */ member 293 uint16_t subdevice; member 307 .match_flag_subdevice = 1, .subdevice = (sd) 317 "M16:mask;U16:vendor;U16:device;U16:subvendor;U16:subdevice;" \ 373 PCI_ACCESSOR(subdevice, SUBDEVICE, uint16_t) in PCI_ACCESSOR()
|
| /freebsd/sys/dev/mfi/ |
| H A D | mfi_pci.c | 121 uint16_t subdevice; member 161 MODULE_PNP_INFO("U16:vendor;U16:device;U16:subvendor;U16:subdevice", pci, mfi, 175 ((m->subdevice == pci_get_subdevice(dev)) || in mfi_find_ident() 176 (m->subdevice == 0xffff))) in mfi_find_ident()
|
| /freebsd/sys/dev/sound/pci/ |
| H A D | envy24ht.c | 117 u_int16_t subvendor, subdevice; member 641 buff->subdevice = envy24ht_rdrom(sc, ENVY24HT_E2PROM_SUBDEVICE) << 8; in envy24ht_rom2cfg() 642 buff->subdevice += envy24ht_rdrom(sc, ENVY24HT_E2PROM_SUBDEVICE + 1); in envy24ht_rom2cfg() 656 for (i = 0; cfg_table[i].subvendor != 0 || cfg_table[i].subdevice != 0; in envy24ht_rom2cfg() 659 cfg_table[i].subdevice == buff->subdevice) in envy24ht_rom2cfg() 680 buff->subdevice = envy24ht_rdrom(sc, ENVY24HT_E2PROM_SUBDEVICE) << 8; in envy24ht_rom2cfg() 681 buff->subdevice += envy24ht_rdrom(sc, ENVY24HT_E2PROM_SUBDEVICE + 1); in envy24ht_rom2cfg() 696 for (i = 0; cfg_table[i].subvendor != 0 || cfg_table[i].subdevice != 0; i++) in envy24ht_rom2cfg() 698 cfg_table[i].subdevice == buff->subdevice) in envy24ht_rom2cfg() 829 if (sc->cfg->subvendor == 0x153b && sc->cfg->subdevice == 0x1150) in envy24ht_gpiord() [all …]
|
| H A D | envy24.c | 108 u_int16_t subvendor, subdevice; member 605 buff->subdevice = envy24_rdrom(sc, ENVY24_E2PROM_SUBDEVICE) << 8; in envy24_rom2cfg() 606 buff->subdevice += envy24_rdrom(sc, ENVY24_E2PROM_SUBDEVICE + 1); in envy24_rom2cfg() 615 for (i = 0; cfg_table[i].subvendor != 0 || cfg_table[i].subdevice != 0; i++) in envy24_rom2cfg() 617 cfg_table[i].subdevice == buff->subdevice) in envy24_rom2cfg() 1026 ptr->parent->cfg->subdevice == 0x1138 && ptr->num == 100) { in envy24_delta_ak4524_init() 1142 if (sc->cfg->subvendor==0x153b && sc->cfg->subdevice==0x1138 ) { in envy24_setvolume() 2137 for (i = 0; cfg_table[i].subvendor != 0 || cfg_table[i].subdevice != 0; i++) { in envy24_pci_probe() 2139 cfg_table[i].subdevice == sd) { in envy24_pci_probe() 2294 sc->cfg->subvendor, sc->cfg->subdevice); in envy24_putcfg() [all …]
|
| /freebsd/sys/dev/iwx/ |
| H A D | if_iwxvar.h | 618 #define IWX_SUBDEVICE_RF_ID(subdevice) ((uint16_t)((subdevice) & 0x00f0) >> 4) argument 619 #define IWX_SUBDEVICE_NO_160(subdevice) ((uint16_t)((subdevice) & 0x0200) >> 9) argument 620 #define IWX_SUBDEVICE_CORES(subdevice) ((uint16_t)((subdevice) & 0x1c00) >> 10) argument
|
| /freebsd/sys/dev/aic7xxx/ |
| H A D | aic7xxx_pci.c | 52 ahc_compose_id(u_int device, u_int vendor, u_int subdevice, u_int subvendor) 57 | (subdevice << 16) 671 uint16_t subdevice, uint16_t subvendor); 706 uint16_t subdevice, uint16_t subvendor) 714 && subdevice != device in ahc_9005_subdevinfo_valid() 715 && SUBID_9005_TYPE_KNOWN(subdevice) != 0) { in ahc_9005_subdevinfo_valid() 716 switch (SUBID_9005_TYPE(subdevice)) { in ahc_9005_subdevinfo_valid() 743 uint16_t subdevice; 751 subdevice = aic_pci_read_config(pci, PCIR_SUBDEV_0, /*bytes*/2); in ahc_find_pci_device() 752 full_id = ahc_compose_id(device, vendor, subdevice, subvendo in ahc_find_pci_device() 59 ahc_compose_id(u_int device,u_int vendor,u_int subdevice,u_int subvendor) ahc_compose_id() argument 713 ahc_9005_subdevinfo_valid(uint16_t device,uint16_t vendor,uint16_t subdevice,uint16_t subvendor) ahc_9005_subdevinfo_valid() argument 750 uint16_t subdevice; ahc_find_pci_device() local [all...] |
| H A D | aic79xx_pci.c | 50 ahd_compose_id(u_int device, u_int vendor, u_int subdevice, u_int subvendor) 55 | (subdevice << 16) 286 uint16_t subdevice; 294 subdevice = aic_pci_read_config(pci, PCIR_SUBDEV_0, /*bytes*/2); in ahd_find_pci_device() 306 subdevice, in ahd_find_pci_device() 56 ahd_compose_id(u_int device,u_int vendor,u_int subdevice,u_int subvendor) ahd_compose_id() argument 292 uint16_t subdevice; ahd_find_pci_device() local
|
| /freebsd/sys/dev/mpr/ |
| H A D | mpr_pci.c | 93 uint16_t subdevice; member 176 MODULE_PNP_INFO("U16:vendor;U16:device;U16:subvendor;U16:subdevice;D:#", pci, 194 if ((m->subdevice != 0xffff) && in mpr_find_ident() 195 (m->subdevice != pci_get_subdevice(dev))) in mpr_find_ident()
|
| /freebsd/sys/dev/thunderbolt/ |
| H A D | nhi_pci.c | 96 uint16_t subdevice; member 121 MODULE_PNP_INFO("U16:vendor;U16:device;V16:subvendor;V16:subdevice;U32:#;D:#", 137 if ((n->subdevice != 0xffff) && in nhi_find_ident() 138 (n->subdevice != pci_get_subdevice(dev))) in nhi_find_ident()
|
| H A D | tb_pcib.c | 89 uint16_t subdevice; member 123 ((n->subdevice != 0xffff) && (n->subdevice != sd))) in tb_pcib_find_ident() 553 MODULE_PNP_INFO("U16:vendor;U16:device;U16:subvendor;U16:subdevice;U32:#;D:#",
|
| /freebsd/sys/dev/mlx/ |
| H A D | mlx_pci.c | 82 u_int16_t subdevice; member 102 (m->subdevice == pci_get_subdevice(dev))))) in mlx_pci_match()
|
| /freebsd/sys/contrib/device-tree/Bindings/pwm/ |
| H A D | atmel-hlcdc-pwm.txt | 3 The Atmel HLCDC PWM is subdevice of the HLCDC MFD device.
|
| /freebsd/sys/dev/mpi3mr/ |
| H A D | mpi3mr_pci.c | 86 uint16_t subdevice; member 96 MODULE_PNP_INFO("U16:vendor;U16:device;U16:subvendor;U16:subdevice;D:#", pci, 222 if ((m->subdevice != 0xffff) && in mpi3mr_find_ident() 223 (m->subdevice != pci_get_subdevice(dev))) in mpi3mr_find_ident()
|
| /freebsd/usr.sbin/bhyve/amd64/ |
| H A D | pci_lpc.c | 500 uint16_t device, subdevice, subvendor, vendor; in pci_lpc_init() local 532 subdevice = pci_config_read_reg(selp, nvl, PCIR_SUBDEV_0, 2, in pci_lpc_init() 542 pci_set_cfgdata16(pi, PCIR_SUBDEV_0, subdevice); in pci_lpc_init()
|
| /freebsd/sys/contrib/dev/iwlwifi/pcie/ |
| H A D | drv.c | 37 .subvendor = PCI_ANY_ID, .subdevice = (subdev), \ 567 .subdevice = IWL_CFG_ANY, \ 575 #define SUBDEV(n) .subdevice = (n) 582 #define SUBDEV_MASKED(v, m) .subdevice = (v) + _CHECK_MASK(m), \ 1117 if (dev_info->subdevice != (u16)IWL_CFG_ANY && in iwl_pci_find_dev_info() 1118 dev_info->subdevice != (subsystem_device & subdevice_mask)) in iwl_pci_find_dev_info() 1388 id->vendor, id->device, id->subvendor, id->subdevice, in sysctl_iwlwifi_pci_ids_name() 1394 id->vendor, id->device, id->subvendor, id->subdevice, in sysctl_iwlwifi_pci_ids_name() 1405 PCI_VENDOR_ID_INTEL, dev_info->device, PCI_ANY_ID, dev_info->subdevice, in sysctl_iwlwifi_pci_ids_name()
|
| /freebsd/sys/compat/linuxkpi/common/include/linux/ |
| H A D | pci.h | 69 uint32_t subdevice; member 76 MODULE_PNP_INFO("U32:vendor;U32:device;V32:subvendor;V32:subdevice", \ 107 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID 110 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID 1335 (ids->subdevice == PCI_ANY_ID || in pci_match_id() 1336 ids->subdevice == pdev->subsystem_device) && in pci_match_id()
|