/freebsd/sys/dev/ppbus/ |
H A D | ppi.c | 57 #include <dev/ppbus/ppi.h> 101 .d_name = "ppi", 138 dev = device_find_child(parent, "ppi", -1); in ppi_identify() 140 BUS_ADD_CHILD(parent, 0, "ppi", DEVICE_UNIT_ANY); in ppi_identify() 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 in ppi_attach() 200 struct ppi_data *ppi = DEVTOSOFTC(dev); ppi_detach() local 231 struct ppi_data *ppi = DEVTOSOFTC(ppidev); ppiintr() local 287 struct ppi_data *ppi = dev->si_drv1; ppiopen() local 313 struct ppi_data *ppi = dev->si_drv1; ppiclose() local 355 struct ppi_data *ppi = dev->si_drv1; ppiread() local 446 struct ppi_data *ppi = dev->si_drv1; ppiwrite() local 543 struct ppi_data *ppi = dev->si_drv1; ppiioctl() local [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/share/examples/ppi/ |
H A D | Makefile | 5 FILESDIR=${SHAREDIR}/examples/ppi
|
/freebsd/share/examples/ |
H A D | Makefile | 26 ppi \ 232 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/sys/contrib/device-tree/src/arm64/nuvoton/ |
H A D | nuvoton-common-npcm8xx.dtsi | 35 ppi-partitions {
|
/freebsd/usr.sbin/tcpdump/tcpdump/ |
H A D | Makefile | 123 print-ppi.c \
|
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/ |
H A D | mt6779.dtsi | 129 ppi-partitions {
|
H A D | mt8188.dtsi | 893 ppi-partitions {
|
H A D | mt8183.dtsi | 714 ppi-partitions {
|
/freebsd/etc/mtree/ |
H A D | BSD.usr.dist | 335 ppi
|
/freebsd/sys/dev/mana/ |
H A D | mana.h | 351 struct mana_rxcomp_perpkt_info ppi[MANA_RXCOMP_OOB_NUM_PPI]; member
|
H A D | mana_en.c | 1620 uint32_t pkt_len = cqe->ppi[0].pkt_len; in mana_rx_mbuf() 1654 mbuf->m_pkthdr.flowid = cqe->ppi[0].pkt_hash; in mana_rx_mbuf() 1820 pktlen = oob->ppi[0].pkt_len; in mana_process_rx_cqe()
|
/freebsd/stand/common/ |
H A D | gfx_fb.c | 2055 unsigned ppi, size; in gfx_get_font() local 2063 ppi = gfx_get_ppi(); in gfx_get_font() 2064 if (ppi == 0) in gfx_get_font() 2071 size = (16 * ppi * 10) / 160; in gfx_get_font()
|
/freebsd/contrib/tcpdump/ |
H A D | Makefile.in | 200 print-ppi.c \
|
/freebsd/sys/modules/ |
H A D | Makefile | 320 ppi \
|
/freebsd/share/man/man4/ |
H A D | Makefile | 463 ppi.4 \
|
/freebsd/sys/i386/conf/ |
H A D | GENERIC | 197 device ppi # Parallel port interface device
|
/freebsd/sys/amd64/conf/ |
H A D | GENERIC | 220 device ppi # Parallel port interface device
|
/freebsd/sys/contrib/device-tree/src/arm64/renesas/ |
H A D | r9a07g044.dtsi | 782 "ferr", "ppi", "debug";
|
H A D | r9a07g054.dtsi | 787 "ferr", "ppi", "debug";
|
/freebsd/sys/contrib/device-tree/src/arm64/exynos/google/ |
H A D | gs101.dtsi | 339 ppi-partitions {
|