blob: a951ced60ebe013083119d07a8a8e2005bf52f40 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_sarea.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * \brief SAREA definitions
4 *
Jan Engelhardt96de0e22007-10-19 23:21:04 +02005 * \author Michel Dänzer <michel@daenzer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
8/*
9 * Copyright 2002 Tungsten Graphics, Inc., Cedar Park, Texas.
10 * All Rights Reserved.
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice (including the next
20 * paragraph) shall be included in all copies or substantial portions of the
21 * Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 * TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
27 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
28 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
29 * OTHER DEALINGS IN THE SOFTWARE.
30 */
31
32#ifndef _DRM_SAREA_H_
33#define _DRM_SAREA_H_
34
Gabriel Laskarc6da66d2015-11-30 15:10:44 +010035#include "drm.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Emil Velikovebbb0e52016-04-07 18:49:00 +010037#if defined(__cplusplus)
38extern "C" {
39#endif
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/* SAREA area needs to be at least a page */
42#if defined(__alpha__)
Dave Airlie7c1c2872008-11-28 14:22:24 +100043#define SAREA_MAX 0x2000U
Huacai Chenfc7b8122012-08-11 09:32:18 +000044#elif defined(__mips__)
45#define SAREA_MAX 0x4000U
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#elif defined(__ia64__)
Dave Airlie7c1c2872008-11-28 14:22:24 +100047#define SAREA_MAX 0x10000U /* 64kB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#else
49/* Intel 830M driver needs at least 8k SAREA */
Dave Airlie7c1c2872008-11-28 14:22:24 +100050#define SAREA_MAX 0x2000U
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#endif
52
53/** Maximum number of drawables in the SAREA */
Dave Airliebc5f4522007-11-05 12:50:58 +100054#define SAREA_MAX_DRAWABLES 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#define SAREA_DRAWABLE_CLAIMED_ENTRY 0x80000000
57
58/** SAREA drawable */
Dave Airliebd63cb52007-07-12 10:35:02 +100059struct drm_sarea_drawable {
Dave Airlieb5e89ed2005-09-25 14:28:13 +100060 unsigned int stamp;
61 unsigned int flags;
Dave Airliebd63cb52007-07-12 10:35:02 +100062};
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/** SAREA frame */
Dave Airliebd63cb52007-07-12 10:35:02 +100065struct drm_sarea_frame {
Dave Airlieb5e89ed2005-09-25 14:28:13 +100066 unsigned int x;
67 unsigned int y;
68 unsigned int width;
69 unsigned int height;
70 unsigned int fullscreen;
Dave Airliebd63cb52007-07-12 10:35:02 +100071};
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/** SAREA */
Dave Airliebd63cb52007-07-12 10:35:02 +100074struct drm_sarea {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 /** first thing is always the DRM locking structure */
Dave Airliec60ce622007-07-11 15:27:12 +100076 struct drm_hw_lock lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 /** \todo Use readers/writer lock for drm_sarea::drawable_lock */
Dave Airliec60ce622007-07-11 15:27:12 +100078 struct drm_hw_lock drawable_lock;
Dave Airliebd63cb52007-07-12 10:35:02 +100079 struct drm_sarea_drawable drawableTable[SAREA_MAX_DRAWABLES]; /**< drawables */
80 struct drm_sarea_frame frame; /**< frame */
Dave Airlieb5e89ed2005-09-25 14:28:13 +100081 drm_context_t dummy_context;
Dave Airliebd63cb52007-07-12 10:35:02 +100082};
83
84#ifndef __KERNEL__
85typedef struct drm_sarea_drawable drm_sarea_drawable_t;
86typedef struct drm_sarea_frame drm_sarea_frame_t;
87typedef struct drm_sarea drm_sarea_t;
88#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Emil Velikovebbb0e52016-04-07 18:49:00 +010090#if defined(__cplusplus)
91}
92#endif
93
Dave Airlieb5e89ed2005-09-25 14:28:13 +100094#endif /* _DRM_SAREA_H_ */