2 * Copyright (c) 2012-2013, NVIDIA Corporation.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #include <linux/clk.h>
24 #include "host1x_bo.h"
25 #include "host1x_client.h"
28 #define GR2D_NUM_REGS 0x4d
31 struct host1x_client client
;
32 struct host1x_channel
*channel
;
35 DECLARE_BITMAP(addr_regs
, GR2D_NUM_REGS
);
38 static inline struct gr2d
*to_gr2d(struct host1x_client
*client
)
40 return container_of(client
, struct gr2d
, client
);
43 static int gr2d_client_init(struct host1x_client
*client
,
44 struct drm_device
*drm
)
49 static int gr2d_client_exit(struct host1x_client
*client
)
54 static int gr2d_open_channel(struct host1x_client
*client
,
55 struct tegra_drm_context
*context
)
57 struct gr2d
*gr2d
= to_gr2d(client
);
59 context
->channel
= host1x_channel_get(gr2d
->channel
);
60 if (!context
->channel
)
66 static void gr2d_close_channel(struct tegra_drm_context
*context
)
68 host1x_channel_put(context
->channel
);
71 static struct host1x_bo
*host1x_bo_lookup(struct drm_device
*drm
,
72 struct drm_file
*file
,
75 struct drm_gem_object
*gem
;
78 gem
= drm_gem_object_lookup(drm
, file
, handle
);
82 mutex_lock(&drm
->struct_mutex
);
83 drm_gem_object_unreference(gem
);
84 mutex_unlock(&drm
->struct_mutex
);
86 bo
= to_tegra_bo(gem
);
90 static int gr2d_is_addr_reg(struct device
*dev
, u32
class, u32 offset
)
92 struct gr2d
*gr2d
= dev_get_drvdata(dev
);
95 case HOST1X_CLASS_HOST1X
:
101 case HOST1X_CLASS_GR2D
:
102 case HOST1X_CLASS_GR2D_SB
:
103 if (offset
>= GR2D_NUM_REGS
)
106 if (test_bit(offset
, gr2d
->addr_regs
))
115 static int gr2d_submit(struct tegra_drm_context
*context
,
116 struct drm_tegra_submit
*args
, struct drm_device
*drm
,
117 struct drm_file
*file
)
119 unsigned int num_cmdbufs
= args
->num_cmdbufs
;
120 unsigned int num_relocs
= args
->num_relocs
;
121 unsigned int num_waitchks
= args
->num_waitchks
;
122 struct drm_tegra_cmdbuf __user
*cmdbufs
=
123 (void * __user
)(uintptr_t)args
->cmdbufs
;
124 struct drm_tegra_reloc __user
*relocs
=
125 (void * __user
)(uintptr_t)args
->relocs
;
126 struct drm_tegra_waitchk __user
*waitchks
=
127 (void * __user
)(uintptr_t)args
->waitchks
;
128 struct drm_tegra_syncpt syncpt
;
129 struct host1x_job
*job
;
132 /* We don't yet support other than one syncpt_incr struct per submit */
133 if (args
->num_syncpts
!= 1)
136 job
= host1x_job_alloc(context
->channel
, args
->num_cmdbufs
,
137 args
->num_relocs
, args
->num_waitchks
);
141 job
->num_relocs
= args
->num_relocs
;
142 job
->num_waitchk
= args
->num_waitchks
;
143 job
->client
= (u32
)args
->context
;
144 job
->class = context
->client
->class;
145 job
->serialize
= true;
147 while (num_cmdbufs
) {
148 struct drm_tegra_cmdbuf cmdbuf
;
149 struct host1x_bo
*bo
;
151 err
= copy_from_user(&cmdbuf
, cmdbufs
, sizeof(cmdbuf
));
155 bo
= host1x_bo_lookup(drm
, file
, cmdbuf
.handle
);
161 host1x_job_add_gather(job
, bo
, cmdbuf
.words
, cmdbuf
.offset
);
166 err
= copy_from_user(job
->relocarray
, relocs
,
167 sizeof(*relocs
) * num_relocs
);
171 while (num_relocs
--) {
172 struct host1x_reloc
*reloc
= &job
->relocarray
[num_relocs
];
173 struct host1x_bo
*cmdbuf
, *target
;
175 cmdbuf
= host1x_bo_lookup(drm
, file
, (u32
)reloc
->cmdbuf
);
176 target
= host1x_bo_lookup(drm
, file
, (u32
)reloc
->target
);
178 reloc
->cmdbuf
= cmdbuf
;
179 reloc
->target
= target
;
181 if (!reloc
->target
|| !reloc
->cmdbuf
) {
187 err
= copy_from_user(job
->waitchk
, waitchks
,
188 sizeof(*waitchks
) * num_waitchks
);
192 err
= copy_from_user(&syncpt
, (void * __user
)(uintptr_t)args
->syncpts
,
197 job
->syncpt_id
= syncpt
.id
;
198 job
->syncpt_incrs
= syncpt
.incrs
;
199 job
->timeout
= 10000;
200 job
->is_addr_reg
= gr2d_is_addr_reg
;
202 if (args
->timeout
&& args
->timeout
< 10000)
203 job
->timeout
= args
->timeout
;
205 err
= host1x_job_pin(job
, context
->client
->dev
);
209 err
= host1x_job_submit(job
);
213 args
->fence
= job
->syncpt_end
;
219 host1x_job_unpin(job
);
225 static struct host1x_client_ops gr2d_client_ops
= {
226 .drm_init
= gr2d_client_init
,
227 .drm_exit
= gr2d_client_exit
,
228 .open_channel
= gr2d_open_channel
,
229 .close_channel
= gr2d_close_channel
,
230 .submit
= gr2d_submit
,
233 static const struct of_device_id gr2d_match
[] = {
234 { .compatible
= "nvidia,tegra30-gr2d" },
235 { .compatible
= "nvidia,tegra20-gr2d" },
239 static const u32 gr2d_addr_regs
[] = {
240 0x1a, 0x1b, 0x26, 0x2b, 0x2c, 0x2d, 0x31, 0x32,
241 0x48, 0x49, 0x4a, 0x4b, 0x4c
244 static int gr2d_probe(struct platform_device
*pdev
)
246 struct tegra_drm
*tegra
= host1x_get_drm_data(pdev
->dev
.parent
);
247 struct device
*dev
= &pdev
->dev
;
248 struct host1x_syncpt
**syncpts
;
253 gr2d
= devm_kzalloc(dev
, sizeof(*gr2d
), GFP_KERNEL
);
257 syncpts
= devm_kzalloc(dev
, sizeof(*syncpts
), GFP_KERNEL
);
261 gr2d
->clk
= devm_clk_get(dev
, NULL
);
262 if (IS_ERR(gr2d
->clk
)) {
263 dev_err(dev
, "cannot get clock\n");
264 return PTR_ERR(gr2d
->clk
);
267 err
= clk_prepare_enable(gr2d
->clk
);
269 dev_err(dev
, "cannot turn on clock\n");
273 gr2d
->channel
= host1x_channel_request(dev
);
277 *syncpts
= host1x_syncpt_request(dev
, false);
279 host1x_channel_free(gr2d
->channel
);
283 gr2d
->client
.ops
= &gr2d_client_ops
;
284 gr2d
->client
.dev
= dev
;
285 gr2d
->client
.class = HOST1X_CLASS_GR2D
;
286 gr2d
->client
.syncpts
= syncpts
;
287 gr2d
->client
.num_syncpts
= 1;
289 err
= host1x_register_client(tegra
, &gr2d
->client
);
291 dev_err(dev
, "failed to register host1x client: %d\n", err
);
295 /* initialize address register map */
296 for (i
= 0; i
< ARRAY_SIZE(gr2d_addr_regs
); i
++)
297 set_bit(gr2d_addr_regs
[i
], gr2d
->addr_regs
);
299 platform_set_drvdata(pdev
, gr2d
);
304 static int gr2d_remove(struct platform_device
*pdev
)
306 struct tegra_drm
*tegra
= host1x_get_drm_data(pdev
->dev
.parent
);
307 struct gr2d
*gr2d
= platform_get_drvdata(pdev
);
311 err
= host1x_unregister_client(tegra
, &gr2d
->client
);
313 dev_err(&pdev
->dev
, "failed to unregister host1x client: %d\n",
318 for (i
= 0; i
< gr2d
->client
.num_syncpts
; i
++)
319 host1x_syncpt_free(gr2d
->client
.syncpts
[i
]);
321 host1x_channel_free(gr2d
->channel
);
322 clk_disable_unprepare(gr2d
->clk
);
327 struct platform_driver tegra_gr2d_driver
= {
329 .name
= "tegra-gr2d",
330 .of_match_table
= gr2d_match
,
333 .remove
= gr2d_remove
,