arm64: dts: ti: k3-am654: Add McSPI DT nodes
[linux-2.6-block.git] / drivers / spmi / spmi-pmic-arb.c
CommitLineData
d0c6ae41 1/*
53d296b5 2 * Copyright (c) 2012-2015, 2017, The Linux Foundation. All rights reserved.
39ae93e3
KH
3 *
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.
7 *
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.
12 */
987a9f12 13#include <linux/bitmap.h>
39ae93e3
KH
14#include <linux/delay.h>
15#include <linux/err.h>
16#include <linux/interrupt.h>
17#include <linux/io.h>
67b563f1
JC
18#include <linux/irqchip/chained_irq.h>
19#include <linux/irqdomain.h>
20#include <linux/irq.h>
39ae93e3
KH
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/of.h>
24#include <linux/platform_device.h>
25#include <linux/slab.h>
26#include <linux/spmi.h>
27
28/* PMIC Arbiter configuration registers */
29#define PMIC_ARB_VERSION 0x0000
d0c6ae41 30#define PMIC_ARB_VERSION_V2_MIN 0x20010000
319f6884 31#define PMIC_ARB_VERSION_V3_MIN 0x30000000
40f318f0 32#define PMIC_ARB_VERSION_V5_MIN 0x50000000
39ae93e3
KH
33#define PMIC_ARB_INT_EN 0x0004
34
d0c6ae41
GA
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
39ae93e3
KH
43
44/* Mapping Table */
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)
51
39ae93e3 52#define SPMI_MAPPING_TABLE_TREE_DEPTH 16 /* Maximum of 16-bits */
987a9f12 53#define PMIC_ARB_MAX_PPID BIT(12) /* PPID is 12bit */
02abec36 54#define PMIC_ARB_APID_VALID BIT(15)
40f318f0
DC
55#define PMIC_ARB_CHAN_IS_IRQ_OWNER(reg) ((reg) & BIT(24))
56#define INVALID_EE 0xFF
39ae93e3
KH
57
58/* Ownership Table */
59#define SPMI_OWNERSHIP_TABLE_REG(N) (0x0700 + (4 * (N)))
60#define SPMI_OWNERSHIP_PERIPH2OWNER(X) ((X) & 0x7)
61
62/* Channel Status fields */
63enum pmic_arb_chnl_status {
111a10bf
AD
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),
39ae93e3
KH
68};
69
70/* Command register fields */
71#define PMIC_ARB_CMD_MAX_BYTE_COUNT 8
72
73/* Command Opcodes */
74enum 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,
89};
90
40f318f0
DC
91/*
92 * PMIC arbiter version 5 uses different register offsets for read/write vs
93 * observer channels.
94 */
95enum pmic_arb_channel {
96 PMIC_ARB_CHANNEL_RW,
97 PMIC_ARB_CHANNEL_OBS,
98};
99
39ae93e3 100/* Maximum number of support PMIC peripherals */
987a9f12 101#define PMIC_ARB_MAX_PERIPHS 512
39ae93e3
KH
102#define PMIC_ARB_TIMEOUT_US 100
103#define PMIC_ARB_MAX_TRANS_BYTES (8)
104
105#define PMIC_ARB_APID_MASK 0xFF
106#define PMIC_ARB_PPID_MASK 0xFFF
107
108/* interrupt enable bit */
109#define SPMI_PIC_ACC_ENABLE_BIT BIT(0)
110
02abec36 111#define spec_to_hwirq(slave_id, periph_id, irq_id, apid) \
319f6884
AD
112 ((((slave_id) & 0xF) << 28) | \
113 (((periph_id) & 0xFF) << 20) | \
114 (((irq_id) & 0x7) << 16) | \
115 (((apid) & 0x1FF) << 0))
116
02abec36
KG
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)
319f6884 121
d0c6ae41
GA
122struct pmic_arb_ver_ops;
123
6bc546e7
AD
124struct apid_data {
125 u16 ppid;
40f318f0
DC
126 u8 write_ee;
127 u8 irq_ee;
6bc546e7
AD
128};
129
39ae93e3 130/**
111a10bf 131 * spmi_pmic_arb - SPMI PMIC Arbiter object
39ae93e3 132 *
d0c6ae41
GA
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.
39ae93e3
KH
135 * @intr: address of the SPMI interrupt control registers.
136 * @cnfg: address of the PMIC Arbiter configuration registers.
137 * @lock: lock to synchronize accesses.
d0c6ae41 138 * @channel: execution environment channel to use for accesses.
67b563f1
JC
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
d0c6ae41 146 * @ver_ops: version dependent operations.
02abec36 147 * @ppid_to_apid in-memory copy of PPID -> APID mapping table.
39ae93e3 148 */
111a10bf 149struct spmi_pmic_arb {
d0c6ae41
GA
150 void __iomem *rd_base;
151 void __iomem *wr_base;
39ae93e3
KH
152 void __iomem *intr;
153 void __iomem *cnfg;
987a9f12
SB
154 void __iomem *core;
155 resource_size_t core_size;
39ae93e3
KH
156 raw_spinlock_t lock;
157 u8 channel;
67b563f1
JC
158 int irq;
159 u8 ee;
987a9f12
SB
160 u16 min_apid;
161 u16 max_apid;
162 u32 *mapping_table;
163 DECLARE_BITMAP(mapping_table_valid, PMIC_ARB_MAX_PERIPHS);
67b563f1
JC
164 struct irq_domain *domain;
165 struct spmi_controller *spmic;
d0c6ae41 166 const struct pmic_arb_ver_ops *ver_ops;
1ef1ce4e
AD
167 u16 *ppid_to_apid;
168 u16 last_apid;
6bc546e7 169 struct apid_data apid_data[PMIC_ARB_MAX_PERIPHS];
d0c6ae41
GA
170};
171
172/**
173 * pmic_arb_ver: version dependent functionality.
174 *
319f6884
AD
175 * @ver_str: version string.
176 * @ppid_to_apid: finds the apid for a given ppid.
d0c6ae41
GA
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.
e95d073c
KG
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.
40f318f0 190 * @apid_map_offset: offset of PMIC_ARB_REG_CHNLn
d0c6ae41
GA
191 */
192struct pmic_arb_ver_ops {
319f6884 193 const char *ver_str;
ff615ed9 194 int (*ppid_to_apid)(struct spmi_pmic_arb *pmic_arb, u16 ppid);
d0c6ae41 195 /* spmi commands (read_cmd, write_cmd, cmd) functionality */
40f318f0
DC
196 int (*offset)(struct spmi_pmic_arb *pmic_arb, u8 sid, u16 addr,
197 enum pmic_arb_channel ch_type);
d0c6ae41
GA
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) */
e95d073c
KG
201 void __iomem *(*owner_acc_status)(struct spmi_pmic_arb *pmic_arb, u8 m,
202 u16 n);
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);
40f318f0 206 u32 (*apid_map_offset)(u16 n);
39ae93e3
KH
207};
208
02abec36 209static inline void pmic_arb_base_write(struct spmi_pmic_arb *pmic_arb,
39ae93e3
KH
210 u32 offset, u32 val)
211{
02abec36 212 writel_relaxed(val, pmic_arb->wr_base + offset);
d0c6ae41
GA
213}
214
02abec36 215static inline void pmic_arb_set_rd_cmd(struct spmi_pmic_arb *pmic_arb,
d0c6ae41
GA
216 u32 offset, u32 val)
217{
02abec36 218 writel_relaxed(val, pmic_arb->rd_base + offset);
39ae93e3
KH
219}
220
221/**
02abec36 222 * pmic_arb_read_data: reads pmic-arb's register and copy 1..4 bytes to buf
39ae93e3
KH
223 * @bc: byte count -1. range: 0..3
224 * @reg: register's address
225 * @buf: output parameter, length must be bc + 1
226 */
02abec36
KG
227static void
228pmic_arb_read_data(struct spmi_pmic_arb *pmic_arb, u8 *buf, u32 reg, u8 bc)
39ae93e3 229{
02abec36 230 u32 data = __raw_readl(pmic_arb->rd_base + reg);
111a10bf 231
39ae93e3
KH
232 memcpy(buf, &data, (bc & 3) + 1);
233}
234
235/**
02abec36 236 * pmic_arb_write_data: write 1..4 bytes from buf to pmic-arb's register
39ae93e3
KH
237 * @bc: byte-count -1. range: 0..3.
238 * @reg: register's address.
239 * @buf: buffer to write. length must be bc + 1.
240 */
02abec36
KG
241static void pmic_arb_write_data(struct spmi_pmic_arb *pmic_arb, const u8 *buf,
242 u32 reg, u8 bc)
39ae93e3
KH
243{
244 u32 data = 0;
111a10bf 245
39ae93e3 246 memcpy(&data, buf, (bc & 3) + 1);
9f7a9a44 247 __raw_writel(data, pmic_arb->wr_base + reg);
39ae93e3
KH
248}
249
d0c6ae41 250static int pmic_arb_wait_for_done(struct spmi_controller *ctrl,
40f318f0
DC
251 void __iomem *base, u8 sid, u16 addr,
252 enum pmic_arb_channel ch_type)
39ae93e3 253{
02abec36 254 struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
39ae93e3
KH
255 u32 status = 0;
256 u32 timeout = PMIC_ARB_TIMEOUT_US;
987a9f12
SB
257 u32 offset;
258 int rc;
259
40f318f0 260 rc = pmic_arb->ver_ops->offset(pmic_arb, sid, addr, ch_type);
ff615ed9 261 if (rc < 0)
987a9f12
SB
262 return rc;
263
ff615ed9 264 offset = rc;
987a9f12 265 offset += PMIC_ARB_STATUS;
39ae93e3
KH
266
267 while (timeout--) {
d0c6ae41 268 status = readl_relaxed(base + offset);
39ae93e3
KH
269
270 if (status & PMIC_ARB_STATUS_DONE) {
271 if (status & PMIC_ARB_STATUS_DENIED) {
02abec36 272 dev_err(&ctrl->dev, "%s: transaction denied (0x%x)\n",
39ae93e3
KH
273 __func__, status);
274 return -EPERM;
275 }
276
277 if (status & PMIC_ARB_STATUS_FAILURE) {
02abec36 278 dev_err(&ctrl->dev, "%s: transaction failed (0x%x)\n",
39ae93e3
KH
279 __func__, status);
280 return -EIO;
281 }
282
283 if (status & PMIC_ARB_STATUS_DROPPED) {
02abec36 284 dev_err(&ctrl->dev, "%s: transaction dropped (0x%x)\n",
39ae93e3
KH
285 __func__, status);
286 return -EIO;
287 }
288
289 return 0;
290 }
291 udelay(1);
292 }
293
02abec36 294 dev_err(&ctrl->dev, "%s: timeout, status 0x%x\n",
39ae93e3
KH
295 __func__, status);
296 return -ETIMEDOUT;
297}
298
d0c6ae41
GA
299static int
300pmic_arb_non_data_cmd_v1(struct spmi_controller *ctrl, u8 opc, u8 sid)
39ae93e3 301{
02abec36 302 struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
39ae93e3
KH
303 unsigned long flags;
304 u32 cmd;
305 int rc;
987a9f12
SB
306 u32 offset;
307
40f318f0 308 rc = pmic_arb->ver_ops->offset(pmic_arb, sid, 0, PMIC_ARB_CHANNEL_RW);
ff615ed9 309 if (rc < 0)
987a9f12 310 return rc;
39ae93e3 311
ff615ed9 312 offset = rc;
39ae93e3
KH
313 cmd = ((opc | 0x40) << 27) | ((sid & 0xf) << 20);
314
02abec36
KG
315 raw_spin_lock_irqsave(&pmic_arb->lock, flags);
316 pmic_arb_base_write(pmic_arb, offset + PMIC_ARB_CMD, cmd);
40f318f0
DC
317 rc = pmic_arb_wait_for_done(ctrl, pmic_arb->wr_base, sid, 0,
318 PMIC_ARB_CHANNEL_RW);
02abec36 319 raw_spin_unlock_irqrestore(&pmic_arb->lock, flags);
39ae93e3
KH
320
321 return rc;
322}
323
d0c6ae41
GA
324static int
325pmic_arb_non_data_cmd_v2(struct spmi_controller *ctrl, u8 opc, u8 sid)
326{
327 return -EOPNOTSUPP;
328}
329
330/* Non-data command */
331static int pmic_arb_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid)
332{
02abec36 333 struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
d0c6ae41
GA
334
335 dev_dbg(&ctrl->dev, "cmd op:0x%x sid:%d\n", opc, sid);
336
337 /* Check for valid non-data command */
338 if (opc < SPMI_CMD_RESET || opc > SPMI_CMD_WAKEUP)
339 return -EINVAL;
340
02abec36 341 return pmic_arb->ver_ops->non_data_cmd(ctrl, opc, sid);
d0c6ae41
GA
342}
343
39ae93e3
KH
344static int pmic_arb_read_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
345 u16 addr, u8 *buf, size_t len)
346{
02abec36 347 struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
39ae93e3
KH
348 unsigned long flags;
349 u8 bc = len - 1;
350 u32 cmd;
351 int rc;
987a9f12
SB
352 u32 offset;
353
40f318f0
DC
354 rc = pmic_arb->ver_ops->offset(pmic_arb, sid, addr,
355 PMIC_ARB_CHANNEL_OBS);
ff615ed9 356 if (rc < 0)
987a9f12 357 return rc;
39ae93e3 358
ff615ed9 359 offset = rc;
39ae93e3 360 if (bc >= PMIC_ARB_MAX_TRANS_BYTES) {
02abec36 361 dev_err(&ctrl->dev, "pmic-arb supports 1..%d bytes per trans, but:%zu requested",
39ae93e3
KH
362 PMIC_ARB_MAX_TRANS_BYTES, len);
363 return -EINVAL;
364 }
365
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;
373 else
374 return -EINVAL;
375
02abec36 376 cmd = pmic_arb->ver_ops->fmt_cmd(opc, sid, addr, bc);
39ae93e3 377
02abec36
KG
378 raw_spin_lock_irqsave(&pmic_arb->lock, flags);
379 pmic_arb_set_rd_cmd(pmic_arb, offset + PMIC_ARB_CMD, cmd);
40f318f0
DC
380 rc = pmic_arb_wait_for_done(ctrl, pmic_arb->rd_base, sid, addr,
381 PMIC_ARB_CHANNEL_OBS);
39ae93e3
KH
382 if (rc)
383 goto done;
384
02abec36 385 pmic_arb_read_data(pmic_arb, buf, offset + PMIC_ARB_RDATA0,
39ae93e3
KH
386 min_t(u8, bc, 3));
387
388 if (bc > 3)
02abec36
KG
389 pmic_arb_read_data(pmic_arb, buf + 4, offset + PMIC_ARB_RDATA1,
390 bc - 4);
39ae93e3
KH
391
392done:
02abec36 393 raw_spin_unlock_irqrestore(&pmic_arb->lock, flags);
39ae93e3
KH
394 return rc;
395}
396
397static int pmic_arb_write_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
40f318f0 398 u16 addr, const u8 *buf, size_t len)
39ae93e3 399{
02abec36 400 struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
39ae93e3
KH
401 unsigned long flags;
402 u8 bc = len - 1;
403 u32 cmd;
404 int rc;
987a9f12
SB
405 u32 offset;
406
40f318f0
DC
407 rc = pmic_arb->ver_ops->offset(pmic_arb, sid, addr,
408 PMIC_ARB_CHANNEL_RW);
ff615ed9 409 if (rc < 0)
987a9f12 410 return rc;
39ae93e3 411
ff615ed9 412 offset = rc;
39ae93e3 413 if (bc >= PMIC_ARB_MAX_TRANS_BYTES) {
02abec36 414 dev_err(&ctrl->dev, "pmic-arb supports 1..%d bytes per trans, but:%zu requested",
39ae93e3
KH
415 PMIC_ARB_MAX_TRANS_BYTES, len);
416 return -EINVAL;
417 }
418
419 /* Check the opcode */
420 if (opc >= 0x40 && opc <= 0x5F)
421 opc = PMIC_ARB_OP_WRITE;
53d296b5 422 else if (opc <= 0x0F)
39ae93e3
KH
423 opc = PMIC_ARB_OP_EXT_WRITE;
424 else if (opc >= 0x30 && opc <= 0x37)
425 opc = PMIC_ARB_OP_EXT_WRITEL;
9b76968d 426 else if (opc >= 0x80)
39ae93e3
KH
427 opc = PMIC_ARB_OP_ZERO_WRITE;
428 else
429 return -EINVAL;
430
02abec36 431 cmd = pmic_arb->ver_ops->fmt_cmd(opc, sid, addr, bc);
39ae93e3
KH
432
433 /* Write data to FIFOs */
02abec36
KG
434 raw_spin_lock_irqsave(&pmic_arb->lock, flags);
435 pmic_arb_write_data(pmic_arb, buf, offset + PMIC_ARB_WDATA0,
436 min_t(u8, bc, 3));
39ae93e3 437 if (bc > 3)
02abec36
KG
438 pmic_arb_write_data(pmic_arb, buf + 4, offset + PMIC_ARB_WDATA1,
439 bc - 4);
39ae93e3
KH
440
441 /* Start the transaction */
02abec36 442 pmic_arb_base_write(pmic_arb, offset + PMIC_ARB_CMD, cmd);
40f318f0
DC
443 rc = pmic_arb_wait_for_done(ctrl, pmic_arb->wr_base, sid, addr,
444 PMIC_ARB_CHANNEL_RW);
02abec36 445 raw_spin_unlock_irqrestore(&pmic_arb->lock, flags);
39ae93e3
KH
446
447 return rc;
448}
449
67b563f1
JC
450enum qpnpint_regs {
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,
459};
460
461struct spmi_pmic_arb_qpnpint_type {
462 u8 type; /* 1 -> edge */
463 u8 polarity_high;
464 u8 polarity_low;
465} __packed;
466
467/* Simplified accessor functions for irqchip callbacks */
468static void qpnpint_spmi_write(struct irq_data *d, u8 reg, void *buf,
469 size_t len)
470{
02abec36
KG
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);
67b563f1 474
02abec36 475 if (pmic_arb_write_cmd(pmic_arb->spmic, SPMI_CMD_EXT_WRITEL, sid,
67b563f1 476 (per << 8) + reg, buf, len))
02abec36 477 dev_err_ratelimited(&pmic_arb->spmic->dev, "failed irqchip transaction on %x\n",
67b563f1
JC
478 d->irq);
479}
480
481static void qpnpint_spmi_read(struct irq_data *d, u8 reg, void *buf, size_t len)
482{
02abec36
KG
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);
67b563f1 486
02abec36 487 if (pmic_arb_read_cmd(pmic_arb->spmic, SPMI_CMD_EXT_READL, sid,
67b563f1 488 (per << 8) + reg, buf, len))
02abec36 489 dev_err_ratelimited(&pmic_arb->spmic->dev, "failed irqchip transaction on %x\n",
67b563f1
JC
490 d->irq);
491}
492
02abec36 493static void cleanup_irq(struct spmi_pmic_arb *pmic_arb, u16 apid, int id)
6bc546e7 494{
02abec36 495 u16 ppid = pmic_arb->apid_data[apid].ppid;
6bc546e7
AD
496 u8 sid = ppid >> 8;
497 u8 per = ppid & 0xFF;
498 u8 irq_mask = BIT(id);
499
e95d073c 500 writel_relaxed(irq_mask, pmic_arb->ver_ops->irq_clear(pmic_arb, apid));
6bc546e7 501
02abec36 502 if (pmic_arb_write_cmd(pmic_arb->spmic, SPMI_CMD_EXT_WRITEL, sid,
6bc546e7 503 (per << 8) + QPNPINT_REG_LATCHED_CLR, &irq_mask, 1))
02abec36 504 dev_err_ratelimited(&pmic_arb->spmic->dev, "failed to ack irq_mask = 0x%x for ppid = %x\n",
6bc546e7
AD
505 irq_mask, ppid);
506
02abec36 507 if (pmic_arb_write_cmd(pmic_arb->spmic, SPMI_CMD_EXT_WRITEL, sid,
6bc546e7 508 (per << 8) + QPNPINT_REG_EN_CLR, &irq_mask, 1))
02abec36 509 dev_err_ratelimited(&pmic_arb->spmic->dev, "failed to ack irq_mask = 0x%x for ppid = %x\n",
6bc546e7
AD
510 irq_mask, ppid);
511}
512
02abec36 513static void periph_interrupt(struct spmi_pmic_arb *pmic_arb, u16 apid)
67b563f1
JC
514{
515 unsigned int irq;
516 u32 status;
517 int id;
02abec36
KG
518 u8 sid = (pmic_arb->apid_data[apid].ppid >> 8) & 0xF;
519 u8 per = pmic_arb->apid_data[apid].ppid & 0xFF;
67b563f1 520
e95d073c 521 status = readl_relaxed(pmic_arb->ver_ops->irq_status(pmic_arb, apid));
67b563f1
JC
522 while (status) {
523 id = ffs(status) - 1;
111a10bf 524 status &= ~BIT(id);
02abec36
KG
525 irq = irq_find_mapping(pmic_arb->domain,
526 spec_to_hwirq(sid, per, id, apid));
6bc546e7 527 if (irq == 0) {
02abec36 528 cleanup_irq(pmic_arb, apid, id);
6bc546e7
AD
529 continue;
530 }
67b563f1
JC
531 generic_handle_irq(irq);
532 }
533}
534
bd0b9ac4 535static void pmic_arb_chained_irq(struct irq_desc *desc)
67b563f1 536{
02abec36 537 struct spmi_pmic_arb *pmic_arb = irq_desc_get_handler_data(desc);
e95d073c 538 const struct pmic_arb_ver_ops *ver_ops = pmic_arb->ver_ops;
7fe88f3c 539 struct irq_chip *chip = irq_desc_get_chip(desc);
02abec36
KG
540 int first = pmic_arb->min_apid >> 5;
541 int last = pmic_arb->max_apid >> 5;
e95d073c 542 u8 ee = pmic_arb->ee;
472eaf8b
AD
543 u32 status, enable;
544 int i, id, apid;
67b563f1
JC
545
546 chained_irq_enter(chip, desc);
547
548 for (i = first; i <= last; ++i) {
e95d073c
KG
549 status = readl_relaxed(
550 ver_ops->owner_acc_status(pmic_arb, ee, i));
67b563f1
JC
551 while (status) {
552 id = ffs(status) - 1;
111a10bf 553 status &= ~BIT(id);
472eaf8b 554 apid = id + i * 32;
e95d073c
KG
555 enable = readl_relaxed(
556 ver_ops->acc_enable(pmic_arb, apid));
472eaf8b 557 if (enable & SPMI_PIC_ACC_ENABLE_BIT)
02abec36 558 periph_interrupt(pmic_arb, apid);
67b563f1
JC
559 }
560 }
561
562 chained_irq_exit(chip, desc);
563}
564
565static void qpnpint_irq_ack(struct irq_data *d)
566{
02abec36
KG
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);
67b563f1
JC
570 u8 data;
571
e95d073c 572 writel_relaxed(BIT(irq), pmic_arb->ver_ops->irq_clear(pmic_arb, apid));
67b563f1 573
111a10bf 574 data = BIT(irq);
67b563f1
JC
575 qpnpint_spmi_write(d, QPNPINT_REG_LATCHED_CLR, &data, 1);
576}
577
578static void qpnpint_irq_mask(struct irq_data *d)
579{
02abec36 580 u8 irq = hwirq_to_irq(d->hwirq);
6bc546e7 581 u8 data = BIT(irq);
67b563f1 582
67b563f1
JC
583 qpnpint_spmi_write(d, QPNPINT_REG_EN_CLR, &data, 1);
584}
585
586static void qpnpint_irq_unmask(struct irq_data *d)
587{
02abec36 588 struct spmi_pmic_arb *pmic_arb = irq_data_get_irq_chip_data(d);
e95d073c 589 const struct pmic_arb_ver_ops *ver_ops = pmic_arb->ver_ops;
02abec36
KG
590 u8 irq = hwirq_to_irq(d->hwirq);
591 u16 apid = hwirq_to_apid(d->hwirq);
cee0fad7 592 u8 buf[2];
67b563f1 593
6bc546e7 594 writel_relaxed(SPMI_PIC_ACC_ENABLE_BIT,
e95d073c 595 ver_ops->acc_enable(pmic_arb, apid));
67b563f1 596
cee0fad7
AD
597 qpnpint_spmi_read(d, QPNPINT_REG_EN_SET, &buf[0], 1);
598 if (!(buf[0] & BIT(irq))) {
599 /*
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
603 */
604 buf[0] = BIT(irq);
605 buf[1] = BIT(irq);
606 qpnpint_spmi_write(d, QPNPINT_REG_LATCHED_CLR, &buf, 2);
607 }
67b563f1
JC
608}
609
67b563f1
JC
610static int qpnpint_irq_set_type(struct irq_data *d, unsigned int flow_type)
611{
612 struct spmi_pmic_arb_qpnpint_type type;
325255bc 613 irq_flow_handler_t flow_handler;
02abec36 614 u8 irq = hwirq_to_irq(d->hwirq);
67b563f1
JC
615
616 qpnpint_spmi_read(d, QPNPINT_REG_SET_TYPE, &type, sizeof(type));
617
618 if (flow_type & (IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING)) {
325255bc 619 type.type |= BIT(irq);
67b563f1 620 if (flow_type & IRQF_TRIGGER_RISING)
325255bc 621 type.polarity_high |= BIT(irq);
67b563f1 622 if (flow_type & IRQF_TRIGGER_FALLING)
325255bc
KG
623 type.polarity_low |= BIT(irq);
624
625 flow_handler = handle_edge_irq;
67b563f1
JC
626 } else {
627 if ((flow_type & (IRQF_TRIGGER_HIGH)) &&
628 (flow_type & (IRQF_TRIGGER_LOW)))
629 return -EINVAL;
630
325255bc 631 type.type &= ~BIT(irq); /* level trig */
67b563f1 632 if (flow_type & IRQF_TRIGGER_HIGH)
325255bc 633 type.polarity_high |= BIT(irq);
67b563f1 634 else
325255bc
KG
635 type.polarity_low |= BIT(irq);
636
637 flow_handler = handle_level_irq;
67b563f1
JC
638 }
639
640 qpnpint_spmi_write(d, QPNPINT_REG_SET_TYPE, &type, sizeof(type));
325255bc 641 irq_set_handler_locked(d, flow_handler);
5f9b2ea3 642
67b563f1
JC
643 return 0;
644}
645
cdeef07a
KG
646static int qpnpint_irq_set_wake(struct irq_data *d, unsigned int on)
647{
648 struct spmi_pmic_arb *pmic_arb = irq_data_get_irq_chip_data(d);
649
650 return irq_set_irq_wake(pmic_arb->irq, on);
651}
652
60be4230
CC
653static int qpnpint_get_irqchip_state(struct irq_data *d,
654 enum irqchip_irq_state which,
655 bool *state)
656{
02abec36 657 u8 irq = hwirq_to_irq(d->hwirq);
60be4230
CC
658 u8 status = 0;
659
660 if (which != IRQCHIP_STATE_LINE_LEVEL)
661 return -EINVAL;
662
663 qpnpint_spmi_read(d, QPNPINT_REG_RT_STS, &status, 1);
664 *state = !!(status & BIT(irq));
665
666 return 0;
667}
668
2fb4f258
KG
669static int qpnpint_irq_request_resources(struct irq_data *d)
670{
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);
676
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);
681 return -ENODEV;
682 }
683
684 return 0;
685}
686
67b563f1
JC
687static struct irq_chip pmic_arb_irqchip = {
688 .name = "pmic_arb",
67b563f1
JC
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,
cdeef07a 693 .irq_set_wake = qpnpint_irq_set_wake,
60be4230 694 .irq_get_irqchip_state = qpnpint_get_irqchip_state,
2fb4f258 695 .irq_request_resources = qpnpint_irq_request_resources,
cdeef07a 696 .flags = IRQCHIP_MASK_ON_SUSPEND,
67b563f1
JC
697};
698
67b563f1
JC
699static int qpnpint_irq_domain_dt_translate(struct irq_domain *d,
700 struct device_node *controller,
701 const u32 *intspec,
702 unsigned int intsize,
703 unsigned long *out_hwirq,
704 unsigned int *out_type)
705{
02abec36 706 struct spmi_pmic_arb *pmic_arb = d->host_data;
ff615ed9 707 u16 apid, ppid;
7f1d4e58 708 int rc;
67b563f1 709
02abec36 710 dev_dbg(&pmic_arb->spmic->dev, "intspec[0] 0x%1x intspec[1] 0x%02x intspec[2] 0x%02x\n",
67b563f1
JC
711 intspec[0], intspec[1], intspec[2]);
712
5d4c9bc7 713 if (irq_domain_get_of_node(d) != controller)
67b563f1
JC
714 return -EINVAL;
715 if (intsize != 4)
716 return -EINVAL;
717 if (intspec[0] > 0xF || intspec[1] > 0xFF || intspec[2] > 0x7)
718 return -EINVAL;
719
ff615ed9
KG
720 ppid = intspec[0] << 8 | intspec[1];
721 rc = pmic_arb->ver_ops->ppid_to_apid(pmic_arb, ppid);
7f1d4e58 722 if (rc < 0) {
40f318f0 723 dev_err(&pmic_arb->spmic->dev, "failed to xlate sid = %#x, periph = %#x, irq = %u rc = %d\n",
7f1d4e58
AD
724 intspec[0], intspec[1], intspec[2], rc);
725 return rc;
726 }
67b563f1 727
ff615ed9 728 apid = rc;
67b563f1 729 /* Keep track of {max,min}_apid for bounding search during interrupt */
02abec36
KG
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;
67b563f1 734
02abec36 735 *out_hwirq = spec_to_hwirq(intspec[0], intspec[1], intspec[2], apid);
67b563f1
JC
736 *out_type = intspec[3] & IRQ_TYPE_SENSE_MASK;
737
02abec36 738 dev_dbg(&pmic_arb->spmic->dev, "out_hwirq = %lu\n", *out_hwirq);
67b563f1
JC
739
740 return 0;
741}
742
743static int qpnpint_irq_domain_map(struct irq_domain *d,
744 unsigned int virq,
745 irq_hw_number_t hwirq)
746{
02abec36 747 struct spmi_pmic_arb *pmic_arb = d->host_data;
67b563f1 748
02abec36 749 dev_dbg(&pmic_arb->spmic->dev, "virq = %u, hwirq = %lu\n", virq, hwirq);
67b563f1
JC
750
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);
754 return 0;
755}
756
ff615ed9 757static int pmic_arb_ppid_to_apid_v1(struct spmi_pmic_arb *pmic_arb, u16 ppid)
7f1d4e58 758{
02abec36 759 u32 *mapping_table = pmic_arb->mapping_table;
7f1d4e58
AD
760 int index = 0, i;
761 u16 apid_valid;
ff615ed9 762 u16 apid;
7f1d4e58
AD
763 u32 data;
764
02abec36
KG
765 apid_valid = pmic_arb->ppid_to_apid[ppid];
766 if (apid_valid & PMIC_ARB_APID_VALID) {
ff615ed9
KG
767 apid = apid_valid & ~PMIC_ARB_APID_VALID;
768 return apid;
7f1d4e58
AD
769 }
770
771 for (i = 0; i < SPMI_MAPPING_TABLE_TREE_DEPTH; ++i) {
02abec36
KG
772 if (!test_and_set_bit(index, pmic_arb->mapping_table_valid))
773 mapping_table[index] = readl_relaxed(pmic_arb->cnfg +
7f1d4e58
AD
774 SPMI_MAPPING_TABLE_REG(index));
775
776 data = mapping_table[index];
777
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);
781 } else {
ff615ed9 782 apid = SPMI_MAPPING_BIT_IS_1_RESULT(data);
02abec36 783 pmic_arb->ppid_to_apid[ppid]
ff615ed9
KG
784 = apid | PMIC_ARB_APID_VALID;
785 pmic_arb->apid_data[apid].ppid = ppid;
786 return apid;
7f1d4e58
AD
787 }
788 } else {
789 if (SPMI_MAPPING_BIT_IS_0_FLAG(data)) {
790 index = SPMI_MAPPING_BIT_IS_0_RESULT(data);
791 } else {
ff615ed9 792 apid = SPMI_MAPPING_BIT_IS_0_RESULT(data);
02abec36 793 pmic_arb->ppid_to_apid[ppid]
ff615ed9
KG
794 = apid | PMIC_ARB_APID_VALID;
795 pmic_arb->apid_data[apid].ppid = ppid;
796 return apid;
7f1d4e58
AD
797 }
798 }
799 }
800
801 return -ENODEV;
802}
803
d0c6ae41 804/* v1 offset per ee */
40f318f0
DC
805static int pmic_arb_offset_v1(struct spmi_pmic_arb *pmic_arb, u8 sid, u16 addr,
806 enum pmic_arb_channel ch_type)
d0c6ae41 807{
ff615ed9 808 return 0x800 + 0x80 * pmic_arb->channel;
987a9f12
SB
809}
810
02abec36 811static u16 pmic_arb_find_apid(struct spmi_pmic_arb *pmic_arb, u16 ppid)
987a9f12 812{
f2f31564 813 struct apid_data *apidd = &pmic_arb->apid_data[pmic_arb->last_apid];
987a9f12 814 u32 regval, offset;
f2f31564 815 u16 id, apid;
987a9f12 816
f2f31564 817 for (apid = pmic_arb->last_apid; ; apid++, apidd++) {
40f318f0 818 offset = pmic_arb->ver_ops->apid_map_offset(apid);
02abec36 819 if (offset >= pmic_arb->core_size)
987a9f12
SB
820 break;
821
02abec36 822 regval = readl_relaxed(pmic_arb->cnfg +
b319b592 823 SPMI_OWNERSHIP_TABLE_REG(apid));
40f318f0
DC
824 apidd->irq_ee = SPMI_OWNERSHIP_PERIPH2OWNER(regval);
825 apidd->write_ee = apidd->irq_ee;
b319b592 826
02abec36 827 regval = readl_relaxed(pmic_arb->core + offset);
987a9f12
SB
828 if (!regval)
829 continue;
830
831 id = (regval >> 8) & PMIC_ARB_PPID_MASK;
02abec36 832 pmic_arb->ppid_to_apid[id] = apid | PMIC_ARB_APID_VALID;
f2f31564 833 apidd->ppid = id;
987a9f12 834 if (id == ppid) {
02abec36 835 apid |= PMIC_ARB_APID_VALID;
987a9f12
SB
836 break;
837 }
838 }
02abec36 839 pmic_arb->last_apid = apid & ~PMIC_ARB_APID_VALID;
987a9f12 840
1ef1ce4e 841 return apid;
d0c6ae41
GA
842}
843
ff615ed9 844static int pmic_arb_ppid_to_apid_v2(struct spmi_pmic_arb *pmic_arb, u16 ppid)
57102ad7 845{
7f1d4e58 846 u16 apid_valid;
57102ad7 847
02abec36
KG
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))
57102ad7
AD
852 return -ENODEV;
853
ff615ed9 854 return apid_valid & ~PMIC_ARB_APID_VALID;
7f1d4e58
AD
855}
856
40f318f0
DC
857static int pmic_arb_read_apid_map_v5(struct spmi_pmic_arb *pmic_arb)
858{
859 struct apid_data *apidd = pmic_arb->apid_data;
860 struct apid_data *prev_apidd;
861 u16 i, apid, ppid;
862 bool valid, is_irq_ee;
863 u32 regval, offset;
864
865 /*
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.
871 */
872 for (i = 0; ; i++, apidd++) {
873 offset = pmic_arb->ver_ops->apid_map_offset(i);
874 if (offset >= pmic_arb->core_size)
875 break;
876
877 regval = readl_relaxed(pmic_arb->core + offset);
878 if (!regval)
879 continue;
880 ppid = (regval >> 8) & PMIC_ARB_PPID_MASK;
881 is_irq_ee = PMIC_ARB_CHAN_IS_IRQ_OWNER(regval);
882
883 regval = readl_relaxed(pmic_arb->cnfg +
884 SPMI_OWNERSHIP_TABLE_REG(i));
885 apidd->write_ee = SPMI_OWNERSHIP_PERIPH2OWNER(regval);
886
887 apidd->irq_ee = is_irq_ee ? apidd->write_ee : INVALID_EE;
888
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];
892
893 if (valid && is_irq_ee &&
894 prev_apidd->write_ee == pmic_arb->ee) {
895 /*
896 * Duplicate PPID mapping after the one for this EE;
897 * override the irq owner
898 */
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;
903 }
904
905 apidd->ppid = ppid;
906 pmic_arb->last_apid = i;
907 }
908
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);
918 }
919 }
920
921 return 0;
922}
923
924static int pmic_arb_ppid_to_apid_v5(struct spmi_pmic_arb *pmic_arb, u16 ppid)
925{
926 if (!(pmic_arb->ppid_to_apid[ppid] & PMIC_ARB_APID_VALID))
927 return -ENODEV;
928
929 return pmic_arb->ppid_to_apid[ppid] & ~PMIC_ARB_APID_VALID;
930}
931
1ef1ce4e 932/* v2 offset per ppid and per ee */
40f318f0
DC
933static int pmic_arb_offset_v2(struct spmi_pmic_arb *pmic_arb, u8 sid, u16 addr,
934 enum pmic_arb_channel ch_type)
d0c6ae41 935{
319f6884 936 u16 apid;
ff615ed9 937 u16 ppid;
7f1d4e58 938 int rc;
987a9f12 939
ff615ed9
KG
940 ppid = sid << 8 | ((addr >> 8) & 0xFF);
941 rc = pmic_arb_ppid_to_apid_v2(pmic_arb, ppid);
7f1d4e58
AD
942 if (rc < 0)
943 return rc;
d0c6ae41 944
ff615ed9
KG
945 apid = rc;
946 return 0x1000 * pmic_arb->ee + 0x8000 * apid;
d0c6ae41
GA
947}
948
40f318f0
DC
949/*
950 * v5 offset per ee and per apid for observer channels and per apid for
951 * read/write channels.
952 */
953static int pmic_arb_offset_v5(struct spmi_pmic_arb *pmic_arb, u8 sid, u16 addr,
954 enum pmic_arb_channel ch_type)
955{
956 u16 apid;
957 int rc;
958 u32 offset = 0;
959 u16 ppid = (sid << 8) | (addr >> 8);
960
961 rc = pmic_arb_ppid_to_apid_v5(pmic_arb, ppid);
962 if (rc < 0)
963 return rc;
964
965 apid = rc;
966 switch (ch_type) {
967 case PMIC_ARB_CHANNEL_OBS:
968 offset = 0x10000 * pmic_arb->ee + 0x80 * apid;
969 break;
970 case PMIC_ARB_CHANNEL_RW:
971 offset = 0x10000 * apid;
972 break;
973 }
974
975 return offset;
976}
977
d0c6ae41
GA
978static u32 pmic_arb_fmt_cmd_v1(u8 opc, u8 sid, u16 addr, u8 bc)
979{
980 return (opc << 27) | ((sid & 0xf) << 20) | (addr << 4) | (bc & 0x7);
981}
982
983static u32 pmic_arb_fmt_cmd_v2(u8 opc, u8 sid, u16 addr, u8 bc)
984{
985 return (opc << 27) | ((addr & 0xff) << 4) | (bc & 0x7);
986}
987
e95d073c
KG
988static void __iomem *
989pmic_arb_owner_acc_status_v1(struct spmi_pmic_arb *pmic_arb, u8 m, u16 n)
d0c6ae41 990{
e95d073c 991 return pmic_arb->intr + 0x20 * m + 0x4 * n;
d0c6ae41
GA
992}
993
e95d073c
KG
994static void __iomem *
995pmic_arb_owner_acc_status_v2(struct spmi_pmic_arb *pmic_arb, u8 m, u16 n)
d0c6ae41 996{
e95d073c 997 return pmic_arb->intr + 0x100000 + 0x1000 * m + 0x4 * n;
d0c6ae41
GA
998}
999
e95d073c
KG
1000static void __iomem *
1001pmic_arb_owner_acc_status_v3(struct spmi_pmic_arb *pmic_arb, u8 m, u16 n)
319f6884 1002{
e95d073c 1003 return pmic_arb->intr + 0x200000 + 0x1000 * m + 0x4 * n;
319f6884
AD
1004}
1005
40f318f0
DC
1006static void __iomem *
1007pmic_arb_owner_acc_status_v5(struct spmi_pmic_arb *pmic_arb, u8 m, u16 n)
1008{
1009 return pmic_arb->intr + 0x10000 * m + 0x4 * n;
1010}
1011
e95d073c
KG
1012static void __iomem *
1013pmic_arb_acc_enable_v1(struct spmi_pmic_arb *pmic_arb, u16 n)
d0c6ae41 1014{
e95d073c 1015 return pmic_arb->intr + 0x200 + 0x4 * n;
d0c6ae41
GA
1016}
1017
e95d073c
KG
1018static void __iomem *
1019pmic_arb_acc_enable_v2(struct spmi_pmic_arb *pmic_arb, u16 n)
d0c6ae41 1020{
e95d073c 1021 return pmic_arb->intr + 0x1000 * n;
d0c6ae41
GA
1022}
1023
40f318f0
DC
1024static void __iomem *
1025pmic_arb_acc_enable_v5(struct spmi_pmic_arb *pmic_arb, u16 n)
1026{
1027 return pmic_arb->wr_base + 0x100 + 0x10000 * n;
1028}
1029
e95d073c
KG
1030static void __iomem *
1031pmic_arb_irq_status_v1(struct spmi_pmic_arb *pmic_arb, u16 n)
d0c6ae41 1032{
e95d073c 1033 return pmic_arb->intr + 0x600 + 0x4 * n;
d0c6ae41
GA
1034}
1035
e95d073c
KG
1036static void __iomem *
1037pmic_arb_irq_status_v2(struct spmi_pmic_arb *pmic_arb, u16 n)
d0c6ae41 1038{
e95d073c 1039 return pmic_arb->intr + 0x4 + 0x1000 * n;
d0c6ae41
GA
1040}
1041
40f318f0
DC
1042static void __iomem *
1043pmic_arb_irq_status_v5(struct spmi_pmic_arb *pmic_arb, u16 n)
1044{
1045 return pmic_arb->wr_base + 0x104 + 0x10000 * n;
1046}
1047
e95d073c
KG
1048static void __iomem *
1049pmic_arb_irq_clear_v1(struct spmi_pmic_arb *pmic_arb, u16 n)
d0c6ae41 1050{
e95d073c 1051 return pmic_arb->intr + 0xA00 + 0x4 * n;
d0c6ae41
GA
1052}
1053
e95d073c
KG
1054static void __iomem *
1055pmic_arb_irq_clear_v2(struct spmi_pmic_arb *pmic_arb, u16 n)
d0c6ae41 1056{
e95d073c 1057 return pmic_arb->intr + 0x8 + 0x1000 * n;
d0c6ae41
GA
1058}
1059
40f318f0
DC
1060static void __iomem *
1061pmic_arb_irq_clear_v5(struct spmi_pmic_arb *pmic_arb, u16 n)
1062{
1063 return pmic_arb->wr_base + 0x108 + 0x10000 * n;
1064}
1065
1066static u32 pmic_arb_apid_map_offset_v2(u16 n)
1067{
1068 return 0x800 + 0x4 * n;
1069}
1070
1071static u32 pmic_arb_apid_map_offset_v5(u16 n)
1072{
1073 return 0x900 + 0x4 * n;
1074}
1075
d0c6ae41 1076static const struct pmic_arb_ver_ops pmic_arb_v1 = {
319f6884 1077 .ver_str = "v1",
7f1d4e58 1078 .ppid_to_apid = pmic_arb_ppid_to_apid_v1,
d0c6ae41
GA
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,
40f318f0 1086 .apid_map_offset = pmic_arb_apid_map_offset_v2,
d0c6ae41
GA
1087};
1088
1089static const struct pmic_arb_ver_ops pmic_arb_v2 = {
319f6884 1090 .ver_str = "v2",
7f1d4e58 1091 .ppid_to_apid = pmic_arb_ppid_to_apid_v2,
d0c6ae41
GA
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,
40f318f0 1099 .apid_map_offset = pmic_arb_apid_map_offset_v2,
d0c6ae41
GA
1100};
1101
319f6884
AD
1102static const struct pmic_arb_ver_ops pmic_arb_v3 = {
1103 .ver_str = "v3",
1104 .ppid_to_apid = pmic_arb_ppid_to_apid_v2,
319f6884
AD
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,
40f318f0
DC
1112 .apid_map_offset = pmic_arb_apid_map_offset_v2,
1113};
1114
1115static const struct pmic_arb_ver_ops pmic_arb_v5 = {
1116 .ver_str = "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,
319f6884
AD
1126};
1127
67b563f1
JC
1128static const struct irq_domain_ops pmic_arb_irq_domain_ops = {
1129 .map = qpnpint_irq_domain_map,
1130 .xlate = qpnpint_irq_domain_dt_translate,
1131};
1132
39ae93e3
KH
1133static int spmi_pmic_arb_probe(struct platform_device *pdev)
1134{
02abec36 1135 struct spmi_pmic_arb *pmic_arb;
39ae93e3
KH
1136 struct spmi_controller *ctrl;
1137 struct resource *res;
d0c6ae41 1138 void __iomem *core;
4788e613 1139 u32 *mapping_table;
d0c6ae41 1140 u32 channel, ee, hw_ver;
987a9f12 1141 int err;
39ae93e3 1142
02abec36 1143 ctrl = spmi_controller_alloc(&pdev->dev, sizeof(*pmic_arb));
39ae93e3
KH
1144 if (!ctrl)
1145 return -ENOMEM;
1146
02abec36
KG
1147 pmic_arb = spmi_controller_get_drvdata(ctrl);
1148 pmic_arb->spmic = ctrl;
39ae93e3
KH
1149
1150 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "core");
d0c6ae41
GA
1151 core = devm_ioremap_resource(&ctrl->dev, res);
1152 if (IS_ERR(core)) {
1153 err = PTR_ERR(core);
39ae93e3
KH
1154 goto err_put_ctrl;
1155 }
1156
000e1a43
KG
1157 pmic_arb->core_size = resource_size(res);
1158
02abec36
KG
1159 pmic_arb->ppid_to_apid = devm_kcalloc(&ctrl->dev, PMIC_ARB_MAX_PPID,
1160 sizeof(*pmic_arb->ppid_to_apid),
1161 GFP_KERNEL);
1162 if (!pmic_arb->ppid_to_apid) {
eba9718e
SB
1163 err = -ENOMEM;
1164 goto err_put_ctrl;
1165 }
1166
d0c6ae41 1167 hw_ver = readl_relaxed(core + PMIC_ARB_VERSION);
d0c6ae41 1168
319f6884 1169 if (hw_ver < PMIC_ARB_VERSION_V2_MIN) {
02abec36
KG
1170 pmic_arb->ver_ops = &pmic_arb_v1;
1171 pmic_arb->wr_base = core;
1172 pmic_arb->rd_base = core;
d0c6ae41 1173 } else {
02abec36 1174 pmic_arb->core = core;
319f6884
AD
1175
1176 if (hw_ver < PMIC_ARB_VERSION_V3_MIN)
02abec36 1177 pmic_arb->ver_ops = &pmic_arb_v2;
40f318f0 1178 else if (hw_ver < PMIC_ARB_VERSION_V5_MIN)
02abec36 1179 pmic_arb->ver_ops = &pmic_arb_v3;
40f318f0
DC
1180 else
1181 pmic_arb->ver_ops = &pmic_arb_v5;
d0c6ae41
GA
1182
1183 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
1184 "obsrvr");
02abec36
KG
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);
d0c6ae41
GA
1188 goto err_put_ctrl;
1189 }
1190
1191 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
1192 "chnls");
02abec36
KG
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);
d0c6ae41
GA
1196 goto err_put_ctrl;
1197 }
d0c6ae41
GA
1198 }
1199
319f6884 1200 dev_info(&ctrl->dev, "PMIC arbiter version %s (0x%x)\n",
02abec36 1201 pmic_arb->ver_ops->ver_str, hw_ver);
319f6884 1202
39ae93e3 1203 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "intr");
02abec36
KG
1204 pmic_arb->intr = devm_ioremap_resource(&ctrl->dev, res);
1205 if (IS_ERR(pmic_arb->intr)) {
1206 err = PTR_ERR(pmic_arb->intr);
39ae93e3
KH
1207 goto err_put_ctrl;
1208 }
1209
1210 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cnfg");
02abec36
KG
1211 pmic_arb->cnfg = devm_ioremap_resource(&ctrl->dev, res);
1212 if (IS_ERR(pmic_arb->cnfg)) {
1213 err = PTR_ERR(pmic_arb->cnfg);
39ae93e3
KH
1214 goto err_put_ctrl;
1215 }
1216
02abec36
KG
1217 pmic_arb->irq = platform_get_irq_byname(pdev, "periph_irq");
1218 if (pmic_arb->irq < 0) {
1219 err = pmic_arb->irq;
67b563f1
JC
1220 goto err_put_ctrl;
1221 }
1222
39ae93e3
KH
1223 err = of_property_read_u32(pdev->dev.of_node, "qcom,channel", &channel);
1224 if (err) {
1225 dev_err(&pdev->dev, "channel unspecified.\n");
1226 goto err_put_ctrl;
1227 }
1228
1229 if (channel > 5) {
1230 dev_err(&pdev->dev, "invalid channel (%u) specified.\n",
1231 channel);
e98cc182 1232 err = -EINVAL;
39ae93e3
KH
1233 goto err_put_ctrl;
1234 }
1235
02abec36 1236 pmic_arb->channel = channel;
39ae93e3 1237
67b563f1
JC
1238 err = of_property_read_u32(pdev->dev.of_node, "qcom,ee", &ee);
1239 if (err) {
1240 dev_err(&pdev->dev, "EE unspecified.\n");
1241 goto err_put_ctrl;
1242 }
1243
1244 if (ee > 5) {
1245 dev_err(&pdev->dev, "invalid EE (%u) specified\n", ee);
1246 err = -EINVAL;
1247 goto err_put_ctrl;
1248 }
1249
02abec36 1250 pmic_arb->ee = ee;
4788e613
KG
1251 mapping_table = devm_kcalloc(&ctrl->dev, PMIC_ARB_MAX_PERIPHS,
1252 sizeof(*mapping_table), GFP_KERNEL);
1253 if (!mapping_table) {
987a9f12
SB
1254 err = -ENOMEM;
1255 goto err_put_ctrl;
1256 }
67b563f1 1257
4788e613 1258 pmic_arb->mapping_table = mapping_table;
67b563f1
JC
1259 /* Initialize max_apid/min_apid to the opposite bounds, during
1260 * the irq domain translation, we are sure to update these */
02abec36
KG
1261 pmic_arb->max_apid = 0;
1262 pmic_arb->min_apid = PMIC_ARB_MAX_PERIPHS - 1;
67b563f1 1263
39ae93e3 1264 platform_set_drvdata(pdev, ctrl);
02abec36 1265 raw_spin_lock_init(&pmic_arb->lock);
39ae93e3
KH
1266
1267 ctrl->cmd = pmic_arb_cmd;
1268 ctrl->read_cmd = pmic_arb_read_cmd;
1269 ctrl->write_cmd = pmic_arb_write_cmd;
1270
40f318f0
DC
1271 if (hw_ver >= PMIC_ARB_VERSION_V5_MIN) {
1272 err = pmic_arb_read_apid_map_v5(pmic_arb);
1273 if (err) {
1274 dev_err(&pdev->dev, "could not read APID->PPID mapping table, rc= %d\n",
1275 err);
1276 goto err_put_ctrl;
1277 }
1278 }
1279
67b563f1 1280 dev_dbg(&pdev->dev, "adding irq domain\n");
02abec36
KG
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) {
67b563f1
JC
1284 dev_err(&pdev->dev, "unable to create irq_domain\n");
1285 err = -ENOMEM;
1286 goto err_put_ctrl;
1287 }
1288
02abec36
KG
1289 irq_set_chained_handler_and_data(pmic_arb->irq, pmic_arb_chained_irq,
1290 pmic_arb);
39ae93e3
KH
1291 err = spmi_controller_add(ctrl);
1292 if (err)
67b563f1 1293 goto err_domain_remove;
39ae93e3 1294
39ae93e3
KH
1295 return 0;
1296
67b563f1 1297err_domain_remove:
02abec36
KG
1298 irq_set_chained_handler_and_data(pmic_arb->irq, NULL, NULL);
1299 irq_domain_remove(pmic_arb->domain);
39ae93e3
KH
1300err_put_ctrl:
1301 spmi_controller_put(ctrl);
1302 return err;
1303}
1304
1305static int spmi_pmic_arb_remove(struct platform_device *pdev)
1306{
1307 struct spmi_controller *ctrl = platform_get_drvdata(pdev);
02abec36 1308 struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
39ae93e3 1309 spmi_controller_remove(ctrl);
02abec36
KG
1310 irq_set_chained_handler_and_data(pmic_arb->irq, NULL, NULL);
1311 irq_domain_remove(pmic_arb->domain);
39ae93e3
KH
1312 spmi_controller_put(ctrl);
1313 return 0;
1314}
1315
1316static const struct of_device_id spmi_pmic_arb_match_table[] = {
1317 { .compatible = "qcom,spmi-pmic-arb", },
1318 {},
1319};
1320MODULE_DEVICE_TABLE(of, spmi_pmic_arb_match_table);
1321
1322static struct platform_driver spmi_pmic_arb_driver = {
1323 .probe = spmi_pmic_arb_probe,
1324 .remove = spmi_pmic_arb_remove,
1325 .driver = {
1326 .name = "spmi_pmic_arb",
39ae93e3
KH
1327 .of_match_table = spmi_pmic_arb_match_table,
1328 },
1329};
1330module_platform_driver(spmi_pmic_arb_driver);
1331
1332MODULE_LICENSE("GPL v2");
1333MODULE_ALIAS("platform:spmi_pmic_arb");