blob: 0b103cc358cb9cbfabe3d74fc0bc4337e38da0fd [file] [log] [blame]
Ben Cheng655a7c02013-10-16 16:09:24 -07001/****************************************************************************
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'
Tao Baod7db5942015-01-28 10:07:51 -080022#define AGPIOC_INFO _IOR(AGPIOC_BASE, 0, struct agp_info *)
Ben Cheng655a7c02013-10-16 16:09:24 -070023/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080024#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 *)
Ben Cheng655a7c02013-10-16 16:09:24 -070028/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080029#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 *)
Ben Cheng655a7c02013-10-16 16:09:24 -070033/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080034#define AGPIOC_UNBIND _IOW(AGPIOC_BASE, 9, struct agp_unbind *)
35#define AGPIOC_CHIPSET_FLUSH _IO(AGPIOC_BASE, 10)
Ben Cheng655a7c02013-10-16 16:09:24 -070036#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>
46struct agp_version {
Tao Baod7db5942015-01-28 10:07:51 -080047 __u16 major;
Ben Cheng655a7c02013-10-16 16:09:24 -070048/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080049 __u16 minor;
Ben Cheng655a7c02013-10-16 16:09:24 -070050};
51typedef struct _agp_info {
Tao Baod7db5942015-01-28 10:07:51 -080052 struct agp_version version;
Ben Cheng655a7c02013-10-16 16:09:24 -070053/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080054 __u32 bridge_id;
55 __u32 agp_mode;
56 unsigned long aper_base;
57 size_t aper_size;
Ben Cheng655a7c02013-10-16 16:09:24 -070058/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080059 size_t pg_total;
60 size_t pg_system;
61 size_t pg_used;
Ben Cheng655a7c02013-10-16 16:09:24 -070062} agp_info;
63/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
64typedef struct _agp_setup {
Tao Baod7db5942015-01-28 10:07:51 -080065 __u32 agp_mode;
Ben Cheng655a7c02013-10-16 16:09:24 -070066} agp_setup;
67typedef struct _agp_segment {
68/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080069 __kernel_off_t pg_start;
70 __kernel_size_t pg_count;
71 int prot;
Ben Cheng655a7c02013-10-16 16:09:24 -070072} agp_segment;
73/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
74typedef struct _agp_region {
Tao Baod7db5942015-01-28 10:07:51 -080075 __kernel_pid_t pid;
76 __kernel_size_t seg_count;
77 struct _agp_segment * seg_list;
Ben Cheng655a7c02013-10-16 16:09:24 -070078/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
79} agp_region;
80typedef struct _agp_allocate {
Tao Baod7db5942015-01-28 10:07:51 -080081 int key;
82 __kernel_size_t pg_count;
Ben Cheng655a7c02013-10-16 16:09:24 -070083/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080084 __u32 type;
85 __u32 physical;
Ben Cheng655a7c02013-10-16 16:09:24 -070086} agp_allocate;
87typedef struct _agp_bind {
88/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080089 int key;
90 __kernel_off_t pg_start;
Ben Cheng655a7c02013-10-16 16:09:24 -070091} agp_bind;
92typedef struct _agp_unbind {
93/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080094 int key;
95 __u32 priority;
Ben Cheng655a7c02013-10-16 16:09:24 -070096} agp_unbind;
97#endif
98/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */