1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2015, NVIDIA Corporation.
7 #include <linux/delay.h>
8 #include <linux/dma-mapping.h>
9 #include <linux/host1x.h>
10 #include <linux/iommu.h>
11 #include <linux/module.h>
13 #include <linux/of_device.h>
14 #include <linux/of_platform.h>
15 #include <linux/platform_device.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/reset.h>
19 #include <soc/tegra/pmc.h>
35 struct tegra_drm_client client;
36 struct host1x_channel *channel;
39 struct reset_control *rst;
43 /* Platform configuration */
44 const struct vic_config *config;
47 static inline struct vic *to_vic(struct tegra_drm_client *client)
49 return container_of(client, struct vic, client);
52 static void vic_writel(struct vic *vic, u32 value, unsigned int offset)
54 writel(value, vic->regs + offset);
57 static int vic_boot(struct vic *vic)
59 #ifdef CONFIG_IOMMU_API
60 struct iommu_fwspec *spec = dev_iommu_fwspec_get(vic->dev);
62 u32 fce_ucode_size, fce_bin_data_offset;
66 #ifdef CONFIG_IOMMU_API
67 if (vic->config->supports_sid && spec) {
70 value = TRANSCFG_ATT(1, TRANSCFG_SID_FALCON) |
71 TRANSCFG_ATT(0, TRANSCFG_SID_HW);
72 vic_writel(vic, value, VIC_TFBIF_TRANSCFG);
74 if (spec->num_ids > 0) {
75 value = spec->ids[0] & 0xffff;
78 * STREAMID0 is used for input/output buffers.
79 * Initialize it to SID_VIC in case context isolation
80 * is not enabled, and SID_VIC is used for both firmware
83 * If context isolation is enabled, it will be
84 * overridden by the SETSTREAMID opcode as part of
87 vic_writel(vic, value, VIC_THI_STREAMID0);
89 /* STREAMID1 is used for firmware loading. */
90 vic_writel(vic, value, VIC_THI_STREAMID1);
95 /* setup clockgating registers */
96 vic_writel(vic, CG_IDLE_CG_DLY_CNT(4) |
99 NV_PVIC_MISC_PRI_VIC_CG);
101 err = falcon_boot(&vic->falcon);
105 hdr = vic->falcon.firmware.virt;
106 fce_bin_data_offset = *(u32 *)(hdr + VIC_UCODE_FCE_DATA_OFFSET);
108 /* Old VIC firmware needs kernel help with setting up FCE microcode. */
109 if (fce_bin_data_offset != 0x0 && fce_bin_data_offset != 0xa5a5a5a5) {
110 hdr = vic->falcon.firmware.virt +
111 *(u32 *)(hdr + VIC_UCODE_FCE_HEADER_OFFSET);
112 fce_ucode_size = *(u32 *)(hdr + FCE_UCODE_SIZE_OFFSET);
114 falcon_execute_method(&vic->falcon, VIC_SET_FCE_UCODE_SIZE,
116 falcon_execute_method(
117 &vic->falcon, VIC_SET_FCE_UCODE_OFFSET,
118 (vic->falcon.firmware.iova + fce_bin_data_offset) >> 8);
121 err = falcon_wait_idle(&vic->falcon);
124 "failed to set application ID and FCE base\n");
131 static int vic_init(struct host1x_client *client)
133 struct tegra_drm_client *drm = host1x_to_drm_client(client);
134 struct drm_device *dev = dev_get_drvdata(client->host);
135 struct tegra_drm *tegra = dev->dev_private;
136 struct vic *vic = to_vic(drm);
139 err = host1x_client_iommu_attach(client);
140 if (err < 0 && err != -ENODEV) {
141 dev_err(vic->dev, "failed to attach to domain: %d\n", err);
145 vic->channel = host1x_channel_request(client);
151 client->syncpts[0] = host1x_syncpt_request(client, 0);
152 if (!client->syncpts[0]) {
157 pm_runtime_enable(client->dev);
158 pm_runtime_use_autosuspend(client->dev);
159 pm_runtime_set_autosuspend_delay(client->dev, 500);
161 err = tegra_drm_register_client(tegra, drm);
166 * Inherit the DMA parameters (such as maximum segment size) from the
167 * parent host1x device.
169 client->dev->dma_parms = client->host->dma_parms;
174 pm_runtime_dont_use_autosuspend(client->dev);
175 pm_runtime_force_suspend(client->dev);
177 host1x_syncpt_put(client->syncpts[0]);
179 host1x_channel_put(vic->channel);
181 host1x_client_iommu_detach(client);
186 static int vic_exit(struct host1x_client *client)
188 struct tegra_drm_client *drm = host1x_to_drm_client(client);
189 struct drm_device *dev = dev_get_drvdata(client->host);
190 struct tegra_drm *tegra = dev->dev_private;
191 struct vic *vic = to_vic(drm);
194 /* avoid a dangling pointer just in case this disappears */
195 client->dev->dma_parms = NULL;
197 err = tegra_drm_unregister_client(tegra, drm);
201 pm_runtime_dont_use_autosuspend(client->dev);
202 pm_runtime_force_suspend(client->dev);
204 host1x_syncpt_put(client->syncpts[0]);
205 host1x_channel_put(vic->channel);
206 host1x_client_iommu_detach(client);
211 dma_unmap_single(vic->dev, vic->falcon.firmware.phys,
212 vic->falcon.firmware.size, DMA_TO_DEVICE);
213 tegra_drm_free(tegra, vic->falcon.firmware.size,
214 vic->falcon.firmware.virt,
215 vic->falcon.firmware.iova);
217 dma_free_coherent(vic->dev, vic->falcon.firmware.size,
218 vic->falcon.firmware.virt,
219 vic->falcon.firmware.iova);
225 static const struct host1x_client_ops vic_client_ops = {
230 static int vic_load_firmware(struct vic *vic)
232 struct host1x_client *client = &vic->client.base;
233 struct tegra_drm *tegra = vic->client.drm;
234 static DEFINE_MUTEX(lock);
235 u32 fce_bin_data_offset;
243 if (vic->falcon.firmware.virt) {
248 err = falcon_read_firmware(&vic->falcon, vic->config->firmware);
252 size = vic->falcon.firmware.size;
254 if (!client->group) {
255 virt = dma_alloc_coherent(vic->dev, size, &iova, GFP_KERNEL);
261 virt = tegra_drm_alloc(tegra, size, &iova);
268 vic->falcon.firmware.virt = virt;
269 vic->falcon.firmware.iova = iova;
271 err = falcon_load_firmware(&vic->falcon);
276 * In this case we have received an IOVA from the shared domain, so we
277 * need to make sure to get the physical address so that the DMA API
278 * knows what memory pages to flush the cache for.
283 phys = dma_map_single(vic->dev, virt, size, DMA_TO_DEVICE);
285 err = dma_mapping_error(vic->dev, phys);
289 vic->falcon.firmware.phys = phys;
293 * Check if firmware is new enough to not require mapping firmware
294 * to data buffer domains.
296 fce_bin_data_offset = *(u32 *)(virt + VIC_UCODE_FCE_DATA_OFFSET);
298 if (!vic->config->supports_sid) {
299 vic->can_use_context = false;
300 } else if (fce_bin_data_offset != 0x0 && fce_bin_data_offset != 0xa5a5a5a5) {
302 * Firmware will access FCE through STREAMID0, so context
303 * isolation cannot be used.
305 vic->can_use_context = false;
306 dev_warn_once(vic->dev, "context isolation disabled due to old firmware\n");
308 vic->can_use_context = true;
317 dma_free_coherent(vic->dev, size, virt, iova);
319 tegra_drm_free(tegra, size, virt, iova);
326 static int __maybe_unused vic_runtime_resume(struct device *dev)
328 struct vic *vic = dev_get_drvdata(dev);
331 err = clk_prepare_enable(vic->clk);
335 usleep_range(10, 20);
337 err = reset_control_deassert(vic->rst);
341 usleep_range(10, 20);
343 err = vic_load_firmware(vic);
354 reset_control_assert(vic->rst);
356 clk_disable_unprepare(vic->clk);
360 static int __maybe_unused vic_runtime_suspend(struct device *dev)
362 struct vic *vic = dev_get_drvdata(dev);
365 host1x_channel_stop(vic->channel);
367 err = reset_control_assert(vic->rst);
371 usleep_range(2000, 4000);
373 clk_disable_unprepare(vic->clk);
378 static int vic_open_channel(struct tegra_drm_client *client,
379 struct tegra_drm_context *context)
381 struct vic *vic = to_vic(client);
383 context->channel = host1x_channel_get(vic->channel);
384 if (!context->channel)
390 static void vic_close_channel(struct tegra_drm_context *context)
392 host1x_channel_put(context->channel);
395 static int vic_can_use_memory_ctx(struct tegra_drm_client *client, bool *supported)
397 struct vic *vic = to_vic(client);
400 /* This doesn't access HW so it's safe to call without powering up. */
401 err = vic_load_firmware(vic);
405 *supported = vic->can_use_context;
410 static const struct tegra_drm_client_ops vic_ops = {
411 .open_channel = vic_open_channel,
412 .close_channel = vic_close_channel,
413 .submit = tegra_drm_submit,
414 .get_streamid_offset = tegra_drm_get_streamid_offset_thi,
415 .can_use_memory_ctx = vic_can_use_memory_ctx,
418 #define NVIDIA_TEGRA_124_VIC_FIRMWARE "nvidia/tegra124/vic03_ucode.bin"
420 static const struct vic_config vic_t124_config = {
421 .firmware = NVIDIA_TEGRA_124_VIC_FIRMWARE,
423 .supports_sid = false,
426 #define NVIDIA_TEGRA_210_VIC_FIRMWARE "nvidia/tegra210/vic04_ucode.bin"
428 static const struct vic_config vic_t210_config = {
429 .firmware = NVIDIA_TEGRA_210_VIC_FIRMWARE,
431 .supports_sid = false,
434 #define NVIDIA_TEGRA_186_VIC_FIRMWARE "nvidia/tegra186/vic04_ucode.bin"
436 static const struct vic_config vic_t186_config = {
437 .firmware = NVIDIA_TEGRA_186_VIC_FIRMWARE,
439 .supports_sid = true,
442 #define NVIDIA_TEGRA_194_VIC_FIRMWARE "nvidia/tegra194/vic.bin"
444 static const struct vic_config vic_t194_config = {
445 .firmware = NVIDIA_TEGRA_194_VIC_FIRMWARE,
447 .supports_sid = true,
450 #define NVIDIA_TEGRA_234_VIC_FIRMWARE "nvidia/tegra234/vic.bin"
452 static const struct vic_config vic_t234_config = {
453 .firmware = NVIDIA_TEGRA_234_VIC_FIRMWARE,
455 .supports_sid = true,
458 static const struct of_device_id tegra_vic_of_match[] = {
459 { .compatible = "nvidia,tegra124-vic", .data = &vic_t124_config },
460 { .compatible = "nvidia,tegra210-vic", .data = &vic_t210_config },
461 { .compatible = "nvidia,tegra186-vic", .data = &vic_t186_config },
462 { .compatible = "nvidia,tegra194-vic", .data = &vic_t194_config },
463 { .compatible = "nvidia,tegra234-vic", .data = &vic_t234_config },
466 MODULE_DEVICE_TABLE(of, tegra_vic_of_match);
468 static int vic_probe(struct platform_device *pdev)
470 struct device *dev = &pdev->dev;
471 struct host1x_syncpt **syncpts;
475 /* inherit DMA mask from host1x parent */
476 err = dma_coerce_mask_and_coherent(dev, *dev->parent->dma_mask);
478 dev_err(&pdev->dev, "failed to set DMA mask: %d\n", err);
482 vic = devm_kzalloc(dev, sizeof(*vic), GFP_KERNEL);
486 vic->config = of_device_get_match_data(dev);
488 syncpts = devm_kzalloc(dev, sizeof(*syncpts), GFP_KERNEL);
492 vic->regs = devm_platform_ioremap_resource(pdev, 0);
493 if (IS_ERR(vic->regs))
494 return PTR_ERR(vic->regs);
496 vic->clk = devm_clk_get(dev, NULL);
497 if (IS_ERR(vic->clk)) {
498 dev_err(&pdev->dev, "failed to get clock\n");
499 return PTR_ERR(vic->clk);
502 err = clk_set_rate(vic->clk, ULONG_MAX);
504 dev_err(&pdev->dev, "failed to set clock rate\n");
508 if (!dev->pm_domain) {
509 vic->rst = devm_reset_control_get(dev, "vic");
510 if (IS_ERR(vic->rst)) {
511 dev_err(&pdev->dev, "failed to get reset\n");
512 return PTR_ERR(vic->rst);
516 vic->falcon.dev = dev;
517 vic->falcon.regs = vic->regs;
519 err = falcon_init(&vic->falcon);
523 platform_set_drvdata(pdev, vic);
525 INIT_LIST_HEAD(&vic->client.base.list);
526 vic->client.base.ops = &vic_client_ops;
527 vic->client.base.dev = dev;
528 vic->client.base.class = HOST1X_CLASS_VIC;
529 vic->client.base.syncpts = syncpts;
530 vic->client.base.num_syncpts = 1;
533 INIT_LIST_HEAD(&vic->client.list);
534 vic->client.version = vic->config->version;
535 vic->client.ops = &vic_ops;
537 err = host1x_client_register(&vic->client.base);
539 dev_err(dev, "failed to register host1x client: %d\n", err);
546 falcon_exit(&vic->falcon);
551 static int vic_remove(struct platform_device *pdev)
553 struct vic *vic = platform_get_drvdata(pdev);
556 err = host1x_client_unregister(&vic->client.base);
558 dev_err(&pdev->dev, "failed to unregister host1x client: %d\n",
563 falcon_exit(&vic->falcon);
568 static const struct dev_pm_ops vic_pm_ops = {
569 RUNTIME_PM_OPS(vic_runtime_suspend, vic_runtime_resume, NULL)
570 SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, pm_runtime_force_resume)
573 struct platform_driver tegra_vic_driver = {
576 .of_match_table = tegra_vic_of_match,
580 .remove = vic_remove,
583 #if IS_ENABLED(CONFIG_ARCH_TEGRA_124_SOC)
584 MODULE_FIRMWARE(NVIDIA_TEGRA_124_VIC_FIRMWARE);
586 #if IS_ENABLED(CONFIG_ARCH_TEGRA_210_SOC)
587 MODULE_FIRMWARE(NVIDIA_TEGRA_210_VIC_FIRMWARE);
589 #if IS_ENABLED(CONFIG_ARCH_TEGRA_186_SOC)
590 MODULE_FIRMWARE(NVIDIA_TEGRA_186_VIC_FIRMWARE);
592 #if IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC)
593 MODULE_FIRMWARE(NVIDIA_TEGRA_194_VIC_FIRMWARE);
595 #if IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC)
596 MODULE_FIRMWARE(NVIDIA_TEGRA_234_VIC_FIRMWARE);