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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/video/igafb.c -- Frame buffer device for IGA 1682
  3.  *
  4.  *      Copyright (C) 1998  Vladimir Roganov and Gleb Raiko
  5.  *
  6.  *  This driver is partly based on the Frame buffer device for ATI Mach64
  7.  *  and partially on VESA-related code.
  8.  *
  9.  *      Copyright (C) 1997-1998  Geert Uytterhoeven
  10.  *      Copyright (C) 1998  Bernd Harries
  11.  *      Copyright (C) 1998  Eddie C. Dost  (ecd@skynet.be)
  12.  *
  13.  *  This file is subject to the terms and conditions of the GNU General Public
  14.  *  License. See the file COPYING in the main directory of this archive for
  15.  *  more details.
  16.  */
  17. /******************************************************************************
  18.   TODO:
  19.        Despite of IGA Card has advanced graphic acceleration, 
  20.        initial version is almost dummy and does not support it.
  21.        Support for video modes and acceleration must be added
  22.        together with accelerated X-Windows driver implementation.
  23.        Most important thing at this moment is that we have working
  24.        JavaEngine1  console & X  with new console interface.
  25. ******************************************************************************/
  26. #include <linux/module.h>
  27. #include <linux/kernel.h>
  28. #include <linux/errno.h>
  29. #include <linux/string.h>
  30. #include <linux/mm.h>
  31. #include <linux/tty.h>
  32. #include <linux/slab.h>
  33. #include <linux/vmalloc.h>
  34. #include <linux/delay.h>
  35. #include <linux/interrupt.h>
  36. #include <linux/fb.h>
  37. #include <linux/selection.h>
  38. #include <linux/console.h>
  39. #include <linux/init.h>
  40. #include <linux/pci.h>
  41. #include <linux/nvram.h>
  42. #include <linux/kd.h>
  43. #include <linux/vt_kern.h>
  44. #include <asm/io.h>
  45. #ifdef __sparc__
  46. #include <asm/pbm.h>
  47. #include <asm/pcic.h>
  48. #endif
  49. #include <video/fbcon.h>
  50. #include <video/fbcon-cfb8.h>
  51. #include <video/fbcon-cfb16.h>
  52. #include <video/fbcon-cfb24.h>
  53. #include <video/fbcon-cfb32.h>
  54. #include "iga.h"
  55. static char igafb_name[16] = "IGA 1682";
  56. static char fontname[40] __initdata = { 0 };
  57. struct pci_mmap_map {
  58.     unsigned long voff;
  59.     unsigned long poff;
  60.     unsigned long size;
  61.     unsigned long prot_flag;
  62.     unsigned long prot_mask;
  63. };
  64. struct fb_info_iga {
  65.     struct fb_info fb_info;
  66.     unsigned long frame_buffer_phys;
  67.     char *frame_buffer;
  68.     unsigned long io_base_phys;
  69.     unsigned long io_base;
  70.     u32 total_vram;
  71.     struct pci_mmap_map *mmap_map;
  72.     struct { u_short blue, green, red, pad; } palette[256];
  73.     int video_cmap_len;
  74.     int currcon;
  75.     struct display disp;
  76.     struct display_switch dispsw; 
  77.     union {
  78. #ifdef FBCON_HAS_CFB16
  79.     u16 cfb16[16];  
  80. #endif
  81. #ifdef FBCON_HAS_CFB24
  82.     u32 cfb24[16];
  83. #endif
  84. #ifdef FBCON_HAS_CFB32
  85.     u32 cfb32[16];
  86. #endif
  87.     } fbcon_cmap;
  88. #ifdef __sparc__
  89.     u8 open;
  90.     u8 mmaped;
  91.     int vtconsole;
  92.     int consolecnt;
  93. #endif
  94. };
  95. struct fb_var_screeninfo default_var = {
  96.     /* 640x480, 60 Hz, Non-Interlaced (25.175 MHz dotclock) */
  97.     640, 480, 640, 480, 0, 0, 8, 0,
  98.     {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
  99.     0, 0, -1, -1, 0, 39722, 48, 16, 33, 10, 96, 2,
  100.     0, FB_VMODE_NONINTERLACED
  101. };
  102. #ifdef __sparc__
  103. struct fb_var_screeninfo default_var_1024x768 __initdata = {
  104.     /* 1024x768, 75 Hz, Non-Interlaced (78.75 MHz dotclock) */
  105.     1024, 768, 1024, 768, 0, 0, 8, 0,
  106.     {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
  107.     0, 0, -1, -1, 0, 12699, 176, 16, 28, 1, 96, 3,
  108.     FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
  109. };
  110. struct fb_var_screeninfo default_var_1152x900 __initdata = {
  111.     /* 1152x900, 76 Hz, Non-Interlaced (110.0 MHz dotclock) */
  112.     1152, 900, 1152, 900, 0, 0, 8, 0,
  113.     {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
  114.     0, 0, -1, -1, 0, 9091, 234, 24, 34, 3, 100, 3,
  115.     FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
  116. };
  117. struct fb_var_screeninfo default_var_1280x1024 __initdata = {
  118.     /* 1280x1024, 75 Hz, Non-Interlaced (135.00 MHz dotclock) */
  119.     1280, 1024, 1280, 1024, 0, 0, 8, 0,
  120.     {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
  121.     0, 0, -1, -1, 0, 7408, 248, 16, 38, 1, 144, 3,
  122.     FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
  123. };
  124. /*
  125.  *   Memory-mapped I/O functions for Sparc PCI
  126.  *
  127.  * On sparc we happen to access I/O with memory mapped functions too.
  128.  */ 
  129. #define pci_inb(info, reg)        readb(info->io_base+(reg))
  130. #define pci_outb(info, val, reg)  writeb(val, info->io_base+(reg))
  131. static inline unsigned int iga_inb(struct fb_info_iga *info,
  132.    unsigned int reg, unsigned int idx )
  133. {
  134.         pci_outb(info, idx, reg);
  135.         return pci_inb(info, reg + 1);
  136. }
  137. static inline void iga_outb(struct fb_info_iga *info, unsigned char val,
  138.     unsigned int reg, unsigned int idx )
  139. {
  140.         pci_outb(info, idx, reg);
  141.         pci_outb(info, val, reg+1);
  142. }
  143. #endif /* __sparc__ */
  144. /*
  145.  *  Very important functionality for the JavaEngine1 computer:
  146.  *  make screen border black (usign special IGA registers) 
  147.  */
  148. static void iga_blank_border(struct fb_info_iga *info)
  149. {
  150.         int i;
  151. #if 0
  152. /*
  153.  * PROM does this for us, so keep this code as a reminder
  154.  * about required read from 0x3DA and writing of 0x20 in the end.
  155.  */
  156. (void) pci_inb(info, 0x3DA); /* required for every access */
  157. pci_outb(info, IGA_IDX_VGA_OVERSCAN, IGA_ATTR_CTL);
  158. (void) pci_inb(info, IGA_ATTR_CTL+1);
  159. pci_outb(info, 0x38, IGA_ATTR_CTL);
  160. pci_outb(info, 0x20, IGA_ATTR_CTL); /* re-enable visual */
  161. #endif
  162. /*
  163.  * This does not work as it was designed because the overscan
  164.  * color is looked up in the palette. Therefore, under X11
  165.  * overscan changes color.
  166.  */
  167. for (i=0; i < 3; i++)
  168. iga_outb(info, 0, IGA_EXT_CNTRL, IGA_IDX_OVERSCAN_COLOR + i);
  169. }
  170. /*
  171.  *  Frame buffer device API
  172.  */
  173. static int igafb_update_var(int con, struct fb_info *info)
  174. {
  175.         return 0;
  176. }
  177. static int igafb_get_fix(struct fb_fix_screeninfo *fix, int con,
  178.                          struct fb_info *info)
  179. {
  180.         struct fb_info_iga *fb = (struct fb_info_iga*)info;
  181.         memset(fix, 0, sizeof(struct fb_fix_screeninfo));
  182.         strcpy(fix->id, igafb_name);
  183.         fix->smem_start = (unsigned long) fb->frame_buffer;
  184.         fix->smem_len = fb->total_vram;
  185.         fix->xpanstep = 0;
  186.         fix->ypanstep = 0;
  187.         fix->ywrapstep = 0;
  188. fix->type = FB_TYPE_PACKED_PIXELS;
  189. fix->type_aux = 0;
  190. fix->line_length = default_var.xres * (default_var.bits_per_pixel/8);
  191. fix->visual = default_var.bits_per_pixel <= 8 ? FB_VISUAL_PSEUDOCOLOR
  192.                                       : FB_VISUAL_DIRECTCOLOR;
  193.         return 0;
  194. }
  195. static int igafb_get_var(struct fb_var_screeninfo *var, int con,
  196.                          struct fb_info *info)
  197. {
  198.         if(con == -1)
  199.                 memcpy(var, &default_var, sizeof(struct fb_var_screeninfo));
  200.         else
  201.                 *var = fb_display[con].var;
  202.         return 0;
  203. }
  204. static int igafb_set_var(struct fb_var_screeninfo *var, int con,
  205.                          struct fb_info *info)
  206. {
  207.         memcpy(var, &default_var, sizeof(struct fb_var_screeninfo));
  208.         return 0;
  209. }
  210. #ifdef __sparc__
  211. static int igafb_mmap(struct fb_info *info, struct file *file,
  212.       struct vm_area_struct *vma)
  213. {
  214. struct fb_info_iga *fb = (struct fb_info_iga *)info;
  215. unsigned int size, page, map_size = 0;
  216. unsigned long map_offset = 0;
  217. int i;
  218. if (!fb->mmap_map)
  219. return -ENXIO;
  220. size = vma->vm_end - vma->vm_start;
  221. /* To stop the swapper from even considering these pages. */
  222. vma->vm_flags |= (VM_SHM | VM_LOCKED);
  223. /* Each page, see which map applies */
  224. for (page = 0; page < size; ) {
  225. map_size = 0;
  226. for (i = 0; fb->mmap_map[i].size; i++) {
  227. unsigned long start = fb->mmap_map[i].voff;
  228. unsigned long end = start + fb->mmap_map[i].size;
  229. unsigned long offset = (vma->vm_pgoff << PAGE_SHIFT) + page;
  230. if (start > offset)
  231. continue;
  232. if (offset >= end)
  233. continue;
  234. map_size = fb->mmap_map[i].size - (offset - start);
  235. map_offset = fb->mmap_map[i].poff + (offset - start);
  236. break;
  237. }
  238. if (!map_size) {
  239. page += PAGE_SIZE;
  240. continue;
  241. }
  242. if (page + map_size > size)
  243. map_size = size - page;
  244. pgprot_val(vma->vm_page_prot) &= ~(fb->mmap_map[i].prot_mask);
  245. pgprot_val(vma->vm_page_prot) |= fb->mmap_map[i].prot_flag;
  246. if (remap_page_range(vma->vm_start + page, map_offset,
  247.      map_size, vma->vm_page_prot))
  248. return -EAGAIN;
  249. page += map_size;
  250. }
  251. if (!map_size)
  252. return -EINVAL;
  253. vma->vm_flags |= VM_IO;
  254. if (!fb->mmaped) {
  255. int lastconsole = 0;
  256. if (info->display_fg)
  257. lastconsole = info->display_fg->vc_num;
  258. fb->mmaped = 1;
  259. if (fb->consolecnt && fb_display[lastconsole].fb_info ==info) {
  260. fb->vtconsole = lastconsole;
  261. vt_cons[lastconsole]->vc_mode = KD_GRAPHICS;
  262. }
  263. }
  264. return 0;
  265. }
  266. #endif /* __sparc__ */
  267. static int iga_getcolreg(unsigned regno, unsigned *red, unsigned *green,
  268.                           unsigned *blue, unsigned *transp,
  269.                           struct fb_info *fb_info)
  270. {
  271.         /*
  272.          *  Read a single color register and split it into colors/transparent.
  273.          *  Return != 0 for invalid regno.
  274.          */
  275. struct fb_info_iga *info = (struct fb_info_iga*) fb_info;
  276.         if (regno >= info->video_cmap_len)
  277.                 return 1;
  278. *red    = info->palette[regno].red;
  279. *green  = info->palette[regno].green;
  280. *blue   = info->palette[regno].blue;
  281. *transp = 0;
  282. return 0;
  283. }
  284. static int iga_setcolreg(unsigned regno, unsigned red, unsigned green,
  285.                           unsigned blue, unsigned transp,
  286.                           struct fb_info *fb_info)
  287. {
  288.         /*
  289.          *  Set a single color register. The values supplied are
  290.          *  already rounded down to the hardware's capabilities
  291.          *  (according to the entries in the `var' structure). Return
  292.          *  != 0 for invalid regno.
  293.          */
  294.         
  295. struct fb_info_iga *info = (struct fb_info_iga*) fb_info;
  296.         if (regno >= info->video_cmap_len)
  297.                 return 1;
  298.         info->palette[regno].red   = red;
  299.         info->palette[regno].green = green;
  300.         info->palette[regno].blue  = blue;
  301. pci_outb(info, regno, DAC_W_INDEX);
  302. pci_outb(info, red,   DAC_DATA);
  303. pci_outb(info, green, DAC_DATA);
  304. pci_outb(info, blue,  DAC_DATA);
  305. if (regno < 16) {
  306. switch (default_var.bits_per_pixel) {
  307. #ifdef FBCON_HAS_CFB16
  308. case 16:
  309. info->fbcon_cmap.cfb16[regno] = 
  310. (regno << 10) | (regno << 5) | regno;
  311. break;
  312. #endif
  313. #ifdef FBCON_HAS_CFB24
  314. case 24:
  315. info->fbcon_cmap.cfb24[regno] = 
  316. (regno << 16) | (regno << 8) | regno;
  317. break;
  318. #endif
  319. #ifdef FBCON_HAS_CFB32
  320. case 32:
  321. { int i;
  322. i = (regno << 8) | regno;
  323. info->fbcon_cmap.cfb32[regno] = (i << 16) | i;
  324. }
  325. break;
  326. #endif
  327. }
  328. }
  329. return 0;
  330. }
  331. static void do_install_cmap(int con, struct fb_info *fb_info)
  332. {
  333. struct fb_info_iga *info = (struct fb_info_iga*) fb_info;
  334.         if (con != info->currcon)
  335.                 return;
  336.         if (fb_display[con].cmap.len)
  337.                 fb_set_cmap(&fb_display[con].cmap, 1,
  338.                             iga_setcolreg, &info->fb_info);
  339.         else
  340.                 fb_set_cmap(fb_default_cmap(info->video_cmap_len), 1, 
  341.     iga_setcolreg, &info->fb_info);
  342. }
  343. static int igafb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  344.                            struct fb_info *fb_info)
  345. {
  346. struct fb_info_iga *info = (struct fb_info_iga*) fb_info;
  347.         if (con == info->currcon) /* current console? */
  348.                 return fb_get_cmap(cmap, kspc, iga_getcolreg, &info->fb_info);
  349.         else if (fb_display[con].cmap.len) /* non default colormap? */
  350.                 fb_copy_cmap(&fb_display[con].cmap, cmap, kspc ? 0 : 2);
  351.         else
  352.                 fb_copy_cmap(fb_default_cmap(info->video_cmap_len),
  353.                      cmap, kspc ? 0 : 2);
  354.         return 0;
  355. }
  356. static int igafb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  357.                   struct fb_info *info)
  358. {
  359.         int err;
  360. struct fb_info_iga *fb = (struct fb_info_iga*) info;
  361.         if (!fb_display[con].cmap.len) {        /* no colormap allocated? */
  362.                 err = fb_alloc_cmap(&fb_display[con].cmap,
  363.     fb->video_cmap_len,0);
  364.                 if (err)
  365.                         return err;
  366.         }
  367.         if (con == fb->currcon)                     /* current console? */
  368.                 return fb_set_cmap(cmap, kspc, iga_setcolreg, info);
  369.         else
  370.                 fb_copy_cmap(cmap, &fb_display[con].cmap, kspc ? 0 : 1);
  371.         return 0;
  372. }
  373. /*
  374.  * Framebuffer option structure
  375.  */
  376. static struct fb_ops igafb_ops = {
  377. owner: THIS_MODULE,
  378. fb_get_fix: igafb_get_fix,
  379. fb_get_var: igafb_get_var,
  380. fb_set_var: igafb_set_var,
  381. fb_get_cmap: igafb_get_cmap,
  382. fb_set_cmap: igafb_set_cmap,
  383. #ifdef __sparc__
  384. fb_mmap: igafb_mmap,
  385. #endif
  386. };
  387. static void igafb_set_disp(int con, struct fb_info_iga *info)
  388. {
  389.         struct fb_fix_screeninfo fix;
  390.         struct display *display;
  391.         struct display_switch *sw;
  392.         if (con >= 0)
  393.                 display = &fb_display[con];
  394.         else 
  395.                 display = &info->disp;        /* used during initialization */
  396.         igafb_get_fix(&fix, con, &info->fb_info);
  397.         memset(display, 0, sizeof(struct display));
  398.         display->screen_base = info->frame_buffer;
  399.         display->visual = fix.visual;
  400.         display->type = fix.type;
  401.         display->type_aux = fix.type_aux;
  402.         display->ypanstep = fix.ypanstep;
  403.         display->ywrapstep = fix.ywrapstep;
  404.         display->line_length = fix.line_length;
  405.         display->next_line = fix.line_length;
  406.         display->can_soft_blank = 0; 
  407.         display->inverse = 0;
  408.         igafb_get_var(&display->var, -1, &info->fb_info);
  409.         switch (default_var.bits_per_pixel) {
  410. #ifdef FBCON_HAS_CFB8
  411.         case 8:
  412.                 sw = &fbcon_cfb8;
  413.                 break;
  414. #endif
  415. #ifdef FBCON_HAS_CFB16
  416.         case 15:
  417.         case 16:
  418.                 sw = &fbcon_cfb16;
  419. display->dispsw_data = info->fbcon_cmap.cfb16;
  420.                 break;
  421. #endif
  422. #ifdef FBCON_HAS_CFB24
  423. case 24:
  424. sw = &fbcon_cfb24;
  425. display->dispsw_data = info->fbcon_cmap.cfb24;
  426. break;
  427. #endif
  428. #ifdef FBCON_HAS_CFB32
  429.         case 32:
  430.                 sw = &fbcon_cfb32;
  431. display->dispsw_data = info->fbcon_cmap.cfb32;
  432.                 break;
  433. #endif
  434.         default:
  435. printk(KERN_WARNING "igafb_set_disp: unknown resolution %dn",
  436.     default_var.bits_per_pixel);
  437.                 return;
  438.         }
  439.         memcpy(&info->dispsw, sw, sizeof(*sw));
  440.         display->dispsw = &info->dispsw;
  441. display->scrollmode = SCROLL_YREDRAW;
  442. info->dispsw.bmove = fbcon_redraw_bmove;
  443. }
  444. static int igafb_switch(int con, struct fb_info *fb_info)
  445. {
  446. struct fb_info_iga *info = (struct fb_info_iga*) fb_info;
  447.         /* Do we have to save the colormap? */
  448.         if (fb_display[info->currcon].cmap.len)
  449.                 fb_get_cmap(&fb_display[info->currcon].cmap, 1,
  450.                             iga_getcolreg, fb_info);
  451. info->currcon = con;
  452. /* Install new colormap */
  453. do_install_cmap(con, fb_info);
  454. igafb_update_var(con, fb_info);
  455.         return 1;
  456. }
  457. /* 0 unblank, 1 blank, 2 no vsync, 3 no hsync, 4 off */
  458. static void igafb_blank(int blank, struct fb_info *info)
  459. {
  460.         /* Not supported */
  461. }
  462. static int __init iga_init(struct fb_info_iga *info)
  463. {
  464.         char vramsz = iga_inb(info, IGA_EXT_CNTRL, IGA_IDX_EXT_BUS_CNTL) 
  465.                                          & MEM_SIZE_ALIAS;
  466.         switch (vramsz) {
  467.         case MEM_SIZE_1M:
  468.                 info->total_vram = 0x100000;
  469.                 break;
  470.         case MEM_SIZE_2M:
  471.                 info->total_vram = 0x200000;
  472.                 break;
  473.         case MEM_SIZE_4M:
  474.         case MEM_SIZE_RESERVED:
  475.                 info->total_vram = 0x400000;
  476.                 break;
  477.         }
  478.         if (default_var.bits_per_pixel > 8) {
  479.                 info->video_cmap_len = 16;
  480.         } else {
  481.                 info->video_cmap_len = 256;
  482.         }
  483. {
  484. int j, k;
  485. for (j = 0; j < 16; j++) {
  486. k = color_table[j];
  487. info->palette[j].red = default_red[k];
  488. info->palette[j].green = default_grn[k];
  489. info->palette[j].blue = default_blu[k];
  490. }
  491. }
  492. strcpy(info->fb_info.modename, igafb_name);
  493. info->fb_info.node = -1;
  494. info->fb_info.fbops = &igafb_ops;
  495. info->fb_info.disp = &info->disp;
  496. strcpy(info->fb_info.fontname, fontname);
  497. info->fb_info.changevar = NULL;
  498. info->fb_info.switch_con = &igafb_switch;
  499. info->fb_info.updatevar = &igafb_update_var;
  500. info->fb_info.blank = &igafb_blank;
  501. info->fb_info.flags=FBINFO_FLAG_DEFAULT;
  502. igafb_set_disp(-1, info);
  503. if (register_framebuffer(&info->fb_info) < 0)
  504. return 0;
  505. printk("fb%d: %s frame buffer device at 0x%08lx [%dMB VRAM]n",
  506.        GET_FB_IDX(info->fb_info.node), igafb_name, 
  507.        info->frame_buffer_phys, info->total_vram >> 20);
  508. iga_blank_border(info); 
  509. return 1;
  510. }
  511. int __init igafb_init(void)
  512. {
  513.         struct pci_dev *pdev;
  514.         struct fb_info_iga *info;
  515.         unsigned long addr;
  516.         extern int con_is_present(void);
  517. int iga2000 = 0;
  518.         /* Do not attach when we have a serial console. */
  519.         if (!con_is_present())
  520.                 return -ENXIO;
  521.         pdev = pci_find_device(PCI_VENDOR_ID_INTERG, 
  522.                                PCI_DEVICE_ID_INTERG_1682, 0);
  523. if (pdev == NULL) {
  524. /*
  525.  * XXX We tried to use cyber2000fb.c for IGS 2000.
  526.  * But it does not initialize the chip in JavaStation-E, alas.
  527.  */
  528.          pdev = pci_find_device(PCI_VENDOR_ID_INTERG, 0x2000, 0);
  529.          if(pdev == NULL) {
  530.                  return -ENXIO;
  531. }
  532. iga2000 = 1;
  533. }
  534.         info = kmalloc(sizeof(struct fb_info_iga), GFP_ATOMIC);
  535.         if (!info) {
  536.                 printk("igafb_init: can't alloc fb_info_igan");
  537.                 return -ENOMEM;
  538.         }
  539.         memset(info, 0, sizeof(struct fb_info_iga));
  540. if ((addr = pdev->resource[0].start) == 0) {
  541.                 printk("igafb_init: no memory startn");
  542. kfree(info);
  543. return -ENXIO;
  544. }
  545. if ((info->frame_buffer = ioremap(addr, 1024*1024*2)) == 0) {
  546.                 printk("igafb_init: can't remap %lx[2M]n", addr);
  547. kfree(info);
  548. return -ENXIO;
  549. }
  550. info->frame_buffer_phys = addr & PCI_BASE_ADDRESS_MEM_MASK;
  551. #ifdef __sparc__
  552. /*
  553.  * The following is sparc specific and this is why:
  554.  *
  555.  * IGS2000 has its I/O memory mapped and we want
  556.  * to generate memory cycles on PCI, e.g. do ioremap(),
  557.  * then readb/writeb() as in Documentation/IO-mapping.txt.
  558.  *
  559.  * IGS1682 is more traditional, it responds to PCI I/O
  560.  * cycles, so we want to access it with inb()/outb().
  561.  *
  562.  * On sparc, PCIC converts CPU memory access within
  563.  * phys window 0x3000xxxx into PCI I/O cycles. Therefore
  564.  * we may use readb/writeb to access them with IGS1682.
  565.  *
  566.  * We do not take io_base_phys from resource[n].start
  567.  * on IGS1682 because that chip is BROKEN. It does not
  568.  * have a base register for I/O. We just "know" what its
  569.  * I/O addresses are.
  570.  */
  571. if (iga2000) {
  572. info->io_base_phys = info->frame_buffer_phys | 0x00800000;
  573. } else {
  574. info->io_base_phys = 0x30000000; /* XXX */
  575. }
  576. if ((info->io_base = (int) ioremap(info->io_base_phys, 0x1000)) == 0) {
  577.                 printk("igafb_init: can't remap %lx[4K]n", info->io_base_phys);
  578. iounmap((void *)info->frame_buffer);
  579.                 kfree(info);
  580. return -ENXIO;
  581. }
  582. /*
  583.  * Figure mmap addresses from PCI config space.
  584.  * We need two regions: for video memory and for I/O ports.
  585.  * Later one can add region for video coprocessor registers.
  586.  * However, mmap routine loops until size != 0, so we put
  587.  * one additional region with size == 0. 
  588.  */
  589. info->mmap_map = kmalloc(4 * sizeof(*info->mmap_map), GFP_ATOMIC);
  590. if (!info->mmap_map) {
  591. printk("igafb_init: can't alloc mmap_mapn");
  592. iounmap((void *)info->io_base);
  593. iounmap(info->frame_buffer);
  594.                 kfree(info);
  595. return -ENOMEM;
  596. }
  597. memset(info->mmap_map, 0, 4 * sizeof(*info->mmap_map));
  598. /*
  599.  * Set default vmode and cmode from PROM properties.
  600.  */
  601. {
  602.                 struct pcidev_cookie *cookie = pdev->sysdata;
  603.                 int node = cookie->prom_node;
  604.                 int width = prom_getintdefault(node, "width", 1024);
  605.                 int height = prom_getintdefault(node, "height", 768);
  606.                 int depth = prom_getintdefault(node, "depth", 8);
  607.                 switch (width) {
  608.                     case 1024:
  609.                         if (height == 768)
  610.                             default_var = default_var_1024x768;
  611.                         break;
  612.                     case 1152:
  613.                         if (height == 900)
  614.                             default_var = default_var_1152x900;
  615.                         break;
  616.                     case 1280:
  617.                         if (height == 1024)
  618.                             default_var = default_var_1280x1024;
  619.                         break;
  620.                     default:
  621.                         break;
  622.                 }
  623.                 switch (depth) {
  624.                     case 8:
  625.                         default_var.bits_per_pixel = 8;
  626.                         break;
  627.                     case 16:
  628.                         default_var.bits_per_pixel = 16;
  629.                         break;
  630.                     case 24:
  631.                         default_var.bits_per_pixel = 24;
  632.                         break;
  633.                     case 32:
  634.                         default_var.bits_per_pixel = 32;
  635.                         break;
  636.                     default:
  637.                         break;
  638.                 }
  639.             }
  640. #endif
  641. if (!iga_init(info)) {
  642. iounmap((void *)info->io_base);
  643. iounmap(info->frame_buffer);
  644. if (info->mmap_map)
  645. kfree(info->mmap_map);
  646. kfree(info);
  647.         }
  648. #ifdef __sparc__
  649.     /*
  650.      * Add /dev/fb mmap values.
  651.      */
  652.     
  653.     /* First region is for video memory */
  654.     info->mmap_map[0].voff = 0x0;  
  655.     info->mmap_map[0].poff = info->frame_buffer_phys & PAGE_MASK;
  656.     info->mmap_map[0].size = info->total_vram   & PAGE_MASK;
  657.     info->mmap_map[0].prot_mask = SRMMU_CACHE;
  658.     info->mmap_map[0].prot_flag = SRMMU_WRITE;
  659.     /* Second region is for I/O ports */
  660.     info->mmap_map[1].voff = info->frame_buffer_phys & PAGE_MASK;
  661.     info->mmap_map[1].poff = info->io_base_phys & PAGE_MASK;
  662.     info->mmap_map[1].size = PAGE_SIZE * 2; /* X wants 2 pages */
  663.     info->mmap_map[1].prot_mask = SRMMU_CACHE;
  664.     info->mmap_map[1].prot_flag = SRMMU_WRITE;
  665. #endif /* __sparc__ */
  666. return 0;
  667. }
  668. int __init igafb_setup(char *options)
  669. {
  670.     char *this_opt;
  671.     if (!options || !*options)
  672.         return 0;
  673.     while ((this_opt = strsep(&options, ",")) != NULL) {
  674.         if (!strncmp(this_opt, "font:", 5)) {
  675.                 char *p;
  676.                 int i;
  677.                 p = this_opt + 5;
  678.                 for (i = 0; i < sizeof(fontname) - 1; i++)
  679.                         if (!*p || *p == ' ' || *p == ',')
  680.                                 break;
  681.                 memcpy(fontname, this_opt + 5, i);
  682.                 fontname[i] = 0;
  683.         }
  684.     }
  685.     return 0;
  686. }
  687. MODULE_LICENSE("GPL");