Home | History | Annotate | Download | only in linux
      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 struct agp_version {
     47   __u16 major;
     48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     49   __u16 minor;
     50 };
     51 typedef struct _agp_info {
     52   struct agp_version version;
     53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     54   __u32 bridge_id;
     55   __u32 agp_mode;
     56   unsigned long aper_base;
     57   size_t aper_size;
     58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     59   size_t pg_total;
     60   size_t pg_system;
     61   size_t pg_used;
     62 } agp_info;
     63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     64 typedef struct _agp_setup {
     65   __u32 agp_mode;
     66 } agp_setup;
     67 typedef struct _agp_segment {
     68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     69   __kernel_off_t pg_start;
     70   __kernel_size_t pg_count;
     71   int prot;
     72 } agp_segment;
     73 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     74 typedef struct _agp_region {
     75   __kernel_pid_t pid;
     76   __kernel_size_t seg_count;
     77   struct _agp_segment * seg_list;
     78 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     79 } agp_region;
     80 typedef struct _agp_allocate {
     81   int key;
     82   __kernel_size_t pg_count;
     83 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     84   __u32 type;
     85   __u32 physical;
     86 } agp_allocate;
     87 typedef struct _agp_bind {
     88 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     89   int key;
     90   __kernel_off_t pg_start;
     91 } agp_bind;
     92 typedef struct _agp_unbind {
     93 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     94   int key;
     95   __u32 priority;
     96 } agp_unbind;
     97 #endif
     98 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     99