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
27 #include "hw/host1x01.h"
28 #include "hw/host1x02.h"
29 #include "hw/host1x04.h"
30 #include "hw/host1x05.h"
31 #include "hw/host1x06.h"
32 #include "hw/host1x07.h"
34 void host1x_hypervisor_writel(struct host1x *host1x, u32 v, u32 r)
36 writel(v, host1x->hv_regs + r);
39 u32 host1x_hypervisor_readl(struct host1x *host1x, u32 r)
41 return readl(host1x->hv_regs + r);
44 void host1x_sync_writel(struct host1x *host1x, u32 v, u32 r)
46 void __iomem *sync_regs = host1x->regs + host1x->info->sync_offset;
48 writel(v, sync_regs + r);
51 u32 host1x_sync_readl(struct host1x *host1x, u32 r)
53 void __iomem *sync_regs = host1x->regs + host1x->info->sync_offset;
55 return readl(sync_regs + r);
58 void host1x_ch_writel(struct host1x_channel *ch, u32 v, u32 r)
60 writel(v, ch->regs + r);
63 u32 host1x_ch_readl(struct host1x_channel *ch, u32 r)
65 return readl(ch->regs + r);
68 static const struct host1x_info host1x01_info = {
73 .init = host1x01_init,
74 .sync_offset = 0x3000,
75 .dma_mask = DMA_BIT_MASK(32),
76 .has_wide_gather = false,
77 .has_hypervisor = false,
80 .reserve_vblank_syncpts = true,
83 static const struct host1x_info host1x02_info = {
88 .init = host1x02_init,
89 .sync_offset = 0x3000,
90 .dma_mask = DMA_BIT_MASK(32),
91 .has_wide_gather = false,
92 .has_hypervisor = false,
95 .reserve_vblank_syncpts = true,
98 static const struct host1x_info host1x04_info = {
103 .init = host1x04_init,
104 .sync_offset = 0x2100,
105 .dma_mask = DMA_BIT_MASK(34),
106 .has_wide_gather = false,
107 .has_hypervisor = false,
108 .num_sid_entries = 0,
110 .reserve_vblank_syncpts = false,
113 static const struct host1x_info host1x05_info = {
118 .init = host1x05_init,
119 .sync_offset = 0x2100,
120 .dma_mask = DMA_BIT_MASK(34),
121 .has_wide_gather = false,
122 .has_hypervisor = false,
123 .num_sid_entries = 0,
125 .reserve_vblank_syncpts = false,
128 static const struct host1x_sid_entry tegra186_sid_table[] = {
137 static const struct host1x_info host1x06_info = {
142 .init = host1x06_init,
144 .dma_mask = DMA_BIT_MASK(40),
145 .has_wide_gather = true,
146 .has_hypervisor = true,
147 .num_sid_entries = ARRAY_SIZE(tegra186_sid_table),
148 .sid_table = tegra186_sid_table,
149 .reserve_vblank_syncpts = false,
152 static const struct host1x_sid_entry tegra194_sid_table[] = {
161 static const struct host1x_info host1x07_info = {
166 .init = host1x07_init,
168 .dma_mask = DMA_BIT_MASK(40),
169 .has_wide_gather = true,
170 .has_hypervisor = true,
171 .num_sid_entries = ARRAY_SIZE(tegra194_sid_table),
172 .sid_table = tegra194_sid_table,
173 .reserve_vblank_syncpts = false,
176 static const struct of_device_id host1x_of_match[] = {
177 { .compatible = "nvidia,tegra194-host1x", .data = &host1x07_info, },
178 { .compatible = "nvidia,tegra186-host1x", .data = &host1x06_info, },
179 { .compatible = "nvidia,tegra210-host1x", .data = &host1x05_info, },
180 { .compatible = "nvidia,tegra124-host1x", .data = &host1x04_info, },
181 { .compatible = "nvidia,tegra114-host1x", .data = &host1x02_info, },
182 { .compatible = "nvidia,tegra30-host1x", .data = &host1x01_info, },
183 { .compatible = "nvidia,tegra20-host1x", .data = &host1x01_info, },
186 MODULE_DEVICE_TABLE(of, host1x_of_match);
188 static void host1x_setup_sid_table(struct host1x *host)
190 const struct host1x_info *info = host->info;
193 for (i = 0; i < info->num_sid_entries; i++) {
194 const struct host1x_sid_entry *entry = &info->sid_table[i];
196 host1x_hypervisor_writel(host, entry->offset, entry->base);
197 host1x_hypervisor_writel(host, entry->limit, entry->base + 4);
201 static bool host1x_wants_iommu(struct host1x *host1x)
204 * If we support addressing a maximum of 32 bits of physical memory
205 * and if the host1x firewall is enabled, there's no need to enable
206 * IOMMU support. This can happen for example on Tegra20, Tegra30
209 * Tegra124 and later can address up to 34 bits of physical memory and
210 * many platforms come equipped with more than 2 GiB of system memory,
211 * which requires crossing the 4 GiB boundary. But there's a catch: on
212 * SoCs before Tegra186 (i.e. Tegra124 and Tegra210), the host1x can
213 * only address up to 32 bits of memory in GATHER opcodes, which means
214 * that command buffers need to either be in the first 2 GiB of system
215 * memory (which could quickly lead to memory exhaustion), or command
216 * buffers need to be treated differently from other buffers (which is
217 * not possible with the current ABI).
219 * A third option is to use the IOMMU in these cases to make sure all
220 * buffers will be mapped into a 32-bit IOVA space that host1x can
221 * address. This allows all of the system memory to be used and works
222 * within the limitations of the host1x on these SoCs.
224 * In summary, default to enable IOMMU on Tegra124 and later. For any
225 * of the earlier SoCs, only use the IOMMU for additional safety when
226 * the host1x firewall is disabled.
228 if (host1x->info->dma_mask <= DMA_BIT_MASK(32)) {
229 if (IS_ENABLED(CONFIG_TEGRA_HOST1X_FIREWALL))
236 static struct iommu_domain *host1x_iommu_attach(struct host1x *host)
238 struct iommu_domain *domain = iommu_get_domain_for_dev(host->dev);
242 * We may not always want to enable IOMMU support (for example if the
243 * host1x firewall is already enabled and we don't support addressing
244 * more than 32 bits of physical memory), so check for that first.
246 * Similarly, if host1x is already attached to an IOMMU (via the DMA
247 * API), don't try to attach again.
249 if (!host1x_wants_iommu(host) || domain)
252 host->group = iommu_group_get(host->dev);
254 struct iommu_domain_geometry *geometry;
255 dma_addr_t start, end;
258 err = iova_cache_get();
262 host->domain = iommu_domain_alloc(&platform_bus_type);
268 err = iommu_attach_group(host->domain, host->group);
276 geometry = &host->domain->geometry;
277 start = geometry->aperture_start & host->info->dma_mask;
278 end = geometry->aperture_end & host->info->dma_mask;
280 order = __ffs(host->domain->pgsize_bitmap);
281 init_iova_domain(&host->iova, 1UL << order, start >> order);
282 host->iova_end = end;
284 domain = host->domain;
290 iommu_domain_free(host->domain);
295 iommu_group_put(host->group);
301 static int host1x_iommu_init(struct host1x *host)
303 u64 mask = host->info->dma_mask;
304 struct iommu_domain *domain;
307 domain = host1x_iommu_attach(host);
308 if (IS_ERR(domain)) {
309 err = PTR_ERR(domain);
310 dev_err(host->dev, "failed to attach to IOMMU: %d\n", err);
315 * If we're not behind an IOMMU make sure we don't get push buffers
316 * that are allocated outside of the range addressable by the GATHER
319 * Newer generations of Tegra (Tegra186 and later) support a wide
320 * variant of the GATHER opcode that allows addressing more bits.
322 if (!domain && !host->info->has_wide_gather)
323 mask = DMA_BIT_MASK(32);
325 err = dma_coerce_mask_and_coherent(host->dev, mask);
327 dev_err(host->dev, "failed to set DMA mask: %d\n", err);
334 static void host1x_iommu_exit(struct host1x *host)
337 put_iova_domain(&host->iova);
338 iommu_detach_group(host->domain, host->group);
340 iommu_domain_free(host->domain);
345 iommu_group_put(host->group);
350 static int host1x_probe(struct platform_device *pdev)
353 struct resource *regs, *hv_regs = NULL;
357 host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL);
361 host->info = of_device_get_match_data(&pdev->dev);
363 if (host->info->has_hypervisor) {
364 regs = platform_get_resource_byname(pdev, IORESOURCE_MEM, "vm");
366 dev_err(&pdev->dev, "failed to get vm registers\n");
370 hv_regs = platform_get_resource_byname(pdev, IORESOURCE_MEM,
374 "failed to get hypervisor registers\n");
378 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
380 dev_err(&pdev->dev, "failed to get registers\n");
385 syncpt_irq = platform_get_irq(pdev, 0);
389 mutex_init(&host->devices_lock);
390 INIT_LIST_HEAD(&host->devices);
391 INIT_LIST_HEAD(&host->list);
392 host->dev = &pdev->dev;
394 /* set common host1x device data */
395 platform_set_drvdata(pdev, host);
397 host->regs = devm_ioremap_resource(&pdev->dev, regs);
398 if (IS_ERR(host->regs))
399 return PTR_ERR(host->regs);
401 if (host->info->has_hypervisor) {
402 host->hv_regs = devm_ioremap_resource(&pdev->dev, hv_regs);
403 if (IS_ERR(host->hv_regs))
404 return PTR_ERR(host->hv_regs);
407 host->dev->dma_parms = &host->dma_parms;
408 dma_set_max_seg_size(host->dev, UINT_MAX);
410 if (host->info->init) {
411 err = host->info->init(host);
416 host->clk = devm_clk_get(&pdev->dev, NULL);
417 if (IS_ERR(host->clk)) {
418 err = PTR_ERR(host->clk);
420 if (err != -EPROBE_DEFER)
421 dev_err(&pdev->dev, "failed to get clock: %d\n", err);
426 host->rst = devm_reset_control_get(&pdev->dev, "host1x");
427 if (IS_ERR(host->rst)) {
428 err = PTR_ERR(host->rst);
429 dev_err(&pdev->dev, "failed to get reset: %d\n", err);
433 err = host1x_iommu_init(host);
435 dev_err(&pdev->dev, "failed to setup IOMMU: %d\n", err);
439 err = host1x_channel_list_init(&host->channel_list,
440 host->info->nb_channels);
442 dev_err(&pdev->dev, "failed to initialize channel list\n");
446 err = clk_prepare_enable(host->clk);
448 dev_err(&pdev->dev, "failed to enable clock\n");
452 err = reset_control_deassert(host->rst);
454 dev_err(&pdev->dev, "failed to deassert reset: %d\n", err);
455 goto unprepare_disable;
458 err = host1x_syncpt_init(host);
460 dev_err(&pdev->dev, "failed to initialize syncpts\n");
464 err = host1x_intr_init(host, syncpt_irq);
466 dev_err(&pdev->dev, "failed to initialize interrupts\n");
470 host1x_debug_init(host);
472 if (host->info->has_hypervisor)
473 host1x_setup_sid_table(host);
475 err = host1x_register(host);
479 err = devm_of_platform_populate(&pdev->dev);
486 host1x_unregister(host);
488 host1x_debug_deinit(host);
489 host1x_intr_deinit(host);
491 host1x_syncpt_deinit(host);
493 reset_control_assert(host->rst);
495 clk_disable_unprepare(host->clk);
497 host1x_channel_list_free(&host->channel_list);
499 host1x_iommu_exit(host);
504 static int host1x_remove(struct platform_device *pdev)
506 struct host1x *host = platform_get_drvdata(pdev);
508 host1x_unregister(host);
509 host1x_debug_deinit(host);
510 host1x_intr_deinit(host);
511 host1x_syncpt_deinit(host);
512 reset_control_assert(host->rst);
513 clk_disable_unprepare(host->clk);
514 host1x_iommu_exit(host);
519 static struct platform_driver tegra_host1x_driver = {
521 .name = "tegra-host1x",
522 .of_match_table = host1x_of_match,
524 .probe = host1x_probe,
525 .remove = host1x_remove,
528 static struct platform_driver * const drivers[] = {
529 &tegra_host1x_driver,
533 static int __init tegra_host1x_init(void)
537 err = bus_register(&host1x_bus_type);
541 err = platform_register_drivers(drivers, ARRAY_SIZE(drivers));
543 bus_unregister(&host1x_bus_type);
547 module_init(tegra_host1x_init);
549 static void __exit tegra_host1x_exit(void)
551 platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
552 bus_unregister(&host1x_bus_type);
554 module_exit(tegra_host1x_exit);
557 * host1x_get_dma_mask() - query the supported DMA mask for host1x
558 * @host1x: host1x instance
560 * Note that this returns the supported DMA mask for host1x, which can be
561 * different from the applicable DMA mask under certain circumstances.
563 u64 host1x_get_dma_mask(struct host1x *host1x)
565 return host1x->info->dma_mask;
567 EXPORT_SYMBOL(host1x_get_dma_mask);
571 MODULE_DESCRIPTION("Host1x driver for Tegra products");
572 MODULE_LICENSE("GPL");