2 * Framebuffer driver for EFI/UEFI based system
4 * (c) 2006 Edgar Hucek <gimli@dark-green.com>
5 * Original efi driver written by Gerd Knorr <kraxel@goldbach.in-berlin.de>
9 #include <linux/module.h>
10 #include <linux/kernel.h>
11 #include <linux/errno.h>
13 #include <linux/platform_device.h>
14 #include <linux/screen_info.h>
15 #include <linux/dmi.h>
17 #include <video/vga.h>
19 static struct fb_var_screeninfo efifb_defined __initdata
= {
20 .activate
= FB_ACTIVATE_NOW
,
27 .vmode
= FB_VMODE_NONINTERLACED
,
30 static struct fb_fix_screeninfo efifb_fix __initdata
= {
32 .type
= FB_TYPE_PACKED_PIXELS
,
33 .accel
= FB_ACCEL_NONE
,
34 .visual
= FB_VISUAL_TRUECOLOR
,
38 M_I17
, /* 17-Inch iMac */
39 M_I20
, /* 20-Inch iMac */
40 M_I20_SR
, /* 20-Inch iMac (Santa Rosa) */
41 M_I24
, /* 24-Inch iMac */
42 M_MINI
, /* Mac Mini */
44 M_MB_2
, /* MacBook, 2nd rev. */
45 M_MB_3
, /* MacBook, 3rd rev. */
46 M_MB_SR
, /* MacBook, 2nd gen, (Santa Rosa) */
47 M_MBA
, /* MacBook Air */
48 M_MBP
, /* MacBook Pro */
49 M_MBP_2
, /* MacBook Pro 2nd gen */
50 M_MBP_SR
, /* MacBook Pro (Santa Rosa) */
51 M_MBP_4
, /* MacBook Pro, 4th gen */
52 M_MBP_5_1
, /* MacBook Pro, 5,1th gen */
53 M_UNKNOWN
/* placeholder */
56 static struct efifb_dmi_info
{
63 [M_I17
] = { "i17", 0x80010000, 1472 * 4, 1440, 900 },
64 [M_I20
] = { "i20", 0x80010000, 1728 * 4, 1680, 1050 }, /* guess */
65 [M_I20_SR
] = { "imac7", 0x40010000, 1728 * 4, 1680, 1050 },
66 [M_I24
] = { "i24", 0x80010000, 2048 * 4, 1920, 1200 }, /* guess */
67 [M_MINI
]= { "mini", 0x80000000, 2048 * 4, 1024, 768 },
68 [M_MB
] = { "macbook", 0x80000000, 2048 * 4, 1280, 800 },
69 [M_MBA
] = { "mba", 0x80000000, 2048 * 4, 1280, 800 },
70 [M_MBP
] = { "mbp", 0x80010000, 1472 * 4, 1440, 900 },
71 [M_MBP_2
] = { "mbp2", 0, 0, 0, 0 }, /* placeholder */
72 [M_MBP_SR
] = { "mbp3", 0x80030000, 2048 * 4, 1440, 900 },
73 [M_MBP_4
] = { "mbp4", 0xc0060000, 2048 * 4, 1920, 1200 },
74 [M_MBP_5_1
] = { "mbp51", 0xc0010000, 2048 * 4, 1440, 900 },
75 [M_UNKNOWN
] = { NULL
, 0, 0, 0, 0 }
78 static int set_system(const struct dmi_system_id
*id
);
80 #define EFIFB_DMI_SYSTEM_ID(vendor, name, enumid) \
81 { set_system, name, { \
82 DMI_MATCH(DMI_BIOS_VENDOR, vendor), \
83 DMI_MATCH(DMI_PRODUCT_NAME, name) }, \
86 static struct dmi_system_id __initdata dmi_system_table
[] = {
87 EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "iMac4,1", M_I17
),
88 /* At least one of these two will be right; maybe both? */
89 EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "iMac5,1", M_I20
),
90 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "iMac5,1", M_I20
),
91 /* At least one of these two will be right; maybe both? */
92 EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "iMac6,1", M_I24
),
93 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "iMac6,1", M_I24
),
94 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "iMac7,1", M_I20_SR
),
95 EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "Macmini1,1", M_MINI
),
96 EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBook1,1", M_MB
),
97 /* At least one of these two will be right; maybe both? */
98 EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBook2,1", M_MB
),
99 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBook2,1", M_MB
),
100 /* At least one of these two will be right; maybe both? */
101 EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBook3,1", M_MB
),
102 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBook3,1", M_MB
),
103 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBook4,1", M_MB
),
104 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookAir1,1", M_MBA
),
105 EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBookPro1,1", M_MBP
),
106 EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBookPro2,1", M_MBP_2
),
107 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro2,1", M_MBP_2
),
108 EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBookPro3,1", M_MBP_SR
),
109 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro3,1", M_MBP_SR
),
110 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro4,1", M_MBP_4
),
111 EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro5,1", M_MBP_5_1
),
115 static int set_system(const struct dmi_system_id
*id
)
117 struct efifb_dmi_info
*info
= id
->driver_data
;
121 printk(KERN_INFO
"efifb: dmi detected %s - framebuffer at %p "
122 "(%dx%d, stride %d)\n", id
->ident
,
123 (void *)info
->base
, info
->width
, info
->height
,
126 /* Trust the bootloader over the DMI tables */
127 if (screen_info
.lfb_base
== 0)
128 screen_info
.lfb_base
= info
->base
;
129 if (screen_info
.lfb_linelength
== 0)
130 screen_info
.lfb_linelength
= info
->stride
;
131 if (screen_info
.lfb_width
== 0)
132 screen_info
.lfb_width
= info
->width
;
133 if (screen_info
.lfb_height
== 0)
134 screen_info
.lfb_height
= info
->height
;
135 if (screen_info
.orig_video_isVGA
== 0)
136 screen_info
.orig_video_isVGA
= VIDEO_TYPE_EFI
;
141 static int efifb_setcolreg(unsigned regno
, unsigned red
, unsigned green
,
142 unsigned blue
, unsigned transp
,
143 struct fb_info
*info
)
146 * Set a single color register. The values supplied are
147 * already rounded down to the hardware's capabilities
148 * (according to the entries in the `var' structure). Return
149 * != 0 for invalid regno.
152 if (regno
>= info
->cmap
.len
)
159 ((u32
*)(info
->pseudo_palette
))[regno
] =
160 (red
<< info
->var
.red
.offset
) |
161 (green
<< info
->var
.green
.offset
) |
162 (blue
<< info
->var
.blue
.offset
);
167 static void efifb_destroy(struct fb_info
*info
)
169 if (info
->screen_base
)
170 iounmap(info
->screen_base
);
171 release_mem_region(info
->aperture_base
, info
->aperture_size
);
172 framebuffer_release(info
);
175 static struct fb_ops efifb_ops
= {
176 .owner
= THIS_MODULE
,
177 .fb_destroy
= efifb_destroy
,
178 .fb_setcolreg
= efifb_setcolreg
,
179 .fb_fillrect
= cfb_fillrect
,
180 .fb_copyarea
= cfb_copyarea
,
181 .fb_imageblit
= cfb_imageblit
,
184 static int __init
efifb_setup(char *options
)
189 if (!options
|| !*options
)
192 while ((this_opt
= strsep(&options
, ",")) != NULL
) {
193 if (!*this_opt
) continue;
195 for (i
= 0; i
< M_UNKNOWN
; i
++) {
196 if (!strcmp(this_opt
, dmi_list
[i
].optname
) &&
197 dmi_list
[i
].base
!= 0) {
198 screen_info
.lfb_base
= dmi_list
[i
].base
;
199 screen_info
.lfb_linelength
= dmi_list
[i
].stride
;
200 screen_info
.lfb_width
= dmi_list
[i
].width
;
201 screen_info
.lfb_height
= dmi_list
[i
].height
;
204 if (!strncmp(this_opt
, "base:", 5))
205 screen_info
.lfb_base
= simple_strtoul(this_opt
+5, NULL
, 0);
206 else if (!strncmp(this_opt
, "stride:", 7))
207 screen_info
.lfb_linelength
= simple_strtoul(this_opt
+7, NULL
, 0) * 4;
208 else if (!strncmp(this_opt
, "height:", 7))
209 screen_info
.lfb_height
= simple_strtoul(this_opt
+7, NULL
, 0);
210 else if (!strncmp(this_opt
, "width:", 6))
211 screen_info
.lfb_width
= simple_strtoul(this_opt
+6, NULL
, 0);
216 static int __devinit
efifb_probe(struct platform_device
*dev
)
218 struct fb_info
*info
;
220 unsigned int size_vmode
;
221 unsigned int size_remap
;
222 unsigned int size_total
;
223 int request_succeeded
= 0;
225 if (!screen_info
.lfb_depth
)
226 screen_info
.lfb_depth
= 32;
227 if (!screen_info
.pages
)
228 screen_info
.pages
= 1;
229 if (!screen_info
.lfb_base
) {
230 printk(KERN_DEBUG
"efifb: invalid framebuffer address\n");
233 printk(KERN_INFO
"efifb: probing for efifb\n");
235 /* just assume they're all unset if any are */
236 if (!screen_info
.blue_size
) {
237 screen_info
.blue_size
= 8;
238 screen_info
.blue_pos
= 0;
239 screen_info
.green_size
= 8;
240 screen_info
.green_pos
= 8;
241 screen_info
.red_size
= 8;
242 screen_info
.red_pos
= 16;
243 screen_info
.rsvd_size
= 8;
244 screen_info
.rsvd_pos
= 24;
247 efifb_fix
.smem_start
= screen_info
.lfb_base
;
248 efifb_defined
.bits_per_pixel
= screen_info
.lfb_depth
;
249 efifb_defined
.xres
= screen_info
.lfb_width
;
250 efifb_defined
.yres
= screen_info
.lfb_height
;
251 efifb_fix
.line_length
= screen_info
.lfb_linelength
;
253 /* size_vmode -- that is the amount of memory needed for the
254 * used video mode, i.e. the minimum amount of
256 size_vmode
= efifb_defined
.yres
* efifb_fix
.line_length
;
258 /* size_total -- all video memory we have. Used for
259 * entries, ressource allocation and bounds
261 size_total
= screen_info
.lfb_size
;
262 if (size_total
< size_vmode
)
263 size_total
= size_vmode
;
265 /* size_remap -- the amount of video memory we are going to
266 * use for efifb. With modern cards it is no
267 * option to simply use size_total as that
268 * wastes plenty of kernel address space. */
269 size_remap
= size_vmode
* 2;
270 if (size_remap
> size_total
)
271 size_remap
= size_total
;
272 if (size_remap
% PAGE_SIZE
)
273 size_remap
+= PAGE_SIZE
- (size_remap
% PAGE_SIZE
);
274 efifb_fix
.smem_len
= size_remap
;
276 if (request_mem_region(efifb_fix
.smem_start
, size_remap
, "efifb")) {
277 request_succeeded
= 1;
279 /* We cannot make this fatal. Sometimes this comes from magic
280 spaces our resource handlers simply don't know about */
282 "efifb: cannot reserve video memory at 0x%lx\n",
283 efifb_fix
.smem_start
);
286 info
= framebuffer_alloc(sizeof(u32
) * 16, &dev
->dev
);
288 printk(KERN_ERR
"efifb: cannot allocate framebuffer\n");
290 goto err_release_mem
;
292 info
->pseudo_palette
= info
->par
;
295 info
->aperture_base
= efifb_fix
.smem_start
;
296 info
->aperture_size
= size_remap
;
298 info
->screen_base
= ioremap(efifb_fix
.smem_start
, efifb_fix
.smem_len
);
299 if (!info
->screen_base
) {
300 printk(KERN_ERR
"efifb: abort, cannot ioremap video memory "
302 efifb_fix
.smem_len
, efifb_fix
.smem_start
);
307 printk(KERN_INFO
"efifb: framebuffer at 0x%lx, mapped to 0x%p, "
308 "using %dk, total %dk\n",
309 efifb_fix
.smem_start
, info
->screen_base
,
310 size_remap
/1024, size_total
/1024);
311 printk(KERN_INFO
"efifb: mode is %dx%dx%d, linelength=%d, pages=%d\n",
312 efifb_defined
.xres
, efifb_defined
.yres
,
313 efifb_defined
.bits_per_pixel
, efifb_fix
.line_length
,
316 efifb_defined
.xres_virtual
= efifb_defined
.xres
;
317 efifb_defined
.yres_virtual
= efifb_fix
.smem_len
/
318 efifb_fix
.line_length
;
319 printk(KERN_INFO
"efifb: scrolling: redraw\n");
320 efifb_defined
.yres_virtual
= efifb_defined
.yres
;
322 /* some dummy values for timing to make fbset happy */
323 efifb_defined
.pixclock
= 10000000 / efifb_defined
.xres
*
324 1000 / efifb_defined
.yres
;
325 efifb_defined
.left_margin
= (efifb_defined
.xres
/ 8) & 0xf8;
326 efifb_defined
.hsync_len
= (efifb_defined
.xres
/ 8) & 0xf8;
328 efifb_defined
.red
.offset
= screen_info
.red_pos
;
329 efifb_defined
.red
.length
= screen_info
.red_size
;
330 efifb_defined
.green
.offset
= screen_info
.green_pos
;
331 efifb_defined
.green
.length
= screen_info
.green_size
;
332 efifb_defined
.blue
.offset
= screen_info
.blue_pos
;
333 efifb_defined
.blue
.length
= screen_info
.blue_size
;
334 efifb_defined
.transp
.offset
= screen_info
.rsvd_pos
;
335 efifb_defined
.transp
.length
= screen_info
.rsvd_size
;
337 printk(KERN_INFO
"efifb: %s: "
338 "size=%d:%d:%d:%d, shift=%d:%d:%d:%d\n",
340 screen_info
.rsvd_size
,
341 screen_info
.red_size
,
342 screen_info
.green_size
,
343 screen_info
.blue_size
,
344 screen_info
.rsvd_pos
,
346 screen_info
.green_pos
,
347 screen_info
.blue_pos
);
349 efifb_fix
.ypanstep
= 0;
350 efifb_fix
.ywrapstep
= 0;
352 info
->fbops
= &efifb_ops
;
353 info
->var
= efifb_defined
;
354 info
->fix
= efifb_fix
;
355 info
->flags
= FBINFO_FLAG_DEFAULT
| FBINFO_MISC_FIRMWARE
;
357 if ((err
= fb_alloc_cmap(&info
->cmap
, 256, 0)) < 0) {
358 printk(KERN_ERR
"efifb: cannot allocate colormap\n");
361 if ((err
= register_framebuffer(info
)) < 0) {
362 printk(KERN_ERR
"efifb: cannot register framebuffer\n");
365 printk(KERN_INFO
"fb%d: %s frame buffer device\n",
366 info
->node
, info
->fix
.id
);
370 fb_dealloc_cmap(&info
->cmap
);
372 iounmap(info
->screen_base
);
374 framebuffer_release(info
);
376 if (request_succeeded
)
377 release_mem_region(efifb_fix
.smem_start
, size_total
);
381 static struct platform_driver efifb_driver
= {
382 .probe
= efifb_probe
,
388 static struct platform_device efifb_device
= {
392 static int __init
efifb_init(void)
397 dmi_check_system(dmi_system_table
);
399 if (screen_info
.orig_video_isVGA
!= VIDEO_TYPE_EFI
)
402 if (fb_get_options("efifb", &option
))
406 /* We don't get linelength from UGA Draw Protocol, only from
407 * EFI Graphics Protocol. So if it's not in DMI, and it's not
408 * passed in from the user, we really can't use the framebuffer.
410 if (!screen_info
.lfb_linelength
)
413 ret
= platform_driver_register(&efifb_driver
);
416 ret
= platform_device_register(&efifb_device
);
418 platform_driver_unregister(&efifb_driver
);
422 module_init(efifb_init
);
424 MODULE_LICENSE("GPL");