gxfb_core.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  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/slab.h>
  29. #include <linux/delay.h>
  30. #include <linux/fb.h>
  31. #include <linux/init.h>
  32. #include <linux/pci.h>
  33. #include "geodefb.h"
  34. #include "display_gx.h"
  35. #include "video_gx.h"
  36. static char *mode_option;
  37. /* Modes relevant to the GX (taken from modedb.c) */
  38. static const struct fb_videomode gx_modedb[] __initdata = {
  39. /* 640x480-60 VESA */
  40. { NULL, 60, 640, 480, 39682, 48, 16, 33, 10, 96, 2,
  41. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  42. /* 640x480-75 VESA */
  43. { NULL, 75, 640, 480, 31746, 120, 16, 16, 01, 64, 3,
  44. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  45. /* 640x480-85 VESA */
  46. { NULL, 85, 640, 480, 27777, 80, 56, 25, 01, 56, 3,
  47. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  48. /* 800x600-60 VESA */
  49. { NULL, 60, 800, 600, 25000, 88, 40, 23, 01, 128, 4,
  50. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  51. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  52. /* 800x600-75 VESA */
  53. { NULL, 75, 800, 600, 20202, 160, 16, 21, 01, 80, 3,
  54. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  55. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  56. /* 800x600-85 VESA */
  57. { NULL, 85, 800, 600, 17761, 152, 32, 27, 01, 64, 3,
  58. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  59. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  60. /* 1024x768-60 VESA */
  61. { NULL, 60, 1024, 768, 15384, 160, 24, 29, 3, 136, 6,
  62. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  63. /* 1024x768-75 VESA */
  64. { NULL, 75, 1024, 768, 12690, 176, 16, 28, 1, 96, 3,
  65. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  66. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  67. /* 1024x768-85 VESA */
  68. { NULL, 85, 1024, 768, 10582, 208, 48, 36, 1, 96, 3,
  69. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  70. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  71. /* 1280x960-60 VESA */
  72. { NULL, 60, 1280, 960, 9259, 312, 96, 36, 1, 112, 3,
  73. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  74. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  75. /* 1280x960-85 VESA */
  76. { NULL, 85, 1280, 960, 6734, 224, 64, 47, 1, 160, 3,
  77. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  78. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  79. /* 1280x1024-60 VESA */
  80. { NULL, 60, 1280, 1024, 9259, 248, 48, 38, 1, 112, 3,
  81. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  82. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  83. /* 1280x1024-75 VESA */
  84. { NULL, 75, 1280, 1024, 7407, 248, 16, 38, 1, 144, 3,
  85. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  86. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  87. /* 1280x1024-85 VESA */
  88. { NULL, 85, 1280, 1024, 6349, 224, 64, 44, 1, 160, 3,
  89. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  90. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  91. /* 1600x1200-60 VESA */
  92. { NULL, 60, 1600, 1200, 6172, 304, 64, 46, 1, 192, 3,
  93. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  94. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  95. /* 1600x1200-75 VESA */
  96. { NULL, 75, 1600, 1200, 4938, 304, 64, 46, 1, 192, 3,
  97. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  98. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  99. /* 1600x1200-85 VESA */
  100. { NULL, 85, 1600, 1200, 4357, 304, 64, 46, 1, 192, 3,
  101. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  102. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  103. };
  104. static int gxfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
  105. {
  106. if (var->xres > 1600 || var->yres > 1200)
  107. return -EINVAL;
  108. if ((var->xres > 1280 || var->yres > 1024) && var->bits_per_pixel > 16)
  109. return -EINVAL;
  110. if (var->bits_per_pixel == 32) {
  111. var->red.offset = 16; var->red.length = 8;
  112. var->green.offset = 8; var->green.length = 8;
  113. var->blue.offset = 0; var->blue.length = 8;
  114. } else if (var->bits_per_pixel == 16) {
  115. var->red.offset = 11; var->red.length = 5;
  116. var->green.offset = 5; var->green.length = 6;
  117. var->blue.offset = 0; var->blue.length = 5;
  118. } else if (var->bits_per_pixel == 8) {
  119. var->red.offset = 0; var->red.length = 8;
  120. var->green.offset = 0; var->green.length = 8;
  121. var->blue.offset = 0; var->blue.length = 8;
  122. } else
  123. return -EINVAL;
  124. var->transp.offset = 0; var->transp.length = 0;
  125. /* Enough video memory? */
  126. if (gx_line_delta(var->xres, var->bits_per_pixel) * var->yres > info->fix.smem_len)
  127. return -EINVAL;
  128. /* FIXME: Check timing parameters here? */
  129. return 0;
  130. }
  131. static int gxfb_set_par(struct fb_info *info)
  132. {
  133. struct geodefb_par *par = info->par;
  134. if (info->var.bits_per_pixel > 8) {
  135. info->fix.visual = FB_VISUAL_TRUECOLOR;
  136. fb_dealloc_cmap(&info->cmap);
  137. } else {
  138. info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
  139. fb_alloc_cmap(&info->cmap, 1<<info->var.bits_per_pixel, 0);
  140. }
  141. info->fix.line_length = gx_line_delta(info->var.xres, info->var.bits_per_pixel);
  142. par->dc_ops->set_mode(info);
  143. return 0;
  144. }
  145. static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf)
  146. {
  147. chan &= 0xffff;
  148. chan >>= 16 - bf->length;
  149. return chan << bf->offset;
  150. }
  151. static int gxfb_setcolreg(unsigned regno, unsigned red, unsigned green,
  152. unsigned blue, unsigned transp,
  153. struct fb_info *info)
  154. {
  155. struct geodefb_par *par = info->par;
  156. if (info->var.grayscale) {
  157. /* grayscale = 0.30*R + 0.59*G + 0.11*B */
  158. red = green = blue = (red * 77 + green * 151 + blue * 28) >> 8;
  159. }
  160. /* Truecolor has hardware independent palette */
  161. if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
  162. u32 *pal = info->pseudo_palette;
  163. u32 v;
  164. if (regno >= 16)
  165. return -EINVAL;
  166. v = chan_to_field(red, &info->var.red);
  167. v |= chan_to_field(green, &info->var.green);
  168. v |= chan_to_field(blue, &info->var.blue);
  169. pal[regno] = v;
  170. } else {
  171. if (regno >= 256)
  172. return -EINVAL;
  173. par->dc_ops->set_palette_reg(info, regno, red, green, blue);
  174. }
  175. return 0;
  176. }
  177. static int gxfb_blank(int blank_mode, struct fb_info *info)
  178. {
  179. struct geodefb_par *par = info->par;
  180. return par->vid_ops->blank_display(info, blank_mode);
  181. }
  182. static int __init gxfb_map_video_memory(struct fb_info *info, struct pci_dev *dev)
  183. {
  184. struct geodefb_par *par = info->par;
  185. int fb_len;
  186. int ret;
  187. ret = pci_enable_device(dev);
  188. if (ret < 0)
  189. return ret;
  190. ret = pci_request_region(dev, 3, "gxfb (video processor)");
  191. if (ret < 0)
  192. return ret;
  193. par->vid_regs = ioremap(pci_resource_start(dev, 3),
  194. pci_resource_len(dev, 3));
  195. if (!par->vid_regs)
  196. return -ENOMEM;
  197. ret = pci_request_region(dev, 2, "gxfb (display controller)");
  198. if (ret < 0)
  199. return ret;
  200. par->dc_regs = ioremap(pci_resource_start(dev, 2), pci_resource_len(dev, 2));
  201. if (!par->dc_regs)
  202. return -ENOMEM;
  203. ret = pci_request_region(dev, 0, "gxfb (framebuffer)");
  204. if (ret < 0)
  205. return ret;
  206. if ((fb_len = gx_frame_buffer_size()) < 0)
  207. return -ENOMEM;
  208. info->fix.smem_start = pci_resource_start(dev, 0);
  209. info->fix.smem_len = fb_len;
  210. info->screen_base = ioremap(info->fix.smem_start, info->fix.smem_len);
  211. if (!info->screen_base)
  212. return -ENOMEM;
  213. /* Set the 16MB aligned base address of the graphics memory region
  214. * in the display controller */
  215. writel(info->fix.smem_start & 0xFF000000,
  216. par->dc_regs + DC_GLIU0_MEM_OFFSET);
  217. dev_info(&dev->dev, "%d Kibyte of video memory at 0x%lx\n",
  218. info->fix.smem_len / 1024, info->fix.smem_start);
  219. return 0;
  220. }
  221. static struct fb_ops gxfb_ops = {
  222. .owner = THIS_MODULE,
  223. .fb_check_var = gxfb_check_var,
  224. .fb_set_par = gxfb_set_par,
  225. .fb_setcolreg = gxfb_setcolreg,
  226. .fb_blank = gxfb_blank,
  227. /* No HW acceleration for now. */
  228. .fb_fillrect = cfb_fillrect,
  229. .fb_copyarea = cfb_copyarea,
  230. .fb_imageblit = cfb_imageblit,
  231. };
  232. static struct fb_info * __init gxfb_init_fbinfo(struct device *dev)
  233. {
  234. struct geodefb_par *par;
  235. struct fb_info *info;
  236. /* Alloc enough space for the pseudo palette. */
  237. info = framebuffer_alloc(sizeof(struct geodefb_par) + sizeof(u32) * 16, dev);
  238. if (!info)
  239. return NULL;
  240. par = info->par;
  241. strcpy(info->fix.id, "Geode GX");
  242. info->fix.type = FB_TYPE_PACKED_PIXELS;
  243. info->fix.type_aux = 0;
  244. info->fix.xpanstep = 0;
  245. info->fix.ypanstep = 0;
  246. info->fix.ywrapstep = 0;
  247. info->fix.accel = FB_ACCEL_NONE;
  248. info->var.nonstd = 0;
  249. info->var.activate = FB_ACTIVATE_NOW;
  250. info->var.height = -1;
  251. info->var.width = -1;
  252. info->var.accel_flags = 0;
  253. info->var.vmode = FB_VMODE_NONINTERLACED;
  254. info->fbops = &gxfb_ops;
  255. info->flags = FBINFO_DEFAULT;
  256. info->node = -1;
  257. info->pseudo_palette = (void *)par + sizeof(struct geodefb_par);
  258. info->var.grayscale = 0;
  259. return info;
  260. }
  261. static int __init gxfb_probe(struct pci_dev *pdev, const struct pci_device_id *id)
  262. {
  263. struct geodefb_par *par;
  264. struct fb_info *info;
  265. int ret;
  266. unsigned long val;
  267. info = gxfb_init_fbinfo(&pdev->dev);
  268. if (!info)
  269. return -ENOMEM;
  270. par = info->par;
  271. /* GX display controller and GX video device. */
  272. par->dc_ops = &gx_dc_ops;
  273. par->vid_ops = &gx_vid_ops;
  274. if ((ret = gxfb_map_video_memory(info, pdev)) < 0) {
  275. dev_err(&pdev->dev, "failed to map frame buffer or controller registers\n");
  276. goto err;
  277. }
  278. /* Figure out if this is a TFT or CRT part */
  279. rdmsrl(GLD_MSR_CONFIG, val);
  280. if ((val & GLD_MSR_CONFIG_DM_FP) == GLD_MSR_CONFIG_DM_FP)
  281. par->enable_crt = 0;
  282. else
  283. par->enable_crt = 1;
  284. ret = fb_find_mode(&info->var, info, mode_option,
  285. gx_modedb, ARRAY_SIZE(gx_modedb), NULL, 16);
  286. if (ret == 0 || ret == 4) {
  287. dev_err(&pdev->dev, "could not find valid video mode\n");
  288. ret = -EINVAL;
  289. goto err;
  290. }
  291. /* Clear the frame buffer of garbage. */
  292. memset_io(info->screen_base, 0, info->fix.smem_len);
  293. gxfb_check_var(&info->var, info);
  294. gxfb_set_par(info);
  295. if (register_framebuffer(info) < 0) {
  296. ret = -EINVAL;
  297. goto err;
  298. }
  299. pci_set_drvdata(pdev, info);
  300. printk(KERN_INFO "fb%d: %s frame buffer device\n", info->node, info->fix.id);
  301. return 0;
  302. err:
  303. if (info->screen_base) {
  304. iounmap(info->screen_base);
  305. pci_release_region(pdev, 0);
  306. }
  307. if (par->vid_regs) {
  308. iounmap(par->vid_regs);
  309. pci_release_region(pdev, 3);
  310. }
  311. if (par->dc_regs) {
  312. iounmap(par->dc_regs);
  313. pci_release_region(pdev, 2);
  314. }
  315. if (info)
  316. framebuffer_release(info);
  317. return ret;
  318. }
  319. static void gxfb_remove(struct pci_dev *pdev)
  320. {
  321. struct fb_info *info = pci_get_drvdata(pdev);
  322. struct geodefb_par *par = info->par;
  323. unregister_framebuffer(info);
  324. iounmap((void __iomem *)info->screen_base);
  325. pci_release_region(pdev, 0);
  326. iounmap(par->vid_regs);
  327. pci_release_region(pdev, 3);
  328. iounmap(par->dc_regs);
  329. pci_release_region(pdev, 2);
  330. pci_set_drvdata(pdev, NULL);
  331. framebuffer_release(info);
  332. }
  333. static struct pci_device_id gxfb_id_table[] = {
  334. { PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_GX_VIDEO,
  335. PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
  336. 0xff0000, 0 },
  337. { 0, }
  338. };
  339. MODULE_DEVICE_TABLE(pci, gxfb_id_table);
  340. static struct pci_driver gxfb_driver = {
  341. .name = "gxfb",
  342. .id_table = gxfb_id_table,
  343. .probe = gxfb_probe,
  344. .remove = gxfb_remove,
  345. };
  346. #ifndef MODULE
  347. static int __init gxfb_setup(char *options)
  348. {
  349. char *opt;
  350. if (!options || !*options)
  351. return 0;
  352. while ((opt = strsep(&options, ",")) != NULL) {
  353. if (!*opt)
  354. continue;
  355. mode_option = opt;
  356. }
  357. return 0;
  358. }
  359. #endif
  360. static int __init gxfb_init(void)
  361. {
  362. #ifndef MODULE
  363. char *option = NULL;
  364. if (fb_get_options("gxfb", &option))
  365. return -ENODEV;
  366. gxfb_setup(option);
  367. #endif
  368. return pci_register_driver(&gxfb_driver);
  369. }
  370. static void __exit gxfb_cleanup(void)
  371. {
  372. pci_unregister_driver(&gxfb_driver);
  373. }
  374. module_init(gxfb_init);
  375. module_exit(gxfb_cleanup);
  376. module_param(mode_option, charp, 0);
  377. MODULE_PARM_DESC(mode_option, "video mode (<x>x<y>[-<bpp>][@<refr>])");
  378. MODULE_DESCRIPTION("Framebuffer driver for the AMD Geode GX");
  379. MODULE_LICENSE("GPL");