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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_VGA_H
  2. #define _ASM_IA64_VGA_H
  3. /*
  4.  * Access to VGA videoram
  5.  *
  6.  * (c) 1998 Martin Mares <mj@ucw.cz>
  7.  * (c) 1999 Asit Mallick <asit.k.mallick@intel.com>
  8.  * (c) 1999 Don Dugger <don.dugger@intel.com>
  9.  * Copyright (C) 2002 Hewlett-Packard Co
  10.  */
  11. /*
  12.  * 2002/07/19 davidm@hpl.hp.com Access frame-buffer memory via readX/writeX.
  13.  */
  14. #include <asm/io.h>
  15. #define VT_BUF_HAVE_RW
  16. #define VGA_MAP_MEM(x) ((unsigned long) ioremap((x), 0))
  17. #define vga_readb __raw_readb
  18. #define vga_writeb __raw_writeb
  19. extern inline void
  20. scr_writew (u16 val, volatile u16 *addr)
  21. {
  22. /* Note: ADDR may point to normal memory.  That's OK on ia64.  */
  23. __raw_writew(val, (unsigned long) addr);
  24. }
  25. extern inline u16
  26. scr_readw (volatile const u16 *addr)
  27. {
  28. /* Note: ADDR may point to normal memory.  That's OK on ia64.  */
  29. return __raw_readw((unsigned long) addr);
  30. }
  31. #endif /* _ASM_IA64_VGA_H */