gpio-brcmstb.c 20.6 KB
Newer Older
1
/*
2
 * Copyright (C) 2015-2017 Broadcom
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation version 2.
 *
 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
 * kind, whether express or implied; without even the implied warranty
 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <linux/bitops.h>
#include <linux/gpio/driver.h>
#include <linux/of_device.h>
#include <linux/of_irq.h>
#include <linux/module.h>
19 20 21
#include <linux/irqdomain.h>
#include <linux/irqchip/chained_irq.h>
#include <linux/interrupt.h>
22

23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
enum gio_reg_index {
	GIO_REG_ODEN = 0,
	GIO_REG_DATA,
	GIO_REG_IODIR,
	GIO_REG_EC,
	GIO_REG_EI,
	GIO_REG_MASK,
	GIO_REG_LEVEL,
	GIO_REG_STAT,
	NUMBER_OF_GIO_REGISTERS
};

#define GIO_BANK_SIZE           (NUMBER_OF_GIO_REGISTERS * sizeof(u32))
#define GIO_BANK_OFF(bank, off)	(((bank) * GIO_BANK_SIZE) + (off * sizeof(u32)))
#define GIO_ODEN(bank)          GIO_BANK_OFF(bank, GIO_REG_ODEN)
#define GIO_DATA(bank)          GIO_BANK_OFF(bank, GIO_REG_DATA)
#define GIO_IODIR(bank)         GIO_BANK_OFF(bank, GIO_REG_IODIR)
#define GIO_EC(bank)            GIO_BANK_OFF(bank, GIO_REG_EC)
#define GIO_EI(bank)            GIO_BANK_OFF(bank, GIO_REG_EI)
#define GIO_MASK(bank)          GIO_BANK_OFF(bank, GIO_REG_MASK)
#define GIO_LEVEL(bank)         GIO_BANK_OFF(bank, GIO_REG_LEVEL)
#define GIO_STAT(bank)          GIO_BANK_OFF(bank, GIO_REG_STAT)
45 46 47 48

struct brcmstb_gpio_bank {
	struct list_head node;
	int id;
49
	struct gpio_chip gc;
50 51
	struct brcmstb_gpio_priv *parent_priv;
	u32 width;
52 53
	u32 wake_active;
	u32 saved_regs[GIO_REG_STAT]; /* Don't save and restore GIO_REG_STAT */
54 55 56 57 58 59
};

struct brcmstb_gpio_priv {
	struct list_head bank_list;
	void __iomem *reg_base;
	struct platform_device *pdev;
60 61
	struct irq_domain *irq_domain;
	struct irq_chip irq_chip;
62
	int parent_irq;
63
	int gpio_base;
64
	int num_gpios;
65
	int parent_wake_irq;
66 67
};

68
#define MAX_GPIO_PER_BANK       32
69 70 71 72 73 74 75
#define GPIO_BANK(gpio)         ((gpio) >> 5)
/* assumes MAX_GPIO_PER_BANK is a multiple of 2 */
#define GPIO_BIT(gpio)          ((gpio) & (MAX_GPIO_PER_BANK - 1))

static inline struct brcmstb_gpio_priv *
brcmstb_gpio_gc_to_priv(struct gpio_chip *gc)
{
76
	struct brcmstb_gpio_bank *bank = gpiochip_get_data(gc);
77 78 79
	return bank->parent_priv;
}

80
static unsigned long
81
__brcmstb_gpio_get_active_irqs(struct brcmstb_gpio_bank *bank)
82 83
{
	void __iomem *reg_base = bank->parent_priv->reg_base;
84 85 86 87 88 89 90 91

	return bank->gc.read_reg(reg_base + GIO_STAT(bank->id)) &
	       bank->gc.read_reg(reg_base + GIO_MASK(bank->id));
}

static unsigned long
brcmstb_gpio_get_active_irqs(struct brcmstb_gpio_bank *bank)
{
92 93 94 95
	unsigned long status;
	unsigned long flags;

	spin_lock_irqsave(&bank->gc.bgpio_lock, flags);
96
	status = __brcmstb_gpio_get_active_irqs(bank);
97 98 99 100 101
	spin_unlock_irqrestore(&bank->gc.bgpio_lock, flags);

	return status;
}

102 103 104 105 106 107
static int brcmstb_gpio_hwirq_to_offset(irq_hw_number_t hwirq,
					struct brcmstb_gpio_bank *bank)
{
	return hwirq - (bank->gc.base - bank->parent_priv->gpio_base);
}

108
static void brcmstb_gpio_set_imask(struct brcmstb_gpio_bank *bank,
109
		unsigned int hwirq, bool enable)
110
{
111
	struct gpio_chip *gc = &bank->gc;
112
	struct brcmstb_gpio_priv *priv = bank->parent_priv;
113
	u32 mask = BIT(brcmstb_gpio_hwirq_to_offset(hwirq, bank));
114 115 116
	u32 imask;
	unsigned long flags;

117 118
	spin_lock_irqsave(&gc->bgpio_lock, flags);
	imask = gc->read_reg(priv->reg_base + GIO_MASK(bank->id));
119
	if (enable)
120
		imask |= mask;
121
	else
122
		imask &= ~mask;
123 124
	gc->write_reg(priv->reg_base + GIO_MASK(bank->id), imask);
	spin_unlock_irqrestore(&gc->bgpio_lock, flags);
125 126
}

127 128 129 130 131 132 133 134 135 136 137
static int brcmstb_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
{
	struct brcmstb_gpio_priv *priv = brcmstb_gpio_gc_to_priv(gc);
	/* gc_offset is relative to this gpio_chip; want real offset */
	int hwirq = offset + (gc->base - priv->gpio_base);

	if (hwirq >= priv->num_gpios)
		return -ENXIO;
	return irq_create_mapping(priv->irq_domain, hwirq);
}

138 139 140 141 142
/* -------------------- IRQ chip functions -------------------- */

static void brcmstb_gpio_irq_mask(struct irq_data *d)
{
	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
143
	struct brcmstb_gpio_bank *bank = gpiochip_get_data(gc);
144 145 146 147 148 149 150

	brcmstb_gpio_set_imask(bank, d->hwirq, false);
}

static void brcmstb_gpio_irq_unmask(struct irq_data *d)
{
	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
151
	struct brcmstb_gpio_bank *bank = gpiochip_get_data(gc);
152 153 154 155

	brcmstb_gpio_set_imask(bank, d->hwirq, true);
}

156 157 158 159 160
static void brcmstb_gpio_irq_ack(struct irq_data *d)
{
	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
	struct brcmstb_gpio_bank *bank = gpiochip_get_data(gc);
	struct brcmstb_gpio_priv *priv = bank->parent_priv;
161
	u32 mask = BIT(brcmstb_gpio_hwirq_to_offset(d->hwirq, bank));
162 163 164 165

	gc->write_reg(priv->reg_base + GIO_STAT(bank->id), mask);
}

166 167 168
static int brcmstb_gpio_irq_set_type(struct irq_data *d, unsigned int type)
{
	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
169
	struct brcmstb_gpio_bank *bank = gpiochip_get_data(gc);
170
	struct brcmstb_gpio_priv *priv = bank->parent_priv;
171
	u32 mask = BIT(brcmstb_gpio_hwirq_to_offset(d->hwirq, bank));
172 173 174 175 176 177 178
	u32 edge_insensitive, iedge_insensitive;
	u32 edge_config, iedge_config;
	u32 level, ilevel;
	unsigned long flags;

	switch (type) {
	case IRQ_TYPE_LEVEL_LOW:
179
		level = mask;
180 181 182 183 184
		edge_config = 0;
		edge_insensitive = 0;
		break;
	case IRQ_TYPE_LEVEL_HIGH:
		level = mask;
185
		edge_config = mask;
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
		edge_insensitive = 0;
		break;
	case IRQ_TYPE_EDGE_FALLING:
		level = 0;
		edge_config = 0;
		edge_insensitive = 0;
		break;
	case IRQ_TYPE_EDGE_RISING:
		level = 0;
		edge_config = mask;
		edge_insensitive = 0;
		break;
	case IRQ_TYPE_EDGE_BOTH:
		level = 0;
		edge_config = 0;  /* don't care, but want known value */
		edge_insensitive = mask;
		break;
	default:
		return -EINVAL;
	}

207
	spin_lock_irqsave(&bank->gc.bgpio_lock, flags);
208

209
	iedge_config = bank->gc.read_reg(priv->reg_base +
210
			GIO_EC(bank->id)) & ~mask;
211
	iedge_insensitive = bank->gc.read_reg(priv->reg_base +
212
			GIO_EI(bank->id)) & ~mask;
213
	ilevel = bank->gc.read_reg(priv->reg_base +
214 215
			GIO_LEVEL(bank->id)) & ~mask;

216
	bank->gc.write_reg(priv->reg_base + GIO_EC(bank->id),
217
			iedge_config | edge_config);
218
	bank->gc.write_reg(priv->reg_base + GIO_EI(bank->id),
219
			iedge_insensitive | edge_insensitive);
220
	bank->gc.write_reg(priv->reg_base + GIO_LEVEL(bank->id),
221 222
			ilevel | level);

223
	spin_unlock_irqrestore(&bank->gc.bgpio_lock, flags);
224 225 226
	return 0;
}

227 228
static int brcmstb_gpio_priv_set_wake(struct brcmstb_gpio_priv *priv,
		unsigned int enable)
229 230 231 232 233 234 235 236 237 238 239 240 241
{
	int ret = 0;

	if (enable)
		ret = enable_irq_wake(priv->parent_wake_irq);
	else
		ret = disable_irq_wake(priv->parent_wake_irq);
	if (ret)
		dev_err(&priv->pdev->dev, "failed to %s wake-up interrupt\n",
				enable ? "enable" : "disable");
	return ret;
}

242 243 244
static int brcmstb_gpio_irq_set_wake(struct irq_data *d, unsigned int enable)
{
	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
245 246 247 248 249 250 251 252 253 254 255 256
	struct brcmstb_gpio_bank *bank = gpiochip_get_data(gc);
	struct brcmstb_gpio_priv *priv = bank->parent_priv;
	u32 mask = BIT(brcmstb_gpio_hwirq_to_offset(d->hwirq, bank));

	/*
	 * Do not do anything specific for now, suspend/resume callbacks will
	 * configure the interrupt mask appropriately
	 */
	if (enable)
		bank->wake_active |= mask;
	else
		bank->wake_active &= ~mask;
257 258 259 260

	return brcmstb_gpio_priv_set_wake(priv, enable);
}

261 262 263 264 265 266
static irqreturn_t brcmstb_gpio_wake_irq_handler(int irq, void *data)
{
	struct brcmstb_gpio_priv *priv = data;

	if (!priv || irq != priv->parent_wake_irq)
		return IRQ_NONE;
267 268

	/* Nothing to do */
269 270 271 272 273 274
	return IRQ_HANDLED;
}

static void brcmstb_gpio_irq_bank_handler(struct brcmstb_gpio_bank *bank)
{
	struct brcmstb_gpio_priv *priv = bank->parent_priv;
275 276
	struct irq_domain *domain = priv->irq_domain;
	int hwbase = bank->gc.base - priv->gpio_base;
277 278
	unsigned long status;

279
	while ((status = brcmstb_gpio_get_active_irqs(bank))) {
280
		unsigned int irq, offset;
281

282 283
		for_each_set_bit(offset, &status, 32) {
			if (offset >= bank->width)
284 285
				dev_warn(&priv->pdev->dev,
					 "IRQ for invalid GPIO (bank=%d, offset=%d)\n",
286 287 288
					 bank->id, offset);
			irq = irq_linear_revmap(domain, hwbase + offset);
			generic_handle_irq(irq);
289 290 291 292 293
		}
	}
}

/* Each UPG GIO block has one IRQ for all banks */
294
static void brcmstb_gpio_irq_handler(struct irq_desc *desc)
295
{
296
	struct brcmstb_gpio_priv *priv = irq_desc_get_handler_data(desc);
297
	struct irq_chip *chip = irq_desc_get_chip(desc);
298
	struct brcmstb_gpio_bank *bank;
299 300 301 302 303

	/* Interrupts weren't properly cleared during probe */
	BUG_ON(!priv || !chip);

	chained_irq_enter(chip, desc);
304
	list_for_each_entry(bank, &priv->bank_list, node)
305 306 307 308
		brcmstb_gpio_irq_bank_handler(bank);
	chained_irq_exit(chip, desc);
}

309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
static struct brcmstb_gpio_bank *brcmstb_gpio_hwirq_to_bank(
		struct brcmstb_gpio_priv *priv, irq_hw_number_t hwirq)
{
	struct brcmstb_gpio_bank *bank;
	int i = 0;

	/* banks are in descending order */
	list_for_each_entry_reverse(bank, &priv->bank_list, node) {
		i += bank->gc.ngpio;
		if (hwirq < i)
			return bank;
	}
	return NULL;
}

/*
 * This lock class tells lockdep that GPIO irqs are in a different
 * category than their parents, so it won't report false recursion.
 */
static struct lock_class_key brcmstb_gpio_irq_lock_class;
329
static struct lock_class_key brcmstb_gpio_irq_request_class;
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348


static int brcmstb_gpio_irq_map(struct irq_domain *d, unsigned int irq,
		irq_hw_number_t hwirq)
{
	struct brcmstb_gpio_priv *priv = d->host_data;
	struct brcmstb_gpio_bank *bank =
		brcmstb_gpio_hwirq_to_bank(priv, hwirq);
	struct platform_device *pdev = priv->pdev;
	int ret;

	if (!bank)
		return -EINVAL;

	dev_dbg(&pdev->dev, "Mapping irq %d for gpio line %d (bank %d)\n",
		irq, (int)hwirq, bank->id);
	ret = irq_set_chip_data(irq, &bank->gc);
	if (ret < 0)
		return ret;
349
	irq_set_lockdep_class(irq, &brcmstb_gpio_irq_lock_class,
350
			      &brcmstb_gpio_irq_request_class);
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
	irq_set_chip_and_handler(irq, &priv->irq_chip, handle_level_irq);
	irq_set_noprobe(irq);
	return 0;
}

static void brcmstb_gpio_irq_unmap(struct irq_domain *d, unsigned int irq)
{
	irq_set_chip_and_handler(irq, NULL, NULL);
	irq_set_chip_data(irq, NULL);
}

static const struct irq_domain_ops brcmstb_gpio_irq_domain_ops = {
	.map = brcmstb_gpio_irq_map,
	.unmap = brcmstb_gpio_irq_unmap,
	.xlate = irq_domain_xlate_twocell,
};

368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
/* Make sure that the number of banks matches up between properties */
static int brcmstb_gpio_sanity_check_banks(struct device *dev,
		struct device_node *np, struct resource *res)
{
	int res_num_banks = resource_size(res) / GIO_BANK_SIZE;
	int num_banks =
		of_property_count_u32_elems(np, "brcm,gpio-bank-widths");

	if (res_num_banks != num_banks) {
		dev_err(dev, "Mismatch in banks: res had %d, bank-widths had %d\n",
				res_num_banks, num_banks);
		return -EINVAL;
	} else {
		return 0;
	}
}

static int brcmstb_gpio_remove(struct platform_device *pdev)
{
	struct brcmstb_gpio_priv *priv = platform_get_drvdata(pdev);
	struct brcmstb_gpio_bank *bank;
389
	int offset, ret = 0, virq;
390

391 392 393 394 395
	if (!priv) {
		dev_err(&pdev->dev, "called %s without drvdata!\n", __func__);
		return -EFAULT;
	}

396 397 398 399 400 401 402 403 404 405 406 407
	if (priv->parent_irq > 0)
		irq_set_chained_handler_and_data(priv->parent_irq, NULL, NULL);

	/* Remove all IRQ mappings and delete the domain */
	if (priv->irq_domain) {
		for (offset = 0; offset < priv->num_gpios; offset++) {
			virq = irq_find_mapping(priv->irq_domain, offset);
			irq_dispose_mapping(virq);
		}
		irq_domain_remove(priv->irq_domain);
	}

408 409 410 411
	/*
	 * You can lose return values below, but we report all errors, and it's
	 * more important to actually perform all of the steps.
	 */
412
	list_for_each_entry(bank, &priv->bank_list, node)
413
		gpiochip_remove(&bank->gc);
414

415 416 417 418 419 420 421
	return ret;
}

static int brcmstb_gpio_of_xlate(struct gpio_chip *gc,
		const struct of_phandle_args *gpiospec, u32 *flags)
{
	struct brcmstb_gpio_priv *priv = brcmstb_gpio_gc_to_priv(gc);
422
	struct brcmstb_gpio_bank *bank = gpiochip_get_data(gc);
423 424 425 426 427 428 429 430 431 432 433
	int offset;

	if (gc->of_gpio_n_cells != 2) {
		WARN_ON(1);
		return -EINVAL;
	}

	if (WARN_ON(gpiospec->args_count < gc->of_gpio_n_cells))
		return -EINVAL;

	offset = gpiospec->args[0] - (gc->base - priv->gpio_base);
434
	if (offset >= gc->ngpio || offset < 0)
435 436 437 438 439 440 441 442 443 444 445 446 447 448
		return -EINVAL;

	if (unlikely(offset >= bank->width)) {
		dev_warn_ratelimited(&priv->pdev->dev,
			"Received request for invalid GPIO offset %d\n",
			gpiospec->args[0]);
	}

	if (flags)
		*flags = gpiospec->args[1];

	return offset;
}

449
/* priv->parent_irq and priv->num_gpios must be set before calling */
450
static int brcmstb_gpio_irq_setup(struct platform_device *pdev,
451
		struct brcmstb_gpio_priv *priv)
452 453 454
{
	struct device *dev = &pdev->dev;
	struct device_node *np = dev->of_node;
455
	int err;
456

457 458 459 460 461 462 463 464
	priv->irq_domain =
		irq_domain_add_linear(np, priv->num_gpios,
				      &brcmstb_gpio_irq_domain_ops,
				      priv);
	if (!priv->irq_domain) {
		dev_err(dev, "Couldn't allocate IRQ domain\n");
		return -ENXIO;
	}
465

466
	if (of_property_read_bool(np, "wakeup-source")) {
467 468
		priv->parent_wake_irq = platform_get_irq(pdev, 1);
		if (priv->parent_wake_irq < 0) {
469
			priv->parent_wake_irq = 0;
470 471 472
			dev_warn(dev,
				"Couldn't get wake IRQ - GPIOs will not be able to wake from sleep");
		} else {
473
			/*
474 475
			 * Set wakeup capability so we can process boot-time
			 * "wakeups" (e.g., from S5 cold boot)
476 477 478 479
			 */
			device_set_wakeup_capable(dev, true);
			device_wakeup_enable(dev);
			err = devm_request_irq(dev, priv->parent_wake_irq,
480 481 482
					       brcmstb_gpio_wake_irq_handler,
					       IRQF_SHARED,
					       "brcmstb-gpio-wake", priv);
483 484 485

			if (err < 0) {
				dev_err(dev, "Couldn't request wake IRQ");
486
				goto out_free_domain;
487 488 489 490
			}
		}
	}

491 492 493 494 495 496 497
	priv->irq_chip.name = dev_name(dev);
	priv->irq_chip.irq_disable = brcmstb_gpio_irq_mask;
	priv->irq_chip.irq_mask = brcmstb_gpio_irq_mask;
	priv->irq_chip.irq_unmask = brcmstb_gpio_irq_unmask;
	priv->irq_chip.irq_ack = brcmstb_gpio_irq_ack;
	priv->irq_chip.irq_set_type = brcmstb_gpio_irq_set_type;

498
	if (priv->parent_wake_irq)
499
		priv->irq_chip.irq_set_wake = brcmstb_gpio_irq_set_wake;
500

501 502
	irq_set_chained_handler_and_data(priv->parent_irq,
					 brcmstb_gpio_irq_handler, priv);
503
	irq_set_status_flags(priv->parent_irq, IRQ_DISABLE_UNLAZY);
504 505

	return 0;
506 507 508 509 510

out_free_domain:
	irq_domain_remove(priv->irq_domain);

	return err;
511 512
}

513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
static void brcmstb_gpio_bank_save(struct brcmstb_gpio_priv *priv,
				   struct brcmstb_gpio_bank *bank)
{
	struct gpio_chip *gc = &bank->gc;
	unsigned int i;

	for (i = 0; i < GIO_REG_STAT; i++)
		bank->saved_regs[i] = gc->read_reg(priv->reg_base +
						   GIO_BANK_OFF(bank->id, i));
}

static void brcmstb_gpio_quiesce(struct device *dev, bool save)
{
	struct brcmstb_gpio_priv *priv = dev_get_drvdata(dev);
	struct brcmstb_gpio_bank *bank;
	struct gpio_chip *gc;
	u32 imask;

	/* disable non-wake interrupt */
	if (priv->parent_irq >= 0)
		disable_irq(priv->parent_irq);

	list_for_each_entry(bank, &priv->bank_list, node) {
		gc = &bank->gc;

		if (save)
			brcmstb_gpio_bank_save(priv, bank);

		/* Unmask GPIOs which have been flagged as wake-up sources */
		if (priv->parent_wake_irq)
			imask = bank->wake_active;
		else
			imask = 0;
		gc->write_reg(priv->reg_base + GIO_MASK(bank->id),
			       imask);
	}
}

static void brcmstb_gpio_shutdown(struct platform_device *pdev)
{
	/* Enable GPIO for S5 cold boot */
	brcmstb_gpio_quiesce(&pdev->dev, false);
}

#ifdef CONFIG_PM_SLEEP
static void brcmstb_gpio_bank_restore(struct brcmstb_gpio_priv *priv,
				      struct brcmstb_gpio_bank *bank)
{
	struct gpio_chip *gc = &bank->gc;
	unsigned int i;

	for (i = 0; i < GIO_REG_STAT; i++)
		gc->write_reg(priv->reg_base + GIO_BANK_OFF(bank->id, i),
			      bank->saved_regs[i]);
}

static int brcmstb_gpio_suspend(struct device *dev)
{
	brcmstb_gpio_quiesce(dev, true);
	return 0;
}

static int brcmstb_gpio_resume(struct device *dev)
{
	struct brcmstb_gpio_priv *priv = dev_get_drvdata(dev);
	struct brcmstb_gpio_bank *bank;
	bool need_wakeup_event = false;

	list_for_each_entry(bank, &priv->bank_list, node) {
		need_wakeup_event |= !!__brcmstb_gpio_get_active_irqs(bank);
		brcmstb_gpio_bank_restore(priv, bank);
	}

	if (priv->parent_wake_irq && need_wakeup_event)
		pm_wakeup_event(dev, 0);

	/* enable non-wake interrupt */
	if (priv->parent_irq >= 0)
		enable_irq(priv->parent_irq);

	return 0;
}

#else
#define brcmstb_gpio_suspend	NULL
#define brcmstb_gpio_resume	NULL
#endif /* CONFIG_PM_SLEEP */

static const struct dev_pm_ops brcmstb_gpio_pm_ops = {
	.suspend_noirq	= brcmstb_gpio_suspend,
	.resume_noirq = brcmstb_gpio_resume,
};

606 607 608 609 610 611 612 613 614 615
static int brcmstb_gpio_probe(struct platform_device *pdev)
{
	struct device *dev = &pdev->dev;
	struct device_node *np = dev->of_node;
	void __iomem *reg_base;
	struct brcmstb_gpio_priv *priv;
	struct resource *res;
	struct property *prop;
	const __be32 *p;
	u32 bank_width;
616
	int num_banks = 0;
617 618
	int err;
	static int gpio_base;
619
	unsigned long flags = 0;
620
	bool need_wakeup_event = false;
621 622 623 624

	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
	if (!priv)
		return -ENOMEM;
625 626
	platform_set_drvdata(pdev, priv);
	INIT_LIST_HEAD(&priv->bank_list);
627 628 629 630 631 632 633 634 635 636

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	reg_base = devm_ioremap_resource(dev, res);
	if (IS_ERR(reg_base))
		return PTR_ERR(reg_base);

	priv->gpio_base = gpio_base;
	priv->reg_base = reg_base;
	priv->pdev = pdev;

637 638 639 640 641 642 643 644 645 646
	if (of_property_read_bool(np, "interrupt-controller")) {
		priv->parent_irq = platform_get_irq(pdev, 0);
		if (priv->parent_irq <= 0) {
			dev_err(dev, "Couldn't get IRQ");
			return -ENOENT;
		}
	} else {
		priv->parent_irq = -ENOENT;
	}

647 648 649
	if (brcmstb_gpio_sanity_check_banks(dev, np, res))
		return -EINVAL;

650 651 652 653 654 655 656 657 658 659 660 661
	/*
	 * MIPS endianness is configured by boot strap, which also reverses all
	 * bus endianness (i.e., big-endian CPU + big endian bus ==> native
	 * endian I/O).
	 *
	 * Other architectures (e.g., ARM) either do not support big endian, or
	 * else leave I/O in little endian mode.
	 */
#if defined(CONFIG_MIPS) && defined(__BIG_ENDIAN)
	flags = BGPIOF_BIG_ENDIAN_BYTE_ORDER;
#endif

662 663 664 665 666
	of_property_for_each_u32(np, "brcm,gpio-bank-widths", prop, p,
			bank_width) {
		struct brcmstb_gpio_bank *bank;
		struct gpio_chip *gc;

667 668 669 670 671 672 673 674 675 676 677 678
		/*
		 * If bank_width is 0, then there is an empty bank in the
		 * register block. Special handling for this case.
		 */
		if (bank_width == 0) {
			dev_dbg(dev, "Width 0 found: Empty bank @ %d\n",
				num_banks);
			num_banks++;
			gpio_base += MAX_GPIO_PER_BANK;
			continue;
		}

679 680 681 682 683 684 685
		bank = devm_kzalloc(dev, sizeof(*bank), GFP_KERNEL);
		if (!bank) {
			err = -ENOMEM;
			goto fail;
		}

		bank->parent_priv = priv;
686
		bank->id = num_banks;
687 688
		if (bank_width <= 0 || bank_width > MAX_GPIO_PER_BANK) {
			dev_err(dev, "Invalid bank width %d\n", bank_width);
689
			err = -EINVAL;
690 691 692 693 694 695 696 697 698
			goto fail;
		} else {
			bank->width = bank_width;
		}

		/*
		 * Regs are 4 bytes wide, have data reg, no set/clear regs,
		 * and direction bits have 0 = output and 1 = input
		 */
699 700
		gc = &bank->gc;
		err = bgpio_init(gc, dev, 4,
701 702
				reg_base + GIO_DATA(bank->id),
				NULL, NULL, NULL,
703
				reg_base + GIO_IODIR(bank->id), flags);
704 705 706 707 708 709 710
		if (err) {
			dev_err(dev, "bgpio_init() failed\n");
			goto fail;
		}

		gc->of_node = np;
		gc->owner = THIS_MODULE;
711
		gc->label = devm_kasprintf(dev, GFP_KERNEL, "%pOF", dev->of_node);
712 713 714 715
		if (!gc->label) {
			err = -ENOMEM;
			goto fail;
		}
716 717 718 719 720
		gc->base = gpio_base;
		gc->of_gpio_n_cells = 2;
		gc->of_xlate = brcmstb_gpio_of_xlate;
		/* not all ngpio lines are valid, will use bank width later */
		gc->ngpio = MAX_GPIO_PER_BANK;
721 722
		if (priv->parent_irq > 0)
			gc->to_irq = brcmstb_gpio_to_irq;
723

724 725 726 727
		/*
		 * Mask all interrupts by default, since wakeup interrupts may
		 * be retained from S5 cold boot
		 */
728
		need_wakeup_event |= !!__brcmstb_gpio_get_active_irqs(bank);
729
		gc->write_reg(reg_base + GIO_MASK(bank->id), 0);
730

731
		err = gpiochip_add_data(gc, bank);
732 733 734 735 736 737
		if (err) {
			dev_err(dev, "Could not add gpiochip for bank %d\n",
					bank->id);
			goto fail;
		}
		gpio_base += gc->ngpio;
738

739 740 741 742 743 744
		dev_dbg(dev, "bank=%d, base=%d, ngpio=%d, width=%d\n", bank->id,
			gc->base, gc->ngpio, bank->width);

		/* Everything looks good, so add bank to list */
		list_add(&bank->node, &priv->bank_list);

745
		num_banks++;
746 747
	}

748 749 750 751 752 753 754
	priv->num_gpios = gpio_base - priv->gpio_base;
	if (priv->parent_irq > 0) {
		err = brcmstb_gpio_irq_setup(pdev, priv);
		if (err)
			goto fail;
	}

755 756 757
	if (priv->parent_wake_irq && need_wakeup_event)
		pm_wakeup_event(dev, 0);

758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
	return 0;

fail:
	(void) brcmstb_gpio_remove(pdev);
	return err;
}

static const struct of_device_id brcmstb_gpio_of_match[] = {
	{ .compatible = "brcm,brcmstb-gpio" },
	{},
};

MODULE_DEVICE_TABLE(of, brcmstb_gpio_of_match);

static struct platform_driver brcmstb_gpio_driver = {
	.driver = {
		.name = "brcmstb-gpio",
		.of_match_table = brcmstb_gpio_of_match,
776
		.pm = &brcmstb_gpio_pm_ops,
777 778 779
	},
	.probe = brcmstb_gpio_probe,
	.remove = brcmstb_gpio_remove,
780
	.shutdown = brcmstb_gpio_shutdown,
781 782 783 784 785 786
};
module_platform_driver(brcmstb_gpio_driver);

MODULE_AUTHOR("Gregory Fong");
MODULE_DESCRIPTION("Driver for Broadcom BRCMSTB SoC UPG GPIO");
MODULE_LICENSE("GPL v2");