Path: blob/21.2-virgl/include/drm-uapi/drm_mode.h
4547 views
/*1* Copyright (c) 2007 Dave Airlie <[email protected]>2* Copyright (c) 2007 Jakob Bornecrantz <[email protected]>3* Copyright (c) 2008 Red Hat Inc.4* Copyright (c) 2007-2008 Tungsten Graphics, Inc., Cedar Park, TX., USA5* Copyright (c) 2007-2008 Intel Corporation6*7* Permission is hereby granted, free of charge, to any person obtaining a8* copy of this software and associated documentation files (the "Software"),9* to deal in the Software without restriction, including without limitation10* the rights to use, copy, modify, merge, publish, distribute, sublicense,11* and/or sell copies of the Software, and to permit persons to whom the12* Software is furnished to do so, subject to the following conditions:13*14* The above copyright notice and this permission notice shall be included in15* all copies or substantial portions of the Software.16*17* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR18* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,19* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE20* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER21* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING22* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS23* IN THE SOFTWARE.24*/2526#ifndef _DRM_MODE_H27#define _DRM_MODE_H2829#include "drm.h"3031#if defined(__cplusplus)32extern "C" {33#endif3435/**36* DOC: overview37*38* DRM exposes many UAPI and structure definition to have a consistent39* and standardized interface with user.40* Userspace can refer to these structure definitions and UAPI formats41* to communicate to driver42*/4344#define DRM_CONNECTOR_NAME_LEN 3245#define DRM_DISPLAY_MODE_LEN 3246#define DRM_PROP_NAME_LEN 324748#define DRM_MODE_TYPE_BUILTIN (1<<0) /* deprecated */49#define DRM_MODE_TYPE_CLOCK_C ((1<<1) | DRM_MODE_TYPE_BUILTIN) /* deprecated */50#define DRM_MODE_TYPE_CRTC_C ((1<<2) | DRM_MODE_TYPE_BUILTIN) /* deprecated */51#define DRM_MODE_TYPE_PREFERRED (1<<3)52#define DRM_MODE_TYPE_DEFAULT (1<<4) /* deprecated */53#define DRM_MODE_TYPE_USERDEF (1<<5)54#define DRM_MODE_TYPE_DRIVER (1<<6)5556#define DRM_MODE_TYPE_ALL (DRM_MODE_TYPE_PREFERRED | \57DRM_MODE_TYPE_USERDEF | \58DRM_MODE_TYPE_DRIVER)5960/* Video mode flags */61/* bit compatible with the xrandr RR_ definitions (bits 0-13)62*63* ABI warning: Existing userspace really expects64* the mode flags to match the xrandr definitions. Any65* changes that don't match the xrandr definitions will66* likely need a new client cap or some other mechanism67* to avoid breaking existing userspace. This includes68* allocating new flags in the previously unused bits!69*/70#define DRM_MODE_FLAG_PHSYNC (1<<0)71#define DRM_MODE_FLAG_NHSYNC (1<<1)72#define DRM_MODE_FLAG_PVSYNC (1<<2)73#define DRM_MODE_FLAG_NVSYNC (1<<3)74#define DRM_MODE_FLAG_INTERLACE (1<<4)75#define DRM_MODE_FLAG_DBLSCAN (1<<5)76#define DRM_MODE_FLAG_CSYNC (1<<6)77#define DRM_MODE_FLAG_PCSYNC (1<<7)78#define DRM_MODE_FLAG_NCSYNC (1<<8)79#define DRM_MODE_FLAG_HSKEW (1<<9) /* hskew provided */80#define DRM_MODE_FLAG_BCAST (1<<10) /* deprecated */81#define DRM_MODE_FLAG_PIXMUX (1<<11) /* deprecated */82#define DRM_MODE_FLAG_DBLCLK (1<<12)83#define DRM_MODE_FLAG_CLKDIV2 (1<<13)84/*85* When adding a new stereo mode don't forget to adjust DRM_MODE_FLAGS_3D_MAX86* (define not exposed to user space).87*/88#define DRM_MODE_FLAG_3D_MASK (0x1f<<14)89#define DRM_MODE_FLAG_3D_NONE (0<<14)90#define DRM_MODE_FLAG_3D_FRAME_PACKING (1<<14)91#define DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE (2<<14)92#define DRM_MODE_FLAG_3D_LINE_ALTERNATIVE (3<<14)93#define DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL (4<<14)94#define DRM_MODE_FLAG_3D_L_DEPTH (5<<14)95#define DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH (6<<14)96#define DRM_MODE_FLAG_3D_TOP_AND_BOTTOM (7<<14)97#define DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF (8<<14)9899/* Picture aspect ratio options */100#define DRM_MODE_PICTURE_ASPECT_NONE 0101#define DRM_MODE_PICTURE_ASPECT_4_3 1102#define DRM_MODE_PICTURE_ASPECT_16_9 2103#define DRM_MODE_PICTURE_ASPECT_64_27 3104#define DRM_MODE_PICTURE_ASPECT_256_135 4105106/* Content type options */107#define DRM_MODE_CONTENT_TYPE_NO_DATA 0108#define DRM_MODE_CONTENT_TYPE_GRAPHICS 1109#define DRM_MODE_CONTENT_TYPE_PHOTO 2110#define DRM_MODE_CONTENT_TYPE_CINEMA 3111#define DRM_MODE_CONTENT_TYPE_GAME 4112113/* Aspect ratio flag bitmask (4 bits 22:19) */114#define DRM_MODE_FLAG_PIC_AR_MASK (0x0F<<19)115#define DRM_MODE_FLAG_PIC_AR_NONE \116(DRM_MODE_PICTURE_ASPECT_NONE<<19)117#define DRM_MODE_FLAG_PIC_AR_4_3 \118(DRM_MODE_PICTURE_ASPECT_4_3<<19)119#define DRM_MODE_FLAG_PIC_AR_16_9 \120(DRM_MODE_PICTURE_ASPECT_16_9<<19)121#define DRM_MODE_FLAG_PIC_AR_64_27 \122(DRM_MODE_PICTURE_ASPECT_64_27<<19)123#define DRM_MODE_FLAG_PIC_AR_256_135 \124(DRM_MODE_PICTURE_ASPECT_256_135<<19)125126#define DRM_MODE_FLAG_ALL (DRM_MODE_FLAG_PHSYNC | \127DRM_MODE_FLAG_NHSYNC | \128DRM_MODE_FLAG_PVSYNC | \129DRM_MODE_FLAG_NVSYNC | \130DRM_MODE_FLAG_INTERLACE | \131DRM_MODE_FLAG_DBLSCAN | \132DRM_MODE_FLAG_CSYNC | \133DRM_MODE_FLAG_PCSYNC | \134DRM_MODE_FLAG_NCSYNC | \135DRM_MODE_FLAG_HSKEW | \136DRM_MODE_FLAG_DBLCLK | \137DRM_MODE_FLAG_CLKDIV2 | \138DRM_MODE_FLAG_3D_MASK)139140/* DPMS flags */141/* bit compatible with the xorg definitions. */142#define DRM_MODE_DPMS_ON 0143#define DRM_MODE_DPMS_STANDBY 1144#define DRM_MODE_DPMS_SUSPEND 2145#define DRM_MODE_DPMS_OFF 3146147/* Scaling mode options */148#define DRM_MODE_SCALE_NONE 0 /* Unmodified timing (display or149software can still scale) */150#define DRM_MODE_SCALE_FULLSCREEN 1 /* Full screen, ignore aspect */151#define DRM_MODE_SCALE_CENTER 2 /* Centered, no scaling */152#define DRM_MODE_SCALE_ASPECT 3 /* Full screen, preserve aspect */153154/* Dithering mode options */155#define DRM_MODE_DITHERING_OFF 0156#define DRM_MODE_DITHERING_ON 1157#define DRM_MODE_DITHERING_AUTO 2158159/* Dirty info options */160#define DRM_MODE_DIRTY_OFF 0161#define DRM_MODE_DIRTY_ON 1162#define DRM_MODE_DIRTY_ANNOTATE 2163164/* Link Status options */165#define DRM_MODE_LINK_STATUS_GOOD 0166#define DRM_MODE_LINK_STATUS_BAD 1167168/*169* DRM_MODE_ROTATE_<degrees>170*171* Signals that a drm plane is been rotated <degrees> degrees in counter172* clockwise direction.173*174* This define is provided as a convenience, looking up the property id175* using the name->prop id lookup is the preferred method.176*/177#define DRM_MODE_ROTATE_0 (1<<0)178#define DRM_MODE_ROTATE_90 (1<<1)179#define DRM_MODE_ROTATE_180 (1<<2)180#define DRM_MODE_ROTATE_270 (1<<3)181182/*183* DRM_MODE_ROTATE_MASK184*185* Bitmask used to look for drm plane rotations.186*/187#define DRM_MODE_ROTATE_MASK (\188DRM_MODE_ROTATE_0 | \189DRM_MODE_ROTATE_90 | \190DRM_MODE_ROTATE_180 | \191DRM_MODE_ROTATE_270)192193/*194* DRM_MODE_REFLECT_<axis>195*196* Signals that the contents of a drm plane is reflected along the <axis> axis,197* in the same way as mirroring.198* See kerneldoc chapter "Plane Composition Properties" for more details.199*200* This define is provided as a convenience, looking up the property id201* using the name->prop id lookup is the preferred method.202*/203#define DRM_MODE_REFLECT_X (1<<4)204#define DRM_MODE_REFLECT_Y (1<<5)205206/*207* DRM_MODE_REFLECT_MASK208*209* Bitmask used to look for drm plane reflections.210*/211#define DRM_MODE_REFLECT_MASK (\212DRM_MODE_REFLECT_X | \213DRM_MODE_REFLECT_Y)214215/* Content Protection Flags */216#define DRM_MODE_CONTENT_PROTECTION_UNDESIRED 0217#define DRM_MODE_CONTENT_PROTECTION_DESIRED 1218#define DRM_MODE_CONTENT_PROTECTION_ENABLED 2219220/**221* struct drm_mode_modeinfo - Display mode information.222* @clock: pixel clock in kHz223* @hdisplay: horizontal display size224* @hsync_start: horizontal sync start225* @hsync_end: horizontal sync end226* @htotal: horizontal total size227* @hskew: horizontal skew228* @vdisplay: vertical display size229* @vsync_start: vertical sync start230* @vsync_end: vertical sync end231* @vtotal: vertical total size232* @vscan: vertical scan233* @vrefresh: approximate vertical refresh rate in Hz234* @flags: bitmask of misc. flags, see DRM_MODE_FLAG_* defines235* @type: bitmask of type flags, see DRM_MODE_TYPE_* defines236* @name: string describing the mode resolution237*238* This is the user-space API display mode information structure. For the239* kernel version see struct drm_display_mode.240*/241struct drm_mode_modeinfo {242__u32 clock;243__u16 hdisplay;244__u16 hsync_start;245__u16 hsync_end;246__u16 htotal;247__u16 hskew;248__u16 vdisplay;249__u16 vsync_start;250__u16 vsync_end;251__u16 vtotal;252__u16 vscan;253254__u32 vrefresh;255256__u32 flags;257__u32 type;258char name[DRM_DISPLAY_MODE_LEN];259};260261struct drm_mode_card_res {262__u64 fb_id_ptr;263__u64 crtc_id_ptr;264__u64 connector_id_ptr;265__u64 encoder_id_ptr;266__u32 count_fbs;267__u32 count_crtcs;268__u32 count_connectors;269__u32 count_encoders;270__u32 min_width;271__u32 max_width;272__u32 min_height;273__u32 max_height;274};275276struct drm_mode_crtc {277__u64 set_connectors_ptr;278__u32 count_connectors;279280__u32 crtc_id; /**< Id */281__u32 fb_id; /**< Id of framebuffer */282283__u32 x; /**< x Position on the framebuffer */284__u32 y; /**< y Position on the framebuffer */285286__u32 gamma_size;287__u32 mode_valid;288struct drm_mode_modeinfo mode;289};290291#define DRM_MODE_PRESENT_TOP_FIELD (1<<0)292#define DRM_MODE_PRESENT_BOTTOM_FIELD (1<<1)293294/* Planes blend with or override other bits on the CRTC */295struct drm_mode_set_plane {296__u32 plane_id;297__u32 crtc_id;298__u32 fb_id; /* fb object contains surface format type */299__u32 flags; /* see above flags */300301/* Signed dest location allows it to be partially off screen */302__s32 crtc_x;303__s32 crtc_y;304__u32 crtc_w;305__u32 crtc_h;306307/* Source values are 16.16 fixed point */308__u32 src_x;309__u32 src_y;310__u32 src_h;311__u32 src_w;312};313314struct drm_mode_get_plane {315__u32 plane_id;316317__u32 crtc_id;318__u32 fb_id;319320__u32 possible_crtcs;321__u32 gamma_size;322323__u32 count_format_types;324__u64 format_type_ptr;325};326327struct drm_mode_get_plane_res {328__u64 plane_id_ptr;329__u32 count_planes;330};331332#define DRM_MODE_ENCODER_NONE 0333#define DRM_MODE_ENCODER_DAC 1334#define DRM_MODE_ENCODER_TMDS 2335#define DRM_MODE_ENCODER_LVDS 3336#define DRM_MODE_ENCODER_TVDAC 4337#define DRM_MODE_ENCODER_VIRTUAL 5338#define DRM_MODE_ENCODER_DSI 6339#define DRM_MODE_ENCODER_DPMST 7340#define DRM_MODE_ENCODER_DPI 8341342struct drm_mode_get_encoder {343__u32 encoder_id;344__u32 encoder_type;345346__u32 crtc_id; /**< Id of crtc */347348__u32 possible_crtcs;349__u32 possible_clones;350};351352/* This is for connectors with multiple signal types. */353/* Try to match DRM_MODE_CONNECTOR_X as closely as possible. */354enum drm_mode_subconnector {355DRM_MODE_SUBCONNECTOR_Automatic = 0, /* DVI-I, TV */356DRM_MODE_SUBCONNECTOR_Unknown = 0, /* DVI-I, TV, DP */357DRM_MODE_SUBCONNECTOR_VGA = 1, /* DP */358DRM_MODE_SUBCONNECTOR_DVID = 3, /* DVI-I DP */359DRM_MODE_SUBCONNECTOR_DVIA = 4, /* DVI-I */360DRM_MODE_SUBCONNECTOR_Composite = 5, /* TV */361DRM_MODE_SUBCONNECTOR_SVIDEO = 6, /* TV */362DRM_MODE_SUBCONNECTOR_Component = 8, /* TV */363DRM_MODE_SUBCONNECTOR_SCART = 9, /* TV */364DRM_MODE_SUBCONNECTOR_DisplayPort = 10, /* DP */365DRM_MODE_SUBCONNECTOR_HDMIA = 11, /* DP */366DRM_MODE_SUBCONNECTOR_Native = 15, /* DP */367DRM_MODE_SUBCONNECTOR_Wireless = 18, /* DP */368};369370#define DRM_MODE_CONNECTOR_Unknown 0371#define DRM_MODE_CONNECTOR_VGA 1372#define DRM_MODE_CONNECTOR_DVII 2373#define DRM_MODE_CONNECTOR_DVID 3374#define DRM_MODE_CONNECTOR_DVIA 4375#define DRM_MODE_CONNECTOR_Composite 5376#define DRM_MODE_CONNECTOR_SVIDEO 6377#define DRM_MODE_CONNECTOR_LVDS 7378#define DRM_MODE_CONNECTOR_Component 8379#define DRM_MODE_CONNECTOR_9PinDIN 9380#define DRM_MODE_CONNECTOR_DisplayPort 10381#define DRM_MODE_CONNECTOR_HDMIA 11382#define DRM_MODE_CONNECTOR_HDMIB 12383#define DRM_MODE_CONNECTOR_TV 13384#define DRM_MODE_CONNECTOR_eDP 14385#define DRM_MODE_CONNECTOR_VIRTUAL 15386#define DRM_MODE_CONNECTOR_DSI 16387#define DRM_MODE_CONNECTOR_DPI 17388#define DRM_MODE_CONNECTOR_WRITEBACK 18389#define DRM_MODE_CONNECTOR_SPI 19390#define DRM_MODE_CONNECTOR_USB 20391392/**393* struct drm_mode_get_connector - Get connector metadata.394*395* User-space can perform a GETCONNECTOR ioctl to retrieve information about a396* connector. User-space is expected to retrieve encoders, modes and properties397* by performing this ioctl at least twice: the first time to retrieve the398* number of elements, the second time to retrieve the elements themselves.399*400* To retrieve the number of elements, set @count_props and @count_encoders to401* zero, set @count_modes to 1, and set @modes_ptr to a temporary struct402* drm_mode_modeinfo element.403*404* To retrieve the elements, allocate arrays for @encoders_ptr, @modes_ptr,405* @props_ptr and @prop_values_ptr, then set @count_modes, @count_props and406* @count_encoders to their capacity.407*408* Performing the ioctl only twice may be racy: the number of elements may have409* changed with a hotplug event in-between the two ioctls. User-space is410* expected to retry the last ioctl until the number of elements stabilizes.411* The kernel won't fill any array which doesn't have the expected length.412*413* **Force-probing a connector**414*415* If the @count_modes field is set to zero and the DRM client is the current416* DRM master, the kernel will perform a forced probe on the connector to417* refresh the connector status, modes and EDID. A forced-probe can be slow,418* might cause flickering and the ioctl will block.419*420* User-space needs to force-probe connectors to ensure their metadata is421* up-to-date at startup and after receiving a hot-plug event. User-space422* may perform a forced-probe when the user explicitly requests it. User-space423* shouldn't perform a forced-probe in other situations.424*/425struct drm_mode_get_connector {426/** @encoders_ptr: Pointer to ``__u32`` array of object IDs. */427__u64 encoders_ptr;428/** @modes_ptr: Pointer to struct drm_mode_modeinfo array. */429__u64 modes_ptr;430/** @props_ptr: Pointer to ``__u32`` array of property IDs. */431__u64 props_ptr;432/** @prop_values_ptr: Pointer to ``__u64`` array of property values. */433__u64 prop_values_ptr;434435/** @count_modes: Number of modes. */436__u32 count_modes;437/** @count_props: Number of properties. */438__u32 count_props;439/** @count_encoders: Number of encoders. */440__u32 count_encoders;441442/** @encoder_id: Object ID of the current encoder. */443__u32 encoder_id;444/** @connector_id: Object ID of the connector. */445__u32 connector_id;446/**447* @connector_type: Type of the connector.448*449* See DRM_MODE_CONNECTOR_* defines.450*/451__u32 connector_type;452/**453* @connector_type_id: Type-specific connector number.454*455* This is not an object ID. This is a per-type connector number. Each456* (type, type_id) combination is unique across all connectors of a DRM457* device.458*/459__u32 connector_type_id;460461/**462* @connection: Status of the connector.463*464* See enum drm_connector_status.465*/466__u32 connection;467/** @mm_width: Width of the connected sink in millimeters. */468__u32 mm_width;469/** @mm_height: Height of the connected sink in millimeters. */470__u32 mm_height;471/**472* @subpixel: Subpixel order of the connected sink.473*474* See enum subpixel_order.475*/476__u32 subpixel;477478/** @pad: Padding, must be zero. */479__u32 pad;480};481482#define DRM_MODE_PROP_PENDING (1<<0) /* deprecated, do not use */483#define DRM_MODE_PROP_RANGE (1<<1)484#define DRM_MODE_PROP_IMMUTABLE (1<<2)485#define DRM_MODE_PROP_ENUM (1<<3) /* enumerated type with text strings */486#define DRM_MODE_PROP_BLOB (1<<4)487#define DRM_MODE_PROP_BITMASK (1<<5) /* bitmask of enumerated types */488489/* non-extended types: legacy bitmask, one bit per type: */490#define DRM_MODE_PROP_LEGACY_TYPE ( \491DRM_MODE_PROP_RANGE | \492DRM_MODE_PROP_ENUM | \493DRM_MODE_PROP_BLOB | \494DRM_MODE_PROP_BITMASK)495496/* extended-types: rather than continue to consume a bit per type,497* grab a chunk of the bits to use as integer type id.498*/499#define DRM_MODE_PROP_EXTENDED_TYPE 0x0000ffc0500#define DRM_MODE_PROP_TYPE(n) ((n) << 6)501#define DRM_MODE_PROP_OBJECT DRM_MODE_PROP_TYPE(1)502#define DRM_MODE_PROP_SIGNED_RANGE DRM_MODE_PROP_TYPE(2)503504/* the PROP_ATOMIC flag is used to hide properties from userspace that505* is not aware of atomic properties. This is mostly to work around506* older userspace (DDX drivers) that read/write each prop they find,507* witout being aware that this could be triggering a lengthy modeset.508*/509#define DRM_MODE_PROP_ATOMIC 0x80000000510511struct drm_mode_property_enum {512__u64 value;513char name[DRM_PROP_NAME_LEN];514};515516struct drm_mode_get_property {517__u64 values_ptr; /* values and blob lengths */518__u64 enum_blob_ptr; /* enum and blob id ptrs */519520__u32 prop_id;521__u32 flags;522char name[DRM_PROP_NAME_LEN];523524__u32 count_values;525/* This is only used to count enum values, not blobs. The _blobs is526* simply because of a historical reason, i.e. backwards compat. */527__u32 count_enum_blobs;528};529530struct drm_mode_connector_set_property {531__u64 value;532__u32 prop_id;533__u32 connector_id;534};535536#define DRM_MODE_OBJECT_CRTC 0xcccccccc537#define DRM_MODE_OBJECT_CONNECTOR 0xc0c0c0c0538#define DRM_MODE_OBJECT_ENCODER 0xe0e0e0e0539#define DRM_MODE_OBJECT_MODE 0xdededede540#define DRM_MODE_OBJECT_PROPERTY 0xb0b0b0b0541#define DRM_MODE_OBJECT_FB 0xfbfbfbfb542#define DRM_MODE_OBJECT_BLOB 0xbbbbbbbb543#define DRM_MODE_OBJECT_PLANE 0xeeeeeeee544#define DRM_MODE_OBJECT_ANY 0545546struct drm_mode_obj_get_properties {547__u64 props_ptr;548__u64 prop_values_ptr;549__u32 count_props;550__u32 obj_id;551__u32 obj_type;552};553554struct drm_mode_obj_set_property {555__u64 value;556__u32 prop_id;557__u32 obj_id;558__u32 obj_type;559};560561struct drm_mode_get_blob {562__u32 blob_id;563__u32 length;564__u64 data;565};566567struct drm_mode_fb_cmd {568__u32 fb_id;569__u32 width;570__u32 height;571__u32 pitch;572__u32 bpp;573__u32 depth;574/* driver specific handle */575__u32 handle;576};577578#define DRM_MODE_FB_INTERLACED (1<<0) /* for interlaced framebuffers */579#define DRM_MODE_FB_MODIFIERS (1<<1) /* enables ->modifer[] */580581struct drm_mode_fb_cmd2 {582__u32 fb_id;583__u32 width;584__u32 height;585__u32 pixel_format; /* fourcc code from drm_fourcc.h */586__u32 flags; /* see above flags */587588/*589* In case of planar formats, this ioctl allows up to 4590* buffer objects with offsets and pitches per plane.591* The pitch and offset order is dictated by the fourcc,592* e.g. NV12 (https://fourcc.org/yuv.php#NV12) is described as:593*594* YUV 4:2:0 image with a plane of 8 bit Y samples595* followed by an interleaved U/V plane containing596* 8 bit 2x2 subsampled colour difference samples.597*598* So it would consist of Y as offsets[0] and UV as599* offsets[1]. Note that offsets[0] will generally600* be 0 (but this is not required).601*602* To accommodate tiled, compressed, etc formats, a603* modifier can be specified. The default value of zero604* indicates "native" format as specified by the fourcc.605* Vendor specific modifier token. Note that even though606* it looks like we have a modifier per-plane, we in fact607* do not. The modifier for each plane must be identical.608* Thus all combinations of different data layouts for609* multi plane formats must be enumerated as separate610* modifiers.611*/612__u32 handles[4];613__u32 pitches[4]; /* pitch for each plane */614__u32 offsets[4]; /* offset of each plane */615__u64 modifier[4]; /* ie, tiling, compress */616};617618#define DRM_MODE_FB_DIRTY_ANNOTATE_COPY 0x01619#define DRM_MODE_FB_DIRTY_ANNOTATE_FILL 0x02620#define DRM_MODE_FB_DIRTY_FLAGS 0x03621622#define DRM_MODE_FB_DIRTY_MAX_CLIPS 256623624/*625* Mark a region of a framebuffer as dirty.626*627* Some hardware does not automatically update display contents628* as a hardware or software draw to a framebuffer. This ioctl629* allows userspace to tell the kernel and the hardware what630* regions of the framebuffer have changed.631*632* The kernel or hardware is free to update more then just the633* region specified by the clip rects. The kernel or hardware634* may also delay and/or coalesce several calls to dirty into a635* single update.636*637* Userspace may annotate the updates, the annotates are a638* promise made by the caller that the change is either a copy639* of pixels or a fill of a single color in the region specified.640*641* If the DRM_MODE_FB_DIRTY_ANNOTATE_COPY flag is given then642* the number of updated regions are half of num_clips given,643* where the clip rects are paired in src and dst. The width and644* height of each one of the pairs must match.645*646* If the DRM_MODE_FB_DIRTY_ANNOTATE_FILL flag is given the caller647* promises that the region specified of the clip rects is filled648* completely with a single color as given in the color argument.649*/650651struct drm_mode_fb_dirty_cmd {652__u32 fb_id;653__u32 flags;654__u32 color;655__u32 num_clips;656__u64 clips_ptr;657};658659struct drm_mode_mode_cmd {660__u32 connector_id;661struct drm_mode_modeinfo mode;662};663664#define DRM_MODE_CURSOR_BO 0x01665#define DRM_MODE_CURSOR_MOVE 0x02666#define DRM_MODE_CURSOR_FLAGS 0x03667668/*669* depending on the value in flags different members are used.670*671* CURSOR_BO uses672* crtc_id673* width674* height675* handle - if 0 turns the cursor off676*677* CURSOR_MOVE uses678* crtc_id679* x680* y681*/682struct drm_mode_cursor {683__u32 flags;684__u32 crtc_id;685__s32 x;686__s32 y;687__u32 width;688__u32 height;689/* driver specific handle */690__u32 handle;691};692693struct drm_mode_cursor2 {694__u32 flags;695__u32 crtc_id;696__s32 x;697__s32 y;698__u32 width;699__u32 height;700/* driver specific handle */701__u32 handle;702__s32 hot_x;703__s32 hot_y;704};705706struct drm_mode_crtc_lut {707__u32 crtc_id;708__u32 gamma_size;709710/* pointers to arrays */711__u64 red;712__u64 green;713__u64 blue;714};715716struct drm_color_ctm {717/*718* Conversion matrix in S31.32 sign-magnitude719* (not two's complement!) format.720*/721__u64 matrix[9];722};723724struct drm_color_lut {725/*726* Values are mapped linearly to 0.0 - 1.0 range, with 0x0 == 0.0 and727* 0xffff == 1.0.728*/729__u16 red;730__u16 green;731__u16 blue;732__u16 reserved;733};734735/**736* struct hdr_metadata_infoframe - HDR Metadata Infoframe Data.737*738* HDR Metadata Infoframe as per CTA 861.G spec. This is expected739* to match exactly with the spec.740*741* Userspace is expected to pass the metadata information as per742* the format described in this structure.743*/744struct hdr_metadata_infoframe {745/**746* @eotf: Electro-Optical Transfer Function (EOTF)747* used in the stream.748*/749__u8 eotf;750/**751* @metadata_type: Static_Metadata_Descriptor_ID.752*/753__u8 metadata_type;754/**755* @display_primaries: Color Primaries of the Data.756* These are coded as unsigned 16-bit values in units of757* 0.00002, where 0x0000 represents zero and 0xC350758* represents 1.0000.759* @display_primaries.x: X cordinate of color primary.760* @display_primaries.y: Y cordinate of color primary.761*/762struct {763__u16 x, y;764} display_primaries[3];765/**766* @white_point: White Point of Colorspace Data.767* These are coded as unsigned 16-bit values in units of768* 0.00002, where 0x0000 represents zero and 0xC350769* represents 1.0000.770* @white_point.x: X cordinate of whitepoint of color primary.771* @white_point.y: Y cordinate of whitepoint of color primary.772*/773struct {774__u16 x, y;775} white_point;776/**777* @max_display_mastering_luminance: Max Mastering Display Luminance.778* This value is coded as an unsigned 16-bit value in units of 1 cd/m2,779* where 0x0001 represents 1 cd/m2 and 0xFFFF represents 65535 cd/m2.780*/781__u16 max_display_mastering_luminance;782/**783* @min_display_mastering_luminance: Min Mastering Display Luminance.784* This value is coded as an unsigned 16-bit value in units of785* 0.0001 cd/m2, where 0x0001 represents 0.0001 cd/m2 and 0xFFFF786* represents 6.5535 cd/m2.787*/788__u16 min_display_mastering_luminance;789/**790* @max_cll: Max Content Light Level.791* This value is coded as an unsigned 16-bit value in units of 1 cd/m2,792* where 0x0001 represents 1 cd/m2 and 0xFFFF represents 65535 cd/m2.793*/794__u16 max_cll;795/**796* @max_fall: Max Frame Average Light Level.797* This value is coded as an unsigned 16-bit value in units of 1 cd/m2,798* where 0x0001 represents 1 cd/m2 and 0xFFFF represents 65535 cd/m2.799*/800__u16 max_fall;801};802803/**804* struct hdr_output_metadata - HDR output metadata805*806* Metadata Information to be passed from userspace807*/808struct hdr_output_metadata {809/**810* @metadata_type: Static_Metadata_Descriptor_ID.811*/812__u32 metadata_type;813/**814* @hdmi_metadata_type1: HDR Metadata Infoframe.815*/816union {817struct hdr_metadata_infoframe hdmi_metadata_type1;818};819};820821#define DRM_MODE_PAGE_FLIP_EVENT 0x01822#define DRM_MODE_PAGE_FLIP_ASYNC 0x02823#define DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE 0x4824#define DRM_MODE_PAGE_FLIP_TARGET_RELATIVE 0x8825#define DRM_MODE_PAGE_FLIP_TARGET (DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE | \826DRM_MODE_PAGE_FLIP_TARGET_RELATIVE)827#define DRM_MODE_PAGE_FLIP_FLAGS (DRM_MODE_PAGE_FLIP_EVENT | \828DRM_MODE_PAGE_FLIP_ASYNC | \829DRM_MODE_PAGE_FLIP_TARGET)830831/*832* Request a page flip on the specified crtc.833*834* This ioctl will ask KMS to schedule a page flip for the specified835* crtc. Once any pending rendering targeting the specified fb (as of836* ioctl time) has completed, the crtc will be reprogrammed to display837* that fb after the next vertical refresh. The ioctl returns838* immediately, but subsequent rendering to the current fb will block839* in the execbuffer ioctl until the page flip happens. If a page840* flip is already pending as the ioctl is called, EBUSY will be841* returned.842*843* Flag DRM_MODE_PAGE_FLIP_EVENT requests that drm sends back a vblank844* event (see drm.h: struct drm_event_vblank) when the page flip is845* done. The user_data field passed in with this ioctl will be846* returned as the user_data field in the vblank event struct.847*848* Flag DRM_MODE_PAGE_FLIP_ASYNC requests that the flip happen849* 'as soon as possible', meaning that it not delay waiting for vblank.850* This may cause tearing on the screen.851*852* The reserved field must be zero.853*/854855struct drm_mode_crtc_page_flip {856__u32 crtc_id;857__u32 fb_id;858__u32 flags;859__u32 reserved;860__u64 user_data;861};862863/*864* Request a page flip on the specified crtc.865*866* Same as struct drm_mode_crtc_page_flip, but supports new flags and867* re-purposes the reserved field:868*869* The sequence field must be zero unless either of the870* DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE/RELATIVE flags is specified. When871* the ABSOLUTE flag is specified, the sequence field denotes the absolute872* vblank sequence when the flip should take effect. When the RELATIVE873* flag is specified, the sequence field denotes the relative (to the874* current one when the ioctl is called) vblank sequence when the flip875* should take effect. NOTE: DRM_IOCTL_WAIT_VBLANK must still be used to876* make sure the vblank sequence before the target one has passed before877* calling this ioctl. The purpose of the878* DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE/RELATIVE flags is merely to clarify879* the target for when code dealing with a page flip runs during a880* vertical blank period.881*/882883struct drm_mode_crtc_page_flip_target {884__u32 crtc_id;885__u32 fb_id;886__u32 flags;887__u32 sequence;888__u64 user_data;889};890891/* create a dumb scanout buffer */892struct drm_mode_create_dumb {893__u32 height;894__u32 width;895__u32 bpp;896__u32 flags;897/* handle, pitch, size will be returned */898__u32 handle;899__u32 pitch;900__u64 size;901};902903/* set up for mmap of a dumb scanout buffer */904struct drm_mode_map_dumb {905/** Handle for the object being mapped. */906__u32 handle;907__u32 pad;908/**909* Fake offset to use for subsequent mmap call910*911* This is a fixed-size type for 32/64 compatibility.912*/913__u64 offset;914};915916struct drm_mode_destroy_dumb {917__u32 handle;918};919920/* page-flip flags are valid, plus: */921#define DRM_MODE_ATOMIC_TEST_ONLY 0x0100922#define DRM_MODE_ATOMIC_NONBLOCK 0x0200923#define DRM_MODE_ATOMIC_ALLOW_MODESET 0x0400924925#define DRM_MODE_ATOMIC_FLAGS (\926DRM_MODE_PAGE_FLIP_EVENT |\927DRM_MODE_PAGE_FLIP_ASYNC |\928DRM_MODE_ATOMIC_TEST_ONLY |\929DRM_MODE_ATOMIC_NONBLOCK |\930DRM_MODE_ATOMIC_ALLOW_MODESET)931932struct drm_mode_atomic {933__u32 flags;934__u32 count_objs;935__u64 objs_ptr;936__u64 count_props_ptr;937__u64 props_ptr;938__u64 prop_values_ptr;939__u64 reserved;940__u64 user_data;941};942943struct drm_format_modifier_blob {944#define FORMAT_BLOB_CURRENT 1945/* Version of this blob format */946__u32 version;947948/* Flags */949__u32 flags;950951/* Number of fourcc formats supported */952__u32 count_formats;953954/* Where in this blob the formats exist (in bytes) */955__u32 formats_offset;956957/* Number of drm_format_modifiers */958__u32 count_modifiers;959960/* Where in this blob the modifiers exist (in bytes) */961__u32 modifiers_offset;962963/* __u32 formats[] */964/* struct drm_format_modifier modifiers[] */965};966967struct drm_format_modifier {968/* Bitmask of formats in get_plane format list this info applies to. The969* offset allows a sliding window of which 64 formats (bits).970*971* Some examples:972* In today's world with < 65 formats, and formats 0, and 2 are973* supported974* 0x0000000000000005975* ^-offset = 0, formats = 5976*977* If the number formats grew to 128, and formats 98-102 are978* supported with the modifier:979*980* 0x0000007c00000000 0000000000000000981* ^982* |__offset = 64, formats = 0x7c00000000983*984*/985__u64 formats;986__u32 offset;987__u32 pad;988989/* The modifier that applies to the >get_plane format list bitmask. */990__u64 modifier;991};992993/**994* struct drm_mode_create_blob - Create New blob property995*996* Create a new 'blob' data property, copying length bytes from data pointer,997* and returning new blob ID.998*/999struct drm_mode_create_blob {1000/** @data: Pointer to data to copy. */1001__u64 data;1002/** @length: Length of data to copy. */1003__u32 length;1004/** @blob_id: Return: new property ID. */1005__u32 blob_id;1006};10071008/**1009* struct drm_mode_destroy_blob - Destroy user blob1010* @blob_id: blob_id to destroy1011*1012* Destroy a user-created blob property.1013*1014* User-space can release blobs as soon as they do not need to refer to them by1015* their blob object ID. For instance, if you are using a MODE_ID blob in an1016* atomic commit and you will not make another commit re-using the same ID, you1017* can destroy the blob as soon as the commit has been issued, without waiting1018* for it to complete.1019*/1020struct drm_mode_destroy_blob {1021__u32 blob_id;1022};10231024/**1025* struct drm_mode_create_lease - Create lease1026*1027* Lease mode resources, creating another drm_master.1028*/1029struct drm_mode_create_lease {1030/** @object_ids: Pointer to array of object ids (__u32) */1031__u64 object_ids;1032/** @object_count: Number of object ids */1033__u32 object_count;1034/** @flags: flags for new FD (O_CLOEXEC, etc) */1035__u32 flags;10361037/** @lessee_id: Return: unique identifier for lessee. */1038__u32 lessee_id;1039/** @fd: Return: file descriptor to new drm_master file */1040__u32 fd;1041};10421043/**1044* struct drm_mode_list_lessees - List lessees1045*1046* List lesses from a drm_master.1047*/1048struct drm_mode_list_lessees {1049/**1050* @count_lessees: Number of lessees.1051*1052* On input, provides length of the array.1053* On output, provides total number. No1054* more than the input number will be written1055* back, so two calls can be used to get1056* the size and then the data.1057*/1058__u32 count_lessees;1059/** @pad: Padding. */1060__u32 pad;10611062/**1063* @lessees_ptr: Pointer to lessees.1064*1065* Pointer to __u64 array of lessee ids1066*/1067__u64 lessees_ptr;1068};10691070/**1071* struct drm_mode_get_lease - Get Lease1072*1073* Get leased objects.1074*/1075struct drm_mode_get_lease {1076/**1077* @count_objects: Number of leased objects.1078*1079* On input, provides length of the array.1080* On output, provides total number. No1081* more than the input number will be written1082* back, so two calls can be used to get1083* the size and then the data.1084*/1085__u32 count_objects;1086/** @pad: Padding. */1087__u32 pad;10881089/**1090* @objects_ptr: Pointer to objects.1091*1092* Pointer to __u32 array of object ids.1093*/1094__u64 objects_ptr;1095};10961097/**1098* struct drm_mode_revoke_lease - Revoke lease1099*/1100struct drm_mode_revoke_lease {1101/** @lessee_id: Unique ID of lessee */1102__u32 lessee_id;1103};11041105/**1106* struct drm_mode_rect - Two dimensional rectangle.1107* @x1: Horizontal starting coordinate (inclusive).1108* @y1: Vertical starting coordinate (inclusive).1109* @x2: Horizontal ending coordinate (exclusive).1110* @y2: Vertical ending coordinate (exclusive).1111*1112* With drm subsystem using struct drm_rect to manage rectangular area this1113* export it to user-space.1114*1115* Currently used by drm_mode_atomic blob property FB_DAMAGE_CLIPS.1116*/1117struct drm_mode_rect {1118__s32 x1;1119__s32 y1;1120__s32 x2;1121__s32 y2;1122};11231124#if defined(__cplusplus)1125}1126#endif11271128#endif112911301131