2 * Copyright (c) 2012-2015, 2017, The Linux Foundation. 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.
13 #include <linux/bitmap.h>
14 #include <linux/delay.h>
15 #include <linux/err.h>
16 #include <linux/interrupt.h>
18 #include <linux/irqchip/chained_irq.h>
19 #include <linux/irqdomain.h>
20 #include <linux/irq.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
24 #include <linux/platform_device.h>
25 #include <linux/slab.h>
26 #include <linux/spmi.h>
28 /* PMIC Arbiter configuration registers */
29 #define PMIC_ARB_VERSION 0x0000
30 #define PMIC_ARB_VERSION_V2_MIN 0x20010000
31 #define PMIC_ARB_VERSION_V3_MIN 0x30000000
32 #define PMIC_ARB_VERSION_V5_MIN 0x50000000
33 #define PMIC_ARB_INT_EN 0x0004
35 /* PMIC Arbiter channel registers offsets */
36 #define PMIC_ARB_CMD 0x00
37 #define PMIC_ARB_CONFIG 0x04
38 #define PMIC_ARB_STATUS 0x08
39 #define PMIC_ARB_WDATA0 0x10
40 #define PMIC_ARB_WDATA1 0x14
41 #define PMIC_ARB_RDATA0 0x18
42 #define PMIC_ARB_RDATA1 0x1C
45 #define SPMI_MAPPING_TABLE_REG(N) (0x0B00 + (4 * (N)))
46 #define SPMI_MAPPING_BIT_INDEX(X) (((X) >> 18) & 0xF)
47 #define SPMI_MAPPING_BIT_IS_0_FLAG(X) (((X) >> 17) & 0x1)
48 #define SPMI_MAPPING_BIT_IS_0_RESULT(X) (((X) >> 9) & 0xFF)
49 #define SPMI_MAPPING_BIT_IS_1_FLAG(X) (((X) >> 8) & 0x1)
50 #define SPMI_MAPPING_BIT_IS_1_RESULT(X) (((X) >> 0) & 0xFF)
52 #define SPMI_MAPPING_TABLE_TREE_DEPTH 16 /* Maximum of 16-bits */
53 #define PMIC_ARB_MAX_PPID BIT(12) /* PPID is 12bit */
54 #define PMIC_ARB_APID_VALID BIT(15)
55 #define PMIC_ARB_CHAN_IS_IRQ_OWNER(reg) ((reg) & BIT(24))
56 #define INVALID_EE 0xFF
59 #define SPMI_OWNERSHIP_TABLE_REG(N) (0x0700 + (4 * (N)))
60 #define SPMI_OWNERSHIP_PERIPH2OWNER(X) ((X) & 0x7)
62 /* Channel Status fields */
63 enum pmic_arb_chnl_status
{
64 PMIC_ARB_STATUS_DONE
= BIT(0),
65 PMIC_ARB_STATUS_FAILURE
= BIT(1),
66 PMIC_ARB_STATUS_DENIED
= BIT(2),
67 PMIC_ARB_STATUS_DROPPED
= BIT(3),
70 /* Command register fields */
71 #define PMIC_ARB_CMD_MAX_BYTE_COUNT 8
74 enum pmic_arb_cmd_op_code
{
75 PMIC_ARB_OP_EXT_WRITEL
= 0,
76 PMIC_ARB_OP_EXT_READL
= 1,
77 PMIC_ARB_OP_EXT_WRITE
= 2,
78 PMIC_ARB_OP_RESET
= 3,
79 PMIC_ARB_OP_SLEEP
= 4,
80 PMIC_ARB_OP_SHUTDOWN
= 5,
81 PMIC_ARB_OP_WAKEUP
= 6,
82 PMIC_ARB_OP_AUTHENTICATE
= 7,
83 PMIC_ARB_OP_MSTR_READ
= 8,
84 PMIC_ARB_OP_MSTR_WRITE
= 9,
85 PMIC_ARB_OP_EXT_READ
= 13,
86 PMIC_ARB_OP_WRITE
= 14,
87 PMIC_ARB_OP_READ
= 15,
88 PMIC_ARB_OP_ZERO_WRITE
= 16,
92 * PMIC arbiter version 5 uses different register offsets for read/write vs
95 enum pmic_arb_channel
{
100 /* Maximum number of support PMIC peripherals */
101 #define PMIC_ARB_MAX_PERIPHS 512
102 #define PMIC_ARB_TIMEOUT_US 100
103 #define PMIC_ARB_MAX_TRANS_BYTES (8)
105 #define PMIC_ARB_APID_MASK 0xFF
106 #define PMIC_ARB_PPID_MASK 0xFFF
108 /* interrupt enable bit */
109 #define SPMI_PIC_ACC_ENABLE_BIT BIT(0)
111 #define spec_to_hwirq(slave_id, periph_id, irq_id, apid) \
112 ((((slave_id) & 0xF) << 28) | \
113 (((periph_id) & 0xFF) << 20) | \
114 (((irq_id) & 0x7) << 16) | \
115 (((apid) & 0x1FF) << 0))
117 #define hwirq_to_sid(hwirq) (((hwirq) >> 28) & 0xF)
118 #define hwirq_to_per(hwirq) (((hwirq) >> 20) & 0xFF)
119 #define hwirq_to_irq(hwirq) (((hwirq) >> 16) & 0x7)
120 #define hwirq_to_apid(hwirq) (((hwirq) >> 0) & 0x1FF)
122 struct pmic_arb_ver_ops
;
131 * spmi_pmic_arb - SPMI PMIC Arbiter object
133 * @rd_base: on v1 "core", on v2 "observer" register base off DT.
134 * @wr_base: on v1 "core", on v2 "chnls" register base off DT.
135 * @intr: address of the SPMI interrupt control registers.
136 * @cnfg: address of the PMIC Arbiter configuration registers.
137 * @lock: lock to synchronize accesses.
138 * @channel: execution environment channel to use for accesses.
139 * @irq: PMIC ARB interrupt.
140 * @ee: the current Execution Environment
141 * @min_apid: minimum APID (used for bounding IRQ search)
142 * @max_apid: maximum APID
143 * @mapping_table: in-memory copy of PPID -> APID mapping table.
144 * @domain: irq domain object for PMIC IRQ domain
145 * @spmic: SPMI controller object
146 * @ver_ops: version dependent operations.
147 * @ppid_to_apid in-memory copy of PPID -> APID mapping table.
149 struct spmi_pmic_arb
{
150 void __iomem
*rd_base
;
151 void __iomem
*wr_base
;
155 resource_size_t core_size
;
163 DECLARE_BITMAP(mapping_table_valid
, PMIC_ARB_MAX_PERIPHS
);
164 struct irq_domain
*domain
;
165 struct spmi_controller
*spmic
;
166 const struct pmic_arb_ver_ops
*ver_ops
;
169 struct apid_data apid_data
[PMIC_ARB_MAX_PERIPHS
];
173 * pmic_arb_ver: version dependent functionality.
175 * @ver_str: version string.
176 * @ppid_to_apid: finds the apid for a given ppid.
177 * @non_data_cmd: on v1 issues an spmi non-data command.
178 * on v2 no HW support, returns -EOPNOTSUPP.
179 * @offset: on v1 offset of per-ee channel.
180 * on v2 offset of per-ee and per-ppid channel.
181 * @fmt_cmd: formats a GENI/SPMI command.
182 * @owner_acc_status: on v1 address of PMIC_ARB_SPMI_PIC_OWNERm_ACC_STATUSn
183 * on v2 address of SPMI_PIC_OWNERm_ACC_STATUSn.
184 * @acc_enable: on v1 address of PMIC_ARB_SPMI_PIC_ACC_ENABLEn
185 * on v2 address of SPMI_PIC_ACC_ENABLEn.
186 * @irq_status: on v1 address of PMIC_ARB_SPMI_PIC_IRQ_STATUSn
187 * on v2 address of SPMI_PIC_IRQ_STATUSn.
188 * @irq_clear: on v1 address of PMIC_ARB_SPMI_PIC_IRQ_CLEARn
189 * on v2 address of SPMI_PIC_IRQ_CLEARn.
190 * @apid_map_offset: offset of PMIC_ARB_REG_CHNLn
192 struct pmic_arb_ver_ops
{
194 int (*ppid_to_apid
)(struct spmi_pmic_arb
*pmic_arb
, u16 ppid
);
195 /* spmi commands (read_cmd, write_cmd, cmd) functionality */
196 int (*offset
)(struct spmi_pmic_arb
*pmic_arb
, u8 sid
, u16 addr
,
197 enum pmic_arb_channel ch_type
);
198 u32 (*fmt_cmd
)(u8 opc
, u8 sid
, u16 addr
, u8 bc
);
199 int (*non_data_cmd
)(struct spmi_controller
*ctrl
, u8 opc
, u8 sid
);
200 /* Interrupts controller functionality (offset of PIC registers) */
201 void __iomem
*(*owner_acc_status
)(struct spmi_pmic_arb
*pmic_arb
, u8 m
,
203 void __iomem
*(*acc_enable
)(struct spmi_pmic_arb
*pmic_arb
, u16 n
);
204 void __iomem
*(*irq_status
)(struct spmi_pmic_arb
*pmic_arb
, u16 n
);
205 void __iomem
*(*irq_clear
)(struct spmi_pmic_arb
*pmic_arb
, u16 n
);
206 u32 (*apid_map_offset
)(u16 n
);
209 static inline void pmic_arb_base_write(struct spmi_pmic_arb
*pmic_arb
,
212 writel_relaxed(val
, pmic_arb
->wr_base
+ offset
);
215 static inline void pmic_arb_set_rd_cmd(struct spmi_pmic_arb
*pmic_arb
,
218 writel_relaxed(val
, pmic_arb
->rd_base
+ offset
);
222 * pmic_arb_read_data: reads pmic-arb's register and copy 1..4 bytes to buf
223 * @bc: byte count -1. range: 0..3
224 * @reg: register's address
225 * @buf: output parameter, length must be bc + 1
228 pmic_arb_read_data(struct spmi_pmic_arb
*pmic_arb
, u8
*buf
, u32 reg
, u8 bc
)
230 u32 data
= __raw_readl(pmic_arb
->rd_base
+ reg
);
232 memcpy(buf
, &data
, (bc
& 3) + 1);
236 * pmic_arb_write_data: write 1..4 bytes from buf to pmic-arb's register
237 * @bc: byte-count -1. range: 0..3.
238 * @reg: register's address.
239 * @buf: buffer to write. length must be bc + 1.
241 static void pmic_arb_write_data(struct spmi_pmic_arb
*pmic_arb
, const u8
*buf
,
246 memcpy(&data
, buf
, (bc
& 3) + 1);
247 __raw_writel(data
, pmic_arb
->wr_base
+ reg
);
250 static int pmic_arb_wait_for_done(struct spmi_controller
*ctrl
,
251 void __iomem
*base
, u8 sid
, u16 addr
,
252 enum pmic_arb_channel ch_type
)
254 struct spmi_pmic_arb
*pmic_arb
= spmi_controller_get_drvdata(ctrl
);
256 u32 timeout
= PMIC_ARB_TIMEOUT_US
;
260 rc
= pmic_arb
->ver_ops
->offset(pmic_arb
, sid
, addr
, ch_type
);
265 offset
+= PMIC_ARB_STATUS
;
268 status
= readl_relaxed(base
+ offset
);
270 if (status
& PMIC_ARB_STATUS_DONE
) {
271 if (status
& PMIC_ARB_STATUS_DENIED
) {
272 dev_err(&ctrl
->dev
, "%s: transaction denied (0x%x)\n",
277 if (status
& PMIC_ARB_STATUS_FAILURE
) {
278 dev_err(&ctrl
->dev
, "%s: transaction failed (0x%x)\n",
283 if (status
& PMIC_ARB_STATUS_DROPPED
) {
284 dev_err(&ctrl
->dev
, "%s: transaction dropped (0x%x)\n",
294 dev_err(&ctrl
->dev
, "%s: timeout, status 0x%x\n",
300 pmic_arb_non_data_cmd_v1(struct spmi_controller
*ctrl
, u8 opc
, u8 sid
)
302 struct spmi_pmic_arb
*pmic_arb
= spmi_controller_get_drvdata(ctrl
);
308 rc
= pmic_arb
->ver_ops
->offset(pmic_arb
, sid
, 0, PMIC_ARB_CHANNEL_RW
);
313 cmd
= ((opc
| 0x40) << 27) | ((sid
& 0xf) << 20);
315 raw_spin_lock_irqsave(&pmic_arb
->lock
, flags
);
316 pmic_arb_base_write(pmic_arb
, offset
+ PMIC_ARB_CMD
, cmd
);
317 rc
= pmic_arb_wait_for_done(ctrl
, pmic_arb
->wr_base
, sid
, 0,
318 PMIC_ARB_CHANNEL_RW
);
319 raw_spin_unlock_irqrestore(&pmic_arb
->lock
, flags
);
325 pmic_arb_non_data_cmd_v2(struct spmi_controller
*ctrl
, u8 opc
, u8 sid
)
330 /* Non-data command */
331 static int pmic_arb_cmd(struct spmi_controller
*ctrl
, u8 opc
, u8 sid
)
333 struct spmi_pmic_arb
*pmic_arb
= spmi_controller_get_drvdata(ctrl
);
335 dev_dbg(&ctrl
->dev
, "cmd op:0x%x sid:%d\n", opc
, sid
);
337 /* Check for valid non-data command */
338 if (opc
< SPMI_CMD_RESET
|| opc
> SPMI_CMD_WAKEUP
)
341 return pmic_arb
->ver_ops
->non_data_cmd(ctrl
, opc
, sid
);
344 static int pmic_arb_read_cmd(struct spmi_controller
*ctrl
, u8 opc
, u8 sid
,
345 u16 addr
, u8
*buf
, size_t len
)
347 struct spmi_pmic_arb
*pmic_arb
= spmi_controller_get_drvdata(ctrl
);
354 rc
= pmic_arb
->ver_ops
->offset(pmic_arb
, sid
, addr
,
355 PMIC_ARB_CHANNEL_OBS
);
360 if (bc
>= PMIC_ARB_MAX_TRANS_BYTES
) {
361 dev_err(&ctrl
->dev
, "pmic-arb supports 1..%d bytes per trans, but:%zu requested",
362 PMIC_ARB_MAX_TRANS_BYTES
, len
);
366 /* Check the opcode */
367 if (opc
>= 0x60 && opc
<= 0x7F)
368 opc
= PMIC_ARB_OP_READ
;
369 else if (opc
>= 0x20 && opc
<= 0x2F)
370 opc
= PMIC_ARB_OP_EXT_READ
;
371 else if (opc
>= 0x38 && opc
<= 0x3F)
372 opc
= PMIC_ARB_OP_EXT_READL
;
376 cmd
= pmic_arb
->ver_ops
->fmt_cmd(opc
, sid
, addr
, bc
);
378 raw_spin_lock_irqsave(&pmic_arb
->lock
, flags
);
379 pmic_arb_set_rd_cmd(pmic_arb
, offset
+ PMIC_ARB_CMD
, cmd
);
380 rc
= pmic_arb_wait_for_done(ctrl
, pmic_arb
->rd_base
, sid
, addr
,
381 PMIC_ARB_CHANNEL_OBS
);
385 pmic_arb_read_data(pmic_arb
, buf
, offset
+ PMIC_ARB_RDATA0
,
389 pmic_arb_read_data(pmic_arb
, buf
+ 4, offset
+ PMIC_ARB_RDATA1
,
393 raw_spin_unlock_irqrestore(&pmic_arb
->lock
, flags
);
397 static int pmic_arb_write_cmd(struct spmi_controller
*ctrl
, u8 opc
, u8 sid
,
398 u16 addr
, const u8
*buf
, size_t len
)
400 struct spmi_pmic_arb
*pmic_arb
= spmi_controller_get_drvdata(ctrl
);
407 rc
= pmic_arb
->ver_ops
->offset(pmic_arb
, sid
, addr
,
408 PMIC_ARB_CHANNEL_RW
);
413 if (bc
>= PMIC_ARB_MAX_TRANS_BYTES
) {
414 dev_err(&ctrl
->dev
, "pmic-arb supports 1..%d bytes per trans, but:%zu requested",
415 PMIC_ARB_MAX_TRANS_BYTES
, len
);
419 /* Check the opcode */
420 if (opc
>= 0x40 && opc
<= 0x5F)
421 opc
= PMIC_ARB_OP_WRITE
;
422 else if (opc
<= 0x0F)
423 opc
= PMIC_ARB_OP_EXT_WRITE
;
424 else if (opc
>= 0x30 && opc
<= 0x37)
425 opc
= PMIC_ARB_OP_EXT_WRITEL
;
426 else if (opc
>= 0x80)
427 opc
= PMIC_ARB_OP_ZERO_WRITE
;
431 cmd
= pmic_arb
->ver_ops
->fmt_cmd(opc
, sid
, addr
, bc
);
433 /* Write data to FIFOs */
434 raw_spin_lock_irqsave(&pmic_arb
->lock
, flags
);
435 pmic_arb_write_data(pmic_arb
, buf
, offset
+ PMIC_ARB_WDATA0
,
438 pmic_arb_write_data(pmic_arb
, buf
+ 4, offset
+ PMIC_ARB_WDATA1
,
441 /* Start the transaction */
442 pmic_arb_base_write(pmic_arb
, offset
+ PMIC_ARB_CMD
, cmd
);
443 rc
= pmic_arb_wait_for_done(ctrl
, pmic_arb
->wr_base
, sid
, addr
,
444 PMIC_ARB_CHANNEL_RW
);
445 raw_spin_unlock_irqrestore(&pmic_arb
->lock
, flags
);
451 QPNPINT_REG_RT_STS
= 0x10,
452 QPNPINT_REG_SET_TYPE
= 0x11,
453 QPNPINT_REG_POLARITY_HIGH
= 0x12,
454 QPNPINT_REG_POLARITY_LOW
= 0x13,
455 QPNPINT_REG_LATCHED_CLR
= 0x14,
456 QPNPINT_REG_EN_SET
= 0x15,
457 QPNPINT_REG_EN_CLR
= 0x16,
458 QPNPINT_REG_LATCHED_STS
= 0x18,
461 struct spmi_pmic_arb_qpnpint_type
{
462 u8 type
; /* 1 -> edge */
467 /* Simplified accessor functions for irqchip callbacks */
468 static void qpnpint_spmi_write(struct irq_data
*d
, u8 reg
, void *buf
,
471 struct spmi_pmic_arb
*pmic_arb
= irq_data_get_irq_chip_data(d
);
472 u8 sid
= hwirq_to_sid(d
->hwirq
);
473 u8 per
= hwirq_to_per(d
->hwirq
);
475 if (pmic_arb_write_cmd(pmic_arb
->spmic
, SPMI_CMD_EXT_WRITEL
, sid
,
476 (per
<< 8) + reg
, buf
, len
))
477 dev_err_ratelimited(&pmic_arb
->spmic
->dev
, "failed irqchip transaction on %x\n",
481 static void qpnpint_spmi_read(struct irq_data
*d
, u8 reg
, void *buf
, size_t len
)
483 struct spmi_pmic_arb
*pmic_arb
= irq_data_get_irq_chip_data(d
);
484 u8 sid
= hwirq_to_sid(d
->hwirq
);
485 u8 per
= hwirq_to_per(d
->hwirq
);
487 if (pmic_arb_read_cmd(pmic_arb
->spmic
, SPMI_CMD_EXT_READL
, sid
,
488 (per
<< 8) + reg
, buf
, len
))
489 dev_err_ratelimited(&pmic_arb
->spmic
->dev
, "failed irqchip transaction on %x\n",
493 static void cleanup_irq(struct spmi_pmic_arb
*pmic_arb
, u16 apid
, int id
)
495 u16 ppid
= pmic_arb
->apid_data
[apid
].ppid
;
497 u8 per
= ppid
& 0xFF;
498 u8 irq_mask
= BIT(id
);
500 writel_relaxed(irq_mask
, pmic_arb
->ver_ops
->irq_clear(pmic_arb
, apid
));
502 if (pmic_arb_write_cmd(pmic_arb
->spmic
, SPMI_CMD_EXT_WRITEL
, sid
,
503 (per
<< 8) + QPNPINT_REG_LATCHED_CLR
, &irq_mask
, 1))
504 dev_err_ratelimited(&pmic_arb
->spmic
->dev
, "failed to ack irq_mask = 0x%x for ppid = %x\n",
507 if (pmic_arb_write_cmd(pmic_arb
->spmic
, SPMI_CMD_EXT_WRITEL
, sid
,
508 (per
<< 8) + QPNPINT_REG_EN_CLR
, &irq_mask
, 1))
509 dev_err_ratelimited(&pmic_arb
->spmic
->dev
, "failed to ack irq_mask = 0x%x for ppid = %x\n",
513 static void periph_interrupt(struct spmi_pmic_arb
*pmic_arb
, u16 apid
)
518 u8 sid
= (pmic_arb
->apid_data
[apid
].ppid
>> 8) & 0xF;
519 u8 per
= pmic_arb
->apid_data
[apid
].ppid
& 0xFF;
521 status
= readl_relaxed(pmic_arb
->ver_ops
->irq_status(pmic_arb
, apid
));
523 id
= ffs(status
) - 1;
525 irq
= irq_find_mapping(pmic_arb
->domain
,
526 spec_to_hwirq(sid
, per
, id
, apid
));
528 cleanup_irq(pmic_arb
, apid
, id
);
531 generic_handle_irq(irq
);
535 static void pmic_arb_chained_irq(struct irq_desc
*desc
)
537 struct spmi_pmic_arb
*pmic_arb
= irq_desc_get_handler_data(desc
);
538 const struct pmic_arb_ver_ops
*ver_ops
= pmic_arb
->ver_ops
;
539 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
540 int first
= pmic_arb
->min_apid
>> 5;
541 int last
= pmic_arb
->max_apid
>> 5;
542 u8 ee
= pmic_arb
->ee
;
546 chained_irq_enter(chip
, desc
);
548 for (i
= first
; i
<= last
; ++i
) {
549 status
= readl_relaxed(
550 ver_ops
->owner_acc_status(pmic_arb
, ee
, i
));
552 id
= ffs(status
) - 1;
555 enable
= readl_relaxed(
556 ver_ops
->acc_enable(pmic_arb
, apid
));
557 if (enable
& SPMI_PIC_ACC_ENABLE_BIT
)
558 periph_interrupt(pmic_arb
, apid
);
562 chained_irq_exit(chip
, desc
);
565 static void qpnpint_irq_ack(struct irq_data
*d
)
567 struct spmi_pmic_arb
*pmic_arb
= irq_data_get_irq_chip_data(d
);
568 u8 irq
= hwirq_to_irq(d
->hwirq
);
569 u16 apid
= hwirq_to_apid(d
->hwirq
);
572 writel_relaxed(BIT(irq
), pmic_arb
->ver_ops
->irq_clear(pmic_arb
, apid
));
575 qpnpint_spmi_write(d
, QPNPINT_REG_LATCHED_CLR
, &data
, 1);
578 static void qpnpint_irq_mask(struct irq_data
*d
)
580 u8 irq
= hwirq_to_irq(d
->hwirq
);
583 qpnpint_spmi_write(d
, QPNPINT_REG_EN_CLR
, &data
, 1);
586 static void qpnpint_irq_unmask(struct irq_data
*d
)
588 struct spmi_pmic_arb
*pmic_arb
= irq_data_get_irq_chip_data(d
);
589 const struct pmic_arb_ver_ops
*ver_ops
= pmic_arb
->ver_ops
;
590 u8 irq
= hwirq_to_irq(d
->hwirq
);
591 u16 apid
= hwirq_to_apid(d
->hwirq
);
594 writel_relaxed(SPMI_PIC_ACC_ENABLE_BIT
,
595 ver_ops
->acc_enable(pmic_arb
, apid
));
597 qpnpint_spmi_read(d
, QPNPINT_REG_EN_SET
, &buf
[0], 1);
598 if (!(buf
[0] & BIT(irq
))) {
600 * Since the interrupt is currently disabled, write to both the
601 * LATCHED_CLR and EN_SET registers so that a spurious interrupt
602 * cannot be triggered when the interrupt is enabled
606 qpnpint_spmi_write(d
, QPNPINT_REG_LATCHED_CLR
, &buf
, 2);
610 static int qpnpint_irq_set_type(struct irq_data
*d
, unsigned int flow_type
)
612 struct spmi_pmic_arb_qpnpint_type type
;
613 irq_flow_handler_t flow_handler
;
614 u8 irq
= hwirq_to_irq(d
->hwirq
);
616 qpnpint_spmi_read(d
, QPNPINT_REG_SET_TYPE
, &type
, sizeof(type
));
618 if (flow_type
& (IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
)) {
619 type
.type
|= BIT(irq
);
620 if (flow_type
& IRQF_TRIGGER_RISING
)
621 type
.polarity_high
|= BIT(irq
);
622 if (flow_type
& IRQF_TRIGGER_FALLING
)
623 type
.polarity_low
|= BIT(irq
);
625 flow_handler
= handle_edge_irq
;
627 if ((flow_type
& (IRQF_TRIGGER_HIGH
)) &&
628 (flow_type
& (IRQF_TRIGGER_LOW
)))
631 type
.type
&= ~BIT(irq
); /* level trig */
632 if (flow_type
& IRQF_TRIGGER_HIGH
)
633 type
.polarity_high
|= BIT(irq
);
635 type
.polarity_low
|= BIT(irq
);
637 flow_handler
= handle_level_irq
;
640 qpnpint_spmi_write(d
, QPNPINT_REG_SET_TYPE
, &type
, sizeof(type
));
641 irq_set_handler_locked(d
, flow_handler
);
646 static int qpnpint_irq_set_wake(struct irq_data
*d
, unsigned int on
)
648 struct spmi_pmic_arb
*pmic_arb
= irq_data_get_irq_chip_data(d
);
650 return irq_set_irq_wake(pmic_arb
->irq
, on
);
653 static int qpnpint_get_irqchip_state(struct irq_data
*d
,
654 enum irqchip_irq_state which
,
657 u8 irq
= hwirq_to_irq(d
->hwirq
);
660 if (which
!= IRQCHIP_STATE_LINE_LEVEL
)
663 qpnpint_spmi_read(d
, QPNPINT_REG_RT_STS
, &status
, 1);
664 *state
= !!(status
& BIT(irq
));
669 static int qpnpint_irq_request_resources(struct irq_data
*d
)
671 struct spmi_pmic_arb
*pmic_arb
= irq_data_get_irq_chip_data(d
);
672 u16 periph
= hwirq_to_per(d
->hwirq
);
673 u16 apid
= hwirq_to_apid(d
->hwirq
);
674 u16 sid
= hwirq_to_sid(d
->hwirq
);
675 u16 irq
= hwirq_to_irq(d
->hwirq
);
677 if (pmic_arb
->apid_data
[apid
].irq_ee
!= pmic_arb
->ee
) {
678 dev_err(&pmic_arb
->spmic
->dev
, "failed to xlate sid = %#x, periph = %#x, irq = %u: ee=%u but owner=%u\n",
679 sid
, periph
, irq
, pmic_arb
->ee
,
680 pmic_arb
->apid_data
[apid
].irq_ee
);
687 static struct irq_chip pmic_arb_irqchip
= {
689 .irq_ack
= qpnpint_irq_ack
,
690 .irq_mask
= qpnpint_irq_mask
,
691 .irq_unmask
= qpnpint_irq_unmask
,
692 .irq_set_type
= qpnpint_irq_set_type
,
693 .irq_set_wake
= qpnpint_irq_set_wake
,
694 .irq_get_irqchip_state
= qpnpint_get_irqchip_state
,
695 .irq_request_resources
= qpnpint_irq_request_resources
,
696 .flags
= IRQCHIP_MASK_ON_SUSPEND
,
699 static int qpnpint_irq_domain_dt_translate(struct irq_domain
*d
,
700 struct device_node
*controller
,
702 unsigned int intsize
,
703 unsigned long *out_hwirq
,
704 unsigned int *out_type
)
706 struct spmi_pmic_arb
*pmic_arb
= d
->host_data
;
710 dev_dbg(&pmic_arb
->spmic
->dev
, "intspec[0] 0x%1x intspec[1] 0x%02x intspec[2] 0x%02x\n",
711 intspec
[0], intspec
[1], intspec
[2]);
713 if (irq_domain_get_of_node(d
) != controller
)
717 if (intspec
[0] > 0xF || intspec
[1] > 0xFF || intspec
[2] > 0x7)
720 ppid
= intspec
[0] << 8 | intspec
[1];
721 rc
= pmic_arb
->ver_ops
->ppid_to_apid(pmic_arb
, ppid
);
723 dev_err(&pmic_arb
->spmic
->dev
, "failed to xlate sid = %#x, periph = %#x, irq = %u rc = %d\n",
724 intspec
[0], intspec
[1], intspec
[2], rc
);
729 /* Keep track of {max,min}_apid for bounding search during interrupt */
730 if (apid
> pmic_arb
->max_apid
)
731 pmic_arb
->max_apid
= apid
;
732 if (apid
< pmic_arb
->min_apid
)
733 pmic_arb
->min_apid
= apid
;
735 *out_hwirq
= spec_to_hwirq(intspec
[0], intspec
[1], intspec
[2], apid
);
736 *out_type
= intspec
[3] & IRQ_TYPE_SENSE_MASK
;
738 dev_dbg(&pmic_arb
->spmic
->dev
, "out_hwirq = %lu\n", *out_hwirq
);
743 static int qpnpint_irq_domain_map(struct irq_domain
*d
,
745 irq_hw_number_t hwirq
)
747 struct spmi_pmic_arb
*pmic_arb
= d
->host_data
;
749 dev_dbg(&pmic_arb
->spmic
->dev
, "virq = %u, hwirq = %lu\n", virq
, hwirq
);
751 irq_set_chip_and_handler(virq
, &pmic_arb_irqchip
, handle_level_irq
);
752 irq_set_chip_data(virq
, d
->host_data
);
753 irq_set_noprobe(virq
);
757 static int pmic_arb_ppid_to_apid_v1(struct spmi_pmic_arb
*pmic_arb
, u16 ppid
)
759 u32
*mapping_table
= pmic_arb
->mapping_table
;
765 apid_valid
= pmic_arb
->ppid_to_apid
[ppid
];
766 if (apid_valid
& PMIC_ARB_APID_VALID
) {
767 apid
= apid_valid
& ~PMIC_ARB_APID_VALID
;
771 for (i
= 0; i
< SPMI_MAPPING_TABLE_TREE_DEPTH
; ++i
) {
772 if (!test_and_set_bit(index
, pmic_arb
->mapping_table_valid
))
773 mapping_table
[index
] = readl_relaxed(pmic_arb
->cnfg
+
774 SPMI_MAPPING_TABLE_REG(index
));
776 data
= mapping_table
[index
];
778 if (ppid
& BIT(SPMI_MAPPING_BIT_INDEX(data
))) {
779 if (SPMI_MAPPING_BIT_IS_1_FLAG(data
)) {
780 index
= SPMI_MAPPING_BIT_IS_1_RESULT(data
);
782 apid
= SPMI_MAPPING_BIT_IS_1_RESULT(data
);
783 pmic_arb
->ppid_to_apid
[ppid
]
784 = apid
| PMIC_ARB_APID_VALID
;
785 pmic_arb
->apid_data
[apid
].ppid
= ppid
;
789 if (SPMI_MAPPING_BIT_IS_0_FLAG(data
)) {
790 index
= SPMI_MAPPING_BIT_IS_0_RESULT(data
);
792 apid
= SPMI_MAPPING_BIT_IS_0_RESULT(data
);
793 pmic_arb
->ppid_to_apid
[ppid
]
794 = apid
| PMIC_ARB_APID_VALID
;
795 pmic_arb
->apid_data
[apid
].ppid
= ppid
;
804 /* v1 offset per ee */
805 static int pmic_arb_offset_v1(struct spmi_pmic_arb
*pmic_arb
, u8 sid
, u16 addr
,
806 enum pmic_arb_channel ch_type
)
808 return 0x800 + 0x80 * pmic_arb
->channel
;
811 static u16
pmic_arb_find_apid(struct spmi_pmic_arb
*pmic_arb
, u16 ppid
)
813 struct apid_data
*apidd
= &pmic_arb
->apid_data
[pmic_arb
->last_apid
];
817 for (apid
= pmic_arb
->last_apid
; ; apid
++, apidd
++) {
818 offset
= pmic_arb
->ver_ops
->apid_map_offset(apid
);
819 if (offset
>= pmic_arb
->core_size
)
822 regval
= readl_relaxed(pmic_arb
->cnfg
+
823 SPMI_OWNERSHIP_TABLE_REG(apid
));
824 apidd
->irq_ee
= SPMI_OWNERSHIP_PERIPH2OWNER(regval
);
825 apidd
->write_ee
= apidd
->irq_ee
;
827 regval
= readl_relaxed(pmic_arb
->core
+ offset
);
831 id
= (regval
>> 8) & PMIC_ARB_PPID_MASK
;
832 pmic_arb
->ppid_to_apid
[id
] = apid
| PMIC_ARB_APID_VALID
;
835 apid
|= PMIC_ARB_APID_VALID
;
839 pmic_arb
->last_apid
= apid
& ~PMIC_ARB_APID_VALID
;
844 static int pmic_arb_ppid_to_apid_v2(struct spmi_pmic_arb
*pmic_arb
, u16 ppid
)
848 apid_valid
= pmic_arb
->ppid_to_apid
[ppid
];
849 if (!(apid_valid
& PMIC_ARB_APID_VALID
))
850 apid_valid
= pmic_arb_find_apid(pmic_arb
, ppid
);
851 if (!(apid_valid
& PMIC_ARB_APID_VALID
))
854 return apid_valid
& ~PMIC_ARB_APID_VALID
;
857 static int pmic_arb_read_apid_map_v5(struct spmi_pmic_arb
*pmic_arb
)
859 struct apid_data
*apidd
= pmic_arb
->apid_data
;
860 struct apid_data
*prev_apidd
;
862 bool valid
, is_irq_ee
;
866 * In order to allow multiple EEs to write to a single PPID in arbiter
867 * version 5, there is more than one APID mapped to each PPID.
868 * The owner field for each of these mappings specifies the EE which is
869 * allowed to write to the APID. The owner of the last (highest) APID
870 * for a given PPID will receive interrupts from the PPID.
872 for (i
= 0; ; i
++, apidd
++) {
873 offset
= pmic_arb
->ver_ops
->apid_map_offset(i
);
874 if (offset
>= pmic_arb
->core_size
)
877 regval
= readl_relaxed(pmic_arb
->core
+ offset
);
880 ppid
= (regval
>> 8) & PMIC_ARB_PPID_MASK
;
881 is_irq_ee
= PMIC_ARB_CHAN_IS_IRQ_OWNER(regval
);
883 regval
= readl_relaxed(pmic_arb
->cnfg
+
884 SPMI_OWNERSHIP_TABLE_REG(i
));
885 apidd
->write_ee
= SPMI_OWNERSHIP_PERIPH2OWNER(regval
);
887 apidd
->irq_ee
= is_irq_ee
? apidd
->write_ee
: INVALID_EE
;
889 valid
= pmic_arb
->ppid_to_apid
[ppid
] & PMIC_ARB_APID_VALID
;
890 apid
= pmic_arb
->ppid_to_apid
[ppid
] & ~PMIC_ARB_APID_VALID
;
891 prev_apidd
= &pmic_arb
->apid_data
[apid
];
893 if (valid
&& is_irq_ee
&&
894 prev_apidd
->write_ee
== pmic_arb
->ee
) {
896 * Duplicate PPID mapping after the one for this EE;
897 * override the irq owner
899 prev_apidd
->irq_ee
= apidd
->irq_ee
;
900 } else if (!valid
|| is_irq_ee
) {
901 /* First PPID mapping or duplicate for another EE */
902 pmic_arb
->ppid_to_apid
[ppid
] = i
| PMIC_ARB_APID_VALID
;
906 pmic_arb
->last_apid
= i
;
909 /* Dump the mapping table for debug purposes. */
910 dev_dbg(&pmic_arb
->spmic
->dev
, "PPID APID Write-EE IRQ-EE\n");
911 for (ppid
= 0; ppid
< PMIC_ARB_MAX_PPID
; ppid
++) {
912 apid
= pmic_arb
->ppid_to_apid
[ppid
];
913 if (apid
& PMIC_ARB_APID_VALID
) {
914 apid
&= ~PMIC_ARB_APID_VALID
;
915 apidd
= &pmic_arb
->apid_data
[apid
];
916 dev_dbg(&pmic_arb
->spmic
->dev
, "%#03X %3u %2u %2u\n",
917 ppid
, apid
, apidd
->write_ee
, apidd
->irq_ee
);
924 static int pmic_arb_ppid_to_apid_v5(struct spmi_pmic_arb
*pmic_arb
, u16 ppid
)
926 if (!(pmic_arb
->ppid_to_apid
[ppid
] & PMIC_ARB_APID_VALID
))
929 return pmic_arb
->ppid_to_apid
[ppid
] & ~PMIC_ARB_APID_VALID
;
932 /* v2 offset per ppid and per ee */
933 static int pmic_arb_offset_v2(struct spmi_pmic_arb
*pmic_arb
, u8 sid
, u16 addr
,
934 enum pmic_arb_channel ch_type
)
940 ppid
= sid
<< 8 | ((addr
>> 8) & 0xFF);
941 rc
= pmic_arb_ppid_to_apid_v2(pmic_arb
, ppid
);
946 return 0x1000 * pmic_arb
->ee
+ 0x8000 * apid
;
950 * v5 offset per ee and per apid for observer channels and per apid for
951 * read/write channels.
953 static int pmic_arb_offset_v5(struct spmi_pmic_arb
*pmic_arb
, u8 sid
, u16 addr
,
954 enum pmic_arb_channel ch_type
)
959 u16 ppid
= (sid
<< 8) | (addr
>> 8);
961 rc
= pmic_arb_ppid_to_apid_v5(pmic_arb
, ppid
);
967 case PMIC_ARB_CHANNEL_OBS
:
968 offset
= 0x10000 * pmic_arb
->ee
+ 0x80 * apid
;
970 case PMIC_ARB_CHANNEL_RW
:
971 offset
= 0x10000 * apid
;
978 static u32
pmic_arb_fmt_cmd_v1(u8 opc
, u8 sid
, u16 addr
, u8 bc
)
980 return (opc
<< 27) | ((sid
& 0xf) << 20) | (addr
<< 4) | (bc
& 0x7);
983 static u32
pmic_arb_fmt_cmd_v2(u8 opc
, u8 sid
, u16 addr
, u8 bc
)
985 return (opc
<< 27) | ((addr
& 0xff) << 4) | (bc
& 0x7);
988 static void __iomem
*
989 pmic_arb_owner_acc_status_v1(struct spmi_pmic_arb
*pmic_arb
, u8 m
, u16 n
)
991 return pmic_arb
->intr
+ 0x20 * m
+ 0x4 * n
;
994 static void __iomem
*
995 pmic_arb_owner_acc_status_v2(struct spmi_pmic_arb
*pmic_arb
, u8 m
, u16 n
)
997 return pmic_arb
->intr
+ 0x100000 + 0x1000 * m
+ 0x4 * n
;
1000 static void __iomem
*
1001 pmic_arb_owner_acc_status_v3(struct spmi_pmic_arb
*pmic_arb
, u8 m
, u16 n
)
1003 return pmic_arb
->intr
+ 0x200000 + 0x1000 * m
+ 0x4 * n
;
1006 static void __iomem
*
1007 pmic_arb_owner_acc_status_v5(struct spmi_pmic_arb
*pmic_arb
, u8 m
, u16 n
)
1009 return pmic_arb
->intr
+ 0x10000 * m
+ 0x4 * n
;
1012 static void __iomem
*
1013 pmic_arb_acc_enable_v1(struct spmi_pmic_arb
*pmic_arb
, u16 n
)
1015 return pmic_arb
->intr
+ 0x200 + 0x4 * n
;
1018 static void __iomem
*
1019 pmic_arb_acc_enable_v2(struct spmi_pmic_arb
*pmic_arb
, u16 n
)
1021 return pmic_arb
->intr
+ 0x1000 * n
;
1024 static void __iomem
*
1025 pmic_arb_acc_enable_v5(struct spmi_pmic_arb
*pmic_arb
, u16 n
)
1027 return pmic_arb
->wr_base
+ 0x100 + 0x10000 * n
;
1030 static void __iomem
*
1031 pmic_arb_irq_status_v1(struct spmi_pmic_arb
*pmic_arb
, u16 n
)
1033 return pmic_arb
->intr
+ 0x600 + 0x4 * n
;
1036 static void __iomem
*
1037 pmic_arb_irq_status_v2(struct spmi_pmic_arb
*pmic_arb
, u16 n
)
1039 return pmic_arb
->intr
+ 0x4 + 0x1000 * n
;
1042 static void __iomem
*
1043 pmic_arb_irq_status_v5(struct spmi_pmic_arb
*pmic_arb
, u16 n
)
1045 return pmic_arb
->wr_base
+ 0x104 + 0x10000 * n
;
1048 static void __iomem
*
1049 pmic_arb_irq_clear_v1(struct spmi_pmic_arb
*pmic_arb
, u16 n
)
1051 return pmic_arb
->intr
+ 0xA00 + 0x4 * n
;
1054 static void __iomem
*
1055 pmic_arb_irq_clear_v2(struct spmi_pmic_arb
*pmic_arb
, u16 n
)
1057 return pmic_arb
->intr
+ 0x8 + 0x1000 * n
;
1060 static void __iomem
*
1061 pmic_arb_irq_clear_v5(struct spmi_pmic_arb
*pmic_arb
, u16 n
)
1063 return pmic_arb
->wr_base
+ 0x108 + 0x10000 * n
;
1066 static u32
pmic_arb_apid_map_offset_v2(u16 n
)
1068 return 0x800 + 0x4 * n
;
1071 static u32
pmic_arb_apid_map_offset_v5(u16 n
)
1073 return 0x900 + 0x4 * n
;
1076 static const struct pmic_arb_ver_ops pmic_arb_v1
= {
1078 .ppid_to_apid
= pmic_arb_ppid_to_apid_v1
,
1079 .non_data_cmd
= pmic_arb_non_data_cmd_v1
,
1080 .offset
= pmic_arb_offset_v1
,
1081 .fmt_cmd
= pmic_arb_fmt_cmd_v1
,
1082 .owner_acc_status
= pmic_arb_owner_acc_status_v1
,
1083 .acc_enable
= pmic_arb_acc_enable_v1
,
1084 .irq_status
= pmic_arb_irq_status_v1
,
1085 .irq_clear
= pmic_arb_irq_clear_v1
,
1086 .apid_map_offset
= pmic_arb_apid_map_offset_v2
,
1089 static const struct pmic_arb_ver_ops pmic_arb_v2
= {
1091 .ppid_to_apid
= pmic_arb_ppid_to_apid_v2
,
1092 .non_data_cmd
= pmic_arb_non_data_cmd_v2
,
1093 .offset
= pmic_arb_offset_v2
,
1094 .fmt_cmd
= pmic_arb_fmt_cmd_v2
,
1095 .owner_acc_status
= pmic_arb_owner_acc_status_v2
,
1096 .acc_enable
= pmic_arb_acc_enable_v2
,
1097 .irq_status
= pmic_arb_irq_status_v2
,
1098 .irq_clear
= pmic_arb_irq_clear_v2
,
1099 .apid_map_offset
= pmic_arb_apid_map_offset_v2
,
1102 static const struct pmic_arb_ver_ops pmic_arb_v3
= {
1104 .ppid_to_apid
= pmic_arb_ppid_to_apid_v2
,
1105 .non_data_cmd
= pmic_arb_non_data_cmd_v2
,
1106 .offset
= pmic_arb_offset_v2
,
1107 .fmt_cmd
= pmic_arb_fmt_cmd_v2
,
1108 .owner_acc_status
= pmic_arb_owner_acc_status_v3
,
1109 .acc_enable
= pmic_arb_acc_enable_v2
,
1110 .irq_status
= pmic_arb_irq_status_v2
,
1111 .irq_clear
= pmic_arb_irq_clear_v2
,
1112 .apid_map_offset
= pmic_arb_apid_map_offset_v2
,
1115 static const struct pmic_arb_ver_ops pmic_arb_v5
= {
1117 .ppid_to_apid
= pmic_arb_ppid_to_apid_v5
,
1118 .non_data_cmd
= pmic_arb_non_data_cmd_v2
,
1119 .offset
= pmic_arb_offset_v5
,
1120 .fmt_cmd
= pmic_arb_fmt_cmd_v2
,
1121 .owner_acc_status
= pmic_arb_owner_acc_status_v5
,
1122 .acc_enable
= pmic_arb_acc_enable_v5
,
1123 .irq_status
= pmic_arb_irq_status_v5
,
1124 .irq_clear
= pmic_arb_irq_clear_v5
,
1125 .apid_map_offset
= pmic_arb_apid_map_offset_v5
,
1128 static const struct irq_domain_ops pmic_arb_irq_domain_ops
= {
1129 .map
= qpnpint_irq_domain_map
,
1130 .xlate
= qpnpint_irq_domain_dt_translate
,
1133 static int spmi_pmic_arb_probe(struct platform_device
*pdev
)
1135 struct spmi_pmic_arb
*pmic_arb
;
1136 struct spmi_controller
*ctrl
;
1137 struct resource
*res
;
1140 u32 channel
, ee
, hw_ver
;
1143 ctrl
= spmi_controller_alloc(&pdev
->dev
, sizeof(*pmic_arb
));
1147 pmic_arb
= spmi_controller_get_drvdata(ctrl
);
1148 pmic_arb
->spmic
= ctrl
;
1150 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "core");
1151 core
= devm_ioremap_resource(&ctrl
->dev
, res
);
1153 err
= PTR_ERR(core
);
1157 pmic_arb
->core_size
= resource_size(res
);
1159 pmic_arb
->ppid_to_apid
= devm_kcalloc(&ctrl
->dev
, PMIC_ARB_MAX_PPID
,
1160 sizeof(*pmic_arb
->ppid_to_apid
),
1162 if (!pmic_arb
->ppid_to_apid
) {
1167 hw_ver
= readl_relaxed(core
+ PMIC_ARB_VERSION
);
1169 if (hw_ver
< PMIC_ARB_VERSION_V2_MIN
) {
1170 pmic_arb
->ver_ops
= &pmic_arb_v1
;
1171 pmic_arb
->wr_base
= core
;
1172 pmic_arb
->rd_base
= core
;
1174 pmic_arb
->core
= core
;
1176 if (hw_ver
< PMIC_ARB_VERSION_V3_MIN
)
1177 pmic_arb
->ver_ops
= &pmic_arb_v2
;
1178 else if (hw_ver
< PMIC_ARB_VERSION_V5_MIN
)
1179 pmic_arb
->ver_ops
= &pmic_arb_v3
;
1181 pmic_arb
->ver_ops
= &pmic_arb_v5
;
1183 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
1185 pmic_arb
->rd_base
= devm_ioremap_resource(&ctrl
->dev
, res
);
1186 if (IS_ERR(pmic_arb
->rd_base
)) {
1187 err
= PTR_ERR(pmic_arb
->rd_base
);
1191 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
1193 pmic_arb
->wr_base
= devm_ioremap_resource(&ctrl
->dev
, res
);
1194 if (IS_ERR(pmic_arb
->wr_base
)) {
1195 err
= PTR_ERR(pmic_arb
->wr_base
);
1200 dev_info(&ctrl
->dev
, "PMIC arbiter version %s (0x%x)\n",
1201 pmic_arb
->ver_ops
->ver_str
, hw_ver
);
1203 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "intr");
1204 pmic_arb
->intr
= devm_ioremap_resource(&ctrl
->dev
, res
);
1205 if (IS_ERR(pmic_arb
->intr
)) {
1206 err
= PTR_ERR(pmic_arb
->intr
);
1210 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "cnfg");
1211 pmic_arb
->cnfg
= devm_ioremap_resource(&ctrl
->dev
, res
);
1212 if (IS_ERR(pmic_arb
->cnfg
)) {
1213 err
= PTR_ERR(pmic_arb
->cnfg
);
1217 pmic_arb
->irq
= platform_get_irq_byname(pdev
, "periph_irq");
1218 if (pmic_arb
->irq
< 0) {
1219 err
= pmic_arb
->irq
;
1223 err
= of_property_read_u32(pdev
->dev
.of_node
, "qcom,channel", &channel
);
1225 dev_err(&pdev
->dev
, "channel unspecified.\n");
1230 dev_err(&pdev
->dev
, "invalid channel (%u) specified.\n",
1236 pmic_arb
->channel
= channel
;
1238 err
= of_property_read_u32(pdev
->dev
.of_node
, "qcom,ee", &ee
);
1240 dev_err(&pdev
->dev
, "EE unspecified.\n");
1245 dev_err(&pdev
->dev
, "invalid EE (%u) specified\n", ee
);
1251 mapping_table
= devm_kcalloc(&ctrl
->dev
, PMIC_ARB_MAX_PERIPHS
,
1252 sizeof(*mapping_table
), GFP_KERNEL
);
1253 if (!mapping_table
) {
1258 pmic_arb
->mapping_table
= mapping_table
;
1259 /* Initialize max_apid/min_apid to the opposite bounds, during
1260 * the irq domain translation, we are sure to update these */
1261 pmic_arb
->max_apid
= 0;
1262 pmic_arb
->min_apid
= PMIC_ARB_MAX_PERIPHS
- 1;
1264 platform_set_drvdata(pdev
, ctrl
);
1265 raw_spin_lock_init(&pmic_arb
->lock
);
1267 ctrl
->cmd
= pmic_arb_cmd
;
1268 ctrl
->read_cmd
= pmic_arb_read_cmd
;
1269 ctrl
->write_cmd
= pmic_arb_write_cmd
;
1271 if (hw_ver
>= PMIC_ARB_VERSION_V5_MIN
) {
1272 err
= pmic_arb_read_apid_map_v5(pmic_arb
);
1274 dev_err(&pdev
->dev
, "could not read APID->PPID mapping table, rc= %d\n",
1280 dev_dbg(&pdev
->dev
, "adding irq domain\n");
1281 pmic_arb
->domain
= irq_domain_add_tree(pdev
->dev
.of_node
,
1282 &pmic_arb_irq_domain_ops
, pmic_arb
);
1283 if (!pmic_arb
->domain
) {
1284 dev_err(&pdev
->dev
, "unable to create irq_domain\n");
1289 irq_set_chained_handler_and_data(pmic_arb
->irq
, pmic_arb_chained_irq
,
1291 err
= spmi_controller_add(ctrl
);
1293 goto err_domain_remove
;
1298 irq_set_chained_handler_and_data(pmic_arb
->irq
, NULL
, NULL
);
1299 irq_domain_remove(pmic_arb
->domain
);
1301 spmi_controller_put(ctrl
);
1305 static int spmi_pmic_arb_remove(struct platform_device
*pdev
)
1307 struct spmi_controller
*ctrl
= platform_get_drvdata(pdev
);
1308 struct spmi_pmic_arb
*pmic_arb
= spmi_controller_get_drvdata(ctrl
);
1309 spmi_controller_remove(ctrl
);
1310 irq_set_chained_handler_and_data(pmic_arb
->irq
, NULL
, NULL
);
1311 irq_domain_remove(pmic_arb
->domain
);
1312 spmi_controller_put(ctrl
);
1316 static const struct of_device_id spmi_pmic_arb_match_table
[] = {
1317 { .compatible
= "qcom,spmi-pmic-arb", },
1320 MODULE_DEVICE_TABLE(of
, spmi_pmic_arb_match_table
);
1322 static struct platform_driver spmi_pmic_arb_driver
= {
1323 .probe
= spmi_pmic_arb_probe
,
1324 .remove
= spmi_pmic_arb_remove
,
1326 .name
= "spmi_pmic_arb",
1327 .of_match_table
= spmi_pmic_arb_match_table
,
1330 module_platform_driver(spmi_pmic_arb_driver
);
1332 MODULE_LICENSE("GPL v2");
1333 MODULE_ALIAS("platform:spmi_pmic_arb");