Searched refs:hw (Results 151 - 175 of 257) sorted by relevance

1234567891011

/freebsd-11-stable/sys/arm/xscale/ixp425/
H A Dif_npe.c533 struct npehwbuf *hw = &dma->hwbuf[i]; local
537 ((uintptr_t)hw - (uintptr_t)dma->hwbuf);
548 npe->ix_hw = hw;
1059 struct npehwbuf *hw; local
1079 hw = npe->ix_hw;
1080 hw->ix_ne[0].data = htobe32(segs[0].ds_addr);
1083 hw->ix_ne[0].len = htobe32(segs[0].ds_len << 16);
1084 hw->ix_ne[0].next = 0;
1127 struct npehwbuf *hw = npe->ix_hw; local
1135 mrx->m_len = be32toh(hw
1296 struct npehwbuf *hw; local
[all...]
H A Dixp425.c488 const struct hwvtrans *hw; local
490 hw = gethwvtrans(hwbase, size);
491 if (hw == NULL)
493 *vbase = hwbase - hw->hwbase + hw->vbase;
/freebsd-11-stable/sys/dev/ata/chipsets/
H A Data-intel.c374 ch->hw.pm_read = ata_intel_sata_cscr_read;
375 ch->hw.pm_write = ata_intel_sata_cscr_write;
378 ch->hw.pm_read = ata_intel_sata_ahci_read;
379 ch->hw.pm_write = ata_intel_sata_ahci_write;
381 ch->hw.pm_read = ata_intel_sata_sidpr_read;
382 ch->hw.pm_write = ata_intel_sata_sidpr_write;
385 if (ch->hw.pm_write != NULL) {
387 ch->hw.status = ata_intel_sata_status;
444 if (ch->hw.pm_read != NULL) {
860 ch->hw
[all...]
H A Data-serverworks.c209 ch->hw.tf_read = ata_serverworks_tf_read;
210 ch->hw.tf_write = ata_serverworks_tf_write;
237 ch->hw.status = ata_serverworks_status;
H A Data-via.c254 ch->hw.status = ata_via_status;
410 ch->hw.status = ata_via_sata_status;
411 ch->hw.pm_read = ata_via_sata_scr_read;
412 ch->hw.pm_write = ata_via_sata_scr_write;
/freebsd-11-stable/sys/dev/ocs_fc/
H A Docs_ioctl.c83 __ocs_ioctl_mbox_cb(ocs_hw_t *hw, int32_t status, uint8_t *mqe, void *arg) argument
246 ocs_hw_command(&ocs->hw, mcmd->payload, OCS_CMD_NOWAIT,
708 ocs_hw_firmware_write(&ocs->hw, &dma, xfer_size, offset,
833 wwnn = ocs_hw_get_ptr(&ocs->hw, OCS_HW_WWN_NODE);
872 wwpn = ocs_hw_get_ptr(&ocs->hw, OCS_HW_WWN_PORT);
901 ocs_hw_get(&ocs->hw, OCS_HW_TOPOLOGY, &value);
912 ocs_hw_get(&ocs->hw, OCS_HW_LINK_SPEED, &value);
926 ocs_hw_get(&ocs->hw, OCS_HW_CONFIG_TOPOLOGY, &old_value);
956 ocs_hw_get(&ocs->hw, OCS_HW_LINK_CONFIG_SPEED, &old_value);
1109 ocs_hw_get(&ocs->hw, OCS_HW_SLI_RE
[all...]
H A Docs_drv_fc.h94 ocs_hw_t hw; member in struct:ocs_s
H A Docs_common.h178 ocs_hw_t *hw; /**< pointer to HW */ member in struct:ocs_sli_port_s
228 ocs_hw_t *hw; /**< pointer to HW */ member in struct:ocs_domain_s
/freebsd-11-stable/sys/dev/ixl/
H A Dixl.h311 #define IXL_VPINT_LNKLSTN_REG(hw, vector, vf_num) \
313 (((hw)->func_caps.num_msix_vectors_vf - 1) * (vf_num)))
315 #define IXL_VFINT_DYN_CTLN_REG(hw, vector, vf_num) \
317 (((hw)->func_caps.num_msix_vectors_vf - 1) * (vf_num)))
548 struct i40e_hw *hw; member in struct:ixl_vsi
713 const char * i40e_vc_stat_str(struct i40e_hw *hw,
H A Dixl_txrx.c99 * @hw: pointer to the HW structure
103 i40e_vc_stat_str(struct i40e_hw *hw, enum virtchnl_status_code stat_err) argument
124 snprintf(hw->err_str, sizeof(hw->err_str), "%d", stat_err);
125 return hw->err_str;
318 struct i40e_hw *hw = vsi->hw; local
466 wr32(hw, txr->tail, i);
687 * Setup descriptor for hw offloads
1260 wr32(vsi->hw, rx
2271 struct i40e_hw *hw = vsi->hw; local
[all...]
H A Di40e_osdep.h183 extern void i40e_debug_shared(struct i40e_hw *hw, enum i40e_debug_mask mask,
242 enum i40e_status_code i40e_read_nvm_word_srctl(struct i40e_hw *hw, u16 offset,
/freebsd-11-stable/sys/dev/netmap/
H A Dif_em_netmap.h182 E1000_WRITE_REG(&adapter->hw, E1000_TDT(txr->me), nic_i);
190 nic_i = E1000_READ_REG(&adapter->hw, E1000_TDH(kring->ring_id));
299 E1000_WRITE_REG(&adapter->hw, E1000_RDT(rxr->me), nic_i);
H A Dif_lem_netmap.h165 E1000_WRITE_REG(&adapter->hw, E1000_TDT(0), nic_i);
174 nic_i = E1000_READ_REG(&adapter->hw, E1000_TDH(0));
290 E1000_WRITE_REG(&adapter->hw, E1000_RDT(0), nic_i);
/freebsd-11-stable/sys/dev/vt/hw/efifb/
H A Defifb.c31 __FBSDID("$FreeBSD: stable/11/sys/dev/vt/hw/efifb/efifb.c 355811 2019-12-16 18:04:31Z emaste $");
47 #include <dev/vt/hw/fb/vt_fb.h>
81 TUNABLE_INT_FETCH("hw.syscons.disable", &disabled);
/freebsd-11-stable/stand/lua/
H A Dcore.lua177 loader.setenv("hw.ata.ata_dma", "0")
178 loader.setenv("hw.ata.atapi_dma", "0")
179 loader.setenv("hw.ata.wc", "0")
180 loader.setenv("hw.eisa_slots", "0")
185 loader.unsetenv("hw.ata.ata_dma")
186 loader.unsetenv("hw.ata.atapi_dma")
187 loader.unsetenv("hw.ata.wc")
188 loader.unsetenv("hw.eisa_slots")
/freebsd-11-stable/sys/dev/bhnd/bhndb/
H A Dbhndb.c66 TUNABLE_ULONG("hw.bhndb.debug", &bhndb_debug);
76 const struct bhndb_hw *hw);
86 const struct bhndb_hw **hw);
186 * Return true if @p devlist matches the @p hw specification.
190 * @param hw The hardware description to be matched against.
193 bhndb_hw_matches(device_t *devlist, int num_devs, const struct bhndb_hw *hw) argument
195 for (u_int i = 0; i < hw->num_hw_reqs; i++) {
200 match = &hw->hw_reqs[i];
423 * @param[out] hw On success, the matched hardware specification.
431 const struct bhndb_hw **hw)
430 bhndb_find_hwspec(struct bhndb_softc *sc, device_t *devs, int ndevs, const struct bhndb_hw **hw) argument
588 const struct bhndb_hw *hw; local
[all...]
/freebsd-11-stable/sys/dev/atkbdc/
H A Dpsm.c423 mousehw_t hw; /* hardware information */ member in struct:psm_softc
1086 if (vendortype[i].model == sc->hw.model)
1129 if (sc->hw.model == MOUSE_MODEL_SYNAPTICS) {
1157 if (sc->hw.model == MOUSE_MODEL_GENERIC) {
1551 sc->hw.iftype = MOUSE_IF_PS2;
1554 sc->hw.hwid = get_aux_id(sc->kbdc);
1555 if (!is_a_mouse(sc->hw.hwid)) {
1560 sc->hw.hwid);
1563 switch (sc->hw.hwid) {
1565 sc->hw
[all...]
/freebsd-11-stable/sys/dev/e1000/
H A De1000_vf.h229 s32 (*init_params)(struct e1000_hw *hw);
292 s32 e1000_read_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value);
H A De1000_hw.h752 s32 (*get_cfg_done)(struct e1000_hw *hw);
899 s32 (*init_params)(struct e1000_hw *hw);
1042 void e1000_pci_clear_mwi(struct e1000_hw *hw);
1043 void e1000_pci_set_mwi(struct e1000_hw *hw);
1044 s32 e1000_read_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value);
1045 s32 e1000_write_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value);
1046 void e1000_read_pci_cfg(struct e1000_hw *hw, u32 reg, u16 *value);
1047 void e1000_write_pci_cfg(struct e1000_hw *hw, u32 reg, u16 *value);
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dop_classes.c222 mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, op_class->mode);
/freebsd-11-stable/contrib/binutils/include/opcode/
H A Dcgen.h179 /* For each domain (ifld,hw,operand,insn), list of attributes. */
449 #define CGEN_HW_ATTRS(hw) (&(hw)->attrs)
454 #define CGEN_HW_ATTR_VALUE(hw, attr) \
455 CGEN_ATTR_VALUE ((hw), CGEN_HW_ATTRS (hw), (attr))
635 structure of an operand's hw-index value, if it exists. */
/freebsd-11-stable/sys/dev/qlxgb/
H A Dqla_hw.h201 uint16_t vlan_tci; /* VLAN TCI when hw tagging is enabled*/
801 WRITE_REG32(ha, ((ha->hw.rx_cntxt_rsp)->rds_rsp[i].producer_reg +\
805 WRITE_REG32(ha, (ha->hw.tx_prod_reg + 0x1b2000), val)
808 WRITE_REG32(ha, ((ha->hw.rx_cntxt_rsp)->sds_rsp[i].consumer_reg +\
821 rsp_sds = &((ha->hw.rx_cntxt_rsp)->sds_rsp[sds_index]);\
828 rsp_sds = &((ha->hw.rx_cntxt_rsp)->sds_rsp[sds_index]);\
/freebsd-11-stable/sys/dev/ixgbe/
H A Dix_txrx.c462 IXGBE_WRITE_REG(&adapter->hw, txr->tail, i);
1148 struct ixgbe_hw *hw = &adapter->hw; local
1153 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(rxr->me));
1158 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
1168 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
1170 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(rxr->me));
1185 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(rxr->me), rscctrl);
1188 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(0),
1189 (IXGBE_READ_REG(hw, IXGBE_PSRTYP
[all...]
/freebsd-11-stable/sys/dev/mwl/
H A Dmwlhal.c552 * Return "hw specs". Note this must be the first
558 mwl_hal_gethwspecs(struct mwl_hal *mh0, struct mwl_hal_hwspec *hw) argument
571 IEEE80211_ADDR_COPY(hw->macAddr, pCmd->PermanentAddr);
572 hw->wcbBase[0] = le32toh(pCmd->WcbBase0) & 0x0000ffff;
573 hw->wcbBase[1] = le32toh(pCmd->WcbBase1[0]) & 0x0000ffff;
574 hw->wcbBase[2] = le32toh(pCmd->WcbBase1[1]) & 0x0000ffff;
575 hw->wcbBase[3] = le32toh(pCmd->WcbBase1[2]) & 0x0000ffff;
576 hw->rxDescRead = le32toh(pCmd->RxPdRdPtr)& 0x0000ffff;
577 hw->rxDescWrite = le32toh(pCmd->RxPdWrPtr)& 0x0000ffff;
578 hw
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DARMErrataFix.cpp111 static bool is32bitInstruction(uint16_t hw) { argument
112 return (hw & 0xe000) == 0xe000 && (hw & 0x1800) != 0x0000;

Completed in 182 milliseconds

1234567891011