blob: 6a3cd2a2f6700d386a5cc82921eb9e6b6f76258e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef ASMARM_VGA_H
2#define ASMARM_VGA_H
3
Russell Kinga09e64f2008-08-05 16:14:15 +01004#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#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