hpfb.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

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 (readw(fb_regs + 0x6002) & 0x4) udelay(1);
  132. writew(0, fb_regs + 0x60f0);
  133. writew(cmap->start + i, fb_regs + 0x60b8);
  134. writew(cmap->red[i], fb_regs + 0x60b2);
  135. writew(cmap->green[i], fb_regs + 0x60b4);
  136. writew(cmap->blue[i], fb_regs + 0x60b6);
  137. writew(0xff, fb_regs + 0x60f0);
  138. udelay(100);
  139. }
  140. writew(0xffff, fb_regs + 0x60ba);
  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 (readb(fb_regs + BUSY) & fb_bitmask);
  192. writeb(0x3, fb_regs + WMRR);
  193. writew(x0, fb_regs + SOURCE_X);
  194. writew(y0, fb_regs + SOURCE_Y);
  195. writew(x1, fb_regs + DEST_X);
  196. writew(y1, fb_regs + DEST_Y);
  197. writew(h, fb_regs + WHEIGHT);
  198. writew(w, fb_regs + WWIDTH);
  199. writeb(fb_bitmask, fb_regs + WMOVE);
  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 = 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. display->dispsw = &fbcon_cfb8;
  232. }
  233. static struct fb_ops hpfb_ops = {
  234. owner: THIS_MODULE,
  235. fb_get_fix: hpfb_get_fix,
  236. fb_get_var: hpfb_get_var,
  237. fb_set_var: hpfb_set_var,
  238. fb_get_cmap: hpfb_get_cmap,
  239. fb_set_cmap: hpfb_set_cmap,
  240. };
  241. #define TOPCAT_FBOMSB 0x5d
  242. #define TOPCAT_FBOLSB 0x5f
  243. int __init hpfb_init_one(unsigned long base)
  244. {
  245. unsigned long fboff;
  246. fboff = (readb(base + TOPCAT_FBOMSB) << 8) 
  247. | readb(base + TOPCAT_FBOLSB);
  248. fb_start = 0xf0000000 | (readb(base + fboff) << 16);
  249. fb_regs = base;
  250. #if 0
  251. /* This is the magic incantation NetBSD uses to make Catseye boards work. */
  252. writeb(0, base+0x4800);
  253. writeb(0, base+0x4510);
  254. writeb(0, base+0x4512);
  255. writeb(0, base+0x4514);
  256. writeb(0, base+0x4516);
  257. writeb(0x90, base+0x4206);
  258. #endif
  259. /*
  260.  * Fill in the available video resolution
  261.  */
  262.  
  263. hpfb_defined.xres = 1024;
  264. hpfb_defined.yres = 768;
  265. hpfb_defined.xres_virtual = 1024;
  266. hpfb_defined.yres_virtual = 768;
  267. hpfb_defined.bits_per_pixel = 8;
  268. /* 
  269.  * Give the hardware a bit of a prod and work out how many bits per
  270.  * pixel are supported.
  271.  */
  272. writeb(0xff, base + TC_WEN);
  273. writeb(0xff, base + TC_FBEN);
  274. writeb(0xff, fb_start);
  275. fb_bitmask = readb(fb_start);
  276. /*
  277.  * Enable reading/writing of all the planes.
  278.  */
  279. writeb(fb_bitmask, base + TC_WEN);
  280. writeb(fb_bitmask, base + TC_REN);
  281. writeb(fb_bitmask, base + TC_FBEN);
  282. writeb(0x1, base + TC_NBLANK);
  283. /*
  284.  * Let there be consoles..
  285.  */
  286. strcpy(fb_info.modename, "Topcat");
  287. fb_info.changevar = NULL;
  288. fb_info.node = -1;
  289. fb_info.fbops = &hpfb_ops;
  290. fb_info.disp = &disp;
  291. fb_info.switch_con = &hpfb_switch;
  292. fb_info.updatevar = &fb_update_var;
  293. fb_info.blank = &hpfb_blank;
  294. fb_info.flags = FBINFO_FLAG_DEFAULT;
  295. do_fb_set_var(&hpfb_defined, 1);
  296. hpfb_get_var(&disp.var, -1, &fb_info);
  297. hpfb_set_disp(-1);
  298. if (register_framebuffer(&fb_info) < 0)
  299. return 1;
  300. return 0;
  301. }
  302. /* 
  303.  * Check that the secondary ID indicates that we have some hope of working with this
  304.  * framebuffer.  The catseye boards are pretty much like topcats and we can muddle through.
  305.  */
  306. #define topcat_sid_ok(x)  (((x) == DIO_ID2_LRCATSEYE) || ((x) == DIO_ID2_HRCCATSEYE)    
  307.    || ((x) == DIO_ID2_HRMCATSEYE) || ((x) == DIO_ID2_TOPCAT))
  308. /* 
  309.  * Initialise the framebuffer
  310.  */
  311. int __init hpfb_init(void)
  312. {
  313. unsigned int sid;
  314. /* Topcats can be on the internal IO bus or real DIO devices.
  315.  * The internal variant sits at 0xf0560000; it has primary
  316.  * and secondary ID registers just like the DIO version.
  317.  * So we merge the two detection routines.
  318.  *
  319.  * Perhaps this #define should be in a global header file:
  320.  * I believe it's common to all internal fbs, not just topcat.
  321.  */
  322. #define INTFBADDR 0xf0560000
  323. if (hwreg_present((void *)INTFBADDR) && (DIO_ID(INTFBADDR) == DIO_ID_FBUFFER)
  324. && topcat_sid_ok(sid = DIO_SECID(INTFBADDR)))
  325. {
  326. printk("Internal Topcat found (secondary id %02x)n", sid); 
  327. hpfb_init_one(INTFBADDR);
  328. }
  329. else
  330. {
  331. int sc = dio_find(DIO_ID_FBUFFER);
  332. if (sc)
  333. {
  334. unsigned long addr = (unsigned long)dio_scodetoviraddr(sc);
  335. unsigned int sid = DIO_SECID(addr);
  336. if (topcat_sid_ok(sid))
  337. {
  338. printk("Topcat found at DIO select code %02x "
  339.        "(secondary id %02x)n", sc, sid);
  340. hpfb_init_one(addr);
  341. }
  342. }
  343. }
  344. return 0;
  345. }
  346. MODULE_LICENSE("GPL");