• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /****************************************************************************
2  ****************************************************************************
3  ***
4  ***   This header was automatically generated from a Linux kernel header
5  ***   of the same name, to make information necessary for userspace to
6  ***   call into the kernel available to libc.  It contains only constants,
7  ***   structures, and macros generated from the original header, and thus,
8  ***   contains no copyrightable information.
9  ***
10  ***   To edit the content of this header, modify the corresponding
11  ***   source file (e.g. under external/kernel-headers/original/) then
12  ***   run bionic/libc/kernel/tools/update_all.py
13  ***
14  ***   Any manual change here will be lost the next time this script will
15  ***   be run. You've been warned!
16  ***
17  ****************************************************************************
18  ****************************************************************************/
19 #ifndef _UAPI_AGP_H
20 #define _UAPI_AGP_H
21 #define AGPIOC_BASE 'A'
22 #define AGPIOC_INFO _IOR(AGPIOC_BASE, 0, struct agp_info *)
23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24 #define AGPIOC_ACQUIRE _IO(AGPIOC_BASE, 1)
25 #define AGPIOC_RELEASE _IO(AGPIOC_BASE, 2)
26 #define AGPIOC_SETUP _IOW(AGPIOC_BASE, 3, struct agp_setup *)
27 #define AGPIOC_RESERVE _IOW(AGPIOC_BASE, 4, struct agp_region *)
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29 #define AGPIOC_PROTECT _IOW(AGPIOC_BASE, 5, struct agp_region *)
30 #define AGPIOC_ALLOCATE _IOWR(AGPIOC_BASE, 6, struct agp_allocate *)
31 #define AGPIOC_DEALLOCATE _IOW(AGPIOC_BASE, 7, int)
32 #define AGPIOC_BIND _IOW(AGPIOC_BASE, 8, struct agp_bind *)
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34 #define AGPIOC_UNBIND _IOW(AGPIOC_BASE, 9, struct agp_unbind *)
35 #define AGPIOC_CHIPSET_FLUSH _IO(AGPIOC_BASE, 10)
36 #define AGP_DEVICE "/dev/agpgart"
37 #ifndef TRUE
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39 #define TRUE 1
40 #endif
41 #ifndef FALSE
42 #define FALSE 0
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44 #endif
45 #include <linux/types.h>
46 #include <stdlib.h>
47 struct agp_version {
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49   __u16 major;
50   __u16 minor;
51 };
52 typedef struct _agp_info {
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54   struct agp_version version;
55   __u32 bridge_id;
56   __u32 agp_mode;
57   unsigned long aper_base;
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
59   size_t aper_size;
60   size_t pg_total;
61   size_t pg_system;
62   size_t pg_used;
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
64 } agp_info;
65 typedef struct _agp_setup {
66   __u32 agp_mode;
67 } agp_setup;
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
69 typedef struct _agp_segment {
70   __kernel_off_t pg_start;
71   __kernel_size_t pg_count;
72   int prot;
73 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
74 } agp_segment;
75 typedef struct _agp_region {
76   __kernel_pid_t pid;
77   __kernel_size_t seg_count;
78 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
79   struct _agp_segment * seg_list;
80 } agp_region;
81 typedef struct _agp_allocate {
82   int key;
83 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
84   __kernel_size_t pg_count;
85   __u32 type;
86   __u32 physical;
87 } agp_allocate;
88 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
89 typedef struct _agp_bind {
90   int key;
91   __kernel_off_t pg_start;
92 } agp_bind;
93 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
94 typedef struct _agp_unbind {
95   int key;
96   __u32 priority;
97 } agp_unbind;
98 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
99 #endif
100