blob: a3c44ecf4523e8edb6d64c45a89f574924453d7f [file] [log] [blame]
Stephen Warren26549c82013-05-24 15:55:13 -07001/*
2 * Simplest possible simple frame-buffer driver, as a platform device
3 *
4 * Copyright (c) 2013, Stephen Warren
5 *
6 * Based on q40fb.c, which was:
7 * Copyright (C) 2001 Richard Zidlicky <rz@linux-m68k.org>
8 *
9 * Also based on offb.c, which was:
10 * Copyright (C) 1997 Geert Uytterhoeven
11 * Copyright (C) 1996 Paul Mackerras
12 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms and conditions of the GNU General Public License,
15 * version 2, as published by the Free Software Foundation.
16 *
17 * This program is distributed in the hope it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
20 * more details.
21 */
22
23#include <linux/errno.h>
24#include <linux/fb.h>
25#include <linux/io.h>
26#include <linux/module.h>
David Herrmann5ef76da2013-08-02 14:05:20 +020027#include <linux/platform_data/simplefb.h>
Stephen Warren26549c82013-05-24 15:55:13 -070028#include <linux/platform_device.h>
Stephen Boydd49c6992015-06-19 15:00:46 -070029#include <linux/clk.h>
Luc Verhaegenfc219bf2014-11-14 13:26:50 +010030#include <linux/clk-provider.h>
Chen-Yu Tsai814740e2015-11-17 12:31:03 +080031#include <linux/of.h>
Hans de Goede89c95002014-11-14 13:26:53 +010032#include <linux/of_platform.h>
Chen-Yu Tsai814740e2015-11-17 12:31:03 +080033#include <linux/parser.h>
34#include <linux/regulator/consumer.h>
Stephen Warren26549c82013-05-24 15:55:13 -070035
Julia Lawallca9384c2016-09-11 17:17:20 +020036static const struct fb_fix_screeninfo simplefb_fix = {
Stephen Warren26549c82013-05-24 15:55:13 -070037 .id = "simple",
38 .type = FB_TYPE_PACKED_PIXELS,
39 .visual = FB_VISUAL_TRUECOLOR,
40 .accel = FB_ACCEL_NONE,
41};
42
Julia Lawallca9384c2016-09-11 17:17:20 +020043static const struct fb_var_screeninfo simplefb_var = {
Stephen Warren26549c82013-05-24 15:55:13 -070044 .height = -1,
45 .width = -1,
46 .activate = FB_ACTIVATE_NOW,
47 .vmode = FB_VMODE_NONINTERLACED,
48};
49
Luc Verhaegen1270be42014-11-14 13:26:48 +010050#define PSEUDO_PALETTE_SIZE 16
51
Stephen Warren26549c82013-05-24 15:55:13 -070052static int simplefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
53 u_int transp, struct fb_info *info)
54{
55 u32 *pal = info->pseudo_palette;
56 u32 cr = red >> (16 - info->var.red.length);
57 u32 cg = green >> (16 - info->var.green.length);
58 u32 cb = blue >> (16 - info->var.blue.length);
59 u32 value;
60
Luc Verhaegen1270be42014-11-14 13:26:48 +010061 if (regno >= PSEUDO_PALETTE_SIZE)
Stephen Warren26549c82013-05-24 15:55:13 -070062 return -EINVAL;
63
64 value = (cr << info->var.red.offset) |
65 (cg << info->var.green.offset) |
66 (cb << info->var.blue.offset);
67 if (info->var.transp.length > 0) {
68 u32 mask = (1 << info->var.transp.length) - 1;
69 mask <<= info->var.transp.offset;
70 value |= mask;
71 }
72 pal[regno] = value;
73
74 return 0;
75}
76
Chen-Yu Tsai7c9806e2016-09-07 17:09:19 +080077struct simplefb_par;
78static void simplefb_clocks_destroy(struct simplefb_par *par);
79static void simplefb_regulators_destroy(struct simplefb_par *par);
80
David Herrmann498f6d32013-10-02 16:58:38 +020081static void simplefb_destroy(struct fb_info *info)
82{
Chen-Yu Tsai7c9806e2016-09-07 17:09:19 +080083 simplefb_regulators_destroy(info->par);
84 simplefb_clocks_destroy(info->par);
David Herrmann498f6d32013-10-02 16:58:38 +020085 if (info->screen_base)
86 iounmap(info->screen_base);
87}
88
Stephen Warren26549c82013-05-24 15:55:13 -070089static struct fb_ops simplefb_ops = {
90 .owner = THIS_MODULE,
David Herrmann498f6d32013-10-02 16:58:38 +020091 .fb_destroy = simplefb_destroy,
Stephen Warren26549c82013-05-24 15:55:13 -070092 .fb_setcolreg = simplefb_setcolreg,
93 .fb_fillrect = cfb_fillrect,
94 .fb_copyarea = cfb_copyarea,
95 .fb_imageblit = cfb_imageblit,
96};
97
David Herrmann5ef76da2013-08-02 14:05:20 +020098static struct simplefb_format simplefb_formats[] = SIMPLEFB_FORMATS;
Stephen Warren26549c82013-05-24 15:55:13 -070099
100struct simplefb_params {
101 u32 width;
102 u32 height;
103 u32 stride;
104 struct simplefb_format *format;
105};
106
107static int simplefb_parse_dt(struct platform_device *pdev,
108 struct simplefb_params *params)
109{
110 struct device_node *np = pdev->dev.of_node;
111 int ret;
112 const char *format;
113 int i;
114
115 ret = of_property_read_u32(np, "width", &params->width);
116 if (ret) {
117 dev_err(&pdev->dev, "Can't parse width property\n");
118 return ret;
119 }
120
121 ret = of_property_read_u32(np, "height", &params->height);
122 if (ret) {
123 dev_err(&pdev->dev, "Can't parse height property\n");
124 return ret;
125 }
126
127 ret = of_property_read_u32(np, "stride", &params->stride);
128 if (ret) {
129 dev_err(&pdev->dev, "Can't parse stride property\n");
130 return ret;
131 }
132
133 ret = of_property_read_string(np, "format", &format);
134 if (ret) {
135 dev_err(&pdev->dev, "Can't parse format property\n");
136 return ret;
137 }
138 params->format = NULL;
139 for (i = 0; i < ARRAY_SIZE(simplefb_formats); i++) {
140 if (strcmp(format, simplefb_formats[i].name))
141 continue;
142 params->format = &simplefb_formats[i];
143 break;
144 }
145 if (!params->format) {
146 dev_err(&pdev->dev, "Invalid format value\n");
147 return -EINVAL;
148 }
149
150 return 0;
151}
152
David Herrmann5ef76da2013-08-02 14:05:20 +0200153static int simplefb_parse_pd(struct platform_device *pdev,
154 struct simplefb_params *params)
155{
Jingoo Han129f1be2013-09-17 14:11:04 +0900156 struct simplefb_platform_data *pd = dev_get_platdata(&pdev->dev);
David Herrmann5ef76da2013-08-02 14:05:20 +0200157 int i;
158
159 params->width = pd->width;
160 params->height = pd->height;
161 params->stride = pd->stride;
162
163 params->format = NULL;
164 for (i = 0; i < ARRAY_SIZE(simplefb_formats); i++) {
165 if (strcmp(pd->format, simplefb_formats[i].name))
166 continue;
167
168 params->format = &simplefb_formats[i];
169 break;
170 }
171
172 if (!params->format) {
173 dev_err(&pdev->dev, "Invalid format value\n");
174 return -EINVAL;
175 }
176
177 return 0;
178}
179
Luc Verhaegen1270be42014-11-14 13:26:48 +0100180struct simplefb_par {
181 u32 palette[PSEUDO_PALETTE_SIZE];
Hans de Goede82847312014-11-25 12:13:30 +0100182#if defined CONFIG_OF && defined CONFIG_COMMON_CLK
Hans de Goedea3accfd2017-01-11 17:09:50 +0100183 bool clks_enabled;
Stephen Boyd2cd82d02016-02-22 11:14:25 -0800184 unsigned int clk_count;
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100185 struct clk **clks;
186#endif
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800187#if defined CONFIG_OF && defined CONFIG_REGULATOR
Hans de Goedea3accfd2017-01-11 17:09:50 +0100188 bool regulators_enabled;
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800189 u32 regulator_count;
190 struct regulator **regulators;
191#endif
Luc Verhaegen1270be42014-11-14 13:26:48 +0100192};
193
Hans de Goede82847312014-11-25 12:13:30 +0100194#if defined CONFIG_OF && defined CONFIG_COMMON_CLK
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100195/*
196 * Clock handling code.
197 *
198 * Here we handle the clocks property of our "simple-framebuffer" dt node.
199 * This is necessary so that we can make sure that any clocks needed by
200 * the display engine that the bootloader set up for us (and for which it
201 * provided a simplefb dt node), stay up, for the life of the simplefb
202 * driver.
203 *
204 * When the driver unloads, we cleanly disable, and then release the clocks.
205 *
206 * We only complain about errors here, no action is taken as the most likely
207 * error can only happen due to a mismatch between the bootloader which set
208 * up simplefb, and the clock definitions in the device tree. Chances are
209 * that there are no adverse effects, and if there are, a clean teardown of
210 * the fb probe will not help us much either. So just complain and carry on,
211 * and hope that the user actually gets a working fb at the end of things.
212 */
Hans de Goedea3accfd2017-01-11 17:09:50 +0100213static int simplefb_clocks_get(struct simplefb_par *par,
214 struct platform_device *pdev)
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100215{
216 struct device_node *np = pdev->dev.of_node;
217 struct clk *clock;
Hans de Goedea3accfd2017-01-11 17:09:50 +0100218 int i;
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100219
220 if (dev_get_platdata(&pdev->dev) || !np)
221 return 0;
222
223 par->clk_count = of_clk_get_parent_count(np);
Stephen Boyd2cd82d02016-02-22 11:14:25 -0800224 if (!par->clk_count)
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100225 return 0;
226
227 par->clks = kcalloc(par->clk_count, sizeof(struct clk *), GFP_KERNEL);
228 if (!par->clks)
229 return -ENOMEM;
230
231 for (i = 0; i < par->clk_count; i++) {
232 clock = of_clk_get(np, i);
233 if (IS_ERR(clock)) {
234 if (PTR_ERR(clock) == -EPROBE_DEFER) {
235 while (--i >= 0) {
236 if (par->clks[i])
237 clk_put(par->clks[i]);
238 }
239 kfree(par->clks);
240 return -EPROBE_DEFER;
241 }
242 dev_err(&pdev->dev, "%s: clock %d not found: %ld\n",
243 __func__, i, PTR_ERR(clock));
244 continue;
245 }
246 par->clks[i] = clock;
247 }
248
Hans de Goedea3accfd2017-01-11 17:09:50 +0100249 return 0;
250}
251
252static void simplefb_clocks_enable(struct simplefb_par *par,
253 struct platform_device *pdev)
254{
255 int i, ret;
256
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100257 for (i = 0; i < par->clk_count; i++) {
258 if (par->clks[i]) {
259 ret = clk_prepare_enable(par->clks[i]);
260 if (ret) {
261 dev_err(&pdev->dev,
262 "%s: failed to enable clock %d: %d\n",
263 __func__, i, ret);
264 clk_put(par->clks[i]);
265 par->clks[i] = NULL;
266 }
267 }
268 }
Hans de Goedea3accfd2017-01-11 17:09:50 +0100269 par->clks_enabled = true;
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100270}
271
272static void simplefb_clocks_destroy(struct simplefb_par *par)
273{
274 int i;
275
276 if (!par->clks)
277 return;
278
279 for (i = 0; i < par->clk_count; i++) {
280 if (par->clks[i]) {
Hans de Goedea3accfd2017-01-11 17:09:50 +0100281 if (par->clks_enabled)
282 clk_disable_unprepare(par->clks[i]);
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100283 clk_put(par->clks[i]);
284 }
285 }
286
287 kfree(par->clks);
288}
289#else
Hans de Goedea3accfd2017-01-11 17:09:50 +0100290static int simplefb_clocks_get(struct simplefb_par *par,
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100291 struct platform_device *pdev) { return 0; }
Hans de Goedea3accfd2017-01-11 17:09:50 +0100292static void simplefb_clocks_enable(struct simplefb_par *par,
293 struct platform_device *pdev) { }
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100294static void simplefb_clocks_destroy(struct simplefb_par *par) { }
295#endif
296
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800297#if defined CONFIG_OF && defined CONFIG_REGULATOR
298
299#define SUPPLY_SUFFIX "-supply"
300
301/*
302 * Regulator handling code.
303 *
304 * Here we handle the num-supplies and vin*-supply properties of our
305 * "simple-framebuffer" dt node. This is necessary so that we can make sure
306 * that any regulators needed by the display hardware that the bootloader
307 * set up for us (and for which it provided a simplefb dt node), stay up,
308 * for the life of the simplefb driver.
309 *
310 * When the driver unloads, we cleanly disable, and then release the
311 * regulators.
312 *
313 * We only complain about errors here, no action is taken as the most likely
314 * error can only happen due to a mismatch between the bootloader which set
315 * up simplefb, and the regulator definitions in the device tree. Chances are
316 * that there are no adverse effects, and if there are, a clean teardown of
317 * the fb probe will not help us much either. So just complain and carry on,
318 * and hope that the user actually gets a working fb at the end of things.
319 */
Hans de Goedea3accfd2017-01-11 17:09:50 +0100320static int simplefb_regulators_get(struct simplefb_par *par,
321 struct platform_device *pdev)
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800322{
323 struct device_node *np = pdev->dev.of_node;
324 struct property *prop;
325 struct regulator *regulator;
326 const char *p;
Hans de Goedea3accfd2017-01-11 17:09:50 +0100327 int count = 0, i = 0;
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800328
329 if (dev_get_platdata(&pdev->dev) || !np)
330 return 0;
331
332 /* Count the number of regulator supplies */
333 for_each_property_of_node(np, prop) {
334 p = strstr(prop->name, SUPPLY_SUFFIX);
335 if (p && p != prop->name)
336 count++;
337 }
338
339 if (!count)
340 return 0;
341
342 par->regulators = devm_kcalloc(&pdev->dev, count,
343 sizeof(struct regulator *), GFP_KERNEL);
344 if (!par->regulators)
345 return -ENOMEM;
346
347 /* Get all the regulators */
348 for_each_property_of_node(np, prop) {
349 char name[32]; /* 32 is max size of property name */
350
351 p = strstr(prop->name, SUPPLY_SUFFIX);
352 if (!p || p == prop->name)
353 continue;
354
355 strlcpy(name, prop->name,
356 strlen(prop->name) - strlen(SUPPLY_SUFFIX) + 1);
357 regulator = devm_regulator_get_optional(&pdev->dev, name);
358 if (IS_ERR(regulator)) {
359 if (PTR_ERR(regulator) == -EPROBE_DEFER)
360 return -EPROBE_DEFER;
361 dev_err(&pdev->dev, "regulator %s not found: %ld\n",
362 name, PTR_ERR(regulator));
363 continue;
364 }
365 par->regulators[i++] = regulator;
366 }
367 par->regulator_count = i;
368
Hans de Goedea3accfd2017-01-11 17:09:50 +0100369 return 0;
370}
371
372static void simplefb_regulators_enable(struct simplefb_par *par,
373 struct platform_device *pdev)
374{
375 int i, ret;
376
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800377 /* Enable all the regulators */
378 for (i = 0; i < par->regulator_count; i++) {
379 ret = regulator_enable(par->regulators[i]);
380 if (ret) {
381 dev_err(&pdev->dev,
382 "failed to enable regulator %d: %d\n",
383 i, ret);
384 devm_regulator_put(par->regulators[i]);
385 par->regulators[i] = NULL;
386 }
387 }
Hans de Goedea3accfd2017-01-11 17:09:50 +0100388 par->regulators_enabled = true;
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800389}
390
391static void simplefb_regulators_destroy(struct simplefb_par *par)
392{
393 int i;
394
Hans de Goedea3accfd2017-01-11 17:09:50 +0100395 if (!par->regulators || !par->regulators_enabled)
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800396 return;
397
398 for (i = 0; i < par->regulator_count; i++)
399 if (par->regulators[i])
400 regulator_disable(par->regulators[i]);
401}
402#else
Hans de Goedea3accfd2017-01-11 17:09:50 +0100403static int simplefb_regulators_get(struct simplefb_par *par,
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800404 struct platform_device *pdev) { return 0; }
Hans de Goedea3accfd2017-01-11 17:09:50 +0100405static void simplefb_regulators_enable(struct simplefb_par *par,
406 struct platform_device *pdev) { }
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800407static void simplefb_regulators_destroy(struct simplefb_par *par) { }
408#endif
409
Stephen Warren26549c82013-05-24 15:55:13 -0700410static int simplefb_probe(struct platform_device *pdev)
411{
412 int ret;
413 struct simplefb_params params;
414 struct fb_info *info;
Luc Verhaegen1270be42014-11-14 13:26:48 +0100415 struct simplefb_par *par;
Stephen Warren26549c82013-05-24 15:55:13 -0700416 struct resource *mem;
417
418 if (fb_get_options("simplefb", NULL))
419 return -ENODEV;
420
David Herrmann5ef76da2013-08-02 14:05:20 +0200421 ret = -ENODEV;
Jingoo Han129f1be2013-09-17 14:11:04 +0900422 if (dev_get_platdata(&pdev->dev))
David Herrmann5ef76da2013-08-02 14:05:20 +0200423 ret = simplefb_parse_pd(pdev, &params);
424 else if (pdev->dev.of_node)
425 ret = simplefb_parse_dt(pdev, &params);
426
Stephen Warren26549c82013-05-24 15:55:13 -0700427 if (ret)
428 return ret;
429
430 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
431 if (!mem) {
432 dev_err(&pdev->dev, "No memory resource\n");
433 return -EINVAL;
434 }
435
Luc Verhaegen1270be42014-11-14 13:26:48 +0100436 info = framebuffer_alloc(sizeof(struct simplefb_par), &pdev->dev);
Stephen Warren26549c82013-05-24 15:55:13 -0700437 if (!info)
438 return -ENOMEM;
439 platform_set_drvdata(pdev, info);
440
Luc Verhaegen1270be42014-11-14 13:26:48 +0100441 par = info->par;
442
Stephen Warren26549c82013-05-24 15:55:13 -0700443 info->fix = simplefb_fix;
444 info->fix.smem_start = mem->start;
445 info->fix.smem_len = resource_size(mem);
446 info->fix.line_length = params.stride;
447
448 info->var = simplefb_var;
449 info->var.xres = params.width;
450 info->var.yres = params.height;
451 info->var.xres_virtual = params.width;
452 info->var.yres_virtual = params.height;
453 info->var.bits_per_pixel = params.format->bits_per_pixel;
454 info->var.red = params.format->red;
455 info->var.green = params.format->green;
456 info->var.blue = params.format->blue;
457 info->var.transp = params.format->transp;
458
David Herrmanndf0960a2013-08-02 14:05:21 +0200459 info->apertures = alloc_apertures(1);
460 if (!info->apertures) {
Luc Verhaegenbf2fda12014-11-14 13:26:49 +0100461 ret = -ENOMEM;
462 goto error_fb_release;
David Herrmanndf0960a2013-08-02 14:05:21 +0200463 }
464 info->apertures->ranges[0].base = info->fix.smem_start;
465 info->apertures->ranges[0].size = info->fix.smem_len;
466
Stephen Warren26549c82013-05-24 15:55:13 -0700467 info->fbops = &simplefb_ops;
David Herrmanndf0960a2013-08-02 14:05:21 +0200468 info->flags = FBINFO_DEFAULT | FBINFO_MISC_FIRMWARE;
David Herrmann9e210be2013-10-02 16:58:39 +0200469 info->screen_base = ioremap_wc(info->fix.smem_start,
470 info->fix.smem_len);
Stephen Warren26549c82013-05-24 15:55:13 -0700471 if (!info->screen_base) {
Luc Verhaegenbf2fda12014-11-14 13:26:49 +0100472 ret = -ENOMEM;
473 goto error_fb_release;
Stephen Warren26549c82013-05-24 15:55:13 -0700474 }
Luc Verhaegen1270be42014-11-14 13:26:48 +0100475 info->pseudo_palette = par->palette;
Stephen Warren26549c82013-05-24 15:55:13 -0700476
Hans de Goedea3accfd2017-01-11 17:09:50 +0100477 ret = simplefb_clocks_get(par, pdev);
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100478 if (ret < 0)
479 goto error_unmap;
480
Hans de Goedea3accfd2017-01-11 17:09:50 +0100481 ret = simplefb_regulators_get(par, pdev);
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800482 if (ret < 0)
483 goto error_clocks;
484
Hans de Goedea3accfd2017-01-11 17:09:50 +0100485 simplefb_clocks_enable(par, pdev);
486 simplefb_regulators_enable(par, pdev);
487
Tom Gundersen9f192a92013-09-07 16:08:35 +0200488 dev_info(&pdev->dev, "framebuffer at 0x%lx, 0x%x bytes, mapped to 0x%p\n",
489 info->fix.smem_start, info->fix.smem_len,
490 info->screen_base);
491 dev_info(&pdev->dev, "format=%s, mode=%dx%dx%d, linelength=%d\n",
492 params.format->name,
493 info->var.xres, info->var.yres,
494 info->var.bits_per_pixel, info->fix.line_length);
495
Stephen Warren26549c82013-05-24 15:55:13 -0700496 ret = register_framebuffer(info);
497 if (ret < 0) {
498 dev_err(&pdev->dev, "Unable to register simplefb: %d\n", ret);
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800499 goto error_regulators;
Stephen Warren26549c82013-05-24 15:55:13 -0700500 }
501
502 dev_info(&pdev->dev, "fb%d: simplefb registered!\n", info->node);
503
504 return 0;
Luc Verhaegenbf2fda12014-11-14 13:26:49 +0100505
Chen-Yu Tsai814740e2015-11-17 12:31:03 +0800506error_regulators:
507 simplefb_regulators_destroy(par);
Luc Verhaegenfc219bf2014-11-14 13:26:50 +0100508error_clocks:
509 simplefb_clocks_destroy(par);
Luc Verhaegenbf2fda12014-11-14 13:26:49 +0100510error_unmap:
511 iounmap(info->screen_base);
512error_fb_release:
513 framebuffer_release(info);
514 return ret;
Stephen Warren26549c82013-05-24 15:55:13 -0700515}
516
517static int simplefb_remove(struct platform_device *pdev)
518{
519 struct fb_info *info = platform_get_drvdata(pdev);
520
521 unregister_framebuffer(info);
Stephen Warren26549c82013-05-24 15:55:13 -0700522 framebuffer_release(info);
523
524 return 0;
525}
526
527static const struct of_device_id simplefb_of_match[] = {
528 { .compatible = "simple-framebuffer", },
529 { },
530};
531MODULE_DEVICE_TABLE(of, simplefb_of_match);
532
533static struct platform_driver simplefb_driver = {
534 .driver = {
535 .name = "simple-framebuffer",
Stephen Warren26549c82013-05-24 15:55:13 -0700536 .of_match_table = simplefb_of_match,
537 },
538 .probe = simplefb_probe,
539 .remove = simplefb_remove,
540};
Hans de Goede89c95002014-11-14 13:26:53 +0100541
542static int __init simplefb_init(void)
543{
544 int ret;
545 struct device_node *np;
546
547 ret = platform_driver_register(&simplefb_driver);
548 if (ret)
549 return ret;
550
Hans de Goeded9e02012015-01-05 09:15:16 +0100551 if (IS_ENABLED(CONFIG_OF_ADDRESS) && of_chosen) {
Hans de Goede89c95002014-11-14 13:26:53 +0100552 for_each_child_of_node(of_chosen, np) {
553 if (of_device_is_compatible(np, "simple-framebuffer"))
554 of_platform_device_create(np, NULL, NULL);
555 }
556 }
557
558 return 0;
559}
560
Hans de Goede0c5b2402014-11-14 13:26:55 +0100561fs_initcall(simplefb_init);
Stephen Warren26549c82013-05-24 15:55:13 -0700562
563MODULE_AUTHOR("Stephen Warren <swarren@wwwdotorg.org>");
564MODULE_DESCRIPTION("Simple framebuffer driver");
565MODULE_LICENSE("GPL v2");