hpfb.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * HP300 Topcat framebuffer support (derived from macfb of all things)
  3.  * Phil Blundell <philb@gnu.org> 1998
  4.  * 
  5.  * Should this be moved to drivers/dio/video/ ? -- Peter Maydell
  6.  * No! -- Jes
  7.  */
  8. #include <linux/module.h>
  9. #include <linux/kernel.h>
  10. #include <linux/sched.h>
  11. #include <linux/errno.h>
  12. #include <linux/string.h>
  13. #include <linux/mm.h>
  14. #include <linux/tty.h>
  15. #include <linux/slab.h>
  16. #include <linux/delay.h>
  17. #include <linux/init.h>
  18. #include <linux/fb.h>
  19. #include <linux/dio.h>
  20. #include <asm/io.h>
  21. #include <asm/blinken.h>
  22. #include <asm/hwtest.h>
  23. #include <video/fbcon.h>
  24. #include <video/fbcon-mfb.h>
  25. #include <video/fbcon-cfb2.h>
  26. #include <video/fbcon-cfb4.h>
  27. #include <video/fbcon-cfb8.h>
  28. static struct display disp;
  29. static struct fb_info fb_info;
  30. unsigned long fb_start, fb_size = 1024*768, fb_line_length = 1024;
  31. unsigned long fb_regs;
  32. unsigned char fb_bitmask;
  33. #define TC_WEN 0x4088
  34. #define TC_REN 0x408c
  35. #define TC_FBEN 0x4090
  36. #define TC_NBLANK 0x4080
  37. /* blitter regs */
  38. #define BUSY 0x4044
  39. #define WMRR 0x40ef
  40. #define SOURCE_X 0x40f2
  41. #define SOURCE_Y 0x40f6
  42. #define DEST_X 0x40fa
  43. #define DEST_Y 0x40fe
  44. #define WHEIGHT 0x4106
  45. #define WWIDTH 0x4102
  46. #define WMOVE 0x409c
  47. static struct fb_var_screeninfo hpfb_defined = {
  48. 0,0,0,0, /* W,H, W, H (virtual) load xres,xres_virtual*/
  49. 0,0, /* virtual -> visible no offset */
  50. 0, /* depth -> load bits_per_pixel */
  51. 0, /* greyscale ? */
  52. {0,2,0}, /* R */
  53. {0,2,0}, /* G */
  54. {0,2,0}, /* B */
  55. {0,0,0}, /* transparency */
  56. 0, /* standard pixel format */
  57. FB_ACTIVATE_NOW,
  58. 274,195, /* 14" monitor */
  59. FB_ACCEL_NONE,
  60. 0L,0L,0L,0L,0L,
  61. 0L,0L,0, /* No sync info */
  62. FB_VMODE_NONINTERLACED,
  63. {0,0,0,0,0,0}
  64. };
  65. struct hpfb_par
  66. {
  67. };
  68. static int currcon = 0;
  69. struct hpfb_par current_par;
  70. static void hpfb_encode_var(struct fb_var_screeninfo *var, 
  71. struct hpfb_par *par)
  72. {
  73. int i=0;
  74. var->xres=1024;
  75. var->yres=768;
  76. var->xres_virtual=1024;
  77. var->yres_virtual=768;
  78. var->xoffset=0;
  79. var->yoffset=0;
  80. var->bits_per_pixel = 1;
  81. var->grayscale=0;
  82. var->transp.offset=0;
  83. var->transp.length=0;
  84. var->transp.msb_right=0;
  85. var->nonstd=0;
  86. var->activate=0;
  87. var->height= -1;
  88. var->width= -1;
  89. var->vmode=FB_VMODE_NONINTERLACED;
  90. var->pixclock=0;
  91. var->sync=0;
  92. var->left_margin=0;
  93. var->right_margin=0;
  94. var->upper_margin=0;
  95. var->lower_margin=0;
  96. var->hsync_len=0;
  97. var->vsync_len=0;
  98. for(i=0;i<ARRAY_SIZE(var->reserved);i++)
  99. var->reserved[i]=0;
  100. }
  101. static void hpfb_get_par(struct hpfb_par *par)
  102. {
  103. *par=current_par;
  104. }
  105. static int fb_update_var(int con, struct fb_info *info)
  106. {
  107. return 0;
  108. }
  109. static int do_fb_set_var(struct fb_var_screeninfo *var, int isactive)
  110. {
  111. struct hpfb_par par;
  112. hpfb_get_par(&par);
  113. hpfb_encode_var(var, &par);
  114. return 0;
  115. }
  116. static int hpfb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  117.   struct fb_info *info)
  118. {
  119. return 0;
  120. }
  121. /*
  122.  * Set the palette.  This may not work on all boards but only experimentation will tell.
  123.  * XXX Doesn't work at all.
  124.  */
  125. static int hpfb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  126.   struct fb_info *info)
  127. {
  128. unsigned int i;
  129. for (i = 0; i < cmap->len; i++)
  130. {
  131. while (in_be16(fb_regs + 0x6002) & 0x4) udelay(1);
  132. out_be16(fb_regs + 0x60f0, 0);
  133. out_be16(fb_regs + 0x60b8, cmap->start + i);
  134. out_be16(fb_regs + 0x60b2, cmap->red[i]);
  135. out_be16(fb_regs + 0x60b4, cmap->green[i]);
  136. out_be16(fb_regs + 0x60b6, cmap->blue[i]);
  137. out_be16(fb_regs + 0x60f0, 0xff);
  138. udelay(100);
  139. }
  140. out_be16(fb_regs + 0x60ba, 0xffff);
  141. return 0;
  142. }
  143. static int hpfb_get_var(struct fb_var_screeninfo *var, int con,
  144.  struct fb_info *info)
  145. {
  146. struct hpfb_par par;
  147. if(con==-1)
  148. {
  149. hpfb_get_par(&par);
  150. hpfb_encode_var(var, &par);
  151. }
  152. else
  153. *var=fb_display[con].var;
  154. return 0;
  155. }
  156. static int hpfb_set_var(struct fb_var_screeninfo *var, int con,
  157.  struct fb_info *info)
  158. {
  159. int err;
  160. if ((err=do_fb_set_var(var, 1)))
  161. return err;
  162. return 0;
  163. }
  164. static void hpfb_encode_fix(struct fb_fix_screeninfo *fix, 
  165. struct hpfb_par *par)
  166. {
  167. memset(fix, 0, sizeof(struct fb_fix_screeninfo));
  168. strcpy(fix->id, "HP300 Topcat");
  169. /*
  170.  * X works, but screen wraps ... 
  171.  */
  172. fix->smem_start=fb_start;
  173. fix->smem_len=fb_size;
  174. fix->type = FB_TYPE_PACKED_PIXELS;
  175. fix->visual = FB_VISUAL_PSEUDOCOLOR;
  176. fix->xpanstep=0;
  177. fix->ypanstep=0;
  178. fix->ywrapstep=0;
  179. fix->line_length=fb_line_length;
  180. }
  181. static int hpfb_get_fix(struct fb_fix_screeninfo *fix, int con,
  182.  struct fb_info *info)
  183. {
  184. struct hpfb_par par;
  185. hpfb_get_par(&par);
  186. hpfb_encode_fix(fix, &par);
  187. return 0;
  188. }
  189. static void topcat_blit(int x0, int y0, int x1, int y1, int w, int h)
  190. {
  191. while (in_8(fb_regs + BUSY) & fb_bitmask);
  192. out_8(fb_regs + WMRR, 0x3);
  193. out_be16(fb_regs + SOURCE_X, x0);
  194. out_be16(fb_regs + SOURCE_Y, y0);
  195. out_be16(fb_regs + DEST_X, x1);
  196. out_be16(fb_regs + DEST_Y, y1);
  197. out_be16(fb_regs + WHEIGHT, h);
  198. out_be16(fb_regs + WWIDTH, w);
  199. out_8(fb_regs + WMOVE, fb_bitmask);
  200. }
  201. static int hpfb_switch(int con, struct fb_info *info)
  202. {
  203. do_fb_set_var(&fb_display[con].var,1);
  204. currcon=con;
  205. return 0;
  206. }
  207. /* 0 unblank, 1 blank, 2 no vsync, 3 no hsync, 4 off */
  208. static void hpfb_blank(int blank, struct fb_info *info)
  209. {
  210. /* Not supported */
  211. }
  212. static void hpfb_set_disp(int con)
  213. {
  214. struct fb_fix_screeninfo fix;
  215. struct display *display;
  216. if (con >= 0)
  217. display = &fb_display[con];
  218. else
  219. display = &disp; /* used during initialization */
  220. hpfb_get_fix(&fix, con, 0);
  221. display->screen_base = (char *)fix.smem_start;
  222. display->visual = fix.visual;
  223. display->type = fix.type;
  224. display->type_aux = fix.type_aux;
  225. display->ypanstep = fix.ypanstep;
  226. display->ywrapstep = fix.ywrapstep;
  227. display->line_length = fix.line_length;
  228. display->next_line = fix.line_length;
  229. display->can_soft_blank = 0;
  230. display->inverse = 0;
  231. #ifdef FBCON_HAS_CFB8
  232. display->dispsw = &fbcon_cfb8;
  233. #else
  234. display->dispsw = &fbcon_dummy;
  235. #endif
  236. }
  237. static struct fb_ops hpfb_ops = {
  238. owner: THIS_MODULE,
  239. fb_get_fix: hpfb_get_fix,
  240. fb_get_var: hpfb_get_var,
  241. fb_set_var: hpfb_set_var,
  242. fb_get_cmap: hpfb_get_cmap,
  243. fb_set_cmap: hpfb_set_cmap,
  244. };
  245. #define TOPCAT_FBOMSB 0x5d
  246. #define TOPCAT_FBOLSB 0x5f
  247. int __init hpfb_init_one(unsigned long base)
  248. {
  249. unsigned long fboff;
  250. fboff = (in_8(base + TOPCAT_FBOMSB) << 8) | in_8(base + TOPCAT_FBOLSB);
  251. fb_start = 0xf0000000 | (in_8(base + fboff) << 16);
  252. fb_regs = base;
  253. #if 0
  254. /* This is the magic incantation NetBSD uses to make Catseye boards work. */
  255. out_8(base+0x4800, 0);
  256. out_8(base+0x4510, 0);
  257. out_8(base+0x4512, 0);
  258. out_8(base+0x4514, 0);
  259. out_8(base+0x4516, 0);
  260. out_8(base+0x4206, 0x90);
  261. #endif
  262. /*
  263.  * Fill in the available video resolution
  264.  */
  265.  
  266. hpfb_defined.xres = 1024;
  267. hpfb_defined.yres = 768;
  268. hpfb_defined.xres_virtual = 1024;
  269. hpfb_defined.yres_virtual = 768;
  270. hpfb_defined.bits_per_pixel = 8;
  271. /* 
  272.  * Give the hardware a bit of a prod and work out how many bits per
  273.  * pixel are supported.
  274.  */
  275. out_8(base + TC_WEN, 0xff);
  276. out_8(base + TC_FBEN, 0xff);
  277. out_8(fb_start, 0xff);
  278. fb_bitmask = in_8(fb_start);
  279. /*
  280.  * Enable reading/writing of all the planes.
  281.  */
  282. out_8(base + TC_WEN, fb_bitmask);
  283. out_8(base + TC_REN, fb_bitmask);
  284. out_8(base + TC_FBEN, fb_bitmask);
  285. out_8(base + TC_NBLANK, 0x1);
  286. /*
  287.  * Let there be consoles..
  288.  */
  289. strcpy(fb_info.modename, "Topcat");
  290. fb_info.changevar = NULL;
  291. fb_info.node = -1;
  292. fb_info.fbops = &hpfb_ops;
  293. fb_info.disp = &disp;
  294. fb_info.switch_con = &hpfb_switch;
  295. fb_info.updatevar = &fb_update_var;
  296. fb_info.blank = &hpfb_blank;
  297. fb_info.flags = FBINFO_FLAG_DEFAULT;
  298. do_fb_set_var(&hpfb_defined, 1);
  299. hpfb_get_var(&disp.var, -1, &fb_info);
  300. hpfb_set_disp(-1);
  301. if (register_framebuffer(&fb_info) < 0)
  302. return 1;
  303. return 0;
  304. }
  305. /* 
  306.  * Check that the secondary ID indicates that we have some hope of working with this
  307.  * framebuffer.  The catseye boards are pretty much like topcats and we can muddle through.
  308.  */
  309. #define topcat_sid_ok(x)  (((x) == DIO_ID2_LRCATSEYE) || ((x) == DIO_ID2_HRCCATSEYE)    
  310.    || ((x) == DIO_ID2_HRMCATSEYE) || ((x) == DIO_ID2_TOPCAT))
  311. /* 
  312.  * Initialise the framebuffer
  313.  */
  314. int __init hpfb_init(void)
  315. {
  316. unsigned int sid;
  317. /* Topcats can be on the internal IO bus or real DIO devices.
  318.  * The internal variant sits at 0xf0560000; it has primary
  319.  * and secondary ID registers just like the DIO version.
  320.  * So we merge the two detection routines.
  321.  *
  322.  * Perhaps this #define should be in a global header file:
  323.  * I believe it's common to all internal fbs, not just topcat.
  324.  */
  325. #define INTFBADDR 0xf0560000
  326. if (hwreg_present((void *)INTFBADDR) && (DIO_ID(INTFBADDR) == DIO_ID_FBUFFER)
  327. && topcat_sid_ok(sid = DIO_SECID(INTFBADDR)))
  328. {
  329. printk("Internal Topcat found (secondary id %02x)n", sid); 
  330. hpfb_init_one(INTFBADDR);
  331. }
  332. else
  333. {
  334. int sc = dio_find(DIO_ID_FBUFFER);
  335. if (sc)
  336. {
  337. unsigned long addr = (unsigned long)dio_scodetoviraddr(sc);
  338. unsigned int sid = DIO_SECID(addr);
  339. if (topcat_sid_ok(sid))
  340. {
  341. printk("Topcat found at DIO select code %02x "
  342.        "(secondary id %02x)n", sc, sid);
  343. hpfb_init_one(addr);
  344. }
  345. }
  346. }
  347. return 0;
  348. }
  349. MODULE_LICENSE("GPL");