pinctrl-sunxi.c 34.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Allwinner A1X SoCs pinctrl driver.
 *
 * Copyright (C) 2012 Maxime Ripard
 *
 * Maxime Ripard <maxime.ripard@free-electrons.com>
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#include <linux/io.h>
14
#include <linux/clk.h>
15
#include <linux/clk-provider.h>
16
#include <linux/gpio/driver.h>
17
#include <linux/irqdomain.h>
18
#include <linux/irqchip/chained_irq.h>
19
#include <linux/export.h>
20 21 22
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_device.h>
23
#include <linux/of_irq.h>
24 25 26 27 28 29 30 31
#include <linux/pinctrl/consumer.h>
#include <linux/pinctrl/machine.h>
#include <linux/pinctrl/pinctrl.h>
#include <linux/pinctrl/pinconf-generic.h>
#include <linux/pinctrl/pinmux.h>
#include <linux/platform_device.h>
#include <linux/slab.h>

32 33
#include <dt-bindings/pinctrl/sun4i-a10.h>

34
#include "../core.h"
35
#include "pinctrl-sunxi.h"
36

37 38 39
static struct irq_chip sunxi_pinctrl_edge_irq_chip;
static struct irq_chip sunxi_pinctrl_level_irq_chip;

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
static struct sunxi_pinctrl_group *
sunxi_pinctrl_find_group_by_name(struct sunxi_pinctrl *pctl, const char *group)
{
	int i;

	for (i = 0; i < pctl->ngroups; i++) {
		struct sunxi_pinctrl_group *grp = pctl->groups + i;

		if (!strcmp(grp->name, group))
			return grp;
	}

	return NULL;
}

static struct sunxi_pinctrl_function *
sunxi_pinctrl_find_function_by_name(struct sunxi_pinctrl *pctl,
				    const char *name)
{
	struct sunxi_pinctrl_function *func = pctl->functions;
	int i;

	for (i = 0; i < pctl->nfunctions; i++) {
		if (!func[i].name)
			break;

		if (!strcmp(func[i].name, name))
			return func + i;
	}

	return NULL;
}

static struct sunxi_desc_function *
sunxi_pinctrl_desc_find_function_by_name(struct sunxi_pinctrl *pctl,
					 const char *pin_name,
					 const char *func_name)
{
	int i;

	for (i = 0; i < pctl->desc->npins; i++) {
		const struct sunxi_desc_pin *pin = pctl->desc->pins + i;

		if (!strcmp(pin->pin.name, pin_name)) {
			struct sunxi_desc_function *func = pin->functions;

			while (func->name) {
87 88 89
				if (!strcmp(func->name, func_name) &&
					(!func->variant ||
					func->variant & pctl->variant))
90 91 92 93 94 95 96 97 98 99
					return func;

				func++;
			}
		}
	}

	return NULL;
}

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
static struct sunxi_desc_function *
sunxi_pinctrl_desc_find_function_by_pin(struct sunxi_pinctrl *pctl,
					const u16 pin_num,
					const char *func_name)
{
	int i;

	for (i = 0; i < pctl->desc->npins; i++) {
		const struct sunxi_desc_pin *pin = pctl->desc->pins + i;

		if (pin->pin.number == pin_num) {
			struct sunxi_desc_function *func = pin->functions;

			while (func->name) {
				if (!strcmp(func->name, func_name))
					return func;

				func++;
			}
		}
	}

	return NULL;
}

125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
static int sunxi_pctrl_get_groups_count(struct pinctrl_dev *pctldev)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);

	return pctl->ngroups;
}

static const char *sunxi_pctrl_get_group_name(struct pinctrl_dev *pctldev,
					      unsigned group)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);

	return pctl->groups[group].name;
}

static int sunxi_pctrl_get_group_pins(struct pinctrl_dev *pctldev,
				      unsigned group,
				      const unsigned **pins,
				      unsigned *num_pins)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);

	*pins = (unsigned *)&pctl->groups[group].pin;
	*num_pins = 1;

	return 0;
}

153 154
static bool sunxi_pctrl_has_bias_prop(struct device_node *node)
{
155 156 157 158
	return of_find_property(node, "bias-pull-up", NULL) ||
		of_find_property(node, "bias-pull-down", NULL) ||
		of_find_property(node, "bias-disable", NULL) ||
		of_find_property(node, "allwinner,pull", NULL);
159 160 161 162
}

static bool sunxi_pctrl_has_drive_prop(struct device_node *node)
{
163 164
	return of_find_property(node, "drive-strength", NULL) ||
		of_find_property(node, "allwinner,drive", NULL);
165 166 167 168 169 170
}

static int sunxi_pctrl_parse_bias_prop(struct device_node *node)
{
	u32 val;

171 172 173 174 175 176 177 178 179 180 181
	/* Try the new style binding */
	if (of_find_property(node, "bias-pull-up", NULL))
		return PIN_CONFIG_BIAS_PULL_UP;

	if (of_find_property(node, "bias-pull-down", NULL))
		return PIN_CONFIG_BIAS_PULL_DOWN;

	if (of_find_property(node, "bias-disable", NULL))
		return PIN_CONFIG_BIAS_DISABLE;

	/* And fall back to the old binding */
182 183 184 185
	if (of_property_read_u32(node, "allwinner,pull", &val))
		return -EINVAL;

	switch (val) {
186 187
	case SUN4I_PINCTRL_NO_PULL:
		return PIN_CONFIG_BIAS_DISABLE;
188
	case SUN4I_PINCTRL_PULL_UP:
189
		return PIN_CONFIG_BIAS_PULL_UP;
190
	case SUN4I_PINCTRL_PULL_DOWN:
191 192 193 194 195 196 197 198 199 200
		return PIN_CONFIG_BIAS_PULL_DOWN;
	}

	return -EINVAL;
}

static int sunxi_pctrl_parse_drive_prop(struct device_node *node)
{
	u32 val;

201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
	/* Try the new style binding */
	if (!of_property_read_u32(node, "drive-strength", &val)) {
		/* We can't go below 10mA ... */
		if (val < 10)
			return -EINVAL;

		/* ... and only up to 40 mA ... */
		if (val > 40)
			val = 40;

		/* by steps of 10 mA */
		return rounddown(val, 10);
	}

	/* And then fall back to the old binding */
216 217 218 219 220 221 222 223 224 225 226
	if (of_property_read_u32(node, "allwinner,drive", &val))
		return -EINVAL;

	return (val + 1) * 10;
}

static const char *sunxi_pctrl_parse_function_prop(struct device_node *node)
{
	const char *function;
	int ret;

227 228 229 230 231 232
	/* Try the generic binding */
	ret = of_property_read_string(node, "function", &function);
	if (!ret)
		return function;

	/* And fall back to our legacy one */
233 234 235 236 237 238 239 240 241 242 243 244
	ret = of_property_read_string(node, "allwinner,function", &function);
	if (!ret)
		return function;

	return NULL;
}

static const char *sunxi_pctrl_find_pins_prop(struct device_node *node,
					      int *npins)
{
	int count;

245 246 247 248 249 250 251 252
	/* Try the generic binding */
	count = of_property_count_strings(node, "pins");
	if (count > 0) {
		*npins = count;
		return "pins";
	}

	/* And fall back to our legacy one */
253 254 255 256 257 258 259 260 261 262 263 264 265 266
	count = of_property_count_strings(node, "allwinner,pins");
	if (count > 0) {
		*npins = count;
		return "allwinner,pins";
	}

	return NULL;
}

static unsigned long *sunxi_pctrl_build_pin_config(struct device_node *node,
						   unsigned int *len)
{
	unsigned long *pinconfig;
	unsigned int configlen = 0, idx = 0;
267
	int ret;
268 269 270 271 272 273

	if (sunxi_pctrl_has_drive_prop(node))
		configlen++;
	if (sunxi_pctrl_has_bias_prop(node))
		configlen++;

274 275 276 277 278 279
	/*
	 * If we don't have any configuration, bail out
	 */
	if (!configlen)
		return NULL;

280 281
	pinconfig = kzalloc(configlen * sizeof(*pinconfig), GFP_KERNEL);
	if (!pinconfig)
282
		return ERR_PTR(-ENOMEM);
283 284 285

	if (sunxi_pctrl_has_drive_prop(node)) {
		int drive = sunxi_pctrl_parse_drive_prop(node);
286 287
		if (drive < 0) {
			ret = drive;
288
			goto err_free;
289
		}
290 291 292 293 294 295 296

		pinconfig[idx++] = pinconf_to_config_packed(PIN_CONFIG_DRIVE_STRENGTH,
							  drive);
	}

	if (sunxi_pctrl_has_bias_prop(node)) {
		int pull = sunxi_pctrl_parse_bias_prop(node);
297
		int arg = 0;
298 299
		if (pull < 0) {
			ret = pull;
300
			goto err_free;
301
		}
302

303 304 305 306
		if (pull != PIN_CONFIG_BIAS_DISABLE)
			arg = 1; /* hardware uses weak pull resistors */

		pinconfig[idx++] = pinconf_to_config_packed(pull, arg);
307 308 309 310 311 312 313 314
	}


	*len = configlen;
	return pinconfig;

err_free:
	kfree(pinconfig);
315
	return ERR_PTR(ret);
316 317
}

318 319 320 321 322 323 324 325
static int sunxi_pctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
				      struct device_node *node,
				      struct pinctrl_map **map,
				      unsigned *num_maps)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
	unsigned long *pinconfig;
	struct property *prop;
326
	const char *function, *pin_prop;
327
	const char *group;
328
	int ret, npins, nmaps, configlen = 0, i = 0;
329 330 331 332

	*map = NULL;
	*num_maps = 0;

333 334 335
	function = sunxi_pctrl_parse_function_prop(node);
	if (!function) {
		dev_err(pctl->dev, "missing function property in node %s\n",
336 337 338 339
			node->name);
		return -EINVAL;
	}

340 341 342
	pin_prop = sunxi_pctrl_find_pins_prop(node, &npins);
	if (!pin_prop) {
		dev_err(pctl->dev, "missing pins property in node %s\n",
343 344 345 346
			node->name);
		return -EINVAL;
	}

347 348
	/*
	 * We have two maps for each pin: one for the function, one
349 350 351 352
	 * for the configuration (bias, strength, etc).
	 *
	 * We might be slightly overshooting, since we might not have
	 * any configuration.
353 354
	 */
	nmaps = npins * 2;
355
	*map = kmalloc(nmaps * sizeof(struct pinctrl_map), GFP_KERNEL);
356
	if (!*map)
357 358
		return -ENOMEM;

359
	pinconfig = sunxi_pctrl_build_pin_config(node, &configlen);
360 361
	if (IS_ERR(pinconfig)) {
		ret = PTR_ERR(pinconfig);
362 363 364 365
		goto err_free_map;
	}

	of_property_for_each_string(node, pin_prop, prop, group) {
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
		struct sunxi_pinctrl_group *grp =
			sunxi_pinctrl_find_group_by_name(pctl, group);

		if (!grp) {
			dev_err(pctl->dev, "unknown pin %s", group);
			continue;
		}

		if (!sunxi_pinctrl_desc_find_function_by_name(pctl,
							      grp->name,
							      function)) {
			dev_err(pctl->dev, "unsupported function %s on pin %s",
				function, group);
			continue;
		}

		(*map)[i].type = PIN_MAP_TYPE_MUX_GROUP;
		(*map)[i].data.mux.group = group;
		(*map)[i].data.mux.function = function;

		i++;

388 389 390 391 392 393 394
		if (pinconfig) {
			(*map)[i].type = PIN_MAP_TYPE_CONFIGS_GROUP;
			(*map)[i].data.configs.group_or_pin = group;
			(*map)[i].data.configs.configs = pinconfig;
			(*map)[i].data.configs.num_configs = configlen;
			i++;
		}
395 396
	}

397 398 399 400 401 402 403
	*num_maps = i;

	/*
	 * We know have the number of maps we need, we can resize our
	 * map array
	 */
	*map = krealloc(*map, i * sizeof(struct pinctrl_map), GFP_KERNEL);
404
	if (!*map)
405
		return -ENOMEM;
406 407

	return 0;
408 409

err_free_map:
410 411
	kfree(*map);
	*map = NULL;
412
	return ret;
413 414 415 416 417 418
}

static void sunxi_pctrl_dt_free_map(struct pinctrl_dev *pctldev,
				    struct pinctrl_map *map,
				    unsigned num_maps)
{
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
	int i;

	/* pin config is never in the first map */
	for (i = 1; i < num_maps; i++) {
		if (map[i].type != PIN_MAP_TYPE_CONFIGS_GROUP)
			continue;

		/*
		 * All the maps share the same pin config,
		 * free only the first one we find.
		 */
		kfree(map[i].data.configs.configs);
		break;
	}

434 435 436
	kfree(map);
}

437
static const struct pinctrl_ops sunxi_pctrl_ops = {
438 439 440 441 442 443 444
	.dt_node_to_map		= sunxi_pctrl_dt_node_to_map,
	.dt_free_map		= sunxi_pctrl_dt_free_map,
	.get_groups_count	= sunxi_pctrl_get_groups_count,
	.get_group_name		= sunxi_pctrl_get_group_name,
	.get_group_pins		= sunxi_pctrl_get_group_pins,
};

445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
static int sunxi_pconf_reg(unsigned pin, enum pin_config_param param,
			   u32 *offset, u32 *shift, u32 *mask)
{
	switch (param) {
	case PIN_CONFIG_DRIVE_STRENGTH:
		*offset = sunxi_dlevel_reg(pin);
		*shift = sunxi_dlevel_offset(pin);
		*mask = DLEVEL_PINS_MASK;
		break;

	case PIN_CONFIG_BIAS_PULL_UP:
	case PIN_CONFIG_BIAS_PULL_DOWN:
	case PIN_CONFIG_BIAS_DISABLE:
		*offset = sunxi_pull_reg(pin);
		*shift = sunxi_pull_offset(pin);
		*mask = PULL_PINS_MASK;
		break;

	default:
		return -ENOTSUPP;
	}

	return 0;
}

static int sunxi_pconf_get(struct pinctrl_dev *pctldev, unsigned pin,
			   unsigned long *config)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
	enum pin_config_param param = pinconf_to_config_param(*config);
	u32 offset, shift, mask, val;
	u16 arg;
	int ret;

	pin -= pctl->desc->pin_base;

	ret = sunxi_pconf_reg(pin, param, &offset, &shift, &mask);
	if (ret < 0)
		return ret;

	val = (readl(pctl->membase + offset) >> shift) & mask;

	switch (pinconf_to_config_param(*config)) {
	case PIN_CONFIG_DRIVE_STRENGTH:
		arg = (val + 1) * 10;
		break;

	case PIN_CONFIG_BIAS_PULL_UP:
		if (val != SUN4I_PINCTRL_PULL_UP)
			return -EINVAL;
		arg = 1; /* hardware is weak pull-up */
		break;

	case PIN_CONFIG_BIAS_PULL_DOWN:
		if (val != SUN4I_PINCTRL_PULL_DOWN)
			return -EINVAL;
		arg = 1; /* hardware is weak pull-down */
		break;

	case PIN_CONFIG_BIAS_DISABLE:
		if (val != SUN4I_PINCTRL_NO_PULL)
			return -EINVAL;
		arg = 0;
		break;

	default:
		/* sunxi_pconf_reg should catch anything unsupported */
		WARN_ON(1);
		return -ENOTSUPP;
	}

	*config = pinconf_to_config_packed(param, arg);

	return 0;
}

521 522 523 524 525
static int sunxi_pconf_group_get(struct pinctrl_dev *pctldev,
				 unsigned group,
				 unsigned long *config)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
526
	struct sunxi_pinctrl_group *g = &pctl->groups[group];
527

528 529
	/* We only support 1 pin per group. Chain it to the pin callback */
	return sunxi_pconf_get(pctldev, g->pin, config);
530 531 532 533
}

static int sunxi_pconf_group_set(struct pinctrl_dev *pctldev,
				 unsigned group,
534 535
				 unsigned long *configs,
				 unsigned num_configs)
536 537 538
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
	struct sunxi_pinctrl_group *g = &pctl->groups[group];
539
	unsigned pin = g->pin - pctl->desc->pin_base;
540
	int i;
541

542
	for (i = 0; i < num_configs; i++) {
543 544 545
		enum pin_config_param param;
		unsigned long flags;
		u32 offset, shift, mask, reg;
546
		u32 arg, val;
547 548 549 550 551 552 553 554 555 556
		int ret;

		param = pinconf_to_config_param(configs[i]);
		arg = pinconf_to_config_argument(configs[i]);

		ret = sunxi_pconf_reg(pin, param, &offset, &shift, &mask);
		if (ret < 0)
			return ret;

		switch (param) {
557
		case PIN_CONFIG_DRIVE_STRENGTH:
558
			if (arg < 10 || arg > 40)
559 560 561 562 563 564 565 566
				return -EINVAL;
			/*
			 * We convert from mA to what the register expects:
			 *   0: 10mA
			 *   1: 20mA
			 *   2: 30mA
			 *   3: 40mA
			 */
567
			val = arg / 10 - 1;
568
			break;
569
		case PIN_CONFIG_BIAS_DISABLE:
570 571
			val = 0;
			break;
572
		case PIN_CONFIG_BIAS_PULL_UP:
573 574 575
			if (arg == 0)
				return -EINVAL;
			val = 1;
576 577
			break;
		case PIN_CONFIG_BIAS_PULL_DOWN:
578 579 580
			if (arg == 0)
				return -EINVAL;
			val = 2;
581 582
			break;
		default:
583 584 585
			/* sunxi_pconf_reg should catch anything unsupported */
			WARN_ON(1);
			return -ENOTSUPP;
586
		}
587

588
		raw_spin_lock_irqsave(&pctl->lock, flags);
589 590 591
		reg = readl(pctl->membase + offset);
		reg &= ~(mask << shift);
		writel(reg | val << shift, pctl->membase + offset);
592
		raw_spin_unlock_irqrestore(&pctl->lock, flags);
593
	} /* for each config */
594 595 596 597

	return 0;
}

598
static const struct pinconf_ops sunxi_pconf_ops = {
599 600
	.is_generic		= true,
	.pin_config_get		= sunxi_pconf_get,
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
	.pin_config_group_get	= sunxi_pconf_group_get,
	.pin_config_group_set	= sunxi_pconf_group_set,
};

static int sunxi_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);

	return pctl->nfunctions;
}

static const char *sunxi_pmx_get_func_name(struct pinctrl_dev *pctldev,
					   unsigned function)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);

	return pctl->functions[function].name;
}

static int sunxi_pmx_get_func_groups(struct pinctrl_dev *pctldev,
				     unsigned function,
				     const char * const **groups,
				     unsigned * const num_groups)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);

	*groups = pctl->functions[function].groups;
	*num_groups = pctl->functions[function].ngroups;

	return 0;
}

static void sunxi_pmx_set(struct pinctrl_dev *pctldev,
				 unsigned pin,
				 u8 config)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
M
Maxime Ripard 已提交
638 639 640
	unsigned long flags;
	u32 val, mask;

641
	raw_spin_lock_irqsave(&pctl->lock, flags);
642

643
	pin -= pctl->desc->pin_base;
M
Maxime Ripard 已提交
644 645
	val = readl(pctl->membase + sunxi_mux_reg(pin));
	mask = MUX_PINS_MASK << sunxi_mux_offset(pin);
646 647
	writel((val & ~mask) | config << sunxi_mux_offset(pin),
		pctl->membase + sunxi_mux_reg(pin));
M
Maxime Ripard 已提交
648

649
	raw_spin_unlock_irqrestore(&pctl->lock, flags);
650 651
}

652 653 654
static int sunxi_pmx_set_mux(struct pinctrl_dev *pctldev,
			     unsigned function,
			     unsigned group)
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
	struct sunxi_pinctrl_group *g = pctl->groups + group;
	struct sunxi_pinctrl_function *func = pctl->functions + function;
	struct sunxi_desc_function *desc =
		sunxi_pinctrl_desc_find_function_by_name(pctl,
							 g->name,
							 func->name);

	if (!desc)
		return -EINVAL;

	sunxi_pmx_set(pctldev, g->pin, desc->muxval);

	return 0;
}

672 673 674 675 676 677 678 679 680 681 682 683 684 685 686
static int
sunxi_pmx_gpio_set_direction(struct pinctrl_dev *pctldev,
			struct pinctrl_gpio_range *range,
			unsigned offset,
			bool input)
{
	struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
	struct sunxi_desc_function *desc;
	const char *func;

	if (input)
		func = "gpio_in";
	else
		func = "gpio_out";

687 688 689
	desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, offset, func);
	if (!desc)
		return -EINVAL;
690 691 692

	sunxi_pmx_set(pctldev, offset, desc->muxval);

693
	return 0;
694 695
}

696
static const struct pinmux_ops sunxi_pmx_ops = {
697 698 699
	.get_functions_count	= sunxi_pmx_get_funcs_cnt,
	.get_function_name	= sunxi_pmx_get_func_name,
	.get_function_groups	= sunxi_pmx_get_func_groups,
700
	.set_mux		= sunxi_pmx_set_mux,
701
	.gpio_set_direction	= sunxi_pmx_gpio_set_direction,
702
	.strict			= true,
703 704
};

705 706 707 708 709 710 711 712
static int sunxi_pinctrl_gpio_direction_input(struct gpio_chip *chip,
					unsigned offset)
{
	return pinctrl_gpio_direction_input(chip->base + offset);
}

static int sunxi_pinctrl_gpio_get(struct gpio_chip *chip, unsigned offset)
{
713
	struct sunxi_pinctrl *pctl = gpiochip_get_data(chip);
714 715
	u32 reg = sunxi_data_reg(offset);
	u8 index = sunxi_data_offset(offset);
716 717
	bool set_mux = pctl->desc->irq_read_needs_mux &&
		gpiochip_line_is_irq(chip, offset);
718
	u32 pin = offset + chip->base;
719 720 721
	u32 val;

	if (set_mux)
722
		sunxi_pmx_set(pctl->pctl_dev, pin, SUN4I_FUNC_INPUT);
723 724 725 726

	val = (readl(pctl->membase + reg) >> index) & DATA_PINS_MASK;

	if (set_mux)
727
		sunxi_pmx_set(pctl->pctl_dev, pin, SUN4I_FUNC_IRQ);
728

729
	return !!val;
730 731 732 733 734
}

static void sunxi_pinctrl_gpio_set(struct gpio_chip *chip,
				unsigned offset, int value)
{
735
	struct sunxi_pinctrl *pctl = gpiochip_get_data(chip);
736 737
	u32 reg = sunxi_data_reg(offset);
	u8 index = sunxi_data_offset(offset);
M
Maxime Ripard 已提交
738 739 740
	unsigned long flags;
	u32 regval;

741
	raw_spin_lock_irqsave(&pctl->lock, flags);
M
Maxime Ripard 已提交
742 743

	regval = readl(pctl->membase + reg);
744

745 746 747 748
	if (value)
		regval |= BIT(index);
	else
		regval &= ~(BIT(index));
749

750
	writel(regval, pctl->membase + reg);
M
Maxime Ripard 已提交
751

752
	raw_spin_unlock_irqrestore(&pctl->lock, flags);
753 754
}

755 756 757 758 759 760 761
static int sunxi_pinctrl_gpio_direction_output(struct gpio_chip *chip,
					unsigned offset, int value)
{
	sunxi_pinctrl_gpio_set(chip, offset, value);
	return pinctrl_gpio_direction_output(chip->base + offset);
}

762 763 764 765 766 767 768 769 770
static int sunxi_pinctrl_gpio_of_xlate(struct gpio_chip *gc,
				const struct of_phandle_args *gpiospec,
				u32 *flags)
{
	int pin, base;

	base = PINS_PER_BANK * gpiospec->args[0];
	pin = base + gpiospec->args[1];

771
	if (pin > gc->ngpio)
772 773 774 775 776 777 778 779
		return -EINVAL;

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

	return pin;
}

780 781
static int sunxi_pinctrl_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
{
782
	struct sunxi_pinctrl *pctl = gpiochip_get_data(chip);
783
	struct sunxi_desc_function *desc;
784
	unsigned pinnum = pctl->desc->pin_base + offset;
785
	unsigned irqnum;
786

787
	if (offset >= chip->ngpio)
788 789
		return -ENXIO;

790
	desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, pinnum, "irq");
791 792 793
	if (!desc)
		return -EINVAL;

794 795
	irqnum = desc->irqbank * IRQ_PER_BANK + desc->irqnum;

796
	dev_dbg(chip->parent, "%s: request IRQ for GPIO %d, return %d\n",
797
		chip->label, offset + chip->base, irqnum);
798

799
	return irq_find_mapping(pctl->domain, irqnum);
800 801
}

802 803 804 805
static int sunxi_pinctrl_irq_request_resources(struct irq_data *d)
{
	struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
	struct sunxi_desc_function *func;
806
	int ret;
807 808 809 810 811 812

	func = sunxi_pinctrl_desc_find_function_by_pin(pctl,
					pctl->irq_array[d->hwirq], "irq");
	if (!func)
		return -EINVAL;

813
	ret = gpiochip_lock_as_irq(pctl->chip,
814
			pctl->irq_array[d->hwirq] - pctl->desc->pin_base);
815 816 817 818 819 820
	if (ret) {
		dev_err(pctl->dev, "unable to lock HW IRQ %lu for IRQ\n",
			irqd_to_hwirq(d));
		return ret;
	}

821 822
	/* Change muxing to INT mode */
	sunxi_pmx_set(pctl->pctl_dev, pctl->irq_array[d->hwirq], func->muxval);
823

824 825
	return 0;
}
826

827 828 829 830
static void sunxi_pinctrl_irq_release_resources(struct irq_data *d)
{
	struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);

831 832
	gpiochip_unlock_as_irq(pctl->chip,
			      pctl->irq_array[d->hwirq] - pctl->desc->pin_base);
833 834
}

835
static int sunxi_pinctrl_irq_set_type(struct irq_data *d, unsigned int type)
836 837
{
	struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
838
	u32 reg = sunxi_irq_cfg_reg(pctl->desc, d->hwirq);
839
	u8 index = sunxi_irq_cfg_offset(d->hwirq);
M
Maxime Ripard 已提交
840
	unsigned long flags;
841
	u32 regval;
842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
	u8 mode;

	switch (type) {
	case IRQ_TYPE_EDGE_RISING:
		mode = IRQ_EDGE_RISING;
		break;
	case IRQ_TYPE_EDGE_FALLING:
		mode = IRQ_EDGE_FALLING;
		break;
	case IRQ_TYPE_EDGE_BOTH:
		mode = IRQ_EDGE_BOTH;
		break;
	case IRQ_TYPE_LEVEL_HIGH:
		mode = IRQ_LEVEL_HIGH;
		break;
	case IRQ_TYPE_LEVEL_LOW:
		mode = IRQ_LEVEL_LOW;
		break;
	default:
		return -EINVAL;
	}

864
	raw_spin_lock_irqsave(&pctl->lock, flags);
M
Maxime Ripard 已提交
865

866
	if (type & IRQ_TYPE_LEVEL_MASK)
867 868
		irq_set_chip_handler_name_locked(d, &sunxi_pinctrl_level_irq_chip,
						 handle_fasteoi_irq, NULL);
869
	else
870 871
		irq_set_chip_handler_name_locked(d, &sunxi_pinctrl_edge_irq_chip,
						 handle_edge_irq, NULL);
872

873
	regval = readl(pctl->membase + reg);
874
	regval &= ~(IRQ_CFG_IRQ_MASK << index);
875
	writel(regval | (mode << index), pctl->membase + reg);
876

877
	raw_spin_unlock_irqrestore(&pctl->lock, flags);
878 879 880 881

	return 0;
}

882
static void sunxi_pinctrl_irq_ack(struct irq_data *d)
883 884
{
	struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
885
	u32 status_reg = sunxi_irq_status_reg(pctl->desc, d->hwirq);
886 887 888 889 890 891 892 893 894
	u8 status_idx = sunxi_irq_status_offset(d->hwirq);

	/* Clear the IRQ */
	writel(1 << status_idx, pctl->membase + status_reg);
}

static void sunxi_pinctrl_irq_mask(struct irq_data *d)
{
	struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
895
	u32 reg = sunxi_irq_ctrl_reg(pctl->desc, d->hwirq);
896
	u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
M
Maxime Ripard 已提交
897
	unsigned long flags;
898 899
	u32 val;

900
	raw_spin_lock_irqsave(&pctl->lock, flags);
M
Maxime Ripard 已提交
901

902 903 904
	/* Mask the IRQ */
	val = readl(pctl->membase + reg);
	writel(val & ~(1 << idx), pctl->membase + reg);
M
Maxime Ripard 已提交
905

906
	raw_spin_unlock_irqrestore(&pctl->lock, flags);
907 908 909 910 911
}

static void sunxi_pinctrl_irq_unmask(struct irq_data *d)
{
	struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
912
	u32 reg = sunxi_irq_ctrl_reg(pctl->desc, d->hwirq);
913
	u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
M
Maxime Ripard 已提交
914
	unsigned long flags;
915 916
	u32 val;

917
	raw_spin_lock_irqsave(&pctl->lock, flags);
M
Maxime Ripard 已提交
918

919 920 921
	/* Unmask the IRQ */
	val = readl(pctl->membase + reg);
	writel(val | (1 << idx), pctl->membase + reg);
M
Maxime Ripard 已提交
922

923
	raw_spin_unlock_irqrestore(&pctl->lock, flags);
924 925
}

926 927 928 929 930 931
static void sunxi_pinctrl_irq_ack_unmask(struct irq_data *d)
{
	sunxi_pinctrl_irq_ack(d);
	sunxi_pinctrl_irq_unmask(d);
}

932
static struct irq_chip sunxi_pinctrl_edge_irq_chip = {
933
	.name		= "sunxi_pio_edge",
934
	.irq_ack	= sunxi_pinctrl_irq_ack,
935 936
	.irq_mask	= sunxi_pinctrl_irq_mask,
	.irq_unmask	= sunxi_pinctrl_irq_unmask,
937
	.irq_request_resources = sunxi_pinctrl_irq_request_resources,
938
	.irq_release_resources = sunxi_pinctrl_irq_release_resources,
939
	.irq_set_type	= sunxi_pinctrl_irq_set_type,
940
	.flags		= IRQCHIP_SKIP_SET_WAKE,
941 942
};

943
static struct irq_chip sunxi_pinctrl_level_irq_chip = {
944
	.name		= "sunxi_pio_level",
945
	.irq_eoi	= sunxi_pinctrl_irq_ack,
946 947
	.irq_mask	= sunxi_pinctrl_irq_mask,
	.irq_unmask	= sunxi_pinctrl_irq_unmask,
948 949 950 951
	/* Define irq_enable / disable to avoid spurious irqs for drivers
	 * using these to suppress irqs while they clear the irq source */
	.irq_enable	= sunxi_pinctrl_irq_ack_unmask,
	.irq_disable	= sunxi_pinctrl_irq_mask,
952
	.irq_request_resources = sunxi_pinctrl_irq_request_resources,
953
	.irq_release_resources = sunxi_pinctrl_irq_release_resources,
954
	.irq_set_type	= sunxi_pinctrl_irq_set_type,
955 956
	.flags		= IRQCHIP_SKIP_SET_WAKE | IRQCHIP_EOI_THREADED |
			  IRQCHIP_EOI_IF_HANDLED,
957 958
};

959 960 961 962 963 964 965
static int sunxi_pinctrl_irq_of_xlate(struct irq_domain *d,
				      struct device_node *node,
				      const u32 *intspec,
				      unsigned int intsize,
				      unsigned long *out_hwirq,
				      unsigned int *out_type)
{
966
	struct sunxi_pinctrl *pctl = d->host_data;
967 968 969 970 971 972 973
	struct sunxi_desc_function *desc;
	int pin, base;

	if (intsize < 3)
		return -EINVAL;

	base = PINS_PER_BANK * intspec[0];
974
	pin = pctl->desc->pin_base + base + intspec[1];
975

976
	desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, pin, "irq");
977 978 979 980 981 982 983 984 985
	if (!desc)
		return -EINVAL;

	*out_hwirq = desc->irqbank * PINS_PER_BANK + desc->irqnum;
	*out_type = intspec[2];

	return 0;
}

986
static const struct irq_domain_ops sunxi_pinctrl_irq_domain_ops = {
987 988 989
	.xlate		= sunxi_pinctrl_irq_of_xlate,
};

990
static void sunxi_pinctrl_irq_handler(struct irq_desc *desc)
991
{
992
	unsigned int irq = irq_desc_get_irq(desc);
993 994
	struct irq_chip *chip = irq_desc_get_chip(desc);
	struct sunxi_pinctrl *pctl = irq_desc_get_handler_data(desc);
995 996 997 998 999 1000 1001 1002
	unsigned long bank, reg, val;

	for (bank = 0; bank < pctl->desc->irq_banks; bank++)
		if (irq == pctl->irq[bank])
			break;

	if (bank == pctl->desc->irq_banks)
		return;
1003

1004
	reg = sunxi_irq_status_reg_from_bank(pctl->desc, bank);
1005
	val = readl(pctl->membase + reg);
1006

1007
	if (val) {
1008 1009
		int irqoffset;

1010
		chained_irq_enter(chip, desc);
1011 1012 1013
		for_each_set_bit(irqoffset, &val, IRQ_PER_BANK) {
			int pin_irq = irq_find_mapping(pctl->domain,
						       bank * IRQ_PER_BANK + irqoffset);
1014 1015
			generic_handle_irq(pin_irq);
		}
1016
		chained_irq_exit(chip, desc);
1017 1018 1019
	}
}

1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
static int sunxi_pinctrl_add_function(struct sunxi_pinctrl *pctl,
					const char *name)
{
	struct sunxi_pinctrl_function *func = pctl->functions;

	while (func->name) {
		/* function already there */
		if (strcmp(func->name, name) == 0) {
			func->ngroups++;
			return -EEXIST;
		}
		func++;
	}

	func->name = name;
	func->ngroups = 1;

	pctl->nfunctions++;

	return 0;
}

static int sunxi_pinctrl_build_state(struct platform_device *pdev)
{
	struct sunxi_pinctrl *pctl = platform_get_drvdata(pdev);
	int i;

1047 1048 1049 1050 1051
	/*
	 * Allocate groups
	 *
	 * We assume that the number of groups is the number of pins
	 * given in the data array.
1052

1053 1054 1055 1056 1057
	 * This will not always be true, since some pins might not be
	 * available in the current variant, but fortunately for us,
	 * this means that the number of pins is the maximum group
	 * number we will ever see.
	 */
1058
	pctl->groups = devm_kzalloc(&pdev->dev,
1059
				    pctl->desc->npins * sizeof(*pctl->groups),
1060 1061 1062 1063 1064 1065
				    GFP_KERNEL);
	if (!pctl->groups)
		return -ENOMEM;

	for (i = 0; i < pctl->desc->npins; i++) {
		const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
1066 1067 1068 1069
		struct sunxi_pinctrl_group *group = pctl->groups + pctl->ngroups;

		if (pin->variant && !(pctl->variant & pin->variant))
			continue;
1070 1071 1072

		group->name = pin->pin.name;
		group->pin = pin->pin.number;
1073 1074 1075

		/* And now we count the actual number of pins / groups */
		pctl->ngroups++;
1076 1077 1078 1079 1080 1081 1082
	}

	/*
	 * We suppose that we won't have any more functions than pins,
	 * we'll reallocate that later anyway
	 */
	pctl->functions = devm_kzalloc(&pdev->dev,
1083 1084
				       pctl->ngroups * sizeof(*pctl->functions),
				       GFP_KERNEL);
1085 1086 1087 1088 1089 1090
	if (!pctl->functions)
		return -ENOMEM;

	/* Count functions and their associated groups */
	for (i = 0; i < pctl->desc->npins; i++) {
		const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
1091 1092 1093 1094 1095 1096 1097 1098
		struct sunxi_desc_function *func;

		if (pin->variant && !(pctl->variant & pin->variant))
			continue;

		for (func = pin->functions; func->name; func++) {
			if (func->variant && !(pctl->variant & func->variant))
				continue;
1099

1100
			/* Create interrupt mapping while we're at it */
1101 1102 1103 1104 1105
			if (!strcmp(func->name, "irq")) {
				int irqnum = func->irqnum + func->irqbank * IRQ_PER_BANK;
				pctl->irq_array[irqnum] = pin->pin.number;
			}

1106 1107 1108 1109
			sunxi_pinctrl_add_function(pctl, func->name);
		}
	}

1110
	/* And now allocated and fill the array for real */
1111
	pctl->functions = krealloc(pctl->functions,
1112 1113 1114 1115 1116 1117
				   pctl->nfunctions * sizeof(*pctl->functions),
				   GFP_KERNEL);
	if (!pctl->functions) {
		kfree(pctl->functions);
		return -ENOMEM;
	}
1118 1119 1120

	for (i = 0; i < pctl->desc->npins; i++) {
		const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
1121
		struct sunxi_desc_function *func;
1122

1123 1124 1125 1126
		if (pin->variant && !(pctl->variant & pin->variant))
			continue;

		for (func = pin->functions; func->name; func++) {
1127 1128 1129
			struct sunxi_pinctrl_function *func_item;
			const char **func_grp;

1130 1131 1132
			if (func->variant && !(pctl->variant & func->variant))
				continue;

1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
			func_item = sunxi_pinctrl_find_function_by_name(pctl,
									func->name);
			if (!func_item)
				return -EINVAL;

			if (!func_item->groups) {
				func_item->groups =
					devm_kzalloc(&pdev->dev,
						     func_item->ngroups * sizeof(*func_item->groups),
						     GFP_KERNEL);
				if (!func_item->groups)
					return -ENOMEM;
			}

			func_grp = func_item->groups;
			while (*func_grp)
				func_grp++;

			*func_grp = pin->pin.name;
		}
	}

	return 0;
}

1158 1159 1160
static int sunxi_pinctrl_get_debounce_div(struct clk *clk, int freq, int *diff)
{
	unsigned long clock = clk_get_rate(clk);
1161
	unsigned int best_diff, best_div;
1162 1163
	int i;

1164 1165 1166 1167
	best_diff = abs(freq - clock);
	best_div = 0;

	for (i = 1; i < 8; i++) {
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
		int cur_diff = abs(freq - (clock >> i));

		if (cur_diff < best_diff) {
			best_diff = cur_diff;
			best_div = i;
		}
	}

	*diff = best_diff;
	return best_div;
}

static int sunxi_pinctrl_setup_debounce(struct sunxi_pinctrl *pctl,
					struct device_node *node)
{
	unsigned int hosc_diff, losc_diff;
	unsigned int hosc_div, losc_div;
	struct clk *hosc, *losc;
	u8 div, src;
	int i, ret;

	/* Deal with old DTs that didn't have the oscillators */
1190
	if (of_clk_get_parent_count(node) != 3)
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
		return 0;

	/* If we don't have any setup, bail out */
	if (!of_find_property(node, "input-debounce", NULL))
		return 0;

	losc = devm_clk_get(pctl->dev, "losc");
	if (IS_ERR(losc))
		return PTR_ERR(losc);

	hosc = devm_clk_get(pctl->dev, "hosc");
	if (IS_ERR(hosc))
		return PTR_ERR(hosc);

	for (i = 0; i < pctl->desc->irq_banks; i++) {
		unsigned long debounce_freq;
		u32 debounce;

		ret = of_property_read_u32_index(node, "input-debounce",
						 i, &debounce);
		if (ret)
			return ret;

		if (!debounce)
			continue;

		debounce_freq = DIV_ROUND_CLOSEST(USEC_PER_SEC, debounce);
		losc_div = sunxi_pinctrl_get_debounce_div(losc,
							  debounce_freq,
							  &losc_diff);

		hosc_div = sunxi_pinctrl_get_debounce_div(hosc,
							  debounce_freq,
							  &hosc_diff);

		if (hosc_diff < losc_diff) {
			div = hosc_div;
			src = 1;
		} else {
			div = losc_div;
			src = 0;
		}

		writel(src | div << 4,
		       pctl->membase +
1236
		       sunxi_irq_debounce_reg_from_bank(pctl->desc, i));
1237 1238 1239 1240 1241
	}

	return 0;
}

1242 1243 1244
int sunxi_pinctrl_init_with_variant(struct platform_device *pdev,
				    const struct sunxi_pinctrl_desc *desc,
				    unsigned long variant)
1245 1246
{
	struct device_node *node = pdev->dev.of_node;
1247
	struct pinctrl_desc *pctrl_desc;
1248 1249
	struct pinctrl_pin_desc *pins;
	struct sunxi_pinctrl *pctl;
1250
	struct pinmux_ops *pmxops;
1251
	struct resource *res;
1252
	int i, ret, last_pin, pin_idx;
1253
	struct clk *clk;
1254 1255 1256 1257 1258 1259

	pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
	if (!pctl)
		return -ENOMEM;
	platform_set_drvdata(pdev, pctl);

1260
	raw_spin_lock_init(&pctl->lock);
M
Maxime Ripard 已提交
1261

1262 1263 1264 1265
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	pctl->membase = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(pctl->membase))
		return PTR_ERR(pctl->membase);
1266

1267
	pctl->dev = &pdev->dev;
1268
	pctl->desc = desc;
1269
	pctl->variant = variant;
1270

1271 1272 1273 1274 1275 1276 1277
	pctl->irq_array = devm_kcalloc(&pdev->dev,
				       IRQ_PER_BANK * pctl->desc->irq_banks,
				       sizeof(*pctl->irq_array),
				       GFP_KERNEL);
	if (!pctl->irq_array)
		return -ENOMEM;

1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289
	ret = sunxi_pinctrl_build_state(pdev);
	if (ret) {
		dev_err(&pdev->dev, "dt probe failed: %d\n", ret);
		return ret;
	}

	pins = devm_kzalloc(&pdev->dev,
			    pctl->desc->npins * sizeof(*pins),
			    GFP_KERNEL);
	if (!pins)
		return -ENOMEM;

1290 1291 1292 1293 1294 1295 1296 1297
	for (i = 0, pin_idx = 0; i < pctl->desc->npins; i++) {
		const struct sunxi_desc_pin *pin = pctl->desc->pins + i;

		if (pin->variant && !(pctl->variant & pin->variant))
			continue;

		pins[pin_idx++] = pin->pin;
	}
1298

1299 1300 1301 1302 1303 1304 1305 1306 1307
	pctrl_desc = devm_kzalloc(&pdev->dev,
				  sizeof(*pctrl_desc),
				  GFP_KERNEL);
	if (!pctrl_desc)
		return -ENOMEM;

	pctrl_desc->name = dev_name(&pdev->dev);
	pctrl_desc->owner = THIS_MODULE;
	pctrl_desc->pins = pins;
1308
	pctrl_desc->npins = pctl->ngroups;
1309 1310
	pctrl_desc->confops = &sunxi_pconf_ops;
	pctrl_desc->pctlops = &sunxi_pctrl_ops;
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320

	pmxops = devm_kmemdup(&pdev->dev, &sunxi_pmx_ops, sizeof(sunxi_pmx_ops),
			      GFP_KERNEL);
	if (!pmxops)
		return -ENOMEM;

	if (desc->disable_strict_mode)
		pmxops->strict = false;

	pctrl_desc->pmxops = pmxops;
1321

1322
	pctl->pctl_dev = devm_pinctrl_register(&pdev->dev, pctrl_desc, pctl);
1323
	if (IS_ERR(pctl->pctl_dev)) {
1324
		dev_err(&pdev->dev, "couldn't register pinctrl driver\n");
1325
		return PTR_ERR(pctl->pctl_dev);
1326 1327
	}

1328
	pctl->chip = devm_kzalloc(&pdev->dev, sizeof(*pctl->chip), GFP_KERNEL);
1329 1330
	if (!pctl->chip)
		return -ENOMEM;
1331 1332

	last_pin = pctl->desc->pins[pctl->desc->npins - 1].pin.number;
1333
	pctl->chip->owner = THIS_MODULE;
1334 1335
	pctl->chip->request = gpiochip_generic_request,
	pctl->chip->free = gpiochip_generic_free,
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
	pctl->chip->direction_input = sunxi_pinctrl_gpio_direction_input,
	pctl->chip->direction_output = sunxi_pinctrl_gpio_direction_output,
	pctl->chip->get = sunxi_pinctrl_gpio_get,
	pctl->chip->set = sunxi_pinctrl_gpio_set,
	pctl->chip->of_xlate = sunxi_pinctrl_gpio_of_xlate,
	pctl->chip->to_irq = sunxi_pinctrl_gpio_to_irq,
	pctl->chip->of_gpio_n_cells = 3,
	pctl->chip->can_sleep = false,
	pctl->chip->ngpio = round_up(last_pin, PINS_PER_BANK) -
			    pctl->desc->pin_base;
1346
	pctl->chip->label = dev_name(&pdev->dev);
1347
	pctl->chip->parent = &pdev->dev;
1348
	pctl->chip->base = pctl->desc->pin_base;
1349

1350
	ret = gpiochip_add_data(pctl->chip, pctl);
1351
	if (ret)
1352
		return ret;
1353 1354 1355 1356 1357

	for (i = 0; i < pctl->desc->npins; i++) {
		const struct sunxi_desc_pin *pin = pctl->desc->pins + i;

		ret = gpiochip_add_pin_range(pctl->chip, dev_name(&pdev->dev),
1358
					     pin->pin.number - pctl->desc->pin_base,
1359 1360 1361 1362 1363
					     pin->pin.number, 1);
		if (ret)
			goto gpiochip_error;
	}

1364 1365
	ret = of_count_phandle_with_args(node, "clocks", "#clock-cells");
	clk = devm_clk_get(&pdev->dev, ret == 1 ? NULL : "apb");
1366 1367
	if (IS_ERR(clk)) {
		ret = PTR_ERR(clk);
1368
		goto gpiochip_error;
1369
	}
1370

1371 1372 1373
	ret = clk_prepare_enable(clk);
	if (ret)
		goto gpiochip_error;
1374

1375 1376 1377 1378
	pctl->irq = devm_kcalloc(&pdev->dev,
				 pctl->desc->irq_banks,
				 sizeof(*pctl->irq),
				 GFP_KERNEL);
1379
	if (!pctl->irq) {
1380
		ret = -ENOMEM;
1381
		goto clk_error;
1382 1383
	}

1384 1385 1386 1387 1388 1389 1390 1391 1392 1393
	for (i = 0; i < pctl->desc->irq_banks; i++) {
		pctl->irq[i] = platform_get_irq(pdev, i);
		if (pctl->irq[i] < 0) {
			ret = pctl->irq[i];
			goto clk_error;
		}
	}

	pctl->domain = irq_domain_add_linear(node,
					     pctl->desc->irq_banks * IRQ_PER_BANK,
1394 1395
					     &sunxi_pinctrl_irq_domain_ops,
					     pctl);
1396 1397 1398
	if (!pctl->domain) {
		dev_err(&pdev->dev, "Couldn't register IRQ domain\n");
		ret = -ENOMEM;
1399
		goto clk_error;
1400 1401
	}

1402
	for (i = 0; i < (pctl->desc->irq_banks * IRQ_PER_BANK); i++) {
1403 1404
		int irqno = irq_create_mapping(pctl->domain, i);

1405 1406
		irq_set_chip_and_handler(irqno, &sunxi_pinctrl_edge_irq_chip,
					 handle_edge_irq);
1407
		irq_set_chip_data(irqno, pctl);
1408
	}
1409

1410
	for (i = 0; i < pctl->desc->irq_banks; i++) {
1411
		/* Mask and clear all IRQs before registering a handler */
1412 1413
		writel(0, pctl->membase +
			  sunxi_irq_ctrl_reg_from_bank(pctl->desc, i));
1414
		writel(0xffffffff,
1415 1416
		       pctl->membase +
		       sunxi_irq_status_reg_from_bank(pctl->desc, i));
1417

1418 1419 1420
		irq_set_chained_handler_and_data(pctl->irq[i],
						 sunxi_pinctrl_irq_handler,
						 pctl);
1421
	}
1422

1423 1424
	sunxi_pinctrl_setup_debounce(pctl, node);

1425
	dev_info(&pdev->dev, "initialized sunXi PIO driver\n");
1426 1427

	return 0;
1428

1429 1430
clk_error:
	clk_disable_unprepare(clk);
1431
gpiochip_error:
1432
	gpiochip_remove(pctl->chip);
1433
	return ret;
1434
}