blob: 0989b8151b4cd9775d84a30748a6a8fdfa6e7601 [file] [log] [blame]
Thierry Reding4de6a2d2013-09-02 09:48:53 +02001/*
2 * Copyright (C) 2013 NVIDIA Corporation
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
23#include <linux/clk.h>
24#include <linux/delay.h>
Thierry Redingaef03d32013-11-08 13:28:34 +010025#include <linux/host1x.h>
Thierry Reding4de6a2d2013-09-02 09:48:53 +020026#include <linux/io.h>
27#include <linux/of_platform.h>
28#include <linux/platform_device.h>
29#include <linux/slab.h>
30
Thierry Redingaef03d32013-11-08 13:28:34 +010031#include "dev.h"
32
Thierry Reding4de6a2d2013-09-02 09:48:53 +020033#define MIPI_CAL_CTRL 0x00
Thierry Reding83a3c222015-04-08 17:03:49 +020034#define MIPI_CAL_CTRL_NOISE_FILTER(x) (((x) & 0xf) << 26)
35#define MIPI_CAL_CTRL_PRESCALE(x) (((x) & 0x3) << 24)
36#define MIPI_CAL_CTRL_CLKEN_OVR (1 << 4)
Thierry Reding4de6a2d2013-09-02 09:48:53 +020037#define MIPI_CAL_CTRL_START (1 << 0)
38
39#define MIPI_CAL_AUTOCAL_CTRL 0x01
40
41#define MIPI_CAL_STATUS 0x02
42#define MIPI_CAL_STATUS_DONE (1 << 16)
43#define MIPI_CAL_STATUS_ACTIVE (1 << 0)
44
45#define MIPI_CAL_CONFIG_CSIA 0x05
46#define MIPI_CAL_CONFIG_CSIB 0x06
47#define MIPI_CAL_CONFIG_CSIC 0x07
48#define MIPI_CAL_CONFIG_CSID 0x08
49#define MIPI_CAL_CONFIG_CSIE 0x09
Thierry Reding5e775242015-04-08 17:23:20 +020050#define MIPI_CAL_CONFIG_CSIF 0x0a
Thierry Reding4de6a2d2013-09-02 09:48:53 +020051#define MIPI_CAL_CONFIG_DSIA 0x0e
52#define MIPI_CAL_CONFIG_DSIB 0x0f
53#define MIPI_CAL_CONFIG_DSIC 0x10
54#define MIPI_CAL_CONFIG_DSID 0x11
55
Thierry Reding8ed5c062015-04-08 17:06:08 +020056#define MIPI_CAL_CONFIG_DSIA_CLK 0x19
57#define MIPI_CAL_CONFIG_DSIB_CLK 0x1a
Sean Paul08a15cc2014-09-10 10:52:04 -040058#define MIPI_CAL_CONFIG_CSIAB_CLK 0x1b
Thierry Reding5e775242015-04-08 17:23:20 +020059#define MIPI_CAL_CONFIG_DSIC_CLK 0x1c
Sean Paul08a15cc2014-09-10 10:52:04 -040060#define MIPI_CAL_CONFIG_CSICD_CLK 0x1c
Thierry Reding5e775242015-04-08 17:23:20 +020061#define MIPI_CAL_CONFIG_DSID_CLK 0x1d
Sean Paul08a15cc2014-09-10 10:52:04 -040062#define MIPI_CAL_CONFIG_CSIE_CLK 0x1d
63
64/* for data and clock lanes */
Thierry Reding4de6a2d2013-09-02 09:48:53 +020065#define MIPI_CAL_CONFIG_SELECT (1 << 21)
Sean Paul08a15cc2014-09-10 10:52:04 -040066
67/* for data lanes */
Thierry Reding4de6a2d2013-09-02 09:48:53 +020068#define MIPI_CAL_CONFIG_HSPDOS(x) (((x) & 0x1f) << 16)
69#define MIPI_CAL_CONFIG_HSPUOS(x) (((x) & 0x1f) << 8)
70#define MIPI_CAL_CONFIG_TERMOS(x) (((x) & 0x1f) << 0)
71
Sean Paul08a15cc2014-09-10 10:52:04 -040072/* for clock lanes */
73#define MIPI_CAL_CONFIG_HSCLKPDOSD(x) (((x) & 0x1f) << 8)
74#define MIPI_CAL_CONFIG_HSCLKPUOSD(x) (((x) & 0x1f) << 0)
75
Thierry Reding4de6a2d2013-09-02 09:48:53 +020076#define MIPI_CAL_BIAS_PAD_CFG0 0x16
77#define MIPI_CAL_BIAS_PAD_PDVCLAMP (1 << 1)
78#define MIPI_CAL_BIAS_PAD_E_VCLAMP_REF (1 << 0)
79
80#define MIPI_CAL_BIAS_PAD_CFG1 0x17
Sean Paulb298e982014-09-10 10:52:05 -040081#define MIPI_CAL_BIAS_PAD_DRV_DN_REF(x) (((x) & 0x7) << 16)
Thierry Reding83a3c222015-04-08 17:03:49 +020082#define MIPI_CAL_BIAS_PAD_DRV_UP_REF(x) (((x) & 0x7) << 8)
Thierry Reding4de6a2d2013-09-02 09:48:53 +020083
84#define MIPI_CAL_BIAS_PAD_CFG2 0x18
Thierry Reding83a3c222015-04-08 17:03:49 +020085#define MIPI_CAL_BIAS_PAD_VCLAMP(x) (((x) & 0x7) << 16)
86#define MIPI_CAL_BIAS_PAD_VAUXP(x) (((x) & 0x7) << 4)
Thierry Reding4de6a2d2013-09-02 09:48:53 +020087#define MIPI_CAL_BIAS_PAD_PDVREG (1 << 1)
88
Sean Paul08a15cc2014-09-10 10:52:04 -040089struct tegra_mipi_pad {
90 unsigned long data;
91 unsigned long clk;
92};
93
94struct tegra_mipi_soc {
95 bool has_clk_lane;
96 const struct tegra_mipi_pad *pads;
97 unsigned int num_pads;
Thierry Reding83a3c222015-04-08 17:03:49 +020098
99 bool clock_enable_override;
100 bool needs_vclamp_ref;
101
102 /* bias pad configuration settings */
103 u8 pad_drive_down_ref;
104 u8 pad_drive_up_ref;
105
106 u8 pad_vclamp_level;
107 u8 pad_vauxp_level;
108
109 /* calibration settings for data lanes */
110 u8 hspdos;
111 u8 hspuos;
112 u8 termos;
113
114 /* calibration settings for clock lanes */
115 u8 hsclkpdos;
116 u8 hsclkpuos;
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200117};
118
119struct tegra_mipi {
Sean Paul08a15cc2014-09-10 10:52:04 -0400120 const struct tegra_mipi_soc *soc;
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200121 void __iomem *regs;
122 struct mutex lock;
123 struct clk *clk;
124};
125
126struct tegra_mipi_device {
127 struct platform_device *pdev;
128 struct tegra_mipi *mipi;
129 struct device *device;
130 unsigned long pads;
131};
132
Thierry Reding57b17ae2014-10-02 14:33:31 +0200133static inline u32 tegra_mipi_readl(struct tegra_mipi *mipi,
134 unsigned long offset)
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200135{
Thierry Reding57b17ae2014-10-02 14:33:31 +0200136 return readl(mipi->regs + (offset << 2));
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200137}
138
Thierry Reding57b17ae2014-10-02 14:33:31 +0200139static inline void tegra_mipi_writel(struct tegra_mipi *mipi, u32 value,
140 unsigned long offset)
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200141{
Thierry Reding57b17ae2014-10-02 14:33:31 +0200142 writel(value, mipi->regs + (offset << 2));
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200143}
144
145struct tegra_mipi_device *tegra_mipi_request(struct device *device)
146{
147 struct device_node *np = device->of_node;
148 struct tegra_mipi_device *dev;
149 struct of_phandle_args args;
150 int err;
151
152 err = of_parse_phandle_with_args(np, "nvidia,mipi-calibrate",
153 "#nvidia,mipi-calibrate-cells", 0,
154 &args);
155 if (err < 0)
156 return ERR_PTR(err);
157
158 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
159 if (!dev) {
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200160 err = -ENOMEM;
161 goto out;
162 }
163
164 dev->pdev = of_find_device_by_node(args.np);
165 if (!dev->pdev) {
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200166 err = -ENODEV;
167 goto free;
168 }
169
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200170 dev->mipi = platform_get_drvdata(dev->pdev);
171 if (!dev->mipi) {
172 err = -EPROBE_DEFER;
Sean Paul08a15cc2014-09-10 10:52:04 -0400173 goto put;
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200174 }
175
Sean Paul08a15cc2014-09-10 10:52:04 -0400176 of_node_put(args.np);
177
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200178 dev->pads = args.args[0];
179 dev->device = device;
180
181 return dev;
182
Sean Paul08a15cc2014-09-10 10:52:04 -0400183put:
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200184 platform_device_put(dev->pdev);
185free:
186 kfree(dev);
187out:
Sean Paul08a15cc2014-09-10 10:52:04 -0400188 of_node_put(args.np);
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200189 return ERR_PTR(err);
190}
191EXPORT_SYMBOL(tegra_mipi_request);
192
193void tegra_mipi_free(struct tegra_mipi_device *device)
194{
195 platform_device_put(device->pdev);
196 kfree(device);
197}
198EXPORT_SYMBOL(tegra_mipi_free);
199
200static int tegra_mipi_wait(struct tegra_mipi *mipi)
201{
202 unsigned long timeout = jiffies + msecs_to_jiffies(250);
Thierry Reding57b17ae2014-10-02 14:33:31 +0200203 u32 value;
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200204
205 while (time_before(jiffies, timeout)) {
206 value = tegra_mipi_readl(mipi, MIPI_CAL_STATUS);
207 if ((value & MIPI_CAL_STATUS_ACTIVE) == 0 &&
208 (value & MIPI_CAL_STATUS_DONE) != 0)
209 return 0;
210
211 usleep_range(10, 50);
212 }
213
214 return -ETIMEDOUT;
215}
216
217int tegra_mipi_calibrate(struct tegra_mipi_device *device)
218{
Sean Paul08a15cc2014-09-10 10:52:04 -0400219 const struct tegra_mipi_soc *soc = device->mipi->soc;
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200220 unsigned int i;
Thierry Reding57b17ae2014-10-02 14:33:31 +0200221 u32 value;
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200222 int err;
223
224 err = clk_enable(device->mipi->clk);
225 if (err < 0)
226 return err;
227
228 mutex_lock(&device->mipi->lock);
229
230 value = tegra_mipi_readl(device->mipi, MIPI_CAL_BIAS_PAD_CFG0);
231 value &= ~MIPI_CAL_BIAS_PAD_PDVCLAMP;
Thierry Reding83a3c222015-04-08 17:03:49 +0200232
233 if (soc->needs_vclamp_ref)
234 value |= MIPI_CAL_BIAS_PAD_E_VCLAMP_REF;
235
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200236 tegra_mipi_writel(device->mipi, value, MIPI_CAL_BIAS_PAD_CFG0);
237
Thierry Reding83a3c222015-04-08 17:03:49 +0200238 value = MIPI_CAL_BIAS_PAD_DRV_DN_REF(soc->pad_drive_down_ref) |
239 MIPI_CAL_BIAS_PAD_DRV_UP_REF(soc->pad_drive_up_ref);
240 tegra_mipi_writel(device->mipi, value, MIPI_CAL_BIAS_PAD_CFG1);
Sean Paulb298e982014-09-10 10:52:05 -0400241
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200242 value = tegra_mipi_readl(device->mipi, MIPI_CAL_BIAS_PAD_CFG2);
243 value &= ~MIPI_CAL_BIAS_PAD_PDVREG;
244 tegra_mipi_writel(device->mipi, value, MIPI_CAL_BIAS_PAD_CFG2);
245
Thierry Reding83a3c222015-04-08 17:03:49 +0200246 value = tegra_mipi_readl(device->mipi, MIPI_CAL_BIAS_PAD_CFG2);
247 value &= ~MIPI_CAL_BIAS_PAD_VCLAMP(0x7);
248 value &= ~MIPI_CAL_BIAS_PAD_VAUXP(0x7);
249 value |= MIPI_CAL_BIAS_PAD_VCLAMP(soc->pad_vclamp_level);
250 value |= MIPI_CAL_BIAS_PAD_VAUXP(soc->pad_vauxp_level);
251 tegra_mipi_writel(device->mipi, value, MIPI_CAL_BIAS_PAD_CFG2);
252
Sean Paul08a15cc2014-09-10 10:52:04 -0400253 for (i = 0; i < soc->num_pads; i++) {
254 u32 clk = 0, data = 0;
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200255
Sean Paul08a15cc2014-09-10 10:52:04 -0400256 if (device->pads & BIT(i)) {
257 data = MIPI_CAL_CONFIG_SELECT |
Thierry Reding83a3c222015-04-08 17:03:49 +0200258 MIPI_CAL_CONFIG_HSPDOS(soc->hspdos) |
259 MIPI_CAL_CONFIG_HSPUOS(soc->hspuos) |
260 MIPI_CAL_CONFIG_TERMOS(soc->termos);
Sean Paul08a15cc2014-09-10 10:52:04 -0400261 clk = MIPI_CAL_CONFIG_SELECT |
Thierry Reding83a3c222015-04-08 17:03:49 +0200262 MIPI_CAL_CONFIG_HSCLKPDOSD(soc->hsclkpdos) |
263 MIPI_CAL_CONFIG_HSCLKPUOSD(soc->hsclkpuos);
Sean Paul08a15cc2014-09-10 10:52:04 -0400264 }
265
266 tegra_mipi_writel(device->mipi, data, soc->pads[i].data);
267
Thierry Reding5e775242015-04-08 17:23:20 +0200268 if (soc->has_clk_lane && soc->pads[i].clk != 0)
Sean Paul08a15cc2014-09-10 10:52:04 -0400269 tegra_mipi_writel(device->mipi, clk, soc->pads[i].clk);
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200270 }
271
Sean Paul26f7a922014-09-10 10:52:03 -0400272 value = tegra_mipi_readl(device->mipi, MIPI_CAL_CTRL);
Thierry Reding83a3c222015-04-08 17:03:49 +0200273 value &= ~MIPI_CAL_CTRL_NOISE_FILTER(0xf);
274 value &= ~MIPI_CAL_CTRL_PRESCALE(0x3);
275 value |= MIPI_CAL_CTRL_NOISE_FILTER(0xa);
276 value |= MIPI_CAL_CTRL_PRESCALE(0x2);
277
278 if (!soc->clock_enable_override)
279 value &= ~MIPI_CAL_CTRL_CLKEN_OVR;
280 else
281 value |= MIPI_CAL_CTRL_CLKEN_OVR;
282
283 tegra_mipi_writel(device->mipi, value, MIPI_CAL_CTRL);
284
Thierry Reding2ed264b2015-04-08 17:17:44 +0200285 /* clear any pending status bits */
286 value = tegra_mipi_readl(device->mipi, MIPI_CAL_STATUS);
287 tegra_mipi_writel(device->mipi, value, MIPI_CAL_STATUS);
288
Thierry Reding83a3c222015-04-08 17:03:49 +0200289 value = tegra_mipi_readl(device->mipi, MIPI_CAL_CTRL);
Sean Paul26f7a922014-09-10 10:52:03 -0400290 value |= MIPI_CAL_CTRL_START;
291 tegra_mipi_writel(device->mipi, value, MIPI_CAL_CTRL);
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200292
293 err = tegra_mipi_wait(device->mipi);
294
295 mutex_unlock(&device->mipi->lock);
296 clk_disable(device->mipi->clk);
297
298 return err;
299}
300EXPORT_SYMBOL(tegra_mipi_calibrate);
301
Sean Paul08a15cc2014-09-10 10:52:04 -0400302static const struct tegra_mipi_pad tegra114_mipi_pads[] = {
303 { .data = MIPI_CAL_CONFIG_CSIA },
304 { .data = MIPI_CAL_CONFIG_CSIB },
305 { .data = MIPI_CAL_CONFIG_CSIC },
306 { .data = MIPI_CAL_CONFIG_CSID },
307 { .data = MIPI_CAL_CONFIG_CSIE },
308 { .data = MIPI_CAL_CONFIG_DSIA },
309 { .data = MIPI_CAL_CONFIG_DSIB },
310 { .data = MIPI_CAL_CONFIG_DSIC },
311 { .data = MIPI_CAL_CONFIG_DSID },
312};
313
314static const struct tegra_mipi_soc tegra114_mipi_soc = {
315 .has_clk_lane = false,
316 .pads = tegra114_mipi_pads,
317 .num_pads = ARRAY_SIZE(tegra114_mipi_pads),
Thierry Reding83a3c222015-04-08 17:03:49 +0200318 .clock_enable_override = true,
319 .needs_vclamp_ref = true,
320 .pad_drive_down_ref = 0x2,
321 .pad_drive_up_ref = 0x0,
322 .pad_vclamp_level = 0x0,
323 .pad_vauxp_level = 0x0,
324 .hspdos = 0x0,
325 .hspuos = 0x4,
326 .termos = 0x5,
327 .hsclkpdos = 0x0,
328 .hsclkpuos = 0x4,
Sean Paul08a15cc2014-09-10 10:52:04 -0400329};
330
331static const struct tegra_mipi_pad tegra124_mipi_pads[] = {
332 { .data = MIPI_CAL_CONFIG_CSIA, .clk = MIPI_CAL_CONFIG_CSIAB_CLK },
333 { .data = MIPI_CAL_CONFIG_CSIB, .clk = MIPI_CAL_CONFIG_CSIAB_CLK },
334 { .data = MIPI_CAL_CONFIG_CSIC, .clk = MIPI_CAL_CONFIG_CSICD_CLK },
335 { .data = MIPI_CAL_CONFIG_CSID, .clk = MIPI_CAL_CONFIG_CSICD_CLK },
Thierry Reding8ed5c062015-04-08 17:06:08 +0200336 { .data = MIPI_CAL_CONFIG_CSIE, .clk = MIPI_CAL_CONFIG_CSIE_CLK },
337 { .data = MIPI_CAL_CONFIG_DSIA, .clk = MIPI_CAL_CONFIG_DSIA_CLK },
338 { .data = MIPI_CAL_CONFIG_DSIB, .clk = MIPI_CAL_CONFIG_DSIB_CLK },
Sean Paul08a15cc2014-09-10 10:52:04 -0400339};
340
341static const struct tegra_mipi_soc tegra124_mipi_soc = {
342 .has_clk_lane = true,
343 .pads = tegra124_mipi_pads,
344 .num_pads = ARRAY_SIZE(tegra124_mipi_pads),
Thierry Reding83a3c222015-04-08 17:03:49 +0200345 .clock_enable_override = true,
346 .needs_vclamp_ref = true,
347 .pad_drive_down_ref = 0x2,
348 .pad_drive_up_ref = 0x0,
349 .pad_vclamp_level = 0x0,
350 .pad_vauxp_level = 0x0,
351 .hspdos = 0x0,
352 .hspuos = 0x0,
353 .termos = 0x0,
354 .hsclkpdos = 0x1,
355 .hsclkpuos = 0x2,
Sean Paul08a15cc2014-09-10 10:52:04 -0400356};
357
Thierry Reding7fd3eca2015-04-08 17:20:32 +0200358static const struct tegra_mipi_soc tegra132_mipi_soc = {
359 .has_clk_lane = true,
360 .pads = tegra124_mipi_pads,
361 .num_pads = ARRAY_SIZE(tegra124_mipi_pads),
362 .clock_enable_override = false,
363 .needs_vclamp_ref = false,
364 .pad_drive_down_ref = 0x0,
365 .pad_drive_up_ref = 0x3,
366 .pad_vclamp_level = 0x0,
367 .pad_vauxp_level = 0x0,
368 .hspdos = 0x0,
369 .hspuos = 0x0,
370 .termos = 0x0,
371 .hsclkpdos = 0x3,
372 .hsclkpuos = 0x2,
373};
374
Thierry Reding5e775242015-04-08 17:23:20 +0200375static const struct tegra_mipi_pad tegra210_mipi_pads[] = {
376 { .data = MIPI_CAL_CONFIG_CSIA, .clk = 0 },
377 { .data = MIPI_CAL_CONFIG_CSIB, .clk = 0 },
378 { .data = MIPI_CAL_CONFIG_CSIC, .clk = 0 },
379 { .data = MIPI_CAL_CONFIG_CSID, .clk = 0 },
380 { .data = MIPI_CAL_CONFIG_CSIE, .clk = 0 },
381 { .data = MIPI_CAL_CONFIG_CSIF, .clk = 0 },
382 { .data = MIPI_CAL_CONFIG_DSIA, .clk = MIPI_CAL_CONFIG_DSIA_CLK },
383 { .data = MIPI_CAL_CONFIG_DSIB, .clk = MIPI_CAL_CONFIG_DSIB_CLK },
384 { .data = MIPI_CAL_CONFIG_DSIC, .clk = MIPI_CAL_CONFIG_DSIC_CLK },
385 { .data = MIPI_CAL_CONFIG_DSID, .clk = MIPI_CAL_CONFIG_DSID_CLK },
386};
387
388static const struct tegra_mipi_soc tegra210_mipi_soc = {
389 .has_clk_lane = true,
390 .pads = tegra210_mipi_pads,
391 .num_pads = ARRAY_SIZE(tegra210_mipi_pads),
392 .clock_enable_override = true,
393 .needs_vclamp_ref = false,
394 .pad_drive_down_ref = 0x0,
395 .pad_drive_up_ref = 0x3,
396 .pad_vclamp_level = 0x1,
397 .pad_vauxp_level = 0x1,
398 .hspdos = 0x0,
399 .hspuos = 0x2,
400 .termos = 0x0,
401 .hsclkpdos = 0x0,
402 .hsclkpuos = 0x2,
403};
404
Thierry Redingc22fb792015-04-08 17:19:19 +0200405static const struct of_device_id tegra_mipi_of_match[] = {
Sean Paul08a15cc2014-09-10 10:52:04 -0400406 { .compatible = "nvidia,tegra114-mipi", .data = &tegra114_mipi_soc },
407 { .compatible = "nvidia,tegra124-mipi", .data = &tegra124_mipi_soc },
Thierry Reding7fd3eca2015-04-08 17:20:32 +0200408 { .compatible = "nvidia,tegra132-mipi", .data = &tegra132_mipi_soc },
Thierry Reding5e775242015-04-08 17:23:20 +0200409 { .compatible = "nvidia,tegra210-mipi", .data = &tegra210_mipi_soc },
Sean Paul08a15cc2014-09-10 10:52:04 -0400410 { },
411};
412
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200413static int tegra_mipi_probe(struct platform_device *pdev)
414{
Sean Paul08a15cc2014-09-10 10:52:04 -0400415 const struct of_device_id *match;
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200416 struct tegra_mipi *mipi;
417 struct resource *res;
418 int err;
419
Sean Paul08a15cc2014-09-10 10:52:04 -0400420 match = of_match_node(tegra_mipi_of_match, pdev->dev.of_node);
421 if (!match)
422 return -ENODEV;
423
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200424 mipi = devm_kzalloc(&pdev->dev, sizeof(*mipi), GFP_KERNEL);
425 if (!mipi)
426 return -ENOMEM;
427
Sean Paul08a15cc2014-09-10 10:52:04 -0400428 mipi->soc = match->data;
429
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200430 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
431 mipi->regs = devm_ioremap_resource(&pdev->dev, res);
432 if (IS_ERR(mipi->regs))
433 return PTR_ERR(mipi->regs);
434
435 mutex_init(&mipi->lock);
436
437 mipi->clk = devm_clk_get(&pdev->dev, NULL);
438 if (IS_ERR(mipi->clk)) {
439 dev_err(&pdev->dev, "failed to get clock\n");
440 return PTR_ERR(mipi->clk);
441 }
442
443 err = clk_prepare(mipi->clk);
444 if (err < 0)
445 return err;
446
447 platform_set_drvdata(pdev, mipi);
448
449 return 0;
450}
451
452static int tegra_mipi_remove(struct platform_device *pdev)
453{
454 struct tegra_mipi *mipi = platform_get_drvdata(pdev);
455
456 clk_unprepare(mipi->clk);
457
458 return 0;
459}
460
Thierry Reding4de6a2d2013-09-02 09:48:53 +0200461struct platform_driver tegra_mipi_driver = {
462 .driver = {
463 .name = "tegra-mipi",
464 .of_match_table = tegra_mipi_of_match,
465 },
466 .probe = tegra_mipi_probe,
467 .remove = tegra_mipi_remove,
468};