blob: a26b2893fb9661a89d9274349022025e7f9bac4d [file] [log] [blame]
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001/*
Kiran Gunda2d5f01d2018-01-02 16:14:44 +05302 * Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06003 *
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 */
Stephen Boyd987a9f12015-11-17 16:13:55 -080013#include <linux/bitmap.h>
Kenneth Heitke39ae93e2014-02-12 13:44:24 -060014#include <linux/delay.h>
15#include <linux/err.h>
16#include <linux/interrupt.h>
17#include <linux/io.h>
Josh Cartwright67b563f2014-02-12 13:44:25 -060018#include <linux/irqchip/chained_irq.h>
19#include <linux/irqdomain.h>
20#include <linux/irq.h>
Kenneth Heitke39ae93e2014-02-12 13:44:24 -060021#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
Gilad Avidovd0c6ae42015-03-25 11:37:32 -060030#define PMIC_ARB_VERSION_V2_MIN 0x20010000
Nicholas Troast9c10f8f2016-03-28 10:16:31 -070031#define PMIC_ARB_VERSION_V3_MIN 0x30000000
David Collinsb2d9a402016-07-21 14:42:47 -070032#define PMIC_ARB_VERSION_V5_MIN 0x50000000
Kenneth Heitke39ae93e2014-02-12 13:44:24 -060033#define PMIC_ARB_INT_EN 0x0004
34
Gilad Avidovd0c6ae42015-03-25 11:37:32 -060035/* 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
Kenneth Heitke39ae93e2014-02-12 13:44:24 -060043
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
Kenneth Heitke39ae93e2014-02-12 13:44:24 -060052#define SPMI_MAPPING_TABLE_TREE_DEPTH 16 /* Maximum of 16-bits */
Stephen Boyd987a9f12015-11-17 16:13:55 -080053#define PMIC_ARB_MAX_PPID BIT(12) /* PPID is 12bit */
54#define PMIC_ARB_CHAN_VALID BIT(15)
David Collinsb2d9a402016-07-21 14:42:47 -070055#define PMIC_ARB_CHAN_IS_IRQ_OWNER(reg) ((reg) & BIT(24))
56#define INVALID_EE (-1)
Kenneth Heitke39ae93e2014-02-12 13:44:24 -060057
58/* Ownership Table */
59#define SPMI_OWNERSHIP_TABLE_REG(N) (0x0700 + (4 * (N)))
60#define SPMI_OWNERSHIP_PERIPH2OWNER(X) ((X) & 0x7)
61
David Collinsee176e22017-06-20 16:33:04 -070062#define SPMI_PROTOCOL_IRQ_STATUS 0x6000
63
Kenneth Heitke39ae93e2014-02-12 13:44:24 -060064/* Channel Status fields */
65enum pmic_arb_chnl_status {
Abhijeet Dharmapurikar469f2c32016-01-05 16:52:38 -080066 PMIC_ARB_STATUS_DONE = BIT(0),
67 PMIC_ARB_STATUS_FAILURE = BIT(1),
68 PMIC_ARB_STATUS_DENIED = BIT(2),
69 PMIC_ARB_STATUS_DROPPED = BIT(3),
Kenneth Heitke39ae93e2014-02-12 13:44:24 -060070};
71
72/* Command register fields */
73#define PMIC_ARB_CMD_MAX_BYTE_COUNT 8
74
75/* Command Opcodes */
76enum pmic_arb_cmd_op_code {
77 PMIC_ARB_OP_EXT_WRITEL = 0,
78 PMIC_ARB_OP_EXT_READL = 1,
79 PMIC_ARB_OP_EXT_WRITE = 2,
80 PMIC_ARB_OP_RESET = 3,
81 PMIC_ARB_OP_SLEEP = 4,
82 PMIC_ARB_OP_SHUTDOWN = 5,
83 PMIC_ARB_OP_WAKEUP = 6,
84 PMIC_ARB_OP_AUTHENTICATE = 7,
85 PMIC_ARB_OP_MSTR_READ = 8,
86 PMIC_ARB_OP_MSTR_WRITE = 9,
87 PMIC_ARB_OP_EXT_READ = 13,
88 PMIC_ARB_OP_WRITE = 14,
89 PMIC_ARB_OP_READ = 15,
90 PMIC_ARB_OP_ZERO_WRITE = 16,
91};
92
David Collinsb2d9a402016-07-21 14:42:47 -070093/*
94 * PMIC arbiter version 5 uses different register offsets for read/write vs
95 * observer channels.
96 */
97enum pmic_arb_channel {
98 PMIC_ARB_CHANNEL_RW,
99 PMIC_ARB_CHANNEL_OBS,
100};
101
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600102/* Maximum number of support PMIC peripherals */
Stephen Boyd987a9f12015-11-17 16:13:55 -0800103#define PMIC_ARB_MAX_PERIPHS 512
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600104#define PMIC_ARB_TIMEOUT_US 100
105#define PMIC_ARB_MAX_TRANS_BYTES (8)
106
107#define PMIC_ARB_APID_MASK 0xFF
108#define PMIC_ARB_PPID_MASK 0xFFF
109
110/* interrupt enable bit */
111#define SPMI_PIC_ACC_ENABLE_BIT BIT(0)
112
David Collins370a4fa2016-07-21 16:58:29 -0700113#define HWIRQ(slave_id, periph_id, irq_id, apid) \
114 ((((slave_id) & 0xF) << 28) | \
115 (((periph_id) & 0xFF) << 20) | \
116 (((irq_id) & 0x7) << 16) | \
117 (((apid) & 0x1FF) << 0))
118
119#define HWIRQ_SID(hwirq) (((hwirq) >> 28) & 0xF)
120#define HWIRQ_PER(hwirq) (((hwirq) >> 20) & 0xFF)
121#define HWIRQ_IRQ(hwirq) (((hwirq) >> 16) & 0x7)
122#define HWIRQ_APID(hwirq) (((hwirq) >> 0) & 0x1FF)
123
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600124struct pmic_arb_ver_ops;
125
Abhijeet Dharmapurikar8f8ec812016-01-08 12:54:36 -0800126struct apid_data {
127 u16 ppid;
David Collinsb2d9a402016-07-21 14:42:47 -0700128 u8 write_owner;
129 u8 irq_owner;
Abhijeet Dharmapurikar8f8ec812016-01-08 12:54:36 -0800130};
131
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600132/**
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800133 * spmi_pmic_arb - SPMI PMIC Arbiter object
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600134 *
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600135 * @rd_base: on v1 "core", on v2 "observer" register base off DT.
136 * @wr_base: on v1 "core", on v2 "chnls" register base off DT.
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600137 * @intr: address of the SPMI interrupt control registers.
David Collinsb2d9a402016-07-21 14:42:47 -0700138 * @acc_status: address of SPMI ACC interrupt status registers.
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600139 * @cnfg: address of the PMIC Arbiter configuration registers.
140 * @lock: lock to synchronize accesses.
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600141 * @channel: execution environment channel to use for accesses.
Josh Cartwright67b563f2014-02-12 13:44:25 -0600142 * @irq: PMIC ARB interrupt.
143 * @ee: the current Execution Environment
144 * @min_apid: minimum APID (used for bounding IRQ search)
145 * @max_apid: maximum APID
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800146 * @max_periph: maximum number of PMIC peripherals supported by HW.
Josh Cartwright67b563f2014-02-12 13:44:25 -0600147 * @mapping_table: in-memory copy of PPID -> APID mapping table.
148 * @domain: irq domain object for PMIC IRQ domain
149 * @spmic: SPMI controller object
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600150 * @ver_ops: version dependent operations.
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800151 * @ppid_to_apid in-memory copy of PPID -> channel (APID) mapping table.
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600152 * v2 only.
David Collinsee176e22017-06-20 16:33:04 -0700153 * @ahb_bus_wa: Use AHB bus workaround to avoid write transaction
154 * corruption on some PMIC arbiter v5 platforms.
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600155 */
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800156struct spmi_pmic_arb {
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600157 void __iomem *rd_base;
158 void __iomem *wr_base;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600159 void __iomem *intr;
David Collinsb2d9a402016-07-21 14:42:47 -0700160 void __iomem *acc_status;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600161 void __iomem *cnfg;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800162 void __iomem *core;
163 resource_size_t core_size;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600164 raw_spinlock_t lock;
165 u8 channel;
Josh Cartwright67b563f2014-02-12 13:44:25 -0600166 int irq;
167 u8 ee;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800168 u16 min_apid;
169 u16 max_apid;
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800170 u16 max_periph;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800171 u32 *mapping_table;
172 DECLARE_BITMAP(mapping_table_valid, PMIC_ARB_MAX_PERIPHS);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600173 struct irq_domain *domain;
174 struct spmi_controller *spmic;
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600175 const struct pmic_arb_ver_ops *ver_ops;
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800176 u16 *ppid_to_apid;
177 u16 last_apid;
Abhijeet Dharmapurikar8f8ec812016-01-08 12:54:36 -0800178 struct apid_data apid_data[PMIC_ARB_MAX_PERIPHS];
David Collinsee176e22017-06-20 16:33:04 -0700179 bool ahb_bus_wa;
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600180};
181
182/**
183 * pmic_arb_ver: version dependent functionality.
184 *
Nicholas Troast9c10f8f2016-03-28 10:16:31 -0700185 * @ver_str: version string.
186 * @ppid_to_apid: finds the apid for a given ppid.
187 * @mode: access rights to specified pmic peripheral.
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600188 * @non_data_cmd: on v1 issues an spmi non-data command.
189 * on v2 no HW support, returns -EOPNOTSUPP.
190 * @offset: on v1 offset of per-ee channel.
191 * on v2 offset of per-ee and per-ppid channel.
192 * @fmt_cmd: formats a GENI/SPMI command.
193 * @owner_acc_status: on v1 offset of PMIC_ARB_SPMI_PIC_OWNERm_ACC_STATUSn
194 * on v2 offset of SPMI_PIC_OWNERm_ACC_STATUSn.
195 * @acc_enable: on v1 offset of PMIC_ARB_SPMI_PIC_ACC_ENABLEn
196 * on v2 offset of SPMI_PIC_ACC_ENABLEn.
197 * @irq_status: on v1 offset of PMIC_ARB_SPMI_PIC_IRQ_STATUSn
198 * on v2 offset of SPMI_PIC_IRQ_STATUSn.
199 * @irq_clear: on v1 offset of PMIC_ARB_SPMI_PIC_IRQ_CLEARn
200 * on v2 offset of SPMI_PIC_IRQ_CLEARn.
David Collinsb2d9a402016-07-21 14:42:47 -0700201 * @channel_map_offset: offset of PMIC_ARB_REG_CHNLn
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600202 */
203struct pmic_arb_ver_ops {
Nicholas Troast9c10f8f2016-03-28 10:16:31 -0700204 const char *ver_str;
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -0800205 int (*ppid_to_apid)(struct spmi_pmic_arb *pa, u8 sid, u16 addr,
David Collins370a4fa2016-07-21 16:58:29 -0700206 u16 *apid);
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800207 int (*mode)(struct spmi_pmic_arb *dev, u8 sid, u16 addr,
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800208 mode_t *mode);
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600209 /* spmi commands (read_cmd, write_cmd, cmd) functionality */
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800210 int (*offset)(struct spmi_pmic_arb *dev, u8 sid, u16 addr,
David Collinsb2d9a402016-07-21 14:42:47 -0700211 enum pmic_arb_channel ch_type, u32 *offset);
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600212 u32 (*fmt_cmd)(u8 opc, u8 sid, u16 addr, u8 bc);
213 int (*non_data_cmd)(struct spmi_controller *ctrl, u8 opc, u8 sid);
214 /* Interrupts controller functionality (offset of PIC registers) */
David Collins370a4fa2016-07-21 16:58:29 -0700215 u32 (*owner_acc_status)(u8 m, u16 n);
216 u32 (*acc_enable)(u16 n);
217 u32 (*irq_status)(u16 n);
218 u32 (*irq_clear)(u16 n);
David Collinsb2d9a402016-07-21 14:42:47 -0700219 u32 (*channel_map_offset)(u16 n);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600220};
221
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800222static inline void pmic_arb_base_write(struct spmi_pmic_arb *pa,
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600223 u32 offset, u32 val)
224{
David Collinsee176e22017-06-20 16:33:04 -0700225 if (pa->ahb_bus_wa) {
226 /* AHB bus register dummy read for workaround. */
227 readl_relaxed(pa->cnfg + SPMI_PROTOCOL_IRQ_STATUS);
228 /*
229 * Ensure that the read completes before initiating the
230 * subsequent register write.
231 */
232 mb();
233 }
234
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800235 writel_relaxed(val, pa->wr_base + offset);
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600236}
237
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800238static inline void pmic_arb_set_rd_cmd(struct spmi_pmic_arb *pa,
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600239 u32 offset, u32 val)
240{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800241 writel_relaxed(val, pa->rd_base + offset);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600242}
243
244/**
245 * pa_read_data: reads pmic-arb's register and copy 1..4 bytes to buf
246 * @bc: byte count -1. range: 0..3
247 * @reg: register's address
248 * @buf: output parameter, length must be bc + 1
249 */
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800250static void pa_read_data(struct spmi_pmic_arb *pa, u8 *buf, u32 reg, u8 bc)
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600251{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800252 u32 data = __raw_readl(pa->rd_base + reg);
253
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600254 memcpy(buf, &data, (bc & 3) + 1);
255}
256
257/**
258 * pa_write_data: write 1..4 bytes from buf to pmic-arb's register
259 * @bc: byte-count -1. range: 0..3.
260 * @reg: register's address.
261 * @buf: buffer to write. length must be bc + 1.
262 */
263static void
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800264pa_write_data(struct spmi_pmic_arb *pa, const u8 *buf, u32 reg, u8 bc)
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600265{
266 u32 data = 0;
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800267
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600268 memcpy(&data, buf, (bc & 3) + 1);
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800269 pmic_arb_base_write(pa, reg, data);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600270}
271
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600272static int pmic_arb_wait_for_done(struct spmi_controller *ctrl,
David Collinsb2d9a402016-07-21 14:42:47 -0700273 void __iomem *base, u8 sid, u16 addr,
274 enum pmic_arb_channel ch_type)
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600275{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800276 struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600277 u32 status = 0;
278 u32 timeout = PMIC_ARB_TIMEOUT_US;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800279 u32 offset;
280 int rc;
281
David Collinsb2d9a402016-07-21 14:42:47 -0700282 rc = pa->ver_ops->offset(pa, sid, addr, ch_type, &offset);
Stephen Boyd987a9f12015-11-17 16:13:55 -0800283 if (rc)
284 return rc;
285
286 offset += PMIC_ARB_STATUS;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600287
288 while (timeout--) {
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600289 status = readl_relaxed(base + offset);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600290
291 if (status & PMIC_ARB_STATUS_DONE) {
292 if (status & PMIC_ARB_STATUS_DENIED) {
293 dev_err(&ctrl->dev,
294 "%s: transaction denied (0x%x)\n",
295 __func__, status);
296 return -EPERM;
297 }
298
299 if (status & PMIC_ARB_STATUS_FAILURE) {
300 dev_err(&ctrl->dev,
301 "%s: transaction failed (0x%x)\n",
302 __func__, status);
303 return -EIO;
304 }
305
306 if (status & PMIC_ARB_STATUS_DROPPED) {
307 dev_err(&ctrl->dev,
308 "%s: transaction dropped (0x%x)\n",
309 __func__, status);
310 return -EIO;
311 }
312
313 return 0;
314 }
315 udelay(1);
316 }
317
318 dev_err(&ctrl->dev,
319 "%s: timeout, status 0x%x\n",
320 __func__, status);
321 return -ETIMEDOUT;
322}
323
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600324static int
325pmic_arb_non_data_cmd_v1(struct spmi_controller *ctrl, u8 opc, u8 sid)
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600326{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800327 struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600328 unsigned long flags;
329 u32 cmd;
330 int rc;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800331 u32 offset;
332
David Collinsb2d9a402016-07-21 14:42:47 -0700333 rc = pa->ver_ops->offset(pa, sid, 0, PMIC_ARB_CHANNEL_RW, &offset);
Stephen Boyd987a9f12015-11-17 16:13:55 -0800334 if (rc)
335 return rc;
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600336
337 cmd = ((opc | 0x40) << 27) | ((sid & 0xf) << 20);
338
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800339 raw_spin_lock_irqsave(&pa->lock, flags);
340 pmic_arb_base_write(pa, offset + PMIC_ARB_CMD, cmd);
David Collinsb2d9a402016-07-21 14:42:47 -0700341 rc = pmic_arb_wait_for_done(ctrl, pa->wr_base, sid, 0,
342 PMIC_ARB_CHANNEL_RW);
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800343 raw_spin_unlock_irqrestore(&pa->lock, flags);
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600344
345 return rc;
346}
347
348static int
349pmic_arb_non_data_cmd_v2(struct spmi_controller *ctrl, u8 opc, u8 sid)
350{
351 return -EOPNOTSUPP;
352}
353
354/* Non-data command */
355static int pmic_arb_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid)
356{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800357 struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600358
359 dev_dbg(&ctrl->dev, "cmd op:0x%x sid:%d\n", opc, sid);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600360
361 /* Check for valid non-data command */
362 if (opc < SPMI_CMD_RESET || opc > SPMI_CMD_WAKEUP)
363 return -EINVAL;
364
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800365 return pa->ver_ops->non_data_cmd(ctrl, opc, sid);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600366}
367
368static int pmic_arb_read_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
369 u16 addr, u8 *buf, size_t len)
370{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800371 struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600372 unsigned long flags;
373 u8 bc = len - 1;
374 u32 cmd;
375 int rc;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800376 u32 offset;
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800377 mode_t mode;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800378
David Collinsb2d9a402016-07-21 14:42:47 -0700379 rc = pa->ver_ops->offset(pa, sid, addr, PMIC_ARB_CHANNEL_OBS, &offset);
Stephen Boyd987a9f12015-11-17 16:13:55 -0800380 if (rc)
381 return rc;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600382
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800383 rc = pa->ver_ops->mode(pa, sid, addr, &mode);
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800384 if (rc)
385 return rc;
386
387 if (!(mode & 0400)) {
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800388 dev_err(&pa->spmic->dev,
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800389 "error: impermissible read from peripheral sid:%d addr:0x%x\n",
390 sid, addr);
391 return -ENODEV;
392 }
393
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600394 if (bc >= PMIC_ARB_MAX_TRANS_BYTES) {
395 dev_err(&ctrl->dev,
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600396 "pmic-arb supports 1..%d bytes per trans, but:%zu requested",
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600397 PMIC_ARB_MAX_TRANS_BYTES, len);
398 return -EINVAL;
399 }
400
401 /* Check the opcode */
402 if (opc >= 0x60 && opc <= 0x7F)
403 opc = PMIC_ARB_OP_READ;
404 else if (opc >= 0x20 && opc <= 0x2F)
405 opc = PMIC_ARB_OP_EXT_READ;
406 else if (opc >= 0x38 && opc <= 0x3F)
407 opc = PMIC_ARB_OP_EXT_READL;
408 else
409 return -EINVAL;
410
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800411 cmd = pa->ver_ops->fmt_cmd(opc, sid, addr, bc);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600412
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800413 raw_spin_lock_irqsave(&pa->lock, flags);
414 pmic_arb_set_rd_cmd(pa, offset + PMIC_ARB_CMD, cmd);
David Collinsb2d9a402016-07-21 14:42:47 -0700415 rc = pmic_arb_wait_for_done(ctrl, pa->rd_base, sid, addr,
416 PMIC_ARB_CHANNEL_OBS);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600417 if (rc)
418 goto done;
419
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800420 pa_read_data(pa, buf, offset + PMIC_ARB_RDATA0,
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600421 min_t(u8, bc, 3));
422
423 if (bc > 3)
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800424 pa_read_data(pa, buf + 4, offset + PMIC_ARB_RDATA1, bc - 4);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600425
426done:
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800427 raw_spin_unlock_irqrestore(&pa->lock, flags);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600428 return rc;
429}
430
431static int pmic_arb_write_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
432 u16 addr, const u8 *buf, size_t len)
433{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800434 struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600435 unsigned long flags;
436 u8 bc = len - 1;
437 u32 cmd;
438 int rc;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800439 u32 offset;
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800440 mode_t mode;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800441
David Collinsb2d9a402016-07-21 14:42:47 -0700442 rc = pa->ver_ops->offset(pa, sid, addr, PMIC_ARB_CHANNEL_RW, &offset);
Stephen Boyd987a9f12015-11-17 16:13:55 -0800443 if (rc)
444 return rc;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600445
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800446 rc = pa->ver_ops->mode(pa, sid, addr, &mode);
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800447 if (rc)
448 return rc;
449
450 if (!(mode & 0200)) {
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800451 dev_err(&pa->spmic->dev,
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800452 "error: impermissible write to peripheral sid:%d addr:0x%x\n",
453 sid, addr);
454 return -ENODEV;
455 }
456
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600457 if (bc >= PMIC_ARB_MAX_TRANS_BYTES) {
458 dev_err(&ctrl->dev,
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600459 "pmic-arb supports 1..%d bytes per trans, but:%zu requested",
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600460 PMIC_ARB_MAX_TRANS_BYTES, len);
461 return -EINVAL;
462 }
463
464 /* Check the opcode */
465 if (opc >= 0x40 && opc <= 0x5F)
466 opc = PMIC_ARB_OP_WRITE;
467 else if (opc >= 0x00 && opc <= 0x0F)
468 opc = PMIC_ARB_OP_EXT_WRITE;
469 else if (opc >= 0x30 && opc <= 0x37)
470 opc = PMIC_ARB_OP_EXT_WRITEL;
Stephen Boyd9b769682015-08-28 12:31:10 -0700471 else if (opc >= 0x80)
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600472 opc = PMIC_ARB_OP_ZERO_WRITE;
473 else
474 return -EINVAL;
475
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800476 cmd = pa->ver_ops->fmt_cmd(opc, sid, addr, bc);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600477
478 /* Write data to FIFOs */
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800479 raw_spin_lock_irqsave(&pa->lock, flags);
480 pa_write_data(pa, buf, offset + PMIC_ARB_WDATA0, min_t(u8, bc, 3));
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600481 if (bc > 3)
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800482 pa_write_data(pa, buf + 4, offset + PMIC_ARB_WDATA1, bc - 4);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600483
484 /* Start the transaction */
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800485 pmic_arb_base_write(pa, offset + PMIC_ARB_CMD, cmd);
David Collinsb2d9a402016-07-21 14:42:47 -0700486 rc = pmic_arb_wait_for_done(ctrl, pa->wr_base, sid, addr,
487 PMIC_ARB_CHANNEL_RW);
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800488 raw_spin_unlock_irqrestore(&pa->lock, flags);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -0600489
490 return rc;
491}
492
Josh Cartwright67b563f2014-02-12 13:44:25 -0600493enum qpnpint_regs {
494 QPNPINT_REG_RT_STS = 0x10,
495 QPNPINT_REG_SET_TYPE = 0x11,
496 QPNPINT_REG_POLARITY_HIGH = 0x12,
497 QPNPINT_REG_POLARITY_LOW = 0x13,
498 QPNPINT_REG_LATCHED_CLR = 0x14,
499 QPNPINT_REG_EN_SET = 0x15,
500 QPNPINT_REG_EN_CLR = 0x16,
501 QPNPINT_REG_LATCHED_STS = 0x18,
502};
503
504struct spmi_pmic_arb_qpnpint_type {
505 u8 type; /* 1 -> edge */
506 u8 polarity_high;
507 u8 polarity_low;
508} __packed;
509
510/* Simplified accessor functions for irqchip callbacks */
511static void qpnpint_spmi_write(struct irq_data *d, u8 reg, void *buf,
512 size_t len)
513{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800514 struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
David Collins370a4fa2016-07-21 16:58:29 -0700515 u8 sid = HWIRQ_SID(d->hwirq);
516 u8 per = HWIRQ_PER(d->hwirq);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600517
518 if (pmic_arb_write_cmd(pa->spmic, SPMI_CMD_EXT_WRITEL, sid,
519 (per << 8) + reg, buf, len))
520 dev_err_ratelimited(&pa->spmic->dev,
521 "failed irqchip transaction on %x\n",
522 d->irq);
523}
524
525static void qpnpint_spmi_read(struct irq_data *d, u8 reg, void *buf, size_t len)
526{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800527 struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
David Collins370a4fa2016-07-21 16:58:29 -0700528 u8 sid = HWIRQ_SID(d->hwirq);
529 u8 per = HWIRQ_PER(d->hwirq);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600530
531 if (pmic_arb_read_cmd(pa->spmic, SPMI_CMD_EXT_READL, sid,
532 (per << 8) + reg, buf, len))
533 dev_err_ratelimited(&pa->spmic->dev,
534 "failed irqchip transaction on %x\n",
535 d->irq);
536}
537
David Collins370a4fa2016-07-21 16:58:29 -0700538static void cleanup_irq(struct spmi_pmic_arb *pa, u16 apid, int id)
Abhijeet Dharmapurikarb9b87442016-01-08 10:50:19 -0800539{
Abhijeet Dharmapurikarb9b87442016-01-08 10:50:19 -0800540 u16 ppid = pa->apid_data[apid].ppid;
541 u8 sid = ppid >> 8;
542 u8 per = ppid & 0xFF;
Abhijeet Dharmapurikarb9b87442016-01-08 10:50:19 -0800543 u8 irq_mask = BIT(id);
544
Abhijeet Dharmapurikared44ac12016-04-26 18:31:39 -0700545 dev_err_ratelimited(&pa->spmic->dev,
546 "cleanup_irq apid=%d sid=0x%x per=0x%x irq=%d\n",
547 apid, sid, per, id);
Abhijeet Dharmapurikarb9b87442016-01-08 10:50:19 -0800548 writel_relaxed(irq_mask, pa->intr + pa->ver_ops->irq_clear(apid));
Abhijeet Dharmapurikarb9b87442016-01-08 10:50:19 -0800549}
550
Stephen Boyd51257b72017-08-15 10:27:00 -0700551static void periph_interrupt(struct spmi_pmic_arb *pa, u16 apid)
Josh Cartwright67b563f2014-02-12 13:44:25 -0600552{
553 unsigned int irq;
554 u32 status;
555 int id;
David Collins370a4fa2016-07-21 16:58:29 -0700556 u8 sid = (pa->apid_data[apid].ppid >> 8) & 0xF;
557 u8 per = pa->apid_data[apid].ppid & 0xFF;
Josh Cartwright67b563f2014-02-12 13:44:25 -0600558
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600559 status = readl_relaxed(pa->intr + pa->ver_ops->irq_status(apid));
Josh Cartwright67b563f2014-02-12 13:44:25 -0600560 while (status) {
561 id = ffs(status) - 1;
Abhijeet Dharmapurikar469f2c32016-01-05 16:52:38 -0800562 status &= ~BIT(id);
David Collins370a4fa2016-07-21 16:58:29 -0700563 irq = irq_find_mapping(pa->domain, HWIRQ(sid, per, id, apid));
Abhijeet Dharmapurikarb9b87442016-01-08 10:50:19 -0800564 if (irq == 0) {
565 cleanup_irq(pa, apid, id);
566 continue;
567 }
Stephen Boyd51257b72017-08-15 10:27:00 -0700568 generic_handle_irq(irq);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600569 }
570}
571
Stephen Boyd51257b72017-08-15 10:27:00 -0700572static void pmic_arb_chained_irq(struct irq_desc *desc)
Josh Cartwright67b563f2014-02-12 13:44:25 -0600573{
Stephen Boyd51257b72017-08-15 10:27:00 -0700574 struct spmi_pmic_arb *pa = irq_desc_get_handler_data(desc);
575 struct irq_chip *chip = irq_desc_get_chip(desc);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600576 int first = pa->min_apid >> 5;
577 int last = pa->max_apid >> 5;
Abhijeet Dharmapurikar5e5078b2016-04-27 20:39:46 -0700578 u32 status, enable;
579 int i, id, apid;
Ashay Jaiswal8fbf3582017-02-27 12:33:17 +0530580 /* status based dispatch */
581 bool acc_valid = false;
582 u32 irq_status = 0;
Josh Cartwright67b563f2014-02-12 13:44:25 -0600583
Stephen Boyd51257b72017-08-15 10:27:00 -0700584 chained_irq_enter(chip, desc);
585
Josh Cartwright67b563f2014-02-12 13:44:25 -0600586 for (i = first; i <= last; ++i) {
David Collinsb2d9a402016-07-21 14:42:47 -0700587 status = readl_relaxed(pa->acc_status +
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600588 pa->ver_ops->owner_acc_status(pa->ee, i));
Ashay Jaiswal8fbf3582017-02-27 12:33:17 +0530589 if (status)
590 acc_valid = true;
591
Josh Cartwright67b563f2014-02-12 13:44:25 -0600592 while (status) {
593 id = ffs(status) - 1;
Abhijeet Dharmapurikar469f2c32016-01-05 16:52:38 -0800594 status &= ~BIT(id);
Abhijeet Dharmapurikar5e5078b2016-04-27 20:39:46 -0700595 apid = id + i * 32;
David Collinsdc817982017-05-12 14:19:20 -0700596 if (apid < pa->min_apid || apid > pa->max_apid) {
597 WARN_ONCE(true, "spurious spmi irq received for apid=%d\n",
598 apid);
599 continue;
600 }
David Collinsb2d9a402016-07-21 14:42:47 -0700601 enable = readl_relaxed(pa->intr +
Abhijeet Dharmapurikar5e5078b2016-04-27 20:39:46 -0700602 pa->ver_ops->acc_enable(apid));
603 if (enable & SPMI_PIC_ACC_ENABLE_BIT)
Stephen Boyd51257b72017-08-15 10:27:00 -0700604 periph_interrupt(pa, apid);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600605 }
606 }
Ashay Jaiswal8fbf3582017-02-27 12:33:17 +0530607
608 /* ACC_STATUS is empty but IRQ fired check IRQ_STATUS */
609 if (!acc_valid) {
610 for (i = pa->min_apid; i <= pa->max_apid; i++) {
611 /* skip if APPS is not irq owner */
612 if (pa->apid_data[i].irq_owner != pa->ee)
613 continue;
614
615 irq_status = readl_relaxed(pa->intr +
616 pa->ver_ops->irq_status(i));
617 if (irq_status) {
618 enable = readl_relaxed(pa->intr +
619 pa->ver_ops->acc_enable(i));
620 if (enable & SPMI_PIC_ACC_ENABLE_BIT) {
621 dev_dbg(&pa->spmic->dev,
622 "Dispatching IRQ for apid=%d status=%x\n",
623 i, irq_status);
Stephen Boyd51257b72017-08-15 10:27:00 -0700624 periph_interrupt(pa, i);
Ashay Jaiswal8fbf3582017-02-27 12:33:17 +0530625 }
626 }
627 }
628 }
Josh Cartwright67b563f2014-02-12 13:44:25 -0600629
630 chained_irq_exit(chip, desc);
631}
632
633static void qpnpint_irq_ack(struct irq_data *d)
634{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800635 struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
David Collins370a4fa2016-07-21 16:58:29 -0700636 u8 irq = HWIRQ_IRQ(d->hwirq);
637 u16 apid = HWIRQ_APID(d->hwirq);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600638 u8 data;
639
Abhijeet Dharmapurikar469f2c32016-01-05 16:52:38 -0800640 writel_relaxed(BIT(irq), pa->intr + pa->ver_ops->irq_clear(apid));
Josh Cartwright67b563f2014-02-12 13:44:25 -0600641
Abhijeet Dharmapurikar469f2c32016-01-05 16:52:38 -0800642 data = BIT(irq);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600643 qpnpint_spmi_write(d, QPNPINT_REG_LATCHED_CLR, &data, 1);
644}
645
646static void qpnpint_irq_mask(struct irq_data *d)
647{
David Collins370a4fa2016-07-21 16:58:29 -0700648 u8 irq = HWIRQ_IRQ(d->hwirq);
Abhijeet Dharmapurikar8f8ec812016-01-08 12:54:36 -0800649 u8 data = BIT(irq);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600650
Josh Cartwright67b563f2014-02-12 13:44:25 -0600651 qpnpint_spmi_write(d, QPNPINT_REG_EN_CLR, &data, 1);
652}
653
654static void qpnpint_irq_unmask(struct irq_data *d)
655{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800656 struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
David Collins370a4fa2016-07-21 16:58:29 -0700657 u8 irq = HWIRQ_IRQ(d->hwirq);
658 u16 apid = HWIRQ_APID(d->hwirq);
David Collinsa5a32ce2013-11-05 09:31:16 -0800659 u8 buf[2];
Josh Cartwright67b563f2014-02-12 13:44:25 -0600660
Abhijeet Dharmapurikarc27d8632016-02-23 15:56:23 -0800661 writel_relaxed(SPMI_PIC_ACC_ENABLE_BIT,
662 pa->intr + pa->ver_ops->acc_enable(apid));
Josh Cartwright67b563f2014-02-12 13:44:25 -0600663
David Collinsa5a32ce2013-11-05 09:31:16 -0800664 qpnpint_spmi_read(d, QPNPINT_REG_EN_SET, &buf[0], 1);
665 if (!(buf[0] & BIT(irq))) {
666 /*
667 * Since the interrupt is currently disabled, write to both the
668 * LATCHED_CLR and EN_SET registers so that a spurious interrupt
669 * cannot be triggered when the interrupt is enabled
670 */
671 buf[0] = BIT(irq);
672 buf[1] = BIT(irq);
673 qpnpint_spmi_write(d, QPNPINT_REG_LATCHED_CLR, &buf, 2);
674 }
Josh Cartwright67b563f2014-02-12 13:44:25 -0600675}
676
Josh Cartwright67b563f2014-02-12 13:44:25 -0600677static int qpnpint_irq_set_type(struct irq_data *d, unsigned int flow_type)
678{
679 struct spmi_pmic_arb_qpnpint_type type;
David Collins370a4fa2016-07-21 16:58:29 -0700680 u8 irq = HWIRQ_IRQ(d->hwirq);
Abhijeet Dharmapurikar469f2c32016-01-05 16:52:38 -0800681 u8 bit_mask_irq = BIT(irq);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600682
683 qpnpint_spmi_read(d, QPNPINT_REG_SET_TYPE, &type, sizeof(type));
684
685 if (flow_type & (IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING)) {
Abhijeet Dharmapurikar469f2c32016-01-05 16:52:38 -0800686 type.type |= bit_mask_irq;
Josh Cartwright67b563f2014-02-12 13:44:25 -0600687 if (flow_type & IRQF_TRIGGER_RISING)
Yimin Penge96f27c2018-05-11 10:08:19 +0800688 type.polarity_high |= bit_mask_irq;
689 else
690 type.polarity_high &= ~bit_mask_irq;
Josh Cartwright67b563f2014-02-12 13:44:25 -0600691 if (flow_type & IRQF_TRIGGER_FALLING)
Yimin Penge96f27c2018-05-11 10:08:19 +0800692 type.polarity_low |= bit_mask_irq;
693 else
694 type.polarity_low &= ~bit_mask_irq;
Josh Cartwright67b563f2014-02-12 13:44:25 -0600695 } else {
696 if ((flow_type & (IRQF_TRIGGER_HIGH)) &&
697 (flow_type & (IRQF_TRIGGER_LOW)))
698 return -EINVAL;
699
Abhijeet Dharmapurikar469f2c32016-01-05 16:52:38 -0800700 type.type &= ~bit_mask_irq; /* level trig */
Yimin Penge96f27c2018-05-11 10:08:19 +0800701 if (flow_type & IRQF_TRIGGER_HIGH) {
702 type.polarity_high |= bit_mask_irq;
703 type.polarity_low &= ~bit_mask_irq;
704 } else {
705 type.polarity_low |= bit_mask_irq;
706 type.polarity_high &= ~bit_mask_irq;
707 }
Josh Cartwright67b563f2014-02-12 13:44:25 -0600708 }
709
710 qpnpint_spmi_write(d, QPNPINT_REG_SET_TYPE, &type, sizeof(type));
Abhijeet Dharmapurikar2464e902016-04-19 20:06:46 -0700711
712 if (flow_type & IRQ_TYPE_EDGE_BOTH)
713 irq_set_handler_locked(d, handle_edge_irq);
714 else
715 irq_set_handler_locked(d, handle_level_irq);
716
Josh Cartwright67b563f2014-02-12 13:44:25 -0600717 return 0;
718}
719
Courtney Cavin60be4232015-07-30 10:53:54 -0700720static int qpnpint_get_irqchip_state(struct irq_data *d,
721 enum irqchip_irq_state which,
722 bool *state)
723{
David Collins370a4fa2016-07-21 16:58:29 -0700724 u8 irq = HWIRQ_IRQ(d->hwirq);
Courtney Cavin60be4232015-07-30 10:53:54 -0700725 u8 status = 0;
726
727 if (which != IRQCHIP_STATE_LINE_LEVEL)
728 return -EINVAL;
729
730 qpnpint_spmi_read(d, QPNPINT_REG_RT_STS, &status, 1);
731 *state = !!(status & BIT(irq));
732
733 return 0;
734}
735
Kiran Gunda2d5f01d2018-01-02 16:14:44 +0530736static int qpnpint_irq_request_resources(struct irq_data *d)
737{
738 struct spmi_pmic_arb *pmic_arb = irq_data_get_irq_chip_data(d);
739 u16 periph = HWIRQ_PER(d->hwirq);
740 u16 apid = HWIRQ_APID(d->hwirq);
741 u16 sid = HWIRQ_SID(d->hwirq);
742 u16 irq = HWIRQ_IRQ(d->hwirq);
743
744 if (pmic_arb->apid_data[apid].irq_owner != pmic_arb->ee) {
745 dev_err(&pmic_arb->spmic->dev, "failed to xlate sid = %#x, periph = %#x, irq = %u: ee=%u but owner=%u\n",
746 sid, periph, irq, pmic_arb->ee,
747 pmic_arb->apid_data[apid].irq_owner);
748 return -ENODEV;
749 }
750
751 return 0;
752}
753
Josh Cartwright67b563f2014-02-12 13:44:25 -0600754static struct irq_chip pmic_arb_irqchip = {
755 .name = "pmic_arb",
Josh Cartwright67b563f2014-02-12 13:44:25 -0600756 .irq_ack = qpnpint_irq_ack,
757 .irq_mask = qpnpint_irq_mask,
758 .irq_unmask = qpnpint_irq_unmask,
759 .irq_set_type = qpnpint_irq_set_type,
Courtney Cavin60be4232015-07-30 10:53:54 -0700760 .irq_get_irqchip_state = qpnpint_get_irqchip_state,
Kiran Gunda2d5f01d2018-01-02 16:14:44 +0530761 .irq_request_resources = qpnpint_irq_request_resources,
Josh Cartwright67b563f2014-02-12 13:44:25 -0600762 .flags = IRQCHIP_MASK_ON_SUSPEND
763 | IRQCHIP_SKIP_SET_WAKE,
764};
765
Subbaraman Narayanamurthyf115a0e2017-01-30 15:26:24 -0800766static void qpnpint_irq_domain_activate(struct irq_domain *domain,
767 struct irq_data *d)
768{
769 u8 irq = HWIRQ_IRQ(d->hwirq);
770 u8 buf;
771
772 buf = BIT(irq);
773 qpnpint_spmi_write(d, QPNPINT_REG_EN_CLR, &buf, 1);
774 qpnpint_spmi_write(d, QPNPINT_REG_LATCHED_CLR, &buf, 1);
775}
776
Josh Cartwright67b563f2014-02-12 13:44:25 -0600777static int qpnpint_irq_domain_dt_translate(struct irq_domain *d,
778 struct device_node *controller,
779 const u32 *intspec,
780 unsigned int intsize,
781 unsigned long *out_hwirq,
782 unsigned int *out_type)
783{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800784 struct spmi_pmic_arb *pa = d->host_data;
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -0800785 int rc;
David Collins370a4fa2016-07-21 16:58:29 -0700786 u16 apid;
Josh Cartwright67b563f2014-02-12 13:44:25 -0600787
788 dev_dbg(&pa->spmic->dev,
789 "intspec[0] 0x%1x intspec[1] 0x%02x intspec[2] 0x%02x\n",
790 intspec[0], intspec[1], intspec[2]);
791
Marc Zyngier5d4c9bc2015-10-13 12:51:29 +0100792 if (irq_domain_get_of_node(d) != controller)
Josh Cartwright67b563f2014-02-12 13:44:25 -0600793 return -EINVAL;
794 if (intsize != 4)
795 return -EINVAL;
796 if (intspec[0] > 0xF || intspec[1] > 0xFF || intspec[2] > 0x7)
797 return -EINVAL;
798
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -0800799 rc = pa->ver_ops->ppid_to_apid(pa, intspec[0],
800 (intspec[1] << 8), &apid);
801 if (rc < 0) {
802 dev_err(&pa->spmic->dev,
David Collinsb2d9a402016-07-21 14:42:47 -0700803 "failed to xlate sid = 0x%x, periph = 0x%x, irq = %u rc = %d\n",
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -0800804 intspec[0], intspec[1], intspec[2], rc);
805 return rc;
806 }
Josh Cartwright67b563f2014-02-12 13:44:25 -0600807
808 /* Keep track of {max,min}_apid for bounding search during interrupt */
809 if (apid > pa->max_apid)
810 pa->max_apid = apid;
811 if (apid < pa->min_apid)
812 pa->min_apid = apid;
813
David Collins370a4fa2016-07-21 16:58:29 -0700814 *out_hwirq = HWIRQ(intspec[0], intspec[1], intspec[2], apid);
Josh Cartwright67b563f2014-02-12 13:44:25 -0600815 *out_type = intspec[3] & IRQ_TYPE_SENSE_MASK;
816
817 dev_dbg(&pa->spmic->dev, "out_hwirq = %lu\n", *out_hwirq);
818
819 return 0;
820}
821
822static int qpnpint_irq_domain_map(struct irq_domain *d,
823 unsigned int virq,
824 irq_hw_number_t hwirq)
825{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -0800826 struct spmi_pmic_arb *pa = d->host_data;
Josh Cartwright67b563f2014-02-12 13:44:25 -0600827
828 dev_dbg(&pa->spmic->dev, "virq = %u, hwirq = %lu\n", virq, hwirq);
829
830 irq_set_chip_and_handler(virq, &pmic_arb_irqchip, handle_level_irq);
831 irq_set_chip_data(virq, d->host_data);
832 irq_set_noprobe(virq);
833 return 0;
834}
835
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800836static int
David Collins370a4fa2016-07-21 16:58:29 -0700837pmic_arb_ppid_to_apid_v1(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u16 *apid)
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -0800838{
839 u16 ppid = sid << 8 | ((addr >> 8) & 0xFF);
840 u32 *mapping_table = pa->mapping_table;
841 int index = 0, i;
842 u16 apid_valid;
843 u32 data;
844
845 apid_valid = pa->ppid_to_apid[ppid];
846 if (apid_valid & PMIC_ARB_CHAN_VALID) {
847 *apid = (apid_valid & ~PMIC_ARB_CHAN_VALID);
848 return 0;
849 }
850
851 for (i = 0; i < SPMI_MAPPING_TABLE_TREE_DEPTH; ++i) {
852 if (!test_and_set_bit(index, pa->mapping_table_valid))
853 mapping_table[index] = readl_relaxed(pa->cnfg +
854 SPMI_MAPPING_TABLE_REG(index));
855
856 data = mapping_table[index];
857
858 if (ppid & BIT(SPMI_MAPPING_BIT_INDEX(data))) {
859 if (SPMI_MAPPING_BIT_IS_1_FLAG(data)) {
860 index = SPMI_MAPPING_BIT_IS_1_RESULT(data);
861 } else {
862 *apid = SPMI_MAPPING_BIT_IS_1_RESULT(data);
863 pa->ppid_to_apid[ppid]
864 = *apid | PMIC_ARB_CHAN_VALID;
Abhijeet Dharmapurikar8f8ec812016-01-08 12:54:36 -0800865 pa->apid_data[*apid].ppid = ppid;
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -0800866 return 0;
867 }
868 } else {
869 if (SPMI_MAPPING_BIT_IS_0_FLAG(data)) {
870 index = SPMI_MAPPING_BIT_IS_0_RESULT(data);
871 } else {
872 *apid = SPMI_MAPPING_BIT_IS_0_RESULT(data);
873 pa->ppid_to_apid[ppid]
874 = *apid | PMIC_ARB_CHAN_VALID;
Abhijeet Dharmapurikar8f8ec812016-01-08 12:54:36 -0800875 pa->apid_data[*apid].ppid = ppid;
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -0800876 return 0;
877 }
878 }
879 }
880
881 return -ENODEV;
882}
883
884static int
Abhijeet Dharmapurikar78888862016-07-05 17:54:47 -0700885pmic_arb_mode_v1_v3(struct spmi_pmic_arb *pa, u8 sid, u16 addr, mode_t *mode)
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800886{
887 *mode = 0600;
888 return 0;
889}
890
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600891/* v1 offset per ee */
Stephen Boyd987a9f12015-11-17 16:13:55 -0800892static int
David Collinsb2d9a402016-07-21 14:42:47 -0700893pmic_arb_offset_v1(struct spmi_pmic_arb *pa, u8 sid, u16 addr,
894 enum pmic_arb_channel ch_type, u32 *offset)
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600895{
Stephen Boyd987a9f12015-11-17 16:13:55 -0800896 *offset = 0x800 + 0x80 * pa->channel;
897 return 0;
Gilad Avidovd0c6ae42015-03-25 11:37:32 -0600898}
899
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800900static u16 pmic_arb_find_apid(struct spmi_pmic_arb *pa, u16 ppid)
Stephen Boyd987a9f12015-11-17 16:13:55 -0800901{
902 u32 regval, offset;
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800903 u16 apid;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800904 u16 id;
905
906 /*
907 * PMIC_ARB_REG_CHNL is a table in HW mapping channel to ppid.
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800908 * ppid_to_apid is an in-memory invert of that table.
Stephen Boyd987a9f12015-11-17 16:13:55 -0800909 */
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800910 for (apid = pa->last_apid; apid < pa->max_periph; apid++) {
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800911 regval = readl_relaxed(pa->cnfg +
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800912 SPMI_OWNERSHIP_TABLE_REG(apid));
David Collinsb2d9a402016-07-21 14:42:47 -0700913 pa->apid_data[apid].irq_owner
914 = SPMI_OWNERSHIP_PERIPH2OWNER(regval);
915 pa->apid_data[apid].write_owner = pa->apid_data[apid].irq_owner;
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800916
David Collinsb2d9a402016-07-21 14:42:47 -0700917 offset = pa->ver_ops->channel_map_offset(apid);
Stephen Boyd987a9f12015-11-17 16:13:55 -0800918 if (offset >= pa->core_size)
919 break;
920
921 regval = readl_relaxed(pa->core + offset);
922 if (!regval)
923 continue;
924
925 id = (regval >> 8) & PMIC_ARB_PPID_MASK;
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800926 pa->ppid_to_apid[id] = apid | PMIC_ARB_CHAN_VALID;
Abhijeet Dharmapurikar8f8ec812016-01-08 12:54:36 -0800927 pa->apid_data[apid].ppid = id;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800928 if (id == ppid) {
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800929 apid |= PMIC_ARB_CHAN_VALID;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800930 break;
931 }
932 }
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800933 pa->last_apid = apid & ~PMIC_ARB_CHAN_VALID;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800934
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -0800935 return apid;
Stephen Boyd987a9f12015-11-17 16:13:55 -0800936}
937
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800938static int
David Collins370a4fa2016-07-21 16:58:29 -0700939pmic_arb_ppid_to_apid_v2(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u16 *apid)
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800940{
941 u16 ppid = (sid << 8) | (addr >> 8);
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -0800942 u16 apid_valid;
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800943
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -0800944 apid_valid = pa->ppid_to_apid[ppid];
945 if (!(apid_valid & PMIC_ARB_CHAN_VALID))
946 apid_valid = pmic_arb_find_apid(pa, ppid);
947 if (!(apid_valid & PMIC_ARB_CHAN_VALID))
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -0800948 return -ENODEV;
949
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -0800950 *apid = (apid_valid & ~PMIC_ARB_CHAN_VALID);
951 return 0;
952}
953
David Collinsb2d9a402016-07-21 14:42:47 -0700954static int pmic_arb_read_apid_map_v5(struct spmi_pmic_arb *pa)
955{
956 u32 regval, offset;
957 u16 apid, prev_apid, ppid;
958 bool valid, is_irq_owner;
959
960 /*
961 * PMIC_ARB_REG_CHNL is a table in HW mapping APID (channel) to PPID.
962 * ppid_to_apid is an in-memory invert of that table. In order to allow
963 * multiple EE's to write to a single PPID in arbiter version 5, there
964 * is more than one APID mapped to each PPID. The owner field for each
965 * of these mappings specifies the EE which is allowed to write to the
David Collins084e2162017-11-13 18:23:09 -0800966 * APID. The owner of the last (highest) APID which has the IRQ owner
967 * bit set for a given PPID will receive interrupts from the PPID.
David Collinsb2d9a402016-07-21 14:42:47 -0700968 */
969 for (apid = 0; apid < pa->max_periph; apid++) {
970 offset = pa->ver_ops->channel_map_offset(apid);
971 if (offset >= pa->core_size)
972 break;
973
974 regval = readl_relaxed(pa->core + offset);
975 if (!regval)
976 continue;
977 ppid = (regval >> 8) & PMIC_ARB_PPID_MASK;
978 is_irq_owner = PMIC_ARB_CHAN_IS_IRQ_OWNER(regval);
979
980 regval = readl_relaxed(pa->cnfg +
981 SPMI_OWNERSHIP_TABLE_REG(apid));
982 pa->apid_data[apid].write_owner
983 = SPMI_OWNERSHIP_PERIPH2OWNER(regval);
984
985 pa->apid_data[apid].irq_owner = is_irq_owner ?
986 pa->apid_data[apid].write_owner : INVALID_EE;
987
988 valid = pa->ppid_to_apid[ppid] & PMIC_ARB_CHAN_VALID;
989 prev_apid = pa->ppid_to_apid[ppid] & ~PMIC_ARB_CHAN_VALID;
990
David Collins084e2162017-11-13 18:23:09 -0800991 if (!valid || pa->apid_data[apid].write_owner == pa->ee) {
992 /* First PPID mapping or one for this EE */
993 pa->ppid_to_apid[ppid] = apid | PMIC_ARB_CHAN_VALID;
994 } else if (valid && is_irq_owner &&
David Collinsb2d9a402016-07-21 14:42:47 -0700995 pa->apid_data[prev_apid].write_owner == pa->ee) {
996 /*
997 * Duplicate PPID mapping after the one for this EE;
998 * override the irq owner
999 */
1000 pa->apid_data[prev_apid].irq_owner
1001 = pa->apid_data[apid].irq_owner;
David Collinsb2d9a402016-07-21 14:42:47 -07001002 }
1003
1004 pa->apid_data[apid].ppid = ppid;
1005 pa->last_apid = apid;
1006 }
1007
1008 /* Dump the mapping table for debug purposes. */
1009 dev_dbg(&pa->spmic->dev, "PPID APID Write-EE IRQ-EE\n");
1010 for (ppid = 0; ppid < PMIC_ARB_MAX_PPID; ppid++) {
1011 valid = pa->ppid_to_apid[ppid] & PMIC_ARB_CHAN_VALID;
1012 apid = pa->ppid_to_apid[ppid] & ~PMIC_ARB_CHAN_VALID;
1013
1014 if (valid)
1015 dev_dbg(&pa->spmic->dev, "0x%03X %3u %2u %2u\n",
1016 ppid, apid, pa->apid_data[apid].write_owner,
1017 pa->apid_data[apid].irq_owner);
1018 }
1019
1020 return 0;
1021}
1022
1023static int
1024pmic_arb_ppid_to_apid_v5(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u16 *apid)
1025{
1026 u16 ppid = (sid << 8) | (addr >> 8);
1027
1028 if (!(pa->ppid_to_apid[ppid] & PMIC_ARB_CHAN_VALID))
1029 return -ENODEV;
1030
1031 *apid = pa->ppid_to_apid[ppid] & ~PMIC_ARB_CHAN_VALID;
1032
1033 return 0;
1034}
1035
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -08001036static int
1037pmic_arb_mode_v2(struct spmi_pmic_arb *pa, u8 sid, u16 addr, mode_t *mode)
1038{
David Collins370a4fa2016-07-21 16:58:29 -07001039 u16 apid;
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -08001040 int rc;
1041
David Collinsb2d9a402016-07-21 14:42:47 -07001042 rc = pa->ver_ops->ppid_to_apid(pa, sid, addr, &apid);
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -08001043 if (rc < 0)
1044 return rc;
1045
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -08001046 *mode = 0;
1047 *mode |= 0400;
1048
David Collinsb2d9a402016-07-21 14:42:47 -07001049 if (pa->ee == pa->apid_data[apid].write_owner)
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -08001050 *mode |= 0200;
1051 return 0;
1052}
Stephen Boyd987a9f12015-11-17 16:13:55 -08001053
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -08001054/* v2 offset per ppid and per ee */
Stephen Boyd987a9f12015-11-17 16:13:55 -08001055static int
David Collinsb2d9a402016-07-21 14:42:47 -07001056pmic_arb_offset_v2(struct spmi_pmic_arb *pa, u8 sid, u16 addr,
1057 enum pmic_arb_channel ch_type, u32 *offset)
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001058{
David Collins370a4fa2016-07-21 16:58:29 -07001059 u16 apid;
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -08001060 int rc;
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001061
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -08001062 rc = pmic_arb_ppid_to_apid_v2(pa, sid, addr, &apid);
1063 if (rc < 0)
1064 return rc;
Stephen Boyd987a9f12015-11-17 16:13:55 -08001065
Abhijeet Dharmapurikar39155b62016-01-06 19:55:21 -08001066 *offset = 0x1000 * pa->ee + 0x8000 * apid;
Stephen Boyd987a9f12015-11-17 16:13:55 -08001067 return 0;
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001068}
1069
David Collinsb2d9a402016-07-21 14:42:47 -07001070/*
1071 * v5 offset per ee and per apid for observer channels and per apid for
1072 * read/write channels.
1073 */
1074static int
1075pmic_arb_offset_v5(struct spmi_pmic_arb *pa, u8 sid, u16 addr,
1076 enum pmic_arb_channel ch_type, u32 *offset)
1077{
1078 u16 apid;
1079 int rc;
1080
1081 rc = pmic_arb_ppid_to_apid_v5(pa, sid, addr, &apid);
1082 if (rc < 0)
1083 return rc;
1084
1085 *offset = (ch_type == PMIC_ARB_CHANNEL_OBS)
1086 ? 0x10000 * pa->ee + 0x80 * apid
1087 : 0x10000 * apid;
1088 return 0;
1089}
1090
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001091static u32 pmic_arb_fmt_cmd_v1(u8 opc, u8 sid, u16 addr, u8 bc)
1092{
1093 return (opc << 27) | ((sid & 0xf) << 20) | (addr << 4) | (bc & 0x7);
1094}
1095
1096static u32 pmic_arb_fmt_cmd_v2(u8 opc, u8 sid, u16 addr, u8 bc)
1097{
1098 return (opc << 27) | ((addr & 0xff) << 4) | (bc & 0x7);
1099}
1100
David Collins370a4fa2016-07-21 16:58:29 -07001101static u32 pmic_arb_owner_acc_status_v1(u8 m, u16 n)
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001102{
1103 return 0x20 * m + 0x4 * n;
1104}
1105
David Collins370a4fa2016-07-21 16:58:29 -07001106static u32 pmic_arb_owner_acc_status_v2(u8 m, u16 n)
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001107{
1108 return 0x100000 + 0x1000 * m + 0x4 * n;
1109}
1110
David Collins370a4fa2016-07-21 16:58:29 -07001111static u32 pmic_arb_owner_acc_status_v3(u8 m, u16 n)
Nicholas Troast9c10f8f2016-03-28 10:16:31 -07001112{
1113 return 0x200000 + 0x1000 * m + 0x4 * n;
1114}
1115
David Collinsb2d9a402016-07-21 14:42:47 -07001116static u32 pmic_arb_owner_acc_status_v5(u8 m, u16 n)
1117{
1118 return 0x10000 * m + 0x4 * n;
1119}
1120
David Collins370a4fa2016-07-21 16:58:29 -07001121static u32 pmic_arb_acc_enable_v1(u16 n)
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001122{
1123 return 0x200 + 0x4 * n;
1124}
1125
David Collins370a4fa2016-07-21 16:58:29 -07001126static u32 pmic_arb_acc_enable_v2(u16 n)
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001127{
1128 return 0x1000 * n;
1129}
1130
David Collinsb2d9a402016-07-21 14:42:47 -07001131static u32 pmic_arb_acc_enable_v5(u16 n)
1132{
1133 return 0x100 + 0x10000 * n;
1134}
1135
David Collins370a4fa2016-07-21 16:58:29 -07001136static u32 pmic_arb_irq_status_v1(u16 n)
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001137{
1138 return 0x600 + 0x4 * n;
1139}
1140
David Collins370a4fa2016-07-21 16:58:29 -07001141static u32 pmic_arb_irq_status_v2(u16 n)
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001142{
1143 return 0x4 + 0x1000 * n;
1144}
1145
David Collinsb2d9a402016-07-21 14:42:47 -07001146static u32 pmic_arb_irq_status_v5(u16 n)
1147{
1148 return 0x104 + 0x10000 * n;
1149}
1150
David Collins370a4fa2016-07-21 16:58:29 -07001151static u32 pmic_arb_irq_clear_v1(u16 n)
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001152{
1153 return 0xA00 + 0x4 * n;
1154}
1155
David Collins370a4fa2016-07-21 16:58:29 -07001156static u32 pmic_arb_irq_clear_v2(u16 n)
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001157{
1158 return 0x8 + 0x1000 * n;
1159}
1160
David Collinsb2d9a402016-07-21 14:42:47 -07001161static u32 pmic_arb_irq_clear_v5(u16 n)
1162{
1163 return 0x108 + 0x10000 * n;
1164}
1165
1166static u32 pmic_arb_channel_map_offset_v2(u16 n)
1167{
1168 return 0x800 + 0x4 * n;
1169}
1170
1171static u32 pmic_arb_channel_map_offset_v5(u16 n)
1172{
1173 return 0x900 + 0x4 * n;
1174}
1175
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001176static const struct pmic_arb_ver_ops pmic_arb_v1 = {
Nicholas Troast9c10f8f2016-03-28 10:16:31 -07001177 .ver_str = "v1",
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -08001178 .ppid_to_apid = pmic_arb_ppid_to_apid_v1,
Abhijeet Dharmapurikar78888862016-07-05 17:54:47 -07001179 .mode = pmic_arb_mode_v1_v3,
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001180 .non_data_cmd = pmic_arb_non_data_cmd_v1,
1181 .offset = pmic_arb_offset_v1,
1182 .fmt_cmd = pmic_arb_fmt_cmd_v1,
1183 .owner_acc_status = pmic_arb_owner_acc_status_v1,
1184 .acc_enable = pmic_arb_acc_enable_v1,
1185 .irq_status = pmic_arb_irq_status_v1,
1186 .irq_clear = pmic_arb_irq_clear_v1,
David Collinsb2d9a402016-07-21 14:42:47 -07001187 .channel_map_offset = pmic_arb_channel_map_offset_v2,
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001188};
1189
1190static const struct pmic_arb_ver_ops pmic_arb_v2 = {
Nicholas Troast9c10f8f2016-03-28 10:16:31 -07001191 .ver_str = "v2",
Abhijeet Dharmapurikar6e9eb382016-01-08 12:50:24 -08001192 .ppid_to_apid = pmic_arb_ppid_to_apid_v2,
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -08001193 .mode = pmic_arb_mode_v2,
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001194 .non_data_cmd = pmic_arb_non_data_cmd_v2,
1195 .offset = pmic_arb_offset_v2,
1196 .fmt_cmd = pmic_arb_fmt_cmd_v2,
1197 .owner_acc_status = pmic_arb_owner_acc_status_v2,
1198 .acc_enable = pmic_arb_acc_enable_v2,
1199 .irq_status = pmic_arb_irq_status_v2,
1200 .irq_clear = pmic_arb_irq_clear_v2,
David Collinsb2d9a402016-07-21 14:42:47 -07001201 .channel_map_offset = pmic_arb_channel_map_offset_v2,
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001202};
1203
Nicholas Troast9c10f8f2016-03-28 10:16:31 -07001204static const struct pmic_arb_ver_ops pmic_arb_v3 = {
1205 .ver_str = "v3",
1206 .ppid_to_apid = pmic_arb_ppid_to_apid_v2,
Abhijeet Dharmapurikar78888862016-07-05 17:54:47 -07001207 .mode = pmic_arb_mode_v1_v3,
Nicholas Troast9c10f8f2016-03-28 10:16:31 -07001208 .non_data_cmd = pmic_arb_non_data_cmd_v2,
1209 .offset = pmic_arb_offset_v2,
1210 .fmt_cmd = pmic_arb_fmt_cmd_v2,
1211 .owner_acc_status = pmic_arb_owner_acc_status_v3,
1212 .acc_enable = pmic_arb_acc_enable_v2,
1213 .irq_status = pmic_arb_irq_status_v2,
1214 .irq_clear = pmic_arb_irq_clear_v2,
David Collinsb2d9a402016-07-21 14:42:47 -07001215 .channel_map_offset = pmic_arb_channel_map_offset_v2,
1216};
1217
1218static const struct pmic_arb_ver_ops pmic_arb_v5 = {
1219 .ver_str = "v5",
1220 .ppid_to_apid = pmic_arb_ppid_to_apid_v5,
1221 .mode = pmic_arb_mode_v2,
1222 .non_data_cmd = pmic_arb_non_data_cmd_v2,
1223 .offset = pmic_arb_offset_v5,
1224 .fmt_cmd = pmic_arb_fmt_cmd_v2,
1225 .owner_acc_status = pmic_arb_owner_acc_status_v5,
1226 .acc_enable = pmic_arb_acc_enable_v5,
1227 .irq_status = pmic_arb_irq_status_v5,
1228 .irq_clear = pmic_arb_irq_clear_v5,
1229 .channel_map_offset = pmic_arb_channel_map_offset_v5,
Nicholas Troast9c10f8f2016-03-28 10:16:31 -07001230};
1231
Josh Cartwright67b563f2014-02-12 13:44:25 -06001232static const struct irq_domain_ops pmic_arb_irq_domain_ops = {
1233 .map = qpnpint_irq_domain_map,
1234 .xlate = qpnpint_irq_domain_dt_translate,
Subbaraman Narayanamurthyf115a0e2017-01-30 15:26:24 -08001235 .activate = qpnpint_irq_domain_activate,
Josh Cartwright67b563f2014-02-12 13:44:25 -06001236};
1237
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001238static int spmi_pmic_arb_probe(struct platform_device *pdev)
1239{
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -08001240 struct spmi_pmic_arb *pa;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001241 struct spmi_controller *ctrl;
1242 struct resource *res;
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001243 void __iomem *core;
1244 u32 channel, ee, hw_ver;
Stephen Boyd987a9f12015-11-17 16:13:55 -08001245 int err;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001246
1247 ctrl = spmi_controller_alloc(&pdev->dev, sizeof(*pa));
1248 if (!ctrl)
1249 return -ENOMEM;
1250
1251 pa = spmi_controller_get_drvdata(ctrl);
Josh Cartwright67b563f2014-02-12 13:44:25 -06001252 pa->spmic = ctrl;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001253
1254 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "core");
Abhijeet Dharmapurikar57132f52016-09-13 11:10:48 -07001255 if (!res) {
1256 dev_err(&pdev->dev, "core resource not specified\n");
1257 err = -EINVAL;
1258 goto err_put_ctrl;
1259 }
1260
Stephen Boyd987a9f12015-11-17 16:13:55 -08001261 pa->core_size = resource_size(res);
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -08001262 if (pa->core_size <= 0x800) {
1263 dev_err(&pdev->dev, "core_size is smaller than 0x800. Failing Probe\n");
1264 err = -EINVAL;
1265 goto err_put_ctrl;
1266 }
1267
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001268 core = devm_ioremap_resource(&ctrl->dev, res);
1269 if (IS_ERR(core)) {
1270 err = PTR_ERR(core);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001271 goto err_put_ctrl;
1272 }
1273
Kiran Gundac6e7a0c2018-01-03 14:53:52 +05301274 pa->ppid_to_apid = devm_kcalloc(&ctrl->dev, PMIC_ARB_MAX_PPID,
1275 sizeof(*pa->ppid_to_apid), GFP_KERNEL);
1276 if (!pa->ppid_to_apid) {
1277 err = -ENOMEM;
1278 goto err_put_ctrl;
1279 }
1280
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001281 hw_ver = readl_relaxed(core + PMIC_ARB_VERSION);
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001282
Nicholas Troast9c10f8f2016-03-28 10:16:31 -07001283 if (hw_ver < PMIC_ARB_VERSION_V2_MIN) {
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001284 pa->ver_ops = &pmic_arb_v1;
1285 pa->wr_base = core;
1286 pa->rd_base = core;
1287 } else {
Stephen Boyd987a9f12015-11-17 16:13:55 -08001288 pa->core = core;
Nicholas Troast9c10f8f2016-03-28 10:16:31 -07001289
1290 if (hw_ver < PMIC_ARB_VERSION_V3_MIN)
1291 pa->ver_ops = &pmic_arb_v2;
David Collinsb2d9a402016-07-21 14:42:47 -07001292 else if (hw_ver < PMIC_ARB_VERSION_V5_MIN)
Nicholas Troast9c10f8f2016-03-28 10:16:31 -07001293 pa->ver_ops = &pmic_arb_v3;
David Collinsb2d9a402016-07-21 14:42:47 -07001294 else
1295 pa->ver_ops = &pmic_arb_v5;
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001296
David Collinsb2d9a402016-07-21 14:42:47 -07001297 /* the apid to ppid table starts at PMIC_ARB_REG_CHNL0 */
1298 pa->max_periph
1299 = (pa->core_size - pa->ver_ops->channel_map_offset(0)) / 4;
Abhijeet Dharmapurikarea64f7f2016-01-18 22:00:33 -08001300
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001301 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
1302 "obsrvr");
1303 pa->rd_base = devm_ioremap_resource(&ctrl->dev, res);
1304 if (IS_ERR(pa->rd_base)) {
1305 err = PTR_ERR(pa->rd_base);
1306 goto err_put_ctrl;
1307 }
1308
1309 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
1310 "chnls");
1311 pa->wr_base = devm_ioremap_resource(&ctrl->dev, res);
1312 if (IS_ERR(pa->wr_base)) {
1313 err = PTR_ERR(pa->wr_base);
1314 goto err_put_ctrl;
1315 }
Gilad Avidovd0c6ae42015-03-25 11:37:32 -06001316 }
1317
Nicholas Troast9c10f8f2016-03-28 10:16:31 -07001318 dev_info(&ctrl->dev, "PMIC arbiter version %s (0x%x)\n",
1319 pa->ver_ops->ver_str, hw_ver);
1320
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001321 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "intr");
1322 pa->intr = devm_ioremap_resource(&ctrl->dev, res);
1323 if (IS_ERR(pa->intr)) {
1324 err = PTR_ERR(pa->intr);
1325 goto err_put_ctrl;
1326 }
David Collinsb2d9a402016-07-21 14:42:47 -07001327 pa->acc_status = pa->intr;
1328
1329 /*
1330 * PMIC arbiter v5 groups the IRQ control registers in the same hardware
1331 * module as the read/write channels.
1332 */
1333 if (hw_ver >= PMIC_ARB_VERSION_V5_MIN)
1334 pa->intr = pa->wr_base;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001335
1336 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cnfg");
1337 pa->cnfg = devm_ioremap_resource(&ctrl->dev, res);
1338 if (IS_ERR(pa->cnfg)) {
1339 err = PTR_ERR(pa->cnfg);
1340 goto err_put_ctrl;
1341 }
1342
Josh Cartwright67b563f2014-02-12 13:44:25 -06001343 pa->irq = platform_get_irq_byname(pdev, "periph_irq");
1344 if (pa->irq < 0) {
1345 err = pa->irq;
1346 goto err_put_ctrl;
1347 }
1348
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001349 err = of_property_read_u32(pdev->dev.of_node, "qcom,channel", &channel);
1350 if (err) {
1351 dev_err(&pdev->dev, "channel unspecified.\n");
1352 goto err_put_ctrl;
1353 }
1354
1355 if (channel > 5) {
1356 dev_err(&pdev->dev, "invalid channel (%u) specified.\n",
1357 channel);
Christophe JAILLETe98cc182016-09-26 22:24:46 +02001358 err = -EINVAL;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001359 goto err_put_ctrl;
1360 }
1361
1362 pa->channel = channel;
1363
Josh Cartwright67b563f2014-02-12 13:44:25 -06001364 err = of_property_read_u32(pdev->dev.of_node, "qcom,ee", &ee);
1365 if (err) {
1366 dev_err(&pdev->dev, "EE unspecified.\n");
1367 goto err_put_ctrl;
1368 }
1369
1370 if (ee > 5) {
1371 dev_err(&pdev->dev, "invalid EE (%u) specified\n", ee);
1372 err = -EINVAL;
1373 goto err_put_ctrl;
1374 }
1375
1376 pa->ee = ee;
1377
David Collinsee176e22017-06-20 16:33:04 -07001378 pa->ahb_bus_wa = of_property_read_bool(pdev->dev.of_node,
1379 "qcom,enable-ahb-bus-workaround");
1380
Stephen Boyd987a9f12015-11-17 16:13:55 -08001381 pa->mapping_table = devm_kcalloc(&ctrl->dev, PMIC_ARB_MAX_PERIPHS - 1,
1382 sizeof(*pa->mapping_table), GFP_KERNEL);
1383 if (!pa->mapping_table) {
1384 err = -ENOMEM;
1385 goto err_put_ctrl;
1386 }
Josh Cartwright67b563f2014-02-12 13:44:25 -06001387
1388 /* Initialize max_apid/min_apid to the opposite bounds, during
1389 * the irq domain translation, we are sure to update these */
1390 pa->max_apid = 0;
1391 pa->min_apid = PMIC_ARB_MAX_PERIPHS - 1;
1392
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001393 platform_set_drvdata(pdev, ctrl);
1394 raw_spin_lock_init(&pa->lock);
1395
1396 ctrl->cmd = pmic_arb_cmd;
1397 ctrl->read_cmd = pmic_arb_read_cmd;
1398 ctrl->write_cmd = pmic_arb_write_cmd;
1399
David Collinsb2d9a402016-07-21 14:42:47 -07001400 if (hw_ver >= PMIC_ARB_VERSION_V5_MIN) {
1401 err = pmic_arb_read_apid_map_v5(pa);
1402 if (err) {
1403 dev_err(&pdev->dev, "could not read APID->PPID mapping table, rc= %d\n",
1404 err);
1405 goto err_put_ctrl;
1406 }
1407 }
1408
Josh Cartwright67b563f2014-02-12 13:44:25 -06001409 dev_dbg(&pdev->dev, "adding irq domain\n");
1410 pa->domain = irq_domain_add_tree(pdev->dev.of_node,
1411 &pmic_arb_irq_domain_ops, pa);
1412 if (!pa->domain) {
1413 dev_err(&pdev->dev, "unable to create irq_domain\n");
1414 err = -ENOMEM;
1415 goto err_put_ctrl;
1416 }
1417
Thomas Gleixnerfb68ba62015-07-13 20:52:24 +00001418 irq_set_chained_handler_and_data(pa->irq, pmic_arb_chained_irq, pa);
Nicholas Troast237e9142016-06-14 16:39:38 -07001419 enable_irq_wake(pa->irq);
Josh Cartwright67b563f2014-02-12 13:44:25 -06001420
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001421 err = spmi_controller_add(ctrl);
1422 if (err)
Josh Cartwright67b563f2014-02-12 13:44:25 -06001423 goto err_domain_remove;
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001424
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001425 return 0;
1426
Josh Cartwright67b563f2014-02-12 13:44:25 -06001427err_domain_remove:
Thomas Gleixnerfb68ba62015-07-13 20:52:24 +00001428 irq_set_chained_handler_and_data(pa->irq, NULL, NULL);
Josh Cartwright67b563f2014-02-12 13:44:25 -06001429 irq_domain_remove(pa->domain);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001430err_put_ctrl:
1431 spmi_controller_put(ctrl);
1432 return err;
1433}
1434
1435static int spmi_pmic_arb_remove(struct platform_device *pdev)
1436{
1437 struct spmi_controller *ctrl = platform_get_drvdata(pdev);
Abhijeet Dharmapurikarfbcfb7e2016-01-08 12:45:20 -08001438 struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
Abhijeet Dharmapurikar69dc3fc2016-11-07 15:51:24 -08001439
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001440 spmi_controller_remove(ctrl);
Thomas Gleixnerfb68ba62015-07-13 20:52:24 +00001441 irq_set_chained_handler_and_data(pa->irq, NULL, NULL);
Josh Cartwright67b563f2014-02-12 13:44:25 -06001442 irq_domain_remove(pa->domain);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001443 spmi_controller_put(ctrl);
1444 return 0;
1445}
1446
1447static const struct of_device_id spmi_pmic_arb_match_table[] = {
1448 { .compatible = "qcom,spmi-pmic-arb", },
1449 {},
1450};
1451MODULE_DEVICE_TABLE(of, spmi_pmic_arb_match_table);
1452
1453static struct platform_driver spmi_pmic_arb_driver = {
1454 .probe = spmi_pmic_arb_probe,
1455 .remove = spmi_pmic_arb_remove,
1456 .driver = {
1457 .name = "spmi_pmic_arb",
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001458 .of_match_table = spmi_pmic_arb_match_table,
Patrick Dalya118d1d2018-05-11 18:47:45 -07001459 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001460 },
1461};
Abhijeet Dharmapurikardf9bf942015-09-23 11:36:23 -07001462
1463int __init spmi_pmic_arb_init(void)
1464{
1465 return platform_driver_register(&spmi_pmic_arb_driver);
1466}
1467arch_initcall(spmi_pmic_arb_init);
Kenneth Heitke39ae93e2014-02-12 13:44:24 -06001468
1469MODULE_LICENSE("GPL v2");
1470MODULE_ALIAS("platform:spmi_pmic_arb");