/linux-4.4.14/drivers/media/platform/omap/ |
D | omap_voutdef.h | 154 enum dss_rotation rotation; member 192 return (vout->rotation == dss_rotation_90_degree || in is_rotation_90_or_270() 193 vout->rotation == dss_rotation_270_degree); in is_rotation_90_or_270() 201 return vout->rotation || vout->mirror; in is_rotation_enabled() 210 return vout->rotation; in calc_rotation() 212 switch (vout->rotation) { in calc_rotation()
|
D | omap_vout_vrfb.c | 223 enum dss_rotation rotation; in omap_vout_prepare_vrfb() local 263 rotation = calc_rotation(vout); in omap_vout_prepare_vrfb() 284 vout->vrfb_context[vb->i].paddr[rotation]; in omap_vout_prepare_vrfb() 295 enum dss_rotation rotation; in omap_vout_calculate_vrfb_offset() local 303 rotation = calc_rotation(vout); in omap_vout_calculate_vrfb_offset() 335 switch (rotation) { in omap_vout_calculate_vrfb_offset()
|
D | omap_vout.c | 253 enum dss_rotation *rotation, bool mirror) in v4l2_rot_to_dss_rot() argument 259 *rotation = dss_rotation_90_degree; in v4l2_rot_to_dss_rot() 262 *rotation = dss_rotation_180_degree; in v4l2_rot_to_dss_rot() 265 *rotation = dss_rotation_270_degree; in v4l2_rot_to_dss_rot() 268 *rotation = dss_rotation_0_degree; in v4l2_rot_to_dss_rot() 399 info.rotation = 0; in omapvid_setup_overlay() 403 info.rotation = vout->rotation; in omapvid_setup_overlay() 413 info.color_mode, info.rotation, info.mirror, info.pos_x, in omapvid_setup_overlay() 454 switch (vout->rotation) { in omapvid_init() 1385 int rotation = a->value; in vidioc_s_ctrl() local [all …]
|
/linux-4.4.14/drivers/video/fbdev/aty/ |
D | mach64_accel.c | 29 u32 rotation; in rotation24bpp() local 31 rotation = (dx / 4) % 6; in rotation24bpp() 33 rotation = ((dx + 2) / 4) % 6; in rotation24bpp() 36 return ((rotation << 8) | DST_24_ROTATION_ENABLE); in rotation24bpp() 200 u32 sx = area->sx, dx = area->dx, width = area->width, rotation = 0; in atyfb_copyarea() local 232 rotation = rotation24bpp(dx, direction); in atyfb_copyarea() 239 aty_st_le32(DST_CNTL, direction | rotation, par); in atyfb_copyarea() 246 u32 color, dx = rect->dx, width = rect->width, rotation = 0; in atyfb_fillrect() local 268 rotation = rotation24bpp(dx, DST_X_LEFT_TO_RIGHT); in atyfb_fillrect() 278 DST_X_LEFT_TO_RIGHT | rotation, par); in atyfb_fillrect() [all …]
|
/linux-4.4.14/drivers/gpu/drm/ |
D | drm_rect.c | 315 unsigned int rotation) in drm_rect_rotate() argument 319 if (rotation & (BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y))) { in drm_rect_rotate() 322 if (rotation & BIT(DRM_REFLECT_X)) { in drm_rect_rotate() 327 if (rotation & BIT(DRM_REFLECT_Y)) { in drm_rect_rotate() 333 switch (rotation & DRM_ROTATE_MASK) { in drm_rect_rotate() 389 unsigned int rotation) in drm_rect_rotate_inv() argument 393 switch (rotation & DRM_ROTATE_MASK) { in drm_rect_rotate_inv() 421 if (rotation & (BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y))) { in drm_rect_rotate_inv() 424 if (rotation & BIT(DRM_REFLECT_X)) { in drm_rect_rotate_inv() 429 if (rotation & BIT(DRM_REFLECT_Y)) { in drm_rect_rotate_inv()
|
D | drm_crtc.c | 2596 crtc->primary->state->rotation & (BIT(DRM_ROTATE_90) | in drm_crtc_check_viewport() 5716 unsigned int drm_rotation_simplify(unsigned int rotation, in drm_rotation_simplify() argument 5719 if (rotation & ~supported_rotations) { in drm_rotation_simplify() 5720 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y); in drm_rotation_simplify() 5721 rotation = (rotation & DRM_REFLECT_MASK) | in drm_rotation_simplify() 5722 BIT((ffs(rotation & DRM_ROTATE_MASK) + 1) % 4); in drm_rotation_simplify() 5725 return rotation; in drm_rotation_simplify()
|
D | drm_atomic.c | 610 state->rotation = val; in drm_atomic_plane_set_property() 657 *val = state->rotation; in drm_atomic_plane_get_property()
|
D | drm_atomic_helper.c | 1804 if (primary_state->rotation & (BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270))) { in __drm_atomic_helper_set_config()
|
D | drm_fb_helper.c | 363 plane_state->rotation = BIT(DRM_ROTATE_0); in restore_fbdev_mode_atomic()
|
/linux-4.4.14/drivers/video/fbdev/omap2/omapfb/ |
D | omapfb-sysfs.c | 286 ofbi->rotation[t-1] = ofbi->rotation[t]; in store_overlays() 310 ofbi->rotation[ofbi->num_overlays] = 0; in store_overlays() 348 t == 0 ? "" : ",", ofbi->rotation[t]); in show_overlays_rotate() 366 u8 rotation[OMAPFB_MAX_OVL_PER_FB]; in store_overlays_rotate() local 392 if (ofbi->rotation[num_ovls] != rot) in store_overlays_rotate() 395 rotation[num_ovls++] = rot; in store_overlays_rotate() 408 ofbi->rotation[i] = rotation[i]; in store_overlays_rotate()
|
D | omapfb-main.c | 772 const struct fb_fix_screeninfo *fix, int rotation) in calc_rotation_offset_dma() argument 783 const struct fb_fix_screeninfo *fix, int rotation) in calc_rotation_offset_vrfb() argument 787 if (rotation == FB_ROTATE_UD) in calc_rotation_offset_vrfb() 790 else if (rotation == FB_ROTATE_CW) in calc_rotation_offset_vrfb() 796 if (rotation == FB_ROTATE_UR) in calc_rotation_offset_vrfb() 799 else if (rotation == FB_ROTATE_UD) in calc_rotation_offset_vrfb() 802 else if (rotation == FB_ROTATE_CW) in calc_rotation_offset_vrfb() 805 else if (rotation == FB_ROTATE_CCW) in calc_rotation_offset_vrfb() 815 int rotation, u32 *paddr) in omapfb_calc_addr() argument 821 data_start_p = omapfb_get_region_rot_paddr(ofbi, rotation); in omapfb_calc_addr() [all …]
|
D | omapfb.h | 77 u8 rotation[OMAPFB_MAX_OVL_PER_FB]; member
|
/linux-4.4.14/drivers/gpu/drm/omapdrm/ |
D | omap_plane.c | 92 info.rotation = OMAP_DSS_ROT_0; in omap_plane_atomic_update() 98 win.rotation = state->rotation; in omap_plane_atomic_update() 111 switch (state->rotation & DRM_ROTATE_MASK) { in omap_plane_atomic_update() 152 plane->state->rotation = BIT(DRM_ROTATE_0); in omap_plane_atomic_disable() 212 omap_state->base.rotation = BIT(DRM_ROTATE_0); in omap_plane_reset()
|
D | omap_fb.c | 174 switch (win->rotation & DRM_ROTATE_MASK) { in omap_framebuffer_update_scanout() 177 (uint32_t)win->rotation); in omap_framebuffer_update_scanout() 194 if (win->rotation & BIT(DRM_REFLECT_X)) in omap_framebuffer_update_scanout() 197 if (win->rotation & BIT(DRM_REFLECT_Y)) in omap_framebuffer_update_scanout() 212 switch (win->rotation & DRM_ROTATE_MASK) { in omap_framebuffer_update_scanout() 221 win->rotation); in omap_framebuffer_update_scanout() 222 win->rotation = 0; in omap_framebuffer_update_scanout()
|
D | omap_drv.h | 47 uint32_t rotation; member
|
/linux-4.4.14/drivers/iio/orientation/ |
D | Kconfig | 28 device rotation. The output of a device rotation sensor
|
D | Makefile | 7 obj-$(CONFIG_HID_SENSOR_DEVICE_ROTATION) += hid-sensor-rotation.o
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
D | dispc.c | 1441 bool five_taps, u8 rotation, in dispc_ovl_set_scale_param() argument 1456 bool ilace, enum omap_color_mode color_mode, u8 rotation) in dispc_ovl_set_accu_uv() argument 1494 switch (rotation) { in dispc_ovl_set_accu_uv() 1547 u8 rotation) in dispc_ovl_set_scaling_common() argument 1555 rotation, DISPC_COLOR_COMPONENT_RGB_Y); in dispc_ovl_set_scaling_common() 1601 u8 rotation) in dispc_ovl_set_scaling_uv() argument 1619 out_height, ilace, color_mode, rotation); in dispc_ovl_set_scaling_uv() 1637 if (rotation == OMAP_DSS_ROT_0 || in dispc_ovl_set_scaling_uv() 1638 rotation == OMAP_DSS_ROT_180) { in dispc_ovl_set_scaling_uv() 1648 if (rotation != OMAP_DSS_ROT_0) in dispc_ovl_set_scaling_uv() [all …]
|
/linux-4.4.14/include/drm/ |
D | drm_rect.h | 168 unsigned int rotation); 171 unsigned int rotation);
|
D | drm_crtc.h | 773 unsigned int rotation; member 1498 extern unsigned int drm_rotation_simplify(unsigned int rotation,
|
/linux-4.4.14/Documentation/arm/OMAP/ |
D | DSS | 167 rotate_type 0 = DMA rotation, 1 = VRFB rotation 299 VRFB rotation requires much more memory than non-rotated framebuffer, so you 300 probably need to increase your vram setting before using VRFB rotation. Also, 328 - Use VRFB rotation for all framebuffers. 331 - Default rotation applied to all framebuffers. 332 0 - 0 degree rotation 333 1 - 90 degree rotation 334 2 - 180 degree rotation 335 3 - 270 degree rotation 338 - Default mirror for all framebuffers. Only works with DMA rotation.
|
/linux-4.4.14/Documentation/hwmon/ |
D | emc2103 | 19 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 20 triggered if the rotation speed has dropped below a programmable limit. Fan
|
D | w83l786ng | 27 The driver implements two temperature sensors, two fan rotation speed 33 Fan rotation speeds are reported in RPM (rotations per minute). Fan readings
|
D | lm80 | 29 The LM80 implements one temperature sensor, two fan rotation speed sensors, 41 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 42 triggered if the rotation speed has dropped below a programmable limit. Fan
|
D | lm87 | 30 rotation speed sensors, up to seven voltage sensors, alarms, and some 38 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 39 triggered if the rotation speed has dropped below a programmable limit. Fan
|
D | lm78 | 30 The LM7* implements one temperature sensor, three fan rotation speed sensors, 41 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 42 triggered if the rotation speed has dropped below a programmable limit. Fan
|
D | nct6683 | 19 It supports up to 16 fan rotation sensors and up to 8 fan control engines. 26 Fan rotation speeds are reported in RPM (rotations per minute).
|
D | pc87427 | 34 Fan rotation speeds are reported as 14-bit values from a gated clock 37 An alarm is triggered if the rotation speed drops below a programmable
|
D | via686a | 39 The Via 686a implements three temperature sensors, two fan rotation speed 46 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 47 triggered if the rotation speed has dropped below a programmable limit. Fan
|
D | asb100 | 24 The ASB100 implements seven voltage sensors, three fan rotation speed 34 triggered if the rotation speed has dropped below a programmable limit.
|
D | smsc47m1 | 44 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 45 triggered if the rotation speed has dropped below a programmable limit. Fan
|
D | w83792d | 39 The driver implements three temperature sensors, seven fan rotation speed 58 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 59 triggered if the rotation speed has dropped below a programmable limit. Fan 97 of full speed rotation of corresponding fan.
|
D | g762 | 27 fan1_input: provide current fan rotation value in RPM as reported by 57 ('pwm1_enable' set to 2), the expected rotation speed in RPM can be passed to
|
D | gl518sm | 32 The GL518SM implements one temperature sensor, two fan rotation speed 43 triggered if the rotation speed has dropped below a programmable limit. In
|
D | w83791d | 62 five fan rotation speed sensors and manual PWM control of each fan. 73 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 74 triggered if the rotation speed has dropped below a programmable limit. Fan
|
D | g760a | 25 The measured fan rotation speed returned via 'fan1_input' is derived
|
D | sis5595 | 73 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 74 triggered if the rotation speed has dropped below a programmable limit. Fan
|
D | nct6775 | 54 There are 4 to 5 fan rotation speed sensors, 8 to 15 analog voltage sensors, 67 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 68 triggered if the rotation speed has dropped below a programmable limit. On
|
D | w83627ehf | 54 2 to 5 fan rotation speed sensors, 8 to 10 analog voltage sensors, one VID 71 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 72 triggered if the rotation speed has dropped below a programmable limit. Fan
|
D | f71805f | 99 Fan rotation speeds are reported as 12-bit values from a gated clock 107 An alarm is triggered if the rotation speed drops below a programmable
|
D | pc87360 | 60 Fan rotation speeds are reported in RPM (revolutions per minute). An alarm 61 is triggered if the rotation speed has dropped below a programmable limit.
|
D | it87 | 125 rotation speed sensors, 8 voltage sensors, associated alarms, and chassis 172 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 173 triggered if the rotation speed has dropped below a programmable limit. When
|
D | lm83 | 53 health monitoring. They also have voltage and fan rotation speed
|
D | adm1026 | 49 Fan rotation speeds are reported in RPM (rotations per minute) but measured
|
D | w83781d | 70 two on the W83783S), three fan rotation speed sensors, voltage sensors 92 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is 93 triggered if the rotation speed has dropped below a programmable limit. Fan
|
/linux-4.4.14/drivers/video/fbdev/ |
D | goldfishfb.c | 51 int rotation; member 127 if (fb->rotation != fb->fb.var.rotate) { in goldfish_fb_set_par() 129 fb->rotation = fb->fb.var.rotate; in goldfish_fb_set_par() 130 writel(fb->rotation, fb->reg_base + FB_SET_ROTATION); in goldfish_fb_set_par()
|
D | auo_k1901fb.c | 145 args[0] = AUOK1901_DMA_ROTATE90(par->rotation) | 1; in auok1901_update_region() 156 args[0] = mode | AUOK1901_DDMA_ROTATE180(par->rotation); in auok1901_update_region()
|
D | auo_k1900fb.c | 70 init_param |= AUOK1900_INIT_ROTATE(par->rotation); in auok1900_init()
|
D | auo_k190x.c | 553 par->rotation = info->var.rotate; in auok190xfb_set_par() 1056 par->rotation = 0; in auok190x_common_probe()
|
D | Kconfig | 2204 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
D | intel_sprite.c | 200 unsigned int rotation; in skl_update_plane() local 212 rotation = drm_plane->state->rotation; in skl_update_plane() 213 plane_ctl |= skl_plane_ctl_rotation(rotation); in skl_update_plane() 243 if (intel_rotation_90_or_270(rotation)) { in skl_update_plane() 431 if (dplane->state->rotation == BIT(DRM_ROTATE_180)) { in vlv_update_plane() 564 if (plane->state->rotation == BIT(DRM_ROTATE_180)) { in ivb_update_plane() 702 if (plane->state->rotation == BIT(DRM_ROTATE_180)) { in ilk_update_plane() 815 state->base.rotation); in intel_check_sprite_plane() 856 state->base.rotation); in intel_check_sprite_plane()
|
D | intel_atomic_plane.c | 58 state->base.rotation = BIT(DRM_ROTATE_0); in intel_create_plane_state() 157 if (state->fb && intel_rotation_90_or_270(state->rotation)) { in intel_plane_atomic_check()
|
D | intel_drv.h | 609 unsigned int rotation; member 1102 intel_rotation_90_or_270(unsigned int rotation) in intel_rotation_90_or_270() argument 1104 return rotation & (BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270)); in intel_rotation_90_or_270() 1187 u32 skl_plane_ctl_rotation(unsigned int rotation);
|
D | intel_fbc.c | 713 if (intel_rotation_90_or_270(plane_state->base.rotation)) { in intel_fbc_get_plane_source_size() 925 crtc->primary->state->rotation != BIT(DRM_ROTATE_0)) { in __intel_fbc_update()
|
D | intel_display.c | 2285 if (!intel_rotation_90_or_270(plane_state->rotation)) in intel_fill_fb_ggtt_view() 2786 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) { in i9xx_update_primary_plane() 2887 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) { in ironlake_update_primary_plane() 2961 if (intel_rotation_90_or_270(intel_plane->base.state->rotation)) in intel_plane_obj_offset() 3065 u32 skl_plane_ctl_rotation(unsigned int rotation) in skl_plane_ctl_rotation() argument 3067 switch (rotation) { in skl_plane_ctl_rotation() 3081 MISSING_CASE(rotation); in skl_plane_ctl_rotation() 3100 unsigned int rotation; in skylake_update_primary_plane() local 3126 rotation = plane->state->rotation; in skylake_update_primary_plane() 3127 plane_ctl |= skl_plane_ctl_rotation(rotation); in skylake_update_primary_plane() [all …]
|
D | intel_bios.h | 824 u32 rotation:2; member
|
D | intel_pm.c | 3108 p->plane[0].rotation = crtc->primary->state->rotation; in skl_compute_wm_pipe_parameters() 3172 if (intel_rotation_90_or_270(p_params->rotation)) { in skl_compute_plane_wm() 3685 intel_plane->wm.rotation = plane->state->rotation; in skl_update_sprite_wm()
|
/linux-4.4.14/drivers/gpu/ipu-v3/ |
D | ipu-ic.c | 151 bool rotation; member 342 if (ic->rotation) in ipu_ic_task_enable() 382 ic->rotation = ic->graphics = false; in ipu_ic_task_disable() 624 ic->rotation = true; in ipu_ic_task_idma_init() 640 if (ic->rotation) in ipu_ic_enable()
|
/linux-4.4.14/drivers/media/platform/exynos4-is/ |
D | fimc-reg.c | 53 if (ctx->rotation <= 90) in fimc_hw_get_in_flip() 68 if (ctx->rotation <= 90) in fimc_hw_get_target_flip() 88 if (ctx->rotation == 90 || ctx->rotation == 270) { in fimc_hw_set_rotation() 137 if (ctx->rotation == 90 || ctx->rotation == 270) in fimc_hw_set_target_format()
|
D | fimc-core.c | 217 int dw, int dh, int rotation) in fimc_check_scaler_ratio() argument 219 if (rotation == 90 || rotation == 270) in fimc_check_scaler_ratio() 259 if (ctx->rotation == 90 || ctx->rotation == 270) { in fimc_set_scaler_info() 561 ctx->rotation = ctrl->val; in __fimc_s_ctrl() 668 ctx->rotation = ctrls->rotate->val; in fimc_ctrls_activate() 673 ctx->rotation = 0; in fimc_ctrls_activate()
|
D | fimc-capture.c | 583 bool rotation = ctx->rotation == 90 || ctx->rotation == 270; in fimc_capture_try_format() local 631 max_w = rotation ? pl->out_rot_en_w : pl->out_rot_dis_w; in fimc_capture_try_format() 639 if (var->min_vsize_align == 1 && !rotation) in fimc_capture_try_format() 660 bool rotate = ctx->rotation == 90 || ctx->rotation == 270; in fimc_capture_try_selection() 677 if (ctx->rotation != 90 && ctx->rotation != 270) in fimc_capture_try_selection()
|
D | fimc-core.h | 498 int rotation; member 634 int dw, int dh, int rotation);
|
D | fimc-m2m.c | 507 ctx->d_frame.height, ctx->rotation); in fimc_m2m_s_crop() 511 cr.c.height, ctx->rotation); in fimc_m2m_s_crop()
|
D | fimc-is-param.h | 746 struct param_scaler_rotation rotation; member
|
/linux-4.4.14/include/video/ |
D | auo_k190xfb.h | 41 int rotation; member
|
D | omapdss.h | 392 u8 rotation; member 523 u8 rotation; member
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | dbconvert.c | 350 ACPI_PLD_SET_ROTATION(&dword, pld_info->rotation); in acpi_db_encode_pld_buffer() 470 acpi_os_printf(ACPI_PLD_OUTPUT, "PLD_Rotation", pld_info->rotation); in acpi_db_dump_pld_buffer()
|
D | utxface.c | 544 pld_info->rotation = ACPI_PLD_GET_ROTATION(&dword); in ACPI_EXPORT_SYMBOL()
|
/linux-4.4.14/drivers/gpu/drm/exynos/ |
D | exynos_drm_gsc.c | 146 bool rotation; member 604 ctx->rotation = (cfg & GSC_IN_ROT_90) ? 1 : 0; in gsc_src_set_transf() 605 *swap = ctx->rotation; in gsc_src_set_transf() 875 ctx->rotation = (cfg & GSC_IN_ROT_90) ? 1 : 0; in gsc_dst_set_transf() 876 *swap = ctx->rotation; in gsc_dst_set_transf() 926 if (ctx->rotation) { in gsc_set_prescaler()
|
/linux-4.4.14/drivers/video/console/ |
D | Kconfig | 127 Enable display rotation for the framebuffer console. This is done 129 display. Note that the rotation is done at the console level only
|
/linux-4.4.14/Documentation/fb/ |
D | fbcon.txt | 14 high resolutions, varying font types, display rotation, primitive multihead, 143 Console rotation will only become available if Console Rotation 146 NOTE: This is purely console rotation. Any other applications that 149 rotation.
|
/linux-4.4.14/drivers/video/fbdev/omap/ |
D | Kconfig | 57 If you have such a system and want to use rotation
|
/linux-4.4.14/arch/x86/crypto/ |
D | chacha20-ssse3-x86_64.S | 31 # round. 8/16-bit word rotation is done with the slightly better 32 # performing SSSE3 byte shuffling, 7/12-bit word rotation uses 156 # which allows us to do XOR in SSE registers. 8/16-bit word rotation is 158 # 7/12-bit word rotation uses traditional shift+OR.
|
D | chacha20-avx2-x86_64.S | 38 # rotation is done with the slightly better performing byte shuffling, 39 # 7/12-bit word rotation uses traditional shift+OR.
|
/linux-4.4.14/drivers/gpu/drm/msm/mdp/mdp5/ |
D | mdp5_plane.c | 312 hflip = !!(state->rotation & BIT(DRM_REFLECT_X)); in mdp5_plane_atomic_check() 313 vflip = !!(state->rotation & BIT(DRM_REFLECT_Y)); in mdp5_plane_atomic_check() 746 hflip = !!(pstate->rotation & BIT(DRM_REFLECT_X)); in mdp5_plane_mode_set() 747 vflip = !!(pstate->rotation & BIT(DRM_REFLECT_Y)); in mdp5_plane_mode_set()
|
/linux-4.4.14/drivers/media/platform/s3c-camif/ |
D | camif-core.h | 232 u16 rotation; member
|
D | camif-core.c | 161 if (vp->rotation == 90 || vp->rotation == 270) in s3c_camif_get_scaler_config()
|
D | camif-regs.c | 336 if (vp->rotation == 90 || vp->rotation == 270) in camif_hw_set_target_format()
|
/linux-4.4.14/Documentation/devicetree/bindings/media/ |
D | samsung-fimc.txt | 63 2 - REAL_WIDTH without input rotation, 64 3 - REAL_HEIGHT with input rotation,
|
/linux-4.4.14/drivers/gpu/drm/atmel-hlcdc/ |
D | atmel_hlcdc_plane.c | 388 (state->base.rotation & (BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270)))) in atmel_hlcdc_plane_update_format() 588 if (state->base.rotation & (BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270))) { in atmel_hlcdc_plane_atomic_check() 636 switch (state->base.rotation & DRM_ROTATE_MASK) { in atmel_hlcdc_plane_atomic_check()
|
/linux-4.4.14/include/acpi/ |
D | acbuffer.h | 135 u8 rotation; member
|
/linux-4.4.14/Documentation/input/ |
D | rotary-encoder.txt | 49 (i.e. the rotation was not reversed half-way).
|
D | alps.txt | 85 ?'s can have different meanings on different models, such as wheel rotation,
|
D | sentelic.txt | 718 1: no rotation 723 0: no rotation
|
/linux-4.4.14/drivers/media/platform/exynos-gsc/ |
D | gsc-core.h | 374 int rotation; member
|
D | gsc-core.c | 733 ctx->rotation = ctrl->val; in __gsc_s_ctrl()
|
/linux-4.4.14/Documentation/video4linux/ |
D | fimc.txt | 26 and rotation);
|
/linux-4.4.14/include/uapi/drm/ |
D | i915_drm.h | 121 int rotation; /* 0, 90, 180 or 270 */ member
|
/linux-4.4.14/Documentation/ |
D | rbtree.txt | 234 - A tree rotation callback, which copies the augmented value for a given
|
/linux-4.4.14/Documentation/crypto/ |
D | descore-readme.txt | 314 this would entail some byte concatenation and rotation.
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-iio | 1285 which a rotation will occur and w component represents the 1286 amount of rotation. 1295 Raw value of rotation from true/magnetic north measured with
|
/linux-4.4.14/drivers/net/wireless/b43/ |
D | phy_lp.c | 1784 int rotation = (((36 * freq) / 20) << 16) / 100; in lpphy_start_tx_tone() local 1802 angle += rotation; in lpphy_start_tx_tone()
|
/linux-4.4.14/Documentation/DocBook/ |
D | gpu.xml.db | 205 API-drm-rotation-simplify
|
/linux-4.4.14/drivers/input/misc/ |
D | Kconfig | 383 rotation. The dial also acts as a pushbutton. The base contains an LED
|
/linux-4.4.14/Documentation/cgroups/ |
D | memory.txt | 527 recent_rotated means recent frequency of LRU rotation.
|