1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (c) 2010-2013, NVIDIA Corporation.
9 #include <linux/dma-mapping.h>
11 #include <linux/list.h>
12 #include <linux/module.h>
13 #include <linux/of_device.h>
15 #include <linux/slab.h>
17 #define CREATE_TRACE_POINTS
18 #include <trace/events/host1x.h>
19 #undef CREATE_TRACE_POINTS
21 #if IS_ENABLED(CONFIG_ARM_DMA_USE_IOMMU)
22 #include <asm/dma-iommu.h>
31 #include "hw/host1x01.h"
32 #include "hw/host1x02.h"
33 #include "hw/host1x04.h"
34 #include "hw/host1x05.h"
35 #include "hw/host1x06.h"
36 #include "hw/host1x07.h"
38 void host1x_hypervisor_writel(struct host1x *host1x, u32 v, u32 r)
40 writel(v, host1x->hv_regs + r);
43 u32 host1x_hypervisor_readl(struct host1x *host1x, u32 r)
45 return readl(host1x->hv_regs + r);
48 void host1x_sync_writel(struct host1x *host1x, u32 v, u32 r)
50 void __iomem *sync_regs = host1x->regs + host1x->info->sync_offset;
52 writel(v, sync_regs + r);
55 u32 host1x_sync_readl(struct host1x *host1x, u32 r)
57 void __iomem *sync_regs = host1x->regs + host1x->info->sync_offset;
59 return readl(sync_regs + r);
62 void host1x_ch_writel(struct host1x_channel *ch, u32 v, u32 r)
64 writel(v, ch->regs + r);
67 u32 host1x_ch_readl(struct host1x_channel *ch, u32 r)
69 return readl(ch->regs + r);
72 static const struct host1x_info host1x01_info = {
77 .init = host1x01_init,
78 .sync_offset = 0x3000,
79 .dma_mask = DMA_BIT_MASK(32),
82 static const struct host1x_info host1x02_info = {
87 .init = host1x02_init,
88 .sync_offset = 0x3000,
89 .dma_mask = DMA_BIT_MASK(32),
92 static const struct host1x_info host1x04_info = {
97 .init = host1x04_init,
98 .sync_offset = 0x2100,
99 .dma_mask = DMA_BIT_MASK(34),
102 static const struct host1x_info host1x05_info = {
107 .init = host1x05_init,
108 .sync_offset = 0x2100,
109 .dma_mask = DMA_BIT_MASK(34),
112 static const struct host1x_sid_entry tegra186_sid_table[] = {
121 static const struct host1x_info host1x06_info = {
126 .init = host1x06_init,
128 .dma_mask = DMA_BIT_MASK(40),
129 .has_hypervisor = true,
130 .num_sid_entries = ARRAY_SIZE(tegra186_sid_table),
131 .sid_table = tegra186_sid_table,
134 static const struct host1x_sid_entry tegra194_sid_table[] = {
143 static const struct host1x_info host1x07_info = {
148 .init = host1x07_init,
150 .dma_mask = DMA_BIT_MASK(40),
151 .has_hypervisor = true,
152 .num_sid_entries = ARRAY_SIZE(tegra194_sid_table),
153 .sid_table = tegra194_sid_table,
156 static const struct of_device_id host1x_of_match[] = {
157 { .compatible = "nvidia,tegra194-host1x", .data = &host1x07_info, },
158 { .compatible = "nvidia,tegra186-host1x", .data = &host1x06_info, },
159 { .compatible = "nvidia,tegra210-host1x", .data = &host1x05_info, },
160 { .compatible = "nvidia,tegra124-host1x", .data = &host1x04_info, },
161 { .compatible = "nvidia,tegra114-host1x", .data = &host1x02_info, },
162 { .compatible = "nvidia,tegra30-host1x", .data = &host1x01_info, },
163 { .compatible = "nvidia,tegra20-host1x", .data = &host1x01_info, },
166 MODULE_DEVICE_TABLE(of, host1x_of_match);
168 static void host1x_setup_sid_table(struct host1x *host)
170 const struct host1x_info *info = host->info;
173 for (i = 0; i < info->num_sid_entries; i++) {
174 const struct host1x_sid_entry *entry = &info->sid_table[i];
176 host1x_hypervisor_writel(host, entry->offset, entry->base);
177 host1x_hypervisor_writel(host, entry->limit, entry->base + 4);
181 static int host1x_probe(struct platform_device *pdev)
184 struct resource *regs, *hv_regs = NULL;
188 host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL);
192 host->info = of_device_get_match_data(&pdev->dev);
194 if (host->info->has_hypervisor) {
195 regs = platform_get_resource_byname(pdev, IORESOURCE_MEM, "vm");
197 dev_err(&pdev->dev, "failed to get vm registers\n");
201 hv_regs = platform_get_resource_byname(pdev, IORESOURCE_MEM,
205 "failed to get hypervisor registers\n");
209 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
211 dev_err(&pdev->dev, "failed to get registers\n");
216 syncpt_irq = platform_get_irq(pdev, 0);
217 if (syncpt_irq < 0) {
218 dev_err(&pdev->dev, "failed to get IRQ: %d\n", syncpt_irq);
222 mutex_init(&host->devices_lock);
223 INIT_LIST_HEAD(&host->devices);
224 INIT_LIST_HEAD(&host->list);
225 host->dev = &pdev->dev;
227 /* set common host1x device data */
228 platform_set_drvdata(pdev, host);
230 host->regs = devm_ioremap_resource(&pdev->dev, regs);
231 if (IS_ERR(host->regs))
232 return PTR_ERR(host->regs);
234 if (host->info->has_hypervisor) {
235 host->hv_regs = devm_ioremap_resource(&pdev->dev, hv_regs);
236 if (IS_ERR(host->hv_regs))
237 return PTR_ERR(host->hv_regs);
240 dma_set_mask_and_coherent(host->dev, host->info->dma_mask);
242 if (host->info->init) {
243 err = host->info->init(host);
248 host->clk = devm_clk_get(&pdev->dev, NULL);
249 if (IS_ERR(host->clk)) {
250 err = PTR_ERR(host->clk);
252 if (err != -EPROBE_DEFER)
253 dev_err(&pdev->dev, "failed to get clock: %d\n", err);
258 host->rst = devm_reset_control_get(&pdev->dev, "host1x");
259 if (IS_ERR(host->rst)) {
260 err = PTR_ERR(host->rst);
261 dev_err(&pdev->dev, "failed to get reset: %d\n", err);
264 #if IS_ENABLED(CONFIG_ARM_DMA_USE_IOMMU)
265 if (host->dev->archdata.mapping) {
266 struct dma_iommu_mapping *mapping =
267 to_dma_iommu_mapping(host->dev);
268 arm_iommu_detach_device(host->dev);
269 arm_iommu_release_mapping(mapping);
272 if (IS_ENABLED(CONFIG_TEGRA_HOST1X_FIREWALL))
275 host->group = iommu_group_get(&pdev->dev);
277 struct iommu_domain_geometry *geometry;
278 u64 mask = dma_get_mask(host->dev);
279 dma_addr_t start, end;
282 err = iova_cache_get();
286 host->domain = iommu_domain_alloc(&platform_bus_type);
292 err = iommu_attach_group(host->domain, host->group);
294 if (err == -ENODEV) {
295 iommu_domain_free(host->domain);
298 iommu_group_put(host->group);
303 goto fail_free_domain;
306 geometry = &host->domain->geometry;
307 start = geometry->aperture_start & mask;
308 end = geometry->aperture_end & mask;
310 order = __ffs(host->domain->pgsize_bitmap);
311 init_iova_domain(&host->iova, 1UL << order, start >> order);
312 host->iova_end = end;
316 err = host1x_channel_list_init(&host->channel_list,
317 host->info->nb_channels);
319 dev_err(&pdev->dev, "failed to initialize channel list\n");
320 goto fail_detach_device;
323 err = clk_prepare_enable(host->clk);
325 dev_err(&pdev->dev, "failed to enable clock\n");
326 goto fail_free_channels;
329 err = reset_control_deassert(host->rst);
331 dev_err(&pdev->dev, "failed to deassert reset: %d\n", err);
332 goto fail_unprepare_disable;
335 err = host1x_syncpt_init(host);
337 dev_err(&pdev->dev, "failed to initialize syncpts\n");
338 goto fail_reset_assert;
341 err = host1x_intr_init(host, syncpt_irq);
343 dev_err(&pdev->dev, "failed to initialize interrupts\n");
344 goto fail_deinit_syncpt;
347 host1x_debug_init(host);
349 if (host->info->has_hypervisor)
350 host1x_setup_sid_table(host);
352 err = host1x_register(host);
354 goto fail_deinit_intr;
359 host1x_intr_deinit(host);
361 host1x_syncpt_deinit(host);
363 reset_control_assert(host->rst);
364 fail_unprepare_disable:
365 clk_disable_unprepare(host->clk);
367 host1x_channel_list_free(&host->channel_list);
369 if (host->group && host->domain) {
370 put_iova_domain(&host->iova);
371 iommu_detach_group(host->domain, host->group);
375 iommu_domain_free(host->domain);
380 iommu_group_put(host->group);
385 static int host1x_remove(struct platform_device *pdev)
387 struct host1x *host = platform_get_drvdata(pdev);
389 host1x_unregister(host);
390 host1x_intr_deinit(host);
391 host1x_syncpt_deinit(host);
392 reset_control_assert(host->rst);
393 clk_disable_unprepare(host->clk);
396 put_iova_domain(&host->iova);
397 iommu_detach_group(host->domain, host->group);
398 iommu_domain_free(host->domain);
400 iommu_group_put(host->group);
406 static struct platform_driver tegra_host1x_driver = {
408 .name = "tegra-host1x",
409 .of_match_table = host1x_of_match,
411 .probe = host1x_probe,
412 .remove = host1x_remove,
415 static struct platform_driver * const drivers[] = {
416 &tegra_host1x_driver,
420 static int __init tegra_host1x_init(void)
424 err = bus_register(&host1x_bus_type);
428 err = platform_register_drivers(drivers, ARRAY_SIZE(drivers));
430 bus_unregister(&host1x_bus_type);
434 module_init(tegra_host1x_init);
436 static void __exit tegra_host1x_exit(void)
438 platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
439 bus_unregister(&host1x_bus_type);
441 module_exit(tegra_host1x_exit);
445 MODULE_DESCRIPTION("Host1x driver for Tegra products");
446 MODULE_LICENSE("GPL");