2 * Copyright (c) 2012-2016, The Linux Foundation. All rights reserved.
3 * Copyright (C) 2017 Linaro Ltd.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 and
7 * only version 2 as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/clk.h>
16 #include <linux/init.h>
17 #include <linux/ioctl.h>
18 #include <linux/list.h>
19 #include <linux/module.h>
20 #include <linux/of_device.h>
21 #include <linux/platform_device.h>
22 #include <linux/slab.h>
23 #include <linux/types.h>
24 #include <linux/pm_runtime.h>
25 #include <media/videobuf2-v4l2.h>
26 #include <media/v4l2-mem2mem.h>
27 #include <media/v4l2-ioctl.h>
34 static void venus_event_notify(struct venus_core
*core
, u32 event
)
36 struct venus_inst
*inst
;
39 case EVT_SYS_WATCHDOG_TIMEOUT
:
46 mutex_lock(&core
->lock
);
47 core
->sys_error
= true;
48 list_for_each_entry(inst
, &core
->instances
, list
)
49 inst
->ops
->event_notify(inst
, EVT_SESSION_ERROR
, NULL
);
50 mutex_unlock(&core
->lock
);
52 disable_irq_nosync(core
->irq
);
55 * Delay recovery to ensure venus has completed any pending cache
56 * operations. Without this sleep, we see device reset when firmware is
57 * unloaded after a system error.
59 schedule_delayed_work(&core
->work
, msecs_to_jiffies(100));
62 static const struct hfi_core_ops venus_core_ops
= {
63 .event_notify
= venus_event_notify
,
66 static void venus_sys_error_handler(struct work_struct
*work
)
68 struct venus_core
*core
=
69 container_of(work
, struct venus_core
, work
.work
);
72 dev_warn(core
->dev
, "system error has occurred, starting recovery!\n");
74 pm_runtime_get_sync(core
->dev
);
76 hfi_core_deinit(core
, true);
78 mutex_lock(&core
->lock
);
79 venus_shutdown(core
->dev
);
81 pm_runtime_put_sync(core
->dev
);
83 ret
|= hfi_create(core
, &venus_core_ops
);
85 pm_runtime_get_sync(core
->dev
);
87 ret
|= venus_boot(core
->dev
, core
->res
->fwname
);
89 ret
|= hfi_core_resume(core
, true);
91 enable_irq(core
->irq
);
93 mutex_unlock(&core
->lock
);
95 ret
|= hfi_core_init(core
);
97 pm_runtime_put_sync(core
->dev
);
100 disable_irq_nosync(core
->irq
);
101 dev_warn(core
->dev
, "recovery failed (%d)\n", ret
);
102 schedule_delayed_work(&core
->work
, msecs_to_jiffies(10));
106 mutex_lock(&core
->lock
);
107 core
->sys_error
= false;
108 mutex_unlock(&core
->lock
);
111 static int venus_clks_get(struct venus_core
*core
)
113 const struct venus_resources
*res
= core
->res
;
114 struct device
*dev
= core
->dev
;
117 for (i
= 0; i
< res
->clks_num
; i
++) {
118 core
->clks
[i
] = devm_clk_get(dev
, res
->clks
[i
]);
119 if (IS_ERR(core
->clks
[i
]))
120 return PTR_ERR(core
->clks
[i
]);
126 static int venus_clks_enable(struct venus_core
*core
)
128 const struct venus_resources
*res
= core
->res
;
132 for (i
= 0; i
< res
->clks_num
; i
++) {
133 ret
= clk_prepare_enable(core
->clks
[i
]);
141 clk_disable_unprepare(core
->clks
[i
]);
146 static void venus_clks_disable(struct venus_core
*core
)
148 const struct venus_resources
*res
= core
->res
;
149 unsigned int i
= res
->clks_num
;
152 clk_disable_unprepare(core
->clks
[i
]);
155 static u32
to_v4l2_codec_type(u32 codec
)
158 case HFI_VIDEO_CODEC_H264
:
159 return V4L2_PIX_FMT_H264
;
160 case HFI_VIDEO_CODEC_H263
:
161 return V4L2_PIX_FMT_H263
;
162 case HFI_VIDEO_CODEC_MPEG1
:
163 return V4L2_PIX_FMT_MPEG1
;
164 case HFI_VIDEO_CODEC_MPEG2
:
165 return V4L2_PIX_FMT_MPEG2
;
166 case HFI_VIDEO_CODEC_MPEG4
:
167 return V4L2_PIX_FMT_MPEG4
;
168 case HFI_VIDEO_CODEC_VC1
:
169 return V4L2_PIX_FMT_VC1_ANNEX_G
;
170 case HFI_VIDEO_CODEC_VP8
:
171 return V4L2_PIX_FMT_VP8
;
172 case HFI_VIDEO_CODEC_VP9
:
173 return V4L2_PIX_FMT_VP9
;
174 case HFI_VIDEO_CODEC_DIVX
:
175 case HFI_VIDEO_CODEC_DIVX_311
:
176 return V4L2_PIX_FMT_XVID
;
182 static int venus_enumerate_codecs(struct venus_core
*core
, u32 type
)
184 const struct hfi_inst_ops dummy_ops
= {};
185 struct venus_inst
*inst
;
190 if (core
->res
->hfi_version
!= HFI_VERSION_1XX
)
193 inst
= kzalloc(sizeof(*inst
), GFP_KERNEL
);
197 mutex_init(&inst
->lock
);
199 inst
->session_type
= type
;
200 if (type
== VIDC_SESSION_TYPE_DEC
)
201 codecs
= core
->dec_codecs
;
203 codecs
= core
->enc_codecs
;
205 ret
= hfi_session_create(inst
, &dummy_ops
);
209 for (i
= 0; i
< MAX_CODEC_NUM
; i
++) {
210 codec
= (1 << i
) & codecs
;
214 ret
= hfi_session_init(inst
, to_v4l2_codec_type(codec
));
218 ret
= hfi_session_deinit(inst
);
224 hfi_session_destroy(inst
);
226 mutex_destroy(&inst
->lock
);
232 static int venus_probe(struct platform_device
*pdev
)
234 struct device
*dev
= &pdev
->dev
;
235 struct venus_core
*core
;
239 core
= devm_kzalloc(dev
, sizeof(*core
), GFP_KERNEL
);
244 platform_set_drvdata(pdev
, core
);
246 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
247 core
->base
= devm_ioremap_resource(dev
, r
);
248 if (IS_ERR(core
->base
))
249 return PTR_ERR(core
->base
);
251 core
->irq
= platform_get_irq(pdev
, 0);
255 core
->res
= of_device_get_match_data(dev
);
259 ret
= venus_clks_get(core
);
263 ret
= dma_set_mask_and_coherent(dev
, core
->res
->dma_mask
);
267 INIT_LIST_HEAD(&core
->instances
);
268 mutex_init(&core
->lock
);
269 INIT_DELAYED_WORK(&core
->work
, venus_sys_error_handler
);
271 ret
= devm_request_threaded_irq(dev
, core
->irq
, hfi_isr
, hfi_isr_thread
,
272 IRQF_TRIGGER_HIGH
| IRQF_ONESHOT
,
277 ret
= hfi_create(core
, &venus_core_ops
);
281 pm_runtime_enable(dev
);
283 ret
= pm_runtime_get_sync(dev
);
285 goto err_runtime_disable
;
287 ret
= venus_boot(dev
, core
->res
->fwname
);
289 goto err_runtime_disable
;
291 ret
= hfi_core_resume(core
, true);
293 goto err_venus_shutdown
;
295 ret
= hfi_core_init(core
);
297 goto err_venus_shutdown
;
299 ret
= venus_enumerate_codecs(core
, VIDC_SESSION_TYPE_DEC
);
301 goto err_venus_shutdown
;
303 ret
= venus_enumerate_codecs(core
, VIDC_SESSION_TYPE_ENC
);
305 goto err_venus_shutdown
;
307 ret
= v4l2_device_register(dev
, &core
->v4l2_dev
);
309 goto err_core_deinit
;
311 ret
= of_platform_populate(dev
->of_node
, NULL
, NULL
, dev
);
313 goto err_dev_unregister
;
315 ret
= pm_runtime_put_sync(dev
);
317 goto err_dev_unregister
;
322 v4l2_device_unregister(&core
->v4l2_dev
);
324 hfi_core_deinit(core
, false);
328 pm_runtime_set_suspended(dev
);
329 pm_runtime_disable(dev
);
334 static int venus_remove(struct platform_device
*pdev
)
336 struct venus_core
*core
= platform_get_drvdata(pdev
);
337 struct device
*dev
= core
->dev
;
340 ret
= pm_runtime_get_sync(dev
);
343 ret
= hfi_core_deinit(core
, true);
348 of_platform_depopulate(dev
);
350 pm_runtime_put_sync(dev
);
351 pm_runtime_disable(dev
);
353 v4l2_device_unregister(&core
->v4l2_dev
);
358 static __maybe_unused
int venus_runtime_suspend(struct device
*dev
)
360 struct venus_core
*core
= dev_get_drvdata(dev
);
363 ret
= hfi_core_suspend(core
);
365 venus_clks_disable(core
);
370 static __maybe_unused
int venus_runtime_resume(struct device
*dev
)
372 struct venus_core
*core
= dev_get_drvdata(dev
);
375 ret
= venus_clks_enable(core
);
379 ret
= hfi_core_resume(core
, false);
381 goto err_clks_disable
;
386 venus_clks_disable(core
);
390 static const struct dev_pm_ops venus_pm_ops
= {
391 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
392 pm_runtime_force_resume
)
393 SET_RUNTIME_PM_OPS(venus_runtime_suspend
, venus_runtime_resume
, NULL
)
396 static const struct freq_tbl msm8916_freq_table
[] = {
397 { 352800, 228570000 }, /* 1920x1088 @ 30 + 1280x720 @ 30 */
398 { 244800, 160000000 }, /* 1920x1088 @ 30 */
399 { 108000, 100000000 }, /* 1280x720 @ 30 */
402 static const struct reg_val msm8916_reg_preset
[] = {
403 { 0xe0020, 0x05555556 },
404 { 0xe0024, 0x05555556 },
405 { 0x80124, 0x00000003 },
408 static const struct venus_resources msm8916_res
= {
409 .freq_tbl
= msm8916_freq_table
,
410 .freq_tbl_size
= ARRAY_SIZE(msm8916_freq_table
),
411 .reg_tbl
= msm8916_reg_preset
,
412 .reg_tbl_size
= ARRAY_SIZE(msm8916_reg_preset
),
413 .clks
= { "core", "iface", "bus", },
415 .max_load
= 352800, /* 720p@30 + 1080p@30 */
416 .hfi_version
= HFI_VERSION_1XX
,
417 .vmem_id
= VIDC_RESOURCE_NONE
,
420 .dma_mask
= 0xddc00000 - 1,
421 .fwname
= "qcom/venus-1.8/venus.mdt",
424 static const struct freq_tbl msm8996_freq_table
[] = {
425 { 1944000, 490000000 }, /* 4k UHD @ 60 */
426 { 972000, 320000000 }, /* 4k UHD @ 30 */
427 { 489600, 150000000 }, /* 1080p @ 60 */
428 { 244800, 75000000 }, /* 1080p @ 30 */
431 static const struct reg_val msm8996_reg_preset
[] = {
432 { 0x80010, 0xffffffff },
433 { 0x80018, 0x00001556 },
434 { 0x8001C, 0x00001556 },
437 static const struct venus_resources msm8996_res
= {
438 .freq_tbl
= msm8996_freq_table
,
439 .freq_tbl_size
= ARRAY_SIZE(msm8996_freq_table
),
440 .reg_tbl
= msm8996_reg_preset
,
441 .reg_tbl_size
= ARRAY_SIZE(msm8996_reg_preset
),
442 .clks
= {"core", "iface", "bus", "mbus" },
445 .hfi_version
= HFI_VERSION_3XX
,
446 .vmem_id
= VIDC_RESOURCE_NONE
,
449 .dma_mask
= 0xddc00000 - 1,
450 .fwname
= "qcom/venus-4.2/venus.mdt",
453 static const struct freq_tbl sdm845_freq_table
[] = {
454 { 1944000, 380000000 }, /* 4k UHD @ 60 */
455 { 972000, 320000000 }, /* 4k UHD @ 30 */
456 { 489600, 200000000 }, /* 1080p @ 60 */
457 { 244800, 100000000 }, /* 1080p @ 30 */
460 static const struct venus_resources sdm845_res
= {
461 .freq_tbl
= sdm845_freq_table
,
462 .freq_tbl_size
= ARRAY_SIZE(sdm845_freq_table
),
463 .clks
= {"core", "iface", "bus" },
466 .hfi_version
= HFI_VERSION_4XX
,
467 .vmem_id
= VIDC_RESOURCE_NONE
,
470 .dma_mask
= 0xe0000000 - 1,
471 .fwname
= "qcom/venus-5.2/venus.mdt",
474 static const struct of_device_id venus_dt_match
[] = {
475 { .compatible
= "qcom,msm8916-venus", .data
= &msm8916_res
, },
476 { .compatible
= "qcom,msm8996-venus", .data
= &msm8996_res
, },
477 { .compatible
= "qcom,sdm845-venus", .data
= &sdm845_res
, },
480 MODULE_DEVICE_TABLE(of
, venus_dt_match
);
482 static struct platform_driver qcom_venus_driver
= {
483 .probe
= venus_probe
,
484 .remove
= venus_remove
,
486 .name
= "qcom-venus",
487 .of_match_table
= venus_dt_match
,
491 module_platform_driver(qcom_venus_driver
);
493 MODULE_ALIAS("platform:qcom-venus");
494 MODULE_DESCRIPTION("Qualcomm Venus video encoder and decoder driver");
495 MODULE_LICENSE("GPL v2");