blob: 9a40bbecf76b1293fe15df72c37bd9df9303a169 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/video/offb.c -- Open Firmware based frame buffer device
3 *
4 * Copyright (C) 1997 Geert Uytterhoeven
5 *
6 * This driver is partly based on the PowerMac console driver:
7 *
8 * Copyright (C) 1996 Paul Mackerras
9 *
10 * This file is subject to the terms and conditions of the GNU General Public
11 * License. See the file COPYING in the main directory of this archive for
12 * more details.
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/kernel.h>
17#include <linux/errno.h>
18#include <linux/string.h>
19#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
21#include <linux/vmalloc.h>
22#include <linux/delay.h>
23#include <linux/interrupt.h>
24#include <linux/fb.h>
25#include <linux/init.h>
26#include <linux/ioport.h>
Paul Mackerrasf365cfd2005-11-18 16:41:49 +110027#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/io.h>
29#include <asm/prom.h>
30
31#ifdef CONFIG_PPC64
32#include <asm/pci-bridge.h>
33#endif
34
35#ifdef CONFIG_PPC32
36#include <asm/bootx.h>
37#endif
38
39#include "macmodes.h"
40
41/* Supported palette hacks */
42enum {
43 cmap_unknown,
44 cmap_m64, /* ATI Mach64 */
45 cmap_r128, /* ATI Rage128 */
46 cmap_M3A, /* ATI Rage Mobility M3 Head A */
47 cmap_M3B, /* ATI Rage Mobility M3 Head B */
48 cmap_radeon, /* ATI Radeon */
49 cmap_gxt2000, /* IBM GXT2000 */
50};
51
52struct offb_par {
53 volatile void __iomem *cmap_adr;
54 volatile void __iomem *cmap_data;
55 int cmap_type;
56 int blanked;
57};
58
59struct offb_par default_par;
60
61 /*
62 * Interface used by the world
63 */
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static int offb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
66 u_int transp, struct fb_info *info);
67static int offb_blank(int blank, struct fb_info *info);
68
69#ifdef CONFIG_PPC32
70extern boot_infos_t *boot_infos;
71#endif
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static struct fb_ops offb_ops = {
74 .owner = THIS_MODULE,
75 .fb_setcolreg = offb_setcolreg,
76 .fb_blank = offb_blank,
77 .fb_fillrect = cfb_fillrect,
78 .fb_copyarea = cfb_copyarea,
79 .fb_imageblit = cfb_imageblit,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
82 /*
83 * Set a single color register. The values supplied are already
84 * rounded down to the hardware's capabilities (according to the
85 * entries in the var structure). Return != 0 for invalid regno.
86 */
87
88static int offb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
89 u_int transp, struct fb_info *info)
90{
91 struct offb_par *par = (struct offb_par *) info->par;
Benjamin Herrenschmidtab134462006-07-03 17:19:48 +100092 int i, depth;
93 u32 *pal = info->pseudo_palette;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Benjamin Herrenschmidtab134462006-07-03 17:19:48 +100095 depth = info->var.bits_per_pixel;
96 if (depth == 16)
97 depth = (info->var.green.length == 5) ? 15 : 16;
98
99 if (regno > 255 ||
100 (depth == 16 && regno > 63) ||
101 (depth == 15 && regno > 31))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return 1;
103
Benjamin Herrenschmidtab134462006-07-03 17:19:48 +1000104 if (regno < 16) {
105 switch (depth) {
106 case 15:
107 pal[regno] = (regno << 10) | (regno << 5) | regno;
108 break;
109 case 16:
110 pal[regno] = (regno << 11) | (regno << 5) | regno;
111 break;
112 case 24:
113 pal[regno] = (regno << 16) | (regno << 8) | regno;
114 break;
115 case 32:
116 i = (regno << 8) | regno;
117 pal[regno] = (i << 16) | i;
118 break;
119 }
120 }
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 red >>= 8;
123 green >>= 8;
124 blue >>= 8;
125
Benjamin Herrenschmidtab134462006-07-03 17:19:48 +1000126 if (!par->cmap_adr)
127 return 0;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 switch (par->cmap_type) {
130 case cmap_m64:
131 writeb(regno, par->cmap_adr);
132 writeb(red, par->cmap_data);
133 writeb(green, par->cmap_data);
134 writeb(blue, par->cmap_data);
135 break;
136 case cmap_M3A:
137 /* Clear PALETTE_ACCESS_CNTL in DAC_CNTL */
138 out_le32(par->cmap_adr + 0x58,
139 in_le32(par->cmap_adr + 0x58) & ~0x20);
140 case cmap_r128:
141 /* Set palette index & data */
142 out_8(par->cmap_adr + 0xb0, regno);
143 out_le32(par->cmap_adr + 0xb4,
144 (red << 16 | green << 8 | blue));
145 break;
146 case cmap_M3B:
147 /* Set PALETTE_ACCESS_CNTL in DAC_CNTL */
148 out_le32(par->cmap_adr + 0x58,
149 in_le32(par->cmap_adr + 0x58) | 0x20);
150 /* Set palette index & data */
151 out_8(par->cmap_adr + 0xb0, regno);
152 out_le32(par->cmap_adr + 0xb4, (red << 16 | green << 8 | blue));
153 break;
154 case cmap_radeon:
155 /* Set palette index & data (could be smarter) */
156 out_8(par->cmap_adr + 0xb0, regno);
157 out_le32(par->cmap_adr + 0xb4, (red << 16 | green << 8 | blue));
158 break;
159 case cmap_gxt2000:
Benjamin Herrenschmidt441cbd82006-10-26 15:38:10 +1000160 out_le32(((unsigned __iomem *) par->cmap_adr) + regno,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 (red << 16 | green << 8 | blue));
162 break;
163 }
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return 0;
166}
167
168 /*
169 * Blank the display.
170 */
171
172static int offb_blank(int blank, struct fb_info *info)
173{
174 struct offb_par *par = (struct offb_par *) info->par;
175 int i, j;
176
177 if (!par->cmap_adr)
178 return 0;
179
180 if (!par->blanked)
181 if (!blank)
182 return 0;
183
184 par->blanked = blank;
185
186 if (blank)
187 for (i = 0; i < 256; i++) {
188 switch (par->cmap_type) {
189 case cmap_m64:
190 writeb(i, par->cmap_adr);
191 for (j = 0; j < 3; j++)
192 writeb(0, par->cmap_data);
193 break;
194 case cmap_M3A:
195 /* Clear PALETTE_ACCESS_CNTL in DAC_CNTL */
196 out_le32(par->cmap_adr + 0x58,
197 in_le32(par->cmap_adr + 0x58) & ~0x20);
198 case cmap_r128:
199 /* Set palette index & data */
200 out_8(par->cmap_adr + 0xb0, i);
201 out_le32(par->cmap_adr + 0xb4, 0);
202 break;
203 case cmap_M3B:
204 /* Set PALETTE_ACCESS_CNTL in DAC_CNTL */
205 out_le32(par->cmap_adr + 0x58,
206 in_le32(par->cmap_adr + 0x58) | 0x20);
207 /* Set palette index & data */
208 out_8(par->cmap_adr + 0xb0, i);
209 out_le32(par->cmap_adr + 0xb4, 0);
210 break;
211 case cmap_radeon:
212 out_8(par->cmap_adr + 0xb0, i);
213 out_le32(par->cmap_adr + 0xb4, 0);
214 break;
215 case cmap_gxt2000:
Benjamin Herrenschmidt441cbd82006-10-26 15:38:10 +1000216 out_le32(((unsigned __iomem *) par->cmap_adr) + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 0);
218 break;
219 }
220 } else
221 fb_set_cmap(&info->cmap, info);
222 return 0;
223}
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000226static void __iomem *offb_map_reg(struct device_node *np, int index,
227 unsigned long offset, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Benjamin Herrenschmidt441cbd82006-10-26 15:38:10 +1000229 const u32 *addrp;
230 u64 asize, taddr;
231 unsigned int flags;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100232
Benjamin Herrenschmidt441cbd82006-10-26 15:38:10 +1000233 addrp = of_get_pci_address(np, index, &asize, &flags);
234 if (addrp == NULL)
235 addrp = of_get_address(np, index, &asize, &flags);
236 if (addrp == NULL)
237 return NULL;
238 if ((flags & (IORESOURCE_IO | IORESOURCE_MEM)) == 0)
239 return NULL;
240 if ((offset + size) > asize)
241 return NULL;
242 taddr = of_translate_address(np, addrp);
243 if (taddr == OF_BAD_ADDR)
244 return NULL;
245 return ioremap(taddr + offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248static void __init offb_init_fb(const char *name, const char *full_name,
249 int width, int height, int depth,
250 int pitch, unsigned long address,
251 struct device_node *dp)
252{
Benjamin Herrenschmidtab134462006-07-03 17:19:48 +1000253 unsigned long res_size = pitch * height * (depth + 7) / 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 struct offb_par *par = &default_par;
255 unsigned long res_start = address;
256 struct fb_fix_screeninfo *fix;
257 struct fb_var_screeninfo *var;
258 struct fb_info *info;
259 int size;
260
261 if (!request_mem_region(res_start, res_size, "offb"))
262 return;
263
264 printk(KERN_INFO
265 "Using unsupported %dx%d %s at %lx, depth=%d, pitch=%d\n",
266 width, height, name, address, depth, pitch);
Benjamin Herrenschmidtab134462006-07-03 17:19:48 +1000267 if (depth != 8 && depth != 15 && depth != 16 && depth != 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 printk(KERN_ERR "%s: can't use depth = %d\n", full_name,
269 depth);
270 release_mem_region(res_start, res_size);
271 return;
272 }
273
274 size = sizeof(struct fb_info) + sizeof(u32) * 17;
275
276 info = kmalloc(size, GFP_ATOMIC);
277
278 if (info == 0) {
279 release_mem_region(res_start, res_size);
280 return;
281 }
282 memset(info, 0, size);
283
284 fix = &info->fix;
285 var = &info->var;
286
287 strcpy(fix->id, "OFfb ");
288 strncat(fix->id, name, sizeof(fix->id) - sizeof("OFfb "));
289 fix->id[sizeof(fix->id) - 1] = '\0';
290
291 var->xres = var->xres_virtual = width;
292 var->yres = var->yres_virtual = height;
293 fix->line_length = pitch;
294
295 fix->smem_start = address;
296 fix->smem_len = pitch * height;
297 fix->type = FB_TYPE_PACKED_PIXELS;
298 fix->type_aux = 0;
299
300 par->cmap_type = cmap_unknown;
301 if (depth == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (dp && !strncmp(name, "ATY,Rage128", 11)) {
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000303 par->cmap_adr = offb_map_reg(dp, 2, 0, 0x1fff);
304 if (par->cmap_adr)
305 par->cmap_type = cmap_r128;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 } else if (dp && (!strncmp(name, "ATY,RageM3pA", 12)
307 || !strncmp(name, "ATY,RageM3p12A", 14))) {
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000308 par->cmap_adr = offb_map_reg(dp, 2, 0, 0x1fff);
309 if (par->cmap_adr)
310 par->cmap_type = cmap_M3A;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 } else if (dp && !strncmp(name, "ATY,RageM3pB", 12)) {
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000312 par->cmap_adr = offb_map_reg(dp, 2, 0, 0x1fff);
313 if (par->cmap_adr)
314 par->cmap_type = cmap_M3B;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 } else if (dp && !strncmp(name, "ATY,Rage6", 9)) {
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000316 par->cmap_adr = offb_map_reg(dp, 1, 0, 0x1fff);
317 if (par->cmap_adr)
318 par->cmap_type = cmap_radeon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 } else if (!strncmp(name, "ATY,", 4)) {
320 unsigned long base = address & 0xff000000UL;
321 par->cmap_adr =
322 ioremap(base + 0x7ff000, 0x1000) + 0xcc0;
323 par->cmap_data = par->cmap_adr + 1;
324 par->cmap_type = cmap_m64;
Benjamin Herrenschmidt441cbd82006-10-26 15:38:10 +1000325 } else if (dp && (device_is_compatible(dp, "pci1014,b7") ||
326 device_is_compatible(dp, "pci1014,21c"))) {
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000327 par->cmap_adr = offb_map_reg(dp, 0, 0x6000, 0x1000);
328 if (par->cmap_adr)
329 par->cmap_type = cmap_gxt2000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000331 fix->visual = (par->cmap_type != cmap_unknown) ?
332 FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_STATIC_PSEUDOCOLOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 } else
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000334 fix->visual = FB_VISUAL_TRUECOLOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 var->xoffset = var->yoffset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 switch (depth) {
338 case 8:
339 var->bits_per_pixel = 8;
340 var->red.offset = 0;
341 var->red.length = 8;
342 var->green.offset = 0;
343 var->green.length = 8;
344 var->blue.offset = 0;
345 var->blue.length = 8;
346 var->transp.offset = 0;
347 var->transp.length = 0;
348 break;
Benjamin Herrenschmidtab134462006-07-03 17:19:48 +1000349 case 15: /* RGB 555 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 var->bits_per_pixel = 16;
351 var->red.offset = 10;
352 var->red.length = 5;
353 var->green.offset = 5;
354 var->green.length = 5;
355 var->blue.offset = 0;
356 var->blue.length = 5;
357 var->transp.offset = 0;
358 var->transp.length = 0;
359 break;
Benjamin Herrenschmidtab134462006-07-03 17:19:48 +1000360 case 16: /* RGB 565 */
361 var->bits_per_pixel = 16;
362 var->red.offset = 11;
363 var->red.length = 5;
364 var->green.offset = 5;
365 var->green.length = 6;
366 var->blue.offset = 0;
367 var->blue.length = 5;
368 var->transp.offset = 0;
369 var->transp.length = 0;
370 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 case 32: /* RGB 888 */
372 var->bits_per_pixel = 32;
373 var->red.offset = 16;
374 var->red.length = 8;
375 var->green.offset = 8;
376 var->green.length = 8;
377 var->blue.offset = 0;
378 var->blue.length = 8;
379 var->transp.offset = 24;
380 var->transp.length = 8;
381 break;
382 }
383 var->red.msb_right = var->green.msb_right = var->blue.msb_right =
384 var->transp.msb_right = 0;
385 var->grayscale = 0;
386 var->nonstd = 0;
387 var->activate = 0;
388 var->height = var->width = -1;
389 var->pixclock = 10000;
390 var->left_margin = var->right_margin = 16;
391 var->upper_margin = var->lower_margin = 16;
392 var->hsync_len = var->vsync_len = 8;
393 var->sync = 0;
394 var->vmode = FB_VMODE_NONINTERLACED;
395
396 info->fbops = &offb_ops;
397 info->screen_base = ioremap(address, fix->smem_len);
398 info->par = par;
399 info->pseudo_palette = (void *) (info + 1);
400 info->flags = FBINFO_DEFAULT;
401
402 fb_alloc_cmap(&info->cmap, 256, 0);
403
404 if (register_framebuffer(info) < 0) {
405 kfree(info);
406 release_mem_region(res_start, res_size);
407 return;
408 }
409
410 printk(KERN_INFO "fb%d: Open Firmware frame buffer device on %s\n",
411 info->node, full_name);
412}
413
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000414
415static void __init offb_init_nodriver(struct device_node *dp, int no_real_node)
416{
417 unsigned int len;
418 int i, width = 640, height = 480, depth = 8, pitch = 640;
419 unsigned int flags, rsize, addr_prop = 0;
420 unsigned long max_size = 0;
421 u64 rstart, address = OF_BAD_ADDR;
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000422 const u32 *pp, *addrp, *up;
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000423 u64 asize;
424
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000425 pp = get_property(dp, "linux,bootx-depth", &len);
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000426 if (pp == NULL)
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000427 pp = get_property(dp, "depth", &len);
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000428 if (pp && len == sizeof(u32))
429 depth = *pp;
430
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000431 pp = get_property(dp, "linux,bootx-width", &len);
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000432 if (pp == NULL)
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000433 pp = get_property(dp, "width", &len);
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000434 if (pp && len == sizeof(u32))
435 width = *pp;
436
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000437 pp = get_property(dp, "linux,bootx-height", &len);
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000438 if (pp == NULL)
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000439 pp = get_property(dp, "height", &len);
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000440 if (pp && len == sizeof(u32))
441 height = *pp;
442
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000443 pp = get_property(dp, "linux,bootx-linebytes", &len);
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000444 if (pp == NULL)
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000445 pp = get_property(dp, "linebytes", &len);
Benjamin Herrenschmidt441cbd82006-10-26 15:38:10 +1000446 if (pp && len == sizeof(u32) && (*pp != 0xffffffffu))
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000447 pitch = *pp;
448 else
449 pitch = width * ((depth + 7) / 8);
450
451 rsize = (unsigned long)pitch * (unsigned long)height;
452
453 /* Ok, now we try to figure out the address of the framebuffer.
454 *
455 * Unfortunately, Open Firmware doesn't provide a standard way to do
456 * so. All we can do is a dodgy heuristic that happens to work in
457 * practice. On most machines, the "address" property contains what
458 * we need, though not on Matrox cards found in IBM machines. What I've
459 * found that appears to give good results is to go through the PCI
460 * ranges and pick one that is both big enough and if possible encloses
461 * the "address" property. If none match, we pick the biggest
462 */
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000463 up = get_property(dp, "linux,bootx-addr", &len);
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000464 if (up == NULL)
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000465 up = get_property(dp, "address", &len);
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000466 if (up && len == sizeof(u32))
467 addr_prop = *up;
468
469 /* Hack for when BootX is passing us */
470 if (no_real_node)
471 goto skip_addr;
472
473 for (i = 0; (addrp = of_get_address(dp, i, &asize, &flags))
474 != NULL; i++) {
475 int match_addrp = 0;
476
477 if (!(flags & IORESOURCE_MEM))
478 continue;
479 if (asize < rsize)
480 continue;
481 rstart = of_translate_address(dp, addrp);
482 if (rstart == OF_BAD_ADDR)
483 continue;
484 if (addr_prop && (rstart <= addr_prop) &&
485 ((rstart + asize) >= (addr_prop + rsize)))
486 match_addrp = 1;
487 if (match_addrp) {
488 address = addr_prop;
489 break;
490 }
491 if (rsize > max_size) {
492 max_size = rsize;
493 address = OF_BAD_ADDR;
494 }
495
496 if (address == OF_BAD_ADDR)
497 address = rstart;
498 }
499 skip_addr:
500 if (address == OF_BAD_ADDR && addr_prop)
501 address = (u64)addr_prop;
502 if (address != OF_BAD_ADDR) {
503 /* kludge for valkyrie */
504 if (strcmp(dp->name, "valkyrie") == 0)
505 address += 0x1000;
506 offb_init_fb(no_real_node ? "bootx" : dp->name,
507 no_real_node ? "display" : dp->full_name,
508 width, height, depth, pitch, address,
Benjamin Herrenschmidt441cbd82006-10-26 15:38:10 +1000509 no_real_node ? NULL : dp);
Benjamin Herrenschmidt73ea6952006-07-04 17:07:18 +1000510 }
511}
512
513static int __init offb_init(void)
514{
515 struct device_node *dp = NULL, *boot_disp = NULL;
516
517 if (fb_get_options("offb", NULL))
518 return -ENODEV;
519
520 /* Check if we have a MacOS display without a node spec */
521 if (get_property(of_chosen, "linux,bootx-noscreen", NULL) != NULL) {
522 /* The old code tried to work out which node was the MacOS
523 * display based on the address. I'm dropping that since the
524 * lack of a node spec only happens with old BootX versions
525 * (users can update) and with this code, they'll still get
526 * a display (just not the palette hacks).
527 */
528 offb_init_nodriver(of_chosen, 1);
529 }
530
531 for (dp = NULL; (dp = of_find_node_by_type(dp, "display"));) {
532 if (get_property(dp, "linux,opened", NULL) &&
533 get_property(dp, "linux,boot-display", NULL)) {
534 boot_disp = dp;
535 offb_init_nodriver(dp, 0);
536 }
537 }
538 for (dp = NULL; (dp = of_find_node_by_type(dp, "display"));) {
539 if (get_property(dp, "linux,opened", NULL) &&
540 dp != boot_disp)
541 offb_init_nodriver(dp, 0);
542 }
543
544 return 0;
545}
546
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548module_init(offb_init);
549MODULE_LICENSE("GPL");