gxfb_core.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. /*
  2. * Geode GX framebuffer driver.
  3. *
  4. * Copyright (C) 2006 Arcom Control Systems Ltd.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the
  8. * Free Software Foundation; either version 2 of the License, or (at your
  9. * option) any later version.
  10. *
  11. *
  12. * This driver assumes that the BIOS has created a virtual PCI device header
  13. * for the video device. The PCI header is assumed to contain the following
  14. * BARs:
  15. *
  16. * BAR0 - framebuffer memory
  17. * BAR1 - graphics processor registers
  18. * BAR2 - display controller registers
  19. * BAR3 - video processor and flat panel control registers.
  20. *
  21. * 16 MiB of framebuffer memory is assumed to be available.
  22. */
  23. #include <linux/module.h>
  24. #include <linux/kernel.h>
  25. #include <linux/errno.h>
  26. #include <linux/string.h>
  27. #include <linux/mm.h>
  28. #include <linux/delay.h>
  29. #include <linux/fb.h>
  30. #include <linux/console.h>
  31. #include <linux/suspend.h>
  32. #include <linux/init.h>
  33. #include <linux/pci.h>
  34. #include <linux/cs5535.h>
  35. #include "gxfb.h"
  36. static char *mode_option;
  37. static int vram;
  38. static int vt_switch;
  39. /* Modes relevant to the GX (taken from modedb.c) */
  40. static struct fb_videomode gx_modedb[] __devinitdata = {
  41. /* 640x480-60 VESA */
  42. { NULL, 60, 640, 480, 39682, 48, 16, 33, 10, 96, 2,
  43. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  44. /* 640x480-75 VESA */
  45. { NULL, 75, 640, 480, 31746, 120, 16, 16, 01, 64, 3,
  46. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  47. /* 640x480-85 VESA */
  48. { NULL, 85, 640, 480, 27777, 80, 56, 25, 01, 56, 3,
  49. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  50. /* 800x600-60 VESA */
  51. { NULL, 60, 800, 600, 25000, 88, 40, 23, 01, 128, 4,
  52. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  53. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  54. /* 800x600-75 VESA */
  55. { NULL, 75, 800, 600, 20202, 160, 16, 21, 01, 80, 3,
  56. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  57. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  58. /* 800x600-85 VESA */
  59. { NULL, 85, 800, 600, 17761, 152, 32, 27, 01, 64, 3,
  60. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  61. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  62. /* 1024x768-60 VESA */
  63. { NULL, 60, 1024, 768, 15384, 160, 24, 29, 3, 136, 6,
  64. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  65. /* 1024x768-75 VESA */
  66. { NULL, 75, 1024, 768, 12690, 176, 16, 28, 1, 96, 3,
  67. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  68. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  69. /* 1024x768-85 VESA */
  70. { NULL, 85, 1024, 768, 10582, 208, 48, 36, 1, 96, 3,
  71. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  72. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  73. /* 1280x960-60 VESA */
  74. { NULL, 60, 1280, 960, 9259, 312, 96, 36, 1, 112, 3,
  75. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  76. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  77. /* 1280x960-85 VESA */
  78. { NULL, 85, 1280, 960, 6734, 224, 64, 47, 1, 160, 3,
  79. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  80. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  81. /* 1280x1024-60 VESA */
  82. { NULL, 60, 1280, 1024, 9259, 248, 48, 38, 1, 112, 3,
  83. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  84. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  85. /* 1280x1024-75 VESA */
  86. { NULL, 75, 1280, 1024, 7407, 248, 16, 38, 1, 144, 3,
  87. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  88. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  89. /* 1280x1024-85 VESA */
  90. { NULL, 85, 1280, 1024, 6349, 224, 64, 44, 1, 160, 3,
  91. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  92. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  93. /* 1600x1200-60 VESA */
  94. { NULL, 60, 1600, 1200, 6172, 304, 64, 46, 1, 192, 3,
  95. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  96. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  97. /* 1600x1200-75 VESA */
  98. { NULL, 75, 1600, 1200, 4938, 304, 64, 46, 1, 192, 3,
  99. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  100. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  101. /* 1600x1200-85 VESA */
  102. { NULL, 85, 1600, 1200, 4357, 304, 64, 46, 1, 192, 3,
  103. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  104. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  105. };
  106. #ifdef CONFIG_OLPC
  107. #include <asm/olpc.h>
  108. static struct fb_videomode gx_dcon_modedb[] __devinitdata = {
  109. /* The only mode the DCON has is 1200x900 */
  110. { NULL, 50, 1200, 900, 17460, 24, 8, 4, 5, 8, 3,
  111. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  112. FB_VMODE_NONINTERLACED, 0 }
  113. };
  114. static void __devinit get_modedb(struct fb_videomode **modedb,
  115. unsigned int *size)
  116. {
  117. if (olpc_has_dcon()) {
  118. *modedb = (struct fb_videomode *) gx_dcon_modedb;
  119. *size = ARRAY_SIZE(gx_dcon_modedb);
  120. } else {
  121. *modedb = (struct fb_videomode *) gx_modedb;
  122. *size = ARRAY_SIZE(gx_modedb);
  123. }
  124. }
  125. #else
  126. static void __devinit get_modedb(struct fb_videomode **modedb,
  127. unsigned int *size)
  128. {
  129. *modedb = (struct fb_videomode *) gx_modedb;
  130. *size = ARRAY_SIZE(gx_modedb);
  131. }
  132. #endif
  133. static int gxfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
  134. {
  135. if (var->xres > 1600 || var->yres > 1200)
  136. return -EINVAL;
  137. if ((var->xres > 1280 || var->yres > 1024) && var->bits_per_pixel > 16)
  138. return -EINVAL;
  139. if (var->bits_per_pixel == 32) {
  140. var->red.offset = 16; var->red.length = 8;
  141. var->green.offset = 8; var->green.length = 8;
  142. var->blue.offset = 0; var->blue.length = 8;
  143. } else if (var->bits_per_pixel == 16) {
  144. var->red.offset = 11; var->red.length = 5;
  145. var->green.offset = 5; var->green.length = 6;
  146. var->blue.offset = 0; var->blue.length = 5;
  147. } else if (var->bits_per_pixel == 8) {
  148. var->red.offset = 0; var->red.length = 8;
  149. var->green.offset = 0; var->green.length = 8;
  150. var->blue.offset = 0; var->blue.length = 8;
  151. } else
  152. return -EINVAL;
  153. var->transp.offset = 0; var->transp.length = 0;
  154. /* Enough video memory? */
  155. if (gx_line_delta(var->xres, var->bits_per_pixel) * var->yres > info->fix.smem_len)
  156. return -EINVAL;
  157. /* FIXME: Check timing parameters here? */
  158. return 0;
  159. }
  160. static int gxfb_set_par(struct fb_info *info)
  161. {
  162. if (info->var.bits_per_pixel > 8)
  163. info->fix.visual = FB_VISUAL_TRUECOLOR;
  164. else
  165. info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
  166. info->fix.line_length = gx_line_delta(info->var.xres, info->var.bits_per_pixel);
  167. gx_set_mode(info);
  168. return 0;
  169. }
  170. static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf)
  171. {
  172. chan &= 0xffff;
  173. chan >>= 16 - bf->length;
  174. return chan << bf->offset;
  175. }
  176. static int gxfb_setcolreg(unsigned regno, unsigned red, unsigned green,
  177. unsigned blue, unsigned transp,
  178. struct fb_info *info)
  179. {
  180. if (info->var.grayscale) {
  181. /* grayscale = 0.30*R + 0.59*G + 0.11*B */
  182. red = green = blue = (red * 77 + green * 151 + blue * 28) >> 8;
  183. }
  184. /* Truecolor has hardware independent palette */
  185. if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
  186. u32 *pal = info->pseudo_palette;
  187. u32 v;
  188. if (regno >= 16)
  189. return -EINVAL;
  190. v = chan_to_field(red, &info->var.red);
  191. v |= chan_to_field(green, &info->var.green);
  192. v |= chan_to_field(blue, &info->var.blue);
  193. pal[regno] = v;
  194. } else {
  195. if (regno >= 256)
  196. return -EINVAL;
  197. gx_set_hw_palette_reg(info, regno, red, green, blue);
  198. }
  199. return 0;
  200. }
  201. static int gxfb_blank(int blank_mode, struct fb_info *info)
  202. {
  203. return gx_blank_display(info, blank_mode);
  204. }
  205. static int __devinit gxfb_map_video_memory(struct fb_info *info,
  206. struct pci_dev *dev)
  207. {
  208. struct gxfb_par *par = info->par;
  209. int ret;
  210. ret = pci_enable_device(dev);
  211. if (ret < 0)
  212. return ret;
  213. ret = pci_request_region(dev, 3, "gxfb (video processor)");
  214. if (ret < 0)
  215. return ret;
  216. par->vid_regs = pci_ioremap_bar(dev, 3);
  217. if (!par->vid_regs)
  218. return -ENOMEM;
  219. ret = pci_request_region(dev, 2, "gxfb (display controller)");
  220. if (ret < 0)
  221. return ret;
  222. par->dc_regs = pci_ioremap_bar(dev, 2);
  223. if (!par->dc_regs)
  224. return -ENOMEM;
  225. ret = pci_request_region(dev, 1, "gxfb (graphics processor)");
  226. if (ret < 0)
  227. return ret;
  228. par->gp_regs = pci_ioremap_bar(dev, 1);
  229. if (!par->gp_regs)
  230. return -ENOMEM;
  231. ret = pci_request_region(dev, 0, "gxfb (framebuffer)");
  232. if (ret < 0)
  233. return ret;
  234. info->fix.smem_start = pci_resource_start(dev, 0);
  235. info->fix.smem_len = vram ? vram : gx_frame_buffer_size();
  236. info->screen_base = ioremap(info->fix.smem_start, info->fix.smem_len);
  237. if (!info->screen_base)
  238. return -ENOMEM;
  239. /* Set the 16MiB aligned base address of the graphics memory region
  240. * in the display controller */
  241. write_dc(par, DC_GLIU0_MEM_OFFSET, info->fix.smem_start & 0xFF000000);
  242. dev_info(&dev->dev, "%d KiB of video memory at 0x%lx\n",
  243. info->fix.smem_len / 1024, info->fix.smem_start);
  244. return 0;
  245. }
  246. static struct fb_ops gxfb_ops = {
  247. .owner = THIS_MODULE,
  248. .fb_check_var = gxfb_check_var,
  249. .fb_set_par = gxfb_set_par,
  250. .fb_setcolreg = gxfb_setcolreg,
  251. .fb_blank = gxfb_blank,
  252. /* No HW acceleration for now. */
  253. .fb_fillrect = cfb_fillrect,
  254. .fb_copyarea = cfb_copyarea,
  255. .fb_imageblit = cfb_imageblit,
  256. };
  257. static struct fb_info *__devinit gxfb_init_fbinfo(struct device *dev)
  258. {
  259. struct gxfb_par *par;
  260. struct fb_info *info;
  261. /* Alloc enough space for the pseudo palette. */
  262. info = framebuffer_alloc(sizeof(struct gxfb_par) + sizeof(u32) * 16,
  263. dev);
  264. if (!info)
  265. return NULL;
  266. par = info->par;
  267. strcpy(info->fix.id, "Geode GX");
  268. info->fix.type = FB_TYPE_PACKED_PIXELS;
  269. info->fix.type_aux = 0;
  270. info->fix.xpanstep = 0;
  271. info->fix.ypanstep = 0;
  272. info->fix.ywrapstep = 0;
  273. info->fix.accel = FB_ACCEL_NONE;
  274. info->var.nonstd = 0;
  275. info->var.activate = FB_ACTIVATE_NOW;
  276. info->var.height = -1;
  277. info->var.width = -1;
  278. info->var.accel_flags = 0;
  279. info->var.vmode = FB_VMODE_NONINTERLACED;
  280. info->fbops = &gxfb_ops;
  281. info->flags = FBINFO_DEFAULT;
  282. info->node = -1;
  283. info->pseudo_palette = (void *)par + sizeof(struct gxfb_par);
  284. info->var.grayscale = 0;
  285. if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) {
  286. framebuffer_release(info);
  287. return NULL;
  288. }
  289. return info;
  290. }
  291. #ifdef CONFIG_PM
  292. static int gxfb_suspend(struct pci_dev *pdev, pm_message_t state)
  293. {
  294. struct fb_info *info = pci_get_drvdata(pdev);
  295. if (state.event == PM_EVENT_SUSPEND) {
  296. console_lock();
  297. gx_powerdown(info);
  298. fb_set_suspend(info, 1);
  299. console_unlock();
  300. }
  301. /* there's no point in setting PCI states; we emulate PCI, so
  302. * we don't end up getting power savings anyways */
  303. return 0;
  304. }
  305. static int gxfb_resume(struct pci_dev *pdev)
  306. {
  307. struct fb_info *info = pci_get_drvdata(pdev);
  308. int ret;
  309. console_lock();
  310. ret = gx_powerup(info);
  311. if (ret) {
  312. printk(KERN_ERR "gxfb: power up failed!\n");
  313. return ret;
  314. }
  315. fb_set_suspend(info, 0);
  316. console_unlock();
  317. return 0;
  318. }
  319. #endif
  320. static int __devinit gxfb_probe(struct pci_dev *pdev,
  321. const struct pci_device_id *id)
  322. {
  323. struct gxfb_par *par;
  324. struct fb_info *info;
  325. int ret;
  326. unsigned long val;
  327. struct fb_videomode *modedb_ptr;
  328. unsigned int modedb_size;
  329. info = gxfb_init_fbinfo(&pdev->dev);
  330. if (!info)
  331. return -ENOMEM;
  332. par = info->par;
  333. if ((ret = gxfb_map_video_memory(info, pdev)) < 0) {
  334. dev_err(&pdev->dev, "failed to map frame buffer or controller registers\n");
  335. goto err;
  336. }
  337. /* Figure out if this is a TFT or CRT part */
  338. rdmsrl(MSR_GX_GLD_MSR_CONFIG, val);
  339. if ((val & MSR_GX_GLD_MSR_CONFIG_FP) == MSR_GX_GLD_MSR_CONFIG_FP)
  340. par->enable_crt = 0;
  341. else
  342. par->enable_crt = 1;
  343. get_modedb(&modedb_ptr, &modedb_size);
  344. ret = fb_find_mode(&info->var, info, mode_option,
  345. modedb_ptr, modedb_size, NULL, 16);
  346. if (ret == 0 || ret == 4) {
  347. dev_err(&pdev->dev, "could not find valid video mode\n");
  348. ret = -EINVAL;
  349. goto err;
  350. }
  351. /* Clear the frame buffer of garbage. */
  352. memset_io(info->screen_base, 0, info->fix.smem_len);
  353. gxfb_check_var(&info->var, info);
  354. gxfb_set_par(info);
  355. pm_set_vt_switch(vt_switch);
  356. if (register_framebuffer(info) < 0) {
  357. ret = -EINVAL;
  358. goto err;
  359. }
  360. pci_set_drvdata(pdev, info);
  361. printk(KERN_INFO "fb%d: %s frame buffer device\n", info->node, info->fix.id);
  362. return 0;
  363. err:
  364. if (info->screen_base) {
  365. iounmap(info->screen_base);
  366. pci_release_region(pdev, 0);
  367. }
  368. if (par->vid_regs) {
  369. iounmap(par->vid_regs);
  370. pci_release_region(pdev, 3);
  371. }
  372. if (par->dc_regs) {
  373. iounmap(par->dc_regs);
  374. pci_release_region(pdev, 2);
  375. }
  376. if (par->gp_regs) {
  377. iounmap(par->gp_regs);
  378. pci_release_region(pdev, 1);
  379. }
  380. if (info) {
  381. fb_dealloc_cmap(&info->cmap);
  382. framebuffer_release(info);
  383. }
  384. return ret;
  385. }
  386. static void __devexit gxfb_remove(struct pci_dev *pdev)
  387. {
  388. struct fb_info *info = pci_get_drvdata(pdev);
  389. struct gxfb_par *par = info->par;
  390. unregister_framebuffer(info);
  391. iounmap((void __iomem *)info->screen_base);
  392. pci_release_region(pdev, 0);
  393. iounmap(par->vid_regs);
  394. pci_release_region(pdev, 3);
  395. iounmap(par->dc_regs);
  396. pci_release_region(pdev, 2);
  397. iounmap(par->gp_regs);
  398. pci_release_region(pdev, 1);
  399. fb_dealloc_cmap(&info->cmap);
  400. pci_set_drvdata(pdev, NULL);
  401. framebuffer_release(info);
  402. }
  403. static struct pci_device_id gxfb_id_table[] = {
  404. { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_GX_VIDEO) },
  405. { 0, }
  406. };
  407. MODULE_DEVICE_TABLE(pci, gxfb_id_table);
  408. static struct pci_driver gxfb_driver = {
  409. .name = "gxfb",
  410. .id_table = gxfb_id_table,
  411. .probe = gxfb_probe,
  412. .remove = gxfb_remove,
  413. #ifdef CONFIG_PM
  414. .suspend = gxfb_suspend,
  415. .resume = gxfb_resume,
  416. #endif
  417. };
  418. #ifndef MODULE
  419. static int __init gxfb_setup(char *options)
  420. {
  421. char *opt;
  422. if (!options || !*options)
  423. return 0;
  424. while ((opt = strsep(&options, ",")) != NULL) {
  425. if (!*opt)
  426. continue;
  427. mode_option = opt;
  428. }
  429. return 0;
  430. }
  431. #endif
  432. static int __init gxfb_init(void)
  433. {
  434. #ifndef MODULE
  435. char *option = NULL;
  436. if (fb_get_options("gxfb", &option))
  437. return -ENODEV;
  438. gxfb_setup(option);
  439. #endif
  440. return pci_register_driver(&gxfb_driver);
  441. }
  442. static void __exit gxfb_cleanup(void)
  443. {
  444. pci_unregister_driver(&gxfb_driver);
  445. }
  446. module_init(gxfb_init);
  447. module_exit(gxfb_cleanup);
  448. module_param(mode_option, charp, 0);
  449. MODULE_PARM_DESC(mode_option, "video mode (<x>x<y>[-<bpp>][@<refr>])");
  450. module_param(vram, int, 0);
  451. MODULE_PARM_DESC(vram, "video memory size");
  452. module_param(vt_switch, int, 0);
  453. MODULE_PARM_DESC(vt_switch, "enable VT switch during suspend/resume");
  454. MODULE_DESCRIPTION("Framebuffer driver for the AMD Geode GX");
  455. MODULE_LICENSE("GPL");