blob: aa4ebe3192ec973512279389911c550d4a648296 [file] [log] [blame]
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001/*
2 * SuperH Mobile LCDC Framebuffer
3 *
4 * Copyright (c) 2008 Magnus Damm
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020011#include <linux/atomic.h>
12#include <linux/backlight.h>
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070013#include <linux/clk.h>
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020014#include <linux/console.h>
Laurent Pinchartc5deac32011-12-12 18:43:16 +010015#include <linux/ctype.h>
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070016#include <linux/dma-mapping.h>
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020017#include <linux/delay.h>
Daniel Vetter9e146702019-05-28 11:02:59 +020018#include <linux/fbcon.h>
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020019#include <linux/init.h>
Magnus Damm85645572008-12-19 15:34:41 +090020#include <linux/interrupt.h>
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020021#include <linux/ioctl.h>
22#include <linux/kernel.h>
23#include <linux/mm.h>
24#include <linux/module.h>
25#include <linux/platform_device.h>
26#include <linux/pm_runtime.h>
27#include <linux/slab.h>
Laurent Pinchartedd153a2011-12-13 14:02:28 +010028#include <linux/videodev2.h>
Paul Mundt1c6a3072009-07-01 06:50:31 +000029#include <linux/vmalloc.h>
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020030
Paul Mundt225c9a82008-10-01 16:24:32 +090031#include <video/sh_mobile_lcdc.h>
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070032
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +000033#include "sh_mobile_lcdcfb.h"
34
Laurent Pinchartc5deac32011-12-12 18:43:16 +010035/* ----------------------------------------------------------------------------
36 * Overlay register definitions
37 */
38
39#define LDBCR 0xb00
40#define LDBCR_UPC(n) (1 << ((n) + 16))
41#define LDBCR_UPF(n) (1 << ((n) + 8))
42#define LDBCR_UPD(n) (1 << ((n) + 0))
43#define LDBnBSIFR(n) (0xb20 + (n) * 0x20 + 0x00)
44#define LDBBSIFR_EN (1 << 31)
45#define LDBBSIFR_VS (1 << 29)
46#define LDBBSIFR_BRSEL (1 << 28)
47#define LDBBSIFR_MX (1 << 27)
48#define LDBBSIFR_MY (1 << 26)
49#define LDBBSIFR_CV3 (3 << 24)
50#define LDBBSIFR_CV2 (2 << 24)
51#define LDBBSIFR_CV1 (1 << 24)
52#define LDBBSIFR_CV0 (0 << 24)
53#define LDBBSIFR_CV_MASK (3 << 24)
54#define LDBBSIFR_LAY_MASK (0xff << 16)
55#define LDBBSIFR_LAY_SHIFT 16
56#define LDBBSIFR_ROP3_MASK (0xff << 16)
57#define LDBBSIFR_ROP3_SHIFT 16
58#define LDBBSIFR_AL_PL8 (3 << 14)
59#define LDBBSIFR_AL_PL1 (2 << 14)
60#define LDBBSIFR_AL_PK (1 << 14)
61#define LDBBSIFR_AL_1 (0 << 14)
62#define LDBBSIFR_AL_MASK (3 << 14)
63#define LDBBSIFR_SWPL (1 << 10)
64#define LDBBSIFR_SWPW (1 << 9)
65#define LDBBSIFR_SWPB (1 << 8)
66#define LDBBSIFR_RY (1 << 7)
67#define LDBBSIFR_CHRR_420 (2 << 0)
68#define LDBBSIFR_CHRR_422 (1 << 0)
69#define LDBBSIFR_CHRR_444 (0 << 0)
70#define LDBBSIFR_RPKF_ARGB32 (0x00 << 0)
71#define LDBBSIFR_RPKF_RGB16 (0x03 << 0)
72#define LDBBSIFR_RPKF_RGB24 (0x0b << 0)
73#define LDBBSIFR_RPKF_MASK (0x1f << 0)
74#define LDBnBSSZR(n) (0xb20 + (n) * 0x20 + 0x04)
75#define LDBBSSZR_BVSS_MASK (0xfff << 16)
76#define LDBBSSZR_BVSS_SHIFT 16
77#define LDBBSSZR_BHSS_MASK (0xfff << 0)
78#define LDBBSSZR_BHSS_SHIFT 0
79#define LDBnBLOCR(n) (0xb20 + (n) * 0x20 + 0x08)
80#define LDBBLOCR_CVLC_MASK (0xfff << 16)
81#define LDBBLOCR_CVLC_SHIFT 16
82#define LDBBLOCR_CHLC_MASK (0xfff << 0)
83#define LDBBLOCR_CHLC_SHIFT 0
84#define LDBnBSMWR(n) (0xb20 + (n) * 0x20 + 0x0c)
85#define LDBBSMWR_BSMWA_MASK (0xffff << 16)
86#define LDBBSMWR_BSMWA_SHIFT 16
87#define LDBBSMWR_BSMW_MASK (0xffff << 0)
88#define LDBBSMWR_BSMW_SHIFT 0
89#define LDBnBSAYR(n) (0xb20 + (n) * 0x20 + 0x10)
90#define LDBBSAYR_FG1A_MASK (0xff << 24)
91#define LDBBSAYR_FG1A_SHIFT 24
92#define LDBBSAYR_FG1R_MASK (0xff << 16)
93#define LDBBSAYR_FG1R_SHIFT 16
94#define LDBBSAYR_FG1G_MASK (0xff << 8)
95#define LDBBSAYR_FG1G_SHIFT 8
96#define LDBBSAYR_FG1B_MASK (0xff << 0)
97#define LDBBSAYR_FG1B_SHIFT 0
98#define LDBnBSACR(n) (0xb20 + (n) * 0x20 + 0x14)
99#define LDBBSACR_FG2A_MASK (0xff << 24)
100#define LDBBSACR_FG2A_SHIFT 24
101#define LDBBSACR_FG2R_MASK (0xff << 16)
102#define LDBBSACR_FG2R_SHIFT 16
103#define LDBBSACR_FG2G_MASK (0xff << 8)
104#define LDBBSACR_FG2G_SHIFT 8
105#define LDBBSACR_FG2B_MASK (0xff << 0)
106#define LDBBSACR_FG2B_SHIFT 0
107#define LDBnBSAAR(n) (0xb20 + (n) * 0x20 + 0x18)
108#define LDBBSAAR_AP_MASK (0xff << 24)
109#define LDBBSAAR_AP_SHIFT 24
110#define LDBBSAAR_R_MASK (0xff << 16)
111#define LDBBSAAR_R_SHIFT 16
112#define LDBBSAAR_GY_MASK (0xff << 8)
113#define LDBBSAAR_GY_SHIFT 8
114#define LDBBSAAR_B_MASK (0xff << 0)
115#define LDBBSAAR_B_SHIFT 0
116#define LDBnBPPCR(n) (0xb20 + (n) * 0x20 + 0x1c)
117#define LDBBPPCR_AP_MASK (0xff << 24)
118#define LDBBPPCR_AP_SHIFT 24
119#define LDBBPPCR_R_MASK (0xff << 16)
120#define LDBBPPCR_R_SHIFT 16
121#define LDBBPPCR_GY_MASK (0xff << 8)
122#define LDBBPPCR_GY_SHIFT 8
123#define LDBBPPCR_B_MASK (0xff << 0)
124#define LDBBPPCR_B_SHIFT 0
125#define LDBnBBGCL(n) (0xb10 + (n) * 0x04)
126#define LDBBBGCL_BGA_MASK (0xff << 24)
127#define LDBBBGCL_BGA_SHIFT 24
128#define LDBBBGCL_BGR_MASK (0xff << 16)
129#define LDBBBGCL_BGR_SHIFT 16
130#define LDBBBGCL_BGG_MASK (0xff << 8)
131#define LDBBBGCL_BGG_SHIFT 8
132#define LDBBBGCL_BGB_MASK (0xff << 0)
133#define LDBBBGCL_BGB_SHIFT 0
134
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000135#define SIDE_B_OFFSET 0x1000
136#define MIRROR_OFFSET 0x2000
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700137
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +0000138#define MAX_XRES 1920
139#define MAX_YRES 1080
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700140
Laurent Pinchartc5deac32011-12-12 18:43:16 +0100141enum sh_mobile_lcdc_overlay_mode {
142 LCDC_OVERLAY_BLEND,
143 LCDC_OVERLAY_ROP3,
144};
145
146/*
147 * struct sh_mobile_lcdc_overlay - LCDC display overlay
148 *
149 * @channel: LCDC channel this overlay belongs to
150 * @cfg: Overlay configuration
151 * @info: Frame buffer device
152 * @index: Overlay index (0-3)
153 * @base: Overlay registers base address
154 * @enabled: True if the overlay is enabled
155 * @mode: Overlay blending mode (alpha blend or ROP3)
156 * @alpha: Global alpha blending value (0-255, for alpha blending mode)
157 * @rop3: Raster operation (for ROP3 mode)
158 * @fb_mem: Frame buffer virtual memory address
159 * @fb_size: Frame buffer size in bytes
160 * @dma_handle: Frame buffer DMA address
161 * @base_addr_y: Overlay base address (RGB or luma component)
162 * @base_addr_c: Overlay base address (chroma component)
Laurent Pincharta4aa25f2012-03-15 18:15:37 +0100163 * @pan_y_offset: Panning linear offset in bytes (luma component)
Laurent Pinchartc5deac32011-12-12 18:43:16 +0100164 * @format: Current pixelf format
165 * @xres: Horizontal visible resolution
166 * @xres_virtual: Horizontal total resolution
167 * @yres: Vertical visible resolution
168 * @yres_virtual: Vertical total resolution
169 * @pitch: Overlay line pitch
170 * @pos_x: Horizontal overlay position
171 * @pos_y: Vertical overlay position
172 */
173struct sh_mobile_lcdc_overlay {
174 struct sh_mobile_lcdc_chan *channel;
175
176 const struct sh_mobile_lcdc_overlay_cfg *cfg;
177 struct fb_info *info;
178
179 unsigned int index;
180 unsigned long base;
181
182 bool enabled;
183 enum sh_mobile_lcdc_overlay_mode mode;
184 unsigned int alpha;
185 unsigned int rop3;
186
187 void *fb_mem;
188 unsigned long fb_size;
189
190 dma_addr_t dma_handle;
191 unsigned long base_addr_y;
192 unsigned long base_addr_c;
Laurent Pincharta4aa25f2012-03-15 18:15:37 +0100193 unsigned long pan_y_offset;
Laurent Pinchartc5deac32011-12-12 18:43:16 +0100194
195 const struct sh_mobile_lcdc_format_info *format;
196 unsigned int xres;
197 unsigned int xres_virtual;
198 unsigned int yres;
199 unsigned int yres_virtual;
200 unsigned int pitch;
201 int pos_x;
202 int pos_y;
203};
204
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200205struct sh_mobile_lcdc_priv {
206 void __iomem *base;
207 int irq;
208 atomic_t hw_usecnt;
209 struct device *dev;
210 struct clk *dot_clk;
211 unsigned long lddckr;
Laurent Pinchartc5deac32011-12-12 18:43:16 +0100212
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200213 struct sh_mobile_lcdc_chan ch[2];
Laurent Pinchartc5deac32011-12-12 18:43:16 +0100214 struct sh_mobile_lcdc_overlay overlays[4];
215
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200216 int started;
217 int forced_fourcc; /* 2 channel LCDC must share fourcc setting */
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200218};
219
220/* -----------------------------------------------------------------------------
221 * Registers access
222 */
223
Magnus Damm0246c472009-08-14 10:49:08 +0000224static unsigned long lcdc_offs_mainlcd[NR_CH_REGS] = {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700225 [LDDCKPAT1R] = 0x400,
226 [LDDCKPAT2R] = 0x404,
227 [LDMT1R] = 0x418,
228 [LDMT2R] = 0x41c,
229 [LDMT3R] = 0x420,
230 [LDDFR] = 0x424,
231 [LDSM1R] = 0x428,
Magnus Damm85645572008-12-19 15:34:41 +0900232 [LDSM2R] = 0x42c,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700233 [LDSA1R] = 0x430,
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000234 [LDSA2R] = 0x434,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700235 [LDMLSR] = 0x438,
236 [LDHCNR] = 0x448,
237 [LDHSYNR] = 0x44c,
238 [LDVLNR] = 0x450,
239 [LDVSYNR] = 0x454,
240 [LDPMR] = 0x460,
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000241 [LDHAJR] = 0x4a0,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700242};
243
Magnus Damm0246c472009-08-14 10:49:08 +0000244static unsigned long lcdc_offs_sublcd[NR_CH_REGS] = {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700245 [LDDCKPAT1R] = 0x408,
246 [LDDCKPAT2R] = 0x40c,
247 [LDMT1R] = 0x600,
248 [LDMT2R] = 0x604,
249 [LDMT3R] = 0x608,
250 [LDDFR] = 0x60c,
251 [LDSM1R] = 0x610,
Magnus Damm85645572008-12-19 15:34:41 +0900252 [LDSM2R] = 0x614,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700253 [LDSA1R] = 0x618,
254 [LDMLSR] = 0x620,
255 [LDHCNR] = 0x624,
256 [LDHSYNR] = 0x628,
257 [LDVLNR] = 0x62c,
258 [LDVSYNR] = 0x630,
259 [LDPMR] = 0x63c,
260};
261
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000262static bool banked(int reg_nr)
263{
264 switch (reg_nr) {
265 case LDMT1R:
266 case LDMT2R:
267 case LDMT3R:
268 case LDDFR:
269 case LDSM1R:
270 case LDSA1R:
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000271 case LDSA2R:
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000272 case LDMLSR:
273 case LDHCNR:
274 case LDHSYNR:
275 case LDVLNR:
276 case LDVSYNR:
277 return true;
278 }
279 return false;
280}
281
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200282static int lcdc_chan_is_sublcd(struct sh_mobile_lcdc_chan *chan)
283{
Laurent Pinchartb5ef9672011-11-22 00:56:58 +0100284 return chan->cfg->chan == LCDC_CHAN_SUBLCD;
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200285}
286
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700287static void lcdc_write_chan(struct sh_mobile_lcdc_chan *chan,
288 int reg_nr, unsigned long data)
289{
290 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr]);
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000291 if (banked(reg_nr))
292 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
293 SIDE_B_OFFSET);
294}
295
296static void lcdc_write_chan_mirror(struct sh_mobile_lcdc_chan *chan,
297 int reg_nr, unsigned long data)
298{
299 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
300 MIRROR_OFFSET);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700301}
302
303static unsigned long lcdc_read_chan(struct sh_mobile_lcdc_chan *chan,
304 int reg_nr)
305{
306 return ioread32(chan->lcdc->base + chan->reg_offs[reg_nr]);
307}
308
Laurent Pinchartc5deac32011-12-12 18:43:16 +0100309static void lcdc_write_overlay(struct sh_mobile_lcdc_overlay *ovl,
310 int reg, unsigned long data)
311{
312 iowrite32(data, ovl->channel->lcdc->base + reg);
313 iowrite32(data, ovl->channel->lcdc->base + reg + SIDE_B_OFFSET);
314}
315
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700316static void lcdc_write(struct sh_mobile_lcdc_priv *priv,
317 unsigned long reg_offs, unsigned long data)
318{
319 iowrite32(data, priv->base + reg_offs);
320}
321
322static unsigned long lcdc_read(struct sh_mobile_lcdc_priv *priv,
323 unsigned long reg_offs)
324{
325 return ioread32(priv->base + reg_offs);
326}
327
328static void lcdc_wait_bit(struct sh_mobile_lcdc_priv *priv,
329 unsigned long reg_offs,
330 unsigned long mask, unsigned long until)
331{
332 while ((lcdc_read(priv, reg_offs) & mask) != until)
333 cpu_relax();
334}
335
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200336/* -----------------------------------------------------------------------------
337 * Clock management
338 */
339
340static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv *priv)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700341{
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200342 if (atomic_inc_and_test(&priv->hw_usecnt)) {
Xu Wang5988c262020-10-14 08:57:22 +0000343 clk_prepare_enable(priv->dot_clk);
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200344 pm_runtime_get_sync(priv->dev);
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200345 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700346}
347
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200348static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv *priv)
349{
350 if (atomic_sub_return(1, &priv->hw_usecnt) == -1) {
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200351 pm_runtime_put(priv->dev);
Xu Wang5988c262020-10-14 08:57:22 +0000352 clk_disable_unprepare(priv->dot_clk);
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200353 }
354}
355
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +0200356static int sh_mobile_lcdc_setup_clocks(struct sh_mobile_lcdc_priv *priv,
357 int clock_source)
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200358{
Laurent Pinchart4774c122011-09-07 15:47:07 +0200359 struct clk *clk;
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200360 char *str;
361
362 switch (clock_source) {
363 case LCDC_CLK_BUS:
364 str = "bus_clk";
365 priv->lddckr = LDDCKR_ICKSEL_BUS;
366 break;
367 case LCDC_CLK_PERIPHERAL:
368 str = "peripheral_clk";
369 priv->lddckr = LDDCKR_ICKSEL_MIPI;
370 break;
371 case LCDC_CLK_EXTERNAL:
372 str = NULL;
373 priv->lddckr = LDDCKR_ICKSEL_HDMI;
374 break;
375 default:
376 return -EINVAL;
377 }
378
Laurent Pinchart4774c122011-09-07 15:47:07 +0200379 if (str == NULL)
380 return 0;
381
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +0200382 clk = clk_get(priv->dev, str);
Laurent Pinchart4774c122011-09-07 15:47:07 +0200383 if (IS_ERR(clk)) {
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +0200384 dev_err(priv->dev, "cannot get dot clock %s\n", str);
Laurent Pinchart4774c122011-09-07 15:47:07 +0200385 return PTR_ERR(clk);
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200386 }
387
Laurent Pinchart4774c122011-09-07 15:47:07 +0200388 priv->dot_clk = clk;
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200389 return 0;
390}
391
392/* -----------------------------------------------------------------------------
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200393 * Display, panel and deferred I/O
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200394 */
395
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700396static void lcdc_sys_write_index(void *handle, unsigned long data)
397{
398 struct sh_mobile_lcdc_chan *ch = handle;
399
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200400 lcdc_write(ch->lcdc, _LDDWD0R, data | LDDWDxR_WDACT);
401 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
402 lcdc_write(ch->lcdc, _LDDWAR, LDDWAR_WA |
403 (lcdc_chan_is_sublcd(ch) ? 2 : 0));
404 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700405}
406
407static void lcdc_sys_write_data(void *handle, unsigned long data)
408{
409 struct sh_mobile_lcdc_chan *ch = handle;
410
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200411 lcdc_write(ch->lcdc, _LDDWD0R, data | LDDWDxR_WDACT | LDDWDxR_RSW);
412 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
413 lcdc_write(ch->lcdc, _LDDWAR, LDDWAR_WA |
414 (lcdc_chan_is_sublcd(ch) ? 2 : 0));
415 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700416}
417
418static unsigned long lcdc_sys_read_data(void *handle)
419{
420 struct sh_mobile_lcdc_chan *ch = handle;
421
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200422 lcdc_write(ch->lcdc, _LDDRDR, LDDRDR_RSR);
423 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
424 lcdc_write(ch->lcdc, _LDDRAR, LDDRAR_RA |
425 (lcdc_chan_is_sublcd(ch) ? 2 : 0));
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700426 udelay(1);
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200427 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700428
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200429 return lcdc_read(ch->lcdc, _LDDRDR) & LDDRDR_DRD_MASK;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700430}
431
Laurent Pinchartd38d8402012-08-13 13:56:46 +0200432static struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops = {
Kees Cook6895aff2017-01-11 17:09:50 +0100433 .write_index = lcdc_sys_write_index,
434 .write_data = lcdc_sys_write_data,
435 .read_data = lcdc_sys_read_data,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700436};
437
Paul Mundt1c6a3072009-07-01 06:50:31 +0000438static int sh_mobile_lcdc_sginit(struct fb_info *info,
439 struct list_head *pagelist)
440{
441 struct sh_mobile_lcdc_chan *ch = info->par;
Laurent Pinchart58f03d92011-11-30 23:07:30 +0100442 unsigned int nr_pages_max = ch->fb_size >> PAGE_SHIFT;
Paul Mundt1c6a3072009-07-01 06:50:31 +0000443 struct page *page;
444 int nr_pages = 0;
445
446 sg_init_table(ch->sglist, nr_pages_max);
447
448 list_for_each_entry(page, pagelist, lru)
449 sg_set_page(&ch->sglist[nr_pages++], page, PAGE_SIZE, 0);
450
451 return nr_pages;
452}
453
Magnus Damm85645572008-12-19 15:34:41 +0900454static void sh_mobile_lcdc_deferred_io(struct fb_info *info,
455 struct list_head *pagelist)
456{
457 struct sh_mobile_lcdc_chan *ch = info->par;
Laurent Pinchartb5ef9672011-11-22 00:56:58 +0100458 const struct sh_mobile_lcdc_panel_cfg *panel = &ch->cfg->panel_cfg;
Magnus Damm85645572008-12-19 15:34:41 +0900459
460 /* enable clocks before accessing hardware */
461 sh_mobile_lcdc_clk_on(ch->lcdc);
462
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900463 /*
464 * It's possible to get here without anything on the pagelist via
465 * sh_mobile_lcdc_deferred_io_touch() or via a userspace fsync()
466 * invocation. In the former case, the acceleration routines are
467 * stepped in to when using the framebuffer console causing the
468 * workqueue to be scheduled without any dirty pages on the list.
469 *
470 * Despite this, a panel update is still needed given that the
471 * acceleration routines have their own methods for writing in
472 * that still need to be updated.
473 *
474 * The fsync() and empty pagelist case could be optimized for,
475 * but we don't bother, as any application exhibiting such
476 * behaviour is fundamentally broken anyways.
477 */
478 if (!list_empty(pagelist)) {
479 unsigned int nr_pages = sh_mobile_lcdc_sginit(info, pagelist);
Paul Mundt1c6a3072009-07-01 06:50:31 +0000480
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900481 /* trigger panel update */
Laurent Pincharte8363142011-11-29 14:37:35 +0100482 dma_map_sg(ch->lcdc->dev, ch->sglist, nr_pages, DMA_TO_DEVICE);
Laurent Pinchartafaad832011-09-11 22:59:04 +0200483 if (panel->start_transfer)
484 panel->start_transfer(ch, &sh_mobile_lcdc_sys_bus_ops);
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200485 lcdc_write_chan(ch, LDSM2R, LDSM2R_OSTRG);
Laurent Pincharte8363142011-11-29 14:37:35 +0100486 dma_unmap_sg(ch->lcdc->dev, ch->sglist, nr_pages,
487 DMA_TO_DEVICE);
Magnus Dammef61aae2009-12-07 14:20:06 +0000488 } else {
Laurent Pinchartafaad832011-09-11 22:59:04 +0200489 if (panel->start_transfer)
490 panel->start_transfer(ch, &sh_mobile_lcdc_sys_bus_ops);
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200491 lcdc_write_chan(ch, LDSM2R, LDSM2R_OSTRG);
Magnus Dammef61aae2009-12-07 14:20:06 +0000492 }
Magnus Damm85645572008-12-19 15:34:41 +0900493}
494
495static void sh_mobile_lcdc_deferred_io_touch(struct fb_info *info)
496{
497 struct fb_deferred_io *fbdefio = info->fbdefio;
498
499 if (fbdefio)
500 schedule_delayed_work(&info->deferred_work, fbdefio->delay);
501}
502
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200503static void sh_mobile_lcdc_display_on(struct sh_mobile_lcdc_chan *ch)
504{
Laurent Pinchartb5ef9672011-11-22 00:56:58 +0100505 const struct sh_mobile_lcdc_panel_cfg *panel = &ch->cfg->panel_cfg;
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200506
Laurent Pinchart9a2985e2011-09-11 22:59:04 +0200507 if (ch->tx_dev) {
Laurent Pinchart458981c2011-11-28 23:19:59 +0100508 int ret;
509
510 ret = ch->tx_dev->ops->display_on(ch->tx_dev);
511 if (ret < 0)
Laurent Pinchart9a2985e2011-09-11 22:59:04 +0200512 return;
Laurent Pinchart458981c2011-11-28 23:19:59 +0100513
514 if (ret == SH_MOBILE_LCDC_DISPLAY_DISCONNECTED)
515 ch->info->state = FBINFO_STATE_SUSPENDED;
Laurent Pinchart9a2985e2011-09-11 22:59:04 +0200516 }
517
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200518 /* HDMI must be enabled before LCDC configuration */
Laurent Pinchartafaad832011-09-11 22:59:04 +0200519 if (panel->display_on)
520 panel->display_on();
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200521}
522
523static void sh_mobile_lcdc_display_off(struct sh_mobile_lcdc_chan *ch)
524{
Laurent Pinchartb5ef9672011-11-22 00:56:58 +0100525 const struct sh_mobile_lcdc_panel_cfg *panel = &ch->cfg->panel_cfg;
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200526
Laurent Pinchartafaad832011-09-11 22:59:04 +0200527 if (panel->display_off)
528 panel->display_off();
Laurent Pinchart9a2985e2011-09-11 22:59:04 +0200529
530 if (ch->tx_dev)
531 ch->tx_dev->ops->display_off(ch->tx_dev);
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200532}
533
Laurent Pinchartd7ad3342011-11-22 00:56:58 +0100534static int sh_mobile_lcdc_check_var(struct fb_var_screeninfo *var,
535 struct fb_info *info);
Laurent Pinchartecd29942011-09-18 14:14:46 +0200536
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200537/* -----------------------------------------------------------------------------
538 * Format helpers
539 */
540
Laurent Pinchart105784b2011-11-29 15:58:10 +0100541struct sh_mobile_lcdc_format_info {
542 u32 fourcc;
543 unsigned int bpp;
544 bool yuv;
545 u32 lddfr;
546};
547
548static const struct sh_mobile_lcdc_format_info sh_mobile_format_infos[] = {
549 {
550 .fourcc = V4L2_PIX_FMT_RGB565,
551 .bpp = 16,
552 .yuv = false,
553 .lddfr = LDDFR_PKF_RGB16,
554 }, {
555 .fourcc = V4L2_PIX_FMT_BGR24,
556 .bpp = 24,
557 .yuv = false,
558 .lddfr = LDDFR_PKF_RGB24,
559 }, {
560 .fourcc = V4L2_PIX_FMT_BGR32,
561 .bpp = 32,
562 .yuv = false,
563 .lddfr = LDDFR_PKF_ARGB32,
564 }, {
565 .fourcc = V4L2_PIX_FMT_NV12,
566 .bpp = 12,
567 .yuv = true,
568 .lddfr = LDDFR_CC | LDDFR_YF_420,
569 }, {
570 .fourcc = V4L2_PIX_FMT_NV21,
571 .bpp = 12,
572 .yuv = true,
573 .lddfr = LDDFR_CC | LDDFR_YF_420,
574 }, {
575 .fourcc = V4L2_PIX_FMT_NV16,
576 .bpp = 16,
577 .yuv = true,
578 .lddfr = LDDFR_CC | LDDFR_YF_422,
579 }, {
580 .fourcc = V4L2_PIX_FMT_NV61,
581 .bpp = 16,
582 .yuv = true,
583 .lddfr = LDDFR_CC | LDDFR_YF_422,
584 }, {
585 .fourcc = V4L2_PIX_FMT_NV24,
586 .bpp = 24,
587 .yuv = true,
588 .lddfr = LDDFR_CC | LDDFR_YF_444,
589 }, {
590 .fourcc = V4L2_PIX_FMT_NV42,
591 .bpp = 24,
592 .yuv = true,
593 .lddfr = LDDFR_CC | LDDFR_YF_444,
594 },
595};
596
597static const struct sh_mobile_lcdc_format_info *
598sh_mobile_format_info(u32 fourcc)
599{
600 unsigned int i;
601
602 for (i = 0; i < ARRAY_SIZE(sh_mobile_format_infos); ++i) {
603 if (sh_mobile_format_infos[i].fourcc == fourcc)
604 return &sh_mobile_format_infos[i];
605 }
606
607 return NULL;
608}
609
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200610static int sh_mobile_format_fourcc(const struct fb_var_screeninfo *var)
611{
612 if (var->grayscale > 1)
613 return var->grayscale;
614
615 switch (var->bits_per_pixel) {
616 case 16:
617 return V4L2_PIX_FMT_RGB565;
618 case 24:
619 return V4L2_PIX_FMT_BGR24;
620 case 32:
621 return V4L2_PIX_FMT_BGR32;
622 default:
623 return 0;
624 }
625}
626
627static int sh_mobile_format_is_fourcc(const struct fb_var_screeninfo *var)
628{
629 return var->grayscale > 1;
630}
631
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200632/* -----------------------------------------------------------------------------
633 * Start, stop and IRQ
634 */
635
Magnus Damm85645572008-12-19 15:34:41 +0900636static irqreturn_t sh_mobile_lcdc_irq(int irq, void *data)
637{
638 struct sh_mobile_lcdc_priv *priv = data;
Magnus Damm2feb0752009-03-13 15:36:55 +0000639 struct sh_mobile_lcdc_chan *ch;
Phil Edworthy9dd38812009-09-15 12:00:18 +0000640 unsigned long ldintr;
Magnus Damm2feb0752009-03-13 15:36:55 +0000641 int is_sub;
642 int k;
Magnus Damm85645572008-12-19 15:34:41 +0900643
Laurent Pinchartdc486652011-07-13 12:13:47 +0200644 /* Acknowledge interrupts and disable further VSYNC End IRQs. */
645 ldintr = lcdc_read(priv, _LDINTR);
646 lcdc_write(priv, _LDINTR, (ldintr ^ LDINTR_STATUS_MASK) & ~LDINTR_VEE);
Magnus Damm85645572008-12-19 15:34:41 +0900647
Magnus Damm2feb0752009-03-13 15:36:55 +0000648 /* figure out if this interrupt is for main or sub lcd */
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200649 is_sub = (lcdc_read(priv, _LDSR) & LDSR_MSS) ? 1 : 0;
Magnus Damm2feb0752009-03-13 15:36:55 +0000650
Phil Edworthy9dd38812009-09-15 12:00:18 +0000651 /* wake up channel and disable clocks */
Magnus Damm2feb0752009-03-13 15:36:55 +0000652 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
653 ch = &priv->ch[k];
654
655 if (!ch->enabled)
656 continue;
657
Laurent Pinchartdc486652011-07-13 12:13:47 +0200658 /* Frame End */
Phil Edworthy9dd38812009-09-15 12:00:18 +0000659 if (ldintr & LDINTR_FS) {
660 if (is_sub == lcdc_chan_is_sublcd(ch)) {
661 ch->frame_end = 1;
662 wake_up(&ch->frame_end_wait);
Magnus Damm2feb0752009-03-13 15:36:55 +0000663
Phil Edworthy9dd38812009-09-15 12:00:18 +0000664 sh_mobile_lcdc_clk_off(priv);
665 }
666 }
667
668 /* VSYNC End */
Phil Edworthy40331b22010-02-15 13:57:49 +0000669 if (ldintr & LDINTR_VES)
670 complete(&ch->vsync_completion);
Magnus Damm2feb0752009-03-13 15:36:55 +0000671 }
672
Magnus Damm85645572008-12-19 15:34:41 +0900673 return IRQ_HANDLED;
674}
675
Laurent Pinchartd7ad3342011-11-22 00:56:58 +0100676static int sh_mobile_lcdc_wait_for_vsync(struct sh_mobile_lcdc_chan *ch)
Laurent Pinchart49766772011-11-30 23:07:30 +0100677{
678 unsigned long ldintr;
679 int ret;
680
681 /* Enable VSync End interrupt and be careful not to acknowledge any
682 * pending interrupt.
683 */
684 ldintr = lcdc_read(ch->lcdc, _LDINTR);
685 ldintr |= LDINTR_VEE | LDINTR_STATUS_MASK;
686 lcdc_write(ch->lcdc, _LDINTR, ldintr);
687
688 ret = wait_for_completion_interruptible_timeout(&ch->vsync_completion,
689 msecs_to_jiffies(100));
690 if (!ret)
691 return -ETIMEDOUT;
692
693 return 0;
694}
695
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700696static void sh_mobile_lcdc_start_stop(struct sh_mobile_lcdc_priv *priv,
697 int start)
698{
699 unsigned long tmp = lcdc_read(priv, _LDCNT2R);
700 int k;
701
702 /* start or stop the lcdc */
703 if (start)
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200704 lcdc_write(priv, _LDCNT2R, tmp | LDCNT2R_DO);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700705 else
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200706 lcdc_write(priv, _LDCNT2R, tmp & ~LDCNT2R_DO);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700707
708 /* wait until power is applied/stopped on all channels */
709 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
710 if (lcdc_read(priv, _LDCNT2R) & priv->ch[k].enabled)
711 while (1) {
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200712 tmp = lcdc_read_chan(&priv->ch[k], LDPMR)
713 & LDPMR_LPS;
714 if (start && tmp == LDPMR_LPS)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700715 break;
716 if (!start && tmp == 0)
717 break;
718 cpu_relax();
719 }
720
721 if (!start)
722 lcdc_write(priv, _LDDCKSTPR, 1); /* stop dotclock */
723}
724
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000725static void sh_mobile_lcdc_geometry(struct sh_mobile_lcdc_chan *ch)
726{
Laurent Pinchart2d045592011-11-29 13:42:48 +0100727 const struct fb_var_screeninfo *var = &ch->info->var;
728 const struct fb_videomode *mode = &ch->display.mode;
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000729 unsigned long h_total, hsync_pos, display_h_total;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000730 u32 tmp;
731
732 tmp = ch->ldmt1r_value;
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200733 tmp |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? 0 : LDMT1R_VPOL;
734 tmp |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? 0 : LDMT1R_HPOL;
Laurent Pinchartb5ef9672011-11-22 00:56:58 +0100735 tmp |= (ch->cfg->flags & LCDC_FLAGS_DWPOL) ? LDMT1R_DWPOL : 0;
736 tmp |= (ch->cfg->flags & LCDC_FLAGS_DIPOL) ? LDMT1R_DIPOL : 0;
737 tmp |= (ch->cfg->flags & LCDC_FLAGS_DAPOL) ? LDMT1R_DAPOL : 0;
738 tmp |= (ch->cfg->flags & LCDC_FLAGS_HSCNT) ? LDMT1R_HSCNT : 0;
739 tmp |= (ch->cfg->flags & LCDC_FLAGS_DWCNT) ? LDMT1R_DWCNT : 0;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000740 lcdc_write_chan(ch, LDMT1R, tmp);
741
742 /* setup SYS bus */
Laurent Pinchartb5ef9672011-11-22 00:56:58 +0100743 lcdc_write_chan(ch, LDMT2R, ch->cfg->sys_bus_cfg.ldmt2r);
744 lcdc_write_chan(ch, LDMT3R, ch->cfg->sys_bus_cfg.ldmt3r);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000745
746 /* horizontal configuration */
Laurent Pinchart2d045592011-11-29 13:42:48 +0100747 h_total = mode->xres + mode->hsync_len + mode->left_margin
748 + mode->right_margin;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000749 tmp = h_total / 8; /* HTCN */
Laurent Pinchart58f03d92011-11-30 23:07:30 +0100750 tmp |= (min(mode->xres, ch->xres) / 8) << 16; /* HDCN */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000751 lcdc_write_chan(ch, LDHCNR, tmp);
752
Laurent Pinchart2d045592011-11-29 13:42:48 +0100753 hsync_pos = mode->xres + mode->right_margin;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000754 tmp = hsync_pos / 8; /* HSYNP */
Laurent Pinchart2d045592011-11-29 13:42:48 +0100755 tmp |= (mode->hsync_len / 8) << 16; /* HSYNW */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000756 lcdc_write_chan(ch, LDHSYNR, tmp);
757
758 /* vertical configuration */
Laurent Pinchart2d045592011-11-29 13:42:48 +0100759 tmp = mode->yres + mode->vsync_len + mode->upper_margin
760 + mode->lower_margin; /* VTLN */
Laurent Pinchart58f03d92011-11-30 23:07:30 +0100761 tmp |= min(mode->yres, ch->yres) << 16; /* VDLN */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000762 lcdc_write_chan(ch, LDVLNR, tmp);
763
Laurent Pinchart2d045592011-11-29 13:42:48 +0100764 tmp = mode->yres + mode->lower_margin; /* VSYNP */
765 tmp |= mode->vsync_len << 16; /* VSYNW */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000766 lcdc_write_chan(ch, LDVSYNR, tmp);
767
768 /* Adjust horizontal synchronisation for HDMI */
Laurent Pinchart2d045592011-11-29 13:42:48 +0100769 display_h_total = mode->xres + mode->hsync_len + mode->left_margin
770 + mode->right_margin;
771 tmp = ((mode->xres & 7) << 24) | ((display_h_total & 7) << 16)
772 | ((mode->hsync_len & 7) << 8) | (hsync_pos & 7);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000773 lcdc_write_chan(ch, LDHAJR, tmp);
Kuninori Morimoto9beb09f2013-03-04 20:44:39 -0800774 lcdc_write_chan_mirror(ch, LDHAJR, tmp);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000775}
776
Laurent Pinchartc5deac32011-12-12 18:43:16 +0100777static void sh_mobile_lcdc_overlay_setup(struct sh_mobile_lcdc_overlay *ovl)
778{
779 u32 format = 0;
780
781 if (!ovl->enabled) {
782 lcdc_write(ovl->channel->lcdc, LDBCR, LDBCR_UPC(ovl->index));
783 lcdc_write_overlay(ovl, LDBnBSIFR(ovl->index), 0);
784 lcdc_write(ovl->channel->lcdc, LDBCR,
785 LDBCR_UPF(ovl->index) | LDBCR_UPD(ovl->index));
786 return;
787 }
788
789 ovl->base_addr_y = ovl->dma_handle;
Laurent Pincharta4aa25f2012-03-15 18:15:37 +0100790 ovl->base_addr_c = ovl->dma_handle
791 + ovl->xres_virtual * ovl->yres_virtual;
Laurent Pinchartc5deac32011-12-12 18:43:16 +0100792
793 switch (ovl->mode) {
794 case LCDC_OVERLAY_BLEND:
795 format = LDBBSIFR_EN | (ovl->alpha << LDBBSIFR_LAY_SHIFT);
796 break;
797
798 case LCDC_OVERLAY_ROP3:
799 format = LDBBSIFR_EN | LDBBSIFR_BRSEL
800 | (ovl->rop3 << LDBBSIFR_ROP3_SHIFT);
801 break;
802 }
803
804 switch (ovl->format->fourcc) {
805 case V4L2_PIX_FMT_RGB565:
806 case V4L2_PIX_FMT_NV21:
807 case V4L2_PIX_FMT_NV61:
808 case V4L2_PIX_FMT_NV42:
809 format |= LDBBSIFR_SWPL | LDBBSIFR_SWPW;
810 break;
811 case V4L2_PIX_FMT_BGR24:
812 case V4L2_PIX_FMT_NV12:
813 case V4L2_PIX_FMT_NV16:
814 case V4L2_PIX_FMT_NV24:
815 format |= LDBBSIFR_SWPL | LDBBSIFR_SWPW | LDBBSIFR_SWPB;
816 break;
817 case V4L2_PIX_FMT_BGR32:
818 default:
819 format |= LDBBSIFR_SWPL;
820 break;
821 }
822
823 switch (ovl->format->fourcc) {
824 case V4L2_PIX_FMT_RGB565:
825 format |= LDBBSIFR_AL_1 | LDBBSIFR_RY | LDBBSIFR_RPKF_RGB16;
826 break;
827 case V4L2_PIX_FMT_BGR24:
828 format |= LDBBSIFR_AL_1 | LDBBSIFR_RY | LDBBSIFR_RPKF_RGB24;
829 break;
830 case V4L2_PIX_FMT_BGR32:
831 format |= LDBBSIFR_AL_PK | LDBBSIFR_RY | LDDFR_PKF_ARGB32;
832 break;
833 case V4L2_PIX_FMT_NV12:
834 case V4L2_PIX_FMT_NV21:
835 format |= LDBBSIFR_AL_1 | LDBBSIFR_CHRR_420;
836 break;
837 case V4L2_PIX_FMT_NV16:
838 case V4L2_PIX_FMT_NV61:
839 format |= LDBBSIFR_AL_1 | LDBBSIFR_CHRR_422;
840 break;
841 case V4L2_PIX_FMT_NV24:
842 case V4L2_PIX_FMT_NV42:
843 format |= LDBBSIFR_AL_1 | LDBBSIFR_CHRR_444;
844 break;
845 }
846
847 lcdc_write(ovl->channel->lcdc, LDBCR, LDBCR_UPC(ovl->index));
848
849 lcdc_write_overlay(ovl, LDBnBSIFR(ovl->index), format);
850
851 lcdc_write_overlay(ovl, LDBnBSSZR(ovl->index),
852 (ovl->yres << LDBBSSZR_BVSS_SHIFT) |
853 (ovl->xres << LDBBSSZR_BHSS_SHIFT));
854 lcdc_write_overlay(ovl, LDBnBLOCR(ovl->index),
855 (ovl->pos_y << LDBBLOCR_CVLC_SHIFT) |
856 (ovl->pos_x << LDBBLOCR_CHLC_SHIFT));
857 lcdc_write_overlay(ovl, LDBnBSMWR(ovl->index),
858 ovl->pitch << LDBBSMWR_BSMW_SHIFT);
859
860 lcdc_write_overlay(ovl, LDBnBSAYR(ovl->index), ovl->base_addr_y);
861 lcdc_write_overlay(ovl, LDBnBSACR(ovl->index), ovl->base_addr_c);
862
863 lcdc_write(ovl->channel->lcdc, LDBCR,
864 LDBCR_UPF(ovl->index) | LDBCR_UPD(ovl->index));
865}
866
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200867/*
Laurent Pinchartd7ad3342011-11-22 00:56:58 +0100868 * __sh_mobile_lcdc_start - Configure and start the LCDC
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200869 * @priv: LCDC device
870 *
871 * Configure all enabled channels and start the LCDC device. All external
872 * devices (clocks, MERAM, panels, ...) are not touched by this function.
873 */
874static void __sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv *priv)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700875{
876 struct sh_mobile_lcdc_chan *ch;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700877 unsigned long tmp;
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200878 int k, m;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700879
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200880 /* Enable LCDC channels. Read data from external memory, avoid using the
881 * BEU for now.
882 */
883 lcdc_write(priv, _LDCNT2R, priv->ch[0].enabled | priv->ch[1].enabled);
Magnus Damm85645572008-12-19 15:34:41 +0900884
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200885 /* Stop the LCDC first and disable all interrupts. */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700886 sh_mobile_lcdc_start_stop(priv, 0);
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200887 lcdc_write(priv, _LDINTR, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700888
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200889 /* Configure power supply, dot clocks and start them. */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700890 tmp = priv->lddckr;
891 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
892 ch = &priv->ch[k];
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200893 if (!ch->enabled)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700894 continue;
895
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200896 /* Power supply */
897 lcdc_write_chan(ch, LDPMR, 0);
898
Laurent Pinchartb5ef9672011-11-22 00:56:58 +0100899 m = ch->cfg->clock_divider;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700900 if (!m)
901 continue;
902
Laurent Pinchart505c7de52011-07-13 12:13:47 +0200903 /* FIXME: sh7724 can only use 42, 48, 54 and 60 for the divider
904 * denominator.
905 */
906 lcdc_write_chan(ch, LDDCKPAT1R, 0);
907 lcdc_write_chan(ch, LDDCKPAT2R, (1 << (m/2)) - 1);
908
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700909 if (m == 1)
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200910 m = LDDCKR_MOSEL;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700911 tmp |= m << (lcdc_chan_is_sublcd(ch) ? 8 : 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700912 }
913
914 lcdc_write(priv, _LDDCKR, tmp);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700915 lcdc_write(priv, _LDDCKSTPR, 0);
916 lcdc_wait_bit(priv, _LDDCKSTPR, ~0, 0);
917
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200918 /* Setup geometry, format, frame buffer memory and operation mode. */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700919 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
920 ch = &priv->ch[k];
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700921 if (!ch->enabled)
922 continue;
923
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000924 sh_mobile_lcdc_geometry(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700925
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +0100926 tmp = ch->format->lddfr;
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100927
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +0100928 if (ch->format->yuv) {
Laurent Pinchart58f03d92011-11-30 23:07:30 +0100929 switch (ch->colorspace) {
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100930 case V4L2_COLORSPACE_REC709:
931 tmp |= LDDFR_CF1;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000932 break;
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100933 case V4L2_COLORSPACE_JPEG:
934 tmp |= LDDFR_CF0;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000935 break;
936 }
Magnus Damm417d4822011-01-05 10:21:00 +0000937 }
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200938
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700939 lcdc_write_chan(ch, LDDFR, tmp);
Laurent Pinchart72c04af2012-05-18 10:58:26 +0200940 lcdc_write_chan(ch, LDMLSR, ch->line_size);
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200941 lcdc_write_chan(ch, LDSA1R, ch->base_addr_y);
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +0100942 if (ch->format->yuv)
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200943 lcdc_write_chan(ch, LDSA2R, ch->base_addr_c);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700944
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200945 /* When using deferred I/O mode, configure the LCDC for one-shot
946 * operation and enable the frame end interrupt. Otherwise use
947 * continuous read mode.
948 */
949 if (ch->ldmt1r_value & LDMT1R_IFM &&
Laurent Pinchartb5ef9672011-11-22 00:56:58 +0100950 ch->cfg->sys_bus_cfg.deferred_io_msec) {
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200951 lcdc_write_chan(ch, LDSM1R, LDSM1R_OS);
952 lcdc_write(priv, _LDINTR, LDINTR_FE);
953 } else {
954 lcdc_write_chan(ch, LDSM1R, 0);
955 }
956 }
Damian7caa4342011-05-18 11:10:07 +0000957
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200958 /* Word and long word swap. */
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +0100959 switch (priv->ch[0].format->fourcc) {
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100960 case V4L2_PIX_FMT_RGB565:
961 case V4L2_PIX_FMT_NV21:
962 case V4L2_PIX_FMT_NV61:
963 case V4L2_PIX_FMT_NV42:
964 tmp = LDDDSR_LS | LDDDSR_WS;
965 break;
966 case V4L2_PIX_FMT_BGR24:
967 case V4L2_PIX_FMT_NV12:
968 case V4L2_PIX_FMT_NV16:
969 case V4L2_PIX_FMT_NV24:
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200970 tmp = LDDDSR_LS | LDDDSR_WS | LDDDSR_BS;
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100971 break;
972 case V4L2_PIX_FMT_BGR32:
973 default:
974 tmp = LDDDSR_LS;
975 break;
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200976 }
977 lcdc_write(priv, _LDDDSR, tmp);
Damian7caa4342011-05-18 11:10:07 +0000978
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200979 /* Enable the display output. */
980 lcdc_write(priv, _LDCNT1R, LDCNT1R_DE);
981 sh_mobile_lcdc_start_stop(priv, 1);
982 priv->started = 1;
983}
Damian7caa4342011-05-18 11:10:07 +0000984
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200985static int sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv *priv)
986{
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200987 struct sh_mobile_lcdc_chan *ch;
988 unsigned long tmp;
989 int ret;
990 int k;
991
992 /* enable clocks before accessing the hardware */
993 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
994 if (priv->ch[k].enabled)
995 sh_mobile_lcdc_clk_on(priv);
996 }
997
998 /* reset */
999 lcdc_write(priv, _LDCNT2R, lcdc_read(priv, _LDCNT2R) | LDCNT2R_BR);
1000 lcdc_wait_bit(priv, _LDCNT2R, LDCNT2R_BR, 0);
1001
1002 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01001003 const struct sh_mobile_lcdc_panel_cfg *panel;
Laurent Pinchart9a217e32011-07-13 12:13:47 +02001004
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +02001005 ch = &priv->ch[k];
Laurent Pinchart9a217e32011-07-13 12:13:47 +02001006 if (!ch->enabled)
1007 continue;
1008
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01001009 panel = &ch->cfg->panel_cfg;
Laurent Pinchartafaad832011-09-11 22:59:04 +02001010 if (panel->setup_sys) {
1011 ret = panel->setup_sys(ch, &sh_mobile_lcdc_sys_bus_ops);
Laurent Pinchart9a217e32011-07-13 12:13:47 +02001012 if (ret)
1013 return ret;
1014 }
1015 }
1016
1017 /* Compute frame buffer base address and pitch for each channel. */
1018 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
Laurent Pinchart9a217e32011-07-13 12:13:47 +02001019 ch = &priv->ch[k];
1020 if (!ch->enabled)
1021 continue;
1022
Laurent Pinchart58f03d92011-11-30 23:07:30 +01001023 ch->base_addr_y = ch->dma_handle;
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001024 ch->base_addr_c = ch->dma_handle
1025 + ch->xres_virtual * ch->yres_virtual;
Laurent Pinchart72c04af2012-05-18 10:58:26 +02001026 ch->line_size = ch->pitch;
Laurent Pinchart9a217e32011-07-13 12:13:47 +02001027 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001028
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001029 for (k = 0; k < ARRAY_SIZE(priv->overlays); ++k) {
1030 struct sh_mobile_lcdc_overlay *ovl = &priv->overlays[k];
1031 sh_mobile_lcdc_overlay_setup(ovl);
1032 }
1033
Laurent Pinchart9a217e32011-07-13 12:13:47 +02001034 /* Start the LCDC. */
1035 __sh_mobile_lcdc_start(priv);
1036
1037 /* Setup deferred I/O, tell the board code to enable the panels, and
1038 * turn backlight on.
1039 */
1040 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
1041 ch = &priv->ch[k];
1042 if (!ch->enabled)
1043 continue;
1044
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01001045 tmp = ch->cfg->sys_bus_cfg.deferred_io_msec;
Laurent Pinchartce1c0b02011-07-13 12:13:47 +02001046 if (ch->ldmt1r_value & LDMT1R_IFM && tmp) {
Magnus Damm85645572008-12-19 15:34:41 +09001047 ch->defio.deferred_io = sh_mobile_lcdc_deferred_io;
1048 ch->defio.delay = msecs_to_jiffies(tmp);
Paul Mundte33afdd2009-07-07 11:24:32 +09001049 ch->info->fbdefio = &ch->defio;
1050 fb_deferred_io_init(ch->info);
Magnus Damm85645572008-12-19 15:34:41 +09001051 }
Magnus Damm21bc1f02009-08-15 02:53:16 +00001052
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +02001053 sh_mobile_lcdc_display_on(ch);
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001054
1055 if (ch->bl) {
1056 ch->bl->props.power = FB_BLANK_UNBLANK;
1057 backlight_update_status(ch->bl);
1058 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001059 }
1060
1061 return 0;
1062}
1063
1064static void sh_mobile_lcdc_stop(struct sh_mobile_lcdc_priv *priv)
1065{
1066 struct sh_mobile_lcdc_chan *ch;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001067 int k;
1068
Magnus Damm2feb0752009-03-13 15:36:55 +00001069 /* clean up deferred io and ask board code to disable panel */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001070 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
1071 ch = &priv->ch[k];
Magnus Damm21bc1f02009-08-15 02:53:16 +00001072 if (!ch->enabled)
1073 continue;
Magnus Damm2feb0752009-03-13 15:36:55 +00001074
1075 /* deferred io mode:
1076 * flush frame, and wait for frame end interrupt
1077 * clean up deferred io and enable clock
1078 */
Guennadi Liakhovetski5ef6b502010-09-03 07:19:57 +00001079 if (ch->info && ch->info->fbdefio) {
Magnus Damm2feb0752009-03-13 15:36:55 +00001080 ch->frame_end = 0;
Paul Mundte33afdd2009-07-07 11:24:32 +09001081 schedule_delayed_work(&ch->info->deferred_work, 0);
Magnus Damm2feb0752009-03-13 15:36:55 +00001082 wait_event(ch->frame_end_wait, ch->frame_end);
Paul Mundte33afdd2009-07-07 11:24:32 +09001083 fb_deferred_io_cleanup(ch->info);
1084 ch->info->fbdefio = NULL;
Magnus Damm2feb0752009-03-13 15:36:55 +00001085 sh_mobile_lcdc_clk_on(priv);
1086 }
1087
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001088 if (ch->bl) {
1089 ch->bl->props.power = FB_BLANK_POWERDOWN;
1090 backlight_update_status(ch->bl);
1091 }
1092
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +02001093 sh_mobile_lcdc_display_off(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001094 }
1095
1096 /* stop the lcdc */
Magnus Damm8e9bb192009-05-20 14:34:43 +00001097 if (priv->started) {
1098 sh_mobile_lcdc_start_stop(priv, 0);
1099 priv->started = 0;
1100 }
Magnus Dammb51339f2008-10-31 20:23:26 +09001101
Magnus Damm85645572008-12-19 15:34:41 +09001102 /* stop clocks */
1103 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
1104 if (priv->ch[k].enabled)
1105 sh_mobile_lcdc_clk_off(priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001106}
1107
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001108static int __sh_mobile_lcdc_check_var(struct fb_var_screeninfo *var,
1109 struct fb_info *info)
1110{
1111 if (var->xres > MAX_XRES || var->yres > MAX_YRES)
1112 return -EINVAL;
1113
1114 /* Make sure the virtual resolution is at least as big as the visible
1115 * resolution.
1116 */
1117 if (var->xres_virtual < var->xres)
1118 var->xres_virtual = var->xres;
1119 if (var->yres_virtual < var->yres)
1120 var->yres_virtual = var->yres;
1121
1122 if (sh_mobile_format_is_fourcc(var)) {
1123 const struct sh_mobile_lcdc_format_info *format;
1124
1125 format = sh_mobile_format_info(var->grayscale);
1126 if (format == NULL)
1127 return -EINVAL;
1128 var->bits_per_pixel = format->bpp;
1129
1130 /* Default to RGB and JPEG color-spaces for RGB and YUV formats
1131 * respectively.
1132 */
1133 if (!format->yuv)
1134 var->colorspace = V4L2_COLORSPACE_SRGB;
1135 else if (var->colorspace != V4L2_COLORSPACE_REC709)
1136 var->colorspace = V4L2_COLORSPACE_JPEG;
1137 } else {
1138 if (var->bits_per_pixel <= 16) { /* RGB 565 */
1139 var->bits_per_pixel = 16;
1140 var->red.offset = 11;
1141 var->red.length = 5;
1142 var->green.offset = 5;
1143 var->green.length = 6;
1144 var->blue.offset = 0;
1145 var->blue.length = 5;
1146 var->transp.offset = 0;
1147 var->transp.length = 0;
1148 } else if (var->bits_per_pixel <= 24) { /* RGB 888 */
1149 var->bits_per_pixel = 24;
1150 var->red.offset = 16;
1151 var->red.length = 8;
1152 var->green.offset = 8;
1153 var->green.length = 8;
1154 var->blue.offset = 0;
1155 var->blue.length = 8;
1156 var->transp.offset = 0;
1157 var->transp.length = 0;
1158 } else if (var->bits_per_pixel <= 32) { /* RGBA 888 */
1159 var->bits_per_pixel = 32;
1160 var->red.offset = 16;
1161 var->red.length = 8;
1162 var->green.offset = 8;
1163 var->green.length = 8;
1164 var->blue.offset = 0;
1165 var->blue.length = 8;
1166 var->transp.offset = 24;
1167 var->transp.length = 8;
1168 } else
1169 return -EINVAL;
1170
1171 var->red.msb_right = 0;
1172 var->green.msb_right = 0;
1173 var->blue.msb_right = 0;
1174 var->transp.msb_right = 0;
1175 }
1176
1177 /* Make sure we don't exceed our allocated memory. */
1178 if (var->xres_virtual * var->yres_virtual * var->bits_per_pixel / 8 >
1179 info->fix.smem_len)
1180 return -EINVAL;
1181
1182 return 0;
1183}
1184
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02001185/* -----------------------------------------------------------------------------
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001186 * Frame buffer operations - Overlays
1187 */
1188
1189static ssize_t
1190overlay_alpha_show(struct device *dev, struct device_attribute *attr, char *buf)
1191{
1192 struct fb_info *info = dev_get_drvdata(dev);
1193 struct sh_mobile_lcdc_overlay *ovl = info->par;
1194
1195 return scnprintf(buf, PAGE_SIZE, "%u\n", ovl->alpha);
1196}
1197
1198static ssize_t
1199overlay_alpha_store(struct device *dev, struct device_attribute *attr,
1200 const char *buf, size_t count)
1201{
1202 struct fb_info *info = dev_get_drvdata(dev);
1203 struct sh_mobile_lcdc_overlay *ovl = info->par;
1204 unsigned int alpha;
1205 char *endp;
1206
1207 alpha = simple_strtoul(buf, &endp, 10);
1208 if (isspace(*endp))
1209 endp++;
1210
1211 if (endp - buf != count)
1212 return -EINVAL;
1213
1214 if (alpha > 255)
1215 return -EINVAL;
1216
1217 if (ovl->alpha != alpha) {
1218 ovl->alpha = alpha;
1219
1220 if (ovl->mode == LCDC_OVERLAY_BLEND && ovl->enabled)
1221 sh_mobile_lcdc_overlay_setup(ovl);
1222 }
1223
1224 return count;
1225}
1226
1227static ssize_t
1228overlay_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
1229{
1230 struct fb_info *info = dev_get_drvdata(dev);
1231 struct sh_mobile_lcdc_overlay *ovl = info->par;
1232
1233 return scnprintf(buf, PAGE_SIZE, "%u\n", ovl->mode);
1234}
1235
1236static ssize_t
1237overlay_mode_store(struct device *dev, struct device_attribute *attr,
1238 const char *buf, size_t count)
1239{
1240 struct fb_info *info = dev_get_drvdata(dev);
1241 struct sh_mobile_lcdc_overlay *ovl = info->par;
1242 unsigned int mode;
1243 char *endp;
1244
1245 mode = simple_strtoul(buf, &endp, 10);
1246 if (isspace(*endp))
1247 endp++;
1248
1249 if (endp - buf != count)
1250 return -EINVAL;
1251
1252 if (mode != LCDC_OVERLAY_BLEND && mode != LCDC_OVERLAY_ROP3)
1253 return -EINVAL;
1254
1255 if (ovl->mode != mode) {
1256 ovl->mode = mode;
1257
1258 if (ovl->enabled)
1259 sh_mobile_lcdc_overlay_setup(ovl);
1260 }
1261
1262 return count;
1263}
1264
1265static ssize_t
1266overlay_position_show(struct device *dev, struct device_attribute *attr,
1267 char *buf)
1268{
1269 struct fb_info *info = dev_get_drvdata(dev);
1270 struct sh_mobile_lcdc_overlay *ovl = info->par;
1271
1272 return scnprintf(buf, PAGE_SIZE, "%d,%d\n", ovl->pos_x, ovl->pos_y);
1273}
1274
1275static ssize_t
1276overlay_position_store(struct device *dev, struct device_attribute *attr,
1277 const char *buf, size_t count)
1278{
1279 struct fb_info *info = dev_get_drvdata(dev);
1280 struct sh_mobile_lcdc_overlay *ovl = info->par;
1281 char *endp;
1282 int pos_x;
1283 int pos_y;
1284
1285 pos_x = simple_strtol(buf, &endp, 10);
1286 if (*endp != ',')
1287 return -EINVAL;
1288
1289 pos_y = simple_strtol(endp + 1, &endp, 10);
1290 if (isspace(*endp))
1291 endp++;
1292
1293 if (endp - buf != count)
1294 return -EINVAL;
1295
1296 if (ovl->pos_x != pos_x || ovl->pos_y != pos_y) {
1297 ovl->pos_x = pos_x;
1298 ovl->pos_y = pos_y;
1299
1300 if (ovl->enabled)
1301 sh_mobile_lcdc_overlay_setup(ovl);
1302 }
1303
1304 return count;
1305}
1306
1307static ssize_t
1308overlay_rop3_show(struct device *dev, struct device_attribute *attr, char *buf)
1309{
1310 struct fb_info *info = dev_get_drvdata(dev);
1311 struct sh_mobile_lcdc_overlay *ovl = info->par;
1312
1313 return scnprintf(buf, PAGE_SIZE, "%u\n", ovl->rop3);
1314}
1315
1316static ssize_t
1317overlay_rop3_store(struct device *dev, struct device_attribute *attr,
1318 const char *buf, size_t count)
1319{
1320 struct fb_info *info = dev_get_drvdata(dev);
1321 struct sh_mobile_lcdc_overlay *ovl = info->par;
1322 unsigned int rop3;
1323 char *endp;
1324
Laurent Pinchart14048ff2015-03-14 17:38:39 +02001325 rop3 = simple_strtoul(buf, &endp, 10);
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001326 if (isspace(*endp))
1327 endp++;
1328
1329 if (endp - buf != count)
1330 return -EINVAL;
1331
1332 if (rop3 > 255)
1333 return -EINVAL;
1334
1335 if (ovl->rop3 != rop3) {
1336 ovl->rop3 = rop3;
1337
1338 if (ovl->mode == LCDC_OVERLAY_ROP3 && ovl->enabled)
1339 sh_mobile_lcdc_overlay_setup(ovl);
1340 }
1341
1342 return count;
1343}
1344
1345static const struct device_attribute overlay_sysfs_attrs[] = {
1346 __ATTR(ovl_alpha, S_IRUGO|S_IWUSR,
1347 overlay_alpha_show, overlay_alpha_store),
1348 __ATTR(ovl_mode, S_IRUGO|S_IWUSR,
1349 overlay_mode_show, overlay_mode_store),
1350 __ATTR(ovl_position, S_IRUGO|S_IWUSR,
1351 overlay_position_show, overlay_position_store),
1352 __ATTR(ovl_rop3, S_IRUGO|S_IWUSR,
1353 overlay_rop3_show, overlay_rop3_store),
1354};
1355
1356static const struct fb_fix_screeninfo sh_mobile_lcdc_overlay_fix = {
1357 .id = "SH Mobile LCDC",
1358 .type = FB_TYPE_PACKED_PIXELS,
1359 .visual = FB_VISUAL_TRUECOLOR,
1360 .accel = FB_ACCEL_NONE,
Laurent Pinchart15dede82012-07-18 17:09:04 +02001361 .xpanstep = 1,
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001362 .ypanstep = 1,
1363 .ywrapstep = 0,
1364 .capabilities = FB_CAP_FOURCC,
1365};
1366
1367static int sh_mobile_lcdc_overlay_pan(struct fb_var_screeninfo *var,
1368 struct fb_info *info)
1369{
1370 struct sh_mobile_lcdc_overlay *ovl = info->par;
1371 unsigned long base_addr_y;
1372 unsigned long base_addr_c;
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001373 unsigned long y_offset;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001374 unsigned long c_offset;
1375
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001376 if (!ovl->format->yuv) {
1377 y_offset = (var->yoffset * ovl->xres_virtual + var->xoffset)
1378 * ovl->format->bpp / 8;
1379 c_offset = 0;
1380 } else {
1381 unsigned int xsub = ovl->format->bpp < 24 ? 2 : 1;
1382 unsigned int ysub = ovl->format->bpp < 16 ? 2 : 1;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001383
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001384 y_offset = var->yoffset * ovl->xres_virtual + var->xoffset;
1385 c_offset = var->yoffset / ysub * ovl->xres_virtual * 2 / xsub
1386 + var->xoffset * 2 / xsub;
1387 }
1388
1389 /* If the Y offset hasn't changed, the C offset hasn't either. There's
1390 * nothing to do in that case.
1391 */
1392 if (y_offset == ovl->pan_y_offset)
1393 return 0;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001394
1395 /* Set the source address for the next refresh */
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001396 base_addr_y = ovl->dma_handle + y_offset;
1397 base_addr_c = ovl->dma_handle + ovl->xres_virtual * ovl->yres_virtual
1398 + c_offset;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001399
1400 ovl->base_addr_y = base_addr_y;
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001401 ovl->base_addr_c = base_addr_c;
1402 ovl->pan_y_offset = y_offset;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001403
Laurent Pinchart8be7c662012-07-19 02:29:52 +02001404 lcdc_write(ovl->channel->lcdc, LDBCR, LDBCR_UPC(ovl->index));
1405
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001406 lcdc_write_overlay(ovl, LDBnBSAYR(ovl->index), ovl->base_addr_y);
1407 lcdc_write_overlay(ovl, LDBnBSACR(ovl->index), ovl->base_addr_c);
1408
Laurent Pinchart8be7c662012-07-19 02:29:52 +02001409 lcdc_write(ovl->channel->lcdc, LDBCR,
1410 LDBCR_UPF(ovl->index) | LDBCR_UPD(ovl->index));
1411
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001412 return 0;
1413}
1414
1415static int sh_mobile_lcdc_overlay_ioctl(struct fb_info *info, unsigned int cmd,
1416 unsigned long arg)
1417{
1418 struct sh_mobile_lcdc_overlay *ovl = info->par;
1419
1420 switch (cmd) {
1421 case FBIO_WAITFORVSYNC:
1422 return sh_mobile_lcdc_wait_for_vsync(ovl->channel);
1423
1424 default:
1425 return -ENOIOCTLCMD;
1426 }
1427}
1428
1429static int sh_mobile_lcdc_overlay_check_var(struct fb_var_screeninfo *var,
1430 struct fb_info *info)
1431{
1432 return __sh_mobile_lcdc_check_var(var, info);
1433}
1434
1435static int sh_mobile_lcdc_overlay_set_par(struct fb_info *info)
1436{
1437 struct sh_mobile_lcdc_overlay *ovl = info->par;
1438
1439 ovl->format =
1440 sh_mobile_format_info(sh_mobile_format_fourcc(&info->var));
1441
1442 ovl->xres = info->var.xres;
1443 ovl->xres_virtual = info->var.xres_virtual;
1444 ovl->yres = info->var.yres;
1445 ovl->yres_virtual = info->var.yres_virtual;
1446
1447 if (ovl->format->yuv)
Laurent Pinchart16ca21c2012-07-18 16:29:20 +02001448 ovl->pitch = info->var.xres_virtual;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001449 else
Laurent Pinchart16ca21c2012-07-18 16:29:20 +02001450 ovl->pitch = info->var.xres_virtual * ovl->format->bpp / 8;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001451
1452 sh_mobile_lcdc_overlay_setup(ovl);
1453
1454 info->fix.line_length = ovl->pitch;
1455
1456 if (sh_mobile_format_is_fourcc(&info->var)) {
1457 info->fix.type = FB_TYPE_FOURCC;
1458 info->fix.visual = FB_VISUAL_FOURCC;
1459 } else {
1460 info->fix.type = FB_TYPE_PACKED_PIXELS;
1461 info->fix.visual = FB_VISUAL_TRUECOLOR;
1462 }
1463
1464 return 0;
1465}
1466
1467/* Overlay blanking. Disable the overlay when blanked. */
1468static int sh_mobile_lcdc_overlay_blank(int blank, struct fb_info *info)
1469{
1470 struct sh_mobile_lcdc_overlay *ovl = info->par;
1471
1472 ovl->enabled = !blank;
1473 sh_mobile_lcdc_overlay_setup(ovl);
1474
1475 /* Prevent the backlight from receiving a blanking event by returning
1476 * a non-zero value.
1477 */
1478 return 1;
1479}
1480
Hideki EIRAKUbf10a532012-08-16 19:13:20 +09001481static int
1482sh_mobile_lcdc_overlay_mmap(struct fb_info *info, struct vm_area_struct *vma)
1483{
1484 struct sh_mobile_lcdc_overlay *ovl = info->par;
1485
1486 return dma_mmap_coherent(ovl->channel->lcdc->dev, vma, ovl->fb_mem,
1487 ovl->dma_handle, ovl->fb_size);
1488}
1489
Jani Nikula8a48ac332019-12-03 18:38:50 +02001490static const struct fb_ops sh_mobile_lcdc_overlay_ops = {
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001491 .owner = THIS_MODULE,
1492 .fb_read = fb_sys_read,
1493 .fb_write = fb_sys_write,
1494 .fb_fillrect = sys_fillrect,
1495 .fb_copyarea = sys_copyarea,
1496 .fb_imageblit = sys_imageblit,
1497 .fb_blank = sh_mobile_lcdc_overlay_blank,
1498 .fb_pan_display = sh_mobile_lcdc_overlay_pan,
1499 .fb_ioctl = sh_mobile_lcdc_overlay_ioctl,
1500 .fb_check_var = sh_mobile_lcdc_overlay_check_var,
1501 .fb_set_par = sh_mobile_lcdc_overlay_set_par,
Hideki EIRAKUbf10a532012-08-16 19:13:20 +09001502 .fb_mmap = sh_mobile_lcdc_overlay_mmap,
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001503};
1504
1505static void
1506sh_mobile_lcdc_overlay_fb_unregister(struct sh_mobile_lcdc_overlay *ovl)
1507{
1508 struct fb_info *info = ovl->info;
1509
1510 if (info == NULL || info->dev == NULL)
1511 return;
1512
1513 unregister_framebuffer(ovl->info);
1514}
1515
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001516static int
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001517sh_mobile_lcdc_overlay_fb_register(struct sh_mobile_lcdc_overlay *ovl)
1518{
1519 struct sh_mobile_lcdc_priv *lcdc = ovl->channel->lcdc;
1520 struct fb_info *info = ovl->info;
1521 unsigned int i;
1522 int ret;
1523
1524 if (info == NULL)
1525 return 0;
1526
1527 ret = register_framebuffer(info);
1528 if (ret < 0)
1529 return ret;
1530
1531 dev_info(lcdc->dev, "registered %s/overlay %u as %dx%d %dbpp.\n",
1532 dev_name(lcdc->dev), ovl->index, info->var.xres,
1533 info->var.yres, info->var.bits_per_pixel);
1534
1535 for (i = 0; i < ARRAY_SIZE(overlay_sysfs_attrs); ++i) {
1536 ret = device_create_file(info->dev, &overlay_sysfs_attrs[i]);
1537 if (ret < 0)
1538 return ret;
1539 }
1540
1541 return 0;
1542}
1543
1544static void
1545sh_mobile_lcdc_overlay_fb_cleanup(struct sh_mobile_lcdc_overlay *ovl)
1546{
1547 struct fb_info *info = ovl->info;
1548
1549 if (info == NULL || info->device == NULL)
1550 return;
1551
1552 framebuffer_release(info);
1553}
1554
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001555static int
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001556sh_mobile_lcdc_overlay_fb_init(struct sh_mobile_lcdc_overlay *ovl)
1557{
1558 struct sh_mobile_lcdc_priv *priv = ovl->channel->lcdc;
1559 struct fb_var_screeninfo *var;
1560 struct fb_info *info;
1561
1562 /* Allocate and initialize the frame buffer device. */
1563 info = framebuffer_alloc(0, priv->dev);
Bartlomiej Zolnierkiewicz0adcdbc2019-06-28 12:30:08 +02001564 if (!info)
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001565 return -ENOMEM;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001566
1567 ovl->info = info;
1568
1569 info->flags = FBINFO_FLAG_DEFAULT;
1570 info->fbops = &sh_mobile_lcdc_overlay_ops;
1571 info->device = priv->dev;
Bartlomiej Zolnierkiewicz5d301462020-01-16 15:51:15 +01001572 info->screen_buffer = ovl->fb_mem;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001573 info->par = ovl;
1574
1575 /* Initialize fixed screen information. Restrict pan to 2 lines steps
1576 * for NV12 and NV21.
1577 */
1578 info->fix = sh_mobile_lcdc_overlay_fix;
1579 snprintf(info->fix.id, sizeof(info->fix.id),
1580 "SH Mobile LCDC Overlay %u", ovl->index);
1581 info->fix.smem_start = ovl->dma_handle;
1582 info->fix.smem_len = ovl->fb_size;
1583 info->fix.line_length = ovl->pitch;
1584
1585 if (ovl->format->yuv)
1586 info->fix.visual = FB_VISUAL_FOURCC;
1587 else
1588 info->fix.visual = FB_VISUAL_TRUECOLOR;
1589
Laurent Pinchart15dede82012-07-18 17:09:04 +02001590 switch (ovl->format->fourcc) {
Laurent Pinchart15dede82012-07-18 17:09:04 +02001591 case V4L2_PIX_FMT_NV12:
1592 case V4L2_PIX_FMT_NV21:
Laurent Pinchartac33a202012-07-26 14:36:55 +02001593 info->fix.ypanstep = 2;
Gustavo A. R. Silvaad04fae2020-07-07 16:05:39 -05001594 fallthrough;
Laurent Pinchartac33a202012-07-26 14:36:55 +02001595 case V4L2_PIX_FMT_NV16:
1596 case V4L2_PIX_FMT_NV61:
Laurent Pinchart15dede82012-07-18 17:09:04 +02001597 info->fix.xpanstep = 2;
1598 }
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001599
1600 /* Initialize variable screen information. */
1601 var = &info->var;
1602 memset(var, 0, sizeof(*var));
1603 var->xres = ovl->xres;
1604 var->yres = ovl->yres;
1605 var->xres_virtual = ovl->xres_virtual;
1606 var->yres_virtual = ovl->yres_virtual;
1607 var->activate = FB_ACTIVATE_NOW;
1608
1609 /* Use the legacy API by default for RGB formats, and the FOURCC API
1610 * for YUV formats.
1611 */
1612 if (!ovl->format->yuv)
1613 var->bits_per_pixel = ovl->format->bpp;
1614 else
1615 var->grayscale = ovl->format->fourcc;
1616
1617 return sh_mobile_lcdc_overlay_check_var(var, info);
1618}
1619
1620/* -----------------------------------------------------------------------------
1621 * Frame buffer operations - main frame buffer
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02001622 */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001623
1624static int sh_mobile_lcdc_setcolreg(u_int regno,
1625 u_int red, u_int green, u_int blue,
1626 u_int transp, struct fb_info *info)
1627{
1628 u32 *palette = info->pseudo_palette;
1629
1630 if (regno >= PALETTE_NR)
1631 return -EINVAL;
1632
1633 /* only FB_VISUAL_TRUECOLOR supported */
1634
1635 red >>= 16 - info->var.red.length;
1636 green >>= 16 - info->var.green.length;
1637 blue >>= 16 - info->var.blue.length;
1638 transp >>= 16 - info->var.transp.length;
1639
1640 palette[regno] = (red << info->var.red.offset) |
1641 (green << info->var.green.offset) |
1642 (blue << info->var.blue.offset) |
1643 (transp << info->var.transp.offset);
1644
1645 return 0;
1646}
1647
Laurent Pinchart3281e542011-11-22 00:56:58 +01001648static const struct fb_fix_screeninfo sh_mobile_lcdc_fix = {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001649 .id = "SH Mobile LCDC",
1650 .type = FB_TYPE_PACKED_PIXELS,
1651 .visual = FB_VISUAL_TRUECOLOR,
1652 .accel = FB_ACCEL_NONE,
Laurent Pinchart15dede82012-07-18 17:09:04 +02001653 .xpanstep = 1,
Phil Edworthy9dd38812009-09-15 12:00:18 +00001654 .ypanstep = 1,
1655 .ywrapstep = 0,
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001656 .capabilities = FB_CAP_FOURCC,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001657};
1658
Magnus Damm85645572008-12-19 15:34:41 +09001659static void sh_mobile_lcdc_fillrect(struct fb_info *info,
1660 const struct fb_fillrect *rect)
1661{
1662 sys_fillrect(info, rect);
1663 sh_mobile_lcdc_deferred_io_touch(info);
1664}
1665
1666static void sh_mobile_lcdc_copyarea(struct fb_info *info,
1667 const struct fb_copyarea *area)
1668{
1669 sys_copyarea(info, area);
1670 sh_mobile_lcdc_deferred_io_touch(info);
1671}
1672
1673static void sh_mobile_lcdc_imageblit(struct fb_info *info,
1674 const struct fb_image *image)
1675{
1676 sys_imageblit(info, image);
1677 sh_mobile_lcdc_deferred_io_touch(info);
1678}
1679
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01001680static int sh_mobile_lcdc_pan(struct fb_var_screeninfo *var,
1681 struct fb_info *info)
Phil Edworthy9dd38812009-09-15 12:00:18 +00001682{
1683 struct sh_mobile_lcdc_chan *ch = info->par;
Phil Edworthy92e1f9a2010-02-11 10:24:25 +00001684 struct sh_mobile_lcdc_priv *priv = ch->lcdc;
1685 unsigned long ldrcntr;
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001686 unsigned long base_addr_y, base_addr_c;
1687 unsigned long y_offset;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001688 unsigned long c_offset;
Phil Edworthy9dd38812009-09-15 12:00:18 +00001689
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001690 if (!ch->format->yuv) {
1691 y_offset = (var->yoffset * ch->xres_virtual + var->xoffset)
1692 * ch->format->bpp / 8;
1693 c_offset = 0;
1694 } else {
1695 unsigned int xsub = ch->format->bpp < 24 ? 2 : 1;
1696 unsigned int ysub = ch->format->bpp < 16 ? 2 : 1;
Phil Edworthy9dd38812009-09-15 12:00:18 +00001697
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001698 y_offset = var->yoffset * ch->xres_virtual + var->xoffset;
1699 c_offset = var->yoffset / ysub * ch->xres_virtual * 2 / xsub
1700 + var->xoffset * 2 / xsub;
1701 }
Phil Edworthy92e1f9a2010-02-11 10:24:25 +00001702
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001703 /* If the Y offset hasn't changed, the C offset hasn't either. There's
1704 * nothing to do in that case.
1705 */
1706 if (y_offset == ch->pan_y_offset)
1707 return 0;
Phil Edworthy92e1f9a2010-02-11 10:24:25 +00001708
1709 /* Set the source address for the next refresh */
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001710 base_addr_y = ch->dma_handle + y_offset;
1711 base_addr_c = ch->dma_handle + ch->xres_virtual * ch->yres_virtual
1712 + c_offset;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001713
Laurent Pinchart49d79ba2011-07-13 12:13:47 +02001714 ch->base_addr_y = base_addr_y;
1715 ch->base_addr_c = base_addr_c;
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001716 ch->pan_y_offset = y_offset;
Laurent Pinchart49d79ba2011-07-13 12:13:47 +02001717
1718 lcdc_write_chan_mirror(ch, LDSA1R, base_addr_y);
Laurent Pinchart58f03d92011-11-30 23:07:30 +01001719 if (ch->format->yuv)
Laurent Pinchart49d79ba2011-07-13 12:13:47 +02001720 lcdc_write_chan_mirror(ch, LDSA2R, base_addr_c);
1721
Laurent Pincharta4aa25f2012-03-15 18:15:37 +01001722 ldrcntr = lcdc_read(priv, _LDRCNTR);
Phil Edworthy92e1f9a2010-02-11 10:24:25 +00001723 if (lcdc_chan_is_sublcd(ch))
1724 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_SRS);
1725 else
1726 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_MRS);
1727
Phil Edworthy92e1f9a2010-02-11 10:24:25 +00001728
1729 sh_mobile_lcdc_deferred_io_touch(info);
Phil Edworthy9dd38812009-09-15 12:00:18 +00001730
1731 return 0;
1732}
1733
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01001734static int sh_mobile_lcdc_ioctl(struct fb_info *info, unsigned int cmd,
1735 unsigned long arg)
Phil Edworthy40331b22010-02-15 13:57:49 +00001736{
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01001737 struct sh_mobile_lcdc_chan *ch = info->par;
Phil Edworthy40331b22010-02-15 13:57:49 +00001738 int retval;
1739
1740 switch (cmd) {
1741 case FBIO_WAITFORVSYNC:
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01001742 retval = sh_mobile_lcdc_wait_for_vsync(ch);
Phil Edworthy40331b22010-02-15 13:57:49 +00001743 break;
1744
1745 default:
1746 retval = -ENOIOCTLCMD;
1747 break;
1748 }
1749 return retval;
1750}
1751
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001752static void sh_mobile_fb_reconfig(struct fb_info *info)
1753{
1754 struct sh_mobile_lcdc_chan *ch = info->par;
Laurent Pinchart2d045592011-11-29 13:42:48 +01001755 struct fb_var_screeninfo var;
1756 struct fb_videomode mode;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001757
1758 if (ch->use_count > 1 || (ch->use_count == 1 && !info->fbcon_par))
1759 /* More framebuffer users are active */
1760 return;
1761
Laurent Pinchart2d045592011-11-29 13:42:48 +01001762 fb_var_to_videomode(&mode, &info->var);
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001763
Laurent Pinchart2d045592011-11-29 13:42:48 +01001764 if (fb_mode_is_equal(&ch->display.mode, &mode))
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001765 return;
1766
1767 /* Display has been re-plugged, framebuffer is free now, reconfigure */
Laurent Pinchart2d045592011-11-29 13:42:48 +01001768 var = info->var;
1769 fb_videomode_to_var(&var, &ch->display.mode);
1770 var.width = ch->display.width;
1771 var.height = ch->display.height;
1772 var.activate = FB_ACTIVATE_NOW;
1773
1774 if (fb_set_var(info, &var) < 0)
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001775 /* Couldn't reconfigure, hopefully, can continue as before */
1776 return;
1777
Daniel Vetter9e146702019-05-28 11:02:59 +02001778 fbcon_update_vcs(info, true);
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001779}
1780
1781/*
1782 * Locking: both .fb_release() and .fb_open() are called with info->lock held if
1783 * user == 1, or with console sem held, if user == 0.
1784 */
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01001785static int sh_mobile_lcdc_release(struct fb_info *info, int user)
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001786{
1787 struct sh_mobile_lcdc_chan *ch = info->par;
1788
1789 mutex_lock(&ch->open_lock);
1790 dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
1791
1792 ch->use_count--;
1793
1794 /* Nothing to reconfigure, when called from fbcon */
1795 if (user) {
Torben Hohnac751ef2011-01-25 15:07:35 -08001796 console_lock();
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001797 sh_mobile_fb_reconfig(info);
Torben Hohnac751ef2011-01-25 15:07:35 -08001798 console_unlock();
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001799 }
1800
1801 mutex_unlock(&ch->open_lock);
1802
1803 return 0;
1804}
1805
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01001806static int sh_mobile_lcdc_open(struct fb_info *info, int user)
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001807{
1808 struct sh_mobile_lcdc_chan *ch = info->par;
1809
1810 mutex_lock(&ch->open_lock);
1811 ch->use_count++;
1812
1813 dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
1814 mutex_unlock(&ch->open_lock);
1815
1816 return 0;
1817}
1818
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01001819static int sh_mobile_lcdc_check_var(struct fb_var_screeninfo *var,
1820 struct fb_info *info)
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001821{
1822 struct sh_mobile_lcdc_chan *ch = info->par;
Magnus Damm417d4822011-01-05 10:21:00 +00001823 struct sh_mobile_lcdc_priv *p = ch->lcdc;
Laurent Pinchart03862192011-08-31 13:00:53 +02001824 unsigned int best_dist = (unsigned int)-1;
1825 unsigned int best_xres = 0;
1826 unsigned int best_yres = 0;
1827 unsigned int i;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001828 int ret;
Laurent Pinchart03862192011-08-31 13:00:53 +02001829
1830 /* If board code provides us with a list of available modes, make sure
1831 * we use one of them. Find the mode closest to the requested one. The
1832 * distance between two modes is defined as the size of the
1833 * non-overlapping parts of the two rectangles.
1834 */
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01001835 for (i = 0; i < ch->cfg->num_modes; ++i) {
1836 const struct fb_videomode *mode = &ch->cfg->lcd_modes[i];
Laurent Pinchart03862192011-08-31 13:00:53 +02001837 unsigned int dist;
1838
1839 /* We can only round up. */
1840 if (var->xres > mode->xres || var->yres > mode->yres)
1841 continue;
1842
1843 dist = var->xres * var->yres + mode->xres * mode->yres
1844 - 2 * min(var->xres, mode->xres)
1845 * min(var->yres, mode->yres);
1846
1847 if (dist < best_dist) {
1848 best_xres = mode->xres;
1849 best_yres = mode->yres;
1850 best_dist = dist;
1851 }
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001852 }
Magnus Damm417d4822011-01-05 10:21:00 +00001853
Laurent Pinchart03862192011-08-31 13:00:53 +02001854 /* If no available mode can be used, return an error. */
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01001855 if (ch->cfg->num_modes != 0) {
Laurent Pinchart03862192011-08-31 13:00:53 +02001856 if (best_dist == (unsigned int)-1)
1857 return -EINVAL;
1858
1859 var->xres = best_xres;
1860 var->yres = best_yres;
1861 }
1862
Laurent Pinchartc5deac32011-12-12 18:43:16 +01001863 ret = __sh_mobile_lcdc_check_var(var, info);
1864 if (ret < 0)
1865 return ret;
Laurent Pinchart03862192011-08-31 13:00:53 +02001866
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001867 /* only accept the forced_fourcc for dual channel configurations */
1868 if (p->forced_fourcc &&
1869 p->forced_fourcc != sh_mobile_format_fourcc(var))
Magnus Damm417d4822011-01-05 10:21:00 +00001870 return -EINVAL;
1871
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001872 return 0;
1873}
Phil Edworthy40331b22010-02-15 13:57:49 +00001874
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01001875static int sh_mobile_lcdc_set_par(struct fb_info *info)
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001876{
1877 struct sh_mobile_lcdc_chan *ch = info->par;
1878 int ret;
1879
1880 sh_mobile_lcdc_stop(ch->lcdc);
Laurent Pinchart91fba482011-08-31 13:00:56 +02001881
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +01001882 ch->format = sh_mobile_format_info(sh_mobile_format_fourcc(&info->var));
Laurent Pinchart58f03d92011-11-30 23:07:30 +01001883 ch->colorspace = info->var.colorspace;
1884
1885 ch->xres = info->var.xres;
1886 ch->xres_virtual = info->var.xres_virtual;
1887 ch->yres = info->var.yres;
1888 ch->yres_virtual = info->var.yres_virtual;
1889
1890 if (ch->format->yuv)
Laurent Pinchart16ca21c2012-07-18 16:29:20 +02001891 ch->pitch = info->var.xres_virtual;
Laurent Pinchart58f03d92011-11-30 23:07:30 +01001892 else
Laurent Pinchart16ca21c2012-07-18 16:29:20 +02001893 ch->pitch = info->var.xres_virtual * ch->format->bpp / 8;
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +01001894
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001895 ret = sh_mobile_lcdc_start(ch->lcdc);
Laurent Pinchart58f03d92011-11-30 23:07:30 +01001896 if (ret < 0)
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001897 dev_err(info->dev, "%s: unable to restart LCDC\n", __func__);
Laurent Pinchart58f03d92011-11-30 23:07:30 +01001898
1899 info->fix.line_length = ch->pitch;
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001900
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001901 if (sh_mobile_format_is_fourcc(&info->var)) {
1902 info->fix.type = FB_TYPE_FOURCC;
1903 info->fix.visual = FB_VISUAL_FOURCC;
1904 } else {
1905 info->fix.type = FB_TYPE_PACKED_PIXELS;
1906 info->fix.visual = FB_VISUAL_TRUECOLOR;
1907 }
1908
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001909 return ret;
1910}
1911
Alexandre Courbot8857b9a2011-02-23 08:36:30 +00001912/*
1913 * Screen blanking. Behavior is as follows:
1914 * FB_BLANK_UNBLANK: screen unblanked, clocks enabled
1915 * FB_BLANK_NORMAL: screen blanked, clocks enabled
1916 * FB_BLANK_VSYNC,
1917 * FB_BLANK_HSYNC,
1918 * FB_BLANK_POWEROFF: screen blanked, clocks disabled
1919 */
1920static int sh_mobile_lcdc_blank(int blank, struct fb_info *info)
1921{
1922 struct sh_mobile_lcdc_chan *ch = info->par;
1923 struct sh_mobile_lcdc_priv *p = ch->lcdc;
1924
1925 /* blank the screen? */
1926 if (blank > FB_BLANK_UNBLANK && ch->blank_status == FB_BLANK_UNBLANK) {
1927 struct fb_fillrect rect = {
Laurent Pinchart58f03d92011-11-30 23:07:30 +01001928 .width = ch->xres,
1929 .height = ch->yres,
Alexandre Courbot8857b9a2011-02-23 08:36:30 +00001930 };
1931 sh_mobile_lcdc_fillrect(info, &rect);
1932 }
1933 /* turn clocks on? */
1934 if (blank <= FB_BLANK_NORMAL && ch->blank_status > FB_BLANK_NORMAL) {
1935 sh_mobile_lcdc_clk_on(p);
1936 }
1937 /* turn clocks off? */
1938 if (blank > FB_BLANK_NORMAL && ch->blank_status <= FB_BLANK_NORMAL) {
1939 /* make sure the screen is updated with the black fill before
1940 * switching the clocks off. one vsync is not enough since
1941 * blanking may occur in the middle of a refresh. deferred io
1942 * mode will reenable the clocks and update the screen in time,
1943 * so it does not need this. */
1944 if (!info->fbdefio) {
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01001945 sh_mobile_lcdc_wait_for_vsync(ch);
1946 sh_mobile_lcdc_wait_for_vsync(ch);
Alexandre Courbot8857b9a2011-02-23 08:36:30 +00001947 }
1948 sh_mobile_lcdc_clk_off(p);
1949 }
1950
1951 ch->blank_status = blank;
1952 return 0;
1953}
1954
Hideki EIRAKUbf10a532012-08-16 19:13:20 +09001955static int
1956sh_mobile_lcdc_mmap(struct fb_info *info, struct vm_area_struct *vma)
1957{
1958 struct sh_mobile_lcdc_chan *ch = info->par;
1959
1960 return dma_mmap_coherent(ch->lcdc->dev, vma, ch->fb_mem,
1961 ch->dma_handle, ch->fb_size);
1962}
1963
Jani Nikula8a48ac332019-12-03 18:38:50 +02001964static const struct fb_ops sh_mobile_lcdc_ops = {
Phil Edworthy9dd38812009-09-15 12:00:18 +00001965 .owner = THIS_MODULE,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001966 .fb_setcolreg = sh_mobile_lcdc_setcolreg,
Magnus Damm2540c112008-12-17 17:29:49 +09001967 .fb_read = fb_sys_read,
1968 .fb_write = fb_sys_write,
Magnus Damm85645572008-12-19 15:34:41 +09001969 .fb_fillrect = sh_mobile_lcdc_fillrect,
1970 .fb_copyarea = sh_mobile_lcdc_copyarea,
1971 .fb_imageblit = sh_mobile_lcdc_imageblit,
Alexandre Courbot8857b9a2011-02-23 08:36:30 +00001972 .fb_blank = sh_mobile_lcdc_blank,
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01001973 .fb_pan_display = sh_mobile_lcdc_pan,
1974 .fb_ioctl = sh_mobile_lcdc_ioctl,
1975 .fb_open = sh_mobile_lcdc_open,
1976 .fb_release = sh_mobile_lcdc_release,
1977 .fb_check_var = sh_mobile_lcdc_check_var,
1978 .fb_set_par = sh_mobile_lcdc_set_par,
Hideki EIRAKUbf10a532012-08-16 19:13:20 +09001979 .fb_mmap = sh_mobile_lcdc_mmap,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001980};
1981
Laurent Pincharta67f3792011-11-29 14:37:35 +01001982static void
1983sh_mobile_lcdc_channel_fb_unregister(struct sh_mobile_lcdc_chan *ch)
1984{
1985 if (ch->info && ch->info->dev)
1986 unregister_framebuffer(ch->info);
1987}
1988
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001989static int
Laurent Pincharta67f3792011-11-29 14:37:35 +01001990sh_mobile_lcdc_channel_fb_register(struct sh_mobile_lcdc_chan *ch)
1991{
1992 struct fb_info *info = ch->info;
1993 int ret;
1994
1995 if (info->fbdefio) {
1996 ch->sglist = vmalloc(sizeof(struct scatterlist) *
1997 ch->fb_size >> PAGE_SHIFT);
Markus Elfringe2810182018-04-26 12:24:18 +02001998 if (!ch->sglist)
Laurent Pincharta67f3792011-11-29 14:37:35 +01001999 return -ENOMEM;
Laurent Pincharta67f3792011-11-29 14:37:35 +01002000 }
2001
2002 info->bl_dev = ch->bl;
2003
2004 ret = register_framebuffer(info);
2005 if (ret < 0)
2006 return ret;
2007
2008 dev_info(ch->lcdc->dev, "registered %s/%s as %dx%d %dbpp.\n",
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01002009 dev_name(ch->lcdc->dev), (ch->cfg->chan == LCDC_CHAN_MAINLCD) ?
Laurent Pincharta67f3792011-11-29 14:37:35 +01002010 "mainlcd" : "sublcd", info->var.xres, info->var.yres,
2011 info->var.bits_per_pixel);
2012
2013 /* deferred io mode: disable clock to save power */
2014 if (info->fbdefio || info->state == FBINFO_STATE_SUSPENDED)
2015 sh_mobile_lcdc_clk_off(ch->lcdc);
2016
2017 return ret;
2018}
2019
2020static void
2021sh_mobile_lcdc_channel_fb_cleanup(struct sh_mobile_lcdc_chan *ch)
2022{
2023 struct fb_info *info = ch->info;
2024
2025 if (!info || !info->device)
2026 return;
2027
Markus Elfringf8582752014-11-22 16:51:31 +01002028 vfree(ch->sglist);
Laurent Pincharta67f3792011-11-29 14:37:35 +01002029
2030 fb_dealloc_cmap(&info->cmap);
2031 framebuffer_release(info);
2032}
2033
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08002034static int
Laurent Pincharta67f3792011-11-29 14:37:35 +01002035sh_mobile_lcdc_channel_fb_init(struct sh_mobile_lcdc_chan *ch,
Laurent Pinchart352d6132012-08-13 13:56:46 +02002036 const struct fb_videomode *modes,
Laurent Pincharta67f3792011-11-29 14:37:35 +01002037 unsigned int num_modes)
2038{
2039 struct sh_mobile_lcdc_priv *priv = ch->lcdc;
2040 struct fb_var_screeninfo *var;
2041 struct fb_info *info;
2042 int ret;
2043
2044 /* Allocate and initialize the frame buffer device. Create the modes
2045 * list and allocate the color map.
2046 */
2047 info = framebuffer_alloc(0, priv->dev);
Bartlomiej Zolnierkiewicz0adcdbc2019-06-28 12:30:08 +02002048 if (!info)
Laurent Pincharta67f3792011-11-29 14:37:35 +01002049 return -ENOMEM;
Laurent Pincharta67f3792011-11-29 14:37:35 +01002050
2051 ch->info = info;
2052
2053 info->flags = FBINFO_FLAG_DEFAULT;
2054 info->fbops = &sh_mobile_lcdc_ops;
2055 info->device = priv->dev;
Bartlomiej Zolnierkiewicz5d301462020-01-16 15:51:15 +01002056 info->screen_buffer = ch->fb_mem;
Laurent Pincharta67f3792011-11-29 14:37:35 +01002057 info->pseudo_palette = &ch->pseudo_palette;
2058 info->par = ch;
2059
Laurent Pinchart352d6132012-08-13 13:56:46 +02002060 fb_videomode_to_modelist(modes, num_modes, &info->modelist);
Laurent Pincharta67f3792011-11-29 14:37:35 +01002061
2062 ret = fb_alloc_cmap(&info->cmap, PALETTE_NR, 0);
2063 if (ret < 0) {
2064 dev_err(priv->dev, "unable to allocate cmap\n");
2065 return ret;
2066 }
2067
2068 /* Initialize fixed screen information. Restrict pan to 2 lines steps
2069 * for NV12 and NV21.
2070 */
2071 info->fix = sh_mobile_lcdc_fix;
2072 info->fix.smem_start = ch->dma_handle;
2073 info->fix.smem_len = ch->fb_size;
Laurent Pinchart58f03d92011-11-30 23:07:30 +01002074 info->fix.line_length = ch->pitch;
2075
2076 if (ch->format->yuv)
2077 info->fix.visual = FB_VISUAL_FOURCC;
2078 else
2079 info->fix.visual = FB_VISUAL_TRUECOLOR;
2080
Laurent Pinchart15dede82012-07-18 17:09:04 +02002081 switch (ch->format->fourcc) {
Laurent Pinchart15dede82012-07-18 17:09:04 +02002082 case V4L2_PIX_FMT_NV12:
2083 case V4L2_PIX_FMT_NV21:
Laurent Pinchartac33a202012-07-26 14:36:55 +02002084 info->fix.ypanstep = 2;
Gustavo A. R. Silvaad04fae2020-07-07 16:05:39 -05002085 fallthrough;
Laurent Pinchartac33a202012-07-26 14:36:55 +02002086 case V4L2_PIX_FMT_NV16:
2087 case V4L2_PIX_FMT_NV61:
Laurent Pinchart15dede82012-07-18 17:09:04 +02002088 info->fix.xpanstep = 2;
2089 }
Laurent Pincharta67f3792011-11-29 14:37:35 +01002090
2091 /* Initialize variable screen information using the first mode as
Laurent Pinchartbd5f2c62012-07-18 16:59:16 +02002092 * default.
Laurent Pincharta67f3792011-11-29 14:37:35 +01002093 */
2094 var = &info->var;
Laurent Pinchart352d6132012-08-13 13:56:46 +02002095 fb_videomode_to_var(var, modes);
Laurent Pinchart856e8df2012-08-13 13:56:46 +02002096 var->width = ch->display.width;
2097 var->height = ch->display.height;
Laurent Pinchartbd5f2c62012-07-18 16:59:16 +02002098 var->xres_virtual = ch->xres_virtual;
2099 var->yres_virtual = ch->yres_virtual;
Laurent Pincharta67f3792011-11-29 14:37:35 +01002100 var->activate = FB_ACTIVATE_NOW;
2101
2102 /* Use the legacy API by default for RGB formats, and the FOURCC API
2103 * for YUV formats.
2104 */
2105 if (!ch->format->yuv)
2106 var->bits_per_pixel = ch->format->bpp;
2107 else
2108 var->grayscale = ch->format->fourcc;
2109
Laurent Pinchartd7ad3342011-11-22 00:56:58 +01002110 ret = sh_mobile_lcdc_check_var(var, info);
Laurent Pincharta67f3792011-11-29 14:37:35 +01002111 if (ret)
2112 return ret;
2113
Laurent Pincharta67f3792011-11-29 14:37:35 +01002114 return 0;
2115}
2116
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02002117/* -----------------------------------------------------------------------------
2118 * Backlight
2119 */
2120
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002121static int sh_mobile_lcdc_update_bl(struct backlight_device *bdev)
2122{
2123 struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev);
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002124 int brightness = bdev->props.brightness;
2125
2126 if (bdev->props.power != FB_BLANK_UNBLANK ||
2127 bdev->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK))
2128 brightness = 0;
2129
Laurent Pinchart656d4f32012-08-15 18:10:03 +02002130 ch->bl_brightness = brightness;
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01002131 return ch->cfg->bl_info.set_brightness(brightness);
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002132}
2133
2134static int sh_mobile_lcdc_get_brightness(struct backlight_device *bdev)
2135{
2136 struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev);
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002137
Laurent Pinchart656d4f32012-08-15 18:10:03 +02002138 return ch->bl_brightness;
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002139}
2140
2141static int sh_mobile_lcdc_check_fb(struct backlight_device *bdev,
2142 struct fb_info *info)
2143{
2144 return (info->bl_dev == bdev);
2145}
2146
Arvind Yadav0e258842017-06-14 17:40:57 +02002147static const struct backlight_ops sh_mobile_lcdc_bl_ops = {
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002148 .options = BL_CORE_SUSPENDRESUME,
2149 .update_status = sh_mobile_lcdc_update_bl,
2150 .get_brightness = sh_mobile_lcdc_get_brightness,
2151 .check_fb = sh_mobile_lcdc_check_fb,
2152};
2153
2154static struct backlight_device *sh_mobile_lcdc_bl_probe(struct device *parent,
2155 struct sh_mobile_lcdc_chan *ch)
2156{
2157 struct backlight_device *bl;
2158
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01002159 bl = backlight_device_register(ch->cfg->bl_info.name, parent, ch,
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002160 &sh_mobile_lcdc_bl_ops, NULL);
Dan Carpenterbeee1f22011-03-21 15:03:13 +00002161 if (IS_ERR(bl)) {
2162 dev_err(parent, "unable to register backlight device: %ld\n",
2163 PTR_ERR(bl));
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002164 return NULL;
2165 }
2166
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01002167 bl->props.max_brightness = ch->cfg->bl_info.max_brightness;
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002168 bl->props.brightness = bl->props.max_brightness;
2169 backlight_update_status(bl);
2170
2171 return bl;
2172}
2173
2174static void sh_mobile_lcdc_bl_remove(struct backlight_device *bdev)
2175{
2176 backlight_device_unregister(bdev);
2177}
2178
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02002179/* -----------------------------------------------------------------------------
2180 * Power management
2181 */
2182
Magnus Damm2feb0752009-03-13 15:36:55 +00002183static int sh_mobile_lcdc_suspend(struct device *dev)
2184{
2185 struct platform_device *pdev = to_platform_device(dev);
2186
2187 sh_mobile_lcdc_stop(platform_get_drvdata(pdev));
2188 return 0;
2189}
2190
2191static int sh_mobile_lcdc_resume(struct device *dev)
2192{
2193 struct platform_device *pdev = to_platform_device(dev);
2194
2195 return sh_mobile_lcdc_start(platform_get_drvdata(pdev));
2196}
2197
Magnus Damm0246c472009-08-14 10:49:08 +00002198static int sh_mobile_lcdc_runtime_suspend(struct device *dev)
2199{
Wolfram Sangb2faabc2018-04-24 18:11:21 +02002200 struct sh_mobile_lcdc_priv *priv = dev_get_drvdata(dev);
Magnus Damm0246c472009-08-14 10:49:08 +00002201
2202 /* turn off LCDC hardware */
Laurent Pinchart2427bb22011-07-13 12:13:47 +02002203 lcdc_write(priv, _LDCNT1R, 0);
2204
Magnus Damm0246c472009-08-14 10:49:08 +00002205 return 0;
2206}
2207
2208static int sh_mobile_lcdc_runtime_resume(struct device *dev)
2209{
Wolfram Sangb2faabc2018-04-24 18:11:21 +02002210 struct sh_mobile_lcdc_priv *priv = dev_get_drvdata(dev);
Magnus Damm0246c472009-08-14 10:49:08 +00002211
Laurent Pinchart2427bb22011-07-13 12:13:47 +02002212 __sh_mobile_lcdc_start(priv);
Magnus Damm0246c472009-08-14 10:49:08 +00002213
2214 return 0;
2215}
2216
Alexey Dobriyan47145212009-12-14 18:00:08 -08002217static const struct dev_pm_ops sh_mobile_lcdc_dev_pm_ops = {
Magnus Damm2feb0752009-03-13 15:36:55 +00002218 .suspend = sh_mobile_lcdc_suspend,
2219 .resume = sh_mobile_lcdc_resume,
Magnus Damm0246c472009-08-14 10:49:08 +00002220 .runtime_suspend = sh_mobile_lcdc_runtime_suspend,
2221 .runtime_resume = sh_mobile_lcdc_runtime_resume,
Magnus Damm2feb0752009-03-13 15:36:55 +00002222};
2223
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02002224/* -----------------------------------------------------------------------------
2225 * Framebuffer notifier
2226 */
2227
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02002228/* -----------------------------------------------------------------------------
2229 * Probe/remove and driver init/exit
2230 */
2231
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08002232static const struct fb_videomode default_720p = {
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02002233 .name = "HDMI 720p",
2234 .xres = 1280,
2235 .yres = 720,
2236
2237 .left_margin = 220,
2238 .right_margin = 110,
2239 .hsync_len = 40,
2240
2241 .upper_margin = 20,
2242 .lower_margin = 5,
2243 .vsync_len = 5,
2244
2245 .pixclock = 13468,
2246 .refresh = 60,
2247 .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
2248};
2249
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002250static int sh_mobile_lcdc_remove(struct platform_device *pdev)
2251{
2252 struct sh_mobile_lcdc_priv *priv = platform_get_drvdata(pdev);
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002253 unsigned int i;
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002254
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002255 for (i = 0; i < ARRAY_SIZE(priv->overlays); i++)
2256 sh_mobile_lcdc_overlay_fb_unregister(&priv->overlays[i]);
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002257 for (i = 0; i < ARRAY_SIZE(priv->ch); i++)
Laurent Pincharta67f3792011-11-29 14:37:35 +01002258 sh_mobile_lcdc_channel_fb_unregister(&priv->ch[i]);
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002259
2260 sh_mobile_lcdc_stop(priv);
2261
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002262 for (i = 0; i < ARRAY_SIZE(priv->overlays); i++) {
2263 struct sh_mobile_lcdc_overlay *ovl = &priv->overlays[i];
2264
2265 sh_mobile_lcdc_overlay_fb_cleanup(ovl);
2266
2267 if (ovl->fb_mem)
2268 dma_free_coherent(&pdev->dev, ovl->fb_size,
2269 ovl->fb_mem, ovl->dma_handle);
2270 }
2271
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002272 for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
Laurent Pinchart9a2985e2011-09-11 22:59:04 +02002273 struct sh_mobile_lcdc_chan *ch = &priv->ch[i];
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002274
Laurent Pincharte34d0bb2011-09-18 12:21:17 +02002275 if (ch->tx_dev) {
2276 ch->tx_dev->lcdc = NULL;
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01002277 module_put(ch->cfg->tx_dev->dev.driver->owner);
Laurent Pincharte34d0bb2011-09-18 12:21:17 +02002278 }
Laurent Pinchart9a2985e2011-09-11 22:59:04 +02002279
Laurent Pincharta67f3792011-11-29 14:37:35 +01002280 sh_mobile_lcdc_channel_fb_cleanup(ch);
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002281
Laurent Pincharta67f3792011-11-29 14:37:35 +01002282 if (ch->fb_mem)
2283 dma_free_coherent(&pdev->dev, ch->fb_size,
2284 ch->fb_mem, ch->dma_handle);
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002285 }
2286
2287 for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
Laurent Pinchart0c75c4e2012-03-15 18:34:05 +01002288 struct sh_mobile_lcdc_chan *ch = &priv->ch[i];
2289
2290 if (ch->bl)
2291 sh_mobile_lcdc_bl_remove(ch->bl);
2292 mutex_destroy(&ch->open_lock);
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002293 }
2294
Laurent Pinchart4774c122011-09-07 15:47:07 +02002295 if (priv->dot_clk) {
2296 pm_runtime_disable(&pdev->dev);
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002297 clk_put(priv->dot_clk);
Laurent Pinchart4774c122011-09-07 15:47:07 +02002298 }
Laurent Pinchartb4bee692011-08-31 13:00:57 +02002299
2300 if (priv->base)
2301 iounmap(priv->base);
2302
2303 if (priv->irq)
2304 free_irq(priv->irq, priv);
2305 kfree(priv);
2306 return 0;
2307}
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002308
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08002309static int sh_mobile_lcdc_check_interface(struct sh_mobile_lcdc_chan *ch)
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02002310{
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01002311 int interface_type = ch->cfg->interface_type;
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02002312
2313 switch (interface_type) {
2314 case RGB8:
2315 case RGB9:
2316 case RGB12A:
2317 case RGB12B:
2318 case RGB16:
2319 case RGB18:
2320 case RGB24:
2321 case SYS8A:
2322 case SYS8B:
2323 case SYS8C:
2324 case SYS8D:
2325 case SYS9:
2326 case SYS12:
2327 case SYS16A:
2328 case SYS16B:
2329 case SYS16C:
2330 case SYS18:
2331 case SYS24:
2332 break;
2333 default:
2334 return -EINVAL;
2335 }
2336
2337 /* SUBLCD only supports SYS interface */
2338 if (lcdc_chan_is_sublcd(ch)) {
2339 if (!(interface_type & LDMT1R_IFM))
2340 return -EINVAL;
2341
2342 interface_type &= ~LDMT1R_IFM;
2343 }
2344
2345 ch->ldmt1r_value = interface_type;
2346 return 0;
2347}
2348
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08002349static int
Laurent Pinchart07073302012-08-13 13:56:46 +02002350sh_mobile_lcdc_overlay_init(struct sh_mobile_lcdc_overlay *ovl)
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002351{
2352 const struct sh_mobile_lcdc_format_info *format;
Laurent Pinchart07073302012-08-13 13:56:46 +02002353 struct device *dev = ovl->channel->lcdc->dev;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002354 int ret;
2355
2356 if (ovl->cfg->fourcc == 0)
2357 return 0;
2358
2359 /* Validate the format. */
2360 format = sh_mobile_format_info(ovl->cfg->fourcc);
2361 if (format == NULL) {
Laurent Pinchart07073302012-08-13 13:56:46 +02002362 dev_err(dev, "Invalid FOURCC %08x\n", ovl->cfg->fourcc);
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002363 return -EINVAL;
2364 }
2365
2366 ovl->enabled = false;
2367 ovl->mode = LCDC_OVERLAY_BLEND;
2368 ovl->alpha = 255;
2369 ovl->rop3 = 0;
2370 ovl->pos_x = 0;
2371 ovl->pos_y = 0;
2372
2373 /* The default Y virtual resolution is twice the panel size to allow for
2374 * double-buffering.
2375 */
2376 ovl->format = format;
2377 ovl->xres = ovl->cfg->max_xres;
2378 ovl->xres_virtual = ovl->xres;
2379 ovl->yres = ovl->cfg->max_yres;
2380 ovl->yres_virtual = ovl->yres * 2;
2381
2382 if (!format->yuv)
Laurent Pinchart16ca21c2012-07-18 16:29:20 +02002383 ovl->pitch = ovl->xres_virtual * format->bpp / 8;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002384 else
Laurent Pinchart16ca21c2012-07-18 16:29:20 +02002385 ovl->pitch = ovl->xres_virtual;
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002386
2387 /* Allocate frame buffer memory. */
2388 ovl->fb_size = ovl->cfg->max_xres * ovl->cfg->max_yres
2389 * format->bpp / 8 * 2;
Laurent Pinchart07073302012-08-13 13:56:46 +02002390 ovl->fb_mem = dma_alloc_coherent(dev, ovl->fb_size, &ovl->dma_handle,
2391 GFP_KERNEL);
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002392 if (!ovl->fb_mem) {
Laurent Pinchart07073302012-08-13 13:56:46 +02002393 dev_err(dev, "unable to allocate buffer\n");
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002394 return -ENOMEM;
2395 }
2396
2397 ret = sh_mobile_lcdc_overlay_fb_init(ovl);
2398 if (ret < 0)
2399 return ret;
2400
2401 return 0;
2402}
2403
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08002404static int
Laurent Pinchart07073302012-08-13 13:56:46 +02002405sh_mobile_lcdc_channel_init(struct sh_mobile_lcdc_chan *ch)
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002406{
Laurent Pinchart105784b2011-11-29 15:58:10 +01002407 const struct sh_mobile_lcdc_format_info *format;
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01002408 const struct sh_mobile_lcdc_chan_cfg *cfg = ch->cfg;
Laurent Pinchart07073302012-08-13 13:56:46 +02002409 struct device *dev = ch->lcdc->dev;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002410 const struct fb_videomode *max_mode;
2411 const struct fb_videomode *mode;
Laurent Pincharta67f3792011-11-29 14:37:35 +01002412 unsigned int num_modes;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002413 unsigned int max_size;
Laurent Pincharta67f3792011-11-29 14:37:35 +01002414 unsigned int i;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002415
Laurent Pinchart105784b2011-11-29 15:58:10 +01002416 /* Validate the format. */
2417 format = sh_mobile_format_info(cfg->fourcc);
2418 if (format == NULL) {
Laurent Pinchart07073302012-08-13 13:56:46 +02002419 dev_err(dev, "Invalid FOURCC %08x.\n", cfg->fourcc);
Laurent Pinchart105784b2011-11-29 15:58:10 +01002420 return -EINVAL;
2421 }
2422
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002423 /* Iterate through the modes to validate them and find the highest
2424 * resolution.
2425 */
2426 max_mode = NULL;
2427 max_size = 0;
2428
Laurent Pinchart93ff2592011-11-29 14:33:41 +01002429 for (i = 0, mode = cfg->lcd_modes; i < cfg->num_modes; i++, mode++) {
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002430 unsigned int size = mode->yres * mode->xres;
2431
Laurent Pinchartedd153a2011-12-13 14:02:28 +01002432 /* NV12/NV21 buffers must have even number of lines */
2433 if ((cfg->fourcc == V4L2_PIX_FMT_NV12 ||
2434 cfg->fourcc == V4L2_PIX_FMT_NV21) && (mode->yres & 0x1)) {
Laurent Pinchart07073302012-08-13 13:56:46 +02002435 dev_err(dev, "yres must be multiple of 2 for "
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02002436 "YCbCr420 mode.\n");
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002437 return -EINVAL;
2438 }
2439
2440 if (size > max_size) {
2441 max_mode = mode;
2442 max_size = size;
2443 }
2444 }
2445
2446 if (!max_size)
2447 max_size = MAX_XRES * MAX_YRES;
2448 else
Laurent Pinchart07073302012-08-13 13:56:46 +02002449 dev_dbg(dev, "Found largest videomode %ux%u\n",
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002450 max_mode->xres, max_mode->yres);
2451
Laurent Pinchart93ff2592011-11-29 14:33:41 +01002452 if (cfg->lcd_modes == NULL) {
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002453 mode = &default_720p;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01002454 num_modes = 1;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002455 } else {
Laurent Pinchart93ff2592011-11-29 14:33:41 +01002456 mode = cfg->lcd_modes;
2457 num_modes = cfg->num_modes;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002458 }
2459
Laurent Pinchartbd5f2c62012-07-18 16:59:16 +02002460 /* Use the first mode as default. The default Y virtual resolution is
2461 * twice the panel size to allow for double-buffering.
2462 */
Laurent Pinchart58f03d92011-11-30 23:07:30 +01002463 ch->format = format;
2464 ch->xres = mode->xres;
2465 ch->xres_virtual = mode->xres;
2466 ch->yres = mode->yres;
2467 ch->yres_virtual = mode->yres * 2;
2468
2469 if (!format->yuv) {
2470 ch->colorspace = V4L2_COLORSPACE_SRGB;
Laurent Pinchart16ca21c2012-07-18 16:29:20 +02002471 ch->pitch = ch->xres_virtual * format->bpp / 8;
Laurent Pinchart58f03d92011-11-30 23:07:30 +01002472 } else {
2473 ch->colorspace = V4L2_COLORSPACE_REC709;
Laurent Pinchart16ca21c2012-07-18 16:29:20 +02002474 ch->pitch = ch->xres_virtual;
Laurent Pinchart58f03d92011-11-30 23:07:30 +01002475 }
2476
Laurent Pincharta67f3792011-11-29 14:37:35 +01002477 ch->display.width = cfg->panel_cfg.width;
2478 ch->display.height = cfg->panel_cfg.height;
2479 ch->display.mode = *mode;
2480
2481 /* Allocate frame buffer memory. */
2482 ch->fb_size = max_size * format->bpp / 8 * 2;
Laurent Pinchart07073302012-08-13 13:56:46 +02002483 ch->fb_mem = dma_alloc_coherent(dev, ch->fb_size, &ch->dma_handle,
Laurent Pincharta67f3792011-11-29 14:37:35 +01002484 GFP_KERNEL);
2485 if (ch->fb_mem == NULL) {
Laurent Pinchart07073302012-08-13 13:56:46 +02002486 dev_err(dev, "unable to allocate buffer\n");
Laurent Pincharta67f3792011-11-29 14:37:35 +01002487 return -ENOMEM;
2488 }
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002489
Laurent Pinchart13f80ee2011-11-29 01:46:12 +01002490 /* Initialize the transmitter device if present. */
2491 if (cfg->tx_dev) {
2492 if (!cfg->tx_dev->dev.driver ||
2493 !try_module_get(cfg->tx_dev->dev.driver->owner)) {
Laurent Pinchart07073302012-08-13 13:56:46 +02002494 dev_warn(dev, "unable to get transmitter device\n");
Laurent Pinchart13f80ee2011-11-29 01:46:12 +01002495 return -EINVAL;
2496 }
2497 ch->tx_dev = platform_get_drvdata(cfg->tx_dev);
2498 ch->tx_dev->lcdc = ch;
2499 ch->tx_dev->def_mode = *mode;
2500 }
2501
Laurent Pincharta67f3792011-11-29 14:37:35 +01002502 return sh_mobile_lcdc_channel_fb_init(ch, mode, num_modes);
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002503}
2504
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08002505static int sh_mobile_lcdc_probe(struct platform_device *pdev)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002506{
Guennadi Liakhovetski01ac25b52010-09-03 07:20:00 +00002507 struct sh_mobile_lcdc_info *pdata = pdev->dev.platform_data;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002508 struct sh_mobile_lcdc_priv *priv;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002509 struct resource *res;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002510 int num_channels;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002511 int error;
Geert Uytterhoeven7374ccc2015-04-03 14:50:28 +02002512 int irq, i;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002513
Guennadi Liakhovetski01ac25b52010-09-03 07:20:00 +00002514 if (!pdata) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002515 dev_err(&pdev->dev, "no platform data defined\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00002516 return -EINVAL;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002517 }
2518
2519 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Geert Uytterhoeven7374ccc2015-04-03 14:50:28 +02002520 irq = platform_get_irq(pdev, 0);
2521 if (!res || irq < 0) {
Magnus Damm85645572008-12-19 15:34:41 +09002522 dev_err(&pdev->dev, "cannot get platform resources\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00002523 return -ENOENT;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002524 }
2525
2526 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Markus Elfringe2810182018-04-26 12:24:18 +02002527 if (!priv)
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00002528 return -ENOMEM;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002529
Laurent Pinchart4774c122011-09-07 15:47:07 +02002530 priv->dev = &pdev->dev;
Bartlomiej Zolnierkiewicz9076aa92018-05-14 15:47:30 +02002531
Geert Uytterhoeven7374ccc2015-04-03 14:50:28 +02002532 for (i = 0; i < ARRAY_SIZE(priv->ch); i++)
2533 mutex_init(&priv->ch[i].open_lock);
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00002534 platform_set_drvdata(pdev, priv);
2535
Geert Uytterhoeven7374ccc2015-04-03 14:50:28 +02002536 error = request_irq(irq, sh_mobile_lcdc_irq, 0,
Kay Sievers7ad33e72009-03-24 16:38:21 -07002537 dev_name(&pdev->dev), priv);
Magnus Damm85645572008-12-19 15:34:41 +09002538 if (error) {
2539 dev_err(&pdev->dev, "unable to request irq\n");
2540 goto err1;
2541 }
2542
Geert Uytterhoeven7374ccc2015-04-03 14:50:28 +02002543 priv->irq = irq;
Guennadi Liakhovetski5ef6b502010-09-03 07:19:57 +00002544 atomic_set(&priv->hw_usecnt, -1);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002545
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002546 for (i = 0, num_channels = 0; i < ARRAY_SIZE(pdata->ch); i++) {
2547 struct sh_mobile_lcdc_chan *ch = priv->ch + num_channels;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002548
Guennadi Liakhovetski01ac25b52010-09-03 07:20:00 +00002549 ch->lcdc = priv;
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01002550 ch->cfg = &pdata->ch[i];
Guennadi Liakhovetski01ac25b52010-09-03 07:20:00 +00002551
2552 error = sh_mobile_lcdc_check_interface(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002553 if (error) {
2554 dev_err(&pdev->dev, "unsupported interface type\n");
2555 goto err1;
2556 }
Guennadi Liakhovetski01ac25b52010-09-03 07:20:00 +00002557 init_waitqueue_head(&ch->frame_end_wait);
2558 init_completion(&ch->vsync_completion);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002559
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002560 /* probe the backlight is there is one defined */
Laurent Pinchartb5ef9672011-11-22 00:56:58 +01002561 if (ch->cfg->bl_info.max_brightness)
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002562 ch->bl = sh_mobile_lcdc_bl_probe(&pdev->dev, ch);
2563
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002564 switch (pdata->ch[i].chan) {
2565 case LCDC_CHAN_MAINLCD:
Laurent Pinchartce1c0b02011-07-13 12:13:47 +02002566 ch->enabled = LDCNT2R_ME;
Guennadi Liakhovetski01ac25b52010-09-03 07:20:00 +00002567 ch->reg_offs = lcdc_offs_mainlcd;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002568 num_channels++;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002569 break;
2570 case LCDC_CHAN_SUBLCD:
Laurent Pinchartce1c0b02011-07-13 12:13:47 +02002571 ch->enabled = LDCNT2R_SE;
Guennadi Liakhovetski01ac25b52010-09-03 07:20:00 +00002572 ch->reg_offs = lcdc_offs_sublcd;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002573 num_channels++;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002574 break;
2575 }
2576 }
2577
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002578 if (!num_channels) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002579 dev_err(&pdev->dev, "no channels defined\n");
2580 error = -EINVAL;
2581 goto err1;
2582 }
2583
Laurent Pinchartedd153a2011-12-13 14:02:28 +01002584 /* for dual channel LCDC (MAIN + SUB) force shared format setting */
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002585 if (num_channels == 2)
Laurent Pinchartedd153a2011-12-13 14:02:28 +01002586 priv->forced_fourcc = pdata->ch[0].fourcc;
Magnus Damm417d4822011-01-05 10:21:00 +00002587
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +01002588 priv->base = ioremap(res->start, resource_size(res));
Wei Yongjunb49898c2017-02-08 16:43:59 +01002589 if (!priv->base) {
2590 error = -ENOMEM;
Guennadi Liakhovetskidba6f382010-06-30 09:26:35 +00002591 goto err1;
Wei Yongjunb49898c2017-02-08 16:43:59 +01002592 }
Guennadi Liakhovetskidba6f382010-06-30 09:26:35 +00002593
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02002594 error = sh_mobile_lcdc_setup_clocks(priv, pdata->clock_source);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002595 if (error) {
2596 dev_err(&pdev->dev, "unable to setup clocks\n");
2597 goto err1;
2598 }
2599
Laurent Pinchart4774c122011-09-07 15:47:07 +02002600 /* Enable runtime PM. */
2601 pm_runtime_enable(&pdev->dev);
Damian7caa4342011-05-18 11:10:07 +00002602
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002603 for (i = 0; i < num_channels; i++) {
Laurent Pinchart07073302012-08-13 13:56:46 +02002604 struct sh_mobile_lcdc_chan *ch = &priv->ch[i];
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002605
Laurent Pinchart07073302012-08-13 13:56:46 +02002606 error = sh_mobile_lcdc_channel_init(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002607 if (error)
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002608 goto err1;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002609 }
2610
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002611 for (i = 0; i < ARRAY_SIZE(pdata->overlays); i++) {
2612 struct sh_mobile_lcdc_overlay *ovl = &priv->overlays[i];
2613
2614 ovl->cfg = &pdata->overlays[i];
2615 ovl->channel = &priv->ch[0];
2616
Laurent Pinchart07073302012-08-13 13:56:46 +02002617 error = sh_mobile_lcdc_overlay_init(ovl);
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002618 if (error)
2619 goto err1;
2620 }
2621
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002622 error = sh_mobile_lcdc_start(priv);
2623 if (error) {
2624 dev_err(&pdev->dev, "unable to start hardware\n");
2625 goto err1;
2626 }
2627
Laurent Pinchart3ce05592011-08-31 13:00:58 +02002628 for (i = 0; i < num_channels; i++) {
Paul Mundt1c6a3072009-07-01 06:50:31 +00002629 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
Paul Mundt1c6a3072009-07-01 06:50:31 +00002630
Laurent Pincharta67f3792011-11-29 14:37:35 +01002631 error = sh_mobile_lcdc_channel_fb_register(ch);
2632 if (error)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002633 goto err1;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002634 }
2635
Laurent Pinchartc5deac32011-12-12 18:43:16 +01002636 for (i = 0; i < ARRAY_SIZE(pdata->overlays); i++) {
2637 struct sh_mobile_lcdc_overlay *ovl = &priv->overlays[i];
2638
2639 error = sh_mobile_lcdc_overlay_fb_register(ovl);
2640 if (error)
2641 goto err1;
2642 }
2643
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002644 return 0;
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00002645err1:
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002646 sh_mobile_lcdc_remove(pdev);
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00002647
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002648 return error;
2649}
2650
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002651static struct platform_driver sh_mobile_lcdc_driver = {
2652 .driver = {
2653 .name = "sh_mobile_lcdc_fb",
Magnus Damm2feb0752009-03-13 15:36:55 +00002654 .pm = &sh_mobile_lcdc_dev_pm_ops,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002655 },
2656 .probe = sh_mobile_lcdc_probe,
2657 .remove = sh_mobile_lcdc_remove,
2658};
2659
Axel Lin4277f2c2011-11-26 10:25:54 +08002660module_platform_driver(sh_mobile_lcdc_driver);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002661
2662MODULE_DESCRIPTION("SuperH Mobile LCDC Framebuffer driver");
2663MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
2664MODULE_LICENSE("GPL v2");