efifb.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. /*
  2. * Framebuffer driver for EFI/UEFI based system
  3. *
  4. * (c) 2006 Edgar Hucek <gimli@dark-green.com>
  5. * Original efi driver written by Gerd Knorr <kraxel@goldbach.in-berlin.de>
  6. *
  7. */
  8. #include <linux/module.h>
  9. #include <linux/kernel.h>
  10. #include <linux/errno.h>
  11. #include <linux/fb.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/screen_info.h>
  14. #include <linux/dmi.h>
  15. #include <linux/pci.h>
  16. #include <video/vga.h>
  17. static struct fb_var_screeninfo efifb_defined __devinitdata = {
  18. .activate = FB_ACTIVATE_NOW,
  19. .height = -1,
  20. .width = -1,
  21. .right_margin = 32,
  22. .upper_margin = 16,
  23. .lower_margin = 4,
  24. .vsync_len = 4,
  25. .vmode = FB_VMODE_NONINTERLACED,
  26. };
  27. static struct fb_fix_screeninfo efifb_fix __devinitdata = {
  28. .id = "EFI VGA",
  29. .type = FB_TYPE_PACKED_PIXELS,
  30. .accel = FB_ACCEL_NONE,
  31. .visual = FB_VISUAL_TRUECOLOR,
  32. };
  33. enum {
  34. M_I17, /* 17-Inch iMac */
  35. M_I20, /* 20-Inch iMac */
  36. M_I20_SR, /* 20-Inch iMac (Santa Rosa) */
  37. M_I24, /* 24-Inch iMac */
  38. M_I24_8_1, /* 24-Inch iMac, 8,1th gen */
  39. M_I24_10_1, /* 24-Inch iMac, 10,1th gen */
  40. M_I27_11_1, /* 27-Inch iMac, 11,1th gen */
  41. M_MINI, /* Mac Mini */
  42. M_MINI_3_1, /* Mac Mini, 3,1th gen */
  43. M_MINI_4_1, /* Mac Mini, 4,1th gen */
  44. M_MB, /* MacBook */
  45. M_MB_2, /* MacBook, 2nd rev. */
  46. M_MB_3, /* MacBook, 3rd rev. */
  47. M_MB_5_1, /* MacBook, 5th rev. */
  48. M_MB_6_1, /* MacBook, 6th rev. */
  49. M_MB_7_1, /* MacBook, 7th rev. */
  50. M_MB_SR, /* MacBook, 2nd gen, (Santa Rosa) */
  51. M_MBA, /* MacBook Air */
  52. M_MBP, /* MacBook Pro */
  53. M_MBP_2, /* MacBook Pro 2nd gen */
  54. M_MBP_2_2, /* MacBook Pro 2,2nd gen */
  55. M_MBP_SR, /* MacBook Pro (Santa Rosa) */
  56. M_MBP_4, /* MacBook Pro, 4th gen */
  57. M_MBP_5_1, /* MacBook Pro, 5,1th gen */
  58. M_MBP_5_2, /* MacBook Pro, 5,2th gen */
  59. M_MBP_5_3, /* MacBook Pro, 5,3rd gen */
  60. M_MBP_6_1, /* MacBook Pro, 6,1th gen */
  61. M_MBP_6_2, /* MacBook Pro, 6,2th gen */
  62. M_MBP_7_1, /* MacBook Pro, 7,1th gen */
  63. M_UNKNOWN /* placeholder */
  64. };
  65. static struct efifb_dmi_info {
  66. char *optname;
  67. unsigned long base;
  68. int stride;
  69. int width;
  70. int height;
  71. } dmi_list[] __initdata = {
  72. [M_I17] = { "i17", 0x80010000, 1472 * 4, 1440, 900 },
  73. [M_I20] = { "i20", 0x80010000, 1728 * 4, 1680, 1050 }, /* guess */
  74. [M_I20_SR] = { "imac7", 0x40010000, 1728 * 4, 1680, 1050 },
  75. [M_I24] = { "i24", 0x80010000, 2048 * 4, 1920, 1200 }, /* guess */
  76. [M_I24_8_1] = { "imac8", 0xc0060000, 2048 * 4, 1920, 1200 },
  77. [M_I24_10_1] = { "imac10", 0xc0010000, 2048 * 4, 1920, 1080 },
  78. [M_I27_11_1] = { "imac11", 0xc0010000, 2560 * 4, 2560, 1440 },
  79. [M_MINI]= { "mini", 0x80000000, 2048 * 4, 1024, 768 },
  80. [M_MINI_3_1] = { "mini31", 0x40010000, 1024 * 4, 1024, 768 },
  81. [M_MINI_4_1] = { "mini41", 0xc0010000, 2048 * 4, 1920, 1200 },
  82. [M_MB] = { "macbook", 0x80000000, 2048 * 4, 1280, 800 },
  83. [M_MB_5_1] = { "macbook51", 0x80010000, 2048 * 4, 1280, 800 },
  84. [M_MB_6_1] = { "macbook61", 0x80010000, 2048 * 4, 1280, 800 },
  85. [M_MB_7_1] = { "macbook71", 0x80010000, 2048 * 4, 1280, 800 },
  86. [M_MBA] = { "mba", 0x80000000, 2048 * 4, 1280, 800 },
  87. [M_MBP] = { "mbp", 0x80010000, 1472 * 4, 1440, 900 },
  88. [M_MBP_2] = { "mbp2", 0, 0, 0, 0 }, /* placeholder */
  89. [M_MBP_2_2] = { "mbp22", 0x80010000, 1472 * 4, 1440, 900 },
  90. [M_MBP_SR] = { "mbp3", 0x80030000, 2048 * 4, 1440, 900 },
  91. [M_MBP_4] = { "mbp4", 0xc0060000, 2048 * 4, 1920, 1200 },
  92. [M_MBP_5_1] = { "mbp51", 0xc0010000, 2048 * 4, 1440, 900 },
  93. [M_MBP_5_2] = { "mbp52", 0xc0010000, 2048 * 4, 1920, 1200 },
  94. [M_MBP_5_3] = { "mbp53", 0xd0010000, 2048 * 4, 1440, 900 },
  95. [M_MBP_6_1] = { "mbp61", 0x90030000, 2048 * 4, 1920, 1200 },
  96. [M_MBP_6_2] = { "mbp62", 0x90030000, 2048 * 4, 1680, 1050 },
  97. [M_MBP_7_1] = { "mbp71", 0xc0010000, 2048 * 4, 1280, 800 },
  98. [M_UNKNOWN] = { NULL, 0, 0, 0, 0 }
  99. };
  100. static int set_system(const struct dmi_system_id *id);
  101. #define EFIFB_DMI_SYSTEM_ID(vendor, name, enumid) \
  102. { set_system, name, { \
  103. DMI_MATCH(DMI_BIOS_VENDOR, vendor), \
  104. DMI_MATCH(DMI_PRODUCT_NAME, name) }, \
  105. &dmi_list[enumid] }
  106. static const struct dmi_system_id dmi_system_table[] __initconst = {
  107. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "iMac4,1", M_I17),
  108. /* At least one of these two will be right; maybe both? */
  109. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "iMac5,1", M_I20),
  110. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "iMac5,1", M_I20),
  111. /* At least one of these two will be right; maybe both? */
  112. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "iMac6,1", M_I24),
  113. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "iMac6,1", M_I24),
  114. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "iMac7,1", M_I20_SR),
  115. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "iMac8,1", M_I24_8_1),
  116. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "iMac10,1", M_I24_10_1),
  117. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "iMac11,1", M_I27_11_1),
  118. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "Macmini1,1", M_MINI),
  119. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "Macmini3,1", M_MINI_3_1),
  120. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "Macmini4,1", M_MINI_4_1),
  121. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBook1,1", M_MB),
  122. /* At least one of these two will be right; maybe both? */
  123. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBook2,1", M_MB),
  124. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBook2,1", M_MB),
  125. /* At least one of these two will be right; maybe both? */
  126. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBook3,1", M_MB),
  127. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBook3,1", M_MB),
  128. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBook4,1", M_MB),
  129. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBook5,1", M_MB_5_1),
  130. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBook6,1", M_MB_6_1),
  131. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBook7,1", M_MB_7_1),
  132. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookAir1,1", M_MBA),
  133. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBookPro1,1", M_MBP),
  134. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBookPro2,1", M_MBP_2),
  135. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBookPro2,2", M_MBP_2_2),
  136. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro2,1", M_MBP_2),
  137. EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "MacBookPro3,1", M_MBP_SR),
  138. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro3,1", M_MBP_SR),
  139. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro4,1", M_MBP_4),
  140. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro5,1", M_MBP_5_1),
  141. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro5,2", M_MBP_5_2),
  142. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro5,3", M_MBP_5_3),
  143. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro6,1", M_MBP_6_1),
  144. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro6,2", M_MBP_6_2),
  145. EFIFB_DMI_SYSTEM_ID("Apple Inc.", "MacBookPro7,1", M_MBP_7_1),
  146. {},
  147. };
  148. static int set_system(const struct dmi_system_id *id)
  149. {
  150. struct efifb_dmi_info *info = id->driver_data;
  151. if (info->base == 0)
  152. return 0;
  153. printk(KERN_INFO "efifb: dmi detected %s - framebuffer at %p "
  154. "(%dx%d, stride %d)\n", id->ident,
  155. (void *)info->base, info->width, info->height,
  156. info->stride);
  157. /* Trust the bootloader over the DMI tables */
  158. if (screen_info.lfb_base == 0) {
  159. #if defined(CONFIG_PCI)
  160. struct pci_dev *dev = NULL;
  161. int found_bar = 0;
  162. #endif
  163. screen_info.lfb_base = info->base;
  164. #if defined(CONFIG_PCI)
  165. /* make sure that the address in the table is actually on a
  166. * VGA device's PCI BAR */
  167. for_each_pci_dev(dev) {
  168. int i;
  169. if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
  170. continue;
  171. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
  172. resource_size_t start, end;
  173. start = pci_resource_start(dev, i);
  174. if (start == 0)
  175. break;
  176. end = pci_resource_end(dev, i);
  177. if (screen_info.lfb_base >= start &&
  178. screen_info.lfb_base < end) {
  179. found_bar = 1;
  180. }
  181. }
  182. }
  183. if (!found_bar)
  184. screen_info.lfb_base = 0;
  185. #endif
  186. }
  187. if (screen_info.lfb_base) {
  188. if (screen_info.lfb_linelength == 0)
  189. screen_info.lfb_linelength = info->stride;
  190. if (screen_info.lfb_width == 0)
  191. screen_info.lfb_width = info->width;
  192. if (screen_info.lfb_height == 0)
  193. screen_info.lfb_height = info->height;
  194. if (screen_info.orig_video_isVGA == 0)
  195. screen_info.orig_video_isVGA = VIDEO_TYPE_EFI;
  196. } else {
  197. screen_info.lfb_linelength = 0;
  198. screen_info.lfb_width = 0;
  199. screen_info.lfb_height = 0;
  200. screen_info.orig_video_isVGA = 0;
  201. return 0;
  202. }
  203. return 1;
  204. }
  205. static int efifb_setcolreg(unsigned regno, unsigned red, unsigned green,
  206. unsigned blue, unsigned transp,
  207. struct fb_info *info)
  208. {
  209. /*
  210. * Set a single color register. The values supplied are
  211. * already rounded down to the hardware's capabilities
  212. * (according to the entries in the `var' structure). Return
  213. * != 0 for invalid regno.
  214. */
  215. if (regno >= info->cmap.len)
  216. return 1;
  217. if (regno < 16) {
  218. red >>= 8;
  219. green >>= 8;
  220. blue >>= 8;
  221. ((u32 *)(info->pseudo_palette))[regno] =
  222. (red << info->var.red.offset) |
  223. (green << info->var.green.offset) |
  224. (blue << info->var.blue.offset);
  225. }
  226. return 0;
  227. }
  228. static void efifb_destroy(struct fb_info *info)
  229. {
  230. if (info->screen_base)
  231. iounmap(info->screen_base);
  232. release_mem_region(info->apertures->ranges[0].base, info->apertures->ranges[0].size);
  233. framebuffer_release(info);
  234. }
  235. static struct fb_ops efifb_ops = {
  236. .owner = THIS_MODULE,
  237. .fb_destroy = efifb_destroy,
  238. .fb_setcolreg = efifb_setcolreg,
  239. .fb_fillrect = cfb_fillrect,
  240. .fb_copyarea = cfb_copyarea,
  241. .fb_imageblit = cfb_imageblit,
  242. };
  243. static int __init efifb_setup(char *options)
  244. {
  245. char *this_opt;
  246. int i;
  247. if (!options || !*options)
  248. return 0;
  249. while ((this_opt = strsep(&options, ",")) != NULL) {
  250. if (!*this_opt) continue;
  251. for (i = 0; i < M_UNKNOWN; i++) {
  252. if (!strcmp(this_opt, dmi_list[i].optname) &&
  253. dmi_list[i].base != 0) {
  254. screen_info.lfb_base = dmi_list[i].base;
  255. screen_info.lfb_linelength = dmi_list[i].stride;
  256. screen_info.lfb_width = dmi_list[i].width;
  257. screen_info.lfb_height = dmi_list[i].height;
  258. }
  259. }
  260. if (!strncmp(this_opt, "base:", 5))
  261. screen_info.lfb_base = simple_strtoul(this_opt+5, NULL, 0);
  262. else if (!strncmp(this_opt, "stride:", 7))
  263. screen_info.lfb_linelength = simple_strtoul(this_opt+7, NULL, 0) * 4;
  264. else if (!strncmp(this_opt, "height:", 7))
  265. screen_info.lfb_height = simple_strtoul(this_opt+7, NULL, 0);
  266. else if (!strncmp(this_opt, "width:", 6))
  267. screen_info.lfb_width = simple_strtoul(this_opt+6, NULL, 0);
  268. }
  269. return 0;
  270. }
  271. static int __devinit efifb_probe(struct platform_device *dev)
  272. {
  273. struct fb_info *info;
  274. int err;
  275. unsigned int size_vmode;
  276. unsigned int size_remap;
  277. unsigned int size_total;
  278. int request_succeeded = 0;
  279. if (!screen_info.lfb_depth)
  280. screen_info.lfb_depth = 32;
  281. if (!screen_info.pages)
  282. screen_info.pages = 1;
  283. if (!screen_info.lfb_base) {
  284. printk(KERN_DEBUG "efifb: invalid framebuffer address\n");
  285. return -ENODEV;
  286. }
  287. printk(KERN_INFO "efifb: probing for efifb\n");
  288. /* just assume they're all unset if any are */
  289. if (!screen_info.blue_size) {
  290. screen_info.blue_size = 8;
  291. screen_info.blue_pos = 0;
  292. screen_info.green_size = 8;
  293. screen_info.green_pos = 8;
  294. screen_info.red_size = 8;
  295. screen_info.red_pos = 16;
  296. screen_info.rsvd_size = 8;
  297. screen_info.rsvd_pos = 24;
  298. }
  299. efifb_fix.smem_start = screen_info.lfb_base;
  300. efifb_defined.bits_per_pixel = screen_info.lfb_depth;
  301. efifb_defined.xres = screen_info.lfb_width;
  302. efifb_defined.yres = screen_info.lfb_height;
  303. efifb_fix.line_length = screen_info.lfb_linelength;
  304. /* size_vmode -- that is the amount of memory needed for the
  305. * used video mode, i.e. the minimum amount of
  306. * memory we need. */
  307. size_vmode = efifb_defined.yres * efifb_fix.line_length;
  308. /* size_total -- all video memory we have. Used for
  309. * entries, ressource allocation and bounds
  310. * checking. */
  311. size_total = screen_info.lfb_size;
  312. if (size_total < size_vmode)
  313. size_total = size_vmode;
  314. /* size_remap -- the amount of video memory we are going to
  315. * use for efifb. With modern cards it is no
  316. * option to simply use size_total as that
  317. * wastes plenty of kernel address space. */
  318. size_remap = size_vmode * 2;
  319. if (size_remap > size_total)
  320. size_remap = size_total;
  321. if (size_remap % PAGE_SIZE)
  322. size_remap += PAGE_SIZE - (size_remap % PAGE_SIZE);
  323. efifb_fix.smem_len = size_remap;
  324. if (request_mem_region(efifb_fix.smem_start, size_remap, "efifb")) {
  325. request_succeeded = 1;
  326. } else {
  327. /* We cannot make this fatal. Sometimes this comes from magic
  328. spaces our resource handlers simply don't know about */
  329. printk(KERN_WARNING
  330. "efifb: cannot reserve video memory at 0x%lx\n",
  331. efifb_fix.smem_start);
  332. }
  333. info = framebuffer_alloc(sizeof(u32) * 16, &dev->dev);
  334. if (!info) {
  335. printk(KERN_ERR "efifb: cannot allocate framebuffer\n");
  336. err = -ENOMEM;
  337. goto err_release_mem;
  338. }
  339. info->pseudo_palette = info->par;
  340. info->par = NULL;
  341. info->apertures = alloc_apertures(1);
  342. if (!info->apertures) {
  343. err = -ENOMEM;
  344. goto err_release_fb;
  345. }
  346. info->apertures->ranges[0].base = efifb_fix.smem_start;
  347. info->apertures->ranges[0].size = size_remap;
  348. info->screen_base = ioremap(efifb_fix.smem_start, efifb_fix.smem_len);
  349. if (!info->screen_base) {
  350. printk(KERN_ERR "efifb: abort, cannot ioremap video memory "
  351. "0x%x @ 0x%lx\n",
  352. efifb_fix.smem_len, efifb_fix.smem_start);
  353. err = -EIO;
  354. goto err_release_fb;
  355. }
  356. printk(KERN_INFO "efifb: framebuffer at 0x%lx, mapped to 0x%p, "
  357. "using %dk, total %dk\n",
  358. efifb_fix.smem_start, info->screen_base,
  359. size_remap/1024, size_total/1024);
  360. printk(KERN_INFO "efifb: mode is %dx%dx%d, linelength=%d, pages=%d\n",
  361. efifb_defined.xres, efifb_defined.yres,
  362. efifb_defined.bits_per_pixel, efifb_fix.line_length,
  363. screen_info.pages);
  364. efifb_defined.xres_virtual = efifb_defined.xres;
  365. efifb_defined.yres_virtual = efifb_fix.smem_len /
  366. efifb_fix.line_length;
  367. printk(KERN_INFO "efifb: scrolling: redraw\n");
  368. efifb_defined.yres_virtual = efifb_defined.yres;
  369. /* some dummy values for timing to make fbset happy */
  370. efifb_defined.pixclock = 10000000 / efifb_defined.xres *
  371. 1000 / efifb_defined.yres;
  372. efifb_defined.left_margin = (efifb_defined.xres / 8) & 0xf8;
  373. efifb_defined.hsync_len = (efifb_defined.xres / 8) & 0xf8;
  374. efifb_defined.red.offset = screen_info.red_pos;
  375. efifb_defined.red.length = screen_info.red_size;
  376. efifb_defined.green.offset = screen_info.green_pos;
  377. efifb_defined.green.length = screen_info.green_size;
  378. efifb_defined.blue.offset = screen_info.blue_pos;
  379. efifb_defined.blue.length = screen_info.blue_size;
  380. efifb_defined.transp.offset = screen_info.rsvd_pos;
  381. efifb_defined.transp.length = screen_info.rsvd_size;
  382. printk(KERN_INFO "efifb: %s: "
  383. "size=%d:%d:%d:%d, shift=%d:%d:%d:%d\n",
  384. "Truecolor",
  385. screen_info.rsvd_size,
  386. screen_info.red_size,
  387. screen_info.green_size,
  388. screen_info.blue_size,
  389. screen_info.rsvd_pos,
  390. screen_info.red_pos,
  391. screen_info.green_pos,
  392. screen_info.blue_pos);
  393. efifb_fix.ypanstep = 0;
  394. efifb_fix.ywrapstep = 0;
  395. info->fbops = &efifb_ops;
  396. info->var = efifb_defined;
  397. info->fix = efifb_fix;
  398. info->flags = FBINFO_FLAG_DEFAULT | FBINFO_MISC_FIRMWARE;
  399. if ((err = fb_alloc_cmap(&info->cmap, 256, 0)) < 0) {
  400. printk(KERN_ERR "efifb: cannot allocate colormap\n");
  401. goto err_unmap;
  402. }
  403. if ((err = register_framebuffer(info)) < 0) {
  404. printk(KERN_ERR "efifb: cannot register framebuffer\n");
  405. goto err_fb_dealoc;
  406. }
  407. printk(KERN_INFO "fb%d: %s frame buffer device\n",
  408. info->node, info->fix.id);
  409. return 0;
  410. err_fb_dealoc:
  411. fb_dealloc_cmap(&info->cmap);
  412. err_unmap:
  413. iounmap(info->screen_base);
  414. err_release_fb:
  415. framebuffer_release(info);
  416. err_release_mem:
  417. if (request_succeeded)
  418. release_mem_region(efifb_fix.smem_start, size_total);
  419. return err;
  420. }
  421. static struct platform_driver efifb_driver = {
  422. .probe = efifb_probe,
  423. .driver = {
  424. .name = "efifb",
  425. },
  426. };
  427. static struct platform_device efifb_device = {
  428. .name = "efifb",
  429. };
  430. static int __init efifb_init(void)
  431. {
  432. int ret;
  433. char *option = NULL;
  434. dmi_check_system(dmi_system_table);
  435. if (screen_info.orig_video_isVGA != VIDEO_TYPE_EFI)
  436. return -ENODEV;
  437. if (fb_get_options("efifb", &option))
  438. return -ENODEV;
  439. efifb_setup(option);
  440. /* We don't get linelength from UGA Draw Protocol, only from
  441. * EFI Graphics Protocol. So if it's not in DMI, and it's not
  442. * passed in from the user, we really can't use the framebuffer.
  443. */
  444. if (!screen_info.lfb_linelength)
  445. return -ENODEV;
  446. ret = platform_driver_register(&efifb_driver);
  447. if (!ret) {
  448. ret = platform_device_register(&efifb_device);
  449. if (ret)
  450. platform_driver_unregister(&efifb_driver);
  451. }
  452. return ret;
  453. }
  454. module_init(efifb_init);
  455. MODULE_LICENSE("GPL");