Example #1
0
static void i9xx_scale_aspect(struct intel_crtc_config *pipe_config,
                              u32 *pfit_control, u32 *pfit_pgm_ratios,
                              u32 *border)
{
    struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
    u32 scaled_width = adjusted_mode->hdisplay *
                       pipe_config->pipe_src_h;
    u32 scaled_height = pipe_config->pipe_src_w *
                        adjusted_mode->vdisplay;
    u32 bits;

    /*
     * For earlier chips we have to calculate the scaling
     * ratio by hand and program it into the
     * PFIT_PGM_RATIO register
     */
    if (scaled_width > scaled_height) { /* pillar */
        centre_horizontally(adjusted_mode,
                            scaled_height /
                            pipe_config->pipe_src_h);

        *border = LVDS_BORDER_ENABLE;
        if (pipe_config->pipe_src_h != adjusted_mode->vdisplay) {
            bits = panel_fitter_scaling(pipe_config->pipe_src_h,
                                        adjusted_mode->vdisplay);

            *pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT |
                                 bits << PFIT_VERT_SCALE_SHIFT);
            *pfit_control |= (PFIT_ENABLE |
                              VERT_INTERP_BILINEAR |
                              HORIZ_INTERP_BILINEAR);
        }
    } else if (scaled_width < scaled_height) { /* letter */
        centre_vertically(adjusted_mode,
                          scaled_width /
                          pipe_config->pipe_src_w);

        *border = LVDS_BORDER_ENABLE;
        if (pipe_config->pipe_src_w != adjusted_mode->hdisplay) {
            bits = panel_fitter_scaling(pipe_config->pipe_src_w,
                                        adjusted_mode->hdisplay);

            *pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT |
                                 bits << PFIT_VERT_SCALE_SHIFT);
            *pfit_control |= (PFIT_ENABLE |
                              VERT_INTERP_BILINEAR |
                              HORIZ_INTERP_BILINEAR);
        }
    } else {
        /* Aspects match, Let hw scale both directions */
        *pfit_control |= (PFIT_ENABLE |
                          VERT_AUTO_SCALE | HORIZ_AUTO_SCALE |
                          VERT_INTERP_BILINEAR |
                          HORIZ_INTERP_BILINEAR);
    }
}
Example #2
0
void intel_gmch_panel_fitting(struct intel_crtc *intel_crtc,
			      struct intel_crtc_config *pipe_config,
			      int fitting_mode)
{
	struct drm_device *dev = intel_crtc->base.dev;
	u32 pfit_control = 0, pfit_pgm_ratios = 0, border = 0;
	struct drm_display_mode *mode, *adjusted_mode;

	mode = &pipe_config->requested_mode;
	adjusted_mode = &pipe_config->adjusted_mode;

	/* Native modes don't need fitting */
	if (adjusted_mode->hdisplay == mode->hdisplay &&
	    adjusted_mode->vdisplay == mode->vdisplay)
		goto out;

	switch (fitting_mode) {
	case DRM_MODE_SCALE_CENTER:
		/*
		 * For centered modes, we have to calculate border widths &
		 * heights and modify the values programmed into the CRTC.
		 */
		centre_horizontally(adjusted_mode, mode->hdisplay);
		centre_vertically(adjusted_mode, mode->vdisplay);
		border = LVDS_BORDER_ENABLE;
		break;
	case DRM_MODE_SCALE_ASPECT:
		/* Scale but preserve the aspect ratio */
		if (INTEL_INFO(dev)->gen >= 4) {
			u32 scaled_width = adjusted_mode->hdisplay *
				mode->vdisplay;
			u32 scaled_height = mode->hdisplay *
				adjusted_mode->vdisplay;

			/* 965+ is easy, it does everything in hw */
			if (scaled_width > scaled_height)
				pfit_control |= PFIT_ENABLE |
					PFIT_SCALING_PILLAR;
			else if (scaled_width < scaled_height)
				pfit_control |= PFIT_ENABLE |
					PFIT_SCALING_LETTER;
			else if (adjusted_mode->hdisplay != mode->hdisplay)
				pfit_control |= PFIT_ENABLE | PFIT_SCALING_AUTO;
		} else {
			u32 scaled_width = adjusted_mode->hdisplay *
				mode->vdisplay;
			u32 scaled_height = mode->hdisplay *
				adjusted_mode->vdisplay;
			/*
			 * For earlier chips we have to calculate the scaling
			 * ratio by hand and program it into the
			 * PFIT_PGM_RATIO register
			 */
			if (scaled_width > scaled_height) { /* pillar */
				centre_horizontally(adjusted_mode,
						    scaled_height /
						    mode->vdisplay);

				border = LVDS_BORDER_ENABLE;
				if (mode->vdisplay != adjusted_mode->vdisplay) {
					u32 bits = panel_fitter_scaling(mode->vdisplay, adjusted_mode->vdisplay);
					pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT |
							    bits << PFIT_VERT_SCALE_SHIFT);
					pfit_control |= (PFIT_ENABLE |
							 VERT_INTERP_BILINEAR |
							 HORIZ_INTERP_BILINEAR);
				}
			} else if (scaled_width < scaled_height) { /* letter */
				centre_vertically(adjusted_mode,
						  scaled_width /
						  mode->hdisplay);

				border = LVDS_BORDER_ENABLE;
				if (mode->hdisplay != adjusted_mode->hdisplay) {
					u32 bits = panel_fitter_scaling(mode->hdisplay, adjusted_mode->hdisplay);
					pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT |
							    bits << PFIT_VERT_SCALE_SHIFT);
					pfit_control |= (PFIT_ENABLE |
							 VERT_INTERP_BILINEAR |
							 HORIZ_INTERP_BILINEAR);
				}
			} else {
				/* Aspects match, Let hw scale both directions */
				pfit_control |= (PFIT_ENABLE |
						 VERT_AUTO_SCALE | HORIZ_AUTO_SCALE |
						 VERT_INTERP_BILINEAR |
						 HORIZ_INTERP_BILINEAR);
			}
		}
		break;
	case DRM_MODE_SCALE_FULLSCREEN:
		/*
		 * Full scaling, even if it changes the aspect ratio.
		 * Fortunately this is all done for us in hw.
		 */
		if (mode->vdisplay != adjusted_mode->vdisplay ||
		    mode->hdisplay != adjusted_mode->hdisplay) {
			pfit_control |= PFIT_ENABLE;
			if (INTEL_INFO(dev)->gen >= 4)
				pfit_control |= PFIT_SCALING_AUTO;
			else
				pfit_control |= (VERT_AUTO_SCALE |
						 VERT_INTERP_BILINEAR |
						 HORIZ_AUTO_SCALE |
						 HORIZ_INTERP_BILINEAR);
		}
		break;
	default:
		WARN(1, "bad panel fit mode: %d\n", fitting_mode);
		return;
	}

	/* 965+ wants fuzzy fitting */
	/* FIXME: handle multiple panels by failing gracefully */
	if (INTEL_INFO(dev)->gen >= 4)
		pfit_control |= ((intel_crtc->pipe << PFIT_PIPE_SHIFT) |
				 PFIT_FILTER_FUZZY);

out:
	if ((pfit_control & PFIT_ENABLE) == 0) {
		pfit_control = 0;
		pfit_pgm_ratios = 0;
	}

	/* Make sure pre-965 set dither correctly for 18bpp panels. */
	if (INTEL_INFO(dev)->gen < 4 && pipe_config->pipe_bpp == 18)
		pfit_control |= PANEL_8TO6_DITHER_ENABLE;

	pipe_config->gmch_pfit.control = pfit_control;
	pipe_config->gmch_pfit.pgm_ratios = pfit_pgm_ratios;
	pipe_config->gmch_pfit.lvds_border_bits = border;
}
Example #3
0
void intel_gmch_panel_fitting(struct intel_crtc *intel_crtc,
                              struct intel_crtc_config *pipe_config,
                              int fitting_mode)
{
    struct drm_device *dev = intel_crtc->base.dev;
    u32 pfit_control = 0, pfit_pgm_ratios = 0, border = 0;
    struct drm_display_mode *adjusted_mode;

    adjusted_mode = &pipe_config->adjusted_mode;

    /* Native modes don't need fitting */
    if (adjusted_mode->hdisplay == pipe_config->pipe_src_w &&
            adjusted_mode->vdisplay == pipe_config->pipe_src_h)
        goto out;

    switch (fitting_mode) {
    case DRM_MODE_SCALE_CENTER:
        /*
         * For centered modes, we have to calculate border widths &
         * heights and modify the values programmed into the CRTC.
         */
        centre_horizontally(adjusted_mode, pipe_config->pipe_src_w);
        centre_vertically(adjusted_mode, pipe_config->pipe_src_h);
        border = LVDS_BORDER_ENABLE;
        break;
    case DRM_MODE_SCALE_ASPECT:
        /* Scale but preserve the aspect ratio */
        if (INTEL_INFO(dev)->gen >= 4)
            i965_scale_aspect(pipe_config, &pfit_control);
        else
            i9xx_scale_aspect(pipe_config, &pfit_control,
                              &pfit_pgm_ratios, &border);
        break;
    case DRM_MODE_SCALE_FULLSCREEN:
        /*
         * Full scaling, even if it changes the aspect ratio.
         * Fortunately this is all done for us in hw.
         */
        if (pipe_config->pipe_src_h != adjusted_mode->vdisplay ||
                pipe_config->pipe_src_w != adjusted_mode->hdisplay) {
            pfit_control |= PFIT_ENABLE;
            if (INTEL_INFO(dev)->gen >= 4)
                pfit_control |= PFIT_SCALING_AUTO;
            else
                pfit_control |= (VERT_AUTO_SCALE |
                                 VERT_INTERP_BILINEAR |
                                 HORIZ_AUTO_SCALE |
                                 HORIZ_INTERP_BILINEAR);
        }
        break;
    default:
        WARN(1, "bad panel fit mode: %d\n", fitting_mode);
        return;
    }

    /* 965+ wants fuzzy fitting */
    /* FIXME: handle multiple panels by failing gracefully */
    if (INTEL_INFO(dev)->gen >= 4)
        pfit_control |= ((intel_crtc->pipe << PFIT_PIPE_SHIFT) |
                         PFIT_FILTER_FUZZY);

out:
    if ((pfit_control & PFIT_ENABLE) == 0) {
        pfit_control = 0;
        pfit_pgm_ratios = 0;
    }

    /* Make sure pre-965 set dither correctly for 18bpp panels. */
    if (INTEL_INFO(dev)->gen < 4 && pipe_config->pipe_bpp == 18)
        pfit_control |= PANEL_8TO6_DITHER_ENABLE;

    pipe_config->gmch_pfit.control = pfit_control;
    pipe_config->gmch_pfit.pgm_ratios = pfit_pgm_ratios;
    pipe_config->gmch_pfit.lvds_border_bits = border;
}