blob: 250a4dd00630f135c09e3fb474092ed4b9ba1b04 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef ASMARM_VGA_H
2#define ASMARM_VGA_H
3
Russell Kingfced80c2008-09-06 12:10:45 +01004#include <linux/io.h>
Russell Kinga09e64f2008-08-05 16:14:15 +01005#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
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