/openbmc/linux/drivers/iio/imu/inv_mpu6050/ |
H A D | inv_mpu_magn.c | 275 st->magn_orient.rotation[0] = st->orientation.rotation[3]; in inv_mpu_magn_set_orient() 276 st->magn_orient.rotation[1] = st->orientation.rotation[4]; in inv_mpu_magn_set_orient() 277 st->magn_orient.rotation[2] = st->orientation.rotation[5]; in inv_mpu_magn_set_orient() 279 st->magn_orient.rotation[3] = st->orientation.rotation[0]; in inv_mpu_magn_set_orient() 280 st->magn_orient.rotation[4] = st->orientation.rotation[1]; in inv_mpu_magn_set_orient() 281 st->magn_orient.rotation[5] = st->orientation.rotation[2]; in inv_mpu_magn_set_orient() 284 orient = st->orientation.rotation[i]; in inv_mpu_magn_set_orient() 303 st->magn_orient.rotation[i] = str; in inv_mpu_magn_set_orient()
|
/openbmc/linux/drivers/gpu/drm/tests/ |
H A D | drm_plane_helper_test.c | 41 unsigned int rotation; member 67 mock->rotation = params->rotation; in drm_plane_helper_init() 144 .rotation = DRM_MODE_ROTATE_0, 158 .rotation = DRM_MODE_ROTATE_90 | DRM_MODE_REFLECT_X, 170 .rotation = DRM_MODE_ROTATE_0, 182 .rotation = DRM_MODE_ROTATE_0, 194 .rotation = DRM_MODE_ROTATE_0, 206 .rotation = DRM_MODE_ROTATE_0, 218 .rotation = DRM_MODE_ROTATE_0, 230 .rotation = DRM_MODE_ROTATE_0, [all …]
|
/openbmc/linux/drivers/gpu/drm/ |
H A D | drm_blend.c | 273 unsigned int rotation, in drm_plane_create_rotation_property() argument 287 WARN_ON(!is_power_of_2(rotation & DRM_MODE_ROTATE_MASK)); in drm_plane_create_rotation_property() 288 WARN_ON(rotation & ~supported_rotations); in drm_plane_create_rotation_property() 296 drm_object_attach_property(&plane->base, prop, rotation); in drm_plane_create_rotation_property() 299 plane->state->rotation = rotation; in drm_plane_create_rotation_property() 325 unsigned int drm_rotation_simplify(unsigned int rotation, in drm_rotation_simplify() argument 328 if (rotation & ~supported_rotations) { in drm_rotation_simplify() 329 rotation ^= DRM_MODE_REFLECT_X | DRM_MODE_REFLECT_Y; in drm_rotation_simplify() 330 rotation = (rotation & DRM_MODE_REFLECT_MASK) | in drm_rotation_simplify() 331 BIT((ffs(rotation & DRM_MODE_ROTATE_MASK) + 1) in drm_rotation_simplify() [all …]
|
H A D | drm_rect.c | 255 unsigned int rotation) in drm_rect_rotate() argument 259 if (rotation & (DRM_MODE_REFLECT_X | DRM_MODE_REFLECT_Y)) { in drm_rect_rotate() 262 if (rotation & DRM_MODE_REFLECT_X) { in drm_rect_rotate() 267 if (rotation & DRM_MODE_REFLECT_Y) { in drm_rect_rotate() 273 switch (rotation & DRM_MODE_ROTATE_MASK) { in drm_rect_rotate() 329 unsigned int rotation) in drm_rect_rotate_inv() argument 333 switch (rotation & DRM_MODE_ROTATE_MASK) { in drm_rect_rotate_inv() 361 if (rotation & (DRM_MODE_REFLECT_X | DRM_MODE_REFLECT_Y)) { in drm_rect_rotate_inv() 364 if (rotation & DRM_MODE_REFLECT_X) { in drm_rect_rotate_inv() 369 if (rotation & DRM_MODE_REFLECT_Y) { in drm_rect_rotate_inv()
|
H A D | drm_panel.c | 352 int rotation, ret; in of_drm_get_panel_orientation() local 354 ret = of_property_read_u32(np, "rotation", &rotation); in of_drm_get_panel_orientation() 364 if (rotation == 0) in of_drm_get_panel_orientation() 366 else if (rotation == 90) in of_drm_get_panel_orientation() 368 else if (rotation == 180) in of_drm_get_panel_orientation() 370 else if (rotation == 270) in of_drm_get_panel_orientation()
|
H A D | drm_client_modeset.c | 913 bool drm_client_rotation(struct drm_mode_set *modeset, unsigned int *rotation) in drm_client_rotation() argument 926 *rotation = DRM_MODE_ROTATE_180; in drm_client_rotation() 929 *rotation = DRM_MODE_ROTATE_90; in drm_client_rotation() 932 *rotation = DRM_MODE_ROTATE_270; in drm_client_rotation() 935 *rotation = DRM_MODE_ROTATE_0; in drm_client_rotation() 956 panel_rot = ilog2(*rotation & DRM_MODE_ROTATE_MASK); in drm_client_rotation() 960 panel_rest = *rotation & ~DRM_MODE_ROTATE_MASK; in drm_client_rotation() 964 *rotation = (1 << sum_rot) | sum_rest; in drm_client_rotation() 972 if (((*rotation & DRM_MODE_ROTATE_MASK) != DRM_MODE_ROTATE_0 && in drm_client_rotation() 973 (*rotation & DRM_MODE_ROTATE_MASK) != DRM_MODE_ROTATE_180) || in drm_client_rotation() [all …]
|
/openbmc/openbmc/poky/meta/recipes-core/psplash/files/ |
H A D | psplash-init | 34 rotation=0 35 if [ -e /etc/rotation ]; then 36 read rotation < /etc/rotation 39 /usr/bin/psplash --angle $rotation &
|
/openbmc/openbmc/poky/meta/recipes-kernel/lttng/lttng-tools/ |
H A D | 0001-Fix-rotation-destroy-flush-fix-session-daemon-abort-.patch | 4 Subject: [PATCH] Fix: rotation-destroy-flush: fix session daemon abort if no 7 Testing rotation-destroy-flush when no lttng kernel modules present, it would 32 .../ust/rotation-destroy-flush/test_rotation_destroy_flush | 6 +++--- 35 diff --git a/tests/regression/ust/rotation-destroy-flush/test_rotation_destroy_flush b/tests/regres… 37 --- a/tests/regression/ust/rotation-destroy-flush/test_rotation_destroy_flush 38 +++ b/tests/regression/ust/rotation-destroy-flush/test_rotation_destroy_flush
|
/openbmc/linux/drivers/media/platform/ti/omap/ |
H A D | omap_voutdef.h | 154 enum dss_rotation rotation; member 186 return (vout->rotation == dss_rotation_90_degree || in is_rotation_90_or_270() 187 vout->rotation == dss_rotation_270_degree); in is_rotation_90_or_270() 195 return vout->rotation || vout->mirror; in is_rotation_enabled() 204 return vout->rotation; in calc_rotation() 206 switch (vout->rotation) { in calc_rotation()
|
/openbmc/linux/include/drm/ |
H A D | drm_blend.h | 38 static inline bool drm_rotation_90_or_270(unsigned int rotation) in drm_rotation_90_or_270() argument 40 return rotation & (DRM_MODE_ROTATE_90 | DRM_MODE_ROTATE_270); in drm_rotation_90_or_270() 47 unsigned int rotation, 49 unsigned int drm_rotation_simplify(unsigned int rotation,
|
/openbmc/linux/drivers/video/fbdev/aty/ |
H A D | mach64_accel.c | 30 u32 rotation; in rotation24bpp() local 32 rotation = (dx / 4) % 6; in rotation24bpp() 34 rotation = ((dx + 2) / 4) % 6; in rotation24bpp() 37 return ((rotation << 8) | DST_24_ROTATION_ENABLE); in rotation24bpp() 203 u32 sx = area->sx, dx = area->dx, width = area->width, rotation = 0; in atyfb_copyarea() local 235 rotation = rotation24bpp(dx, direction); in atyfb_copyarea() 243 aty_st_le32(DST_CNTL, direction | rotation, par); in atyfb_copyarea() 250 u32 color, dx = rect->dx, width = rect->width, rotation = 0; in atyfb_fillrect() local 272 rotation = rotation24bpp(dx, DST_X_LEFT_TO_RIGHT); in atyfb_fillrect() 283 DST_X_LEFT_TO_RIGHT | rotation, par); in atyfb_fillrect() [all …]
|
/openbmc/linux/drivers/gpu/drm/i915/display/ |
H A D | skl_universal_plane.c | 322 unsigned int rotation) in skl_plane_max_width() argument 361 unsigned int rotation) in glk_plane_max_width() argument 389 unsigned int rotation) in icl_plane_min_width() argument 429 unsigned int rotation) in icl_hdr_plane_max_width() argument 439 unsigned int rotation) in icl_sdr_plane_max_width() argument 446 unsigned int rotation) in skl_plane_max_height() argument 453 unsigned int rotation) in icl_plane_max_height() argument 461 unsigned int rotation) in skl_plane_max_stride() argument 488 if (drm_rotation_90_or_270(rotation)) in skl_plane_max_stride() 587 int color_plane, unsigned int rotation) in skl_plane_stride_mult() argument [all …]
|
/openbmc/linux/drivers/gpu/drm/ci/ |
H A D | testlist.txt | 335 kms_ccs@pipe-A-bad-rotation-90-y_tiled_ccs 336 kms_ccs@pipe-A-bad-rotation-90-yf_tiled_ccs 337 kms_ccs@pipe-A-bad-rotation-90-y_tiled_gen12_rc_ccs 338 kms_ccs@pipe-A-bad-rotation-90-y_tiled_gen12_rc_ccs_cc 339 kms_ccs@pipe-A-bad-rotation-90-y_tiled_gen12_mc_ccs 340 kms_ccs@pipe-A-bad-rotation-90-4_tiled_dg2_rc_ccs 341 kms_ccs@pipe-A-bad-rotation-90-4_tiled_dg2_mc_ccs 342 kms_ccs@pipe-A-bad-rotation-90-4_tiled_dg2_rc_ccs_cc 343 kms_ccs@pipe-A-bad-rotation-90-4_tiled_mtl_rc_ccs 344 kms_ccs@pipe-A-bad-rotation-90-4_tiled_mtl_mc_ccs [all …]
|
/openbmc/linux/drivers/gpu/drm/sprd/ |
H A D | sprd_dpu.c | 259 u32 rotation = 0; in drm_rotation_to_dpu() local 261 switch (state->rotation) { in drm_rotation_to_dpu() 264 rotation = BIT_DPU_LAY_ROTATION_0; in drm_rotation_to_dpu() 267 rotation = BIT_DPU_LAY_ROTATION_90; in drm_rotation_to_dpu() 270 rotation = BIT_DPU_LAY_ROTATION_180; in drm_rotation_to_dpu() 273 rotation = BIT_DPU_LAY_ROTATION_270; in drm_rotation_to_dpu() 276 rotation = BIT_DPU_LAY_ROTATION_180_M; in drm_rotation_to_dpu() 279 rotation = BIT_DPU_LAY_ROTATION_90_M; in drm_rotation_to_dpu() 282 rotation = BIT_DPU_LAY_ROTATION_0_M; in drm_rotation_to_dpu() 285 rotation = BIT_DPU_LAY_ROTATION_270_M; in drm_rotation_to_dpu() [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/display/ |
H A D | ilitek,ili9225.txt | 15 - rotation: panel rotation in degrees counter clockwise (0,90,180,270) 24 rotation = <270>;
|
H A D | himax,hx8357d.txt | 15 - rotation: panel rotation in degrees counter clockwise (0,90,180,270) 24 rotation = <90>;
|
H A D | multi-inno,mi0283qt.txt | 17 - rotation: panel rotation in degrees counter clockwise (0,90,180,270) 24 rotation = <90>;
|
/openbmc/linux/drivers/gpu/drm/arm/display/komeda/ |
H A D | komeda_kms.h | 161 u32 rotation = drm_rotation_simplify(rot, in has_flip_h() local 166 if (rotation & DRM_MODE_ROTATE_90) in has_flip_h() 167 return !!(rotation & DRM_MODE_REFLECT_Y); in has_flip_h() 169 return !!(rotation & DRM_MODE_REFLECT_X); in has_flip_h()
|
/openbmc/linux/drivers/gpu/drm/exynos/ |
H A D | exynos_drm_fimc.c | 416 static void fimc_src_set_transf(struct fimc_context *ctx, unsigned int rotation) in fimc_src_set_transf() argument 418 unsigned int degree = rotation & DRM_MODE_ROTATE_MASK; in fimc_src_set_transf() 421 DRM_DEV_DEBUG_KMS(ctx->dev, "rotation[%x]\n", rotation); in fimc_src_set_transf() 432 if (rotation & DRM_MODE_REFLECT_X) in fimc_src_set_transf() 434 if (rotation & DRM_MODE_REFLECT_Y) in fimc_src_set_transf() 439 if (rotation & DRM_MODE_REFLECT_X) in fimc_src_set_transf() 441 if (rotation & DRM_MODE_REFLECT_Y) in fimc_src_set_transf() 447 if (rotation & DRM_MODE_REFLECT_X) in fimc_src_set_transf() 449 if (rotation & DRM_MODE_REFLECT_Y) in fimc_src_set_transf() 456 if (rotation & DRM_MODE_REFLECT_X) in fimc_src_set_transf() [all …]
|
H A D | exynos_drm_scaler.c | 264 unsigned int rotation, in scaler_set_hv_ratio() argument 270 if (drm_rotation_90_or_270(rotation)) { in scaler_set_hv_ratio() 286 unsigned int rotation) in scaler_set_rotation() argument 290 if (rotation & DRM_MODE_ROTATE_90) in scaler_set_rotation() 292 else if (rotation & DRM_MODE_ROTATE_180) in scaler_set_rotation() 294 else if (rotation & DRM_MODE_ROTATE_270) in scaler_set_rotation() 296 if (rotation & DRM_MODE_REFLECT_X) in scaler_set_rotation() 298 if (rotation & DRM_MODE_REFLECT_Y) in scaler_set_rotation() 393 scaler_set_hv_ratio(scaler, task->transform.rotation, src_pos, dst_pos); in scaler_commit() 394 scaler_set_rotation(scaler, task->transform.rotation); in scaler_commit()
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dce/ |
H A D | dce_mem_input.c | 122 static bool is_vert_scan(enum dc_rotation_angle rotation) in is_vert_scan() argument 124 switch (rotation) { in is_vert_scan() 137 enum dc_rotation_angle rotation) in dce_mi_program_pte_vm() argument 146 unsigned int min_pte_before_flip = is_vert_scan(rotation) ? in dce_mi_program_pte_vm() 487 enum dc_rotation_angle rotation, in program_size_and_rotation() argument 499 if (rotation == ROTATION_ANGLE_90 || rotation == ROTATION_ANGLE_270) { in program_size_and_rotation() 523 GRPH_ROTATION_ANGLE, rotation_angles[rotation]); in program_size_and_rotation() 529 enum dc_rotation_angle rotation, /* not used in DCE6 */ in dce60_program_size() argument 635 enum dc_rotation_angle rotation, in dce_mi_program_surface_config() argument 643 program_size_and_rotation(dce_mi, rotation, plane_size); in dce_mi_program_surface_config() [all …]
|
/openbmc/linux/drivers/gpu/drm/tiny/ |
H A D | ili9163.c | 81 switch (dbidev->rotation) { in yx240qv29_enable() 143 u32 rotation = 0; in ili9163_probe() local 172 device_property_read_u32(dev, "rotation", &rotation); in ili9163_probe() 178 ret = mipi_dbi_dev_init(dbidev, &ili9163_pipe_funcs, &yx240qv29_mode, rotation); in ili9163_probe()
|
H A D | hx8357d.c | 163 switch (dbidev->rotation) { in yx240qv29_enable() 223 u32 rotation = 0; in hx8357d_probe() local 241 device_property_read_u32(dev, "rotation", &rotation); in hx8357d_probe() 247 ret = mipi_dbi_dev_init(dbidev, &hx8357d_pipe_funcs, &yx350hv15_mode, rotation); in hx8357d_probe()
|
/openbmc/linux/drivers/gpu/drm/mediatek/ |
H A D | mtk_disp_ovl.c | 308 unsigned int rotation = 0; in mtk_ovl_layer_check() local 310 rotation = drm_rotation_simplify(state->rotation, in mtk_ovl_layer_check() 314 rotation &= ~DRM_MODE_ROTATE_0; in mtk_ovl_layer_check() 317 if ((rotation & DRM_MODE_ROTATE_MASK) != 0) in mtk_ovl_layer_check() 324 if (state->fb->format->is_yuv && rotation != 0) in mtk_ovl_layer_check() 327 state->rotation = rotation; in mtk_ovl_layer_check() 460 if (pending->rotation & DRM_MODE_REFLECT_Y) { in mtk_ovl_layer_config() 465 if (pending->rotation & DRM_MODE_REFLECT_X) { in mtk_ovl_layer_config()
|
/openbmc/linux/drivers/video/fbdev/omap2/omapfb/ |
H A D | omapfb-sysfs.c | 272 ofbi->rotation[t-1] = ofbi->rotation[t]; in store_overlays() 296 ofbi->rotation[ofbi->num_overlays] = 0; in store_overlays() 333 t == 0 ? "" : ",", ofbi->rotation[t]); in show_overlays_rotate() 351 u8 rotation[OMAPFB_MAX_OVL_PER_FB]; in store_overlays_rotate() local 376 if (ofbi->rotation[num_ovls] != rot) in store_overlays_rotate() 379 rotation[num_ovls++] = rot; in store_overlays_rotate() 392 ofbi->rotation[i] = rotation[i]; in store_overlays_rotate()
|