| /freebsd/sys/contrib/dev/broadcom/brcm80211/brcmsmac/phy/ |
| H A D | phy_hal.h | 170 void wlc_phy_detach(struct brcms_phy_pub *ppi); 177 void wlc_phy_hw_clk_state_upd(struct brcms_phy_pub *ppi, bool newstate); 178 void wlc_phy_hw_state_upd(struct brcms_phy_pub *ppi, bool newstate); 179 void wlc_phy_init(struct brcms_phy_pub *ppi, u16 chanspec); 180 void wlc_phy_watchdog(struct brcms_phy_pub *ppi); 181 int wlc_phy_down(struct brcms_phy_pub *ppi); 183 void wlc_phy_cal_init(struct brcms_phy_pub *ppi); 184 void wlc_phy_antsel_init(struct brcms_phy_pub *ppi, bool lut_init); 186 void wlc_phy_chanspec_set(struct brcms_phy_pub *ppi, u16 chanspec); 187 u16 wlc_phy_chanspec_get(struct brcms_phy_pub *ppi); [all …]
|
| H A D | phy_cmn.c | 666 void wlc_phy_por_inform(struct brcms_phy_pub *ppi) in wlc_phy_por_inform() argument 668 struct brcms_phy *pi = container_of(ppi, struct brcms_phy, pubpi_ro); in wlc_phy_por_inform() 1091 void wlc_phy_bw_state_set(struct brcms_phy_pub *ppi, u16 bw) in wlc_phy_bw_state_set() argument 1093 struct brcms_phy *pi = container_of(ppi, struct brcms_phy, pubpi_ro); in wlc_phy_bw_state_set() 1098 void wlc_phy_chanspec_radio_set(struct brcms_phy_pub *ppi, u16 newch) in wlc_phy_chanspec_radio_set() argument 1100 struct brcms_phy *pi = container_of(ppi, struct brcms_phy, pubpi_ro); in wlc_phy_chanspec_radio_set() 1105 u16 wlc_phy_chanspec_get(struct brcms_phy_pub *ppi) in wlc_phy_chanspec_get() argument 1107 struct brcms_phy *pi = container_of(ppi, struct brcms_phy, pubpi_ro); in wlc_phy_chanspec_get() 1112 void wlc_phy_chanspec_set(struct brcms_phy_pub *ppi, u16 chanspec) in wlc_phy_chanspec_set() argument 1114 struct brcms_phy *pi = container_of(ppi, struct brcms_phy, pubpi_ro); in wlc_phy_chanspec_set() [all …]
|
| H A D | phy_lcn.c | 2793 static void wlc_lcnphy_idle_tssi_est(struct brcms_phy_pub *ppi) in wlc_lcnphy_idle_tssi_est() argument 2797 struct brcms_phy *pi = container_of(ppi, struct brcms_phy, pubpi_ro); in wlc_lcnphy_idle_tssi_est() 3007 static void wlc_lcnphy_tx_pwr_ctrl_init(struct brcms_phy_pub *ppi) in wlc_lcnphy_tx_pwr_ctrl_init() argument 3015 struct brcms_phy *pi = container_of(ppi, struct brcms_phy, pubpi_ro); in wlc_lcnphy_tx_pwr_ctrl_init() 3043 wlc_lcnphy_idle_tssi_est(ppi); in wlc_lcnphy_tx_pwr_ctrl_init() 4258 void wlc_lcnphy_tx_power_adjustment(struct brcms_phy_pub *ppi) in wlc_lcnphy_tx_power_adjustment() argument 4262 struct brcms_phy *pi = container_of(ppi, struct brcms_phy, pubpi_ro); in wlc_lcnphy_tx_power_adjustment()
|
| H A D | phy_int.h | 1016 void wlc_lcnphy_tx_power_adjustment(struct brcms_phy_pub *ppi);
|
| /freebsd/sys/dev/ppbus/ |
| H A D | ppi.c | 161 struct ppi_data *ppi = DEVTOSOFTC(dev); in ppi_attach() local 166 ppi->intr_resource = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, in ppi_attach() 168 if (ppi->intr_resource) { in ppi_attach() 170 error = bus_setup_intr(dev, ppi->intr_resource, in ppi_attach() 172 &ppi->intr_cookie); in ppi_attach() 175 ppi->intr_resource); in ppi_attach() 183 sx_init(&ppi->ppi_lock, "ppi"); in ppi_attach() 184 ppi->ppi_cdev = make_dev(&ppi_cdevsw, device_get_unit(dev), in ppi_attach() 187 if (ppi->ppi_cdev == NULL) { in ppi_attach() 191 ppi->ppi_cdev->si_drv1 = ppi; in ppi_attach() [all …]
|
| /freebsd/usr.sbin/bhyve/ |
| H A D | tpm_device.c | 39 struct tpm_ppi *ppi; member 61 const struct tpm_ppi *const ppi = tpm->ppi; in tpm_write_dsdt() local 69 if (ppi->write_dsdt_regions) { in tpm_write_dsdt() 70 error = ppi->write_dsdt_regions(tpm->ppi_sc); in tpm_write_dsdt() 88 if (ppi->write_dsdt_dsm) { in tpm_write_dsdt() 89 error = ppi->write_dsdt_dsm(tpm->ppi_sc); in tpm_write_dsdt() 114 if (dev->ppi != NULL && dev->ppi->deinit != NULL) in tpm_device_destroy() 115 dev->ppi->deinit(dev->ppi_sc); in tpm_device_destroy() 211 dev->ppi = *pp_ppi; in tpm_device_create() 214 if (dev->ppi == NULL) { in tpm_device_create() [all …]
|
| H A D | tpm_ppi_qemu.c | 60 struct tpm_ppi_qemu *ppi; in tpm_ppi_mem_handler() local 69 ppi = arg1; in tpm_ppi_mem_handler() 72 ptr = (uint8_t *)ppi + off; in tpm_ppi_mem_handler() 99 struct tpm_ppi_qemu *ppi = NULL; in tpm_ppi_init() local 103 ppi = calloc(1, TPM_PPI_SIZE); in tpm_ppi_init() 104 if (ppi == NULL) { in tpm_ppi_init() 134 ppi_mmio.arg1 = ppi; in tpm_ppi_init() 141 *sc = ppi; in tpm_ppi_init() 147 free(ppi); in tpm_ppi_init() 155 struct tpm_ppi_qemu *ppi; in tpm_ppi_deinit() local [all …]
|
| /freebsd/stand/i386/libi386/ |
| H A D | biospci.c | 191 …biospci_addinfo(int devid, struct pci_class *pc, struct pci_subclass *psc, struct pci_progif *ppi); 264 struct pci_progif *ppi; in biospci_enumerate() local 271 for (ppi = psc->ps_progif; ppi->pi_code >= 0; ppi++) { in biospci_enumerate() 277 + (psc->ps_subclass << 8) + ppi->pi_code, in biospci_enumerate() 288 biospci_addinfo(devid, pc, psc, ppi); in biospci_enumerate() 296 biospci_addinfo(int devid, struct pci_class *pc, struct pci_subclass *psc, struct pci_progif *ppi) in biospci_addinfo() argument 304 if (ppi->pi_name != NULL) { in biospci_addinfo() 305 strcat(desc, ppi->pi_name); in biospci_addinfo()
|
| /freebsd/sys/modules/ppi/ |
| H A D | Makefile | 2 KMOD= ppi 5 ppi.c ppb_1284.c
|
| /freebsd/sys/arm64/arm64/ |
| H A D | gicv5.c | 1089 gic_map_fdt(device_t dev, u_int ncells, pcell_t *cells, bool *ppi, u_int *irqp, in gic_map_fdt() argument 1114 *ppi = true; in gic_map_fdt() 1118 *ppi = false; in gic_map_fdt() 1131 if (ppi) { in gic_map_fdt() 1208 bool ppi; in do_gicv5_map_intr() local 1216 if (gic_map_fdt(dev, daf->ncells, daf->cells, &ppi, &irq, &pol, in do_gicv5_map_intr() 1229 ppi = ((daa->irq & GSI_INT_TYPE_MASK) == GSI_INT_TYPE_PPI); in do_gicv5_map_intr() 1236 if (ppi) { in do_gicv5_map_intr() 1260 *ppip = ppi; in do_gicv5_map_intr() 1279 bool ppi; in gicv5_map_intr() local [all …]
|
| /freebsd/share/examples/ppi/ |
| H A D | Makefile | 5 FILESDIR=${SHAREDIR}/examples/ppi
|
| /freebsd/share/examples/ |
| H A D | Makefile | 25 ppi \ 222 SE_DIRS+= ppi
|
| /freebsd/usr.sbin/bsdinstall/partedit/ |
| H A D | gpart_ops.c | 943 struct gprovider *ppi; in add_boot_partition() local 948 LIST_FOREACH(ppi, &geom->lg_provider, lg_provider) { in add_boot_partition() 952 LIST_FOREACH(gc, &ppi->lg_config, lg_config) in add_boot_partition() 964 md = get_part_metadata(ppi->lg_name, 0); in add_boot_partition() 976 set_default_part_metadata(ppi->lg_name, scheme, in add_boot_partition()
|
| /freebsd/usr.sbin/tcpdump/tcpdump/ |
| H A D | Makefile | 122 print-ppi.c \
|
| /freebsd/sys/contrib/device-tree/src/arm64/mediatek/ |
| H A D | mt6779.dtsi | 129 ppi-partitions {
|
| /freebsd/sys/dev/mana/ |
| H A D | mana.h | 348 struct mana_rxcomp_perpkt_info ppi[MANA_RXCOMP_OOB_NUM_PPI]; member
|
| H A D | mana_en.c | 1606 uint32_t pkt_len = cqe->ppi[0].pkt_len; in mana_rx_mbuf() 1640 mbuf->m_pkthdr.flowid = cqe->ppi[0].pkt_hash; in mana_rx_mbuf() 1806 pktlen = oob->ppi[0].pkt_len; in mana_process_rx_cqe()
|
| /freebsd/etc/mtree/ |
| H A D | BSD.usr.dist | 357 ppi
|
| /freebsd/contrib/tcpdump/ |
| H A D | Makefile.in | 199 print-ppi.c \
|
| /freebsd/stand/common/ |
| H A D | gfx_fb.c | 2312 unsigned ppi, size; in gfx_get_font() local 2320 ppi = gfx_get_ppi(); in gfx_get_font() 2321 if (ppi == 0) in gfx_get_font() 2328 size = (16 * ppi * 10) / 160; in gfx_get_font()
|
| /freebsd/sys/modules/ |
| H A D | Makefile | 331 ppi \
|
| /freebsd/share/man/man4/ |
| H A D | Makefile | 497 ppi.4 \
|
| /freebsd/sys/contrib/device-tree/src/arm64/cix/ |
| H A D | sky1.dtsi | 652 ppi-partitions {
|
| /freebsd/sys/i386/conf/ |
| H A D | GENERIC | 203 device ppi # Parallel port interface device
|
| /freebsd/sys/amd64/conf/ |
| H A D | GENERIC | 228 device ppi # Parallel port interface device
|