Home
last modified time | relevance | path

Searched refs:ccid (Results 1 – 25 of 32) sorted by relevance

12

/openbmc/linux/net/dccp/
H A Dccid.h56 int (*ccid_hc_rx_init)(struct ccid *ccid, struct sock *sk);
57 int (*ccid_hc_tx_init)(struct ccid *ccid, struct sock *sk);
96 struct ccid { struct
101 static inline void *ccid_priv(const struct ccid *ccid) in ccid_priv() argument
103 return (void *)ccid->ccid_priv; in ccid_priv()
111 struct ccid *ccid_new(const u8 id, struct sock *sk, bool rx);
115 struct ccid *ccid = dp->dccps_hc_rx_ccid; in ccid_get_current_rx_ccid() local
117 if (ccid == NULL || ccid->ccid_ops == NULL) in ccid_get_current_rx_ccid()
119 return ccid->ccid_ops->ccid_id; in ccid_get_current_rx_ccid()
124 struct ccid *ccid = dp->dccps_hc_tx_ccid; in ccid_get_current_tx_ccid() local
[all …]
H A Dccid.c88 slab = kmem_cache_create(slab_name_fmt, sizeof(struct ccid) + obj_size, 0, in ccid_kmem_cache_create()
140 struct ccid *ccid_new(const u8 id, struct sock *sk, bool rx) in ccid_new()
143 struct ccid *ccid = NULL; in ccid_new() local
148 ccid = kmem_cache_alloc(rx ? ccid_ops->ccid_hc_rx_slab : in ccid_new()
150 if (ccid == NULL) in ccid_new()
152 ccid->ccid_ops = ccid_ops; in ccid_new()
154 memset(ccid + 1, 0, ccid_ops->ccid_hc_rx_obj_size); in ccid_new()
155 if (ccid->ccid_ops->ccid_hc_rx_init != NULL && in ccid_new()
156 ccid->ccid_ops->ccid_hc_rx_init(ccid, sk) != 0) in ccid_new()
159 memset(ccid + 1, 0, ccid_ops->ccid_hc_tx_obj_size); in ccid_new()
[all …]
H A Dfeat.c36 static int dccp_hdlr_ccid(struct sock *sk, u64 ccid, bool rx) in dccp_hdlr_ccid() argument
39 struct ccid *new_ccid = ccid_new(ccid, sk, rx); in dccp_hdlr_ccid()
842 static const struct ccid_dependency *dccp_feat_ccid_deps(u8 ccid, bool is_local) in dccp_feat_ccid_deps() argument
928 switch (ccid) { in dccp_feat_ccid_deps()
1008 u8 is_local, ccid; in dccp_feat_server_ccid_dependencies() local
1014 ccid = entry->val.sp.vec[0]; in dccp_feat_server_ccid_dependencies()
1016 ccid = dccp_feat_default_value(DCCPF_CCID); in dccp_feat_server_ccid_dependencies()
1018 if (dccp_feat_propagate_ccid(fn, ccid, is_local)) in dccp_feat_server_ccid_dependencies()
H A DMakefile4 dccp-y := ccid.o feat.o input.o minisocks.o options.o output.o proto.o timer.o \
H A Doutput.c154 const struct ccid *tx_ccid = dp->dccps_hc_tx_ccid; in dccp_determine_ccmps()
/openbmc/qemu/docs/system/devices/
H A Dccid.rst44 Using ccid-card-emulated with hardware
47 user, using libcacard, QEMU acts as another client using ccid-card-emulated::
49 qemu -usb -device usb-ccid -device ccid-card-emulated
51 Using ccid-card-emulated with certificates stored in files
68 …qemu -usb -device usb-ccid -device ccid-card-emulated,backend=certificates,db=sql:$PWD,cert1=id-ce…
99 Using ccid-card-passthru with client side hardware
101 On the host specify the ccid-card-passthru device with a suitable chardev::
103 qemu -chardev socket,server=on,host=0.0.0.0,port=2001,id=ccid,wait=off \
104 -usb -device usb-ccid -device ccid-card-passthru,chardev=ccid
110 Using ccid-card-passthru with client side certificates
[all …]
H A Dusb.rst203 ``usb-ccid``
/openbmc/linux/drivers/nfc/pn533/
H A Dusb.c268 struct pn533_acr122_ccid_hdr ccid; member
275 struct pn533_acr122_ccid_hdr ccid; member
283 frame->ccid.type = PN533_ACR122_PC_TO_RDR_ESCAPE; in pn533_acr122_tx_frame_init()
285 frame->ccid.datalen = sizeof(frame->apdu) + 1; in pn533_acr122_tx_frame_init()
286 frame->ccid.slot = 0; in pn533_acr122_tx_frame_init()
287 frame->ccid.seq = 0; in pn533_acr122_tx_frame_init()
288 frame->ccid.params[0] = 0; in pn533_acr122_tx_frame_init()
289 frame->ccid.params[1] = 0; in pn533_acr122_tx_frame_init()
290 frame->ccid.params[2] = 0; in pn533_acr122_tx_frame_init()
306 frame->ccid.datalen += frame->datalen; in pn533_acr122_tx_frame_finish()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/ccid/
H A Dccid_1.5.5.bb2 HOMEPAGE = "https://ccid.apdu.fr/"
9 SRC_URI = "https://ccid.apdu.fr/files/ccid-${PV}.tar.bz2 \
/openbmc/linux/drivers/gpu/drm/i915/gt/
H A Dintel_execlists_submission.c495 ce->lrc.ccid = ce->tag; in __execlists_schedule_in()
502 ce->lrc.ccid = tag << (XEHP_SW_CTX_ID_SHIFT - 32); in __execlists_schedule_in()
512 ce->lrc.ccid = (1 + tag) << (GEN11_SW_CTX_ID_SHIFT - 32); in __execlists_schedule_in()
517 ce->lrc.ccid |= engine->execlists.ccid; in __execlists_schedule_in()
525 CE_TRACE(ce, "schedule-in, ccid:%x\n", ce->lrc.ccid); in __execlists_schedule_in()
593 unsigned int ccid; in __execlists_schedule_out() local
601 CE_TRACE(ce, "schedule-out, ccid:%x\n", ce->lrc.ccid); in __execlists_schedule_out()
615 ccid = ce->lrc.ccid; in __execlists_schedule_out()
617 ccid >>= XEHP_SW_CTX_ID_SHIFT - 32; in __execlists_schedule_out()
618 ccid &= XEHP_MAX_CONTEXT_HW_ID; in __execlists_schedule_out()
[all …]
H A Dintel_context_types.h140 u32 ccid; member
H A Dintel_engine_types.h190 u32 ccid; member
H A Dintel_engine_cs.c2187 rq->context->lrc.ccid, in intel_engine_print_registers()
2201 rq->context->lrc.ccid, in intel_engine_print_registers()
/openbmc/linux/include/linux/
H A Ddccp.h190 struct ccid;
294 struct ccid *dccps_hc_rx_ccid;
295 struct ccid *dccps_hc_tx_ccid;
/openbmc/linux/net/dccp/ccids/
H A Dccid3.c494 static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk) in ccid3_hc_tx_init() argument
496 struct ccid3_hc_tx_sock *hc = ccid_priv(ccid); in ccid3_hc_tx_init()
791 static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk) in ccid3_hc_rx_init() argument
793 struct ccid3_hc_rx_sock *hc = ccid_priv(ccid); in ccid3_hc_rx_init()
H A Dccid2.c718 static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk) in ccid2_hc_tx_init() argument
720 struct ccid2_hc_tx_sock *hc = ccid_priv(ccid); in ccid2_hc_tx_init()
/openbmc/qemu/hw/usb/
H A Dmeson.build58 if_true: [cacard, files('ccid-card-emulated.c', 'ccid-card-passthru.c')])
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/openct/openct/
H A Detc-openct.udev.in-disablePROGRAM.patch27 # ccid
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/pcsc-lite/
H A Dpcsc-lite_2.0.3.bb35 RRECOMMENDS:${PN} = "ccid"
/openbmc/openbmc/poky/meta/recipes-support/gnupg/
H A Dgnupg_2.5.2.bb30 --disable-ccid-driver \
/openbmc/qemu/docs/
H A Dqdev-device-use.txt20 ccid-bus slot %u
339 * ccid -device usb-ccid
/openbmc/linux/drivers/gpu/drm/i915/
H A Di915_gpu_error.h71 u32 ccid; member
H A Di915_gpu_error.c536 err_printf(m, " CCID: 0x%08x\n", ee->ccid); in error_print_engine()
1257 ee->ccid = ENGINE_READ(engine, CCID); in engine_record_registers()
/openbmc/qemu/docs/system/
H A Ddevice-emulation.rst86 devices/ccid.rst
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/packagegroups/
H A Dpackagegroup-meta-oe.bb715 ccid \

12