gx1fb_core.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  1. /*
  2. * drivers/video/geode/gx1fb_core.c
  3. * -- Geode GX1 framebuffer driver
  4. *
  5. * Copyright (C) 2005 Arcom Control Systems Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. */
  12. #include <linux/module.h>
  13. #include <linux/kernel.h>
  14. #include <linux/errno.h>
  15. #include <linux/string.h>
  16. #include <linux/mm.h>
  17. #include <linux/slab.h>
  18. #include <linux/delay.h>
  19. #include <linux/fb.h>
  20. #include <linux/init.h>
  21. #include <linux/pci.h>
  22. #include "geodefb.h"
  23. #include "display_gx1.h"
  24. #include "video_cs5530.h"
  25. static char mode_option[32] = "640x480-16@60";
  26. static int crt_option = 1;
  27. static char panel_option[32] = "";
  28. /* Modes relevant to the GX1 (taken from modedb.c) */
  29. static const struct fb_videomode __initdata gx1_modedb[] = {
  30. /* 640x480-60 VESA */
  31. { NULL, 60, 640, 480, 39682, 48, 16, 33, 10, 96, 2,
  32. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  33. /* 640x480-75 VESA */
  34. { NULL, 75, 640, 480, 31746, 120, 16, 16, 01, 64, 3,
  35. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  36. /* 640x480-85 VESA */
  37. { NULL, 85, 640, 480, 27777, 80, 56, 25, 01, 56, 3,
  38. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  39. /* 800x600-60 VESA */
  40. { NULL, 60, 800, 600, 25000, 88, 40, 23, 01, 128, 4,
  41. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  42. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  43. /* 800x600-75 VESA */
  44. { NULL, 75, 800, 600, 20202, 160, 16, 21, 01, 80, 3,
  45. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  46. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  47. /* 800x600-85 VESA */
  48. { NULL, 85, 800, 600, 17761, 152, 32, 27, 01, 64, 3,
  49. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  50. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  51. /* 1024x768-60 VESA */
  52. { NULL, 60, 1024, 768, 15384, 160, 24, 29, 3, 136, 6,
  53. 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  54. /* 1024x768-75 VESA */
  55. { NULL, 75, 1024, 768, 12690, 176, 16, 28, 1, 96, 3,
  56. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  57. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  58. /* 1024x768-85 VESA */
  59. { NULL, 85, 1024, 768, 10582, 208, 48, 36, 1, 96, 3,
  60. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  61. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  62. /* 1280x960-60 VESA */
  63. { NULL, 60, 1280, 960, 9259, 312, 96, 36, 1, 112, 3,
  64. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  65. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  66. /* 1280x960-85 VESA */
  67. { NULL, 85, 1280, 960, 6734, 224, 64, 47, 1, 160, 3,
  68. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  69. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  70. /* 1280x1024-60 VESA */
  71. { NULL, 60, 1280, 1024, 9259, 248, 48, 38, 1, 112, 3,
  72. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  73. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  74. /* 1280x1024-75 VESA */
  75. { NULL, 75, 1280, 1024, 7407, 248, 16, 38, 1, 144, 3,
  76. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  77. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  78. /* 1280x1024-85 VESA */
  79. { NULL, 85, 1280, 1024, 6349, 224, 64, 44, 1, 160, 3,
  80. FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
  81. FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
  82. };
  83. static int gx1_line_delta(int xres, int bpp)
  84. {
  85. int line_delta = xres * (bpp >> 3);
  86. if (line_delta > 2048)
  87. line_delta = 4096;
  88. else if (line_delta > 1024)
  89. line_delta = 2048;
  90. else
  91. line_delta = 1024;
  92. return line_delta;
  93. }
  94. static int gx1fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
  95. {
  96. struct geodefb_par *par = info->par;
  97. /* Maximum resolution is 1280x1024. */
  98. if (var->xres > 1280 || var->yres > 1024)
  99. return -EINVAL;
  100. if (par->panel_x && (var->xres > par->panel_x || var->yres > par->panel_y))
  101. return -EINVAL;
  102. /* Only 16 bpp and 8 bpp is supported by the hardware. */
  103. if (var->bits_per_pixel == 16) {
  104. var->red.offset = 11; var->red.length = 5;
  105. var->green.offset = 5; var->green.length = 6;
  106. var->blue.offset = 0; var->blue.length = 5;
  107. var->transp.offset = 0; var->transp.length = 0;
  108. } else if (var->bits_per_pixel == 8) {
  109. var->red.offset = 0; var->red.length = 8;
  110. var->green.offset = 0; var->green.length = 8;
  111. var->blue.offset = 0; var->blue.length = 8;
  112. var->transp.offset = 0; var->transp.length = 0;
  113. } else
  114. return -EINVAL;
  115. /* Enough video memory? */
  116. if (gx1_line_delta(var->xres, var->bits_per_pixel) * var->yres > info->fix.smem_len)
  117. return -EINVAL;
  118. /* FIXME: Check timing parameters here? */
  119. return 0;
  120. }
  121. static int gx1fb_set_par(struct fb_info *info)
  122. {
  123. struct geodefb_par *par = info->par;
  124. if (info->var.bits_per_pixel == 16)
  125. info->fix.visual = FB_VISUAL_TRUECOLOR;
  126. else
  127. info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
  128. info->fix.line_length = gx1_line_delta(info->var.xres, info->var.bits_per_pixel);
  129. par->dc_ops->set_mode(info);
  130. return 0;
  131. }
  132. static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf)
  133. {
  134. chan &= 0xffff;
  135. chan >>= 16 - bf->length;
  136. return chan << bf->offset;
  137. }
  138. static int gx1fb_setcolreg(unsigned regno, unsigned red, unsigned green,
  139. unsigned blue, unsigned transp,
  140. struct fb_info *info)
  141. {
  142. struct geodefb_par *par = info->par;
  143. if (info->var.grayscale) {
  144. /* grayscale = 0.30*R + 0.59*G + 0.11*B */
  145. red = green = blue = (red * 77 + green * 151 + blue * 28) >> 8;
  146. }
  147. /* Truecolor has hardware independent palette */
  148. if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
  149. u32 *pal = info->pseudo_palette;
  150. u32 v;
  151. if (regno >= 16)
  152. return -EINVAL;
  153. v = chan_to_field(red, &info->var.red);
  154. v |= chan_to_field(green, &info->var.green);
  155. v |= chan_to_field(blue, &info->var.blue);
  156. pal[regno] = v;
  157. } else {
  158. if (regno >= 256)
  159. return -EINVAL;
  160. par->dc_ops->set_palette_reg(info, regno, red, green, blue);
  161. }
  162. return 0;
  163. }
  164. static int gx1fb_blank(int blank_mode, struct fb_info *info)
  165. {
  166. struct geodefb_par *par = info->par;
  167. return par->vid_ops->blank_display(info, blank_mode);
  168. }
  169. static int __init gx1fb_map_video_memory(struct fb_info *info, struct pci_dev *dev)
  170. {
  171. struct geodefb_par *par = info->par;
  172. unsigned gx_base;
  173. int fb_len;
  174. int ret;
  175. gx_base = gx1_gx_base();
  176. if (!gx_base)
  177. return -ENODEV;
  178. ret = pci_enable_device(dev);
  179. if (ret < 0)
  180. return ret;
  181. ret = pci_request_region(dev, 0, "gx1fb (video)");
  182. if (ret < 0)
  183. return ret;
  184. par->vid_regs = pci_ioremap_bar(dev, 0);
  185. if (!par->vid_regs)
  186. return -ENOMEM;
  187. if (!request_mem_region(gx_base + 0x8300, 0x100, "gx1fb (display controller)"))
  188. return -EBUSY;
  189. par->dc_regs = ioremap(gx_base + 0x8300, 0x100);
  190. if (!par->dc_regs)
  191. return -ENOMEM;
  192. if ((fb_len = gx1_frame_buffer_size()) < 0)
  193. return -ENOMEM;
  194. info->fix.smem_start = gx_base + 0x800000;
  195. info->fix.smem_len = fb_len;
  196. info->screen_base = ioremap(info->fix.smem_start, info->fix.smem_len);
  197. if (!info->screen_base)
  198. return -ENOMEM;
  199. dev_info(&dev->dev, "%d Kibyte of video memory at 0x%lx\n",
  200. info->fix.smem_len / 1024, info->fix.smem_start);
  201. return 0;
  202. }
  203. static int parse_panel_option(struct fb_info *info)
  204. {
  205. struct geodefb_par *par = info->par;
  206. if (strcmp(panel_option, "") != 0) {
  207. int x, y;
  208. char *s;
  209. x = simple_strtol(panel_option, &s, 10);
  210. if (!x)
  211. return -EINVAL;
  212. y = simple_strtol(s + 1, NULL, 10);
  213. if (!y)
  214. return -EINVAL;
  215. par->panel_x = x;
  216. par->panel_y = y;
  217. }
  218. return 0;
  219. }
  220. static struct fb_ops gx1fb_ops = {
  221. .owner = THIS_MODULE,
  222. .fb_check_var = gx1fb_check_var,
  223. .fb_set_par = gx1fb_set_par,
  224. .fb_setcolreg = gx1fb_setcolreg,
  225. .fb_blank = gx1fb_blank,
  226. /* No HW acceleration for now. */
  227. .fb_fillrect = cfb_fillrect,
  228. .fb_copyarea = cfb_copyarea,
  229. .fb_imageblit = cfb_imageblit,
  230. };
  231. static struct fb_info * __init gx1fb_init_fbinfo(struct device *dev)
  232. {
  233. struct geodefb_par *par;
  234. struct fb_info *info;
  235. /* Alloc enough space for the pseudo palette. */
  236. info = framebuffer_alloc(sizeof(struct geodefb_par) + sizeof(u32) * 16, dev);
  237. if (!info)
  238. return NULL;
  239. par = info->par;
  240. strcpy(info->fix.id, "GX1");
  241. info->fix.type = FB_TYPE_PACKED_PIXELS;
  242. info->fix.type_aux = 0;
  243. info->fix.xpanstep = 0;
  244. info->fix.ypanstep = 0;
  245. info->fix.ywrapstep = 0;
  246. info->fix.accel = FB_ACCEL_NONE;
  247. info->var.nonstd = 0;
  248. info->var.activate = FB_ACTIVATE_NOW;
  249. info->var.height = -1;
  250. info->var.width = -1;
  251. info->var.accel_flags = 0;
  252. info->var.vmode = FB_VMODE_NONINTERLACED;
  253. info->fbops = &gx1fb_ops;
  254. info->flags = FBINFO_DEFAULT;
  255. info->node = -1;
  256. info->pseudo_palette = (void *)par + sizeof(struct geodefb_par);
  257. info->var.grayscale = 0;
  258. /* CRT and panel options */
  259. par->enable_crt = crt_option;
  260. if (parse_panel_option(info) < 0)
  261. printk(KERN_WARNING "gx1fb: invalid 'panel' option -- disabling flat panel\n");
  262. if (!par->panel_x)
  263. par->enable_crt = 1; /* fall back to CRT if no panel is specified */
  264. if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) {
  265. framebuffer_release(info);
  266. return NULL;
  267. }
  268. return info;
  269. }
  270. static int __init gx1fb_probe(struct pci_dev *pdev, const struct pci_device_id *id)
  271. {
  272. struct geodefb_par *par;
  273. struct fb_info *info;
  274. int ret;
  275. info = gx1fb_init_fbinfo(&pdev->dev);
  276. if (!info)
  277. return -ENOMEM;
  278. par = info->par;
  279. /* GX1 display controller and CS5530 video device */
  280. par->dc_ops = &gx1_dc_ops;
  281. par->vid_ops = &cs5530_vid_ops;
  282. if ((ret = gx1fb_map_video_memory(info, pdev)) < 0) {
  283. dev_err(&pdev->dev, "failed to map frame buffer or controller registers\n");
  284. goto err;
  285. }
  286. ret = fb_find_mode(&info->var, info, mode_option,
  287. gx1_modedb, ARRAY_SIZE(gx1_modedb), NULL, 16);
  288. if (ret == 0 || ret == 4) {
  289. dev_err(&pdev->dev, "could not find valid video mode\n");
  290. ret = -EINVAL;
  291. goto err;
  292. }
  293. /* Clear the frame buffer of garbage. */
  294. memset_io(info->screen_base, 0, info->fix.smem_len);
  295. gx1fb_check_var(&info->var, info);
  296. gx1fb_set_par(info);
  297. if (register_framebuffer(info) < 0) {
  298. ret = -EINVAL;
  299. goto err;
  300. }
  301. pci_set_drvdata(pdev, info);
  302. printk(KERN_INFO "fb%d: %s frame buffer device\n", info->node, info->fix.id);
  303. return 0;
  304. err:
  305. if (info->screen_base) {
  306. iounmap(info->screen_base);
  307. pci_release_region(pdev, 0);
  308. }
  309. if (par->vid_regs) {
  310. iounmap(par->vid_regs);
  311. pci_release_region(pdev, 1);
  312. }
  313. if (par->dc_regs) {
  314. iounmap(par->dc_regs);
  315. release_mem_region(gx1_gx_base() + 0x8300, 0x100);
  316. }
  317. if (info) {
  318. fb_dealloc_cmap(&info->cmap);
  319. framebuffer_release(info);
  320. }
  321. return ret;
  322. }
  323. static void gx1fb_remove(struct pci_dev *pdev)
  324. {
  325. struct fb_info *info = pci_get_drvdata(pdev);
  326. struct geodefb_par *par = info->par;
  327. unregister_framebuffer(info);
  328. iounmap((void __iomem *)info->screen_base);
  329. pci_release_region(pdev, 0);
  330. iounmap(par->vid_regs);
  331. pci_release_region(pdev, 1);
  332. iounmap(par->dc_regs);
  333. release_mem_region(gx1_gx_base() + 0x8300, 0x100);
  334. fb_dealloc_cmap(&info->cmap);
  335. pci_set_drvdata(pdev, NULL);
  336. framebuffer_release(info);
  337. }
  338. #ifndef MODULE
  339. static void __init gx1fb_setup(char *options)
  340. {
  341. char *this_opt;
  342. if (!options || !*options)
  343. return;
  344. while ((this_opt = strsep(&options, ","))) {
  345. if (!*this_opt)
  346. continue;
  347. if (!strncmp(this_opt, "mode:", 5))
  348. strlcpy(mode_option, this_opt + 5, sizeof(mode_option));
  349. else if (!strncmp(this_opt, "crt:", 4))
  350. crt_option = !!simple_strtoul(this_opt + 4, NULL, 0);
  351. else if (!strncmp(this_opt, "panel:", 6))
  352. strlcpy(panel_option, this_opt + 6, sizeof(panel_option));
  353. else
  354. strlcpy(mode_option, this_opt, sizeof(mode_option));
  355. }
  356. }
  357. #endif
  358. static struct pci_device_id gx1fb_id_table[] = {
  359. { PCI_VENDOR_ID_CYRIX, PCI_DEVICE_ID_CYRIX_5530_VIDEO,
  360. PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
  361. 0xff0000, 0 },
  362. { 0, }
  363. };
  364. MODULE_DEVICE_TABLE(pci, gx1fb_id_table);
  365. static struct pci_driver gx1fb_driver = {
  366. .name = "gx1fb",
  367. .id_table = gx1fb_id_table,
  368. .probe = gx1fb_probe,
  369. .remove = gx1fb_remove,
  370. };
  371. static int __init gx1fb_init(void)
  372. {
  373. #ifndef MODULE
  374. char *option = NULL;
  375. if (fb_get_options("gx1fb", &option))
  376. return -ENODEV;
  377. gx1fb_setup(option);
  378. #endif
  379. return pci_register_driver(&gx1fb_driver);
  380. }
  381. static void __exit gx1fb_cleanup(void)
  382. {
  383. pci_unregister_driver(&gx1fb_driver);
  384. }
  385. module_init(gx1fb_init);
  386. module_exit(gx1fb_cleanup);
  387. module_param_string(mode, mode_option, sizeof(mode_option), 0444);
  388. MODULE_PARM_DESC(mode, "video mode (<x>x<y>[-<bpp>][@<refr>])");
  389. module_param_named(crt, crt_option, int, 0444);
  390. MODULE_PARM_DESC(crt, "enable CRT output. 0 = off, 1 = on (default)");
  391. module_param_string(panel, panel_option, sizeof(panel_option), 0444);
  392. MODULE_PARM_DESC(panel, "size of attached flat panel (<x>x<y>)");
  393. MODULE_DESCRIPTION("framebuffer driver for the AMD Geode GX1");
  394. MODULE_LICENSE("GPL");