]>
Commit | Line | Data |
---|---|---|
d925da5c | 1 | // SPDX-License-Identifier: GPL-2.0-only |
0b271258 BS |
2 | /* |
3 | * MFD core driver for the Richtek RT5033. | |
4 | * | |
5 | * RT5033 comprises multiple sub-devices switcing charger, fuel gauge, | |
6 | * flash LED, current source, LDO and BUCK regulators. | |
7 | * | |
8 | * Copyright (C) 2014 Samsung Electronics, Co., Ltd. | |
9 | * Author: Beomho Seo <[email protected]> | |
0b271258 BS |
10 | */ |
11 | ||
12 | #include <linux/err.h> | |
13 | #include <linux/module.h> | |
14 | #include <linux/interrupt.h> | |
15 | #include <linux/of_device.h> | |
16 | #include <linux/mfd/core.h> | |
17 | #include <linux/mfd/rt5033.h> | |
18 | #include <linux/mfd/rt5033-private.h> | |
19 | ||
20 | static const struct regmap_irq rt5033_irqs[] = { | |
21 | { .mask = RT5033_PMIC_IRQ_BUCKOCP, }, | |
22 | { .mask = RT5033_PMIC_IRQ_BUCKLV, }, | |
23 | { .mask = RT5033_PMIC_IRQ_SAFELDOLV, }, | |
24 | { .mask = RT5033_PMIC_IRQ_LDOLV, }, | |
25 | { .mask = RT5033_PMIC_IRQ_OT, }, | |
26 | { .mask = RT5033_PMIC_IRQ_VDDA_UV, }, | |
27 | }; | |
28 | ||
29 | static const struct regmap_irq_chip rt5033_irq_chip = { | |
30 | .name = "rt5033", | |
31 | .status_base = RT5033_REG_PMIC_IRQ_STAT, | |
32 | .mask_base = RT5033_REG_PMIC_IRQ_CTRL, | |
33 | .mask_invert = true, | |
34 | .num_regs = 1, | |
35 | .irqs = rt5033_irqs, | |
36 | .num_irqs = ARRAY_SIZE(rt5033_irqs), | |
37 | }; | |
38 | ||
39 | static const struct mfd_cell rt5033_devs[] = { | |
40 | { .name = "rt5033-regulator", }, | |
41 | { | |
42 | .name = "rt5033-charger", | |
43 | .of_compatible = "richtek,rt5033-charger", | |
44 | }, { | |
45 | .name = "rt5033-battery", | |
46 | .of_compatible = "richtek,rt5033-battery", | |
b487c17d IK |
47 | }, { |
48 | .name = "rt5033-led", | |
49 | .of_compatible = "richtek,rt5033-led", | |
0b271258 BS |
50 | }, |
51 | }; | |
52 | ||
53 | static const struct regmap_config rt5033_regmap_config = { | |
54 | .reg_bits = 8, | |
55 | .val_bits = 8, | |
56 | .max_register = RT5033_REG_END, | |
57 | }; | |
58 | ||
e46b578c | 59 | static int rt5033_i2c_probe(struct i2c_client *i2c) |
0b271258 BS |
60 | { |
61 | struct rt5033_dev *rt5033; | |
62 | unsigned int dev_id; | |
63 | int ret; | |
64 | ||
65 | rt5033 = devm_kzalloc(&i2c->dev, sizeof(*rt5033), GFP_KERNEL); | |
66 | if (!rt5033) | |
67 | return -ENOMEM; | |
68 | ||
69 | i2c_set_clientdata(i2c, rt5033); | |
70 | rt5033->dev = &i2c->dev; | |
71 | rt5033->irq = i2c->irq; | |
72 | rt5033->wakeup = true; | |
73 | ||
74 | rt5033->regmap = devm_regmap_init_i2c(i2c, &rt5033_regmap_config); | |
75 | if (IS_ERR(rt5033->regmap)) { | |
76 | dev_err(&i2c->dev, "Failed to allocate register map.\n"); | |
77 | return PTR_ERR(rt5033->regmap); | |
78 | } | |
79 | ||
80 | ret = regmap_read(rt5033->regmap, RT5033_REG_DEVICE_ID, &dev_id); | |
81 | if (ret) { | |
82 | dev_err(&i2c->dev, "Device not found\n"); | |
83 | return -ENODEV; | |
84 | } | |
85 | dev_info(&i2c->dev, "Device found Device ID: %04x\n", dev_id); | |
86 | ||
87 | ret = regmap_add_irq_chip(rt5033->regmap, rt5033->irq, | |
88 | IRQF_TRIGGER_FALLING | IRQF_ONESHOT, | |
89 | 0, &rt5033_irq_chip, &rt5033->irq_data); | |
90 | if (ret) { | |
91 | dev_err(&i2c->dev, "Failed to request IRQ %d: %d\n", | |
92 | rt5033->irq, ret); | |
93 | return ret; | |
94 | } | |
95 | ||
6b719eba LD |
96 | ret = devm_mfd_add_devices(rt5033->dev, -1, rt5033_devs, |
97 | ARRAY_SIZE(rt5033_devs), NULL, 0, | |
98 | regmap_irq_get_domain(rt5033->irq_data)); | |
0b271258 BS |
99 | if (ret < 0) { |
100 | dev_err(&i2c->dev, "Failed to add RT5033 child devices.\n"); | |
101 | return ret; | |
102 | } | |
103 | ||
104 | device_init_wakeup(rt5033->dev, rt5033->wakeup); | |
105 | ||
106 | return 0; | |
107 | } | |
108 | ||
0b271258 BS |
109 | static const struct i2c_device_id rt5033_i2c_id[] = { |
110 | { "rt5033", }, | |
111 | { } | |
112 | }; | |
113 | MODULE_DEVICE_TABLE(i2c, rt5033_i2c_id); | |
114 | ||
115 | static const struct of_device_id rt5033_dt_match[] = { | |
116 | { .compatible = "richtek,rt5033", }, | |
117 | { } | |
118 | }; | |
4895e493 | 119 | MODULE_DEVICE_TABLE(of, rt5033_dt_match); |
0b271258 BS |
120 | |
121 | static struct i2c_driver rt5033_driver = { | |
122 | .driver = { | |
123 | .name = "rt5033", | |
a232bcd2 | 124 | .of_match_table = rt5033_dt_match, |
0b271258 | 125 | }, |
e46b578c | 126 | .probe_new = rt5033_i2c_probe, |
0b271258 BS |
127 | .id_table = rt5033_i2c_id, |
128 | }; | |
129 | module_i2c_driver(rt5033_driver); | |
130 | ||
0b271258 BS |
131 | MODULE_DESCRIPTION("Richtek RT5033 multi-function core driver"); |
132 | MODULE_AUTHOR("Beomho Seo <[email protected]>"); | |
133 | MODULE_LICENSE("GPL"); |