Home
last modified time | relevance | path

Searched full:apid (Results 1 – 12 of 12) sorted by relevance

/linux-6.14.4/drivers/spmi/
Dspmi-pmic-arb.c113 #define spec_to_hwirq(slave_id, periph_id, irq_id, apid) \ argument
117 (((apid) & 0x3FF) << 0))
143 * @base_apid: on v7: minimum APID associated with the particular SPMI
147 * @mapping_table: in-memory copy of PPID -> APID mapping table.
149 * @ppid_to_apid: in-memory copy of PPID -> APID mapping table.
150 * @last_apid: Highest value APID in use
152 * @min_apid: minimum APID (used for bounding IRQ search)
153 * @max_apid: maximum APID
209 * @init_apid: finds the apid base and count
210 * @ppid_to_apid: finds the apid for a given ppid.
[all …]
/linux-6.14.4/drivers/s390/char/
Dsclp_ap.c22 static int do_ap_configure(sclp_cmdw_t cmd, u32 apid) in do_ap_configure() argument
35 cmd |= (apid & 0xFF) << 8; in do_ap_configure()
44 apid, cmd, sccb->header.response_code); in do_ap_configure()
53 int sclp_ap_configure(u32 apid) in sclp_ap_configure() argument
55 return do_ap_configure(SCLP_CMDW_CONFIGURE_AP, apid); in sclp_ap_configure()
59 int sclp_ap_deconfigure(u32 apid) in sclp_ap_deconfigure() argument
61 return do_ap_configure(SCLP_CMDW_DECONFIGURE_AP, apid); in sclp_ap_deconfigure()
/linux-6.14.4/drivers/s390/crypto/
Dvfio_ap_ops.c701 * driver, its APID will be filtered from the guest's APCB. The matrix
702 * structure precludes filtering an individual APQN, so its APID will be
714 unsigned long apid, apqi, apqn; in vfio_ap_mdev_filter_matrix() local
733 for_each_set_bit_inv(apid, matrix_mdev->shadow_apcb.apm, AP_DEVICES) { in vfio_ap_mdev_filter_matrix()
741 * the APID since an adapter represents a physical in vfio_ap_mdev_filter_matrix()
744 apqn = AP_MKQID(apid, apqi); in vfio_ap_mdev_filter_matrix()
746 clear_bit_inv(apid, matrix_mdev->shadow_apcb.apm); in vfio_ap_mdev_filter_matrix()
751 * the APID was filtered. in vfio_ap_mdev_filter_matrix()
753 if (test_bit_inv(apid, prev_shadow_apm)) in vfio_ap_mdev_filter_matrix()
754 set_bit_inv(apid, apm_filtered); in vfio_ap_mdev_filter_matrix()
[all …]
Dap_bus.c818 * @card: the APID of the adapter card to check
/linux-6.14.4/Documentation/devicetree/bindings/iio/adc/
Dmicrochip,mcp3564.yaml18 …https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MCP356…
20 …https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MCP346…
22 …https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MCP346…
/linux-6.14.4/arch/s390/include/asm/
Dsclp.h188 int sclp_ap_configure(u32 apid);
189 int sclp_ap_deconfigure(u32 apid);
/linux-6.14.4/Documentation/arch/s390/
Dvfio-ap.rst82 comprised of an AP adapter ID (APID) and an AP queue index (APQI). The
132 an APID from 0-255. If a bit is set, the corresponding adapter is valid for
357 vfio_ap mediated device. To assign/unassign an adapter, the APID of the
481 plugged into the guest (i.e., the bit corresponding to its APID will not be
610 (APID). Each bit in the mask, from left to right, corresponds to an APID from
611 0-255. If a bit is set, the APID belongs to the subset of APQNs marked as
881 * Each APQN derived from the Cartesian product of the APID of the adapter
979 * Each APQN derived from the Cartesian product comprised of the APID of the
/linux-6.14.4/drivers/staging/media/av7110/
Dav7110.h289 int ChangePIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid,
Dav7110.c697 static inline int SetPIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid, in SetPIDs() argument
704 if (vpid == 0x1fff || apid == 0x1fff || in SetPIDs()
707 apid = 0; in SetPIDs()
721 pcrpid, vpid, apid, ttpid, subpid, aflags); in SetPIDs()
724 int ChangePIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid, in ChangePIDs() argument
736 if (!(apid & 0x8000)) in ChangePIDs()
737 av7110->pids[DMX_PES_AUDIO] = apid; in ChangePIDs()
747 ret = SetPIDs(av7110, vpid, apid, ttpid, subpid, pcrpid); in ChangePIDs()
/linux-6.14.4/drivers/iio/adc/
Dmcp3564.c12 …* https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MCP3…
14 …* https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MCP3…
16 …* https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MCP3…
/linux-6.14.4/drivers/iommu/
Dmsm_iommu_hw-8xxx.h475 #define SET_APID(b, c, v) SET_CONTEXT_FIELD(b, c, FSYNR0, APID, v)
663 #define GET_APID(b, c) GET_CONTEXT_FIELD(b, c, FSYNR0, APID)
1032 #define APID (APID_MASK << APID_SHIFT) macro
/linux-6.14.4/arch/s390/kvm/
Dpriv.c661 /* APXA not installed and APID greater 64 or APQI greater 16 */ in handle_pqap()