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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *      linux/drivers/video/pmagb-b-fb.c
  3.  *
  4.  * PMAGB-B TurboChannel framebuffer card support ... derived from:
  5.  * "HP300 Topcat framebuffer support (derived from macfb of all things)
  6.  * Phil Blundell <philb@gnu.org> 1998", the original code can be
  7.  *      found in the file hpfb.c in the same directory.
  8.  *
  9.  *      DECstation related code Copyright (C) 1999, 2000, 2001 by
  10.  *      Michael Engel <engel@unix-ag.org>,
  11.  *      Karsten Merker <merker@linuxtag.org> and 
  12.  * Harald Koerfgen.
  13.  *      This file is subject to the terms and conditions of the GNU General
  14.  *      Public License.  See the file COPYING in the main directory of this
  15.  *      archive for more details.
  16.  *
  17.  */
  18. /*
  19.  *      We currently only support the PMAGB-B in high resolution mode
  20.  *      as I know of no way to detect low resolution mode set via jumper.
  21.  *      KM, 2001/01/07
  22.  */
  23. #include <linux/module.h>
  24. #include <linux/kernel.h>
  25. #include <linux/sched.h>
  26. #include <linux/errno.h>
  27. #include <linux/string.h>
  28. #include <linux/timer.h>
  29. #include <linux/mm.h>
  30. #include <linux/tty.h>
  31. #include <linux/slab.h>
  32. #include <linux/delay.h>
  33. #include <linux/init.h>
  34. #include <linux/fb.h>
  35. #include <asm/bootinfo.h>
  36. #include <asm/dec/machtype.h>
  37. #include <asm/dec/tc.h>
  38. #include "pmagb-b-fb.h"
  39. #include <video/fbcon.h>
  40. #include <video/fbcon-mfb.h>
  41. #include <video/fbcon-cfb2.h>
  42. #include <video/fbcon-cfb4.h>
  43. #include <video/fbcon-cfb8.h>
  44. #define arraysize(x)    (sizeof(x)/sizeof(*(x)))
  45. struct pmagb_b_ramdac_regs {
  46. unsigned char addr_low;
  47. unsigned char pad0[3];
  48. unsigned char addr_hi;
  49. unsigned char pad1[3];
  50. unsigned char data;
  51. unsigned char pad2[3];
  52. unsigned char cmap;
  53. };
  54. struct pmagb_b_my_fb_info {
  55. struct fb_info info;
  56. struct pmagb_b_ramdac_regs *bt459_regs;
  57. unsigned long pmagbb_fb_start;
  58. unsigned long pmagbb_fb_size;
  59. unsigned long pmagbb_fb_line_length;
  60. };
  61. static struct display disp;
  62. /*
  63.  * Max 3 TURBOchannel slots -> max 3 PMAGB-B :)
  64.  */
  65. static struct pmagb_b_my_fb_info pmagbb_fb_info[3];
  66. static struct fb_var_screeninfo pmagbbfb_defined = {
  67. 0, 0, 0, 0, /* W,H, W, H (virtual) load xres,xres_virtual */
  68. 0, 0, /* virtual -> visible no offset */
  69. 0, /* depth -> load bits_per_pixel */
  70. 0, /* greyscale ? */
  71. {0, 0, 0}, /* R */
  72. {0, 0, 0}, /* G */
  73. {0, 0, 0}, /* B */
  74. {0, 0, 0}, /* transparency */
  75. 0, /* standard pixel format */
  76. FB_ACTIVATE_NOW,
  77. 274, 195, /* 14" monitor */
  78. FB_ACCEL_NONE,
  79. 0L, 0L, 0L, 0L, 0L,
  80. 0L, 0L, 0, /* No sync info */
  81. FB_VMODE_NONINTERLACED,
  82. {0, 0, 0, 0, 0, 0}
  83. };
  84. struct pmagbbfb_par {
  85. };
  86. static int currcon = 0;
  87. struct pmagbbfb_par current_par;
  88. static void pmagbbfb_encode_var(struct fb_var_screeninfo *var,
  89. struct pmagbbfb_par *par)
  90. {
  91. int i = 0;
  92. var->xres = 1280;
  93. var->yres = 1024;
  94. var->xres_virtual = 1280;
  95. var->yres_virtual = 1024;
  96. var->xoffset = 0;
  97. var->yoffset = 0;
  98. var->bits_per_pixel = 8;
  99. var->grayscale = 0;
  100. var->transp.offset = 0;
  101. var->transp.length = 0;
  102. var->transp.msb_right = 0;
  103. var->nonstd = 0;
  104. var->activate = 1;
  105. var->height = -1;
  106. var->width = -1;
  107. var->vmode = FB_VMODE_NONINTERLACED;
  108. var->pixclock = 0;
  109. var->sync = 0;
  110. var->left_margin = 0;
  111. var->right_margin = 0;
  112. var->upper_margin = 0;
  113. var->lower_margin = 0;
  114. var->hsync_len = 0;
  115. var->vsync_len = 0;
  116. for (i = 0; i < arraysize(var->reserved); i++)
  117. var->reserved[i] = 0;
  118. }
  119. static void pmagbbfb_get_par(struct pmagbbfb_par *par)
  120. {
  121. *par = current_par;
  122. }
  123. static int pmagbb_fb_update_var(int con, struct fb_info *info)
  124. {
  125. return 0;
  126. }
  127. static int pmagbb_do_fb_set_var(struct fb_var_screeninfo *var,
  128. int isactive)
  129. {
  130. struct pmagbbfb_par par;
  131. pmagbbfb_get_par(&par);
  132. pmagbbfb_encode_var(var, &par);
  133. return 0;
  134. }
  135. /*
  136.  * Turn hardware cursor off
  137.  */
  138. void pmagbbfb_erase_cursor(struct pmagb_b_my_fb_info *info)
  139. {
  140. info->bt459_regs->addr_low = 0;
  141. info->bt459_regs->addr_hi = 3;
  142. info->bt459_regs->data = 0;
  143. }
  144. /*
  145.  * Write to a Bt459 color map register
  146.  */
  147. void pmagb_b_bt459_write_colormap(struct pmagb_b_my_fb_info *info,
  148.   int reg, __u8 red, __u8 green, __u8 blue)
  149. {
  150. info->bt459_regs->addr_low = (__u8) reg;
  151. info->bt459_regs->addr_hi = 0;
  152. info->bt459_regs->cmap = red;
  153. info->bt459_regs->cmap = green;
  154. info->bt459_regs->cmap = blue;
  155. }
  156. /*
  157.  * Get the palette
  158.  */
  159. static int pmagbbfb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  160.      struct fb_info *info)
  161. {
  162. unsigned int i;
  163. unsigned int length;
  164. if (((cmap->start) + (cmap->len)) >= 256) {
  165. length = 256 - (cmap->start);
  166. } else {
  167. length = cmap->len;
  168. }
  169. for (i = 0; i < length; i++) {
  170. /*
  171.  * TODO
  172.  */
  173. }
  174. return 0;
  175. }
  176. /*
  177.  * Set the palette. 
  178.  */
  179. static int pmagbbfb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  180.      struct fb_info *info)
  181. {
  182. unsigned int i;
  183. __u8 cmap_red, cmap_green, cmap_blue;
  184. unsigned int length;
  185. if (((cmap->start) + (cmap->len)) >= 256)
  186. length = 256 - (cmap->start);
  187. else
  188. length = cmap->len;
  189. for (i = 0; i < length; i++) {
  190. cmap_red = ((cmap->red[i]) >> 8); /* The cmap fields are 16 bits    */
  191. cmap_green = ((cmap->green[i]) >> 8); /* wide, but the harware colormap */
  192. cmap_blue = ((cmap->blue[i]) >> 8); /* registers are only 8 bits wide */
  193. pmagb_b_bt459_write_colormap((struct pmagb_b_my_fb_info *)
  194.      info, cmap->start + i,
  195.      cmap_red, cmap_green,
  196.      cmap_blue);
  197. }
  198. return 0;
  199. }
  200. static int pmagbbfb_get_var(struct fb_var_screeninfo *var, int con,
  201.     struct fb_info *info)
  202. {
  203. struct pmagbbfb_par par;
  204. if (con == -1) {
  205. pmagbbfb_get_par(&par);
  206. pmagbbfb_encode_var(var, &par);
  207. } else
  208. *var = fb_display[con].var;
  209. return 0;
  210. }
  211. static int pmagbbfb_set_var(struct fb_var_screeninfo *var, int con,
  212.     struct fb_info *info)
  213. {
  214. int err;
  215. if ((err = pmagbb_do_fb_set_var(var, 1)))
  216. return err;
  217. return 0;
  218. }
  219. static void pmagbbfb_encode_fix(struct fb_fix_screeninfo *fix,
  220. struct pmagbbfb_par *par,
  221. struct pmagb_b_my_fb_info *info)
  222. {
  223. memset(fix, 0, sizeof(struct fb_fix_screeninfo));
  224. strcpy(fix->id, "PMAGB-BA");
  225. fix->smem_start = info->pmagbb_fb_start;
  226. fix->smem_len = info->pmagbb_fb_size;
  227. fix->type = FB_TYPE_PACKED_PIXELS;
  228. fix->visual = FB_VISUAL_PSEUDOCOLOR;
  229. fix->xpanstep = 0;
  230. fix->ypanstep = 0;
  231. fix->ywrapstep = 0;
  232. fix->line_length = info->pmagbb_fb_line_length;
  233. }
  234. static int pmagbbfb_get_fix(struct fb_fix_screeninfo *fix, int con,
  235.     struct fb_info *info)
  236. {
  237. struct pmagbbfb_par par;
  238. pmagbbfb_get_par(&par);
  239. pmagbbfb_encode_fix(fix, &par, (struct pmagb_b_my_fb_info *) info);
  240. return 0;
  241. }
  242. static int pmagbbfb_ioctl(struct inode *inode, struct file *file,
  243.   unsigned int cmd, unsigned long arg, int con,
  244.   struct fb_info *info)
  245. {
  246. return -EINVAL;
  247. }
  248. static int pmagbbfb_switch(int con, struct fb_info *info)
  249. {
  250. pmagbb_do_fb_set_var(&fb_display[con].var, 1);
  251. currcon = con;
  252. return 0;
  253. }
  254. /* 0 unblank, 1 blank, 2 no vsync, 3 no hsync, 4 off */
  255. static void pmagbbfb_blank(int blank, struct fb_info *info)
  256. {
  257. /* Not supported */
  258. }
  259. static int pmagbbfb_open(struct fb_info *info, int user)
  260. {
  261. /*
  262.  * Nothing, only a usage count for the moment
  263.  */
  264. MOD_INC_USE_COUNT;
  265. return (0);
  266. }
  267. static void pmagbbfb_set_disp(int con, struct pmagb_b_my_fb_info *info)
  268. {
  269. struct fb_fix_screeninfo fix;
  270. struct display *display;
  271. if (con >= 0)
  272. display = &fb_display[con];
  273. else
  274. display = &disp; /* used during initialization */
  275. pmagbbfb_get_fix(&fix, con, (struct fb_info *) info);
  276. display->screen_base = (char *) fix.smem_start;
  277. display->visual = fix.visual;
  278. display->type = fix.type;
  279. display->type_aux = fix.type_aux;
  280. display->ypanstep = fix.ypanstep;
  281. display->ywrapstep = fix.ywrapstep;
  282. display->line_length = fix.line_length;
  283. display->next_line = fix.line_length;
  284. display->can_soft_blank = 0;
  285. display->inverse = 0;
  286. display->dispsw = &fbcon_cfb8;
  287. }
  288. static int pmagbbfb_release(struct fb_info *info, int user)
  289. {
  290. MOD_DEC_USE_COUNT;
  291. return (0);
  292. }
  293. static struct fb_ops pmagbbfb_ops = {
  294. owner:THIS_MODULE,
  295. fb_open:pmagbbfb_open,
  296. fb_release:pmagbbfb_release,
  297. fb_get_fix:pmagbbfb_get_fix,
  298. fb_get_var:pmagbbfb_get_var,
  299. fb_set_var:pmagbbfb_set_var,
  300. fb_get_cmap:pmagbbfb_get_cmap,
  301. fb_set_cmap:pmagbbfb_set_cmap,
  302. fb_ioctl:pmagbbfb_ioctl,
  303. fb_mmap:0,
  304. fb_rasterimg:0
  305. };
  306. int __init pmagbbfb_init_one(int slot)
  307. {
  308. unsigned long base_addr = get_tc_base_addr(slot);
  309. struct pmagb_b_my_fb_info *ip =
  310.     (struct pmagb_b_my_fb_info *) &pmagbb_fb_info[slot];
  311. printk("PMAGB-BA framebuffer in slot %dn", slot);
  312. /*
  313.  * Framebuffer display memory base address and friends
  314.  */
  315. ip->bt459_regs =
  316.     (struct pmagb_b_ramdac_regs *) (base_addr +
  317.     PMAGB_B_BT459_OFFSET);
  318. ip->pmagbb_fb_start = base_addr + PMAGB_B_ONBOARD_FBMEM_OFFSET;
  319. ip->pmagbb_fb_size = 1280 * 1024;
  320. ip->pmagbb_fb_line_length = 1280;
  321. /*
  322.  * Configure the Bt459 RAM DAC
  323.  */
  324. pmagbbfb_erase_cursor(ip);
  325. /*
  326.  *      Fill in the available video resolution
  327.  */
  328. pmagbbfb_defined.xres = 1280;
  329. pmagbbfb_defined.yres = 1024;
  330. pmagbbfb_defined.xres_virtual = 1280;
  331. pmagbbfb_defined.yres_virtual = 1024;
  332. pmagbbfb_defined.bits_per_pixel = 8;
  333. /*
  334.  *      Let there be consoles..
  335.  */
  336. strcpy(ip->info.modename, "PMAGB-BA");
  337. ip->info.changevar = NULL;
  338. ip->info.node = -1;
  339. ip->info.fbops = &pmagbbfb_ops;
  340. ip->info.disp = &disp;
  341. ip->info.switch_con = &pmagbbfb_switch;
  342. ip->info.updatevar = &pmagbb_fb_update_var;
  343. ip->info.blank = &pmagbbfb_blank;
  344. ip->info.flags = FBINFO_FLAG_DEFAULT;
  345. pmagbb_do_fb_set_var(&pmagbbfb_defined, 1);
  346. pmagbbfb_get_var(&disp.var, -1, (struct fb_info *) ip);
  347. pmagbbfb_set_disp(-1, ip);
  348. if (register_framebuffer((struct fb_info *) ip) < 0)
  349. return 1;
  350. return 0;
  351. }
  352. /* 
  353.  * Initialise the framebuffer
  354.  */
  355. int __init pmagbbfb_init(void)
  356. {
  357. int sid;
  358. int found = 0;
  359. if (TURBOCHANNEL) {
  360. while ((sid = search_tc_card("PMAGB-BA")) >= 0) {
  361. found = 1;
  362. claim_tc_card(sid);
  363. pmagbbfb_init_one(sid);
  364. }
  365. return found ? 0 : -ENODEV;
  366. } else {
  367. return -ENODEV;
  368. }
  369. }
  370. int __init pmagbbfb_setup(char *options)
  371. {
  372. return 0;
  373. }
  374. MODULE_LICENSE("GPL");