Home
last modified time | relevance | path

Searched refs:crt (Results 1 – 67 of 67) sorted by relevance

/linux-4.4.14/drivers/gpu/drm/i915/
Dintel_crt.c71 struct intel_crt *crt = intel_encoder_to_crt(encoder); in intel_crt_get_hw_state() local
79 tmp = I915_READ(crt->adpa_reg); in intel_crt_get_hw_state()
95 struct intel_crt *crt = intel_encoder_to_crt(encoder); in intel_crt_get_flags() local
98 tmp = I915_READ(crt->adpa_reg); in intel_crt_get_flags()
147 struct intel_crt *crt = intel_encoder_to_crt(encoder); in intel_crt_set_dpms() local
190 I915_WRITE(crt->adpa_reg, adpa); in intel_crt_set_dpms()
209 struct intel_crt *crt = intel_encoder_to_crt(encoder); in intel_enable_crt() local
211 intel_crt_set_dpms(encoder, crt->connector->base.dpms); in intel_enable_crt()
276 struct intel_crt *crt = intel_attached_crt(connector); in intel_ironlake_crt_detect_hotplug() local
282 if (crt->force_hotplug_required) { in intel_ironlake_crt_detect_hotplug()
[all …]
Dintel_display.c15002 struct drm_connector *crt = NULL; in intel_enable_pipe_a() local
15011 crt = &connector->base; in intel_enable_pipe_a()
15016 if (!crt) in intel_enable_pipe_a()
15019 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx)) in intel_enable_pipe_a()
15020 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx); in intel_enable_pipe_a()
/linux-4.4.14/drivers/s390/crypto/
Dzcrypt_cca_key.h274 static inline int zcrypt_type6_crt_key(struct ica_rsa_modexpo_crt *crt, in zcrypt_type6_crt_key() argument
294 short_len = (crt->inputdatalength + 1) / 2; in zcrypt_type6_crt_key()
297 key_len = 3*long_len + 2*short_len + pad_len + crt->inputdatalength; in zcrypt_type6_crt_key()
320 key->pvt.mod_len = crt->inputdatalength; in zcrypt_type6_crt_key()
324 if (copy_from_user(key->key_parts, crt->np_prime, long_len) || in zcrypt_type6_crt_key()
326 crt->nq_prime, short_len) || in zcrypt_type6_crt_key()
328 crt->bp_key, long_len) || in zcrypt_type6_crt_key()
330 crt->bq_key, short_len) || in zcrypt_type6_crt_key()
332 crt->u_mult_inv, long_len)) in zcrypt_type6_crt_key()
335 0xff, crt->inputdatalength); in zcrypt_type6_crt_key()
[all …]
Dzcrypt_msgtype50.c245 struct ica_rsa_modexpo_crt *crt) in ICACRT_msg_to_type50CRT_msg() argument
250 mod_len = crt->inputdatalength; in ICACRT_msg_to_type50CRT_msg()
306 if (copy_from_user(p, crt->np_prime + MSGTYPE_ADJUSTMENT, short_len) || in ICACRT_msg_to_type50CRT_msg()
307 copy_from_user(q, crt->nq_prime, short_len) || in ICACRT_msg_to_type50CRT_msg()
308 copy_from_user(dp, crt->bp_key + MSGTYPE_ADJUSTMENT, short_len) || in ICACRT_msg_to_type50CRT_msg()
309 copy_from_user(dq, crt->bq_key, short_len) || in ICACRT_msg_to_type50CRT_msg()
310 copy_from_user(u, crt->u_mult_inv + MSGTYPE_ADJUSTMENT, short_len) || in ICACRT_msg_to_type50CRT_msg()
311 copy_from_user(inp, crt->inputdata, mod_len)) in ICACRT_msg_to_type50CRT_msg()
471 struct ica_rsa_modexpo_crt *crt) in zcrypt_cex2a_modexpo_crt() argument
490 rc = ICACRT_msg_to_type50CRT_msg(zdev, &ap_msg, crt); in zcrypt_cex2a_modexpo_crt()
[all …]
Dzcrypt_api.c467 static long zcrypt_rsa_crt(struct ica_rsa_modexpo_crt *crt) in zcrypt_rsa_crt() argument
473 if (crt->outputdatalength < crt->inputdatalength) in zcrypt_rsa_crt()
480 crt->outputdatalength = crt->inputdatalength; in zcrypt_rsa_crt()
488 zdev->min_mod_size > crt->inputdatalength || in zcrypt_rsa_crt()
489 zdev->max_mod_size < crt->inputdatalength) in zcrypt_rsa_crt()
491 if (zdev->short_crt && crt->inputdatalength > 240) { in zcrypt_rsa_crt()
505 if (crt->inputdatalength <= 256) in zcrypt_rsa_crt()
506 len = crt->inputdatalength / 2 - 120; in zcrypt_rsa_crt()
512 if (copy_from_user(&z1, crt->np_prime, len) || in zcrypt_rsa_crt()
513 copy_from_user(&z2, crt->bp_key, len) || in zcrypt_rsa_crt()
[all …]
Dzcrypt_msgtype6.c230 struct ica_rsa_modexpo_crt *crt) in ICACRT_msg_to_type6CRT_msgX() argument
259 msg->length = crt->inputdatalength + 2; in ICACRT_msg_to_type6CRT_msgX()
260 if (copy_from_user(msg->text, crt->inputdata, crt->inputdatalength)) in ICACRT_msg_to_type6CRT_msgX()
264 size = zcrypt_type6_crt_key(crt, msg->text + crt->inputdatalength, 1); in ICACRT_msg_to_type6CRT_msgX()
267 size += sizeof(*msg) + crt->inputdatalength; /* total size of msg */ in ICACRT_msg_to_type6CRT_msgX()
956 struct ica_rsa_modexpo_crt *crt) in zcrypt_msgtype6_modexpo_crt() argument
972 rc = ICACRT_msg_to_type6CRT_msgX(zdev, &ap_msg, crt); in zcrypt_msgtype6_modexpo_crt()
982 crt->outputdata, in zcrypt_msgtype6_modexpo_crt()
983 crt->outputdatalength); in zcrypt_msgtype6_modexpo_crt()
/linux-4.4.14/crypto/
Dshash.c336 struct crypto_ahash *crt = __crypto_ahash_cast(tfm); in crypto_init_shash_ops_async() local
352 crt->init = shash_async_init; in crypto_init_shash_ops_async()
353 crt->update = shash_async_update; in crypto_init_shash_ops_async()
354 crt->final = shash_async_final; in crypto_init_shash_ops_async()
355 crt->finup = shash_async_finup; in crypto_init_shash_ops_async()
356 crt->digest = shash_async_digest; in crypto_init_shash_ops_async()
357 crt->setkey = shash_async_setkey; in crypto_init_shash_ops_async()
359 crt->has_setkey = alg->setkey != shash_no_setkey; in crypto_init_shash_ops_async()
362 crt->export = shash_async_export; in crypto_init_shash_ops_async()
364 crt->import = shash_async_import; in crypto_init_shash_ops_async()
[all …]
Dablkcipher.c366 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher; in crypto_init_ablkcipher_ops() local
371 crt->setkey = setkey; in crypto_init_ablkcipher_ops()
372 crt->encrypt = alg->encrypt; in crypto_init_ablkcipher_ops()
373 crt->decrypt = alg->decrypt; in crypto_init_ablkcipher_ops()
375 crt->givencrypt = skcipher_null_givencrypt; in crypto_init_ablkcipher_ops()
376 crt->givdecrypt = skcipher_null_givdecrypt; in crypto_init_ablkcipher_ops()
378 crt->base = __crypto_ablkcipher_cast(tfm); in crypto_init_ablkcipher_ops()
379 crt->ivsize = alg->ivsize; in crypto_init_ablkcipher_ops()
448 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher; in crypto_init_givcipher_ops() local
453 crt->setkey = tfm->__crt_alg->cra_flags & CRYPTO_ALG_GENIV ? in crypto_init_givcipher_ops()
[all …]
Dblkcipher.c463 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher; in crypto_init_blkcipher_ops_async() local
466 crt->setkey = async_setkey; in crypto_init_blkcipher_ops_async()
467 crt->encrypt = async_encrypt; in crypto_init_blkcipher_ops_async()
468 crt->decrypt = async_decrypt; in crypto_init_blkcipher_ops_async()
470 crt->givencrypt = skcipher_null_givencrypt; in crypto_init_blkcipher_ops_async()
471 crt->givdecrypt = skcipher_null_givdecrypt; in crypto_init_blkcipher_ops_async()
473 crt->base = __crypto_ablkcipher_cast(tfm); in crypto_init_blkcipher_ops_async()
474 crt->ivsize = alg->ivsize; in crypto_init_blkcipher_ops_async()
481 struct blkcipher_tfm *crt = &tfm->crt_blkcipher; in crypto_init_blkcipher_ops_sync() local
486 crt->setkey = setkey; in crypto_init_blkcipher_ops_sync()
[all …]
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/
Dcl_page.c1150 static enum cl_page_state cl_req_type_state(enum cl_req_type crt) in cl_req_type_state() argument
1152 return crt == CRT_WRITE ? CPS_PAGEOUT : CPS_PAGEIN; in cl_req_type_state()
1156 struct cl_page *pg, enum cl_req_type crt) in cl_page_io_start() argument
1162 cl_page_state_set(env, pg, cl_req_type_state(crt)); in cl_page_io_start()
1173 struct cl_page *pg, enum cl_req_type crt) in cl_page_prep() argument
1179 PINVRNT(env, pg, crt < CRT_NR); in cl_page_prep()
1186 if (crt >= CRT_NR) in cl_page_prep()
1188 result = cl_page_invoke(env, io, pg, CL_PAGE_OP(io[crt].cpo_prep)); in cl_page_prep()
1190 cl_page_io_start(env, pg, crt); in cl_page_prep()
1192 CL_PAGE_HEADER(D_TRACE, env, pg, "%d %d\n", crt, result); in cl_page_prep()
[all …]
Dcl_io.c871 enum cl_req_type crt, struct cl_2queue *queue) in cl_io_submit_rw() argument
876 LINVRNT(crt < ARRAY_SIZE(scan->cis_iop->req_op)); in cl_io_submit_rw()
879 if (scan->cis_iop->req_op[crt].cio_submit == NULL) in cl_io_submit_rw()
881 result = scan->cis_iop->req_op[crt].cio_submit(env, scan, crt, in cl_io_submit_rw()
1377 enum cl_req_type crt, int nr_objects) in cl_req_alloc() argument
1387 req->crq_type = crt; in cl_req_alloc()
/linux-4.4.14/drivers/video/fbdev/geode/
Dvideo_gx.c302 int blank, hsync, vsync, crt; in gx_blank_display() local
307 blank = 0; hsync = 1; vsync = 1; crt = 1; in gx_blank_display()
310 blank = 1; hsync = 1; vsync = 1; crt = 1; in gx_blank_display()
313 blank = 1; hsync = 1; vsync = 0; crt = 1; in gx_blank_display()
316 blank = 1; hsync = 0; vsync = 1; crt = 1; in gx_blank_display()
319 blank = 1; hsync = 0; vsync = 0; crt = 0; in gx_blank_display()
333 if (crt) in gx_blank_display()
Dgx1fb_core.c467 module_param_named(crt, crt_option, int, 0444);
468 MODULE_PARM_DESC(crt, "enable CRT output. 0 = off, 1 = on (default)");
/linux-4.4.14/include/crypto/
Dskcipher.h83 struct ablkcipher_tfm *crt = in crypto_skcipher_givencrypt() local
85 return crt->givencrypt(req); in crypto_skcipher_givencrypt()
91 struct ablkcipher_tfm *crt = in crypto_skcipher_givdecrypt() local
93 return crt->givdecrypt(req); in crypto_skcipher_givdecrypt()
/linux-4.4.14/drivers/video/fbdev/
Dtdfxfb.c363 crt_outb(par, i, reg->crt[i]); in do_write_regs()
593 reg.crt[0x09] = 0x80; in tdfxfb_set_par()
641 reg.crt[0x00] = ht - 4; in tdfxfb_set_par()
642 reg.crt[0x01] = hd; in tdfxfb_set_par()
643 reg.crt[0x02] = hbs; in tdfxfb_set_par()
644 reg.crt[0x03] = 0x80 | (hbe & 0x1f); in tdfxfb_set_par()
645 reg.crt[0x04] = hs; in tdfxfb_set_par()
646 reg.crt[0x05] = ((hbe & 0x20) << 2) | (he & 0x1f); in tdfxfb_set_par()
647 reg.crt[0x06] = vt; in tdfxfb_set_par()
648 reg.crt[0x07] = ((vs & 0x200) >> 2) | in tdfxfb_set_par()
[all …]
Dps3fb.c797 u32 crt; in ps3fb_ioctl() local
799 if (get_user(crt, (u32 __user *) arg)) in ps3fb_ioctl()
802 retval = ps3fb_wait_for_vsync(crt); in ps3fb_ioctl()
Dtridentfb.c71 static int crt; variable
90 module_param(crt, int, 0);
91 MODULE_PARM_DESC(crt, "Define if CRT is connected");
905 if (crt || !iscyber(par->chip_id)) in is_flatpanel()
/linux-4.4.14/include/linux/
Dcrypto.h868 struct ablkcipher_tfm *crt = crypto_ablkcipher_crt(tfm); in crypto_ablkcipher_setkey() local
870 return crt->setkey(crt->base, key, keylen); in crypto_ablkcipher_setkey()
901 struct ablkcipher_tfm *crt = in crypto_ablkcipher_encrypt() local
903 return crt->encrypt(req); in crypto_ablkcipher_encrypt()
919 struct ablkcipher_tfm *crt = in crypto_ablkcipher_decrypt() local
921 return crt->decrypt(req); in crypto_ablkcipher_decrypt()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/disp/
Dgm107.c36 .outp.internal.crt = nv50_dac_output_new,
Dgk110.c36 .outp.internal.crt = nv50_dac_output_new,
Dgk104.c36 .outp.internal.crt = nv50_dac_output_new,
Dg84.c36 .outp.internal.crt = nv50_dac_output_new,
Dgm204.c36 .outp.internal.crt = nv50_dac_output_new,
Dgt200.c36 .outp.internal.crt = nv50_dac_output_new,
Dg94.c36 .outp.internal.crt = nv50_dac_output_new,
Dgt215.c36 .outp.internal.crt = nv50_dac_output_new,
Dpriv.h14 int (* crt)(struct nvkm_disp *, int index, struct dcb_output *, member
Dnv50.h57 int (* crt)(struct nvkm_disp *, int index, struct dcb_output *, member
Dnv50.c47 return disp->func->outp.internal.crt(base, index, dcb, poutp); in nv50_disp_outp_internal_crt_()
133 .outp.internal.crt = nv50_disp_outp_internal_crt_,
824 .outp.internal.crt = nv50_dac_output_new,
Dbase.c328 case DCB_OUTPUT_ANALOG: ctor = outps->crt ; break; in nvkm_disp_ctor()
Dgf119.c519 .outp.internal.crt = nv50_dac_output_new,
/linux-4.4.14/drivers/staging/lustre/lustre/osc/
Dosc_page.c202 struct osc_page *opg, enum cl_req_type crt) in osc_page_transfer_add() argument
211 list_add(&opg->ops_inflight, &obj->oo_inflight[crt]); in osc_page_transfer_add()
541 enum cl_req_type crt, int brw_flags) in osc_page_submit() argument
547 crt == CRT_WRITE ? CLM_WRITE : CLM_READ, 1)); in osc_page_submit()
554 oap->oap_cmd = crt == CRT_WRITE ? OBD_BRW_WRITE : OBD_BRW_READ; in osc_page_submit()
567 osc_page_transfer_add(env, opg, crt); in osc_page_submit()
Dosc_io.c100 enum cl_req_type crt, struct cl_2queue *queue) in osc_io_submit() argument
120 CDEBUG(D_CACHE, "%d %d\n", qin->pl_nr, crt); in osc_io_submit()
126 cmd = crt == CRT_WRITE ? OBD_BRW_WRITE : OBD_BRW_READ; in osc_io_submit()
152 result = cl_page_prep(env, io, page, crt); in osc_io_submit()
170 osc_page_submit(env, opg, crt, brw_flags); in osc_io_submit()
Dosc_cl_internal.h433 enum cl_req_type crt, int brw_flags);
Dosc_cache.c1290 enum cl_req_type crt; in osc_completion() local
1306 crt = cmd == OBD_BRW_READ ? CRT_READ : CRT_WRITE; in osc_completion()
1326 if (crt == CRT_READ) in osc_completion()
1339 cl_page_completion(env, page, crt, rc); in osc_completion()
Dosc_request.c1828 enum cl_req_type crt = (cmd & OBD_BRW_WRITE) ? CRT_WRITE : CRT_READ; in osc_build_rpc() local
1889 clerq = cl_req_alloc(env, page, crt, in osc_build_rpc()
/linux-4.4.14/drivers/acpi/
Dthermal.c70 static int crt; variable
71 module_param(crt, int, 0644);
72 MODULE_PARM_DESC(crt, "Disable or lower all critical trip points.");
315 if (crt == -1) { in acpi_thermal_trips_update()
317 } else if (crt > 0) { in acpi_thermal_trips_update()
318 unsigned long crt_k = CELSIUS_TO_DECI_KELVIN(crt); in acpi_thermal_trips_update()
324 crt); in acpi_thermal_trips_update()
Dacpi_video.c168 u8 crt:1; member
1072 data->flags.crt = 1; in acpi_video_bus_get_one_device()
1095 data->flags.crt = 1; in acpi_video_bus_get_one_device()
1372 if (!video_device->flags.crt) in acpi_video_get_edid()
/linux-4.4.14/drivers/video/fbdev/via/
Dioctl.h84 unsigned short crt:1; member
Dviafbdev.c514 u.active_dev.crt = viafb_CRT_ON; in viafb_ioctl()
/linux-4.4.14/drivers/staging/lustre/lustre/include/
Dcl_object.h2118 enum cl_req_type crt,
2845 struct cl_page *pg, enum cl_req_type crt);
2847 struct cl_page *pg, enum cl_req_type crt, int ioret);
2849 enum cl_req_type crt);
2851 struct cl_page *pg, enum cl_req_type crt);
3143 enum cl_req_type crt, int nr_objects);
/linux-4.4.14/include/video/
Dtdfx.h158 unsigned char crt[25]; member
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/
Dnvidia,tegra30-pinmux.txt89 ao1, ao2, at1, at2, at3, at4, at5, cdev1, cdev2, cec, crt, csus, dap1,
96 blink, cec, clk_12m_out, clk_32k_in, core_pwr_req, cpu_pwr_req, crt,
Dnvidia,tegra20-pinmux.txt108 ahb_clk, apb_clk, audio_sync, crt, dap1, dap2, dap3, dap4, dap5,
/linux-4.4.14/drivers/gpu/drm/nouveau/
Dnouveau_bios.h151 uint8_t crt, tv, panel; member
Dnouveau_bios.c1194 bios->legacy.i2c_indices.crt = bios->data[legacy_i2c_offset]; in parse_bmp_structure()
1766 bios->legacy.i2c_indices.crt, 1, 1); in fabricate_dcb_encoder_table()
/linux-4.4.14/drivers/video/fbdev/omap2/omapfb/
Domapfb-ioctl.c604 u32 crt; in omapfb_ioctl() member
764 if (get_user(p.crt, (__u32 __user *)arg)) { in omapfb_ioctl()
768 if (p.crt != 0) { in omapfb_ioctl()
/linux-4.4.14/drivers/video/fbdev/matrox/
Dmatroxfb_crtc2.c446 u_int32_t crt; in matroxfb_dh_ioctl() local
448 if (get_user(crt, (u_int32_t __user *)arg)) in matroxfb_dh_ioctl()
451 if (crt != 0) in matroxfb_dh_ioctl()
Dmatroxfb_base.c900 u_int32_t crt; in matroxfb_ioctl() local
902 if (get_user(crt, (u_int32_t __user *)arg)) in matroxfb_ioctl()
905 return matroxfb_wait_for_sync(minfo, crt); in matroxfb_ioctl()
/linux-4.4.14/Documentation/fb/
Dtridentfb.txt41 crt - assume monitor is present instead of fp
/linux-4.4.14/drivers/staging/lustre/lustre/lov/
Dlov_io.c572 enum cl_req_type crt, struct cl_2queue *queue) in lov_io_submit() argument
599 crt, queue); in lov_io_submit()
642 crt, cl2q); in lov_io_submit()
/linux-4.4.14/arch/arm/boot/dts/
Dtegra20-colibri-512.dtsi38 crt {
40 nvidia,function = "crt";
Dtegra20-trimslice.dts64 nvidia,function = "crt";
Dtegra20-tamonten.dtsi60 nvidia,function = "crt";
Dtegra20-paz00.dts67 nvidia,function = "crt";
Dtegra20-whistler.dts57 nvidia,function = "crt";
Dtegra20-ventana.dts73 nvidia,function = "crt";
Dtegra20-harmony.dts74 nvidia,function = "crt";
Dtegra20-seaboard.dts74 nvidia,function = "crt";
Dtegra30-beaver.dts1240 nvidia,function = "crt";
1247 nvidia,function = "crt";
/linux-4.4.14/drivers/staging/lustre/lustre/llite/
Dvvp_io.c863 enum cl_req_type crt) in vvp_page_sync_io() argument
873 result = cl_io_submit_sync(env, io, crt, queue, 0); in vvp_page_sync_io()
876 if (crt == CRT_READ) in vvp_page_sync_io()
Dllite_internal.h1342 static inline void cl_stats_tally(struct cl_device *dev, enum cl_req_type crt, in cl_stats_tally() argument
1345 int opc = (crt == CRT_READ) ? LPROC_LL_OSC_READ : in cl_stats_tally()
/linux-4.4.14/drivers/crypto/caam/
Dcaamalg.c1460 struct ablkcipher_tfm *crt = &ablkcipher->base.crt_ablkcipher; in ablkcipher_setkey() local
1533 append_seq_load(desc, crt->ivsize, LDST_SRCDST_BYTE_CONTEXT | in ablkcipher_setkey()
1592 append_seq_load(desc, crt->ivsize, LDST_SRCDST_BYTE_CONTEXT | in ablkcipher_setkey()
1656 NFIFOENTRY_PTYPE_RND | (crt->ivsize << NFIFOENTRY_DLEN_SHIFT); in ablkcipher_setkey()
1663 (crt->ivsize << MOVE_LEN_SHIFT) | in ablkcipher_setkey()
1668 append_seq_store(desc, crt->ivsize, in ablkcipher_setkey()
/linux-4.4.14/drivers/pinctrl/
Dpinctrl-tegra20.c1906 FUNCTION(crt),
2205 DRV_PG(crt, 0x8ec),
Dpinctrl-tegra30.c2031 FUNCTION(crt),
2438 DRV_PINGROUP(crt, 0x8f8, 2, 3, 4, 12, 5, 20, 5, 28, 2, 30, 2),
/linux-4.4.14/Documentation/filesystems/caching/
Dfscache.txt237 crt=N Number of objects created by lookup
/linux-4.4.14/Documentation/
Dkernel-parameters.txt3692 thermal.crt= [HW,ACPI]