Source
14
14
* GNU General Public License for more details.
15
15
*/
16
16
17
17
#include <linux/kernel.h>
18
18
#include <linux/err.h>
19
19
#include <linux/module.h>
20
20
#include <linux/spi/spi.h>
21
21
#include <linux/i2c.h>
22
22
#include <linux/delay.h>
23
23
#include <linux/pm_runtime.h>
24
+
#include <linux/of_device.h>
24
25
#include <linux/of.h>
25
26
#include <linux/platform_data/sc18is602.h>
26
27
#include <linux/gpio/consumer.h>
27
28
28
29
enum chips { sc18is602, sc18is602b, sc18is603 };
29
30
30
31
#define SC18IS602_BUFSIZ 200
31
32
#define SC18IS602_CLOCK 7372000
32
33
33
34
#define SC18IS602_MODE_CPHA BIT(2)
264
265
hw->reset = devm_gpiod_get_optional(dev, "reset", GPIOD_OUT_HIGH);
265
266
if (IS_ERR(hw->reset))
266
267
return PTR_ERR(hw->reset);
267
268
gpiod_set_value_cansleep(hw->reset, 0);
268
269
269
270
hw->master = master;
270
271
hw->client = client;
271
272
hw->dev = dev;
272
273
hw->ctrl = 0xff;
273
274
274
-
hw->id = id->driver_data;
275
+
if (client->dev.of_node)
276
+
hw->id = (enum chips)of_device_get_match_data(&client->dev);
277
+
else
278
+
hw->id = id->driver_data;
275
279
276
280
switch (hw->id) {
277
281
case sc18is602:
278
282
case sc18is602b:
279
283
master->num_chipselect = 4;
280
284
hw->freq = SC18IS602_CLOCK;
281
285
break;
282
286
case sc18is603:
283
287
master->num_chipselect = 2;
284
288
if (pdata) {
316
320
}
317
321
318
322
static const struct i2c_device_id sc18is602_id[] = {
319
323
{ "sc18is602", sc18is602 },
320
324
{ "sc18is602b", sc18is602b },
321
325
{ "sc18is603", sc18is603 },
322
326
{ }
323
327
};
324
328
MODULE_DEVICE_TABLE(i2c, sc18is602_id);
325
329
330
+
static const struct of_device_id sc18is602_of_match[] = {
331
+
{
332
+
.compatible = "nxp,sc18is602",
333
+
.data = (void *)sc18is602
334
+
},
335
+
{
336
+
.compatible = "nxp,sc18is602b",
337
+
.data = (void *)sc18is602b
338
+
},
339
+
{
340
+
.compatible = "nxp,sc18is603",
341
+
.data = (void *)sc18is603
342
+
},
343
+
{ },
344
+
};
345
+
MODULE_DEVICE_TABLE(of, sc18is602_of_match);
346
+
326
347
static struct i2c_driver sc18is602_driver = {
327
348
.driver = {
328
349
.name = "sc18is602",
350
+
.of_match_table = of_match_ptr(sc18is602_of_match),
329
351
},
330
352
.probe = sc18is602_probe,
331
353
.id_table = sc18is602_id,
332
354
};
333
355
334
356
module_i2c_driver(sc18is602_driver);
335
357
336
358
MODULE_DESCRIPTION("SC18IC602/603 SPI Master Driver");
337
359
MODULE_AUTHOR("Guenter Roeck");
338
360
MODULE_LICENSE("GPL");