OSDN Git Service

radeon: make buffer swap for older drivers work again on GEM
[android-x86/external-libdrm.git] / shared-core / radeon_ms_properties.h
1 /*
2  * Copyright 2007 Jérôme Glisse
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 /*
25  * Authors:
26  *    Jerome Glisse <glisse@freedesktop.org>
27  */
28 #ifndef __RADEON_MS_PROPERTIES_H__
29 #define __RADEON_MS_PROPERTIES_H__
30
31 #define RADEON_PAGE_SIZE        4096
32 #define RADEON_MAX_CONNECTORS   8
33 #define RADEON_MAX_OUTPUTS      8
34
35 struct radeon_ms_properties {
36         uint16_t                    subvendor;
37         uint16_t                    subdevice;
38         int16_t                     pll_reference_freq;
39         int16_t                     pll_reference_div;
40         int32_t                     pll_min_pll_freq;
41         int32_t                     pll_max_pll_freq;
42         char                        pll_use_bios;
43         char                        pll_dummy_reads;
44         char                        pll_delay;
45         char                        pll_r300_errata;
46         struct radeon_ms_output     *outputs[RADEON_MAX_OUTPUTS];
47         struct radeon_ms_connector  *connectors[RADEON_MAX_CONNECTORS];
48 };
49
50 #endif