Home | History | Annotate | Download | only in drm
      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 __R128_DRM_H__
     20 #define __R128_DRM_H__
     21 #include "drm.h"
     22 #ifdef __cplusplus
     23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     24 #endif
     25 #ifndef __R128_SAREA_DEFINES__
     26 #define __R128_SAREA_DEFINES__
     27 #define R128_UPLOAD_CONTEXT 0x001
     28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     29 #define R128_UPLOAD_SETUP 0x002
     30 #define R128_UPLOAD_TEX0 0x004
     31 #define R128_UPLOAD_TEX1 0x008
     32 #define R128_UPLOAD_TEX0IMAGES 0x010
     33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     34 #define R128_UPLOAD_TEX1IMAGES 0x020
     35 #define R128_UPLOAD_CORE 0x040
     36 #define R128_UPLOAD_MASKS 0x080
     37 #define R128_UPLOAD_WINDOW 0x100
     38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     39 #define R128_UPLOAD_CLIPRECTS 0x200
     40 #define R128_REQUIRE_QUIESCENCE 0x400
     41 #define R128_UPLOAD_ALL 0x7ff
     42 #define R128_FRONT 0x1
     43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     44 #define R128_BACK 0x2
     45 #define R128_DEPTH 0x4
     46 #define R128_POINTS 0x1
     47 #define R128_LINES 0x2
     48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     49 #define R128_LINE_STRIP 0x3
     50 #define R128_TRIANGLES 0x4
     51 #define R128_TRIANGLE_FAN 0x5
     52 #define R128_TRIANGLE_STRIP 0x6
     53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     54 #define R128_BUFFER_SIZE 16384
     55 #define R128_INDEX_PRIM_OFFSET 20
     56 #define R128_HOSTDATA_BLIT_OFFSET 32
     57 #define R128_NR_SAREA_CLIPRECTS 12
     58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     59 #define R128_LOCAL_TEX_HEAP 0
     60 #define R128_AGP_TEX_HEAP 1
     61 #define R128_NR_TEX_HEAPS 2
     62 #define R128_NR_TEX_REGIONS 64
     63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     64 #define R128_LOG_TEX_GRANULARITY 16
     65 #define R128_NR_CONTEXT_REGS 12
     66 #define R128_MAX_TEXTURE_LEVELS 11
     67 #define R128_MAX_TEXTURE_UNITS 2
     68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     69 #endif
     70 typedef struct {
     71   unsigned int dst_pitch_offset_c;
     72   unsigned int dp_gui_master_cntl_c;
     73 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     74   unsigned int sc_top_left_c;
     75   unsigned int sc_bottom_right_c;
     76   unsigned int z_offset_c;
     77   unsigned int z_pitch_c;
     78 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     79   unsigned int z_sten_cntl_c;
     80   unsigned int tex_cntl_c;
     81   unsigned int misc_3d_state_cntl_reg;
     82   unsigned int texture_clr_cmp_clr_c;
     83 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     84   unsigned int texture_clr_cmp_msk_c;
     85   unsigned int fog_color_c;
     86   unsigned int tex_size_pitch_c;
     87   unsigned int constant_color_c;
     88 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     89   unsigned int pm4_vc_fpu_setup;
     90   unsigned int setup_cntl;
     91   unsigned int dp_write_mask;
     92   unsigned int sten_ref_mask_c;
     93 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     94   unsigned int plane_3d_mask_c;
     95   unsigned int window_xy_offset;
     96   unsigned int scale_3d_cntl;
     97 } drm_r128_context_regs_t;
     98 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
     99 typedef struct {
    100   unsigned int tex_cntl;
    101   unsigned int tex_combine_cntl;
    102   unsigned int tex_size_pitch;
    103 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    104   unsigned int tex_offset[R128_MAX_TEXTURE_LEVELS];
    105   unsigned int tex_border_color;
    106 } drm_r128_texture_regs_t;
    107 typedef struct drm_r128_sarea {
    108 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    109   drm_r128_context_regs_t context_state;
    110   drm_r128_texture_regs_t tex_state[R128_MAX_TEXTURE_UNITS];
    111   unsigned int dirty;
    112   unsigned int vertsize;
    113 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    114   unsigned int vc_format;
    115   struct drm_clip_rect boxes[R128_NR_SAREA_CLIPRECTS];
    116   unsigned int nbox;
    117   unsigned int last_frame;
    118 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    119   unsigned int last_dispatch;
    120   struct drm_tex_region tex_list[R128_NR_TEX_HEAPS][R128_NR_TEX_REGIONS + 1];
    121   unsigned int tex_age[R128_NR_TEX_HEAPS];
    122   int ctx_owner;
    123 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    124   int pfAllowPageFlip;
    125   int pfCurrentPage;
    126 } drm_r128_sarea_t;
    127 #define DRM_R128_INIT 0x00
    128 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    129 #define DRM_R128_CCE_START 0x01
    130 #define DRM_R128_CCE_STOP 0x02
    131 #define DRM_R128_CCE_RESET 0x03
    132 #define DRM_R128_CCE_IDLE 0x04
    133 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    134 #define DRM_R128_RESET 0x06
    135 #define DRM_R128_SWAP 0x07
    136 #define DRM_R128_CLEAR 0x08
    137 #define DRM_R128_VERTEX 0x09
    138 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    139 #define DRM_R128_INDICES 0x0a
    140 #define DRM_R128_BLIT 0x0b
    141 #define DRM_R128_DEPTH 0x0c
    142 #define DRM_R128_STIPPLE 0x0d
    143 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    144 #define DRM_R128_INDIRECT 0x0f
    145 #define DRM_R128_FULLSCREEN 0x10
    146 #define DRM_R128_CLEAR2 0x11
    147 #define DRM_R128_GETPARAM 0x12
    148 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    149 #define DRM_R128_FLIP 0x13
    150 #define DRM_IOCTL_R128_INIT DRM_IOW(DRM_COMMAND_BASE + DRM_R128_INIT, drm_r128_init_t)
    151 #define DRM_IOCTL_R128_CCE_START DRM_IO(DRM_COMMAND_BASE + DRM_R128_CCE_START)
    152 #define DRM_IOCTL_R128_CCE_STOP DRM_IOW(DRM_COMMAND_BASE + DRM_R128_CCE_STOP, drm_r128_cce_stop_t)
    153 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    154 #define DRM_IOCTL_R128_CCE_RESET DRM_IO(DRM_COMMAND_BASE + DRM_R128_CCE_RESET)
    155 #define DRM_IOCTL_R128_CCE_IDLE DRM_IO(DRM_COMMAND_BASE + DRM_R128_CCE_IDLE)
    156 #define DRM_IOCTL_R128_RESET DRM_IO(DRM_COMMAND_BASE + DRM_R128_RESET)
    157 #define DRM_IOCTL_R128_SWAP DRM_IO(DRM_COMMAND_BASE + DRM_R128_SWAP)
    158 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    159 #define DRM_IOCTL_R128_CLEAR DRM_IOW(DRM_COMMAND_BASE + DRM_R128_CLEAR, drm_r128_clear_t)
    160 #define DRM_IOCTL_R128_VERTEX DRM_IOW(DRM_COMMAND_BASE + DRM_R128_VERTEX, drm_r128_vertex_t)
    161 #define DRM_IOCTL_R128_INDICES DRM_IOW(DRM_COMMAND_BASE + DRM_R128_INDICES, drm_r128_indices_t)
    162 #define DRM_IOCTL_R128_BLIT DRM_IOW(DRM_COMMAND_BASE + DRM_R128_BLIT, drm_r128_blit_t)
    163 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    164 #define DRM_IOCTL_R128_DEPTH DRM_IOW(DRM_COMMAND_BASE + DRM_R128_DEPTH, drm_r128_depth_t)
    165 #define DRM_IOCTL_R128_STIPPLE DRM_IOW(DRM_COMMAND_BASE + DRM_R128_STIPPLE, drm_r128_stipple_t)
    166 #define DRM_IOCTL_R128_INDIRECT DRM_IOWR(DRM_COMMAND_BASE + DRM_R128_INDIRECT, drm_r128_indirect_t)
    167 #define DRM_IOCTL_R128_FULLSCREEN DRM_IOW(DRM_COMMAND_BASE + DRM_R128_FULLSCREEN, drm_r128_fullscreen_t)
    168 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    169 #define DRM_IOCTL_R128_CLEAR2 DRM_IOW(DRM_COMMAND_BASE + DRM_R128_CLEAR2, drm_r128_clear2_t)
    170 #define DRM_IOCTL_R128_GETPARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_R128_GETPARAM, drm_r128_getparam_t)
    171 #define DRM_IOCTL_R128_FLIP DRM_IO(DRM_COMMAND_BASE + DRM_R128_FLIP)
    172 typedef struct drm_r128_init {
    173 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    174   enum {
    175     R128_INIT_CCE = 0x01,
    176     R128_CLEANUP_CCE = 0x02
    177   } func;
    178 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    179   unsigned long sarea_priv_offset;
    180   int is_pci;
    181   int cce_mode;
    182   int cce_secure;
    183 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    184   int ring_size;
    185   int usec_timeout;
    186   unsigned int fb_bpp;
    187   unsigned int front_offset, front_pitch;
    188 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    189   unsigned int back_offset, back_pitch;
    190   unsigned int depth_bpp;
    191   unsigned int depth_offset, depth_pitch;
    192   unsigned int span_offset;
    193 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    194   unsigned long fb_offset;
    195   unsigned long mmio_offset;
    196   unsigned long ring_offset;
    197   unsigned long ring_rptr_offset;
    198 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    199   unsigned long buffers_offset;
    200   unsigned long agp_textures_offset;
    201 } drm_r128_init_t;
    202 typedef struct drm_r128_cce_stop {
    203 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    204   int flush;
    205   int idle;
    206 } drm_r128_cce_stop_t;
    207 typedef struct drm_r128_clear {
    208 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    209   unsigned int flags;
    210   unsigned int clear_color;
    211   unsigned int clear_depth;
    212   unsigned int color_mask;
    213 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    214   unsigned int depth_mask;
    215 } drm_r128_clear_t;
    216 typedef struct drm_r128_vertex {
    217   int prim;
    218 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    219   int idx;
    220   int count;
    221   int discard;
    222 } drm_r128_vertex_t;
    223 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    224 typedef struct drm_r128_indices {
    225   int prim;
    226   int idx;
    227   int start;
    228 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    229   int end;
    230   int discard;
    231 } drm_r128_indices_t;
    232 typedef struct drm_r128_blit {
    233 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    234   int idx;
    235   int pitch;
    236   int offset;
    237   int format;
    238 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    239   unsigned short x, y;
    240   unsigned short width, height;
    241 } drm_r128_blit_t;
    242 typedef struct drm_r128_depth {
    243 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    244   enum {
    245     R128_WRITE_SPAN = 0x01,
    246     R128_WRITE_PIXELS = 0x02,
    247     R128_READ_SPAN = 0x03,
    248 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    249     R128_READ_PIXELS = 0x04
    250   } func;
    251   int n;
    252   int __user * x;
    253 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    254   int __user * y;
    255   unsigned int __user * buffer;
    256   unsigned char __user * mask;
    257 } drm_r128_depth_t;
    258 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    259 typedef struct drm_r128_stipple {
    260   unsigned int __user * mask;
    261 } drm_r128_stipple_t;
    262 typedef struct drm_r128_indirect {
    263 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    264   int idx;
    265   int start;
    266   int end;
    267   int discard;
    268 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    269 } drm_r128_indirect_t;
    270 typedef struct drm_r128_fullscreen {
    271   enum {
    272     R128_INIT_FULLSCREEN = 0x01,
    273 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    274     R128_CLEANUP_FULLSCREEN = 0x02
    275   } func;
    276 } drm_r128_fullscreen_t;
    277 #define R128_PARAM_IRQ_NR 1
    278 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    279 typedef struct drm_r128_getparam {
    280   int param;
    281   void __user * value;
    282 } drm_r128_getparam_t;
    283 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
    284 #ifdef __cplusplus
    285 #endif
    286 #endif
    287