4 * Copyright (c) 2010-2013, NVIDIA Corporation.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include <linux/module.h>
20 #include <linux/list.h>
21 #include <linux/slab.h>
23 #include <linux/of_device.h>
24 #include <linux/clk.h>
27 #define CREATE_TRACE_POINTS
28 #include <trace/events/host1x.h>
35 #include "hw/host1x01.h"
36 #include "hw/host1x02.h"
37 #include "hw/host1x04.h"
39 void host1x_sync_writel(struct host1x *host1x, u32 v, u32 r)
41 void __iomem *sync_regs = host1x->regs + host1x->info->sync_offset;
43 writel(v, sync_regs + r);
46 u32 host1x_sync_readl(struct host1x *host1x, u32 r)
48 void __iomem *sync_regs = host1x->regs + host1x->info->sync_offset;
50 return readl(sync_regs + r);
53 void host1x_ch_writel(struct host1x_channel *ch, u32 v, u32 r)
55 writel(v, ch->regs + r);
58 u32 host1x_ch_readl(struct host1x_channel *ch, u32 r)
60 return readl(ch->regs + r);
63 static const struct host1x_info host1x01_info = {
68 .init = host1x01_init,
69 .sync_offset = 0x3000,
72 static const struct host1x_info host1x02_info = {
77 .init = host1x02_init,
78 .sync_offset = 0x3000,
81 static const struct host1x_info host1x04_info = {
86 .init = host1x04_init,
87 .sync_offset = 0x2100,
90 static struct of_device_id host1x_of_match[] = {
91 { .compatible = "nvidia,tegra124-host1x", .data = &host1x04_info, },
92 { .compatible = "nvidia,tegra114-host1x", .data = &host1x02_info, },
93 { .compatible = "nvidia,tegra30-host1x", .data = &host1x01_info, },
94 { .compatible = "nvidia,tegra20-host1x", .data = &host1x01_info, },
97 MODULE_DEVICE_TABLE(of, host1x_of_match);
99 static int host1x_probe(struct platform_device *pdev)
101 const struct of_device_id *id;
103 struct resource *regs;
107 id = of_match_device(host1x_of_match, &pdev->dev);
111 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
113 dev_err(&pdev->dev, "failed to get registers\n");
117 syncpt_irq = platform_get_irq(pdev, 0);
118 if (syncpt_irq < 0) {
119 dev_err(&pdev->dev, "failed to get IRQ\n");
123 host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL);
127 mutex_init(&host->devices_lock);
128 INIT_LIST_HEAD(&host->devices);
129 INIT_LIST_HEAD(&host->list);
130 host->dev = &pdev->dev;
131 host->info = id->data;
133 /* set common host1x device data */
134 platform_set_drvdata(pdev, host);
136 host->regs = devm_ioremap_resource(&pdev->dev, regs);
137 if (IS_ERR(host->regs))
138 return PTR_ERR(host->regs);
140 if (host->info->init) {
141 err = host->info->init(host);
146 host->clk = devm_clk_get(&pdev->dev, NULL);
147 if (IS_ERR(host->clk)) {
148 dev_err(&pdev->dev, "failed to get clock\n");
149 err = PTR_ERR(host->clk);
153 err = host1x_channel_list_init(host);
155 dev_err(&pdev->dev, "failed to initialize channel list\n");
159 err = clk_prepare_enable(host->clk);
161 dev_err(&pdev->dev, "failed to enable clock\n");
165 err = host1x_syncpt_init(host);
167 dev_err(&pdev->dev, "failed to initialize syncpts\n");
168 goto fail_unprepare_disable;
171 err = host1x_intr_init(host, syncpt_irq);
173 dev_err(&pdev->dev, "failed to initialize interrupts\n");
174 goto fail_deinit_syncpt;
177 host1x_debug_init(host);
179 err = host1x_register(host);
181 goto fail_deinit_intr;
186 host1x_intr_deinit(host);
188 host1x_syncpt_deinit(host);
189 fail_unprepare_disable:
190 clk_disable_unprepare(host->clk);
194 static int host1x_remove(struct platform_device *pdev)
196 struct host1x *host = platform_get_drvdata(pdev);
198 host1x_unregister(host);
199 host1x_intr_deinit(host);
200 host1x_syncpt_deinit(host);
201 clk_disable_unprepare(host->clk);
206 static struct platform_driver tegra_host1x_driver = {
208 .name = "tegra-host1x",
209 .of_match_table = host1x_of_match,
211 .probe = host1x_probe,
212 .remove = host1x_remove,
215 static int __init tegra_host1x_init(void)
219 err = bus_register(&host1x_bus_type);
223 err = platform_driver_register(&tegra_host1x_driver);
227 err = platform_driver_register(&tegra_mipi_driver);
229 goto unregister_host1x;
234 platform_driver_unregister(&tegra_host1x_driver);
236 bus_unregister(&host1x_bus_type);
239 module_init(tegra_host1x_init);
241 static void __exit tegra_host1x_exit(void)
243 platform_driver_unregister(&tegra_mipi_driver);
244 platform_driver_unregister(&tegra_host1x_driver);
245 bus_unregister(&host1x_bus_type);
247 module_exit(tegra_host1x_exit);
251 MODULE_DESCRIPTION("Host1x driver for Tegra products");
252 MODULE_LICENSE("GPL");