blob: 1e0b913c3d71ce9be96847b128b3965da2672f21 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef ASMARM_VGA_H
2#define ASMARM_VGA_H
3
4#include <asm/hardware.h>
5#include <asm/io.h>
6
Bjorn Helgaas4f1bcaf2006-06-22 14:47:32 -07007#define VGA_MAP_MEM(x,s) (PCIMEM_BASE + (x))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9#define vga_readb(x) (*((volatile unsigned char *)x))
10#define vga_writeb(x,y) (*((volatile unsigned char *)y) = (x))
11
12#endif