spmi-pmic-arb.c 29.3 KB
Newer Older
1 2
/*
 * Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
3 4 5 6 7 8 9 10 11 12
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */
13
#include <linux/bitmap.h>
14 15 16 17
#include <linux/delay.h>
#include <linux/err.h>
#include <linux/interrupt.h>
#include <linux/io.h>
18 19 20
#include <linux/irqchip/chained_irq.h>
#include <linux/irqdomain.h>
#include <linux/irq.h>
21 22 23 24 25 26 27 28 29
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/spmi.h>

/* PMIC Arbiter configuration registers */
#define PMIC_ARB_VERSION		0x0000
30
#define PMIC_ARB_VERSION_V2_MIN		0x20010000
31 32
#define PMIC_ARB_INT_EN			0x0004

33 34 35 36 37 38 39 40 41
/* PMIC Arbiter channel registers offsets */
#define PMIC_ARB_CMD			0x00
#define PMIC_ARB_CONFIG			0x04
#define PMIC_ARB_STATUS			0x08
#define PMIC_ARB_WDATA0			0x10
#define PMIC_ARB_WDATA1			0x14
#define PMIC_ARB_RDATA0			0x18
#define PMIC_ARB_RDATA1			0x1C
#define PMIC_ARB_REG_CHNL(N)		(0x800 + 0x4 * (N))
42 43 44 45 46 47 48 49 50 51

/* Mapping Table */
#define SPMI_MAPPING_TABLE_REG(N)	(0x0B00 + (4 * (N)))
#define SPMI_MAPPING_BIT_INDEX(X)	(((X) >> 18) & 0xF)
#define SPMI_MAPPING_BIT_IS_0_FLAG(X)	(((X) >> 17) & 0x1)
#define SPMI_MAPPING_BIT_IS_0_RESULT(X)	(((X) >> 9) & 0xFF)
#define SPMI_MAPPING_BIT_IS_1_FLAG(X)	(((X) >> 8) & 0x1)
#define SPMI_MAPPING_BIT_IS_1_RESULT(X)	(((X) >> 0) & 0xFF)

#define SPMI_MAPPING_TABLE_TREE_DEPTH	16	/* Maximum of 16-bits */
52 53
#define PMIC_ARB_MAX_PPID		BIT(12) /* PPID is 12bit */
#define PMIC_ARB_CHAN_VALID		BIT(15)
54 55 56 57 58 59 60

/* Ownership Table */
#define SPMI_OWNERSHIP_TABLE_REG(N)	(0x0700 + (4 * (N)))
#define SPMI_OWNERSHIP_PERIPH2OWNER(X)	((X) & 0x7)

/* Channel Status fields */
enum pmic_arb_chnl_status {
61 62 63 64
	PMIC_ARB_STATUS_DONE	= BIT(0),
	PMIC_ARB_STATUS_FAILURE	= BIT(1),
	PMIC_ARB_STATUS_DENIED	= BIT(2),
	PMIC_ARB_STATUS_DROPPED	= BIT(3),
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
};

/* Command register fields */
#define PMIC_ARB_CMD_MAX_BYTE_COUNT	8

/* Command Opcodes */
enum pmic_arb_cmd_op_code {
	PMIC_ARB_OP_EXT_WRITEL = 0,
	PMIC_ARB_OP_EXT_READL = 1,
	PMIC_ARB_OP_EXT_WRITE = 2,
	PMIC_ARB_OP_RESET = 3,
	PMIC_ARB_OP_SLEEP = 4,
	PMIC_ARB_OP_SHUTDOWN = 5,
	PMIC_ARB_OP_WAKEUP = 6,
	PMIC_ARB_OP_AUTHENTICATE = 7,
	PMIC_ARB_OP_MSTR_READ = 8,
	PMIC_ARB_OP_MSTR_WRITE = 9,
	PMIC_ARB_OP_EXT_READ = 13,
	PMIC_ARB_OP_WRITE = 14,
	PMIC_ARB_OP_READ = 15,
	PMIC_ARB_OP_ZERO_WRITE = 16,
};

/* Maximum number of support PMIC peripherals */
89
#define PMIC_ARB_MAX_PERIPHS		512
90 91 92 93 94 95 96 97 98
#define PMIC_ARB_TIMEOUT_US		100
#define PMIC_ARB_MAX_TRANS_BYTES	(8)

#define PMIC_ARB_APID_MASK		0xFF
#define PMIC_ARB_PPID_MASK		0xFFF

/* interrupt enable bit */
#define SPMI_PIC_ACC_ENABLE_BIT		BIT(0)

99 100
struct pmic_arb_ver_ops;

101
/**
102
 * spmi_pmic_arb - SPMI PMIC Arbiter object
103
 *
104 105
 * @rd_base:		on v1 "core", on v2 "observer" register base off DT.
 * @wr_base:		on v1 "core", on v2 "chnls"    register base off DT.
106 107 108
 * @intr:		address of the SPMI interrupt control registers.
 * @cnfg:		address of the PMIC Arbiter configuration registers.
 * @lock:		lock to synchronize accesses.
109
 * @channel:		execution environment channel to use for accesses.
110 111 112 113
 * @irq:		PMIC ARB interrupt.
 * @ee:			the current Execution Environment
 * @min_apid:		minimum APID (used for bounding IRQ search)
 * @max_apid:		maximum APID
114
 * @max_periph:		maximum number of PMIC peripherals supported by HW.
115 116 117
 * @mapping_table:	in-memory copy of PPID -> APID mapping table.
 * @domain:		irq domain object for PMIC IRQ domain
 * @spmic:		SPMI controller object
118 119
 * @apid_to_ppid:	in-memory copy of APID -> PPID mapping table.
 * @ver_ops:		version dependent operations.
120
 * @ppid_to_apid	in-memory copy of PPID -> channel (APID) mapping table.
121
 *			v2 only.
122
 */
123
struct spmi_pmic_arb {
124 125
	void __iomem		*rd_base;
	void __iomem		*wr_base;
126 127
	void __iomem		*intr;
	void __iomem		*cnfg;
128 129
	void __iomem		*core;
	resource_size_t		core_size;
130 131
	raw_spinlock_t		lock;
	u8			channel;
132 133
	int			irq;
	u8			ee;
134 135
	u16			min_apid;
	u16			max_apid;
136
	u16			max_periph;
137 138
	u32			*mapping_table;
	DECLARE_BITMAP(mapping_table_valid, PMIC_ARB_MAX_PERIPHS);
139 140
	struct irq_domain	*domain;
	struct spmi_controller	*spmic;
141
	u16			*apid_to_ppid;
142
	const struct pmic_arb_ver_ops *ver_ops;
143 144 145
	u16			*ppid_to_apid;
	u16			last_apid;
	u8			*apid_to_owner;
146 147 148 149 150
};

/**
 * pmic_arb_ver: version dependent functionality.
 *
151
 * @mode:	access rights to specified pmic peripheral.
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
 * @non_data_cmd:	on v1 issues an spmi non-data command.
 *			on v2 no HW support, returns -EOPNOTSUPP.
 * @offset:		on v1 offset of per-ee channel.
 *			on v2 offset of per-ee and per-ppid channel.
 * @fmt_cmd:		formats a GENI/SPMI command.
 * @owner_acc_status:	on v1 offset of PMIC_ARB_SPMI_PIC_OWNERm_ACC_STATUSn
 *			on v2 offset of SPMI_PIC_OWNERm_ACC_STATUSn.
 * @acc_enable:		on v1 offset of PMIC_ARB_SPMI_PIC_ACC_ENABLEn
 *			on v2 offset of SPMI_PIC_ACC_ENABLEn.
 * @irq_status:		on v1 offset of PMIC_ARB_SPMI_PIC_IRQ_STATUSn
 *			on v2 offset of SPMI_PIC_IRQ_STATUSn.
 * @irq_clear:		on v1 offset of PMIC_ARB_SPMI_PIC_IRQ_CLEARn
 *			on v2 offset of SPMI_PIC_IRQ_CLEARn.
 */
struct pmic_arb_ver_ops {
167 168
	int (*ppid_to_apid)(struct spmi_pmic_arb *pa, u8 sid, u16 addr,
			u8 *apid);
169
	int (*mode)(struct spmi_pmic_arb *dev, u8 sid, u16 addr,
170
			mode_t *mode);
171
	/* spmi commands (read_cmd, write_cmd, cmd) functionality */
172
	int (*offset)(struct spmi_pmic_arb *dev, u8 sid, u16 addr,
173
		      u32 *offset);
174 175 176 177 178 179 180
	u32 (*fmt_cmd)(u8 opc, u8 sid, u16 addr, u8 bc);
	int (*non_data_cmd)(struct spmi_controller *ctrl, u8 opc, u8 sid);
	/* Interrupts controller functionality (offset of PIC registers) */
	u32 (*owner_acc_status)(u8 m, u8 n);
	u32 (*acc_enable)(u8 n);
	u32 (*irq_status)(u8 n);
	u32 (*irq_clear)(u8 n);
181 182
};

183
static inline void pmic_arb_base_write(struct spmi_pmic_arb *pa,
184 185
				       u32 offset, u32 val)
{
186
	writel_relaxed(val, pa->wr_base + offset);
187 188
}

189
static inline void pmic_arb_set_rd_cmd(struct spmi_pmic_arb *pa,
190 191
				       u32 offset, u32 val)
{
192
	writel_relaxed(val, pa->rd_base + offset);
193 194 195 196 197 198 199 200
}

/**
 * pa_read_data: reads pmic-arb's register and copy 1..4 bytes to buf
 * @bc:		byte count -1. range: 0..3
 * @reg:	register's address
 * @buf:	output parameter, length must be bc + 1
 */
201
static void pa_read_data(struct spmi_pmic_arb *pa, u8 *buf, u32 reg, u8 bc)
202
{
203 204
	u32 data = __raw_readl(pa->rd_base + reg);

205 206 207 208 209 210 211 212 213 214
	memcpy(buf, &data, (bc & 3) + 1);
}

/**
 * pa_write_data: write 1..4 bytes from buf to pmic-arb's register
 * @bc:		byte-count -1. range: 0..3.
 * @reg:	register's address.
 * @buf:	buffer to write. length must be bc + 1.
 */
static void
215
pa_write_data(struct spmi_pmic_arb *pa, const u8 *buf, u32 reg, u8 bc)
216 217
{
	u32 data = 0;
218

219
	memcpy(&data, buf, (bc & 3) + 1);
220
	pmic_arb_base_write(pa, reg, data);
221 222
}

223 224
static int pmic_arb_wait_for_done(struct spmi_controller *ctrl,
				  void __iomem *base, u8 sid, u16 addr)
225
{
226
	struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
227 228
	u32 status = 0;
	u32 timeout = PMIC_ARB_TIMEOUT_US;
229 230 231
	u32 offset;
	int rc;

232
	rc = pa->ver_ops->offset(pa, sid, addr, &offset);
233 234 235 236
	if (rc)
		return rc;

	offset += PMIC_ARB_STATUS;
237 238

	while (timeout--) {
239
		status = readl_relaxed(base + offset);
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273

		if (status & PMIC_ARB_STATUS_DONE) {
			if (status & PMIC_ARB_STATUS_DENIED) {
				dev_err(&ctrl->dev,
					"%s: transaction denied (0x%x)\n",
					__func__, status);
				return -EPERM;
			}

			if (status & PMIC_ARB_STATUS_FAILURE) {
				dev_err(&ctrl->dev,
					"%s: transaction failed (0x%x)\n",
					__func__, status);
				return -EIO;
			}

			if (status & PMIC_ARB_STATUS_DROPPED) {
				dev_err(&ctrl->dev,
					"%s: transaction dropped (0x%x)\n",
					__func__, status);
				return -EIO;
			}

			return 0;
		}
		udelay(1);
	}

	dev_err(&ctrl->dev,
		"%s: timeout, status 0x%x\n",
		__func__, status);
	return -ETIMEDOUT;
}

274 275
static int
pmic_arb_non_data_cmd_v1(struct spmi_controller *ctrl, u8 opc, u8 sid)
276
{
277
	struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
278 279 280
	unsigned long flags;
	u32 cmd;
	int rc;
281 282
	u32 offset;

283
	rc = pa->ver_ops->offset(pa, sid, 0, &offset);
284 285
	if (rc)
		return rc;
286 287 288

	cmd = ((opc | 0x40) << 27) | ((sid & 0xf) << 20);

289 290 291 292
	raw_spin_lock_irqsave(&pa->lock, flags);
	pmic_arb_base_write(pa, offset + PMIC_ARB_CMD, cmd);
	rc = pmic_arb_wait_for_done(ctrl, pa->wr_base, sid, 0);
	raw_spin_unlock_irqrestore(&pa->lock, flags);
293 294 295 296

	return rc;
}

297 298 299 300 301 302 303 304 305
static int
pmic_arb_non_data_cmd_v2(struct spmi_controller *ctrl, u8 opc, u8 sid)
{
	return -EOPNOTSUPP;
}

/* Non-data command */
static int pmic_arb_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid)
{
306
	struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
307 308 309 310 311 312 313

	dev_dbg(&ctrl->dev, "cmd op:0x%x sid:%d\n", opc, sid);

	/* Check for valid non-data command */
	if (opc < SPMI_CMD_RESET || opc > SPMI_CMD_WAKEUP)
		return -EINVAL;

314
	return pa->ver_ops->non_data_cmd(ctrl, opc, sid);
315 316
}

317 318 319
static int pmic_arb_read_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
			     u16 addr, u8 *buf, size_t len)
{
320
	struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
321 322 323 324
	unsigned long flags;
	u8 bc = len - 1;
	u32 cmd;
	int rc;
325
	u32 offset;
326
	mode_t mode;
327

328
	rc = pa->ver_ops->offset(pa, sid, addr, &offset);
329 330
	if (rc)
		return rc;
331

332
	rc = pa->ver_ops->mode(pa, sid, addr, &mode);
333 334 335 336
	if (rc)
		return rc;

	if (!(mode & S_IRUSR)) {
337
		dev_err(&pa->spmic->dev,
338 339 340 341 342
			"error: impermissible read from peripheral sid:%d addr:0x%x\n",
			sid, addr);
		return -EPERM;
	}

343 344
	if (bc >= PMIC_ARB_MAX_TRANS_BYTES) {
		dev_err(&ctrl->dev,
345
			"pmic-arb supports 1..%d bytes per trans, but:%zu requested",
346 347 348 349 350 351 352 353 354 355 356 357 358 359
			PMIC_ARB_MAX_TRANS_BYTES, len);
		return  -EINVAL;
	}

	/* Check the opcode */
	if (opc >= 0x60 && opc <= 0x7F)
		opc = PMIC_ARB_OP_READ;
	else if (opc >= 0x20 && opc <= 0x2F)
		opc = PMIC_ARB_OP_EXT_READ;
	else if (opc >= 0x38 && opc <= 0x3F)
		opc = PMIC_ARB_OP_EXT_READL;
	else
		return -EINVAL;

360
	cmd = pa->ver_ops->fmt_cmd(opc, sid, addr, bc);
361

362 363 364
	raw_spin_lock_irqsave(&pa->lock, flags);
	pmic_arb_set_rd_cmd(pa, offset + PMIC_ARB_CMD, cmd);
	rc = pmic_arb_wait_for_done(ctrl, pa->rd_base, sid, addr);
365 366 367
	if (rc)
		goto done;

368
	pa_read_data(pa, buf, offset + PMIC_ARB_RDATA0,
369 370 371
		     min_t(u8, bc, 3));

	if (bc > 3)
372
		pa_read_data(pa, buf + 4, offset + PMIC_ARB_RDATA1, bc - 4);
373 374

done:
375
	raw_spin_unlock_irqrestore(&pa->lock, flags);
376 377 378 379 380 381
	return rc;
}

static int pmic_arb_write_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
			      u16 addr, const u8 *buf, size_t len)
{
382
	struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
383 384 385 386
	unsigned long flags;
	u8 bc = len - 1;
	u32 cmd;
	int rc;
387
	u32 offset;
388
	mode_t mode;
389

390
	rc = pa->ver_ops->offset(pa, sid, addr, &offset);
391 392
	if (rc)
		return rc;
393

394
	rc = pa->ver_ops->mode(pa, sid, addr, &mode);
395 396 397 398
	if (rc)
		return rc;

	if (!(mode & S_IWUSR)) {
399
		dev_err(&pa->spmic->dev,
400 401 402 403 404
			"error: impermissible write to peripheral sid:%d addr:0x%x\n",
			sid, addr);
		return -EPERM;
	}

405 406
	if (bc >= PMIC_ARB_MAX_TRANS_BYTES) {
		dev_err(&ctrl->dev,
407
			"pmic-arb supports 1..%d bytes per trans, but:%zu requested",
408 409 410 411 412 413 414 415 416 417 418
			PMIC_ARB_MAX_TRANS_BYTES, len);
		return  -EINVAL;
	}

	/* Check the opcode */
	if (opc >= 0x40 && opc <= 0x5F)
		opc = PMIC_ARB_OP_WRITE;
	else if (opc >= 0x00 && opc <= 0x0F)
		opc = PMIC_ARB_OP_EXT_WRITE;
	else if (opc >= 0x30 && opc <= 0x37)
		opc = PMIC_ARB_OP_EXT_WRITEL;
419
	else if (opc >= 0x80)
420 421 422 423
		opc = PMIC_ARB_OP_ZERO_WRITE;
	else
		return -EINVAL;

424
	cmd = pa->ver_ops->fmt_cmd(opc, sid, addr, bc);
425 426

	/* Write data to FIFOs */
427 428
	raw_spin_lock_irqsave(&pa->lock, flags);
	pa_write_data(pa, buf, offset + PMIC_ARB_WDATA0, min_t(u8, bc, 3));
429
	if (bc > 3)
430
		pa_write_data(pa, buf + 4, offset + PMIC_ARB_WDATA1, bc - 4);
431 432

	/* Start the transaction */
433 434 435
	pmic_arb_base_write(pa, offset + PMIC_ARB_CMD, cmd);
	rc = pmic_arb_wait_for_done(ctrl, pa->wr_base, sid, addr);
	raw_spin_unlock_irqrestore(&pa->lock, flags);
436 437 438 439

	return rc;
}

440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
enum qpnpint_regs {
	QPNPINT_REG_RT_STS		= 0x10,
	QPNPINT_REG_SET_TYPE		= 0x11,
	QPNPINT_REG_POLARITY_HIGH	= 0x12,
	QPNPINT_REG_POLARITY_LOW	= 0x13,
	QPNPINT_REG_LATCHED_CLR		= 0x14,
	QPNPINT_REG_EN_SET		= 0x15,
	QPNPINT_REG_EN_CLR		= 0x16,
	QPNPINT_REG_LATCHED_STS		= 0x18,
};

struct spmi_pmic_arb_qpnpint_type {
	u8 type; /* 1 -> edge */
	u8 polarity_high;
	u8 polarity_low;
} __packed;

/* Simplified accessor functions for irqchip callbacks */
static void qpnpint_spmi_write(struct irq_data *d, u8 reg, void *buf,
			       size_t len)
{
461
	struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
462 463 464 465 466 467 468 469 470 471 472 473
	u8 sid = d->hwirq >> 24;
	u8 per = d->hwirq >> 16;

	if (pmic_arb_write_cmd(pa->spmic, SPMI_CMD_EXT_WRITEL, sid,
			       (per << 8) + reg, buf, len))
		dev_err_ratelimited(&pa->spmic->dev,
				"failed irqchip transaction on %x\n",
				    d->irq);
}

static void qpnpint_spmi_read(struct irq_data *d, u8 reg, void *buf, size_t len)
{
474
	struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
475 476 477 478 479 480 481 482 483 484
	u8 sid = d->hwirq >> 24;
	u8 per = d->hwirq >> 16;

	if (pmic_arb_read_cmd(pa->spmic, SPMI_CMD_EXT_READL, sid,
			      (per << 8) + reg, buf, len))
		dev_err_ratelimited(&pa->spmic->dev,
				"failed irqchip transaction on %x\n",
				    d->irq);
}

485
static void periph_interrupt(struct spmi_pmic_arb *pa, u8 apid)
486 487 488 489 490
{
	unsigned int irq;
	u32 status;
	int id;

491
	status = readl_relaxed(pa->intr + pa->ver_ops->irq_status(apid));
492 493
	while (status) {
		id = ffs(status) - 1;
494
		status &= ~BIT(id);
495 496 497 498 499 500 501 502
		irq = irq_find_mapping(pa->domain,
				       pa->apid_to_ppid[apid] << 16
				     | id << 8
				     | apid);
		generic_handle_irq(irq);
	}
}

503
static void pmic_arb_chained_irq(struct irq_desc *desc)
504
{
505
	struct spmi_pmic_arb *pa = irq_desc_get_handler_data(desc);
506
	struct irq_chip *chip = irq_desc_get_chip(desc);
507 508 509 510 511 512 513 514 515 516
	void __iomem *intr = pa->intr;
	int first = pa->min_apid >> 5;
	int last = pa->max_apid >> 5;
	u32 status;
	int i, id;

	chained_irq_enter(chip, desc);

	for (i = first; i <= last; ++i) {
		status = readl_relaxed(intr +
517
				      pa->ver_ops->owner_acc_status(pa->ee, i));
518 519
		while (status) {
			id = ffs(status) - 1;
520
			status &= ~BIT(id);
521 522 523 524 525 526 527 528 529
			periph_interrupt(pa, id + i * 32);
		}
	}

	chained_irq_exit(chip, desc);
}

static void qpnpint_irq_ack(struct irq_data *d)
{
530
	struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
531 532 533 534 535 536
	u8 irq  = d->hwirq >> 8;
	u8 apid = d->hwirq;
	unsigned long flags;
	u8 data;

	raw_spin_lock_irqsave(&pa->lock, flags);
537
	writel_relaxed(BIT(irq), pa->intr + pa->ver_ops->irq_clear(apid));
538 539
	raw_spin_unlock_irqrestore(&pa->lock, flags);

540
	data = BIT(irq);
541 542 543 544 545
	qpnpint_spmi_write(d, QPNPINT_REG_LATCHED_CLR, &data, 1);
}

static void qpnpint_irq_mask(struct irq_data *d)
{
546
	struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
547 548 549 550 551 552 553
	u8 irq  = d->hwirq >> 8;
	u8 apid = d->hwirq;
	unsigned long flags;
	u32 status;
	u8 data;

	raw_spin_lock_irqsave(&pa->lock, flags);
554
	status = readl_relaxed(pa->intr + pa->ver_ops->acc_enable(apid));
555 556
	if (status & SPMI_PIC_ACC_ENABLE_BIT) {
		status = status & ~SPMI_PIC_ACC_ENABLE_BIT;
557 558
		writel_relaxed(status, pa->intr +
			       pa->ver_ops->acc_enable(apid));
559 560 561
	}
	raw_spin_unlock_irqrestore(&pa->lock, flags);

562
	data = BIT(irq);
563 564 565 566 567
	qpnpint_spmi_write(d, QPNPINT_REG_EN_CLR, &data, 1);
}

static void qpnpint_irq_unmask(struct irq_data *d)
{
568
	struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
569 570 571 572 573 574 575
	u8 irq  = d->hwirq >> 8;
	u8 apid = d->hwirq;
	unsigned long flags;
	u32 status;
	u8 data;

	raw_spin_lock_irqsave(&pa->lock, flags);
576
	status = readl_relaxed(pa->intr + pa->ver_ops->acc_enable(apid));
577 578
	if (!(status & SPMI_PIC_ACC_ENABLE_BIT)) {
		writel_relaxed(status | SPMI_PIC_ACC_ENABLE_BIT,
579
				pa->intr + pa->ver_ops->acc_enable(apid));
580 581 582
	}
	raw_spin_unlock_irqrestore(&pa->lock, flags);

583
	data = BIT(irq);
584 585 586 587 588 589 590 591 592 593
	qpnpint_spmi_write(d, QPNPINT_REG_EN_SET, &data, 1);
}

static void qpnpint_irq_enable(struct irq_data *d)
{
	u8 irq  = d->hwirq >> 8;
	u8 data;

	qpnpint_irq_unmask(d);

594
	data = BIT(irq);
595 596 597 598 599 600 601
	qpnpint_spmi_write(d, QPNPINT_REG_LATCHED_CLR, &data, 1);
}

static int qpnpint_irq_set_type(struct irq_data *d, unsigned int flow_type)
{
	struct spmi_pmic_arb_qpnpint_type type;
	u8 irq = d->hwirq >> 8;
602
	u8 bit_mask_irq = BIT(irq);
603 604 605 606

	qpnpint_spmi_read(d, QPNPINT_REG_SET_TYPE, &type, sizeof(type));

	if (flow_type & (IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING)) {
607
		type.type |= bit_mask_irq;
608
		if (flow_type & IRQF_TRIGGER_RISING)
609
			type.polarity_high |= bit_mask_irq;
610
		if (flow_type & IRQF_TRIGGER_FALLING)
611
			type.polarity_low  |= bit_mask_irq;
612 613 614 615 616
	} else {
		if ((flow_type & (IRQF_TRIGGER_HIGH)) &&
		    (flow_type & (IRQF_TRIGGER_LOW)))
			return -EINVAL;

617
		type.type &= ~bit_mask_irq; /* level trig */
618
		if (flow_type & IRQF_TRIGGER_HIGH)
619
			type.polarity_high |= bit_mask_irq;
620
		else
621
			type.polarity_low  |= bit_mask_irq;
622 623 624 625 626 627
	}

	qpnpint_spmi_write(d, QPNPINT_REG_SET_TYPE, &type, sizeof(type));
	return 0;
}

628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
static int qpnpint_get_irqchip_state(struct irq_data *d,
				     enum irqchip_irq_state which,
				     bool *state)
{
	u8 irq = d->hwirq >> 8;
	u8 status = 0;

	if (which != IRQCHIP_STATE_LINE_LEVEL)
		return -EINVAL;

	qpnpint_spmi_read(d, QPNPINT_REG_RT_STS, &status, 1);
	*state = !!(status & BIT(irq));

	return 0;
}

644 645 646 647 648 649 650
static struct irq_chip pmic_arb_irqchip = {
	.name		= "pmic_arb",
	.irq_enable	= qpnpint_irq_enable,
	.irq_ack	= qpnpint_irq_ack,
	.irq_mask	= qpnpint_irq_mask,
	.irq_unmask	= qpnpint_irq_unmask,
	.irq_set_type	= qpnpint_irq_set_type,
651
	.irq_get_irqchip_state	= qpnpint_get_irqchip_state,
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
	.flags		= IRQCHIP_MASK_ON_SUSPEND
			| IRQCHIP_SKIP_SET_WAKE,
};

struct spmi_pmic_arb_irq_spec {
	unsigned slave:4;
	unsigned per:8;
	unsigned irq:3;
};

static int qpnpint_irq_domain_dt_translate(struct irq_domain *d,
					   struct device_node *controller,
					   const u32 *intspec,
					   unsigned int intsize,
					   unsigned long *out_hwirq,
					   unsigned int *out_type)
{
669
	struct spmi_pmic_arb *pa = d->host_data;
670
	struct spmi_pmic_arb_irq_spec spec;
671
	int rc;
672 673 674 675 676 677
	u8 apid;

	dev_dbg(&pa->spmic->dev,
		"intspec[0] 0x%1x intspec[1] 0x%02x intspec[2] 0x%02x\n",
		intspec[0], intspec[1], intspec[2]);

678
	if (irq_domain_get_of_node(d) != controller)
679 680 681 682 683 684 685 686 687 688
		return -EINVAL;
	if (intsize != 4)
		return -EINVAL;
	if (intspec[0] > 0xF || intspec[1] > 0xFF || intspec[2] > 0x7)
		return -EINVAL;

	spec.slave = intspec[0];
	spec.per   = intspec[1];
	spec.irq   = intspec[2];

689 690 691 692 693 694 695 696
	rc = pa->ver_ops->ppid_to_apid(pa, intspec[0],
			(intspec[1] << 8), &apid);
	if (rc < 0) {
		dev_err(&pa->spmic->dev,
		"failed to xlate sid = 0x%x, periph = 0x%x, irq = %x rc = %d\n",
		intspec[0], intspec[1], intspec[2], rc);
		return rc;
	}
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718

	/* Keep track of {max,min}_apid for bounding search during interrupt */
	if (apid > pa->max_apid)
		pa->max_apid = apid;
	if (apid < pa->min_apid)
		pa->min_apid = apid;

	*out_hwirq = spec.slave << 24
		   | spec.per   << 16
		   | spec.irq   << 8
		   | apid;
	*out_type  = intspec[3] & IRQ_TYPE_SENSE_MASK;

	dev_dbg(&pa->spmic->dev, "out_hwirq = %lu\n", *out_hwirq);

	return 0;
}

static int qpnpint_irq_domain_map(struct irq_domain *d,
				  unsigned int virq,
				  irq_hw_number_t hwirq)
{
719
	struct spmi_pmic_arb *pa = d->host_data;
720 721 722 723 724 725 726 727 728

	dev_dbg(&pa->spmic->dev, "virq = %u, hwirq = %lu\n", virq, hwirq);

	irq_set_chip_and_handler(virq, &pmic_arb_irqchip, handle_level_irq);
	irq_set_chip_data(virq, d->host_data);
	irq_set_noprobe(virq);
	return 0;
}

729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776
static int
pmic_arb_ppid_to_apid_v1(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u8 *apid)
{
	u16 ppid = sid << 8 | ((addr >> 8) & 0xFF);
	u32 *mapping_table = pa->mapping_table;
	int index = 0, i;
	u16 apid_valid;
	u32 data;

	apid_valid = pa->ppid_to_apid[ppid];
	if (apid_valid & PMIC_ARB_CHAN_VALID) {
		*apid = (apid_valid & ~PMIC_ARB_CHAN_VALID);
		return 0;
	}

	for (i = 0; i < SPMI_MAPPING_TABLE_TREE_DEPTH; ++i) {
		if (!test_and_set_bit(index, pa->mapping_table_valid))
			mapping_table[index] = readl_relaxed(pa->cnfg +
						SPMI_MAPPING_TABLE_REG(index));

		data = mapping_table[index];

		if (ppid & BIT(SPMI_MAPPING_BIT_INDEX(data))) {
			if (SPMI_MAPPING_BIT_IS_1_FLAG(data)) {
				index = SPMI_MAPPING_BIT_IS_1_RESULT(data);
			} else {
				*apid = SPMI_MAPPING_BIT_IS_1_RESULT(data);
				pa->ppid_to_apid[ppid]
					= *apid | PMIC_ARB_CHAN_VALID;
				pa->apid_to_ppid[*apid] = ppid;
				return 0;
			}
		} else {
			if (SPMI_MAPPING_BIT_IS_0_FLAG(data)) {
				index = SPMI_MAPPING_BIT_IS_0_RESULT(data);
			} else {
				*apid = SPMI_MAPPING_BIT_IS_0_RESULT(data);
				pa->ppid_to_apid[ppid]
					= *apid | PMIC_ARB_CHAN_VALID;
				pa->apid_to_ppid[*apid] = ppid;
				return 0;
			}
		}
	}

	return -ENODEV;
}

777
static int
778
pmic_arb_mode_v1(struct spmi_pmic_arb *pa, u8 sid, u16 addr, mode_t *mode)
779 780 781 782 783
{
	*mode = S_IRUSR | S_IWUSR;
	return 0;
}

784
/* v1 offset per ee */
785
static int
786
pmic_arb_offset_v1(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u32 *offset)
787
{
788 789 790 791
	*offset = 0x800 + 0x80 * pa->channel;
	return 0;
}

792
static u16 pmic_arb_find_apid(struct spmi_pmic_arb *pa, u16 ppid)
793 794
{
	u32 regval, offset;
795
	u16 apid;
796 797 798 799
	u16 id;

	/*
	 * PMIC_ARB_REG_CHNL is a table in HW mapping channel to ppid.
800
	 * ppid_to_apid is an in-memory invert of that table.
801
	 */
802
	for (apid = pa->last_apid; apid < pa->max_periph; apid++) {
803
		regval = readl_relaxed(pa->cnfg +
804 805
				      SPMI_OWNERSHIP_TABLE_REG(apid));
		pa->apid_to_owner[apid] = SPMI_OWNERSHIP_PERIPH2OWNER(regval);
806

807
		offset = PMIC_ARB_REG_CHNL(apid);
808 809 810 811 812 813 814 815
		if (offset >= pa->core_size)
			break;

		regval = readl_relaxed(pa->core + offset);
		if (!regval)
			continue;

		id = (regval >> 8) & PMIC_ARB_PPID_MASK;
816
		pa->ppid_to_apid[id] = apid | PMIC_ARB_CHAN_VALID;
817
		pa->apid_to_ppid[apid] = id;
818
		if (id == ppid) {
819
			apid |= PMIC_ARB_CHAN_VALID;
820 821 822
			break;
		}
	}
823
	pa->last_apid = apid & ~PMIC_ARB_CHAN_VALID;
824

825
	return apid;
826 827
}

828

829
static int
830
pmic_arb_ppid_to_apid_v2(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u8 *apid)
831 832
{
	u16 ppid = (sid << 8) | (addr >> 8);
833
	u16 apid_valid;
834

835 836 837 838
	apid_valid = pa->ppid_to_apid[ppid];
	if (!(apid_valid & PMIC_ARB_CHAN_VALID))
		apid_valid = pmic_arb_find_apid(pa, ppid);
	if (!(apid_valid & PMIC_ARB_CHAN_VALID))
839 840
		return -ENODEV;

841 842 843 844 845 846 847 848 849 850 851 852 853 854 855
	*apid = (apid_valid & ~PMIC_ARB_CHAN_VALID);
	return 0;
}

static int
pmic_arb_mode_v2(struct spmi_pmic_arb *pa, u8 sid, u16 addr, mode_t *mode)
{
	u8 apid;
	u8 owner;
	int rc;

	rc = pmic_arb_ppid_to_apid_v2(pa, sid, addr, &apid);
	if (rc < 0)
		return rc;

856 857 858
	*mode = 0;
	*mode |= S_IRUSR;

859
	owner = pa->apid_to_owner[apid];
860 861 862 863 864
	if (owner == pa->ee)
		*mode |= S_IWUSR;
	return 0;
}

865
/* v2 offset per ppid and per ee */
866
static int
867
pmic_arb_offset_v2(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u32 *offset)
868
{
869 870
	u8 apid;
	int rc;
871

872 873 874
	rc = pmic_arb_ppid_to_apid_v2(pa, sid, addr, &apid);
	if (rc < 0)
		return rc;
875

876
	*offset = 0x1000 * pa->ee + 0x8000 * apid;
877
	return 0;
878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
}

static u32 pmic_arb_fmt_cmd_v1(u8 opc, u8 sid, u16 addr, u8 bc)
{
	return (opc << 27) | ((sid & 0xf) << 20) | (addr << 4) | (bc & 0x7);
}

static u32 pmic_arb_fmt_cmd_v2(u8 opc, u8 sid, u16 addr, u8 bc)
{
	return (opc << 27) | ((addr & 0xff) << 4) | (bc & 0x7);
}

static u32 pmic_arb_owner_acc_status_v1(u8 m, u8 n)
{
	return 0x20 * m + 0x4 * n;
}

static u32 pmic_arb_owner_acc_status_v2(u8 m, u8 n)
{
	return 0x100000 + 0x1000 * m + 0x4 * n;
}

static u32 pmic_arb_acc_enable_v1(u8 n)
{
	return 0x200 + 0x4 * n;
}

static u32 pmic_arb_acc_enable_v2(u8 n)
{
	return 0x1000 * n;
}

static u32 pmic_arb_irq_status_v1(u8 n)
{
	return 0x600 + 0x4 * n;
}

static u32 pmic_arb_irq_status_v2(u8 n)
{
	return 0x4 + 0x1000 * n;
}

static u32 pmic_arb_irq_clear_v1(u8 n)
{
	return 0xA00 + 0x4 * n;
}

static u32 pmic_arb_irq_clear_v2(u8 n)
{
	return 0x8 + 0x1000 * n;
}

static const struct pmic_arb_ver_ops pmic_arb_v1 = {
931
	.ppid_to_apid		= pmic_arb_ppid_to_apid_v1,
932
	.mode			= pmic_arb_mode_v1,
933 934 935 936 937 938 939 940 941 942
	.non_data_cmd		= pmic_arb_non_data_cmd_v1,
	.offset			= pmic_arb_offset_v1,
	.fmt_cmd		= pmic_arb_fmt_cmd_v1,
	.owner_acc_status	= pmic_arb_owner_acc_status_v1,
	.acc_enable		= pmic_arb_acc_enable_v1,
	.irq_status		= pmic_arb_irq_status_v1,
	.irq_clear		= pmic_arb_irq_clear_v1,
};

static const struct pmic_arb_ver_ops pmic_arb_v2 = {
943
	.ppid_to_apid		= pmic_arb_ppid_to_apid_v2,
944
	.mode			= pmic_arb_mode_v2,
945 946 947 948 949 950 951 952 953
	.non_data_cmd		= pmic_arb_non_data_cmd_v2,
	.offset			= pmic_arb_offset_v2,
	.fmt_cmd		= pmic_arb_fmt_cmd_v2,
	.owner_acc_status	= pmic_arb_owner_acc_status_v2,
	.acc_enable		= pmic_arb_acc_enable_v2,
	.irq_status		= pmic_arb_irq_status_v2,
	.irq_clear		= pmic_arb_irq_clear_v2,
};

954 955 956 957 958
static const struct irq_domain_ops pmic_arb_irq_domain_ops = {
	.map	= qpnpint_irq_domain_map,
	.xlate	= qpnpint_irq_domain_dt_translate,
};

959 960
static int spmi_pmic_arb_probe(struct platform_device *pdev)
{
961
	struct spmi_pmic_arb *pa;
962 963
	struct spmi_controller *ctrl;
	struct resource *res;
964 965
	void __iomem *core;
	u32 channel, ee, hw_ver;
966
	int err;
967
	bool is_v1;
968 969 970 971 972 973

	ctrl = spmi_controller_alloc(&pdev->dev, sizeof(*pa));
	if (!ctrl)
		return -ENOMEM;

	pa = spmi_controller_get_drvdata(ctrl);
974
	pa->spmic = ctrl;
975 976

	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "core");
977
	pa->core_size = resource_size(res);
978 979 980 981 982 983
	if (pa->core_size <= 0x800) {
		dev_err(&pdev->dev, "core_size is smaller than 0x800. Failing Probe\n");
		err = -EINVAL;
		goto err_put_ctrl;
	}

984 985 986
	core = devm_ioremap_resource(&ctrl->dev, res);
	if (IS_ERR(core)) {
		err = PTR_ERR(core);
987 988 989
		goto err_put_ctrl;
	}

990 991 992 993 994 995 996 997 998 999 1000
	hw_ver = readl_relaxed(core + PMIC_ARB_VERSION);
	is_v1  = (hw_ver < PMIC_ARB_VERSION_V2_MIN);

	dev_info(&ctrl->dev, "PMIC Arb Version-%d (0x%x)\n", (is_v1 ? 1 : 2),
		hw_ver);

	if (is_v1) {
		pa->ver_ops = &pmic_arb_v1;
		pa->wr_base = core;
		pa->rd_base = core;
	} else {
1001
		pa->core = core;
1002 1003
		pa->ver_ops = &pmic_arb_v2;

1004 1005 1006
		/* the apid to ppid table starts at PMIC_ARB_REG_CHNL(0) */
		pa->max_periph =  (pa->core_size - PMIC_ARB_REG_CHNL(0)) / 4;

1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
		res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
						   "obsrvr");
		pa->rd_base = devm_ioremap_resource(&ctrl->dev, res);
		if (IS_ERR(pa->rd_base)) {
			err = PTR_ERR(pa->rd_base);
			goto err_put_ctrl;
		}

		res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
						   "chnls");
		pa->wr_base = devm_ioremap_resource(&ctrl->dev, res);
		if (IS_ERR(pa->wr_base)) {
			err = PTR_ERR(pa->wr_base);
			goto err_put_ctrl;
		}

1023
		pa->ppid_to_apid = devm_kcalloc(&ctrl->dev,
1024
						PMIC_ARB_MAX_PPID,
1025
						sizeof(*pa->ppid_to_apid),
1026
						GFP_KERNEL);
1027
		if (!pa->ppid_to_apid) {
1028 1029 1030
			err = -ENOMEM;
			goto err_put_ctrl;
		}
1031

1032
		pa->apid_to_owner = devm_kcalloc(&ctrl->dev,
1033
						 pa->max_periph,
1034
						 sizeof(*pa->apid_to_owner),
1035
						 GFP_KERNEL);
1036
		if (!pa->apid_to_owner) {
1037 1038 1039
			err = -ENOMEM;
			goto err_put_ctrl;
		}
1040 1041
	}

1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "intr");
	pa->intr = devm_ioremap_resource(&ctrl->dev, res);
	if (IS_ERR(pa->intr)) {
		err = PTR_ERR(pa->intr);
		goto err_put_ctrl;
	}

	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cnfg");
	pa->cnfg = devm_ioremap_resource(&ctrl->dev, res);
	if (IS_ERR(pa->cnfg)) {
		err = PTR_ERR(pa->cnfg);
		goto err_put_ctrl;
	}

1056 1057 1058 1059 1060 1061
	pa->irq = platform_get_irq_byname(pdev, "periph_irq");
	if (pa->irq < 0) {
		err = pa->irq;
		goto err_put_ctrl;
	}

1062 1063 1064 1065 1066 1067 1068 1069 1070
	err = of_property_read_u32(pdev->dev.of_node, "qcom,channel", &channel);
	if (err) {
		dev_err(&pdev->dev, "channel unspecified.\n");
		goto err_put_ctrl;
	}

	if (channel > 5) {
		dev_err(&pdev->dev, "invalid channel (%u) specified.\n",
			channel);
1071
		err = -EINVAL;
1072 1073 1074 1075 1076
		goto err_put_ctrl;
	}

	pa->channel = channel;

1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
	err = of_property_read_u32(pdev->dev.of_node, "qcom,ee", &ee);
	if (err) {
		dev_err(&pdev->dev, "EE unspecified.\n");
		goto err_put_ctrl;
	}

	if (ee > 5) {
		dev_err(&pdev->dev, "invalid EE (%u) specified\n", ee);
		err = -EINVAL;
		goto err_put_ctrl;
	}

	pa->ee = ee;

1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
	pa->apid_to_ppid = devm_kcalloc(&ctrl->dev, PMIC_ARB_MAX_PERIPHS,
					    sizeof(*pa->apid_to_ppid),
					    GFP_KERNEL);
	if (!pa->apid_to_ppid) {
		err = -ENOMEM;
		goto err_put_ctrl;
	}

	pa->mapping_table = devm_kcalloc(&ctrl->dev, PMIC_ARB_MAX_PERIPHS - 1,
					sizeof(*pa->mapping_table), GFP_KERNEL);
	if (!pa->mapping_table) {
		err = -ENOMEM;
		goto err_put_ctrl;
	}
1105 1106 1107 1108 1109 1110

	/* Initialize max_apid/min_apid to the opposite bounds, during
	 * the irq domain translation, we are sure to update these */
	pa->max_apid = 0;
	pa->min_apid = PMIC_ARB_MAX_PERIPHS - 1;

1111 1112 1113 1114 1115 1116 1117
	platform_set_drvdata(pdev, ctrl);
	raw_spin_lock_init(&pa->lock);

	ctrl->cmd = pmic_arb_cmd;
	ctrl->read_cmd = pmic_arb_read_cmd;
	ctrl->write_cmd = pmic_arb_write_cmd;

1118 1119 1120 1121 1122 1123 1124 1125 1126
	dev_dbg(&pdev->dev, "adding irq domain\n");
	pa->domain = irq_domain_add_tree(pdev->dev.of_node,
					 &pmic_arb_irq_domain_ops, pa);
	if (!pa->domain) {
		dev_err(&pdev->dev, "unable to create irq_domain\n");
		err = -ENOMEM;
		goto err_put_ctrl;
	}

1127
	irq_set_chained_handler_and_data(pa->irq, pmic_arb_chained_irq, pa);
1128

1129 1130
	err = spmi_controller_add(ctrl);
	if (err)
1131
		goto err_domain_remove;
1132 1133 1134

	return 0;

1135
err_domain_remove:
1136
	irq_set_chained_handler_and_data(pa->irq, NULL, NULL);
1137
	irq_domain_remove(pa->domain);
1138 1139 1140 1141 1142 1143 1144 1145
err_put_ctrl:
	spmi_controller_put(ctrl);
	return err;
}

static int spmi_pmic_arb_remove(struct platform_device *pdev)
{
	struct spmi_controller *ctrl = platform_get_drvdata(pdev);
1146
	struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
1147
	spmi_controller_remove(ctrl);
1148
	irq_set_chained_handler_and_data(pa->irq, NULL, NULL);
1149
	irq_domain_remove(pa->domain);
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
	spmi_controller_put(ctrl);
	return 0;
}

static const struct of_device_id spmi_pmic_arb_match_table[] = {
	{ .compatible = "qcom,spmi-pmic-arb", },
	{},
};
MODULE_DEVICE_TABLE(of, spmi_pmic_arb_match_table);

static struct platform_driver spmi_pmic_arb_driver = {
	.probe		= spmi_pmic_arb_probe,
	.remove		= spmi_pmic_arb_remove,
	.driver		= {
		.name	= "spmi_pmic_arb",
		.of_match_table = spmi_pmic_arb_match_table,
	},
};
module_platform_driver(spmi_pmic_arb_driver);

MODULE_LICENSE("GPL v2");
MODULE_ALIAS("platform:spmi_pmic_arb");