2 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #define pr_fmt(fmt) "%s: " fmt, __func__
16 #include <linux/kernel.h>
17 #include <linux/interrupt.h>
18 #include <linux/irqchip/chained_irq.h>
19 #include <linux/irq.h>
20 #include <linux/irqdomain.h>
21 #include <linux/module.h>
22 #include <linux/platform_device.h>
23 #include <linux/slab.h>
24 #include <linux/err.h>
25 #include <linux/ssbi.h>
26 #include <linux/regmap.h>
27 #include <linux/of_platform.h>
28 #include <linux/mfd/core.h>
30 #define SSBI_REG_ADDR_IRQ_BASE 0x1BB
32 #define SSBI_REG_ADDR_IRQ_ROOT (SSBI_REG_ADDR_IRQ_BASE + 0)
33 #define SSBI_REG_ADDR_IRQ_M_STATUS1 (SSBI_REG_ADDR_IRQ_BASE + 1)
34 #define SSBI_REG_ADDR_IRQ_M_STATUS2 (SSBI_REG_ADDR_IRQ_BASE + 2)
35 #define SSBI_REG_ADDR_IRQ_M_STATUS3 (SSBI_REG_ADDR_IRQ_BASE + 3)
36 #define SSBI_REG_ADDR_IRQ_M_STATUS4 (SSBI_REG_ADDR_IRQ_BASE + 4)
37 #define SSBI_REG_ADDR_IRQ_BLK_SEL (SSBI_REG_ADDR_IRQ_BASE + 5)
38 #define SSBI_REG_ADDR_IRQ_IT_STATUS (SSBI_REG_ADDR_IRQ_BASE + 6)
39 #define SSBI_REG_ADDR_IRQ_CONFIG (SSBI_REG_ADDR_IRQ_BASE + 7)
40 #define SSBI_REG_ADDR_IRQ_RT_STATUS (SSBI_REG_ADDR_IRQ_BASE + 8)
42 #define PM_IRQF_LVL_SEL 0x01 /* level select */
43 #define PM_IRQF_MASK_FE 0x02 /* mask falling edge */
44 #define PM_IRQF_MASK_RE 0x04 /* mask rising edge */
45 #define PM_IRQF_CLR 0x08 /* clear interrupt */
46 #define PM_IRQF_BITS_MASK 0x70
47 #define PM_IRQF_BITS_SHIFT 4
48 #define PM_IRQF_WRITE 0x80
50 #define PM_IRQF_MASK_ALL (PM_IRQF_MASK_FE | \
53 #define REG_HWREV 0x002 /* PMIC4 revision */
54 #define REG_HWREV_2 0x0E8 /* PMIC4 revision 2 */
56 #define PM8921_NR_IRQS 256
59 struct regmap
*regmap
;
60 spinlock_t pm_irq_lock
;
61 struct irq_domain
*irqdomain
;
62 unsigned int num_irqs
;
63 unsigned int num_blocks
;
64 unsigned int num_masters
;
68 static int pm8xxx_read_block_irq(struct pm_irq_chip
*chip
, unsigned int bp
,
73 spin_lock(&chip
->pm_irq_lock
);
74 rc
= regmap_write(chip
->regmap
, SSBI_REG_ADDR_IRQ_BLK_SEL
, bp
);
76 pr_err("Failed Selecting Block %d rc=%d\n", bp
, rc
);
80 rc
= regmap_read(chip
->regmap
, SSBI_REG_ADDR_IRQ_IT_STATUS
, ip
);
82 pr_err("Failed Reading Status rc=%d\n", rc
);
84 spin_unlock(&chip
->pm_irq_lock
);
89 pm8xxx_config_irq(struct pm_irq_chip
*chip
, unsigned int bp
, unsigned int cp
)
93 spin_lock(&chip
->pm_irq_lock
);
94 rc
= regmap_write(chip
->regmap
, SSBI_REG_ADDR_IRQ_BLK_SEL
, bp
);
96 pr_err("Failed Selecting Block %d rc=%d\n", bp
, rc
);
101 rc
= regmap_write(chip
->regmap
, SSBI_REG_ADDR_IRQ_CONFIG
, cp
);
103 pr_err("Failed Configuring IRQ rc=%d\n", rc
);
105 spin_unlock(&chip
->pm_irq_lock
);
109 static int pm8xxx_irq_block_handler(struct pm_irq_chip
*chip
, int block
)
111 int pmirq
, irq
, i
, ret
= 0;
114 ret
= pm8xxx_read_block_irq(chip
, block
, &bits
);
116 pr_err("Failed reading %d block ret=%d", block
, ret
);
120 pr_err("block bit set in master but no irqs: %d", block
);
125 for (i
= 0; i
< 8; i
++) {
126 if (bits
& (1 << i
)) {
127 pmirq
= block
* 8 + i
;
128 irq
= irq_find_mapping(chip
->irqdomain
, pmirq
);
129 generic_handle_irq(irq
);
135 static int pm8xxx_irq_master_handler(struct pm_irq_chip
*chip
, int master
)
137 unsigned int blockbits
;
138 int block_number
, i
, ret
= 0;
140 ret
= regmap_read(chip
->regmap
, SSBI_REG_ADDR_IRQ_M_STATUS1
+ master
,
143 pr_err("Failed to read master %d ret=%d\n", master
, ret
);
147 pr_err("master bit set in root but no blocks: %d", master
);
151 for (i
= 0; i
< 8; i
++)
152 if (blockbits
& (1 << i
)) {
153 block_number
= master
* 8 + i
; /* block # */
154 ret
|= pm8xxx_irq_block_handler(chip
, block_number
);
159 static void pm8xxx_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
161 struct pm_irq_chip
*chip
= irq_desc_get_handler_data(desc
);
162 struct irq_chip
*irq_chip
= irq_desc_get_chip(desc
);
164 int i
, ret
, masters
= 0;
166 chained_irq_enter(irq_chip
, desc
);
168 ret
= regmap_read(chip
->regmap
, SSBI_REG_ADDR_IRQ_ROOT
, &root
);
170 pr_err("Can't read root status ret=%d\n", ret
);
174 /* on pm8xxx series masters start from bit 1 of the root */
177 /* Read allowed masters for blocks. */
178 for (i
= 0; i
< chip
->num_masters
; i
++)
179 if (masters
& (1 << i
))
180 pm8xxx_irq_master_handler(chip
, i
);
182 chained_irq_exit(irq_chip
, desc
);
185 static void pm8xxx_irq_mask_ack(struct irq_data
*d
)
187 struct pm_irq_chip
*chip
= irq_data_get_irq_chip_data(d
);
188 unsigned int pmirq
= irqd_to_hwirq(d
);
193 config
= chip
->config
[pmirq
] | PM_IRQF_MASK_ALL
| PM_IRQF_CLR
;
194 pm8xxx_config_irq(chip
, block
, config
);
197 static void pm8xxx_irq_unmask(struct irq_data
*d
)
199 struct pm_irq_chip
*chip
= irq_data_get_irq_chip_data(d
);
200 unsigned int pmirq
= irqd_to_hwirq(d
);
205 config
= chip
->config
[pmirq
];
206 pm8xxx_config_irq(chip
, block
, config
);
209 static int pm8xxx_irq_set_type(struct irq_data
*d
, unsigned int flow_type
)
211 struct pm_irq_chip
*chip
= irq_data_get_irq_chip_data(d
);
212 unsigned int pmirq
= irqd_to_hwirq(d
);
219 chip
->config
[pmirq
] = (irq_bit
<< PM_IRQF_BITS_SHIFT
)
221 if (flow_type
& (IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
)) {
222 if (flow_type
& IRQF_TRIGGER_RISING
)
223 chip
->config
[pmirq
] &= ~PM_IRQF_MASK_RE
;
224 if (flow_type
& IRQF_TRIGGER_FALLING
)
225 chip
->config
[pmirq
] &= ~PM_IRQF_MASK_FE
;
227 chip
->config
[pmirq
] |= PM_IRQF_LVL_SEL
;
229 if (flow_type
& IRQF_TRIGGER_HIGH
)
230 chip
->config
[pmirq
] &= ~PM_IRQF_MASK_RE
;
232 chip
->config
[pmirq
] &= ~PM_IRQF_MASK_FE
;
235 config
= chip
->config
[pmirq
] | PM_IRQF_CLR
;
236 return pm8xxx_config_irq(chip
, block
, config
);
239 static struct irq_chip pm8xxx_irq_chip
= {
241 .irq_mask_ack
= pm8xxx_irq_mask_ack
,
242 .irq_unmask
= pm8xxx_irq_unmask
,
243 .irq_set_type
= pm8xxx_irq_set_type
,
244 .flags
= IRQCHIP_MASK_ON_SUSPEND
| IRQCHIP_SKIP_SET_WAKE
,
247 static int pm8xxx_irq_domain_map(struct irq_domain
*d
, unsigned int irq
,
248 irq_hw_number_t hwirq
)
250 struct pm_irq_chip
*chip
= d
->host_data
;
252 irq_set_chip_and_handler(irq
, &pm8xxx_irq_chip
, handle_level_irq
);
253 irq_set_chip_data(irq
, chip
);
255 set_irq_flags(irq
, IRQF_VALID
);
257 irq_set_noprobe(irq
);
262 static const struct irq_domain_ops pm8xxx_irq_domain_ops
= {
263 .xlate
= irq_domain_xlate_twocell
,
264 .map
= pm8xxx_irq_domain_map
,
267 static const struct regmap_config ssbi_regmap_config
= {
270 .max_register
= 0x3ff,
272 .reg_read
= ssbi_reg_read
,
273 .reg_write
= ssbi_reg_write
276 static const struct of_device_id pm8921_id_table
[] = {
277 { .compatible
= "qcom,pm8058", },
278 { .compatible
= "qcom,pm8921", },
281 MODULE_DEVICE_TABLE(of
, pm8921_id_table
);
283 static int pm8921_probe(struct platform_device
*pdev
)
285 struct regmap
*regmap
;
289 struct pm_irq_chip
*chip
;
290 unsigned int nirqs
= PM8921_NR_IRQS
;
292 irq
= platform_get_irq(pdev
, 0);
296 regmap
= devm_regmap_init(&pdev
->dev
, NULL
, pdev
->dev
.parent
,
297 &ssbi_regmap_config
);
299 return PTR_ERR(regmap
);
301 /* Read PMIC chip revision */
302 rc
= regmap_read(regmap
, REG_HWREV
, &val
);
304 pr_err("Failed to read hw rev reg %d:rc=%d\n", REG_HWREV
, rc
);
307 pr_info("PMIC revision 1: %02X\n", val
);
310 /* Read PMIC chip revision 2 */
311 rc
= regmap_read(regmap
, REG_HWREV_2
, &val
);
313 pr_err("Failed to read hw rev 2 reg %d:rc=%d\n",
317 pr_info("PMIC revision 2: %02X\n", val
);
318 rev
|= val
<< BITS_PER_BYTE
;
320 chip
= devm_kzalloc(&pdev
->dev
, sizeof(*chip
) +
321 sizeof(chip
->config
[0]) * nirqs
,
326 platform_set_drvdata(pdev
, chip
);
327 chip
->regmap
= regmap
;
328 chip
->num_irqs
= nirqs
;
329 chip
->num_blocks
= DIV_ROUND_UP(chip
->num_irqs
, 8);
330 chip
->num_masters
= DIV_ROUND_UP(chip
->num_blocks
, 8);
331 spin_lock_init(&chip
->pm_irq_lock
);
333 chip
->irqdomain
= irq_domain_add_linear(pdev
->dev
.of_node
, nirqs
,
334 &pm8xxx_irq_domain_ops
,
336 if (!chip
->irqdomain
)
339 irq_set_handler_data(irq
, chip
);
340 irq_set_chained_handler(irq
, pm8xxx_irq_handler
);
341 irq_set_irq_wake(irq
, 1);
343 rc
= of_platform_populate(pdev
->dev
.of_node
, NULL
, NULL
, &pdev
->dev
);
345 irq_set_chained_handler(irq
, NULL
);
346 irq_set_handler_data(irq
, NULL
);
347 irq_domain_remove(chip
->irqdomain
);
353 static int pm8921_remove_child(struct device
*dev
, void *unused
)
355 platform_device_unregister(to_platform_device(dev
));
359 static int pm8921_remove(struct platform_device
*pdev
)
361 int irq
= platform_get_irq(pdev
, 0);
362 struct pm_irq_chip
*chip
= platform_get_drvdata(pdev
);
364 device_for_each_child(&pdev
->dev
, NULL
, pm8921_remove_child
);
365 irq_set_chained_handler(irq
, NULL
);
366 irq_set_handler_data(irq
, NULL
);
367 irq_domain_remove(chip
->irqdomain
);
372 static struct platform_driver pm8921_driver
= {
373 .probe
= pm8921_probe
,
374 .remove
= pm8921_remove
,
376 .name
= "pm8921-core",
377 .owner
= THIS_MODULE
,
378 .of_match_table
= pm8921_id_table
,
382 static int __init
pm8921_init(void)
384 return platform_driver_register(&pm8921_driver
);
386 subsys_initcall(pm8921_init
);
388 static void __exit
pm8921_exit(void)
390 platform_driver_unregister(&pm8921_driver
);
392 module_exit(pm8921_exit
);
394 MODULE_LICENSE("GPL v2");
395 MODULE_DESCRIPTION("PMIC 8921 core driver");
396 MODULE_VERSION("1.0");
397 MODULE_ALIAS("platform:pm8921-core");