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

嵌入式Linux

开发平台:

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