Merge branch 'radeon-ttm' of git://people.freedesktop.org/~airlied/drm into modesetti...
[platform/upstream/libdrm.git] / linux-core / xgi_drv.h
1 /****************************************************************************
2  * Copyright (C) 2003-2006 by XGI Technology, Taiwan.
3  *
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files (the
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation on the rights to use, copy, modify, merge,
10  * publish, distribute, sublicense, and/or sell copies of the Software,
11  * and to permit persons to whom the Software is furnished to do so,
12  * subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice (including the
15  * next paragraph) shall be included in all copies or substantial
16  * portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
21  * XGI AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24  * DEALINGS IN THE SOFTWARE.
25  ***************************************************************************/
26
27 #ifndef _XGI_DRV_H_
28 #define _XGI_DRV_H_
29
30 #include "drmP.h"
31 #include "drm.h"
32 #include "drm_sman.h"
33
34 #define DRIVER_AUTHOR           "Andrea Zhang <andrea_zhang@macrosynergy.com>"
35
36 #define DRIVER_NAME             "xgi"
37 #define DRIVER_DESC             "XGI XP5 / XP10 / XG47"
38 #define DRIVER_DATE             "20071003"
39
40 #define DRIVER_MAJOR            1
41 #define DRIVER_MINOR            1
42 #define DRIVER_PATCHLEVEL       3
43
44 #include "xgi_cmdlist.h"
45 #include "xgi_drm.h"
46
47 struct xgi_aperture {
48         dma_addr_t base;
49         unsigned int size;
50 };
51
52 struct xgi_info {
53         struct drm_device *dev;
54
55         bool bootstrap_done;
56
57         /* physical characteristics */
58         struct xgi_aperture mmio;
59         struct xgi_aperture fb;
60         struct xgi_aperture pcie;
61
62         struct drm_map *mmio_map;
63         struct drm_map *pcie_map;
64         struct drm_map *fb_map;
65
66         /* look up table parameters */
67         struct ati_pcigart_info gart_info;
68         unsigned int lutPageSize;
69
70         struct drm_sman sman;
71         bool fb_heap_initialized;
72         bool pcie_heap_initialized;
73
74         struct xgi_cmdring_info cmdring;
75
76         DRM_SPINTYPE fence_lock;
77         unsigned complete_sequence;
78         unsigned next_sequence;
79 };
80
81 extern long xgi_compat_ioctl(struct file *filp, unsigned int cmd,
82         unsigned long arg);
83
84 extern int xgi_fb_heap_init(struct xgi_info * info);
85
86 extern int xgi_alloc(struct xgi_info * info, struct xgi_mem_alloc * alloc,
87         struct drm_file * filp);
88
89 extern int xgi_free(struct xgi_info * info, unsigned long index,
90         struct drm_file * filp);
91
92 extern int xgi_pcie_heap_init(struct xgi_info * info);
93
94 extern void *xgi_find_pcie_virt(struct xgi_info * info, u32 address);
95
96 extern void xgi_enable_mmio(struct xgi_info * info);
97 extern void xgi_disable_mmio(struct xgi_info * info);
98 extern void xgi_enable_ge(struct xgi_info * info);
99 extern void xgi_disable_ge(struct xgi_info * info);
100
101 extern void xgi_poke_flush(struct drm_device * dev, uint32_t class);
102 extern int xgi_fence_emit_sequence(struct drm_device * dev, uint32_t class,
103         uint32_t flags, uint32_t * sequence, uint32_t * native_type);
104 extern void xgi_fence_handler(struct drm_device * dev);
105 extern int xgi_fence_has_irq(struct drm_device *dev, uint32_t class,
106         uint32_t flags);
107
108 extern int xgi_alloc_ioctl(struct drm_device * dev, void * data,
109         struct drm_file * filp);
110 extern int xgi_free_ioctl(struct drm_device * dev, void * data,
111         struct drm_file * filp);
112 extern int xgi_submit_cmdlist(struct drm_device * dev, void * data,
113         struct drm_file * filp);
114 extern int xgi_state_change_ioctl(struct drm_device * dev, void * data,
115         struct drm_file * filp);
116
117 #endif