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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/video/fbmem.c
  3.  *
  4.  *  Copyright (C) 1994 Martin Schaller
  5.  *
  6.  * 2001 - Documented with DocBook
  7.  * - Brad Douglas <brad@neruo.com>
  8.  *
  9.  * This file is subject to the terms and conditions of the GNU General Public
  10.  * License.  See the file COPYING in the main directory of this archive
  11.  * for more details.
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/module.h>
  15. #include <linux/types.h>
  16. #include <linux/errno.h>
  17. #include <linux/sched.h>
  18. #include <linux/smp_lock.h>
  19. #include <linux/kernel.h>
  20. #include <linux/major.h>
  21. #include <linux/slab.h>
  22. #include <linux/mman.h>
  23. #include <linux/tty.h>
  24. #include <linux/console.h>
  25. #include <linux/init.h>
  26. #include <linux/proc_fs.h>
  27. #ifdef CONFIG_KMOD
  28. #include <linux/kmod.h>
  29. #endif
  30. #include <linux/devfs_fs_kernel.h>
  31. #if defined(__mc68000__) || defined(CONFIG_APUS)
  32. #include <asm/setup.h>
  33. #endif
  34. #include <asm/io.h>
  35. #include <asm/uaccess.h>
  36. #include <asm/page.h>
  37. #include <asm/pgtable.h>
  38. #include <linux/fb.h>
  39. #include <video/fbcon.h>
  40.     /*
  41.      *  Frame buffer device initialization and setup routines
  42.      */
  43. extern int acornfb_init(void);
  44. extern int acornfb_setup(char*);
  45. extern int amifb_init(void);
  46. extern int amifb_setup(char*);
  47. extern int atafb_init(void);
  48. extern int atafb_setup(char*);
  49. extern int macfb_init(void);
  50. extern int macfb_setup(char*);
  51. extern int cyberfb_init(void);
  52. extern int cyberfb_setup(char*);
  53. extern int pm2fb_init(void);
  54. extern int pm2fb_setup(char*);
  55. extern int pm3fb_init(void);
  56. extern int pm3fb_setup(char*);
  57. extern int cyber2000fb_init(void);
  58. extern int retz3fb_init(void);
  59. extern int retz3fb_setup(char*);
  60. extern int clgenfb_init(void);
  61. extern int clgenfb_setup(char*);
  62. extern int hitfb_init(void);
  63. extern int vfb_init(void);
  64. extern int vfb_setup(char*);
  65. extern int offb_init(void);
  66. extern int atyfb_init(void);
  67. extern int atyfb_setup(char*);
  68. extern int aty128fb_init(void);
  69. extern int aty128fb_setup(char*);
  70. extern int neofb_init(void);
  71. extern int neofb_setup(char*);
  72. extern int igafb_init(void);
  73. extern int igafb_setup(char*);
  74. extern int imsttfb_init(void);
  75. extern int imsttfb_setup(char*);
  76. extern int dnfb_init(void);
  77. extern int tgafb_init(void);
  78. extern int tgafb_setup(char*);
  79. extern int virgefb_init(void);
  80. extern int virgefb_setup(char*);
  81. extern int resolver_video_setup(char*);
  82. extern int s3triofb_init(void);
  83. extern int vesafb_init(void);
  84. extern int vesafb_setup(char*);
  85. extern int vga16fb_init(void);
  86. extern int vga16fb_setup(char*);
  87. extern int hgafb_init(void);
  88. extern int hgafb_setup(char*);
  89. extern int matroxfb_init(void);
  90. extern int matroxfb_setup(char*);
  91. extern int hpfb_init(void);
  92. extern int sbusfb_init(void);
  93. extern int sbusfb_setup(char*);
  94. extern int control_init(void);
  95. extern int control_setup(char*);
  96. extern int platinum_init(void);
  97. extern int platinum_setup(char*);
  98. extern int valkyriefb_init(void);
  99. extern int valkyriefb_setup(char*);
  100. extern int chips_init(void);
  101. extern int g364fb_init(void);
  102. extern int sa1100fb_init(void);
  103. extern int fm2fb_init(void);
  104. extern int fm2fb_setup(char*);
  105. extern int q40fb_init(void);
  106. extern int sun3fb_init(void);
  107. extern int sun3fb_setup(char *);
  108. extern int sgivwfb_init(void);
  109. extern int sgivwfb_setup(char*);
  110. extern int rivafb_init(void);
  111. extern int rivafb_setup(char*);
  112. extern int tdfxfb_init(void);
  113. extern int tdfxfb_setup(char*);
  114. extern int tridentfb_init(void);
  115. extern int tridentfb_setup(char*);
  116. extern int sisfb_init(void);
  117. extern int sisfb_setup(char*);
  118. extern int stifb_init(void);
  119. extern int stifb_setup(char*);
  120. extern int pmagbafb_init(void);
  121. extern int pmagbbfb_init(void);
  122. extern void maxinefb_init(void);
  123. extern int tx3912fb_init(void);
  124. extern int radeonfb_init(void);
  125. extern int radeonfb_setup(char*);
  126. extern int e1355fb_init(void);
  127. extern int e1355fb_setup(char*);
  128. extern int au1100fb_init(void);
  129. extern int au1100fb_setup(char*);
  130. extern int pvr2fb_init(void);
  131. extern int pvr2fb_setup(char*);
  132. extern int sstfb_init(void);
  133. extern int sstfb_setup(char*);
  134. static struct {
  135. const char *name;
  136. int (*init)(void);
  137. int (*setup)(char*);
  138. } fb_drivers[] __initdata = {
  139. #ifdef CONFIG_FB_SBUS
  140. /*
  141.  * Sbusfb must be initialized _before_ other frame buffer devices that
  142.  * use PCI probing
  143.  */
  144. { "sbus", sbusfb_init, sbusfb_setup },
  145. #endif
  146. /*
  147.  * Chipset specific drivers that use resource management
  148.  */
  149. #ifdef CONFIG_FB_RETINAZ3
  150. { "retz3", retz3fb_init, retz3fb_setup },
  151. #endif
  152. #ifdef CONFIG_FB_AMIGA
  153. { "amifb", amifb_init, amifb_setup },
  154. #endif
  155. #ifdef CONFIG_FB_CYBER
  156. { "cyber", cyberfb_init, cyberfb_setup },
  157. #endif
  158. #ifdef CONFIG_FB_CYBER2000
  159. { "cyber2000", cyber2000fb_init, NULL },
  160. #endif
  161. #ifdef CONFIG_FB_PM2
  162. { "pm2fb", pm2fb_init, pm2fb_setup },
  163. #endif
  164. #ifdef CONFIG_FB_PM3
  165. { "pm3fb", pm3fb_init, pm3fb_setup },
  166. #endif
  167. #ifdef CONFIG_FB_CLGEN
  168. { "clgen", clgenfb_init, clgenfb_setup },
  169. #endif
  170. #ifdef CONFIG_FB_ATY
  171. { "atyfb", atyfb_init, atyfb_setup },
  172. #endif
  173. #ifdef CONFIG_FB_MATROX
  174. { "matrox", matroxfb_init, matroxfb_setup },
  175. #endif
  176. #ifdef CONFIG_FB_ATY128
  177. { "aty128fb", aty128fb_init, aty128fb_setup },
  178. #endif
  179. #ifdef CONFIG_FB_NEOMAGIC
  180. { "neo", neofb_init, neofb_setup },
  181. #endif
  182. #ifdef CONFIG_FB_VIRGE
  183. { "virge", virgefb_init, virgefb_setup },
  184. #endif
  185. #ifdef CONFIG_FB_RIVA
  186. { "riva", rivafb_init, rivafb_setup },
  187. #endif
  188. #ifdef CONFIG_FB_RADEON
  189. { "radeon", radeonfb_init, radeonfb_setup },
  190. #endif
  191. #ifdef CONFIG_FB_CONTROL
  192. { "controlfb", control_init, control_setup },
  193. #endif
  194. #ifdef CONFIG_FB_PLATINUM
  195. { "platinumfb", platinum_init, platinum_setup },
  196. #endif
  197. #ifdef CONFIG_FB_VALKYRIE
  198. { "valkyriefb", valkyriefb_init, valkyriefb_setup },
  199. #endif
  200. #ifdef CONFIG_FB_CT65550
  201. { "chipsfb", chips_init, NULL },
  202. #endif
  203. #ifdef CONFIG_FB_IMSTT
  204. { "imsttfb", imsttfb_init, imsttfb_setup },
  205. #endif
  206. #ifdef CONFIG_FB_S3TRIO
  207. { "s3trio", s3triofb_init, NULL },
  208. #endif 
  209. #ifdef CONFIG_FB_FM2
  210. { "fm2fb", fm2fb_init, fm2fb_setup },
  211. #endif 
  212. #ifdef CONFIG_FB_SIS
  213. { "sisfb", sisfb_init, sisfb_setup },
  214. #endif
  215. #ifdef CONFIG_FB_TRIDENT
  216. { "trident", tridentfb_init, tridentfb_setup },
  217. #endif
  218. #ifdef CONFIG_FB_VOODOO1
  219. { "sst", sstfb_init, sstfb_setup },
  220. #endif
  221. /*
  222.  * Generic drivers that are used as fallbacks
  223.  * 
  224.  * These depend on resource management and must be initialized
  225.  * _after_ all other frame buffer devices that use resource
  226.  * management!
  227.  */
  228. #ifdef CONFIG_FB_OF
  229. { "offb", offb_init, NULL },
  230. #endif
  231. #ifdef CONFIG_FB_VESA
  232. { "vesa", vesafb_init, vesafb_setup },
  233. #endif 
  234. /*
  235.  * Chipset specific drivers that don't use resource management (yet)
  236.  */
  237. #ifdef CONFIG_FB_3DFX
  238. { "tdfx", tdfxfb_init, tdfxfb_setup },
  239. #endif
  240. #ifdef CONFIG_FB_SGIVW
  241. { "sgivw", sgivwfb_init, sgivwfb_setup },
  242. #endif
  243. #ifdef CONFIG_FB_ACORN
  244. { "acorn", acornfb_init, acornfb_setup },
  245. #endif
  246. #ifdef CONFIG_FB_ATARI
  247. { "atafb", atafb_init, atafb_setup },
  248. #endif
  249. #ifdef CONFIG_FB_MAC
  250. { "macfb", macfb_init, macfb_setup },
  251. #endif
  252. #ifdef CONFIG_FB_HGA
  253. { "hga", hgafb_init, hgafb_setup },
  254. #endif 
  255. #ifdef CONFIG_FB_IGA
  256. { "igafb", igafb_init, igafb_setup },
  257. #endif
  258. #ifdef CONFIG_APOLLO
  259. { "apollo", dnfb_init, NULL },
  260. #endif
  261. #ifdef CONFIG_FB_Q40
  262. { "q40fb", q40fb_init, NULL },
  263. #endif
  264. #ifdef CONFIG_FB_TGA
  265. { "tga", tgafb_init, tgafb_setup },
  266. #endif
  267. #ifdef CONFIG_FB_HP300
  268. { "hpfb", hpfb_init, NULL },
  269. #endif 
  270. #ifdef CONFIG_FB_G364
  271. { "g364", g364fb_init, NULL },
  272. #endif
  273. #ifdef CONFIG_FB_SA1100
  274. { "sa1100", sa1100fb_init, NULL },
  275. #endif
  276. #ifdef CONFIG_FB_SUN3
  277. { "sun3", sun3fb_init, sun3fb_setup },
  278. #endif
  279. #ifdef CONFIG_FB_HIT
  280. { "hitfb", hitfb_init, NULL },
  281. #endif
  282. #ifdef CONFIG_FB_TX3912
  283. { "tx3912", tx3912fb_init, NULL },
  284. #endif
  285. #ifdef CONFIG_FB_E1355
  286. { "e1355fb", e1355fb_init, e1355fb_setup },
  287. #endif
  288. #ifdef CONFIG_FB_PVR2
  289. { "pvr2", pvr2fb_init, pvr2fb_setup },
  290. #endif
  291. #ifdef CONFIG_FB_PMAG_BA
  292. { "pmagbafb", pmagbafb_init, NULL },
  293. #endif
  294. #ifdef CONFIG_FB_PMAGB_B
  295. { "pmagbbfb", pmagbbfb_init, NULL },
  296. #endif
  297. #ifdef CONFIG_FB_MAXINE
  298. { "maxinefb", maxinefb_init, NULL },
  299. #endif
  300. #ifdef CONFIG_FB_AU1100
  301. { "au1100fb", au1100fb_init, au1100fb_setup },
  302. #endif 
  303. /*
  304.  * Generic drivers that don't use resource management (yet)
  305.  */
  306. #ifdef CONFIG_FB_VGA16
  307. { "vga16", vga16fb_init, vga16fb_setup },
  308. #endif 
  309. #ifdef CONFIG_FB_STI
  310. { "stifb", stifb_init, stifb_setup },
  311. #endif
  312. #ifdef CONFIG_GSP_RESOLVER
  313. /* Not a real frame buffer device... */
  314. { "resolver", NULL, resolver_video_setup },
  315. #endif
  316. #ifdef CONFIG_FB_VIRTUAL
  317. /*
  318.  * Vfb must be last to avoid that it becomes your primary display if
  319.  * other display devices are present
  320.  */
  321. { "vfb", vfb_init, vfb_setup },
  322. #endif
  323. };
  324. #define NUM_FB_DRIVERS (sizeof(fb_drivers)/sizeof(*fb_drivers))
  325. extern const char *global_mode_option;
  326. static initcall_t pref_init_funcs[FB_MAX];
  327. static int num_pref_init_funcs __initdata = 0;
  328. struct fb_info *registered_fb[FB_MAX];
  329. int num_registered_fb;
  330. extern int fbcon_softback_size; 
  331. static int first_fb_vc;
  332. static int last_fb_vc = MAX_NR_CONSOLES-1;
  333. static int fbcon_is_default = 1;
  334. #ifdef CONFIG_FB_OF
  335. static int ofonly __initdata = 0;
  336. #endif
  337. static int fbmem_read_proc(char *buf, char **start, off_t offset,
  338.    int len, int *eof, void *private)
  339. {
  340. struct fb_info **fi;
  341. int clen;
  342. clen = 0;
  343. for (fi = registered_fb; fi < &registered_fb[FB_MAX] && len < 4000; fi++)
  344. if (*fi)
  345. clen += sprintf(buf + clen, "%d %sn",
  346.         GET_FB_IDX((*fi)->node),
  347.         (*fi)->modename);
  348. *start = buf + offset;
  349. if (clen > offset)
  350. clen -= offset;
  351. else
  352. clen = 0;
  353. return clen < len ? clen : len;
  354. }
  355. static ssize_t
  356. fb_read(struct file *file, char *buf, size_t count, loff_t *ppos)
  357. {
  358. unsigned long p = *ppos;
  359. struct inode *inode = file->f_dentry->d_inode;
  360. int fbidx = GET_FB_IDX(inode->i_rdev);
  361. struct fb_info *info = registered_fb[fbidx];
  362. struct fb_ops *fb = info->fbops;
  363. struct fb_fix_screeninfo fix;
  364. if (! fb || ! info->disp)
  365. return -ENODEV;
  366. fb->fb_get_fix(&fix,PROC_CONSOLE(info), info);
  367. if (p >= fix.smem_len)
  368.     return 0;
  369. if (count >= fix.smem_len)
  370.     count = fix.smem_len;
  371. if (count + p > fix.smem_len)
  372. count = fix.smem_len - p;
  373. if (count) {
  374.     char *base_addr;
  375.     base_addr = info->disp->screen_base;
  376.     count -= copy_to_user(buf, base_addr+p, count);
  377.     if (!count)
  378. return -EFAULT;
  379.     *ppos += count;
  380. }
  381. return count;
  382. }
  383. static ssize_t
  384. fb_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
  385. {
  386. unsigned long p = *ppos;
  387. struct inode *inode = file->f_dentry->d_inode;
  388. int fbidx = GET_FB_IDX(inode->i_rdev);
  389. struct fb_info *info = registered_fb[fbidx];
  390. struct fb_ops *fb = info->fbops;
  391. struct fb_fix_screeninfo fix;
  392. int err;
  393. if (! fb || ! info->disp)
  394. return -ENODEV;
  395. fb->fb_get_fix(&fix, PROC_CONSOLE(info), info);
  396. if (p > fix.smem_len)
  397.     return -ENOSPC;
  398. if (count >= fix.smem_len)
  399.     count = fix.smem_len;
  400. err = 0;
  401. if (count + p > fix.smem_len) {
  402.     count = fix.smem_len - p;
  403.     err = -ENOSPC;
  404. }
  405. if (count) {
  406.     char *base_addr;
  407.     base_addr = info->disp->screen_base;
  408.     count -= copy_from_user(base_addr+p, buf, count);
  409.     *ppos += count;
  410.     err = -EFAULT;
  411. }
  412. if (count)
  413. return count;
  414. return err;
  415. }
  416. #ifdef CONFIG_KMOD
  417. static void try_to_load(int fb)
  418. {
  419. char modname[16];
  420. sprintf(modname, "fb%d", fb);
  421. request_module(modname);
  422. }
  423. #endif /* CONFIG_KMOD */
  424. static int 
  425. fb_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  426.  unsigned long arg)
  427. {
  428. int fbidx = GET_FB_IDX(inode->i_rdev);
  429. struct fb_info *info = registered_fb[fbidx];
  430. struct fb_ops *fb = info->fbops;
  431. struct fb_cmap cmap;
  432. struct fb_var_screeninfo var;
  433. struct fb_fix_screeninfo fix;
  434. struct fb_con2fbmap con2fb;
  435. int i;
  436. if (! fb)
  437. return -ENODEV;
  438. switch (cmd) {
  439. case FBIOGET_VSCREENINFO:
  440. if ((i = fb->fb_get_var(&var, PROC_CONSOLE(info), info)))
  441. return i;
  442. return copy_to_user((void *) arg, &var,
  443.     sizeof(var)) ? -EFAULT : 0;
  444. case FBIOPUT_VSCREENINFO:
  445. if (copy_from_user(&var, (void *) arg, sizeof(var)))
  446. return -EFAULT;
  447. i = var.activate & FB_ACTIVATE_ALL
  448.     ? set_all_vcs(fbidx, fb, &var, info)
  449.     : fb->fb_set_var(&var, PROC_CONSOLE(info), info);
  450. if (i)
  451. return i;
  452. if (copy_to_user((void *) arg, &var, sizeof(var)))
  453. return -EFAULT;
  454. return 0;
  455. case FBIOGET_FSCREENINFO:
  456. if ((i = fb->fb_get_fix(&fix, PROC_CONSOLE(info), info)))
  457. return i;
  458. return copy_to_user((void *) arg, &fix, sizeof(fix)) ?
  459. -EFAULT : 0;
  460. case FBIOPUTCMAP:
  461. if (copy_from_user(&cmap, (void *) arg, sizeof(cmap)))
  462. return -EFAULT;
  463. return (fb->fb_set_cmap(&cmap, 0, PROC_CONSOLE(info), info));
  464. case FBIOGETCMAP:
  465. if (copy_from_user(&cmap, (void *) arg, sizeof(cmap)))
  466. return -EFAULT;
  467. return (fb->fb_get_cmap(&cmap, 0, PROC_CONSOLE(info), info));
  468. case FBIOPAN_DISPLAY:
  469. if (copy_from_user(&var, (void *) arg, sizeof(var)))
  470. return -EFAULT;
  471. if (fb->fb_pan_display == NULL)
  472. return (var.xoffset || var.yoffset) ? -EINVAL : 0;
  473. if ((i=fb->fb_pan_display(&var, PROC_CONSOLE(info), info)))
  474. return i;
  475. if (copy_to_user((void *) arg, &var, sizeof(var)))
  476. return -EFAULT;
  477. return i;
  478. case FBIOGET_CON2FBMAP:
  479. if (copy_from_user(&con2fb, (void *)arg, sizeof(con2fb)))
  480. return -EFAULT;
  481. if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
  482.     return -EINVAL;
  483. con2fb.framebuffer = con2fb_map[con2fb.console-1];
  484. return copy_to_user((void *)arg, &con2fb,
  485.     sizeof(con2fb)) ? -EFAULT : 0;
  486. case FBIOPUT_CON2FBMAP:
  487. if (copy_from_user(&con2fb, (void *)arg, sizeof(con2fb)))
  488. return - EFAULT;
  489. if (con2fb.console < 0 || con2fb.console > MAX_NR_CONSOLES)
  490.     return -EINVAL;
  491. if (con2fb.framebuffer < 0 || con2fb.framebuffer >= FB_MAX)
  492.     return -EINVAL;
  493. #ifdef CONFIG_KMOD
  494. if (!registered_fb[con2fb.framebuffer])
  495.     try_to_load(con2fb.framebuffer);
  496. #endif /* CONFIG_KMOD */
  497. if (!registered_fb[con2fb.framebuffer])
  498.     return -EINVAL;
  499. if (con2fb.console != 0)
  500.     set_con2fb_map(con2fb.console-1, con2fb.framebuffer);
  501. else
  502.     /* set them all */
  503.     for (i = 0; i < MAX_NR_CONSOLES; i++)
  504. set_con2fb_map(i, con2fb.framebuffer);
  505. return 0;
  506. case FBIOBLANK:
  507. if (info->blank == 0)
  508. return -EINVAL;
  509. (*info->blank)(arg, info);
  510. return 0;
  511. default:
  512. if (fb->fb_ioctl == NULL)
  513. return -EINVAL;
  514. return fb->fb_ioctl(inode, file, cmd, arg, PROC_CONSOLE(info),
  515.     info);
  516. }
  517. }
  518. static int 
  519. fb_mmap(struct file *file, struct vm_area_struct * vma)
  520. {
  521. int fbidx = GET_FB_IDX(file->f_dentry->d_inode->i_rdev);
  522. struct fb_info *info = registered_fb[fbidx];
  523. struct fb_ops *fb = info->fbops;
  524. unsigned long off;
  525. #if !defined(__sparc__) || defined(__sparc_v9__)
  526. struct fb_fix_screeninfo fix;
  527. struct fb_var_screeninfo var;
  528. unsigned long start;
  529. u32 len;
  530. #endif
  531. if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT))
  532. return -EINVAL;
  533. off = vma->vm_pgoff << PAGE_SHIFT;
  534. if (!fb)
  535. return -ENODEV;
  536. if (fb->fb_mmap) {
  537. int res;
  538. lock_kernel();
  539. res = fb->fb_mmap(info, file, vma);
  540. unlock_kernel();
  541. /* This is an IO map - tell maydump to skip this VMA */
  542. vma->vm_flags |= VM_IO;
  543. return res;
  544. }
  545. #if defined(__sparc__) && !defined(__sparc_v9__)
  546. /* Should never get here, all fb drivers should have their own
  547.    mmap routines */
  548. return -EINVAL;
  549. #else
  550. /* !sparc32... */
  551. lock_kernel();
  552. fb->fb_get_fix(&fix, PROC_CONSOLE(info), info);
  553. /* frame buffer memory */
  554. start = fix.smem_start;
  555. len = PAGE_ALIGN((start & ~PAGE_MASK)+fix.smem_len);
  556. if (off >= len) {
  557. /* memory mapped io */
  558. off -= len;
  559. fb->fb_get_var(&var, PROC_CONSOLE(info), info);
  560. if (var.accel_flags) {
  561. unlock_kernel();
  562. return -EINVAL;
  563. }
  564. start = fix.mmio_start;
  565. len = PAGE_ALIGN((start & ~PAGE_MASK)+fix.mmio_len);
  566. }
  567. unlock_kernel();
  568. start &= PAGE_MASK;
  569. if ((vma->vm_end - vma->vm_start + off) > len)
  570. return -EINVAL;
  571. off += start;
  572. vma->vm_pgoff = off >> PAGE_SHIFT;
  573. /* This is an IO map - tell maydump to skip this VMA */
  574. vma->vm_flags |= VM_IO;
  575. #if defined(__sparc_v9__)
  576. vma->vm_flags |= (VM_SHM | VM_LOCKED);
  577. if (io_remap_page_range(vma->vm_start, off,
  578. vma->vm_end - vma->vm_start, vma->vm_page_prot, 0))
  579. return -EAGAIN;
  580. #else
  581. #if defined(__mc68000__)
  582. #if defined(CONFIG_SUN3)
  583. pgprot_val(vma->vm_page_prot) |= SUN3_PAGE_NOCACHE;
  584. #else
  585. if (CPU_IS_020_OR_030)
  586. pgprot_val(vma->vm_page_prot) |= _PAGE_NOCACHE030;
  587. if (CPU_IS_040_OR_060) {
  588. pgprot_val(vma->vm_page_prot) &= _CACHEMASK040;
  589. /* Use no-cache mode, serialized */
  590. pgprot_val(vma->vm_page_prot) |= _PAGE_NOCACHE_S;
  591. }
  592. #endif
  593. #elif defined(__powerpc__)
  594. pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE|_PAGE_GUARDED;
  595. #elif defined(__alpha__)
  596. /* Caching is off in the I/O space quadrant by design.  */
  597. #elif defined(__i386__) || defined(__x86_64__)
  598. if (boot_cpu_data.x86 > 3)
  599. pgprot_val(vma->vm_page_prot) |= _PAGE_PCD;
  600. #elif defined(__arm__) || defined(__mips__)
  601. vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
  602. #elif defined(__sh__)
  603. pgprot_val(vma->vm_page_prot) &= ~_PAGE_CACHABLE;
  604. #elif defined(__ia64__)
  605. vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
  606. #elif defined(__hppa__)
  607. pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE; 
  608. #else
  609. #warning What do we have to do here??
  610. #endif
  611. if (io_remap_page_range(vma->vm_start, off,
  612.      vma->vm_end - vma->vm_start, vma->vm_page_prot))
  613. return -EAGAIN;
  614. #endif /* !__sparc_v9__ */
  615. return 0;
  616. #endif /* !sparc32 */
  617. }
  618. #if 1 /* to go away in 2.5.0 */
  619. int GET_FB_IDX(kdev_t rdev)
  620. {
  621.     int fbidx = MINOR(rdev);
  622.     if (fbidx >= 32) {
  623. int newfbidx = fbidx >> 5;
  624. static int warned;
  625. if (!(warned & (1<<newfbidx))) {
  626.     warned |= 1<<newfbidx;
  627.     printk("Warning: Remapping obsolete /dev/fb* minor %d to %dn",
  628.    fbidx, newfbidx);
  629. }
  630. fbidx = newfbidx;
  631.     }
  632.     return fbidx;
  633. }
  634. #endif
  635. static int
  636. fb_open(struct inode *inode, struct file *file)
  637. {
  638. int fbidx = GET_FB_IDX(inode->i_rdev);
  639. struct fb_info *info;
  640. int res = 0;
  641. #ifdef CONFIG_KMOD
  642. if (!(info = registered_fb[fbidx]))
  643. try_to_load(fbidx);
  644. #endif /* CONFIG_KMOD */
  645. if (!(info = registered_fb[fbidx]))
  646. return -ENODEV;
  647. if (info->fbops->owner)
  648. __MOD_INC_USE_COUNT(info->fbops->owner);
  649. if (info->fbops->fb_open) {
  650. res = info->fbops->fb_open(info,1);
  651. if (res && info->fbops->owner)
  652. __MOD_DEC_USE_COUNT(info->fbops->owner);
  653. }
  654. return res;
  655. }
  656. static int 
  657. fb_release(struct inode *inode, struct file *file)
  658. {
  659. int fbidx = GET_FB_IDX(inode->i_rdev);
  660. struct fb_info *info;
  661. lock_kernel();
  662. info = registered_fb[fbidx];
  663. if (info->fbops->fb_release)
  664. info->fbops->fb_release(info,1);
  665. if (info->fbops->owner)
  666. __MOD_DEC_USE_COUNT(info->fbops->owner);
  667. unlock_kernel();
  668. return 0;
  669. }
  670. static struct file_operations fb_fops = {
  671. owner: THIS_MODULE,
  672. read: fb_read,
  673. write: fb_write,
  674. ioctl: fb_ioctl,
  675. mmap: fb_mmap,
  676. open: fb_open,
  677. release: fb_release,
  678. #ifdef HAVE_ARCH_FB_UNMAPPED_AREA
  679. get_unmapped_area: get_fb_unmapped_area,
  680. #endif
  681. };
  682. static devfs_handle_t devfs_handle;
  683. /**
  684.  * register_framebuffer - registers a frame buffer device
  685.  * @fb_info: frame buffer info structure
  686.  *
  687.  * Registers a frame buffer device @fb_info.
  688.  *
  689.  * Returns negative errno on error, or zero for success.
  690.  *
  691.  */
  692. int
  693. register_framebuffer(struct fb_info *fb_info)
  694. {
  695. int i, j;
  696. char name_buf[8];
  697. static int fb_ever_opened[FB_MAX];
  698. static int first = 1;
  699. if (num_registered_fb == FB_MAX)
  700. return -ENXIO;
  701. num_registered_fb++;
  702. for (i = 0 ; i < FB_MAX; i++)
  703. if (!registered_fb[i])
  704. break;
  705. fb_info->node = MKDEV(FB_MAJOR, i);
  706. registered_fb[i] = fb_info;
  707. if (!fb_ever_opened[i]) {
  708. struct module *owner = fb_info->fbops->owner;
  709. /*
  710.  *  We assume initial frame buffer devices can be opened this
  711.  *  many times
  712.  */
  713. for (j = 0; j < MAX_NR_CONSOLES; j++)
  714. if (con2fb_map[j] == i) {
  715. if (owner)
  716. __MOD_INC_USE_COUNT(owner);
  717. if (!fb_info->fbops->fb_open)
  718. continue;
  719. if (!fb_info->fbops->fb_open(fb_info,0))
  720. continue;
  721. if (owner)
  722. __MOD_DEC_USE_COUNT(owner);
  723. }
  724. fb_ever_opened[i] = 1;
  725. }
  726. if (first) {
  727. first = 0;
  728. take_over_console(&fb_con, first_fb_vc, last_fb_vc, fbcon_is_default);
  729. }
  730. sprintf (name_buf, "%d", i);
  731. fb_info->devfs_handle =
  732.     devfs_register (devfs_handle, name_buf, DEVFS_FL_DEFAULT,
  733.     FB_MAJOR, i, S_IFCHR | S_IRUGO | S_IWUGO,
  734.     &fb_fops, NULL);
  735. return 0;
  736. }
  737. /**
  738.  * unregister_framebuffer - releases a frame buffer device
  739.  * @fb_info: frame buffer info structure
  740.  *
  741.  * Unregisters a frame buffer device @fb_info.
  742.  *
  743.  * Returns negative errno on error, or zero for success.
  744.  *
  745.  */
  746. int
  747. unregister_framebuffer(struct fb_info *fb_info)
  748. {
  749. int i, j;
  750. i = GET_FB_IDX(fb_info->node);
  751. for (j = 0; j < MAX_NR_CONSOLES; j++)
  752. if (con2fb_map[j] == i)
  753. return -EBUSY;
  754. if (!registered_fb[i])
  755. return -EINVAL;
  756. devfs_unregister (fb_info->devfs_handle);
  757. fb_info->devfs_handle = NULL;
  758. devfs_unregister (fb_info->devfs_lhandle);
  759. fb_info->devfs_lhandle = NULL;
  760. registered_fb[i]=NULL;
  761. num_registered_fb--;
  762. return 0;
  763. }
  764. /**
  765.  * fbmem_init - init frame buffer subsystem
  766.  *
  767.  * Initialize the frame buffer subsystem.
  768.  *
  769.  * NOTE: This function is _only_ to be called by drivers/char/mem.c.
  770.  *
  771.  */
  772. void __init 
  773. fbmem_init(void)
  774. {
  775. int i;
  776. create_proc_read_entry("fb", 0, 0, fbmem_read_proc, NULL);
  777. devfs_handle = devfs_mk_dir (NULL, "fb", NULL);
  778. if (devfs_register_chrdev(FB_MAJOR,"fb",&fb_fops))
  779. printk("unable to get major %d for fb devsn", FB_MAJOR);
  780. #ifdef CONFIG_FB_OF
  781. if (ofonly) {
  782. offb_init();
  783. return;
  784. }
  785. #endif
  786. /*
  787.  *  Probe for all builtin frame buffer devices
  788.  */
  789. for (i = 0; i < num_pref_init_funcs; i++)
  790. pref_init_funcs[i]();
  791. for (i = 0; i < NUM_FB_DRIVERS; i++)
  792. if (fb_drivers[i].init)
  793. fb_drivers[i].init();
  794. }
  795. /**
  796.  * video_setup - process command line options
  797.  * @options: string of options
  798.  *
  799.  * Process command line options for frame buffer subsystem.
  800.  *
  801.  * NOTE: This function is a __setup and __init function.
  802.  *
  803.  * Returns zero.
  804.  *
  805.  */
  806. int __init video_setup(char *options)
  807. {
  808.     int i, j;
  809.     if (!options || !*options)
  810.     return 0;
  811.     
  812.     if (!strncmp(options, "scrollback:", 11)) {
  813.     options += 11;
  814.     if (*options) {
  815. fbcon_softback_size = simple_strtoul(options, &options, 0);
  816. if (*options == 'k' || *options == 'K') {
  817. fbcon_softback_size *= 1024;
  818. options++;
  819. }
  820. if (*options != ',')
  821. return 0;
  822. options++;
  823.     } else
  824.         return 0;
  825.     }
  826.     if (!strncmp(options, "map:", 4)) {
  827.     options += 4;
  828.     if (*options)
  829.     for (i = 0, j = 0; i < MAX_NR_CONSOLES; i++) {
  830.     if (!options[j])
  831.     j = 0;
  832.     con2fb_map[i] = (options[j++]-'0') % FB_MAX;
  833.     }
  834.     return 0;
  835.     }
  836.     
  837.     if (!strncmp(options, "vc:", 3)) {
  838.     options += 3;
  839.     if (*options)
  840. first_fb_vc = simple_strtoul(options, &options, 10) - 1;
  841.     if (first_fb_vc < 0)
  842. first_fb_vc = 0;
  843.     if (*options++ == '-')
  844. last_fb_vc = simple_strtoul(options, &options, 10) - 1;
  845.     fbcon_is_default = 0;
  846.     }
  847. #ifdef CONFIG_FB_OF
  848.     if (!strcmp(options, "ofonly")) {
  849.     ofonly = 1;
  850.     return 0;
  851.     }
  852. #endif
  853.     if (num_pref_init_funcs == FB_MAX)
  854.     return 0;
  855.     for (i = 0; i < NUM_FB_DRIVERS; i++) {
  856.     j = strlen(fb_drivers[i].name);
  857.     if (!strncmp(options, fb_drivers[i].name, j) &&
  858. options[j] == ':') {
  859.     if (!strcmp(options+j+1, "off"))
  860.     fb_drivers[i].init = NULL;
  861.     else {
  862.     if (fb_drivers[i].init) {
  863.     pref_init_funcs[num_pref_init_funcs++] =
  864.     fb_drivers[i].init;
  865.     fb_drivers[i].init = NULL;
  866.     }
  867.     if (fb_drivers[i].setup)
  868.     fb_drivers[i].setup(options+j+1);
  869.     }
  870.     return 0;
  871.     }
  872.     }
  873.     /*
  874.      * If we get here no fb was specified.
  875.      * We consider the argument to be a global video mode option.
  876.      */
  877.     global_mode_option = options;
  878.     return 0;
  879. }
  880. __setup("video=", video_setup);
  881.     /*
  882.      *  Visible symbols for modules
  883.      */
  884. EXPORT_SYMBOL(register_framebuffer);
  885. EXPORT_SYMBOL(unregister_framebuffer);
  886. EXPORT_SYMBOL(registered_fb);
  887. EXPORT_SYMBOL(num_registered_fb);
  888. #if 1 /* to go away in 2.5.0 */
  889. EXPORT_SYMBOL(GET_FB_IDX);
  890. #endif
  891. MODULE_LICENSE("GPL");