blob: bd68f3d43ab5190a9b407d15033fb1e8f775877e [file] [log] [blame]
Damian7caa4342011-05-18 11:10:07 +00001/*
2 * SuperH Mobile MERAM Driver for SuperH Mobile LCDC Driver
3 *
4 * Copyright (c) 2011 Damian Hobson-Garcia <dhobsong@igel.co.jp>
5 * Takanari Hayama <taki@igel.co.jp>
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/device.h>
15#include <linux/io.h>
16#include <linux/slab.h>
17#include <linux/platform_device.h>
18
19#include "sh_mobile_meram.h"
20
21/* meram registers */
22#define MExxCTL 0x0
23#define MExxBSIZE 0x4
24#define MExxMNCF 0x8
25#define MExxSARA 0x10
26#define MExxSARB 0x14
27#define MExxSBSIZE 0x18
28
29#define MERAM_MExxCTL_VAL(ctl, next_icb, addr) \
30 ((ctl) | (((next_icb) & 0x1f) << 11) | (((addr) & 0x7ff) << 16))
31#define MERAM_MExxBSIZE_VAL(a, b, c) \
32 (((a) << 28) | ((b) << 16) | (c))
33
34#define MEVCR1 0x4
35#define MEACTS 0x10
36#define MEQSEL1 0x40
37#define MEQSEL2 0x44
38
39/* settings */
40#define MERAM_SEC_LINE 15
41#define MERAM_LINE_WIDTH 2048
42
43/*
44 * MERAM/ICB access functions
45 */
46
47#define MERAM_ICB_OFFSET(base, idx, off) \
48 ((base) + (0x400 + ((idx) * 0x20) + (off)))
49
50static inline void meram_write_icb(void __iomem *base, int idx, int off,
51 unsigned long val)
52{
53 iowrite32(val, MERAM_ICB_OFFSET(base, idx, off));
54}
55
56static inline unsigned long meram_read_icb(void __iomem *base, int idx, int off)
57{
58 return ioread32(MERAM_ICB_OFFSET(base, idx, off));
59}
60
61static inline void meram_write_reg(void __iomem *base, int off,
62 unsigned long val)
63{
64 iowrite32(val, base + off);
65}
66
67static inline unsigned long meram_read_reg(void __iomem *base, int off)
68{
69 return ioread32(base + off);
70}
71
72/*
73 * register ICB
74 */
75
76#define MERAM_CACHE_START(p) ((p) >> 16)
77#define MERAM_CACHE_END(p) ((p) & 0xffff)
78#define MERAM_CACHE_SET(o, s) ((((o) & 0xffff) << 16) | \
79 (((o) + (s) - 1) & 0xffff))
80
81/*
82 * check if there's no overlaps in MERAM allocation.
83 */
84
85static inline int meram_check_overlap(struct sh_mobile_meram_priv *priv,
86 struct sh_mobile_meram_icb *new)
87{
88 int i;
89 int used_start, used_end, meram_start, meram_end;
90
91 /* valid ICB? */
92 if (new->marker_icb & ~0x1f || new->cache_icb & ~0x1f)
93 return 1;
94
95 if (test_bit(new->marker_icb, &priv->used_icb) ||
96 test_bit(new->cache_icb, &priv->used_icb))
97 return 1;
98
99 for (i = 0; i < priv->used_meram_cache_regions; i++) {
100 used_start = MERAM_CACHE_START(priv->used_meram_cache[i]);
101 used_end = MERAM_CACHE_END(priv->used_meram_cache[i]);
102 meram_start = new->meram_offset;
103 meram_end = new->meram_offset + new->meram_size;
104
105 if ((meram_start >= used_start && meram_start < used_end) ||
106 (meram_end > used_start && meram_end < used_end))
107 return 1;
108 }
109
110 return 0;
111}
112
113/*
114 * mark the specified ICB as used
115 */
116
117static inline void meram_mark(struct sh_mobile_meram_priv *priv,
118 struct sh_mobile_meram_icb *new)
119{
120 int n;
121
122 if (new->marker_icb < 0 || new->cache_icb < 0)
123 return;
124
125 __set_bit(new->marker_icb, &priv->used_icb);
126 __set_bit(new->cache_icb, &priv->used_icb);
127
128 n = priv->used_meram_cache_regions;
129
130 priv->used_meram_cache[n] = MERAM_CACHE_SET(new->meram_offset,
131 new->meram_size);
132
133 priv->used_meram_cache_regions++;
134}
135
136/*
137 * unmark the specified ICB as used
138 */
139
140static inline void meram_unmark(struct sh_mobile_meram_priv *priv,
141 struct sh_mobile_meram_icb *icb)
142{
143 int i;
144 unsigned long pattern;
145
146 if (icb->marker_icb < 0 || icb->cache_icb < 0)
147 return;
148
149 __clear_bit(icb->marker_icb, &priv->used_icb);
150 __clear_bit(icb->cache_icb, &priv->used_icb);
151
152 pattern = MERAM_CACHE_SET(icb->meram_offset, icb->meram_size);
153 for (i = 0; i < priv->used_meram_cache_regions; i++) {
154 if (priv->used_meram_cache[i] == pattern) {
155 while (i < priv->used_meram_cache_regions - 1) {
156 priv->used_meram_cache[i] =
157 priv->used_meram_cache[i + 1] ;
158 i++;
159 }
160 priv->used_meram_cache[i] = 0;
161 priv->used_meram_cache_regions--;
162 break;
163 }
164 }
165}
166
167
168/*
169 * set the next address to fetch
170 */
171static inline void meram_set_next_addr(struct sh_mobile_meram_priv *priv,
172 struct sh_mobile_meram_cfg *cfg,
173 unsigned long base_addr_y,
174 unsigned long base_addr_c)
175{
176 unsigned long target;
177
178 target = (cfg->current_reg) ? MExxSARA : MExxSARB;
179 cfg->current_reg ^= 1;
180
181 /* set the next address to fetch */
182 meram_write_icb(priv->base, cfg->icb[0].cache_icb, target,
183 base_addr_y);
184 meram_write_icb(priv->base, cfg->icb[0].marker_icb, target,
185 base_addr_y + cfg->icb[0].cache_unit);
186
187 if (cfg->pixelformat == SH_MOBILE_MERAM_PF_NV) {
188 meram_write_icb(priv->base, cfg->icb[1].cache_icb, target,
189 base_addr_c);
190 meram_write_icb(priv->base, cfg->icb[1].marker_icb, target,
191 base_addr_c + cfg->icb[1].cache_unit);
192 }
193}
194
195/*
196 * get the next ICB address
197 */
198static inline void meram_get_next_icb_addr(struct sh_mobile_meram_info *pdata,
199 struct sh_mobile_meram_cfg *cfg,
200 unsigned long *icb_addr_y,
201 unsigned long *icb_addr_c)
202{
203 unsigned long icb_offset;
204
205 if (pdata->addr_mode == SH_MOBILE_MERAM_MODE0)
206 icb_offset = 0x80000000 | (cfg->current_reg << 29);
207 else
208 icb_offset = 0xc0000000 | (cfg->current_reg << 23);
209
210 *icb_addr_y = icb_offset | (cfg->icb[0].marker_icb << 24);
211 if ((*icb_addr_c) && cfg->pixelformat == SH_MOBILE_MERAM_PF_NV)
212 *icb_addr_c = icb_offset | (cfg->icb[1].marker_icb << 24);
213}
214
215#define MERAM_CALC_BYTECOUNT(x, y) \
216 (((x) * (y) + (MERAM_LINE_WIDTH - 1)) & ~(MERAM_LINE_WIDTH - 1))
217
218/*
219 * initialize MERAM
220 */
221
222static int meram_init(struct sh_mobile_meram_priv *priv,
223 struct sh_mobile_meram_icb *icb,
224 int xres, int yres, int *out_pitch)
225{
226 unsigned long total_byte_count = MERAM_CALC_BYTECOUNT(xres, yres);
227 unsigned long bnm;
228 int lcdc_pitch, xpitch, line_cnt;
229 int save_lines;
230
231 /* adjust pitch to 1024, 2048, 4096 or 8192 */
232 lcdc_pitch = (xres - 1) | 1023;
233 lcdc_pitch = lcdc_pitch | (lcdc_pitch >> 1);
234 lcdc_pitch = lcdc_pitch | (lcdc_pitch >> 2);
235 lcdc_pitch += 1;
236
237 /* derive settings */
238 if (lcdc_pitch == 8192 && yres >= 1024) {
239 lcdc_pitch = xpitch = MERAM_LINE_WIDTH;
240 line_cnt = total_byte_count >> 11;
241 *out_pitch = xres;
242 save_lines = (icb->meram_size / 16 / MERAM_SEC_LINE);
243 save_lines *= MERAM_SEC_LINE;
244 } else {
245 xpitch = xres;
246 line_cnt = yres;
247 *out_pitch = lcdc_pitch;
248 save_lines = icb->meram_size / (lcdc_pitch >> 10) / 2;
249 save_lines &= 0xff;
250 }
251 bnm = (save_lines - 1) << 16;
252
253 /* TODO: we better to check if we have enough MERAM buffer size */
254
255 /* set up ICB */
256 meram_write_icb(priv->base, icb->cache_icb, MExxBSIZE,
257 MERAM_MExxBSIZE_VAL(0x0, line_cnt - 1, xpitch - 1));
258 meram_write_icb(priv->base, icb->marker_icb, MExxBSIZE,
259 MERAM_MExxBSIZE_VAL(0xf, line_cnt - 1, xpitch - 1));
260
261 meram_write_icb(priv->base, icb->cache_icb, MExxMNCF, bnm);
262 meram_write_icb(priv->base, icb->marker_icb, MExxMNCF, bnm);
263
264 meram_write_icb(priv->base, icb->cache_icb, MExxSBSIZE, xpitch);
265 meram_write_icb(priv->base, icb->marker_icb, MExxSBSIZE, xpitch);
266
267 /* save a cache unit size */
268 icb->cache_unit = xres * save_lines;
269
270 /*
271 * Set MERAM for framebuffer
272 *
273 * 0x70f: WD = 0x3, WS=0x1, CM=0x1, MD=FB mode
274 * we also chain the cache_icb and the marker_icb.
275 * we also split the allocated MERAM buffer between two ICBs.
276 */
277 meram_write_icb(priv->base, icb->cache_icb, MExxCTL,
278 MERAM_MExxCTL_VAL(0x70f, icb->marker_icb,
279 icb->meram_offset));
280 meram_write_icb(priv->base, icb->marker_icb, MExxCTL,
281 MERAM_MExxCTL_VAL(0x70f, icb->cache_icb,
282 icb->meram_offset +
283 icb->meram_size / 2));
284
285 return 0;
286}
287
288static void meram_deinit(struct sh_mobile_meram_priv *priv,
289 struct sh_mobile_meram_icb *icb)
290{
291 /* disable ICB */
292 meram_write_icb(priv->base, icb->cache_icb, MExxCTL, 0);
293 meram_write_icb(priv->base, icb->marker_icb, MExxCTL, 0);
294 icb->cache_unit = 0;
295}
296
297/*
298 * register the ICB
299 */
300
301static int sh_mobile_meram_register(struct sh_mobile_meram_info *pdata,
302 struct sh_mobile_meram_cfg *cfg,
303 int xres, int yres, int pixelformat,
304 unsigned long base_addr_y,
305 unsigned long base_addr_c,
306 unsigned long *icb_addr_y,
307 unsigned long *icb_addr_c,
308 int *pitch)
309{
310 struct platform_device *pdev;
311 struct sh_mobile_meram_priv *priv;
312 int n, out_pitch;
313 int error = 0;
314
315 if (!pdata || !pdata->priv || !pdata->pdev || !cfg)
316 return -EINVAL;
317
318 if (pixelformat != SH_MOBILE_MERAM_PF_NV &&
319 pixelformat != SH_MOBILE_MERAM_PF_RGB)
320 return -EINVAL;
321
322 priv = pdata->priv;
323 pdev = pdata->pdev;
324
325 dev_dbg(&pdev->dev, "registering %dx%d (%s) (y=%08lx, c=%08lx)",
326 xres, yres, (!pixelformat) ? "yuv" : "rgb",
327 base_addr_y, base_addr_c);
328
329 mutex_lock(&priv->lock);
330
331 /* we can't handle wider than 8192px */
332 if (xres > 8192) {
333 dev_err(&pdev->dev, "width exceeding the limit (> 8192).");
334 error = -EINVAL;
335 goto err;
336 }
337
338 if (priv->used_meram_cache_regions + 2 > SH_MOBILE_MERAM_ICB_NUM) {
339 dev_err(&pdev->dev, "no more ICB available.");
340 error = -EINVAL;
341 goto err;
342 }
343
344 /* do we have at least one ICB config? */
345 if (cfg->icb[0].marker_icb < 0 || cfg->icb[0].cache_icb < 0) {
346 dev_err(&pdev->dev, "at least one ICB is required.");
347 error = -EINVAL;
348 goto err;
349 }
350
351 /* make sure that there's no overlaps */
352 if (meram_check_overlap(priv, &cfg->icb[0])) {
353 dev_err(&pdev->dev, "conflicting config detected.");
354 error = -EINVAL;
355 goto err;
356 }
357 n = 1;
358
359 /* do the same if we have the second ICB set */
360 if (cfg->icb[1].marker_icb >= 0 && cfg->icb[1].cache_icb >= 0) {
361 if (meram_check_overlap(priv, &cfg->icb[1])) {
362 dev_err(&pdev->dev, "conflicting config detected.");
363 error = -EINVAL;
364 goto err;
365 }
366 n = 2;
367 }
368
369 if (pixelformat == SH_MOBILE_MERAM_PF_NV && n != 2) {
370 dev_err(&pdev->dev, "requires two ICB sets for planar Y/C.");
371 error = -EINVAL;
372 goto err;
373 }
374
375 /* we now register the ICB */
376 cfg->pixelformat = pixelformat;
377 meram_mark(priv, &cfg->icb[0]);
378 if (pixelformat == SH_MOBILE_MERAM_PF_NV)
379 meram_mark(priv, &cfg->icb[1]);
380
381 /* initialize MERAM */
382 meram_init(priv, &cfg->icb[0], xres, yres, &out_pitch);
383 *pitch = out_pitch;
384 if (pixelformat == SH_MOBILE_MERAM_PF_NV)
385 meram_init(priv, &cfg->icb[1], xres, (yres + 1) / 2,
386 &out_pitch);
387
388 cfg->current_reg = 1;
389 meram_set_next_addr(priv, cfg, base_addr_y, base_addr_c);
390 meram_get_next_icb_addr(pdata, cfg, icb_addr_y, icb_addr_c);
391
392 dev_dbg(&pdev->dev, "registered - can access via y=%08lx, c=%08lx",
393 *icb_addr_y, *icb_addr_c);
394
395err:
396 mutex_unlock(&priv->lock);
397 return error;
398}
399
400static int sh_mobile_meram_unregister(struct sh_mobile_meram_info *pdata,
401 struct sh_mobile_meram_cfg *cfg)
402{
403 struct sh_mobile_meram_priv *priv;
404
405 if (!pdata || !pdata->priv || !cfg)
406 return -EINVAL;
407
408 priv = pdata->priv;
409
410 mutex_lock(&priv->lock);
411
412 /* deinit & unmark */
413 if (cfg->pixelformat == SH_MOBILE_MERAM_PF_NV) {
414 meram_deinit(priv, &cfg->icb[1]);
415 meram_unmark(priv, &cfg->icb[1]);
416 }
417 meram_deinit(priv, &cfg->icb[0]);
418 meram_unmark(priv, &cfg->icb[0]);
419
420 mutex_unlock(&priv->lock);
421
422 return 0;
423}
424
425static int sh_mobile_meram_update(struct sh_mobile_meram_info *pdata,
426 struct sh_mobile_meram_cfg *cfg,
427 unsigned long base_addr_y,
428 unsigned long base_addr_c,
429 unsigned long *icb_addr_y,
430 unsigned long *icb_addr_c)
431{
432 struct sh_mobile_meram_priv *priv;
433
434 if (!pdata || !pdata->priv || !cfg)
435 return -EINVAL;
436
437 priv = pdata->priv;
438
439 mutex_lock(&priv->lock);
440
441 meram_set_next_addr(priv, cfg, base_addr_y, base_addr_c);
442 meram_get_next_icb_addr(pdata, cfg, icb_addr_y, icb_addr_c);
443
444 mutex_unlock(&priv->lock);
445
446 return 0;
447}
448
449static struct sh_mobile_meram_ops sh_mobile_meram_ops = {
450 .module = THIS_MODULE,
451 .meram_register = sh_mobile_meram_register,
452 .meram_unregister = sh_mobile_meram_unregister,
453 .meram_update = sh_mobile_meram_update,
454};
455
456/*
457 * initialize MERAM
458 */
459
460static int sh_mobile_meram_remove(struct platform_device *pdev);
461
462static int __devinit sh_mobile_meram_probe(struct platform_device *pdev)
463{
464 struct sh_mobile_meram_priv *priv;
465 struct sh_mobile_meram_info *pdata = pdev->dev.platform_data;
466 struct resource *res;
467 int error;
468
469 if (!pdata) {
470 dev_err(&pdev->dev, "no platform data defined\n");
471 return -EINVAL;
472 }
473
474 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
475 if (!res) {
476 dev_err(&pdev->dev, "cannot get platform resources\n");
477 return -ENOENT;
478 }
479
480 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
481 if (!priv) {
482 dev_err(&pdev->dev, "cannot allocate device data\n");
483 return -ENOMEM;
484 }
485
486 platform_set_drvdata(pdev, priv);
487
488 /* initialize private data */
489 mutex_init(&priv->lock);
490 priv->base = ioremap_nocache(res->start, resource_size(res));
491 if (!priv->base) {
492 dev_err(&pdev->dev, "ioremap failed\n");
493 error = -EFAULT;
494 goto err;
495 }
496 pdata->ops = &sh_mobile_meram_ops;
497 pdata->priv = priv;
498 pdata->pdev = pdev;
499
500 /* initialize ICB addressing mode */
501 if (pdata->addr_mode == SH_MOBILE_MERAM_MODE1)
502 meram_write_reg(priv->base, MEVCR1, 1 << 29);
503
504 dev_info(&pdev->dev, "sh_mobile_meram initialized.");
505
506 return 0;
507
508err:
509 sh_mobile_meram_remove(pdev);
510
511 return error;
512}
513
514
515static int sh_mobile_meram_remove(struct platform_device *pdev)
516{
517 struct sh_mobile_meram_priv *priv = platform_get_drvdata(pdev);
518
519 if (priv->base)
520 iounmap(priv->base);
521
522 mutex_destroy(&priv->lock);
523
524 kfree(priv);
525
526 return 0;
527}
528
529static struct platform_driver sh_mobile_meram_driver = {
530 .driver = {
531 .name = "sh_mobile_meram",
532 .owner = THIS_MODULE,
533 },
534 .probe = sh_mobile_meram_probe,
535 .remove = sh_mobile_meram_remove,
536};
537
538static int __init sh_mobile_meram_init(void)
539{
540 return platform_driver_register(&sh_mobile_meram_driver);
541}
542
543static void __exit sh_mobile_meram_exit(void)
544{
545 platform_driver_unregister(&sh_mobile_meram_driver);
546}
547
548module_init(sh_mobile_meram_init);
549module_exit(sh_mobile_meram_exit);
550
551MODULE_DESCRIPTION("SuperH Mobile MERAM driver");
552MODULE_AUTHOR("Damian Hobson-Garcia / Takanari Hayama");
553MODULE_LICENSE("GPL v2");