Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.18 263 lines 7.3 kB view raw
1/* 2 * shmob_drm_plane.c -- SH Mobile DRM Planes 3 * 4 * Copyright (C) 2012 Renesas Electronics Corporation 5 * 6 * Laurent Pinchart (laurent.pinchart@ideasonboard.com) 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License as published by 10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 12 */ 13 14#include <drm/drmP.h> 15#include <drm/drm_crtc.h> 16#include <drm/drm_crtc_helper.h> 17#include <drm/drm_fb_cma_helper.h> 18#include <drm/drm_gem_cma_helper.h> 19 20#include "shmob_drm_drv.h" 21#include "shmob_drm_kms.h" 22#include "shmob_drm_plane.h" 23#include "shmob_drm_regs.h" 24 25struct shmob_drm_plane { 26 struct drm_plane plane; 27 unsigned int index; 28 unsigned int alpha; 29 30 const struct shmob_drm_format_info *format; 31 unsigned long dma[2]; 32 33 unsigned int src_x; 34 unsigned int src_y; 35 unsigned int crtc_x; 36 unsigned int crtc_y; 37 unsigned int crtc_w; 38 unsigned int crtc_h; 39}; 40 41#define to_shmob_plane(p) container_of(p, struct shmob_drm_plane, plane) 42 43static void shmob_drm_plane_compute_base(struct shmob_drm_plane *splane, 44 struct drm_framebuffer *fb, 45 int x, int y) 46{ 47 struct drm_gem_cma_object *gem; 48 unsigned int bpp; 49 50 bpp = splane->format->yuv ? 8 : splane->format->bpp; 51 gem = drm_fb_cma_get_gem_obj(fb, 0); 52 splane->dma[0] = gem->paddr + fb->offsets[0] 53 + y * fb->pitches[0] + x * bpp / 8; 54 55 if (splane->format->yuv) { 56 bpp = splane->format->bpp - 8; 57 gem = drm_fb_cma_get_gem_obj(fb, 1); 58 splane->dma[1] = gem->paddr + fb->offsets[1] 59 + y / (bpp == 4 ? 2 : 1) * fb->pitches[1] 60 + x * (bpp == 16 ? 2 : 1); 61 } 62} 63 64static void __shmob_drm_plane_setup(struct shmob_drm_plane *splane, 65 struct drm_framebuffer *fb) 66{ 67 struct shmob_drm_device *sdev = splane->plane.dev->dev_private; 68 u32 format; 69 70 /* TODO: Support ROP3 mode */ 71 format = LDBBSIFR_EN | (splane->alpha << LDBBSIFR_LAY_SHIFT); 72 73 switch (splane->format->fourcc) { 74 case DRM_FORMAT_RGB565: 75 case DRM_FORMAT_NV21: 76 case DRM_FORMAT_NV61: 77 case DRM_FORMAT_NV42: 78 format |= LDBBSIFR_SWPL | LDBBSIFR_SWPW; 79 break; 80 case DRM_FORMAT_RGB888: 81 case DRM_FORMAT_NV12: 82 case DRM_FORMAT_NV16: 83 case DRM_FORMAT_NV24: 84 format |= LDBBSIFR_SWPL | LDBBSIFR_SWPW | LDBBSIFR_SWPB; 85 break; 86 case DRM_FORMAT_ARGB8888: 87 default: 88 format |= LDBBSIFR_SWPL; 89 break; 90 } 91 92 switch (splane->format->fourcc) { 93 case DRM_FORMAT_RGB565: 94 format |= LDBBSIFR_AL_1 | LDBBSIFR_RY | LDBBSIFR_RPKF_RGB16; 95 break; 96 case DRM_FORMAT_RGB888: 97 format |= LDBBSIFR_AL_1 | LDBBSIFR_RY | LDBBSIFR_RPKF_RGB24; 98 break; 99 case DRM_FORMAT_ARGB8888: 100 format |= LDBBSIFR_AL_PK | LDBBSIFR_RY | LDDFR_PKF_ARGB32; 101 break; 102 case DRM_FORMAT_NV12: 103 case DRM_FORMAT_NV21: 104 format |= LDBBSIFR_AL_1 | LDBBSIFR_CHRR_420; 105 break; 106 case DRM_FORMAT_NV16: 107 case DRM_FORMAT_NV61: 108 format |= LDBBSIFR_AL_1 | LDBBSIFR_CHRR_422; 109 break; 110 case DRM_FORMAT_NV24: 111 case DRM_FORMAT_NV42: 112 format |= LDBBSIFR_AL_1 | LDBBSIFR_CHRR_444; 113 break; 114 } 115 116#define plane_reg_dump(sdev, splane, reg) \ 117 dev_dbg(sdev->ddev->dev, "%s(%u): %s 0x%08x 0x%08x\n", __func__, \ 118 splane->index, #reg, \ 119 lcdc_read(sdev, reg(splane->index)), \ 120 lcdc_read(sdev, reg(splane->index) + LCDC_SIDE_B_OFFSET)) 121 122 plane_reg_dump(sdev, splane, LDBnBSIFR); 123 plane_reg_dump(sdev, splane, LDBnBSSZR); 124 plane_reg_dump(sdev, splane, LDBnBLOCR); 125 plane_reg_dump(sdev, splane, LDBnBSMWR); 126 plane_reg_dump(sdev, splane, LDBnBSAYR); 127 plane_reg_dump(sdev, splane, LDBnBSACR); 128 129 lcdc_write(sdev, LDBCR, LDBCR_UPC(splane->index)); 130 dev_dbg(sdev->ddev->dev, "%s(%u): %s 0x%08x\n", __func__, splane->index, 131 "LDBCR", lcdc_read(sdev, LDBCR)); 132 133 lcdc_write(sdev, LDBnBSIFR(splane->index), format); 134 135 lcdc_write(sdev, LDBnBSSZR(splane->index), 136 (splane->crtc_h << LDBBSSZR_BVSS_SHIFT) | 137 (splane->crtc_w << LDBBSSZR_BHSS_SHIFT)); 138 lcdc_write(sdev, LDBnBLOCR(splane->index), 139 (splane->crtc_y << LDBBLOCR_CVLC_SHIFT) | 140 (splane->crtc_x << LDBBLOCR_CHLC_SHIFT)); 141 lcdc_write(sdev, LDBnBSMWR(splane->index), 142 fb->pitches[0] << LDBBSMWR_BSMW_SHIFT); 143 144 shmob_drm_plane_compute_base(splane, fb, splane->src_x, splane->src_y); 145 146 lcdc_write(sdev, LDBnBSAYR(splane->index), splane->dma[0]); 147 if (splane->format->yuv) 148 lcdc_write(sdev, LDBnBSACR(splane->index), splane->dma[1]); 149 150 lcdc_write(sdev, LDBCR, 151 LDBCR_UPF(splane->index) | LDBCR_UPD(splane->index)); 152 dev_dbg(sdev->ddev->dev, "%s(%u): %s 0x%08x\n", __func__, splane->index, 153 "LDBCR", lcdc_read(sdev, LDBCR)); 154 155 plane_reg_dump(sdev, splane, LDBnBSIFR); 156 plane_reg_dump(sdev, splane, LDBnBSSZR); 157 plane_reg_dump(sdev, splane, LDBnBLOCR); 158 plane_reg_dump(sdev, splane, LDBnBSMWR); 159 plane_reg_dump(sdev, splane, LDBnBSAYR); 160 plane_reg_dump(sdev, splane, LDBnBSACR); 161} 162 163void shmob_drm_plane_setup(struct drm_plane *plane) 164{ 165 struct shmob_drm_plane *splane = to_shmob_plane(plane); 166 167 if (plane->fb == NULL) 168 return; 169 170 __shmob_drm_plane_setup(splane, plane->fb); 171} 172 173static int 174shmob_drm_plane_update(struct drm_plane *plane, struct drm_crtc *crtc, 175 struct drm_framebuffer *fb, int crtc_x, int crtc_y, 176 unsigned int crtc_w, unsigned int crtc_h, 177 uint32_t src_x, uint32_t src_y, 178 uint32_t src_w, uint32_t src_h, 179 struct drm_modeset_acquire_ctx *ctx) 180{ 181 struct shmob_drm_plane *splane = to_shmob_plane(plane); 182 struct shmob_drm_device *sdev = plane->dev->dev_private; 183 const struct shmob_drm_format_info *format; 184 185 format = shmob_drm_format_info(fb->format->format); 186 if (format == NULL) { 187 dev_dbg(sdev->dev, "update_plane: unsupported format %08x\n", 188 fb->format->format); 189 return -EINVAL; 190 } 191 192 if (src_w >> 16 != crtc_w || src_h >> 16 != crtc_h) { 193 dev_dbg(sdev->dev, "%s: scaling not supported\n", __func__); 194 return -EINVAL; 195 } 196 197 splane->format = format; 198 199 splane->src_x = src_x >> 16; 200 splane->src_y = src_y >> 16; 201 splane->crtc_x = crtc_x; 202 splane->crtc_y = crtc_y; 203 splane->crtc_w = crtc_w; 204 splane->crtc_h = crtc_h; 205 206 __shmob_drm_plane_setup(splane, fb); 207 return 0; 208} 209 210static int shmob_drm_plane_disable(struct drm_plane *plane, 211 struct drm_modeset_acquire_ctx *ctx) 212{ 213 struct shmob_drm_plane *splane = to_shmob_plane(plane); 214 struct shmob_drm_device *sdev = plane->dev->dev_private; 215 216 splane->format = NULL; 217 218 lcdc_write(sdev, LDBnBSIFR(splane->index), 0); 219 return 0; 220} 221 222static void shmob_drm_plane_destroy(struct drm_plane *plane) 223{ 224 drm_plane_force_disable(plane); 225 drm_plane_cleanup(plane); 226} 227 228static const struct drm_plane_funcs shmob_drm_plane_funcs = { 229 .update_plane = shmob_drm_plane_update, 230 .disable_plane = shmob_drm_plane_disable, 231 .destroy = shmob_drm_plane_destroy, 232}; 233 234static const uint32_t formats[] = { 235 DRM_FORMAT_RGB565, 236 DRM_FORMAT_RGB888, 237 DRM_FORMAT_ARGB8888, 238 DRM_FORMAT_NV12, 239 DRM_FORMAT_NV21, 240 DRM_FORMAT_NV16, 241 DRM_FORMAT_NV61, 242 DRM_FORMAT_NV24, 243 DRM_FORMAT_NV42, 244}; 245 246int shmob_drm_plane_create(struct shmob_drm_device *sdev, unsigned int index) 247{ 248 struct shmob_drm_plane *splane; 249 int ret; 250 251 splane = devm_kzalloc(sdev->dev, sizeof(*splane), GFP_KERNEL); 252 if (splane == NULL) 253 return -ENOMEM; 254 255 splane->index = index; 256 splane->alpha = 255; 257 258 ret = drm_plane_init(sdev->ddev, &splane->plane, 1, 259 &shmob_drm_plane_funcs, formats, 260 ARRAY_SIZE(formats), false); 261 262 return ret; 263}