Clean up xgi_(en|dis)able_(mmio|ge) and move to xgi_misc.c.
[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             "20070809"
39
40 #define DRIVER_MAJOR            0
41 #define DRIVER_MINOR            11
42 #define DRIVER_PATCHLEVEL       2
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 drm_dma_handle *lut_handle;
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
77 extern int xgi_fb_heap_init(struct xgi_info * info);
78
79 extern int xgi_alloc(struct xgi_info * info, struct xgi_mem_alloc * alloc,
80         struct drm_file * filp);
81
82 extern int xgi_free(struct xgi_info * info, unsigned long index,
83         struct drm_file * filp);
84
85 extern int xgi_pcie_heap_init(struct xgi_info * info);
86 extern void xgi_pcie_lut_cleanup(struct xgi_info * info);
87
88 extern void *xgi_find_pcie_virt(struct xgi_info * info, u32 address);
89
90 extern void xgi_enable_mmio(struct xgi_info * info);
91 extern void xgi_disable_mmio(struct xgi_info * info);
92 extern void xgi_enable_ge(struct xgi_info * info);
93 extern void xgi_disable_ge(struct xgi_info * info);
94
95 extern int xgi_alloc_ioctl(struct drm_device * dev, void * data,
96         struct drm_file * filp);
97 extern int xgi_free_ioctl(struct drm_device * dev, void * data,
98         struct drm_file * filp);
99 extern int xgi_ge_reset_ioctl(struct drm_device * dev, void * data,
100         struct drm_file * filp);
101 extern int xgi_dump_register_ioctl(struct drm_device * dev, void * data,
102         struct drm_file * filp);
103 extern int xgi_restore_registers_ioctl(struct drm_device * dev, void * data,
104         struct drm_file * filp);
105 extern int xgi_submit_cmdlist(struct drm_device * dev, void * data,
106         struct drm_file * filp);
107 extern int xgi_test_rwinkernel_ioctl(struct drm_device * dev, void * data,
108         struct drm_file * filp);
109 extern int xgi_state_change_ioctl(struct drm_device * dev, void * data,
110         struct drm_file * filp);
111
112 #endif