Unify infrastructure for freeing on-card / GART memory.
[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
33 #define DRIVER_AUTHOR           "Andrea Zhang <andrea_zhang@macrosynergy.com>"
34
35 #define DRIVER_NAME             "xgi"
36 #define DRIVER_DESC             "XGI XP5 / XP10 / XG47"
37 #define DRIVER_DATE             "20070806"
38
39 #define DRIVER_MAJOR            0
40 #define DRIVER_MINOR            10
41 #define DRIVER_PATCHLEVEL       5
42
43 #include "xgi_cmdlist.h"
44 #include "xgi_drm.h"
45
46 struct xgi_aperture {
47         dma_addr_t base;
48         unsigned int size;
49 };
50
51 struct xgi_mem_block {
52         struct list_head list;
53         unsigned long offset;
54         unsigned long size;
55         struct drm_file * filp;
56 };
57
58 struct xgi_mem_heap {
59         struct list_head free_list;
60         struct list_head used_list;
61         struct list_head sort_list;
62         unsigned long max_freesize;
63
64         bool initialized;
65 };
66
67 struct xgi_info {
68         struct drm_device *dev;
69
70         bool bootstrap_done;
71
72         /* physical characteristics */
73         struct xgi_aperture mmio;
74         struct xgi_aperture fb;
75         struct xgi_aperture pcie;
76
77         struct drm_map *mmio_map;
78         struct drm_map *pcie_map;
79         struct drm_map *fb_map;
80
81         /* look up table parameters */
82         struct drm_dma_handle *lut_handle;
83         unsigned int lutPageSize;
84
85         struct xgi_mem_heap fb_heap;
86         struct xgi_mem_heap pcie_heap;
87
88         struct xgi_cmdring_info cmdring;
89 };
90
91 extern struct kmem_cache *xgi_mem_block_cache;
92 extern int xgi_mem_heap_init(struct xgi_mem_heap * heap, unsigned int start,
93         unsigned int end);
94 extern void xgi_mem_heap_cleanup(struct xgi_mem_heap * heap);
95
96 extern int xgi_fb_heap_init(struct xgi_info * info);
97
98 extern int xgi_alloc(struct xgi_info * info, struct xgi_mem_alloc * alloc,
99         struct drm_file * filp);
100
101 extern int xgi_free(struct xgi_info * info, unsigned long index,
102         struct drm_file * filp);
103
104 extern int xgi_pcie_heap_init(struct xgi_info * info);
105 extern void xgi_pcie_lut_cleanup(struct xgi_info * info);
106
107 extern void *xgi_find_pcie_virt(struct xgi_info * info, u32 address);
108
109 extern void xgi_free_all(struct xgi_info *, struct xgi_mem_heap *,
110         struct drm_file *);
111
112 extern int xgi_fb_alloc_ioctl(struct drm_device * dev, void * data,
113         struct drm_file * filp);
114 extern int xgi_fb_free_ioctl(struct drm_device * dev, void * data,
115         struct drm_file * filp);
116 extern int xgi_pcie_alloc_ioctl(struct drm_device * dev, void * data,
117         struct drm_file * filp);
118 extern int xgi_pcie_free_ioctl(struct drm_device * dev, void * data,
119         struct drm_file * filp);
120 extern int xgi_ge_reset_ioctl(struct drm_device * dev, void * data,
121         struct drm_file * filp);
122 extern int xgi_dump_register_ioctl(struct drm_device * dev, void * data,
123         struct drm_file * filp);
124 extern int xgi_restore_registers_ioctl(struct drm_device * dev, void * data,
125         struct drm_file * filp);
126 extern int xgi_submit_cmdlist(struct drm_device * dev, void * data,
127         struct drm_file * filp);
128 extern int xgi_test_rwinkernel_ioctl(struct drm_device * dev, void * data,
129         struct drm_file * filp);
130 extern int xgi_state_change_ioctl(struct drm_device * dev, void * data,
131         struct drm_file * filp);
132
133 #endif