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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.vga.h 1.5 05/17/01 18:14:26 cort
  3.  */
  4. /*
  5.  * Access to VGA videoram
  6.  *
  7.  * (c) 1998 Martin Mares <mj@ucw.cz>
  8.  */
  9. #ifdef __KERNEL__
  10. #ifndef _LINUX_ASM_VGA_H_
  11. #define _LINUX_ASM_VGA_H_
  12. #include <asm/io.h>
  13. #include <linux/config.h>
  14. #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_MDA_CONSOLE)
  15. #define VT_BUF_HAVE_RW
  16. /*
  17.  *  These are only needed for supporting VGA or MDA text mode, which use little
  18.  *  endian byte ordering.
  19.  *  In other cases, we can optimize by using native byte ordering and
  20.  *  <linux/vt_buffer.h> has already done the right job for us.
  21.  */
  22. extern inline void scr_writew(u16 val, volatile u16 *addr)
  23. {
  24.     st_le16(addr, val);
  25. }
  26. extern inline u16 scr_readw(volatile const u16 *addr)
  27. {
  28.     return ld_le16(addr);
  29. }
  30. #define VT_BUF_HAVE_MEMCPYW
  31. #define scr_memcpyw memcpy
  32. #endif /* !CONFIG_VGA_CONSOLE && !CONFIG_MDA_CONSOLE */
  33. extern unsigned long vgacon_remap_base;
  34. #define VGA_MAP_MEM(x) (x + vgacon_remap_base)
  35. #define vga_readb(x) (*(x))
  36. #define vga_writeb(x,y) (*(y) = (x))
  37. #endif
  38. #endif /* __KERNEL__ */