1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
|
// SPDX-License-Identifier: GPL-2.0
/*
* Synopsys DesignWare MIPI CSI-2 Receiver Driver
*
* Copyright (C) 2019 Rockchip Electronics Co., Ltd.
* Copyright (C) 2025 Michael Riesch <michael.riesch@wolfvision.net>
* Copyright (C) 2026 Collabora, Ltd.
*/
#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/phy/phy.h>
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
#include <linux/property.h>
#include <linux/reset.h>
#include <media/mipi-csi2.h>
#include <media/v4l2-ctrls.h>
#include <media/v4l2-fwnode.h>
#include <media/v4l2-mc.h>
#include <media/v4l2-subdev.h>
#define DW_MIPI_CSI2RX_N_LANES 0x04
#define DW_MIPI_CSI2RX_RESETN 0x10
#define DW_MIPI_CSI2RX_PHY_STATE 0x14
#define DW_MIPI_CSI2RX_ERR1 0x20
#define DW_MIPI_CSI2RX_ERR2 0x24
#define DW_MIPI_CSI2RX_MSK1 0x28
#define DW_MIPI_CSI2RX_MSK2 0x2c
#define DW_MIPI_CSI2RX_CONTROL 0x40
#define SW_CPHY_EN(x) ((x) << 0)
#define SW_DSI_EN(x) ((x) << 4)
#define SW_DATATYPE_FS(x) ((x) << 8)
#define SW_DATATYPE_FE(x) ((x) << 14)
#define SW_DATATYPE_LS(x) ((x) << 20)
#define SW_DATATYPE_LE(x) ((x) << 26)
#define DW_MIPI_CSI2RX_CLKS_MAX 1
enum {
DW_MIPI_CSI2RX_PAD_SINK,
DW_MIPI_CSI2RX_PAD_SRC,
DW_MIPI_CSI2RX_PAD_MAX,
};
struct dw_mipi_csi2rx_format {
u32 code;
u8 depth;
u8 csi_dt;
};
struct dw_mipi_csi2rx_device {
struct device *dev;
void __iomem *base_addr;
struct clk_bulk_data *clks;
unsigned int clks_num;
struct phy *phy;
struct reset_control *reset;
const struct dw_mipi_csi2rx_format *formats;
unsigned int formats_num;
struct media_pad pads[DW_MIPI_CSI2RX_PAD_MAX];
struct v4l2_async_notifier notifier;
struct v4l2_subdev sd;
enum v4l2_mbus_type bus_type;
u32 lanes_num;
};
static const struct v4l2_mbus_framefmt default_format = {
.width = 3840,
.height = 2160,
.code = MEDIA_BUS_FMT_SRGGB10_1X10,
.field = V4L2_FIELD_NONE,
.colorspace = V4L2_COLORSPACE_RAW,
.ycbcr_enc = V4L2_YCBCR_ENC_601,
.quantization = V4L2_QUANTIZATION_FULL_RANGE,
.xfer_func = V4L2_XFER_FUNC_NONE,
};
static const struct dw_mipi_csi2rx_format formats[] = {
/* YUV formats */
{
.code = MEDIA_BUS_FMT_YUYV8_1X16,
.depth = 16,
.csi_dt = MIPI_CSI2_DT_YUV422_8B,
},
{
.code = MEDIA_BUS_FMT_UYVY8_1X16,
.depth = 16,
.csi_dt = MIPI_CSI2_DT_YUV422_8B,
},
{
.code = MEDIA_BUS_FMT_YVYU8_1X16,
.depth = 16,
.csi_dt = MIPI_CSI2_DT_YUV422_8B,
},
{
.code = MEDIA_BUS_FMT_VYUY8_1X16,
.depth = 16,
.csi_dt = MIPI_CSI2_DT_YUV422_8B,
},
/* RGB formats */
{
.code = MEDIA_BUS_FMT_RGB888_1X24,
.depth = 24,
.csi_dt = MIPI_CSI2_DT_RGB888,
},
{
.code = MEDIA_BUS_FMT_BGR888_1X24,
.depth = 24,
.csi_dt = MIPI_CSI2_DT_RGB888,
},
/* Bayer formats */
{
.code = MEDIA_BUS_FMT_SBGGR8_1X8,
.depth = 8,
.csi_dt = MIPI_CSI2_DT_RAW8,
},
{
.code = MEDIA_BUS_FMT_SGBRG8_1X8,
.depth = 8,
.csi_dt = MIPI_CSI2_DT_RAW8,
},
{
.code = MEDIA_BUS_FMT_SGRBG8_1X8,
.depth = 8,
.csi_dt = MIPI_CSI2_DT_RAW8,
},
{
.code = MEDIA_BUS_FMT_SRGGB8_1X8,
.depth = 8,
.csi_dt = MIPI_CSI2_DT_RAW8,
},
{
.code = MEDIA_BUS_FMT_SBGGR10_1X10,
.depth = 10,
.csi_dt = MIPI_CSI2_DT_RAW10,
},
{
.code = MEDIA_BUS_FMT_SGBRG10_1X10,
.depth = 10,
.csi_dt = MIPI_CSI2_DT_RAW10,
},
{
.code = MEDIA_BUS_FMT_SGRBG10_1X10,
.depth = 10,
.csi_dt = MIPI_CSI2_DT_RAW10,
},
{
.code = MEDIA_BUS_FMT_SRGGB10_1X10,
.depth = 10,
.csi_dt = MIPI_CSI2_DT_RAW10,
},
{
.code = MEDIA_BUS_FMT_SBGGR12_1X12,
.depth = 12,
.csi_dt = MIPI_CSI2_DT_RAW12,
},
{
.code = MEDIA_BUS_FMT_SGBRG12_1X12,
.depth = 12,
.csi_dt = MIPI_CSI2_DT_RAW12,
},
{
.code = MEDIA_BUS_FMT_SGRBG12_1X12,
.depth = 12,
.csi_dt = MIPI_CSI2_DT_RAW12,
},
{
.code = MEDIA_BUS_FMT_SRGGB12_1X12,
.depth = 12,
.csi_dt = MIPI_CSI2_DT_RAW12,
},
};
static inline struct dw_mipi_csi2rx_device *to_csi2(struct v4l2_subdev *sd)
{
return container_of(sd, struct dw_mipi_csi2rx_device, sd);
}
static inline void dw_mipi_csi2rx_write(struct dw_mipi_csi2rx_device *csi2,
unsigned int addr, u32 val)
{
writel(val, csi2->base_addr + addr);
}
static inline u32 dw_mipi_csi2rx_read(struct dw_mipi_csi2rx_device *csi2,
unsigned int addr)
{
return readl(csi2->base_addr + addr);
}
static const struct dw_mipi_csi2rx_format *
dw_mipi_csi2rx_find_format(struct dw_mipi_csi2rx_device *csi2, u32 mbus_code)
{
WARN_ON(csi2->formats_num == 0);
for (unsigned int i = 0; i < csi2->formats_num; i++) {
const struct dw_mipi_csi2rx_format *format = &csi2->formats[i];
if (format->code == mbus_code)
return format;
}
return NULL;
}
static int dw_mipi_csi2rx_start(struct dw_mipi_csi2rx_device *csi2)
{
struct media_pad *source_pad;
union phy_configure_opts opts;
u32 lanes = csi2->lanes_num;
u32 control = 0;
s64 link_freq;
int ret;
if (lanes < 1 || lanes > 4)
return -EINVAL;
source_pad = media_pad_remote_pad_unique(
&csi2->pads[DW_MIPI_CSI2RX_PAD_SINK]);
if (IS_ERR(source_pad))
return PTR_ERR(source_pad);
/* set mult and div to 0, thus completely rely on V4L2_CID_LINK_FREQ */
link_freq = v4l2_get_link_freq(source_pad, 0, 0);
if (link_freq < 0)
return link_freq;
switch (csi2->bus_type) {
case V4L2_MBUS_CSI2_DPHY:
ret = phy_mipi_dphy_get_default_config_for_hsclk(link_freq * 2,
lanes, &opts.mipi_dphy);
if (ret)
return ret;
ret = phy_set_mode(csi2->phy, PHY_MODE_MIPI_DPHY);
if (ret)
return ret;
ret = phy_configure(csi2->phy, &opts);
if (ret)
return ret;
control |= SW_CPHY_EN(0);
break;
case V4L2_MBUS_CSI2_CPHY:
/* TODO: implement CPHY configuration */
return -EOPNOTSUPP;
default:
return -EINVAL;
}
control |= SW_DATATYPE_FS(0x00) | SW_DATATYPE_FE(0x01) |
SW_DATATYPE_LS(0x02) | SW_DATATYPE_LE(0x03);
dw_mipi_csi2rx_write(csi2, DW_MIPI_CSI2RX_N_LANES, lanes - 1);
dw_mipi_csi2rx_write(csi2, DW_MIPI_CSI2RX_CONTROL, control);
dw_mipi_csi2rx_write(csi2, DW_MIPI_CSI2RX_RESETN, 1);
return phy_power_on(csi2->phy);
}
static void dw_mipi_csi2rx_stop(struct dw_mipi_csi2rx_device *csi2)
{
phy_power_off(csi2->phy);
dw_mipi_csi2rx_write(csi2, DW_MIPI_CSI2RX_RESETN, 0);
dw_mipi_csi2rx_write(csi2, DW_MIPI_CSI2RX_MSK1, ~0);
dw_mipi_csi2rx_write(csi2, DW_MIPI_CSI2RX_MSK2, ~0);
}
static const struct media_entity_operations dw_mipi_csi2rx_media_ops = {
.link_validate = v4l2_subdev_link_validate,
};
static int
dw_mipi_csi2rx_enum_mbus_code(struct v4l2_subdev *sd,
struct v4l2_subdev_state *sd_state,
struct v4l2_subdev_mbus_code_enum *code)
{
struct dw_mipi_csi2rx_device *csi2 = to_csi2(sd);
switch (code->pad) {
case DW_MIPI_CSI2RX_PAD_SRC:
if (code->index)
return -EINVAL;
code->code =
v4l2_subdev_state_get_format(sd_state,
DW_MIPI_CSI2RX_PAD_SINK)->code;
return 0;
case DW_MIPI_CSI2RX_PAD_SINK:
if (code->index > csi2->formats_num)
return -EINVAL;
code->code = csi2->formats[code->index].code;
return 0;
default:
return -EINVAL;
}
}
static int dw_mipi_csi2rx_set_fmt(struct v4l2_subdev *sd,
struct v4l2_subdev_state *state,
struct v4l2_subdev_format *format)
{
struct dw_mipi_csi2rx_device *csi2 = to_csi2(sd);
const struct dw_mipi_csi2rx_format *fmt;
struct v4l2_mbus_framefmt *sink, *src;
/* the format on the source pad always matches the sink pad */
if (format->pad == DW_MIPI_CSI2RX_PAD_SRC)
return v4l2_subdev_get_fmt(sd, state, format);
sink = v4l2_subdev_state_get_format(state, format->pad, format->stream);
if (!sink)
return -EINVAL;
fmt = dw_mipi_csi2rx_find_format(csi2, format->format.code);
if (!fmt)
format->format = default_format;
*sink = format->format;
/* propagate the format to the source pad */
src = v4l2_subdev_state_get_opposite_stream_format(state, format->pad,
format->stream);
if (!src)
return -EINVAL;
*src = *sink;
return 0;
}
static int dw_mipi_csi2rx_set_routing(struct v4l2_subdev *sd,
struct v4l2_subdev_state *state,
enum v4l2_subdev_format_whence which,
struct v4l2_subdev_krouting *routing)
{
int ret;
ret = v4l2_subdev_routing_validate(sd, routing,
V4L2_SUBDEV_ROUTING_ONLY_1_TO_1);
if (ret)
return ret;
return v4l2_subdev_set_routing_with_fmt(sd, state, routing,
&default_format);
}
static int dw_mipi_csi2rx_enable_streams(struct v4l2_subdev *sd,
struct v4l2_subdev_state *state,
u32 pad, u64 streams_mask)
{
struct dw_mipi_csi2rx_device *csi2 = to_csi2(sd);
struct v4l2_subdev *remote_sd;
struct media_pad *sink_pad, *remote_pad;
struct device *dev = csi2->dev;
u64 mask;
int ret;
sink_pad = &sd->entity.pads[DW_MIPI_CSI2RX_PAD_SINK];
remote_pad = media_pad_remote_pad_first(sink_pad);
remote_sd = media_entity_to_v4l2_subdev(remote_pad->entity);
mask = v4l2_subdev_state_xlate_streams(state, DW_MIPI_CSI2RX_PAD_SINK,
DW_MIPI_CSI2RX_PAD_SRC,
&streams_mask);
ret = pm_runtime_resume_and_get(dev);
if (ret)
goto err;
ret = dw_mipi_csi2rx_start(csi2);
if (ret) {
dev_err(dev, "failed to enable CSI hardware\n");
goto err_pm_runtime_put;
}
ret = v4l2_subdev_enable_streams(remote_sd, remote_pad->index, mask);
if (ret)
goto err_csi_stop;
return 0;
err_csi_stop:
dw_mipi_csi2rx_stop(csi2);
err_pm_runtime_put:
pm_runtime_put(dev);
err:
return ret;
}
static int dw_mipi_csi2rx_disable_streams(struct v4l2_subdev *sd,
struct v4l2_subdev_state *state,
u32 pad, u64 streams_mask)
{
struct dw_mipi_csi2rx_device *csi2 = to_csi2(sd);
struct v4l2_subdev *remote_sd;
struct media_pad *sink_pad, *remote_pad;
struct device *dev = csi2->dev;
u64 mask;
int ret;
sink_pad = &sd->entity.pads[DW_MIPI_CSI2RX_PAD_SINK];
remote_pad = media_pad_remote_pad_first(sink_pad);
remote_sd = media_entity_to_v4l2_subdev(remote_pad->entity);
mask = v4l2_subdev_state_xlate_streams(state, DW_MIPI_CSI2RX_PAD_SINK,
DW_MIPI_CSI2RX_PAD_SRC,
&streams_mask);
ret = v4l2_subdev_disable_streams(remote_sd, remote_pad->index, mask);
dw_mipi_csi2rx_stop(csi2);
pm_runtime_put(dev);
return ret;
}
static const struct v4l2_subdev_pad_ops dw_mipi_csi2rx_pad_ops = {
.enum_mbus_code = dw_mipi_csi2rx_enum_mbus_code,
.get_fmt = v4l2_subdev_get_fmt,
.set_fmt = dw_mipi_csi2rx_set_fmt,
.set_routing = dw_mipi_csi2rx_set_routing,
.enable_streams = dw_mipi_csi2rx_enable_streams,
.disable_streams = dw_mipi_csi2rx_disable_streams,
};
static const struct v4l2_subdev_ops dw_mipi_csi2rx_ops = {
.pad = &dw_mipi_csi2rx_pad_ops,
};
static int dw_mipi_csi2rx_init_state(struct v4l2_subdev *sd,
struct v4l2_subdev_state *state)
{
struct v4l2_subdev_route routes[] = {
{
.sink_pad = DW_MIPI_CSI2RX_PAD_SINK,
.sink_stream = 0,
.source_pad = DW_MIPI_CSI2RX_PAD_SRC,
.source_stream = 0,
.flags = V4L2_SUBDEV_ROUTE_FL_ACTIVE,
},
};
struct v4l2_subdev_krouting routing = {
.len_routes = ARRAY_SIZE(routes),
.num_routes = ARRAY_SIZE(routes),
.routes = routes,
};
return v4l2_subdev_set_routing_with_fmt(sd, state, &routing,
&default_format);
}
static const struct v4l2_subdev_internal_ops dw_mipi_csi2rx_internal_ops = {
.init_state = dw_mipi_csi2rx_init_state,
};
static int dw_mipi_csi2rx_notifier_bound(struct v4l2_async_notifier *notifier,
struct v4l2_subdev *sd,
struct v4l2_async_connection *asd)
{
struct dw_mipi_csi2rx_device *csi2 =
container_of(notifier, struct dw_mipi_csi2rx_device, notifier);
struct media_pad *sink_pad = &csi2->pads[DW_MIPI_CSI2RX_PAD_SINK];
int ret;
ret = v4l2_create_fwnode_links_to_pad(sd, sink_pad,
MEDIA_LNK_FL_ENABLED);
if (ret) {
dev_err(csi2->dev, "failed to link source pad of %s\n",
sd->name);
return ret;
}
return 0;
}
static const struct v4l2_async_notifier_operations dw_mipi_csi2rx_notifier_ops = {
.bound = dw_mipi_csi2rx_notifier_bound,
};
static int dw_mipi_csi2rx_register_notifier(struct dw_mipi_csi2rx_device *csi2)
{
struct v4l2_async_connection *asd;
struct v4l2_async_notifier *ntf = &csi2->notifier;
struct v4l2_fwnode_endpoint vep;
struct v4l2_subdev *sd = &csi2->sd;
struct device *dev = csi2->dev;
int ret;
struct fwnode_handle *ep __free(fwnode_handle) =
fwnode_graph_get_endpoint_by_id(dev_fwnode(dev), 0, 0, 0);
if (!ep)
return dev_err_probe(dev, -ENODEV, "failed to get endpoint\n");
vep.bus_type = V4L2_MBUS_UNKNOWN;
ret = v4l2_fwnode_endpoint_parse(ep, &vep);
if (ret)
return dev_err_probe(dev, ret, "failed to parse endpoint\n");
if (vep.bus_type != V4L2_MBUS_CSI2_DPHY &&
vep.bus_type != V4L2_MBUS_CSI2_CPHY)
return dev_err_probe(dev, -EINVAL,
"invalid bus type of endpoint\n");
csi2->bus_type = vep.bus_type;
csi2->lanes_num = vep.bus.mipi_csi2.num_data_lanes;
v4l2_async_subdev_nf_init(ntf, sd);
ntf->ops = &dw_mipi_csi2rx_notifier_ops;
asd = v4l2_async_nf_add_fwnode_remote(ntf, ep,
struct v4l2_async_connection);
if (IS_ERR(asd)) {
ret = PTR_ERR(asd);
goto err_nf_cleanup;
}
ret = v4l2_async_nf_register(ntf);
if (ret) {
ret = dev_err_probe(dev, ret, "failed to register notifier\n");
goto err_nf_cleanup;
}
return 0;
err_nf_cleanup:
v4l2_async_nf_cleanup(ntf);
return ret;
}
static int dw_mipi_csi2rx_register(struct dw_mipi_csi2rx_device *csi2)
{
struct media_pad *pads = csi2->pads;
struct v4l2_subdev *sd = &csi2->sd;
int ret;
ret = dw_mipi_csi2rx_register_notifier(csi2);
if (ret)
goto err;
v4l2_subdev_init(sd, &dw_mipi_csi2rx_ops);
sd->dev = csi2->dev;
sd->entity.ops = &dw_mipi_csi2rx_media_ops;
sd->entity.function = MEDIA_ENT_F_VID_IF_BRIDGE;
sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE | V4L2_SUBDEV_FL_STREAMS;
sd->internal_ops = &dw_mipi_csi2rx_internal_ops;
snprintf(sd->name, sizeof(sd->name), "dw-mipi-csi2rx %s",
dev_name(csi2->dev));
pads[DW_MIPI_CSI2RX_PAD_SINK].flags = MEDIA_PAD_FL_SINK |
MEDIA_PAD_FL_MUST_CONNECT;
pads[DW_MIPI_CSI2RX_PAD_SRC].flags = MEDIA_PAD_FL_SOURCE;
ret = media_entity_pads_init(&sd->entity, DW_MIPI_CSI2RX_PAD_MAX, pads);
if (ret)
goto err_notifier_unregister;
ret = v4l2_subdev_init_finalize(sd);
if (ret)
goto err_entity_cleanup;
ret = v4l2_async_register_subdev(sd);
if (ret) {
dev_err(sd->dev, "failed to register CSI-2 subdev\n");
goto err_subdev_cleanup;
}
return 0;
err_subdev_cleanup:
v4l2_subdev_cleanup(sd);
err_entity_cleanup:
media_entity_cleanup(&sd->entity);
err_notifier_unregister:
v4l2_async_nf_unregister(&csi2->notifier);
v4l2_async_nf_cleanup(&csi2->notifier);
err:
return ret;
}
static void dw_mipi_csi2rx_unregister(struct dw_mipi_csi2rx_device *csi2)
{
struct v4l2_subdev *sd = &csi2->sd;
v4l2_async_unregister_subdev(sd);
v4l2_subdev_cleanup(sd);
media_entity_cleanup(&sd->entity);
v4l2_async_nf_unregister(&csi2->notifier);
v4l2_async_nf_cleanup(&csi2->notifier);
}
static const struct of_device_id dw_mipi_csi2rx_of_match[] = {
{
.compatible = "rockchip,rk3568-mipi-csi2",
},
{}
};
MODULE_DEVICE_TABLE(of, dw_mipi_csi2rx_of_match);
static int dw_mipi_csi2rx_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
struct dw_mipi_csi2rx_device *csi2;
int ret;
csi2 = devm_kzalloc(dev, sizeof(*csi2), GFP_KERNEL);
if (!csi2)
return -ENOMEM;
csi2->dev = dev;
dev_set_drvdata(dev, csi2);
csi2->base_addr = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(csi2->base_addr))
return PTR_ERR(csi2->base_addr);
ret = devm_clk_bulk_get_all(dev, &csi2->clks);
if (ret != DW_MIPI_CSI2RX_CLKS_MAX)
return dev_err_probe(dev, -ENODEV, "failed to get clocks\n");
csi2->clks_num = ret;
csi2->phy = devm_phy_get(dev, NULL);
if (IS_ERR(csi2->phy))
return dev_err_probe(dev, PTR_ERR(csi2->phy),
"failed to get MIPI CSI-2 PHY\n");
csi2->reset = devm_reset_control_get_exclusive(dev, NULL);
if (IS_ERR(csi2->reset))
return dev_err_probe(dev, PTR_ERR(csi2->reset),
"failed to get reset\n");
csi2->formats = formats;
csi2->formats_num = ARRAY_SIZE(formats);
ret = devm_pm_runtime_enable(dev);
if (ret)
return dev_err_probe(dev, ret, "failed to enable pm runtime\n");
ret = phy_init(csi2->phy);
if (ret)
return dev_err_probe(dev, ret,
"failed to initialize MIPI CSI-2 PHY\n");
ret = dw_mipi_csi2rx_register(csi2);
if (ret)
goto err_phy_exit;
return 0;
err_phy_exit:
phy_exit(csi2->phy);
return ret;
}
static void dw_mipi_csi2rx_remove(struct platform_device *pdev)
{
struct dw_mipi_csi2rx_device *csi2 = platform_get_drvdata(pdev);
dw_mipi_csi2rx_unregister(csi2);
phy_exit(csi2->phy);
}
static int dw_mipi_csi2rx_runtime_suspend(struct device *dev)
{
struct dw_mipi_csi2rx_device *csi2 = dev_get_drvdata(dev);
clk_bulk_disable_unprepare(csi2->clks_num, csi2->clks);
return 0;
}
static int dw_mipi_csi2rx_runtime_resume(struct device *dev)
{
struct dw_mipi_csi2rx_device *csi2 = dev_get_drvdata(dev);
int ret;
reset_control_assert(csi2->reset);
udelay(5);
reset_control_deassert(csi2->reset);
ret = clk_bulk_prepare_enable(csi2->clks_num, csi2->clks);
if (ret) {
dev_err(dev, "failed to enable clocks\n");
return ret;
}
return 0;
}
static DEFINE_RUNTIME_DEV_PM_OPS(dw_mipi_csi2rx_pm_ops,
dw_mipi_csi2rx_runtime_suspend,
dw_mipi_csi2rx_runtime_resume, NULL);
static struct platform_driver dw_mipi_csi2rx_drv = {
.driver = {
.name = "dw-mipi-csi2rx",
.of_match_table = dw_mipi_csi2rx_of_match,
.pm = pm_ptr(&dw_mipi_csi2rx_pm_ops),
},
.probe = dw_mipi_csi2rx_probe,
.remove = dw_mipi_csi2rx_remove,
};
module_platform_driver(dw_mipi_csi2rx_drv);
MODULE_DESCRIPTION("Synopsys DesignWare MIPI CSI-2 Receiver platform driver");
MODULE_LICENSE("GPL");
|