Home
last modified time | relevance | path

Searched refs:ae (Results 1 – 25 of 53) sorted by relevance

123

/Linux-v5.4/drivers/crypto/qat/qat_common/
Dqat_hal.c79 #define AE(handle, ae) handle->hal_handle->aes[ae] argument
113 unsigned char ae, unsigned int ctx_mask) in qat_hal_set_live_ctx() argument
115 AE(handle, ae).live_ctx_mask = ctx_mask; in qat_hal_set_live_ctx()
120 unsigned char ae, unsigned int csr) in qat_hal_rd_ae_csr() argument
126 value = GET_AE_CSR(handle, ae, csr); in qat_hal_rd_ae_csr()
127 if (!(GET_AE_CSR(handle, ae, LOCAL_CSR_STATUS) & LCS_STATUS)) in qat_hal_rd_ae_csr()
136 unsigned char ae, unsigned int csr, in qat_hal_wr_ae_csr() argument
142 SET_AE_CSR(handle, ae, csr, value); in qat_hal_wr_ae_csr()
143 if (!(GET_AE_CSR(handle, ae, LOCAL_CSR_STATUS) & LCS_STATUS)) in qat_hal_wr_ae_csr()
152 unsigned char ae, unsigned char ctx, in qat_hal_get_wakeup_event() argument
[all …]
Dicp_qat_hal.h140 #define AE_CSR(handle, ae) \ argument
142 ((ae & handle->hal_handle->ae_mask) << 12))
143 #define AE_CSR_ADDR(handle, ae, csr) (AE_CSR(handle, ae) + (0x3ff & csr)) argument
144 #define SET_AE_CSR(handle, ae, csr, val) \ argument
145 ADF_CSR_WR(AE_CSR_ADDR(handle, ae, csr), 0, val)
146 #define GET_AE_CSR(handle, ae, csr) ADF_CSR_RD(AE_CSR_ADDR(handle, ae, csr), 0) argument
147 #define AE_XFER(handle, ae) \ argument
149 ((ae & handle->hal_handle->ae_mask) << 12))
150 #define AE_XFER_ADDR(handle, ae, reg) (AE_XFER(handle, ae) + \ argument
152 #define SET_AE_XFER(handle, ae, reg, val) \ argument
[all …]
Dqat_uclo.c63 unsigned int ae, unsigned int image_num) in qat_uclo_init_ae_data() argument
70 ae_data = &obj_handle->ae_data[ae]; in qat_uclo_init_ae_data()
184 unsigned char ae, unsigned int addr, in qat_uclo_wr_umem_by_words() argument
195 qat_hal_wr_umem(handle, ae, addr++, 1, &outval); in qat_uclo_wr_umem_by_words()
202 unsigned char ae, in qat_uclo_batch_wr_umem() argument
214 ae = umem_init->ae; in qat_uclo_batch_wr_umem()
218 qat_uclo_wr_umem_by_words(handle, ae, addr, value, size); in qat_uclo_batch_wr_umem()
243 unsigned long ae = 0; in qat_uclo_parse_num() local
253 if ((kstrtoul(buf, 10, &ae))) in qat_uclo_parse_num()
256 *num = (unsigned int)ae; in qat_uclo_parse_num()
[all …]
Dadf_accel_engine.c121 uint32_t ae_ctr, ae, max_aes = GET_MAX_ACCELENGINES(accel_dev); in adf_ae_start() local
126 for (ae = 0, ae_ctr = 0; ae < max_aes; ae++) { in adf_ae_start()
127 if (hw_data->ae_mask & (1 << ae)) { in adf_ae_start()
128 qat_hal_start(loader_data->fw_loader, ae, 0xFF); in adf_ae_start()
142 uint32_t ae_ctr, ae, max_aes = GET_MAX_ACCELENGINES(accel_dev); in adf_ae_stop() local
147 for (ae = 0, ae_ctr = 0; ae < max_aes; ae++) { in adf_ae_stop()
148 if (hw_data->ae_mask & (1 << ae)) { in adf_ae_stop()
149 qat_hal_stop(loader_data->fw_loader, ae, 0xFF); in adf_ae_stop()
159 static int adf_ae_reset(struct adf_accel_dev *accel_dev, int ae) in adf_ae_reset() argument
Dadf_common_drv.h180 void qat_hal_start(struct icp_qat_fw_loader_handle *handle, unsigned char ae,
182 void qat_hal_stop(struct icp_qat_fw_loader_handle *handle, unsigned char ae,
187 unsigned char ae, unsigned int ctx_mask);
189 unsigned int ae);
191 unsigned char ae, enum icp_qat_uof_regtype lm_type,
194 unsigned char ae, unsigned char mode);
196 unsigned char ae, unsigned char mode);
198 unsigned char ae, unsigned int ctx_mask, unsigned int upc);
200 unsigned char ae, unsigned int uaddr,
202 void qat_hal_wr_umem(struct icp_qat_fw_loader_handle *handle, unsigned char ae,
[all …]
Dadf_admin.c154 static int adf_put_admin_msg_sync(struct adf_accel_dev *accel_dev, u32 ae, in adf_put_admin_msg_sync() argument
158 int offset = ae * ADF_ADMINMSG_LEN * 2; in adf_put_admin_msg_sync()
160 int mb_offset = ae * ADF_DH895XCC_MAILBOX_STRIDE; in adf_put_admin_msg_sync()
/Linux-v5.4/drivers/scsi/lpfc/
Dlpfc_ct.c2023 struct lpfc_fdmi_attr_entry *ae; in lpfc_fdmi_hba_attr_wwnn() local
2026 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue; in lpfc_fdmi_hba_attr_wwnn()
2027 memset(ae, 0, sizeof(struct lpfc_name)); in lpfc_fdmi_hba_attr_wwnn()
2029 memcpy(&ae->un.AttrWWN, &vport->fc_sparam.nodeName, in lpfc_fdmi_hba_attr_wwnn()
2040 struct lpfc_fdmi_attr_entry *ae; in lpfc_fdmi_hba_attr_manufacturer() local
2043 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue; in lpfc_fdmi_hba_attr_manufacturer()
2044 memset(ae, 0, 256); in lpfc_fdmi_hba_attr_manufacturer()
2049 strncpy(ae->un.AttrString, in lpfc_fdmi_hba_attr_manufacturer()
2051 sizeof(ae->un.AttrString)); in lpfc_fdmi_hba_attr_manufacturer()
2052 len = strnlen(ae->un.AttrString, in lpfc_fdmi_hba_attr_manufacturer()
[all …]
/Linux-v5.4/drivers/scsi/esas2r/
Desas2r_int.c702 static void esas2r_lun_event(struct esas2r_adapter *a, union atto_vda_ae *ae, in esas2r_lun_event() argument
712 esas2r_trace("ae->lu.dwevent: %x", ae->lu.dwevent); in esas2r_lun_event()
713 esas2r_trace("ae->lu.bystate: %x", ae->lu.bystate); in esas2r_lun_event()
719 if (ae->lu.dwevent & VDAAE_LU_LOST) { in esas2r_lun_event()
722 switch (ae->lu.bystate) { in esas2r_lun_event()
738 memcpy(&t->lu_event, &ae->lu, cplen); in esas2r_lun_event()
750 union atto_vda_ae *ae = in esas2r_ae_complete() local
770 last = ae; in esas2r_ae_complete()
773 while (ae < last) { in esas2r_ae_complete()
776 esas2r_trace("ae: %p", ae); in esas2r_ae_complete()
[all …]
Desas2r_main.c1446 void esas2r_nuxi_ae_data(union atto_vda_ae *ae) in esas2r_nuxi_ae_data() argument
1448 struct atto_vda_ae_raid *r = &ae->raid; in esas2r_nuxi_ae_data()
1449 struct atto_vda_ae_lu *l = &ae->lu; in esas2r_nuxi_ae_data()
1451 switch (ae->hdr.bytype) { in esas2r_nuxi_ae_data()
1704 struct esas2r_vda_ae *ae = (struct esas2r_vda_ae *)fw_event->data; in esas2r_send_ae_event() local
1707 switch (ae->vda_ae.hdr.bytype) { in esas2r_send_ae_event()
1776 esas2r_log_hexdump(ESAS2R_LOG_WARN, &ae->vda_ae, in esas2r_send_ae_event()
1777 ae->vda_ae.hdr.bylength); in esas2r_send_ae_event()
1836 struct esas2r_vda_ae *ae = in esas2r_queue_fw_event() local
1839 ae->signature = ESAS2R_VDA_EVENT_SIG; in esas2r_queue_fw_event()
[all …]
/Linux-v5.4/security/selinux/
Davc.c53 struct avc_entry ae; member
331 node->ae.xp_node->xp.len++; in avc_add_xperms_decision()
336 list_add(&dest_xpd->xpd_list, &node->ae.xp_node->xpd_head); in avc_add_xperms_decision()
375 node->ae.xp_node = dest; in avc_xperms_populate()
433 avc_xperms_free(node->ae.xp_node); in avc_node_free()
447 avc_xperms_free(node->ae.xp_node); in avc_node_kill()
517 node->ae.ssid = ssid; in avc_node_populate()
518 node->ae.tsid = tsid; in avc_node_populate()
519 node->ae.tclass = tclass; in avc_node_populate()
520 memcpy(&node->ae.avd, avd, sizeof(node->ae.avd)); in avc_node_populate()
[all …]
/Linux-v5.4/Documentation/devicetree/bindings/net/
Dhisilicon-hns-nic.txt7 - ae-handle: accelerator engine handle for hns,
42 - port-idx-in-ae: is the index of port provided by AE.
44 to the CPU. The port-idx-in-ae can be 0 to 5. Here is the diagram:
55 single NIC connected to this switch. In this case, the port-idx-in-ae
73 ae-handle = <&dsaf0>;
74 port-idx-in-ae = <0>;
/Linux-v5.4/arch/powerpc/perf/
Dpower7-pmu.c159 s64 ae; in power7_get_alternatives() local
166 ae = event_alternatives[i][j]; in power7_get_alternatives()
167 if (ae && ae != event) in power7_get_alternatives()
168 alt[nalt++] = ae; in power7_get_alternatives()
171 ae = find_alternative_decode(event); in power7_get_alternatives()
172 if (ae > 0) in power7_get_alternatives()
173 alt[nalt++] = ae; in power7_get_alternatives()
Dpower5+-pmu.c276 s64 ae; in power5p_get_alternatives() local
284 ae = event_alternatives[i][j]; in power5p_get_alternatives()
285 if (ae && ae != event) in power5p_get_alternatives()
286 alt[nalt++] = ae; in power5p_get_alternatives()
287 nlim += power5p_limited_pmc_event(ae); in power5p_get_alternatives()
290 ae = find_alternative_bdecode(event); in power5p_get_alternatives()
291 if (ae > 0) in power5p_get_alternatives()
292 alt[nalt++] = ae; in power5p_get_alternatives()
Dpower5-pmu.c271 s64 ae; in power5_get_alternatives() local
278 ae = event_alternatives[i][j]; in power5_get_alternatives()
279 if (ae && ae != event) in power5_get_alternatives()
280 alt[nalt++] = ae; in power5_get_alternatives()
283 ae = find_alternative_bdecode(event); in power5_get_alternatives()
284 if (ae > 0) in power5_get_alternatives()
285 alt[nalt++] = ae; in power5_get_alternatives()
Dmpc7450-pmu.c225 u32 ae; in mpc7450_get_alternatives() local
232 ae = event_alternatives[i][j]; in mpc7450_get_alternatives()
233 if (ae && ae != (u32)event) in mpc7450_get_alternatives()
234 alt[nalt++] = ae; in mpc7450_get_alternatives()
/Linux-v5.4/arch/ia64/kernel/
Defi.c976 u64 as = 0, ae; in find_memmap_space() local
1019 ae = min(contig_high, efi_md_end(md)); in find_memmap_space()
1023 ae = min(ae, max_addr); in find_memmap_space()
1024 if (ae <= as) in find_memmap_space()
1028 if (total_mem + (ae - as) > mem_limit) in find_memmap_space()
1029 ae -= total_mem + (ae - as) - mem_limit; in find_memmap_space()
1031 if (ae <= as) in find_memmap_space()
1034 if (ae - as > space_needed) in find_memmap_space()
1053 u64 as, ae, lim; in efi_memmap_init() local
1136 ae = contig_high; in efi_memmap_init()
[all …]
/Linux-v5.4/drivers/misc/mic/host/
Dmic_smpt.c91 int ae = 0; in mic_smpt_op() local
103 ae++; in mic_smpt_op()
105 } else if (ae) /* cannot find contiguous entries */ in mic_smpt_op()
108 if (ae == entries) in mic_smpt_op()
113 for (ae = 0, i = 0; i < smpt_info->info.num_reg; i++) { in mic_smpt_op()
114 ae = (smpt_info->entry[i].ref_count == 0) ? ae + 1 : 0; in mic_smpt_op()
115 if (ae == entries) in mic_smpt_op()
/Linux-v5.4/drivers/staging/media/ipu3/
Dipu3-css-params.c2450 acc->ae.grid_cfg = acc_user->ae.grid_cfg; in imgu_css_cfg_acc()
2451 acc->ae.ae_ccm = acc_user->ae.ae_ccm; in imgu_css_cfg_acc()
2453 acc->ae.weights[i] = acc_user->ae.weights[i]; in imgu_css_cfg_acc()
2456 acc->ae.grid_cfg = acc_old->ae.grid_cfg; in imgu_css_cfg_acc()
2457 acc->ae.ae_ccm = acc_old->ae.ae_ccm; in imgu_css_cfg_acc()
2459 acc->ae.weights[i] = acc_old->ae.weights[i]; in imgu_css_cfg_acc()
2465 acc->ae.grid_cfg = imgu_css_ae_grid_defaults; in imgu_css_cfg_acc()
2466 acc->ae.ae_ccm = imgu_css_ae_ccm_defaults; in imgu_css_cfg_acc()
2468 acc->ae.weights[i] = weight_def; in imgu_css_cfg_acc()
2471 b_w_log2 = acc->ae.grid_cfg.block_width_log2; in imgu_css_cfg_acc()
[all …]
/Linux-v5.4/Documentation/scsi/
Dtcm_qla2xxx.txt19 echo 1 > /sys/kernel/config/target/qla2xxx/21:00:00:24:ff:27:8f:ae/tpgt_1/attrib/jam_host
22 echo 0 > /sys/kernel/config/target/qla2xxx/21:00:00:24:ff:27:8f:ae/tpgt_1/attrib/jam_host
/Linux-v5.4/lib/
Dtest_hexdump.c167 int ae, he, e, f, r; in test_hexdump_overflow() local
180 ae = rs * 2 /* hex */ + rs / gs /* spaces */ + 1 /* space */ + len /* ascii */; in test_hexdump_overflow()
184 e = ae; in test_hexdump_overflow()
/Linux-v5.4/arch/arm64/boot/dts/hisilicon/
Dhip06.dtsi568 ae-handle = <&dsaf0>;
569 port-idx-in-ae = <4>;
577 ae-handle = <&dsaf0>;
578 port-idx-in-ae = <5>;
586 ae-handle = <&dsaf0>;
587 port-idx-in-ae = <0>;
595 ae-handle = <&dsaf0>;
596 port-idx-in-ae = <1>;
/Linux-v5.4/arch/powerpc/crypto/
Daes-tab-4k.S50 .long R(3d, 93, 93, ae), R(4c, 26, 26, 6a)
128 .long R(47, ae, ae, e9), R(10, 08, 08, 18)
142 .long R(ae, 57, 57, f9), R(69, b9, b9, d0)
186 .long R(b1, 64, 77, e0), R(bb, 6b, ae, 84)
205 .long R(dd, 3e, 05, ae), R(4d, e6, bd, 46)
217 .long R(3d, ae, d5, 1e), R(36, 2d, 39, 27)
237 .long R(ae, f9, 32, 11), R(c7, 29, a1, 6d)
/Linux-v5.4/scripts/
Ddepmod.sh42 set -- -ae -F System.map
/Linux-v5.4/Documentation/devicetree/bindings/iio/magnetometer/
Dbmc150_magn.txt3 http://ae-bst.resource.bosch.com/media/products/dokumente/bmc150/BST-BMC150-DS000-04.pdf
/Linux-v5.4/drivers/crypto/cavium/cpt/
Dcpt_hw_types.h195 u64 ae:8; member
201 u64 ae:8;

123