blob: f5dd56fbdc3ed38fbdbd4f9618881d3a810e3abd [file] [log] [blame]
Terje Bergstrom65793242013-03-22 16:34:03 +02001/*
Terje Bergstrom65793242013-03-22 16:34:03 +02002 * Copyright (c) 2009-2013, NVIDIA Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
18
19#ifndef __LINUX_HOST1X_H
20#define __LINUX_HOST1X_H
21
Thierry Reding776dc382013-10-14 14:43:22 +020022#include <linux/device.h>
Thierry Reding35d747a2013-09-24 16:30:32 +020023#include <linux/types.h>
24
Terje Bergstrom65793242013-03-22 16:34:03 +020025enum host1x_class {
Thierry Redinge1e90642013-09-24 13:59:01 +020026 HOST1X_CLASS_HOST1X = 0x1,
27 HOST1X_CLASS_GR2D = 0x51,
28 HOST1X_CLASS_GR2D_SB = 0x52,
Thierry Reding5f60ed02013-02-28 08:08:01 +010029 HOST1X_CLASS_GR3D = 0x60,
Terje Bergstrom65793242013-03-22 16:34:03 +020030};
31
Thierry Reding53fa7f72013-09-24 15:35:40 +020032struct host1x_client;
33
34struct host1x_client_ops {
35 int (*init)(struct host1x_client *client);
36 int (*exit)(struct host1x_client *client);
37};
38
39struct host1x_client {
40 struct list_head list;
Thierry Reding776dc382013-10-14 14:43:22 +020041 struct device *parent;
Thierry Reding53fa7f72013-09-24 15:35:40 +020042 struct device *dev;
43
44 const struct host1x_client_ops *ops;
45
46 enum host1x_class class;
47 struct host1x_channel *channel;
48
49 struct host1x_syncpt **syncpts;
50 unsigned int num_syncpts;
51};
52
Thierry Reding35d747a2013-09-24 16:30:32 +020053/*
54 * host1x buffer objects
55 */
56
57struct host1x_bo;
58struct sg_table;
59
60struct host1x_bo_ops {
61 struct host1x_bo *(*get)(struct host1x_bo *bo);
62 void (*put)(struct host1x_bo *bo);
63 dma_addr_t (*pin)(struct host1x_bo *bo, struct sg_table **sgt);
64 void (*unpin)(struct host1x_bo *bo, struct sg_table *sgt);
65 void *(*mmap)(struct host1x_bo *bo);
66 void (*munmap)(struct host1x_bo *bo, void *addr);
67 void *(*kmap)(struct host1x_bo *bo, unsigned int pagenum);
68 void (*kunmap)(struct host1x_bo *bo, unsigned int pagenum, void *addr);
69};
70
71struct host1x_bo {
72 const struct host1x_bo_ops *ops;
73};
74
75static inline void host1x_bo_init(struct host1x_bo *bo,
76 const struct host1x_bo_ops *ops)
77{
78 bo->ops = ops;
79}
80
81static inline struct host1x_bo *host1x_bo_get(struct host1x_bo *bo)
82{
83 return bo->ops->get(bo);
84}
85
86static inline void host1x_bo_put(struct host1x_bo *bo)
87{
88 bo->ops->put(bo);
89}
90
91static inline dma_addr_t host1x_bo_pin(struct host1x_bo *bo,
92 struct sg_table **sgt)
93{
94 return bo->ops->pin(bo, sgt);
95}
96
97static inline void host1x_bo_unpin(struct host1x_bo *bo, struct sg_table *sgt)
98{
99 bo->ops->unpin(bo, sgt);
100}
101
102static inline void *host1x_bo_mmap(struct host1x_bo *bo)
103{
104 return bo->ops->mmap(bo);
105}
106
107static inline void host1x_bo_munmap(struct host1x_bo *bo, void *addr)
108{
109 bo->ops->munmap(bo, addr);
110}
111
112static inline void *host1x_bo_kmap(struct host1x_bo *bo, unsigned int pagenum)
113{
114 return bo->ops->kmap(bo, pagenum);
115}
116
117static inline void host1x_bo_kunmap(struct host1x_bo *bo,
118 unsigned int pagenum, void *addr)
119{
120 bo->ops->kunmap(bo, pagenum, addr);
121}
122
123/*
124 * host1x syncpoints
125 */
126
127struct host1x_syncpt;
128struct host1x;
129
130struct host1x_syncpt *host1x_syncpt_get(struct host1x *host, u32 id);
131u32 host1x_syncpt_id(struct host1x_syncpt *sp);
132u32 host1x_syncpt_read_min(struct host1x_syncpt *sp);
133u32 host1x_syncpt_read_max(struct host1x_syncpt *sp);
134int host1x_syncpt_incr(struct host1x_syncpt *sp);
135int host1x_syncpt_wait(struct host1x_syncpt *sp, u32 thresh, long timeout,
136 u32 *value);
137struct host1x_syncpt *host1x_syncpt_request(struct device *dev,
138 bool client_managed);
139void host1x_syncpt_free(struct host1x_syncpt *sp);
140
141/*
142 * host1x channel
143 */
144
145struct host1x_channel;
146struct host1x_job;
147
148struct host1x_channel *host1x_channel_request(struct device *dev);
149void host1x_channel_free(struct host1x_channel *channel);
150struct host1x_channel *host1x_channel_get(struct host1x_channel *channel);
151void host1x_channel_put(struct host1x_channel *channel);
152int host1x_job_submit(struct host1x_job *job);
153
154/*
155 * host1x job
156 */
157
158struct host1x_reloc {
159 struct host1x_bo *cmdbuf;
160 u32 cmdbuf_offset;
161 struct host1x_bo *target;
162 u32 target_offset;
163 u32 shift;
164 u32 pad;
165};
166
167struct host1x_job {
168 /* When refcount goes to zero, job can be freed */
169 struct kref ref;
170
171 /* List entry */
172 struct list_head list;
173
174 /* Channel where job is submitted to */
175 struct host1x_channel *channel;
176
177 u32 client;
178
179 /* Gathers and their memory */
180 struct host1x_job_gather *gathers;
181 unsigned int num_gathers;
182
183 /* Wait checks to be processed at submit time */
184 struct host1x_waitchk *waitchk;
185 unsigned int num_waitchk;
186 u32 waitchk_mask;
187
188 /* Array of handles to be pinned & unpinned */
189 struct host1x_reloc *relocarray;
190 unsigned int num_relocs;
191 struct host1x_job_unpin_data *unpins;
192 unsigned int num_unpins;
193
194 dma_addr_t *addr_phys;
195 dma_addr_t *gather_addr_phys;
196 dma_addr_t *reloc_addr_phys;
197
198 /* Sync point id, number of increments and end related to the submit */
199 u32 syncpt_id;
200 u32 syncpt_incrs;
201 u32 syncpt_end;
202
203 /* Maximum time to wait for this job */
204 unsigned int timeout;
205
206 /* Index and number of slots used in the push buffer */
207 unsigned int first_get;
208 unsigned int num_slots;
209
210 /* Copy of gathers */
211 size_t gather_copy_size;
212 dma_addr_t gather_copy;
213 u8 *gather_copy_mapped;
214
215 /* Check if register is marked as an address reg */
216 int (*is_addr_reg)(struct device *dev, u32 reg, u32 class);
217
218 /* Request a SETCLASS to this class */
219 u32 class;
220
221 /* Add a channel wait for previous ops to complete */
222 bool serialize;
223};
224
225struct host1x_job *host1x_job_alloc(struct host1x_channel *ch,
226 u32 num_cmdbufs, u32 num_relocs,
227 u32 num_waitchks);
228void host1x_job_add_gather(struct host1x_job *job, struct host1x_bo *mem_id,
229 u32 words, u32 offset);
230struct host1x_job *host1x_job_get(struct host1x_job *job);
231void host1x_job_put(struct host1x_job *job);
232int host1x_job_pin(struct host1x_job *job, struct device *dev);
233void host1x_job_unpin(struct host1x_job *job);
234
Thierry Reding776dc382013-10-14 14:43:22 +0200235/*
236 * subdevice probe infrastructure
237 */
238
239struct host1x_device;
240
241struct host1x_driver {
242 const struct of_device_id *subdevs;
243 struct list_head list;
244 const char *name;
245
246 int (*probe)(struct host1x_device *device);
247 int (*remove)(struct host1x_device *device);
248};
249
250int host1x_driver_register(struct host1x_driver *driver);
251void host1x_driver_unregister(struct host1x_driver *driver);
252
253struct host1x_device {
254 struct host1x_driver *driver;
255 struct list_head list;
256 struct device dev;
257
258 struct mutex subdevs_lock;
259 struct list_head subdevs;
260 struct list_head active;
261
262 struct mutex clients_lock;
263 struct list_head clients;
264};
265
266static inline struct host1x_device *to_host1x_device(struct device *dev)
267{
268 return container_of(dev, struct host1x_device, dev);
269}
270
271int host1x_device_init(struct host1x_device *device);
272int host1x_device_exit(struct host1x_device *device);
273
274int host1x_client_register(struct host1x_client *client);
275int host1x_client_unregister(struct host1x_client *client);
276
Terje Bergstrom65793242013-03-22 16:34:03 +0200277#endif