Home
last modified time | relevance | path

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

1234

/linux/Documentation/devicetree/bindings/soc/fsl/cpm_qe/
A Dfsl,qe.yaml27 - const: fsl,qe
44 fsl,qe-num-riscs:
48 fsl,qe-snums:
63 "fsl,qe-firmware".
71 fsl,qe-num-snums:
81 $ref: fsl,qe-muram.yaml
84 $ref: fsl,qe-ic.yaml
87 $ref: fsl,qe-si.yaml
90 $ref: fsl,qe-siram.yaml
104 qe-bus@e0100000 {
[all …]
A Dfsl,qe-siram.yaml4 $id: http://devicetree.org/schemas/soc/fsl/cpm_qe/fsl,qe-siram.yaml#
20 - fsl,ls1043-qe-siram
21 - const: fsl,t1040-qe-siram
22 - const: fsl,t1040-qe-siram
36 compatible = "fsl,t1040-qe-siram";
A Dfsl,qe-si.yaml4 $id: http://devicetree.org/schemas/soc/fsl/cpm_qe/fsl,qe-si.yaml#
21 - fsl,ls1043-qe-si
22 - const: fsl,t1040-qe-si
24 - fsl,t1040-qe-si
38 compatible = "fsl,t1040-qe-si";
A Dfsl,qe-muram.yaml4 $id: http://devicetree.org/schemas/soc/fsl/cpm_qe/fsl,qe-muram.yaml#
17 - const: fsl,qe-muram
40 - const: fsl,qe-muram-data
61 compatible = "fsl,qe-muram", "fsl,cpm-muram";
67 compatible = "fsl,qe-muram-data",
A Dfsl,qe-ic.yaml4 $id: http://devicetree.org/schemas/soc/fsl/cpm_qe/fsl,qe-ic.yaml#
14 const: fsl,qe-ic
42 compatible = "fsl,qe-ic";
A Dfsl,qe-firmware.yaml4 $id: http://devicetree.org/schemas/soc/fsl/cpm_qe/fsl,qe-firmware.yaml#
30 - fsl,qe-firmware
45 qe-firmware {
46 compatible = "fsl,qe-firmware";
A Dfsl,qe-ucc-qmc.yaml4 $id: http://devicetree.org/schemas/soc/fsl/cpm_qe/fsl,qe-ucc-qmc.yaml#
21 - const: fsl,qe-ucc-qmc
44 TSA serial interface (dt-bindings/soc/qe-fsl,tsa.h defines these
79 - const: fsl,qe-ucc-qmc-hdlc
152 #include <dt-bindings/soc/qe-fsl,tsa.h>
155 compatible = "fsl,mpc8321-ucc-qmc", "fsl,qe-ucc-qmc";
189 "fsl,qe-ucc-qmc-hdlc",
/linux/drivers/soc/fsl/qe/
A Dqe.c61 if (qe) in qe_get_device_node()
62 return qe; in qe_get_device_node()
76 if (!qe) in get_qe_base()
82 of_node_put(qe); in get_qe_base()
170 if (!qe) in qe_get_brg_clk()
176 of_node_put(qe); in qe_get_brg_clk()
311 if (qe) { in qe_snums_init()
587 if (!qe) in qe_get_firmware_info()
592 of_node_put(qe); in qe_get_firmware_info()
624 if (!qe) in qe_get_num_of_risc()
[all …]
/linux/drivers/net/ethernet/chelsio/cxgb4/
A Dsched.c141 found = qe; in t4_sched_entry_lookup()
182 return qe ? &pi->sched_tbl->tab[qe->param.class] : NULL; in cxgb4_sched_queue_lookup()
200 if (qe) { in t4_sched_queue_unbind()
207 list_del(&qe->list); in t4_sched_queue_unbind()
208 kvfree(qe); in t4_sched_queue_unbind()
229 if (!qe) in t4_sched_queue_bind()
241 qe->cntxt_id = qid; in t4_sched_queue_bind()
242 memcpy(&qe->param, p, sizeof(qe->param)); in t4_sched_queue_bind()
255 kvfree(qe); in t4_sched_queue_bind()
412 class_id = qe->class; in cxgb4_sched_class_bind()
[all …]
A Dcxgb4_tc_matchall.c58 struct ch_sched_queue qe; in cxgb4_matchall_egress_validate() local
110 memset(&qe, 0, sizeof(qe)); in cxgb4_matchall_egress_validate()
111 qe.queue = i; in cxgb4_matchall_egress_validate()
127 struct ch_sched_queue qe; in cxgb4_matchall_tc_bind_queues() local
132 qe.queue = i; in cxgb4_matchall_tc_bind_queues()
133 qe.class = tc; in cxgb4_matchall_tc_bind_queues()
143 qe.queue = i; in cxgb4_matchall_tc_bind_queues()
144 qe.class = SCHED_CLS_NONE; in cxgb4_matchall_tc_bind_queues()
154 struct ch_sched_queue qe; in cxgb4_matchall_tc_unbind_queues() local
158 qe.queue = i; in cxgb4_matchall_tc_unbind_queues()
[all …]
/linux/security/integrity/ima/
A Dima_queue.c51 struct ima_queue_entry *qe, *ret = NULL; in ima_lookup_digest_entry() local
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()
107 list_add_tail_rcu(&qe->later, &ima_measurements); in ima_add_digest_entry()
[all …]
A 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()
152 struct ima_queue_entry *qe = v; in ima_measurements_show() local
168 e = qe->entry; in ima_measurements_show()
250 struct ima_queue_entry *qe = v; in ima_ascii_measurements_show() local
264 e = qe->entry; in ima_ascii_measurements_show()
/linux/drivers/net/ethernet/sun/
A Dsunqe.c856 qe->channel = i; in qec_ether_init()
863 qecp->qes[qe->channel] = qe; in qec_ether_init()
864 qe->dev = dev; in qec_ether_init()
866 qe->op = op; in qec_ether_init()
887 if (qe->qe_block == NULL || qe->qblock_dvma == 0 || in qec_ether_init()
888 qe->buffers == NULL || qe->buffers_dvma == 0) in qec_ether_init()
892 qe_stop(qe); in qec_ether_init()
913 if (qe->qcregs) in qec_ether_init()
915 if (qe->mregs) in qec_ether_init()
919 qe->qe_block, qe->qblock_dvma); in qec_ether_init()
[all …]
/linux/drivers/net/ethernet/brocade/bna/
A Dbna_tx_rx.c910 list_del(&mac->qe); in bna_rx_mcast_delall()
1767 list_del(&rxq->qe); in bna_rxq_get()
1786 list_del(&rxp->qe); in bna_rxp_get()
1826 list_add(&rx->qe, qe); in bna_rx_put()
2495 list_del(&rxp->qe); in bna_rx_destroy()
2523 if (qe == &rx->qe) { in bna_rx_destroy()
2524 list_del(&rx->qe); in bna_rx_destroy()
3207 list_del(&tx->qe); in bna_tx_get()
3228 if (qe == &tx->qe) { in bna_tx_free()
3229 list_del(&tx->qe); in bna_tx_free()
[all …]
/linux/drivers/scsi/arm/
A 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()
/linux/arch/powerpc/boot/dts/fsl/
A 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";
A 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";
243 compatible = "fsl,mpc8569-qe-usb",
244 "fsl,mpc8323-qe-usb";
[all …]
/linux/arch/powerpc/boot/dts/
A Dmpc836x_rdk.dts181 "fsl,mpc8323-qe-pario-bank";
189 "fsl,mpc8323-qe-pario-bank";
194 qe@100000 {
197 device_type = "qe";
205 fsl,qe-num-riscs = <2>;
206 fsl,qe-num-snums = <28>;
223 "fsl,qe-gtm", "fsl,gtm";
232 "fsl,mpc8323-qe-usb";
252 mode = "cpu-qe";
261 mode = "cpu-qe";
[all …]
A 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 …]
/linux/Documentation/devicetree/bindings/soc/fsl/cpm_qe/qe/
A 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";
A Dusb.txt4 - compatible : should be "fsl,<chip>-qe-usb", "fsl,mpc8323-qe-usb".
24 compatible = "fsl,mpc8360-qe-usb", "fsl,mpc8323-qe-usb";
/linux/drivers/scsi/bfa/
A Dbfa_fcpim.c975 list_del(&ioim->qe); in bfa_itnim_cleanup()
1996 list_del(&ioim->qe); in bfa_ioim_sm_hcb_free()
2624 list_del(&ioim->qe); in bfa_ioim_notify_cleanup()
2630 list_del(&ioim->qe); in bfa_ioim_notify_cleanup()
2675 list_del(&ioim->qe); in bfa_ioim_delayed_comp()
2933 list_del(&ioim->qe); in bfa_ioim_free()
3270 list_del(&ioim->qe); in bfa_tskim_gather_ios()
3283 list_del(&ioim->qe); in bfa_tskim_gather_ios()
3528 list_del(&tskim->qe); in bfa_tskim_free()
3563 struct list_head *qe; in bfa_tskim_res_recfg() local
[all …]
A Dbfa_fcs.c950 struct list_head *qe, *qen; in bfa_fcs_fabric_notify_online() local
972 struct list_head *qe, *qen; in bfa_fcs_fabric_notify_offline() local
1006 struct list_head *qe, *qen; in bfa_fcs_fabric_stop() local
1028 struct list_head *qe, *qen; in bfa_fcs_fabric_delete() local
1140 list_del(&vport->qe); in bfa_fcs_fabric_delvport()
1153 struct list_head *qe; in bfa_fcs_fabric_vport_lookup() local
1155 list_for_each(qe, &fabric->vport_q) { in bfa_fcs_fabric_vport_lookup()
1199 struct list_head *qe; in bfa_fcs_fabric_uf_recv() local
1245 list_for_each(qe, &fabric->vport_q) { in bfa_fcs_fabric_uf_recv()
1458 struct list_head *qe; in bfa_fcs_vf_get_ports() local
[all …]
/linux/tools/perf/
A Dbuiltin-top.c900 if (top->qe.rotate) { in perf_top__mmap_read_idx()
902 top->qe.rotate = false; in perf_top__mmap_read_idx()
1093 if (top->qe.in == &top->qe.data[1]) in rotate_queues()
1094 top->qe.in = &top->qe.data[0]; in rotate_queues()
1096 top->qe.in = &top->qe.data[1]; in rotate_queues()
1116 top->qe.rotate = true; in process_thread()
1117 cond_wait(&top->qe.cond, &top->qe.mutex); in process_thread()
1231 top->qe.in = &top->qe.data[0]; in init_process_thread()
1232 mutex_init(&top->qe.mutex); in init_process_thread()
1233 cond_init(&top->qe.cond); in init_process_thread()
[all …]
/linux/Documentation/devicetree/bindings/timer/
A 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";

Completed in 61 milliseconds

1234