[PATCH] sysfs: add sysfs_chmod_file()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-mips / gfx.h
blob37235e41a6fdd23b9ee051cfe1987a52de2206f8
1 /*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
6 * This is the user-visible SGI GFX interface.
8 * This must be used verbatim into the GNU libc. It does not include
9 * any kernel-only bits on it.
11 * miguel@nuclecu.unam.mx
13 #ifndef _ASM_GFX_H
14 #define _ASM_GFX_H
16 /* The iocls, yes, they do not make sense, but such is life */
17 #define GFX_BASE 100
18 #define GFX_GETNUM_BOARDS (GFX_BASE + 1)
19 #define GFX_GETBOARD_INFO (GFX_BASE + 2)
20 #define GFX_ATTACH_BOARD (GFX_BASE + 3)
21 #define GFX_DETACH_BOARD (GFX_BASE + 4)
22 #define GFX_IS_MANAGED (GFX_BASE + 5)
24 #define GFX_MAPALL (GFX_BASE + 10)
25 #define GFX_LABEL (GFX_BASE + 11)
27 #define GFX_INFO_NAME_SIZE 16
28 #define GFX_INFO_LABEL_SIZE 16
30 struct gfx_info {
31 char name [GFX_INFO_NAME_SIZE]; /* board name */
32 char label [GFX_INFO_LABEL_SIZE]; /* label name */
33 unsigned short int xpmax, ypmax; /* screen resolution */
34 unsigned int lenght; /* size of a complete gfx_info for this board */
37 struct gfx_getboardinfo_args {
38 unsigned int board; /* board number. starting from zero */
39 void *buf; /* pointer to gfx_info */
40 unsigned int len; /* buffer size of buf */
43 struct gfx_attach_board_args {
44 unsigned int board; /* board number, starting from zero */
45 void *vaddr; /* address where the board registers should be mapped */
48 #ifdef __KERNEL__
49 /* umap.c */
50 extern void remove_mapping (struct vm_area_struct *vma, struct task_struct *, unsigned long, unsigned long);
51 extern void *vmalloc_uncached (unsigned long size);
52 extern int vmap_page_range (struct vm_area_struct *vma, unsigned long from, unsigned long size, unsigned long vaddr);
53 #endif
55 #endif /* _ASM_GFX_H */