blob: 1f40baf1234e3e053918e81805117027f7b40100 [file] [log] [blame]
Sourav Poddar82843282012-10-01 16:31:22 +05301/*
2 * TI SMSC MFD Driver
3 *
4 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com
5 *
6 * Author: Sourav Poddar <sourav.poddar@ti.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; GPL v2.
11 *
12 */
13
Paul Gortmakerda4d0f22016-09-12 10:40:52 -040014#include <linux/init.h>
Sourav Poddar82843282012-10-01 16:31:22 +053015#include <linux/slab.h>
16#include <linux/i2c.h>
17#include <linux/gpio.h>
18#include <linux/workqueue.h>
19#include <linux/irq.h>
20#include <linux/regmap.h>
21#include <linux/err.h>
22#include <linux/mfd/core.h>
23#include <linux/mfd/smsc.h>
24#include <linux/of_platform.h>
25
Krzysztof Kozlowski486212f2015-01-05 10:01:29 +010026static const struct regmap_config smsc_regmap_config = {
Sourav Poddar82843282012-10-01 16:31:22 +053027 .reg_bits = 8,
28 .val_bits = 8,
29 .max_register = SMSC_VEN_ID_H,
30 .cache_type = REGCACHE_RBTREE,
31};
32
33static int smsc_i2c_probe(struct i2c_client *i2c,
34 const struct i2c_device_id *id)
35{
36 struct smsc *smsc;
37 int devid, rev, venid_l, venid_h;
Markus Elfring53b34b82016-06-26 14:14:54 +020038 int ret;
Sourav Poddar82843282012-10-01 16:31:22 +053039
40 smsc = devm_kzalloc(&i2c->dev, sizeof(struct smsc),
41 GFP_KERNEL);
42 if (!smsc) {
43 dev_err(&i2c->dev, "smsc mfd driver memory allocation failed\n");
44 return -ENOMEM;
45 }
46
47 smsc->regmap = devm_regmap_init_i2c(i2c, &smsc_regmap_config);
Markus Elfring4dc03d02016-06-26 14:30:46 +020048 if (IS_ERR(smsc->regmap))
49 return PTR_ERR(smsc->regmap);
Sourav Poddar82843282012-10-01 16:31:22 +053050
51 i2c_set_clientdata(i2c, smsc);
52 smsc->dev = &i2c->dev;
53
54#ifdef CONFIG_OF
55 of_property_read_u32(i2c->dev.of_node, "clock", &smsc->clk);
56#endif
57
58 regmap_read(smsc->regmap, SMSC_DEV_ID, &devid);
59 regmap_read(smsc->regmap, SMSC_DEV_REV, &rev);
60 regmap_read(smsc->regmap, SMSC_VEN_ID_L, &venid_l);
61 regmap_read(smsc->regmap, SMSC_VEN_ID_H, &venid_h);
62
63 dev_info(&i2c->dev, "SMSCxxx devid: %02x rev: %02x venid: %02x\n",
64 devid, rev, (venid_h << 8) | venid_l);
65
66 ret = regmap_write(smsc->regmap, SMSC_CLK_CTRL, smsc->clk);
67 if (ret)
Markus Elfring4dc03d02016-06-26 14:30:46 +020068 return ret;
Sourav Poddar82843282012-10-01 16:31:22 +053069
70#ifdef CONFIG_OF
71 if (i2c->dev.of_node)
72 ret = of_platform_populate(i2c->dev.of_node,
73 NULL, NULL, &i2c->dev);
74#endif
75
Sourav Poddar82843282012-10-01 16:31:22 +053076 return ret;
77}
78
Sourav Poddar82843282012-10-01 16:31:22 +053079static const struct i2c_device_id smsc_i2c_id[] = {
80 { "smscece1099", 0},
81 {},
82};
Sourav Poddar82843282012-10-01 16:31:22 +053083
84static struct i2c_driver smsc_i2c_driver = {
85 .driver = {
86 .name = "smsc",
Sourav Poddar82843282012-10-01 16:31:22 +053087 },
88 .probe = smsc_i2c_probe,
Sourav Poddar82843282012-10-01 16:31:22 +053089 .id_table = smsc_i2c_id,
90};
Paul Gortmakerda4d0f22016-09-12 10:40:52 -040091builtin_i2c_driver(smsc_i2c_driver);