Home
last modified time | relevance | path

Searched refs:qe (Results 1 – 25 of 90) sorted by relevance

1234

/kernel/linux/linux-5.10/drivers/soc/fsl/qe/
Dqe.c53 struct device_node *qe; in qe_get_device_node() local
59 qe = of_find_compatible_node(NULL, NULL, "fsl,qe"); in qe_get_device_node()
60 if (qe) in qe_get_device_node()
61 return qe; in qe_get_device_node()
67 struct device_node *qe; in get_qe_base() local
74 qe = qe_get_device_node(); in get_qe_base()
75 if (!qe) in get_qe_base()
78 ret = of_address_to_resource(qe, 0, &res); in get_qe_base()
81 of_node_put(qe); in get_qe_base()
161 struct device_node *qe; in qe_get_brg_clk() local
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb4/
Dsched.c82 struct sched_queue_entry *qe; in t4_sched_bind_unbind_op() local
84 qe = (struct sched_queue_entry *)arg; in t4_sched_bind_unbind_op()
92 fw_class = bind ? qe->param.class : FW_SCHED_CLS_NONE; in t4_sched_bind_unbind_op()
93 fw_param = (fw_mnem | FW_PARAMS_PARAM_YZ_V(qe->cntxt_id)); in t4_sched_bind_unbind_op()
137 struct sched_queue_entry *qe; in t4_sched_entry_lookup() local
139 list_for_each_entry(qe, &e->entry_list, list) { in t4_sched_entry_lookup()
140 if (qe->cntxt_id == val) { in t4_sched_entry_lookup()
141 found = qe; in t4_sched_entry_lookup()
173 struct sched_queue_entry *qe = NULL; in cxgb4_sched_queue_lookup() local
181 qe = t4_sched_entry_lookup(pi, SCHED_QUEUE, txq->q.cntxt_id); in cxgb4_sched_queue_lookup()
[all …]
Dcxgb4_tc_matchall.c18 struct ch_sched_queue qe; in cxgb4_matchall_egress_validate() local
66 memset(&qe, 0, sizeof(qe)); in cxgb4_matchall_egress_validate()
67 qe.queue = i; in cxgb4_matchall_egress_validate()
69 e = cxgb4_sched_queue_lookup(dev, &qe); in cxgb4_matchall_egress_validate()
83 struct ch_sched_queue qe; in cxgb4_matchall_tc_bind_queues() local
88 qe.queue = i; in cxgb4_matchall_tc_bind_queues()
89 qe.class = tc; in cxgb4_matchall_tc_bind_queues()
90 ret = cxgb4_sched_class_bind(dev, &qe, SCHED_QUEUE); in cxgb4_matchall_tc_bind_queues()
99 qe.queue = i; in cxgb4_matchall_tc_bind_queues()
100 qe.class = SCHED_CLS_NONE; in cxgb4_matchall_tc_bind_queues()
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/soc/fsl/cpm_qe/
Dqe.txt2 This represents qe module that is installed on PowerQUICC II Pro.
9 the "root" qe node, using the common properties from there.
10 The description below applies to the qe of MPC8360 and
16 - compatible : should be "fsl,qe";
20 - fsl,qe-num-riscs: define how many RISC engines the QE has.
21 - fsl,qe-snums: This property has to be specified as '/bits/ 8' value,
27 Usage: required only if there is no fsl,qe-firmware child node
32 "fsl,qe-firmware".
39 - fsl,qe-num-snums: define how many serial number(SNUM) the QE can use
40 for the threads. Use fsl,qe-snums instead to not only specify the
[all …]
/kernel/linux/linux-5.10/security/integrity/ima/
Dima_queue.c51 struct ima_queue_entry *qe, *ret = NULL; in ima_lookup_digest_entry() local
57 hlist_for_each_entry_rcu(qe, &ima_htable.queue[key], hnext) { in ima_lookup_digest_entry()
58 rc = memcmp(qe->entry->digests[ima_hash_algo_idx].digest, in ima_lookup_digest_entry()
60 if ((rc == 0) && (qe->entry->pcr == pcr)) { in ima_lookup_digest_entry()
61 ret = qe; in ima_lookup_digest_entry()
96 struct ima_queue_entry *qe; in ima_add_digest_entry() local
99 qe = kmalloc(sizeof(*qe), GFP_KERNEL); in ima_add_digest_entry()
100 if (qe == NULL) { in ima_add_digest_entry()
104 qe->entry = entry; in ima_add_digest_entry()
106 INIT_LIST_HEAD(&qe->later); in ima_add_digest_entry()
[all …]
Dima_fs.c80 struct ima_queue_entry *qe; in ima_measurements_start() local
84 list_for_each_entry_rcu(qe, &ima_measurements, later) { in ima_measurements_start()
87 return qe; in ima_measurements_start()
96 struct ima_queue_entry *qe = v; in ima_measurements_next() local
102 qe = list_entry_rcu(qe->later.next, struct ima_queue_entry, later); in ima_measurements_next()
106 return (&qe->later == &ima_measurements) ? NULL : qe; in ima_measurements_next()
130 struct ima_queue_entry *qe = v; in ima_measurements_show() local
138 e = qe->entry; in ima_measurements_show()
220 struct ima_queue_entry *qe = v; in ima_ascii_measurements_show() local
226 e = qe->entry; in ima_ascii_measurements_show()
/kernel/linux/linux-5.10/drivers/atm/
Dfirestream.c583 static void submit_qentry (struct fs_dev *dev, struct queue *q, struct FS_QENTRY *qe) in submit_qentry() argument
599 if (qe != cqe) { in submit_qentry()
600 fs_dprintk (FS_DEBUG_TXQ, "q mismatch! %p %p\n", qe, cqe); in submit_qentry()
630 struct FS_QENTRY *qe; in submit_queue() local
632 qe = get_qentry (dev, q); in submit_queue()
633 qe->cmd = cmd; in submit_queue()
634 qe->p0 = p1; in submit_queue()
635 qe->p1 = p2; in submit_queue()
636 qe->p2 = p3; in submit_queue()
637 submit_qentry (dev, q, qe); in submit_queue()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/sun/
Dsunqe.c837 struct sunqe *qe; in qec_ether_init() local
849 qe = netdev_priv(dev); in qec_ether_init()
856 qe->channel = i; in qec_ether_init()
857 spin_lock_init(&qe->lock); in qec_ether_init()
863 qecp->qes[qe->channel] = qe; in qec_ether_init()
864 qe->dev = dev; in qec_ether_init()
865 qe->parent = qecp; in qec_ether_init()
866 qe->op = op; in qec_ether_init()
869 qe->qcregs = of_ioremap(&op->resource[0], 0, in qec_ether_init()
871 if (!qe->qcregs) { in qec_ether_init()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/brocade/bna/
Dbna_tx_rx.c352 list_for_each_entry(mac, &rxf->mcast_active_q, qe) in bna_rxf_mcmac_get()
356 list_for_each_entry(mac, &rxf->mcast_pending_del_q, qe) in bna_rxf_mcmac_get()
368 list_for_each_entry(mchandle, &rxf->mcast_handle_q, qe) in bna_rxf_mchandle_get()
387 list_add_tail(&mchandle->qe, &rxf->mcast_handle_q); in bna_rxf_mchandle_attach()
410 list_del(&mchandle->qe); in bna_rxf_mcast_del()
427 struct bna_mac, qe); in bna_rxf_mcast_cfg_apply()
429 list_move_tail(&mac->qe, bna_mcam_mod_del_q(rxf->rx->bna)); in bna_rxf_mcast_cfg_apply()
437 struct bna_mac, qe); in bna_rxf_mcast_cfg_apply()
438 list_move_tail(&mac->qe, &rxf->mcast_active_q); in bna_rxf_mcast_cfg_apply()
475 struct bna_mac, qe); in bna_rxf_mcast_cfg_reset()
[all …]
/kernel/linux/linux-5.10/drivers/scsi/arm/
Dmsgqueue.c55 msgq->qe = NULL; in msgqueue_initialise()
82 struct msgqueue_entry *mq = msgq->qe; in msgqueue_msglength()
85 for (mq = msgq->qe; mq; mq = mq->next) in msgqueue_msglength()
102 for (mq = msgq->qe; mq && msgno; mq = mq->next, msgno--); in msgqueue_getmsg()
133 mqp = &msgq->qe; in msgqueue_addmsg()
152 for (mq = msgq->qe; mq; mq = mqnext) { in msgqueue_flush()
156 msgq->qe = NULL; in msgqueue_flush()
/kernel/linux/linux-5.10/arch/powerpc/boot/dts/fsl/
Dt1024si-post.dtsi43 qe:qe@ffe140000 { label
46 device_type = "qe";
47 compatible = "fsl,qe";
50 fsl,qe-num-riscs = <1>;
51 fsl,qe-num-snums = <28>;
65 &qe {
68 compatible = "fsl,qe-ic";
92 compatible = "fsl,qe-muram", "fsl,cpm-muram";
96 compatible = "fsl,qe-muram-data", "fsl,cpm-muram-data";
Dmpc8569si-post.dtsi191 &qe {
194 device_type = "qe";
195 compatible = "fsl,qe";
199 fsl,qe-num-riscs = <4>;
200 fsl,qe-num-snums = <46>;
204 compatible = "fsl,qe-ic";
213 compatible = "fsl,mpc8569-qe-gtm",
214 "fsl,qe-gtm", "fsl,gtm";
225 compatible = "fsl,mpc8569-qe-spi", "fsl,spi";
243 compatible = "fsl,mpc8569-qe-usb",
[all …]
Dp1021si-post.dtsi179 &qe {
182 device_type = "qe";
183 compatible = "fsl,qe";
184 fsl,qe-num-riscs = <1>;
185 fsl,qe-num-snums = <28>;
189 compatible = "fsl,qe-ic";
234 compatible = "fsl,qe-muram", "fsl,cpm-muram";
238 compatible = "fsl,qe-muram-data",
Dmpc8568si-post.dtsi203 &qe {
206 device_type = "qe";
207 compatible = "fsl,qe";
211 fsl,qe-num-riscs = <2>;
212 fsl,qe-num-snums = <28>;
216 compatible = "fsl,qe-ic";
261 compatible = "fsl,qe-muram", "fsl,cpm-muram";
265 compatible = "fsl,qe-muram-data",
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/soc/fsl/cpm_qe/qe/
Dpar_io.txt31 - compatible : should be "fsl,<chip>-qe-pario-bank",
32 "fsl,mpc8323-qe-pario-bank".
39 compatible = "fsl,mpc8360-qe-pario-bank",
40 "fsl,mpc8323-qe-pario-bank";
47 compatible = "fsl,mpc8360-qe-pario-bank",
48 "fsl,mpc8323-qe-pario-bank";
Dusb.txt4 - compatible : should be "fsl,<chip>-qe-usb", "fsl,mpc8323-qe-usb".
24 compatible = "fsl,mpc8360-qe-usb", "fsl,mpc8323-qe-usb";
/kernel/linux/linux-5.10/arch/powerpc/boot/dts/
Dmpc836x_rdk.dts180 compatible = "fsl,mpc8360-qe-pario-bank",
181 "fsl,mpc8323-qe-pario-bank";
188 compatible = "fsl,mpc8360-qe-pario-bank",
189 "fsl,mpc8323-qe-pario-bank";
194 qe@100000 {
197 device_type = "qe";
198 compatible = "fsl,qe", "simple-bus";
205 fsl,qe-num-riscs = <2>;
206 fsl,qe-num-snums = <28>;
211 compatible = "fsl,qe-muram", "fsl,cpm-muram";
[all …]
Dmpc836x_mds.dts221 compatible = "fsl,mpc8360-qe-pario-bank",
222 "fsl,mpc8323-qe-pario-bank";
287 qe@e0100000 {
290 device_type = "qe";
291 compatible = "fsl,qe";
296 fsl,qe-num-riscs = <2>;
297 fsl,qe-num-snums = <28>;
302 compatible = "fsl,qe-muram", "fsl,cpm-muram";
306 compatible = "fsl,qe-muram-data",
313 compatible = "fsl,mpc8360-qe-gtm",
[all …]
Dmpc832x_rdb.dts163 compatible = "fsl,mpc8323-qe-pario";
169 compatible = "fsl,mpc8323-qe-pario-bank";
219 qe@e0100000 {
222 device_type = "qe";
223 compatible = "fsl,qe";
228 fsl,qe-num-riscs = <1>;
229 fsl,qe-num-snums = <28>;
234 compatible = "fsl,qe-muram", "fsl,cpm-muram";
238 compatible = "fsl,qe-muram-data",
253 mode = "cpu-qe";
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/timer/
Dfsl,gtm.txt6 "fsl,<chip>-qe-gtm", "fsl,qe-gtm", "fsl,gtm" for QE GTMs
24 compatible = "fsl,mpc8360-qe-gtm", "fsl,qe-gtm", "fsl,gtm";
/kernel/linux/linux-5.10/drivers/scsi/bfa/
Dbfa_fcpim.c25 list_add_tail(&(__itnim)->qe, &(__itnim)->fcpim->itnim_q)
29 list_del(&(__itnim)->qe); \
86 list_del(&(__ioim)->qe); \
87 list_add_tail(&(__ioim)->qe, &(__ioim)->fcpim->ioim_comp_q); \
338 struct list_head *qe, *qen; in bfa_fcpim_iocdisable() local
343 list_for_each_safe(qe, qen, &fcpim->itnim_q) { in bfa_fcpim_iocdisable()
344 itnim = (struct bfa_itnim_s *) qe; in bfa_fcpim_iocdisable()
425 struct list_head *qe, *qen; in bfa_fcpim_port_iostats() local
430 list_for_each_safe(qe, qen, &fcpim->itnim_q) { in bfa_fcpim_port_iostats()
431 itnim = (struct bfa_itnim_s *) qe; in bfa_fcpim_port_iostats()
[all …]
Dbfa_fcs.c950 struct list_head *qe, *qen; in bfa_fcs_fabric_notify_online() local
962 list_for_each_safe(qe, qen, &fabric->vport_q) { in bfa_fcs_fabric_notify_online()
963 vport = (struct bfa_fcs_vport_s *) qe; in bfa_fcs_fabric_notify_online()
972 struct list_head *qe, *qen; in bfa_fcs_fabric_notify_offline() local
980 list_for_each_safe(qe, qen, &fabric->vport_q) { in bfa_fcs_fabric_notify_offline()
981 vport = (struct bfa_fcs_vport_s *) qe; in bfa_fcs_fabric_notify_offline()
1006 struct list_head *qe, *qen; in bfa_fcs_fabric_stop() local
1010 list_for_each_safe(qe, qen, &fabric->vport_q) { in bfa_fcs_fabric_stop()
1011 vport = (struct bfa_fcs_vport_s *) qe; in bfa_fcs_fabric_stop()
1028 struct list_head *qe, *qen; in bfa_fcs_fabric_delete() local
[all …]
/kernel/linux/linux-5.10/tools/perf/
Dbuiltin-top.c897 ret = ordered_events__queue(top->qe.in, event, last_timestamp, 0); in perf_top__mmap_read_idx()
903 if (top->qe.rotate) { in perf_top__mmap_read_idx()
904 pthread_mutex_lock(&top->qe.mutex); in perf_top__mmap_read_idx()
905 top->qe.rotate = false; in perf_top__mmap_read_idx()
906 pthread_cond_signal(&top->qe.cond); in perf_top__mmap_read_idx()
907 pthread_mutex_unlock(&top->qe.mutex); in perf_top__mmap_read_idx()
1087 struct ordered_events *in = top->qe.in; in rotate_queues()
1089 if (top->qe.in == &top->qe.data[1]) in rotate_queues()
1090 top->qe.in = &top->qe.data[0]; in rotate_queues()
1092 top->qe.in = &top->qe.data[1]; in rotate_queues()
[all …]
/kernel/linux/linux-5.10/drivers/soc/fsl/
DMakefile7 obj-$(CONFIG_QUICC_ENGINE) += qe/
8 obj-$(CONFIG_CPM) += qe/
/kernel/linux/linux-5.10/tools/testing/selftests/ftrace/test.d/kprobe/
Dkprobe_args_string.tc34 grep -qe "testprobe.* arg1=\"test\"" trace
41 grep -qe "testprobe.* arg1=\"test\" arg2=\"test\"" trace

1234