Merge drm/drm-next into drm-misc-next
[sfrench/cifs-2.6.git] / drivers / video / fbdev / simplefb.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Simplest possible simple frame-buffer driver, as a platform device
4  *
5  * Copyright (c) 2013, Stephen Warren
6  *
7  * Based on q40fb.c, which was:
8  * Copyright (C) 2001 Richard Zidlicky <rz@linux-m68k.org>
9  *
10  * Also based on offb.c, which was:
11  * Copyright (C) 1997 Geert Uytterhoeven
12  * Copyright (C) 1996 Paul Mackerras
13  */
14
15 #include <linux/errno.h>
16 #include <linux/fb.h>
17 #include <linux/io.h>
18 #include <linux/module.h>
19 #include <linux/platform_data/simplefb.h>
20 #include <linux/platform_device.h>
21 #include <linux/clk.h>
22 #include <linux/of.h>
23 #include <linux/of_clk.h>
24 #include <linux/of_platform.h>
25 #include <linux/parser.h>
26 #include <linux/regulator/consumer.h>
27
28 static const struct fb_fix_screeninfo simplefb_fix = {
29         .id             = "simple",
30         .type           = FB_TYPE_PACKED_PIXELS,
31         .visual         = FB_VISUAL_TRUECOLOR,
32         .accel          = FB_ACCEL_NONE,
33 };
34
35 static const struct fb_var_screeninfo simplefb_var = {
36         .height         = -1,
37         .width          = -1,
38         .activate       = FB_ACTIVATE_NOW,
39         .vmode          = FB_VMODE_NONINTERLACED,
40 };
41
42 #define PSEUDO_PALETTE_SIZE 16
43
44 static int simplefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
45                               u_int transp, struct fb_info *info)
46 {
47         u32 *pal = info->pseudo_palette;
48         u32 cr = red >> (16 - info->var.red.length);
49         u32 cg = green >> (16 - info->var.green.length);
50         u32 cb = blue >> (16 - info->var.blue.length);
51         u32 value;
52
53         if (regno >= PSEUDO_PALETTE_SIZE)
54                 return -EINVAL;
55
56         value = (cr << info->var.red.offset) |
57                 (cg << info->var.green.offset) |
58                 (cb << info->var.blue.offset);
59         if (info->var.transp.length > 0) {
60                 u32 mask = (1 << info->var.transp.length) - 1;
61                 mask <<= info->var.transp.offset;
62                 value |= mask;
63         }
64         pal[regno] = value;
65
66         return 0;
67 }
68
69 struct simplefb_par {
70         u32 palette[PSEUDO_PALETTE_SIZE];
71         struct resource *mem;
72 #if defined CONFIG_OF && defined CONFIG_COMMON_CLK
73         bool clks_enabled;
74         unsigned int clk_count;
75         struct clk **clks;
76 #endif
77 #if defined CONFIG_OF && defined CONFIG_REGULATOR
78         bool regulators_enabled;
79         u32 regulator_count;
80         struct regulator **regulators;
81 #endif
82 };
83
84 static void simplefb_clocks_destroy(struct simplefb_par *par);
85 static void simplefb_regulators_destroy(struct simplefb_par *par);
86
87 /*
88  * fb_ops.fb_destroy is called by the last put_fb_info() call at the end
89  * of unregister_framebuffer() or fb_release(). Do any cleanup here.
90  */
91 static void simplefb_destroy(struct fb_info *info)
92 {
93         struct simplefb_par *par = info->par;
94         struct resource *mem = par->mem;
95
96         simplefb_regulators_destroy(info->par);
97         simplefb_clocks_destroy(info->par);
98         if (info->screen_base)
99                 iounmap(info->screen_base);
100
101         framebuffer_release(info);
102
103         if (mem)
104                 release_mem_region(mem->start, resource_size(mem));
105 }
106
107 static const struct fb_ops simplefb_ops = {
108         .owner          = THIS_MODULE,
109         .fb_destroy     = simplefb_destroy,
110         .fb_setcolreg   = simplefb_setcolreg,
111         .fb_fillrect    = cfb_fillrect,
112         .fb_copyarea    = cfb_copyarea,
113         .fb_imageblit   = cfb_imageblit,
114 };
115
116 static struct simplefb_format simplefb_formats[] = SIMPLEFB_FORMATS;
117
118 struct simplefb_params {
119         u32 width;
120         u32 height;
121         u32 stride;
122         struct simplefb_format *format;
123 };
124
125 static int simplefb_parse_dt(struct platform_device *pdev,
126                            struct simplefb_params *params)
127 {
128         struct device_node *np = pdev->dev.of_node;
129         int ret;
130         const char *format;
131         int i;
132
133         ret = of_property_read_u32(np, "width", &params->width);
134         if (ret) {
135                 dev_err(&pdev->dev, "Can't parse width property\n");
136                 return ret;
137         }
138
139         ret = of_property_read_u32(np, "height", &params->height);
140         if (ret) {
141                 dev_err(&pdev->dev, "Can't parse height property\n");
142                 return ret;
143         }
144
145         ret = of_property_read_u32(np, "stride", &params->stride);
146         if (ret) {
147                 dev_err(&pdev->dev, "Can't parse stride property\n");
148                 return ret;
149         }
150
151         ret = of_property_read_string(np, "format", &format);
152         if (ret) {
153                 dev_err(&pdev->dev, "Can't parse format property\n");
154                 return ret;
155         }
156         params->format = NULL;
157         for (i = 0; i < ARRAY_SIZE(simplefb_formats); i++) {
158                 if (strcmp(format, simplefb_formats[i].name))
159                         continue;
160                 params->format = &simplefb_formats[i];
161                 break;
162         }
163         if (!params->format) {
164                 dev_err(&pdev->dev, "Invalid format value\n");
165                 return -EINVAL;
166         }
167
168         return 0;
169 }
170
171 static int simplefb_parse_pd(struct platform_device *pdev,
172                              struct simplefb_params *params)
173 {
174         struct simplefb_platform_data *pd = dev_get_platdata(&pdev->dev);
175         int i;
176
177         params->width = pd->width;
178         params->height = pd->height;
179         params->stride = pd->stride;
180
181         params->format = NULL;
182         for (i = 0; i < ARRAY_SIZE(simplefb_formats); i++) {
183                 if (strcmp(pd->format, simplefb_formats[i].name))
184                         continue;
185
186                 params->format = &simplefb_formats[i];
187                 break;
188         }
189
190         if (!params->format) {
191                 dev_err(&pdev->dev, "Invalid format value\n");
192                 return -EINVAL;
193         }
194
195         return 0;
196 }
197
198 #if defined CONFIG_OF && defined CONFIG_COMMON_CLK
199 /*
200  * Clock handling code.
201  *
202  * Here we handle the clocks property of our "simple-framebuffer" dt node.
203  * This is necessary so that we can make sure that any clocks needed by
204  * the display engine that the bootloader set up for us (and for which it
205  * provided a simplefb dt node), stay up, for the life of the simplefb
206  * driver.
207  *
208  * When the driver unloads, we cleanly disable, and then release the clocks.
209  *
210  * We only complain about errors here, no action is taken as the most likely
211  * error can only happen due to a mismatch between the bootloader which set
212  * up simplefb, and the clock definitions in the device tree. Chances are
213  * that there are no adverse effects, and if there are, a clean teardown of
214  * the fb probe will not help us much either. So just complain and carry on,
215  * and hope that the user actually gets a working fb at the end of things.
216  */
217 static int simplefb_clocks_get(struct simplefb_par *par,
218                                struct platform_device *pdev)
219 {
220         struct device_node *np = pdev->dev.of_node;
221         struct clk *clock;
222         int i;
223
224         if (dev_get_platdata(&pdev->dev) || !np)
225                 return 0;
226
227         par->clk_count = of_clk_get_parent_count(np);
228         if (!par->clk_count)
229                 return 0;
230
231         par->clks = kcalloc(par->clk_count, sizeof(struct clk *), GFP_KERNEL);
232         if (!par->clks)
233                 return -ENOMEM;
234
235         for (i = 0; i < par->clk_count; i++) {
236                 clock = of_clk_get(np, i);
237                 if (IS_ERR(clock)) {
238                         if (PTR_ERR(clock) == -EPROBE_DEFER) {
239                                 while (--i >= 0) {
240                                         if (par->clks[i])
241                                                 clk_put(par->clks[i]);
242                                 }
243                                 kfree(par->clks);
244                                 return -EPROBE_DEFER;
245                         }
246                         dev_err(&pdev->dev, "%s: clock %d not found: %ld\n",
247                                 __func__, i, PTR_ERR(clock));
248                         continue;
249                 }
250                 par->clks[i] = clock;
251         }
252
253         return 0;
254 }
255
256 static void simplefb_clocks_enable(struct simplefb_par *par,
257                                    struct platform_device *pdev)
258 {
259         int i, ret;
260
261         for (i = 0; i < par->clk_count; i++) {
262                 if (par->clks[i]) {
263                         ret = clk_prepare_enable(par->clks[i]);
264                         if (ret) {
265                                 dev_err(&pdev->dev,
266                                         "%s: failed to enable clock %d: %d\n",
267                                         __func__, i, ret);
268                                 clk_put(par->clks[i]);
269                                 par->clks[i] = NULL;
270                         }
271                 }
272         }
273         par->clks_enabled = true;
274 }
275
276 static void simplefb_clocks_destroy(struct simplefb_par *par)
277 {
278         int i;
279
280         if (!par->clks)
281                 return;
282
283         for (i = 0; i < par->clk_count; i++) {
284                 if (par->clks[i]) {
285                         if (par->clks_enabled)
286                                 clk_disable_unprepare(par->clks[i]);
287                         clk_put(par->clks[i]);
288                 }
289         }
290
291         kfree(par->clks);
292 }
293 #else
294 static int simplefb_clocks_get(struct simplefb_par *par,
295         struct platform_device *pdev) { return 0; }
296 static void simplefb_clocks_enable(struct simplefb_par *par,
297         struct platform_device *pdev) { }
298 static void simplefb_clocks_destroy(struct simplefb_par *par) { }
299 #endif
300
301 #if defined CONFIG_OF && defined CONFIG_REGULATOR
302
303 #define SUPPLY_SUFFIX "-supply"
304
305 /*
306  * Regulator handling code.
307  *
308  * Here we handle the num-supplies and vin*-supply properties of our
309  * "simple-framebuffer" dt node. This is necessary so that we can make sure
310  * that any regulators needed by the display hardware that the bootloader
311  * set up for us (and for which it provided a simplefb dt node), stay up,
312  * for the life of the simplefb driver.
313  *
314  * When the driver unloads, we cleanly disable, and then release the
315  * regulators.
316  *
317  * We only complain about errors here, no action is taken as the most likely
318  * error can only happen due to a mismatch between the bootloader which set
319  * up simplefb, and the regulator definitions in the device tree. Chances are
320  * that there are no adverse effects, and if there are, a clean teardown of
321  * the fb probe will not help us much either. So just complain and carry on,
322  * and hope that the user actually gets a working fb at the end of things.
323  */
324 static int simplefb_regulators_get(struct simplefb_par *par,
325                                    struct platform_device *pdev)
326 {
327         struct device_node *np = pdev->dev.of_node;
328         struct property *prop;
329         struct regulator *regulator;
330         const char *p;
331         int count = 0, i = 0;
332
333         if (dev_get_platdata(&pdev->dev) || !np)
334                 return 0;
335
336         /* Count the number of regulator supplies */
337         for_each_property_of_node(np, prop) {
338                 p = strstr(prop->name, SUPPLY_SUFFIX);
339                 if (p && p != prop->name)
340                         count++;
341         }
342
343         if (!count)
344                 return 0;
345
346         par->regulators = devm_kcalloc(&pdev->dev, count,
347                                        sizeof(struct regulator *), GFP_KERNEL);
348         if (!par->regulators)
349                 return -ENOMEM;
350
351         /* Get all the regulators */
352         for_each_property_of_node(np, prop) {
353                 char name[32]; /* 32 is max size of property name */
354
355                 p = strstr(prop->name, SUPPLY_SUFFIX);
356                 if (!p || p == prop->name)
357                         continue;
358
359                 strlcpy(name, prop->name,
360                         strlen(prop->name) - strlen(SUPPLY_SUFFIX) + 1);
361                 regulator = devm_regulator_get_optional(&pdev->dev, name);
362                 if (IS_ERR(regulator)) {
363                         if (PTR_ERR(regulator) == -EPROBE_DEFER)
364                                 return -EPROBE_DEFER;
365                         dev_err(&pdev->dev, "regulator %s not found: %ld\n",
366                                 name, PTR_ERR(regulator));
367                         continue;
368                 }
369                 par->regulators[i++] = regulator;
370         }
371         par->regulator_count = i;
372
373         return 0;
374 }
375
376 static void simplefb_regulators_enable(struct simplefb_par *par,
377                                        struct platform_device *pdev)
378 {
379         int i, ret;
380
381         /* Enable all the regulators */
382         for (i = 0; i < par->regulator_count; i++) {
383                 ret = regulator_enable(par->regulators[i]);
384                 if (ret) {
385                         dev_err(&pdev->dev,
386                                 "failed to enable regulator %d: %d\n",
387                                 i, ret);
388                         devm_regulator_put(par->regulators[i]);
389                         par->regulators[i] = NULL;
390                 }
391         }
392         par->regulators_enabled = true;
393 }
394
395 static void simplefb_regulators_destroy(struct simplefb_par *par)
396 {
397         int i;
398
399         if (!par->regulators || !par->regulators_enabled)
400                 return;
401
402         for (i = 0; i < par->regulator_count; i++)
403                 if (par->regulators[i])
404                         regulator_disable(par->regulators[i]);
405 }
406 #else
407 static int simplefb_regulators_get(struct simplefb_par *par,
408         struct platform_device *pdev) { return 0; }
409 static void simplefb_regulators_enable(struct simplefb_par *par,
410         struct platform_device *pdev) { }
411 static void simplefb_regulators_destroy(struct simplefb_par *par) { }
412 #endif
413
414 static int simplefb_probe(struct platform_device *pdev)
415 {
416         int ret;
417         struct simplefb_params params;
418         struct fb_info *info;
419         struct simplefb_par *par;
420         struct resource *res, *mem;
421
422         if (fb_get_options("simplefb", NULL))
423                 return -ENODEV;
424
425         ret = -ENODEV;
426         if (dev_get_platdata(&pdev->dev))
427                 ret = simplefb_parse_pd(pdev, &params);
428         else if (pdev->dev.of_node)
429                 ret = simplefb_parse_dt(pdev, &params);
430
431         if (ret)
432                 return ret;
433
434         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
435         if (!res) {
436                 dev_err(&pdev->dev, "No memory resource\n");
437                 return -EINVAL;
438         }
439
440         mem = request_mem_region(res->start, resource_size(res), "simplefb");
441         if (!mem) {
442                 /*
443                  * We cannot make this fatal. Sometimes this comes from magic
444                  * spaces our resource handlers simply don't know about. Use
445                  * the I/O-memory resource as-is and try to map that instead.
446                  */
447                 dev_warn(&pdev->dev, "simplefb: cannot reserve video memory at %pR\n", res);
448                 mem = res;
449         }
450
451         info = framebuffer_alloc(sizeof(struct simplefb_par), &pdev->dev);
452         if (!info) {
453                 ret = -ENOMEM;
454                 goto error_release_mem_region;
455         }
456         platform_set_drvdata(pdev, info);
457
458         par = info->par;
459
460         info->fix = simplefb_fix;
461         info->fix.smem_start = mem->start;
462         info->fix.smem_len = resource_size(mem);
463         info->fix.line_length = params.stride;
464
465         info->var = simplefb_var;
466         info->var.xres = params.width;
467         info->var.yres = params.height;
468         info->var.xres_virtual = params.width;
469         info->var.yres_virtual = params.height;
470         info->var.bits_per_pixel = params.format->bits_per_pixel;
471         info->var.red = params.format->red;
472         info->var.green = params.format->green;
473         info->var.blue = params.format->blue;
474         info->var.transp = params.format->transp;
475
476         info->apertures = alloc_apertures(1);
477         if (!info->apertures) {
478                 ret = -ENOMEM;
479                 goto error_fb_release;
480         }
481         info->apertures->ranges[0].base = info->fix.smem_start;
482         info->apertures->ranges[0].size = info->fix.smem_len;
483
484         info->fbops = &simplefb_ops;
485         info->flags = FBINFO_DEFAULT | FBINFO_MISC_FIRMWARE;
486         info->screen_base = ioremap_wc(info->fix.smem_start,
487                                        info->fix.smem_len);
488         if (!info->screen_base) {
489                 ret = -ENOMEM;
490                 goto error_fb_release;
491         }
492         info->pseudo_palette = par->palette;
493
494         ret = simplefb_clocks_get(par, pdev);
495         if (ret < 0)
496                 goto error_unmap;
497
498         ret = simplefb_regulators_get(par, pdev);
499         if (ret < 0)
500                 goto error_clocks;
501
502         simplefb_clocks_enable(par, pdev);
503         simplefb_regulators_enable(par, pdev);
504
505         dev_info(&pdev->dev, "framebuffer at 0x%lx, 0x%x bytes\n",
506                              info->fix.smem_start, info->fix.smem_len);
507         dev_info(&pdev->dev, "format=%s, mode=%dx%dx%d, linelength=%d\n",
508                              params.format->name,
509                              info->var.xres, info->var.yres,
510                              info->var.bits_per_pixel, info->fix.line_length);
511
512         if (mem != res)
513                 par->mem = mem; /* release in clean-up handler */
514
515         ret = register_framebuffer(info);
516         if (ret < 0) {
517                 dev_err(&pdev->dev, "Unable to register simplefb: %d\n", ret);
518                 goto error_regulators;
519         }
520
521         dev_info(&pdev->dev, "fb%d: simplefb registered!\n", info->node);
522
523         return 0;
524
525 error_regulators:
526         simplefb_regulators_destroy(par);
527 error_clocks:
528         simplefb_clocks_destroy(par);
529 error_unmap:
530         iounmap(info->screen_base);
531 error_fb_release:
532         framebuffer_release(info);
533 error_release_mem_region:
534         if (mem != res)
535                 release_mem_region(mem->start, resource_size(mem));
536         return ret;
537 }
538
539 static int simplefb_remove(struct platform_device *pdev)
540 {
541         struct fb_info *info = platform_get_drvdata(pdev);
542
543         /* simplefb_destroy takes care of info cleanup */
544         unregister_framebuffer(info);
545
546         return 0;
547 }
548
549 static const struct of_device_id simplefb_of_match[] = {
550         { .compatible = "simple-framebuffer", },
551         { },
552 };
553 MODULE_DEVICE_TABLE(of, simplefb_of_match);
554
555 static struct platform_driver simplefb_driver = {
556         .driver = {
557                 .name = "simple-framebuffer",
558                 .of_match_table = simplefb_of_match,
559         },
560         .probe = simplefb_probe,
561         .remove = simplefb_remove,
562 };
563
564 module_platform_driver(simplefb_driver);
565
566 MODULE_AUTHOR("Stephen Warren <swarren@wwwdotorg.org>");
567 MODULE_DESCRIPTION("Simple framebuffer driver");
568 MODULE_LICENSE("GPL v2");