hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
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
// SPDX-License-Identifier: GPL-2.0
/*
 * Maxim Quad GMSL2/GMSL1 to CSI-2 Serializer driver
 *
 * Copyright (C) 2023 Rockchip Electronics Co., Ltd.
 *
 * Author: Cai Wenzhong <cwz@rock-chips.com>
 *
 */
#include <linux/delay.h>
#include <linux/module.h>
#include <linux/i2c.h>
#include <linux/of_platform.h>
#include <linux/platform_device.h>
 
#include "maxim4c_api.h"
 
#define MAX96717_I2C_ADDR_DEF        0x40
 
#define MAX96717_CHIP_ID        0xBF
#define MAX96717_REG_CHIP_ID        0x0D
 
static int max96717_i2c_addr_remap(maxim4c_remote_t *max96717)
{
   struct device *dev = max96717->dev;
   struct i2c_client *client = max96717->client;
   u16 i2c_8bit_addr = 0;
   int ret = 0;
 
   if (max96717->ser_i2c_addr_map) {
       dev_info(dev, "Serializer i2c address remap\n");
 
       maxim4c_remote_i2c_addr_select(max96717, MAXIM4C_I2C_SER_DEF);
 
       i2c_8bit_addr = (max96717->ser_i2c_addr_map << 1);
       ret = maxim4c_i2c_write_byte(client,
               0x0000, MAXIM4C_I2C_REG_ADDR_16BITS,
               i2c_8bit_addr);
       if (ret) {
           dev_err(dev, "ser i2c address map setting error!\n");
           return ret;
       }
 
       maxim4c_remote_i2c_addr_select(max96717, MAXIM4C_I2C_SER_MAP);
   }
 
   if (max96717->cam_i2c_addr_map) {
       dev_info(dev, "Camera i2c address remap\n");
 
       i2c_8bit_addr = (max96717->cam_i2c_addr_map << 1);
       ret = maxim4c_i2c_write_byte(client,
               0x0042, MAXIM4C_I2C_REG_ADDR_16BITS,
               i2c_8bit_addr);
       if (ret) {
           dev_err(dev, "cam i2c address source setting error!\n");
           return ret;
       }
 
       i2c_8bit_addr = (max96717->cam_i2c_addr_def << 1);
       ret = maxim4c_i2c_write_byte(client,
               0x0043, MAXIM4C_I2C_REG_ADDR_16BITS,
               i2c_8bit_addr);
       if (ret) {
           dev_err(dev, "cam i2c address destination setting error!\n");
           return ret;
       }
   }
 
   return 0;
}
 
static int max96717_i2c_addr_def(maxim4c_remote_t *max96717)
{
   struct device *dev = max96717->dev;
   struct i2c_client *client = max96717->client;
   u16 i2c_8bit_addr = 0;
   int ret = 0;
 
   if (max96717->ser_i2c_addr_map) {
       dev_info(dev, "Serializer i2c address def\n");
 
       maxim4c_remote_i2c_addr_select(max96717, MAXIM4C_I2C_SER_MAP);
 
       i2c_8bit_addr = (max96717->ser_i2c_addr_def << 1);
       ret = maxim4c_i2c_write_byte(client,
               0x0000, MAXIM4C_I2C_REG_ADDR_16BITS,
               i2c_8bit_addr);
       if (ret) {
           dev_err(dev, "ser i2c address def setting error!\n");
           return ret;
       }
 
       maxim4c_remote_i2c_addr_select(max96717, MAXIM4C_I2C_SER_DEF);
   }
 
   return 0;
}
 
static int max96717_check_chipid(maxim4c_remote_t *max96717)
{
   struct device *dev = max96717->dev;
   struct i2c_client *client = max96717->client;
   u8 chip_id;
   int ret = 0;
 
   // max96717
   ret = maxim4c_i2c_read_byte(client,
           MAX96717_REG_CHIP_ID, MAXIM4C_I2C_REG_ADDR_16BITS,
           &chip_id);
   if (ret != 0) {
       dev_info(dev, "Retry check chipid using map address\n");
       maxim4c_remote_i2c_addr_select(max96717, MAXIM4C_I2C_SER_MAP);
       ret = maxim4c_i2c_read_byte(client,
               MAX96717_REG_CHIP_ID, MAXIM4C_I2C_REG_ADDR_16BITS,
               &chip_id);
       if (ret != 0) {
           dev_err(dev, "MAX96717 detect error, ret(%d)\n", ret);
           maxim4c_remote_i2c_addr_select(max96717, MAXIM4C_I2C_SER_DEF);
 
           return -ENODEV;
       }
 
       max96717_i2c_addr_def(max96717);
   }
 
   if (chip_id != MAX96717_CHIP_ID) {
       dev_err(dev, "Unexpected chip id = %02x\n", chip_id);
       return -ENODEV;
   }
   dev_info(dev, "Detected MAX96717 chip id: 0x%02x\n", chip_id);
 
   return 0;
}
 
static int max96717_module_init(maxim4c_remote_t *max96717)
{
   struct device *dev = max96717->dev;
   struct i2c_client *client = max96717->client;
   int ret = 0;
 
   ret = maxim4c_remote_i2c_addr_select(max96717, MAXIM4C_I2C_SER_DEF);
   if (ret)
       return ret;
 
   ret = max96717_check_chipid(max96717);
   if (ret)
       return ret;
 
   ret = max96717_i2c_addr_remap(max96717);
   if (ret)
       return ret;
 
   ret = maxim4c_i2c_run_init_seq(client,
           &max96717->remote_init_seq);
   if (ret) {
       dev_err(dev, "remote id = %d init sequence error\n",
               max96717->remote_id);
       return ret;
   }
 
   return 0;
}
 
static int max96717_module_deinit(maxim4c_remote_t *max96717)
{
   int ret = 0;
 
   ret |= max96717_i2c_addr_def(max96717);
 
   return ret;
}
 
static const struct maxim4c_remote_ops max96717_ops = {
   .remote_init = max96717_module_init,
   .remote_deinit = max96717_module_deinit,
};
 
static int max96717_parse_dt(maxim4c_remote_t *max96717)
{
   struct device *dev = max96717->dev;
   struct device_node *of_node = dev->of_node;
   u32 value = 0;
   int ret = 0;
 
   dev_info(dev, "=== maxim4c remote max96717 parse dt ===\n");
 
   ret = of_property_read_u32(of_node, "remote-id", &value);
   if (ret == 0) {
       dev_info(dev, "remote-id property: %d\n", value);
       max96717->remote_id = value;
   } else {
       max96717->remote_id = MAXIM4C_LINK_ID_MAX;
   }
 
   dev_info(dev, "max96717 remote id: %d\n", max96717->remote_id);
 
   ret = of_property_read_u32(of_node, "ser-i2c-addr-def", &value);
   if (ret == 0) {
       dev_info(dev, "ser-i2c-addr-def property: 0x%x", value);
       max96717->ser_i2c_addr_def = value;
   } else {
       max96717->ser_i2c_addr_def = MAX96717_I2C_ADDR_DEF;
   }
 
   ret = of_property_read_u32(of_node, "ser-i2c-addr-map", &value);
   if (ret == 0) {
       dev_info(dev, "ser-i2c-addr-map property: 0x%x", value);
       max96717->ser_i2c_addr_map = value;
   }
 
   ret = of_property_read_u32(of_node, "cam-i2c-addr-def", &value);
   if (ret == 0) {
       dev_info(dev, "cam-i2c-addr-def property: 0x%x", value);
       max96717->cam_i2c_addr_def = value;
   }
 
   ret = of_property_read_u32(of_node, "cam-i2c-addr-map", &value);
   if (ret == 0) {
       dev_info(dev, "cam-i2c-addr-map property: 0x%x", value);
       max96717->cam_i2c_addr_map = value;
   }
 
   return 0;
}
 
static int max96717_probe(struct platform_device *pdev)
{
   struct i2c_client *client = to_i2c_client(pdev->dev.parent);
   struct v4l2_subdev *sd = i2c_get_clientdata(client);
   struct maxim4c *maxim4c = v4l2_get_subdevdata(sd);
   struct maxim4c_remote *max96717 = NULL;
   u32 link_id = MAXIM4C_LINK_ID_MAX;
   int ret = 0;
 
   dev_info(&pdev->dev, "max96717 serializer probe\n");
 
   link_id = (uintptr_t)of_device_get_match_data(&pdev->dev);
   link_id = link_id - MAXIM4C_LINK_ID_MAX;
   if (link_id >= MAXIM4C_LINK_ID_MAX) {
       dev_err(&pdev->dev, "max96717 probe match data error\n");
       return -EINVAL;
   }
   dev_info(&pdev->dev, "max96717 probe link id = %d\n", link_id);
 
   max96717 = devm_kzalloc(&pdev->dev, sizeof(*max96717), GFP_KERNEL);
   if (!max96717) {
       dev_err(&pdev->dev, "max96717 probe no memory error\n");
       return -ENOMEM;
   }
 
   max96717->dev = &pdev->dev;
   max96717->remote_ops = &max96717_ops;
   max96717->local = maxim4c;
   dev_set_drvdata(max96717->dev, max96717);
 
   max96717_parse_dt(max96717);
 
   if (max96717->remote_id != link_id) {
       dev_err(&pdev->dev, "max96717 probe remote_id error\n");
       return -EINVAL;
   }
 
   ret = maxim4c_remote_i2c_client_init(max96717, client);
   if (ret) {
       dev_err(&pdev->dev, "remote i2c client init error\n");
       return ret;
   }
 
   ret = maxim4c_remote_device_register(maxim4c, max96717);
   if (ret) {
       dev_err(&pdev->dev, "remote serializer register error\n");
       return ret;
   }
 
   maxim4c_remote_load_init_seq(max96717);
 
   return 0;
}
 
static int max96717_remove(struct platform_device *pdev)
{
   return 0;
}
 
static const struct of_device_id max96717_of_table[] = {
   {
       .compatible = "maxim4c,link0,max96717",
       .data = (const void *)(MAXIM4C_LINK_ID_MAX + MAXIM4C_LINK_ID_A)
   }, {
       .compatible = "maxim4c,link1,max96717",
       .data = (const void *)(MAXIM4C_LINK_ID_MAX + MAXIM4C_LINK_ID_B)
   }, {
       .compatible = "maxim4c,link2,max96717",
       .data = (const void *)(MAXIM4C_LINK_ID_MAX + MAXIM4C_LINK_ID_C)
   }, {
       .compatible = "maxim4c,link3,max96717",
       .data = (const void *)(MAXIM4C_LINK_ID_MAX + MAXIM4C_LINK_ID_D)
   },
   { /* Sentinel */ },
};
MODULE_DEVICE_TABLE(of, max96717_of_table);
 
static struct platform_driver max96717_driver = {
   .probe        = max96717_probe,
   .remove        = max96717_remove,
   .driver        = {
       .name    = "max96717",
       .of_match_table = max96717_of_table,
   },
};
 
module_platform_driver(max96717_driver);
 
MODULE_AUTHOR("Cai Wenzhong <cwz@rock-chips.com>");
MODULE_DESCRIPTION("Maxim MAX96717 Serializer Driver");
MODULE_LICENSE("GPL");