pinctrl-samsung.c 34.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * pin-controller/pin-mux/pin-config/gpio-driver for Samsung's SoC's.
 *
 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com
 * Copyright (c) 2012 Linaro Ltd
 *		http://www.linaro.org
 *
 * Author: Thomas Abraham <thomas.ab@samsung.com>
 *
 * 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; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This driver implements the Samsung pinctrl driver. It supports setting up of
 * pinmux and pinconf configurations. The gpiolib interface is also included.
 * External interrupt (gpio and wakeup) support are not included in this driver
 * but provides extensions to which platform specific implementation of the gpio
 * and wakeup interrupts can be hooked to.
 */

#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/io.h>
#include <linux/slab.h>
#include <linux/err.h>
#include <linux/gpio.h>
29
#include <linux/irqdomain.h>
30
#include <linux/spinlock.h>
31
#include <linux/syscore_ops.h>
32

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

/* list of all possible config options supported */
37
static struct pin_config {
38 39 40
	const char *property;
	enum pincfg_type param;
} cfg_params[] = {
41 42 43 44
	{ "samsung,pin-pud", PINCFG_TYPE_PUD },
	{ "samsung,pin-drv", PINCFG_TYPE_DRV },
	{ "samsung,pin-con-pdn", PINCFG_TYPE_CON_PDN },
	{ "samsung,pin-pud-pdn", PINCFG_TYPE_PUD_PDN },
45
	{ "samsung,pin-val", PINCFG_TYPE_DAT },
46 47
};

48
/* Global list of devices (struct samsung_pinctrl_drv_data) */
49
static LIST_HEAD(drvdata_list);
50

51
static unsigned int pin_base;
52

53 54
static int samsung_get_group_count(struct pinctrl_dev *pctldev)
{
55
	struct samsung_pinctrl_drv_data *pmx = pinctrl_dev_get_drvdata(pctldev);
56

57
	return pmx->nr_groups;
58 59 60
}

static const char *samsung_get_group_name(struct pinctrl_dev *pctldev,
61
						unsigned group)
62
{
63
	struct samsung_pinctrl_drv_data *pmx = pinctrl_dev_get_drvdata(pctldev);
64

65
	return pmx->pin_groups[group].name;
66 67 68
}

static int samsung_get_group_pins(struct pinctrl_dev *pctldev,
69 70 71
					unsigned group,
					const unsigned **pins,
					unsigned *num_pins)
72
{
73 74 75 76
	struct samsung_pinctrl_drv_data *pmx = pinctrl_dev_get_drvdata(pctldev);

	*pins = pmx->pin_groups[group].pins;
	*num_pins = pmx->pin_groups[group].num_pins;
77 78 79 80

	return 0;
}

81 82 83 84 85 86 87
static int reserve_map(struct device *dev, struct pinctrl_map **map,
		       unsigned *reserved_maps, unsigned *num_maps,
		       unsigned reserve)
{
	unsigned old_num = *reserved_maps;
	unsigned new_num = *num_maps + reserve;
	struct pinctrl_map *new_map;
88

89 90
	if (old_num >= new_num)
		return 0;
91

92 93 94
	new_map = krealloc(*map, sizeof(*new_map) * new_num, GFP_KERNEL);
	if (!new_map) {
		dev_err(dev, "krealloc(map) failed\n");
95 96 97
		return -ENOMEM;
	}

98 99 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 125 126 127 128 129 130 131 132 133 134 135
	memset(new_map + old_num, 0, (new_num - old_num) * sizeof(*new_map));

	*map = new_map;
	*reserved_maps = new_num;

	return 0;
}

static int add_map_mux(struct pinctrl_map **map, unsigned *reserved_maps,
		       unsigned *num_maps, const char *group,
		       const char *function)
{
	if (WARN_ON(*num_maps == *reserved_maps))
		return -ENOSPC;

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

	return 0;
}

static int add_map_configs(struct device *dev, struct pinctrl_map **map,
			   unsigned *reserved_maps, unsigned *num_maps,
			   const char *group, unsigned long *configs,
			   unsigned num_configs)
{
	unsigned long *dup_configs;

	if (WARN_ON(*num_maps == *reserved_maps))
		return -ENOSPC;

	dup_configs = kmemdup(configs, num_configs * sizeof(*dup_configs),
			      GFP_KERNEL);
	if (!dup_configs) {
		dev_err(dev, "kmemdup(configs) failed\n");
		return -ENOMEM;
136 137
	}

138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
	(*map)[*num_maps].type = PIN_MAP_TYPE_CONFIGS_GROUP;
	(*map)[*num_maps].data.configs.group_or_pin = group;
	(*map)[*num_maps].data.configs.configs = dup_configs;
	(*map)[*num_maps].data.configs.num_configs = num_configs;
	(*num_maps)++;

	return 0;
}

static int add_config(struct device *dev, unsigned long **configs,
		      unsigned *num_configs, unsigned long config)
{
	unsigned old_num = *num_configs;
	unsigned new_num = old_num + 1;
	unsigned long *new_configs;

	new_configs = krealloc(*configs, sizeof(*new_configs) * new_num,
			       GFP_KERNEL);
	if (!new_configs) {
		dev_err(dev, "krealloc(configs) failed\n");
		return -ENOMEM;
159 160
	}

161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
	new_configs[old_num] = config;

	*configs = new_configs;
	*num_configs = new_num;

	return 0;
}

static void samsung_dt_free_map(struct pinctrl_dev *pctldev,
				      struct pinctrl_map *map,
				      unsigned num_maps)
{
	int i;

	for (i = 0; i < num_maps; i++)
		if (map[i].type == PIN_MAP_TYPE_CONFIGS_GROUP)
			kfree(map[i].data.configs.configs);

	kfree(map);
}

static int samsung_dt_subnode_to_map(struct samsung_pinctrl_drv_data *drvdata,
				     struct device *dev,
				     struct device_node *np,
				     struct pinctrl_map **map,
				     unsigned *reserved_maps,
				     unsigned *num_maps)
{
	int ret, i;
	u32 val;
	unsigned long config;
	unsigned long *configs = NULL;
	unsigned num_configs = 0;
	unsigned reserve;
	struct property *prop;
	const char *group;
	bool has_func = false;

	ret = of_property_read_u32(np, "samsung,pin-function", &val);
	if (!ret)
		has_func = true;

	for (i = 0; i < ARRAY_SIZE(cfg_params); i++) {
		ret = of_property_read_u32(np, cfg_params[i].property, &val);
		if (!ret) {
			config = PINCFG_PACK(cfg_params[i].param, val);
			ret = add_config(dev, &configs, &num_configs, config);
			if (ret < 0)
				goto exit;
		/* EINVAL=missing, which is fine since it's optional */
		} else if (ret != -EINVAL) {
			dev_err(dev, "could not parse property %s\n",
				cfg_params[i].property);
		}
215 216
	}

217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
	reserve = 0;
	if (has_func)
		reserve++;
	if (num_configs)
		reserve++;
	ret = of_property_count_strings(np, "samsung,pins");
	if (ret < 0) {
		dev_err(dev, "could not parse property samsung,pins\n");
		goto exit;
	}
	reserve *= ret;

	ret = reserve_map(dev, map, reserved_maps, num_maps, reserve);
	if (ret < 0)
		goto exit;

	of_property_for_each_string(np, "samsung,pins", prop, group) {
		if (has_func) {
			ret = add_map_mux(map, reserved_maps,
						num_maps, group, np->full_name);
			if (ret < 0)
				goto exit;
239 240
		}

241 242 243 244 245 246 247
		if (num_configs) {
			ret = add_map_configs(dev, map, reserved_maps,
					      num_maps, group, configs,
					      num_configs);
			if (ret < 0)
				goto exit;
		}
248 249
	}

250
	ret = 0;
251

252 253 254
exit:
	kfree(configs);
	return ret;
255 256
}

257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
static int samsung_dt_node_to_map(struct pinctrl_dev *pctldev,
					struct device_node *np_config,
					struct pinctrl_map **map,
					unsigned *num_maps)
{
	struct samsung_pinctrl_drv_data *drvdata;
	unsigned reserved_maps;
	struct device_node *np;
	int ret;

	drvdata = pinctrl_dev_get_drvdata(pctldev);

	reserved_maps = 0;
	*map = NULL;
	*num_maps = 0;

	if (!of_get_child_count(np_config))
		return samsung_dt_subnode_to_map(drvdata, pctldev->dev,
							np_config, map,
							&reserved_maps,
							num_maps);

	for_each_child_of_node(np_config, np) {
		ret = samsung_dt_subnode_to_map(drvdata, pctldev->dev, np, map,
						&reserved_maps, num_maps);
		if (ret < 0) {
			samsung_dt_free_map(pctldev, *map, *num_maps);
			return ret;
285
		}
286
	}
287

288
	return 0;
289 290 291
}

/* list of pinctrl callbacks for the pinctrl core */
292
static const struct pinctrl_ops samsung_pctrl_ops = {
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
	.get_groups_count	= samsung_get_group_count,
	.get_group_name		= samsung_get_group_name,
	.get_group_pins		= samsung_get_group_pins,
	.dt_node_to_map		= samsung_dt_node_to_map,
	.dt_free_map		= samsung_dt_free_map,
};

/* check if the selector is a valid pin function selector */
static int samsung_get_functions_count(struct pinctrl_dev *pctldev)
{
	struct samsung_pinctrl_drv_data *drvdata;

	drvdata = pinctrl_dev_get_drvdata(pctldev);
	return drvdata->nr_functions;
}

/* return the name of the pin function specified */
static const char *samsung_pinmux_get_fname(struct pinctrl_dev *pctldev,
						unsigned selector)
{
	struct samsung_pinctrl_drv_data *drvdata;

	drvdata = pinctrl_dev_get_drvdata(pctldev);
	return drvdata->pmx_functions[selector].name;
}

/* return the groups associated for the specified function selector */
static int samsung_pinmux_get_groups(struct pinctrl_dev *pctldev,
		unsigned selector, const char * const **groups,
		unsigned * const num_groups)
{
	struct samsung_pinctrl_drv_data *drvdata;

	drvdata = pinctrl_dev_get_drvdata(pctldev);
	*groups = drvdata->pmx_functions[selector].groups;
	*num_groups = drvdata->pmx_functions[selector].num_groups;
	return 0;
}

/*
 * given a pin number that is local to a pin controller, find out the pin bank
 * and the register base of the pin bank.
 */
336 337
static void pin_to_reg_bank(struct samsung_pinctrl_drv_data *drvdata,
			unsigned pin, void __iomem **reg, u32 *offset,
338 339 340 341
			struct samsung_pin_bank **bank)
{
	struct samsung_pin_bank *b;

342
	b = drvdata->pin_banks;
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358

	while ((pin >= b->pin_base) &&
			((b->pin_base + b->nr_pins - 1) < pin))
		b++;

	*reg = drvdata->virt_base + b->pctl_offset;
	*offset = pin - b->pin_base;
	if (bank)
		*bank = b;
}

/* enable or disable a pinmux function */
static void samsung_pinmux_setup(struct pinctrl_dev *pctldev, unsigned selector,
					unsigned group, bool enable)
{
	struct samsung_pinctrl_drv_data *drvdata;
359
	const struct samsung_pin_bank_type *type;
360 361
	struct samsung_pin_bank *bank;
	void __iomem *reg;
362
	u32 mask, shift, data, pin_offset;
363
	unsigned long flags;
364 365
	const struct samsung_pmx_func *func;
	const struct samsung_pin_group *grp;
366 367

	drvdata = pinctrl_dev_get_drvdata(pctldev);
368 369
	func = &drvdata->pmx_functions[selector];
	grp = &drvdata->pin_groups[group];
370

371
	pin_to_reg_bank(drvdata, grp->pins[0] - drvdata->pin_base,
372 373 374 375 376 377 378 379 380
			&reg, &pin_offset, &bank);
	type = bank->type;
	mask = (1 << type->fld_width[PINCFG_TYPE_FUNC]) - 1;
	shift = pin_offset * type->fld_width[PINCFG_TYPE_FUNC];
	if (shift >= 32) {
		/* Some banks have two config registers */
		shift -= 32;
		reg += 4;
	}
381

382
	spin_lock_irqsave(&bank->slock, flags);
383

384 385 386 387 388
	data = readl(reg + type->reg_offset[PINCFG_TYPE_FUNC]);
	data &= ~(mask << shift);
	if (enable)
		data |= func->val << shift;
	writel(data, reg + type->reg_offset[PINCFG_TYPE_FUNC]);
389

390
	spin_unlock_irqrestore(&bank->slock, flags);
391 392 393
}

/* enable a specified pinmux by writing to registers */
394 395 396
static int samsung_pinmux_set_mux(struct pinctrl_dev *pctldev,
				  unsigned selector,
				  unsigned group)
397 398 399 400 401 402
{
	samsung_pinmux_setup(pctldev, selector, group, true);
	return 0;
}

/* list of pinmux callbacks for the pinmux vertical in pinctrl core */
403
static const struct pinmux_ops samsung_pinmux_ops = {
404 405 406
	.get_functions_count	= samsung_get_functions_count,
	.get_function_name	= samsung_pinmux_get_fname,
	.get_function_groups	= samsung_pinmux_get_groups,
407
	.set_mux		= samsung_pinmux_set_mux,
408 409 410 411 412 413 414
};

/* set or get the pin config settings for a specified pin */
static int samsung_pinconf_rw(struct pinctrl_dev *pctldev, unsigned int pin,
				unsigned long *config, bool set)
{
	struct samsung_pinctrl_drv_data *drvdata;
415
	const struct samsung_pin_bank_type *type;
416 417 418 419 420
	struct samsung_pin_bank *bank;
	void __iomem *reg_base;
	enum pincfg_type cfg_type = PINCFG_UNPACK_TYPE(*config);
	u32 data, width, pin_offset, mask, shift;
	u32 cfg_value, cfg_reg;
421
	unsigned long flags;
422 423

	drvdata = pinctrl_dev_get_drvdata(pctldev);
424
	pin_to_reg_bank(drvdata, pin - drvdata->pin_base, &reg_base,
425
					&pin_offset, &bank);
426
	type = bank->type;
427

428
	if (cfg_type >= PINCFG_TYPE_NUM || !type->fld_width[cfg_type])
429 430
		return -EINVAL;

431
	width = type->fld_width[cfg_type];
432
	cfg_reg = type->reg_offset[cfg_type];
433

434 435
	spin_lock_irqsave(&bank->slock, flags);

436 437 438 439 440 441 442 443 444 445 446 447 448 449
	mask = (1 << width) - 1;
	shift = pin_offset * width;
	data = readl(reg_base + cfg_reg);

	if (set) {
		cfg_value = PINCFG_UNPACK_VALUE(*config);
		data &= ~(mask << shift);
		data |= (cfg_value << shift);
		writel(data, reg_base + cfg_reg);
	} else {
		data >>= shift;
		data &= mask;
		*config = PINCFG_PACK(cfg_type, data);
	}
450 451 452

	spin_unlock_irqrestore(&bank->slock, flags);

453 454 455 456 457
	return 0;
}

/* set the pin config settings for a specified pin */
static int samsung_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin,
458
				unsigned long *configs, unsigned num_configs)
459
{
460 461 462 463 464 465 466 467 468
	int i, ret;

	for (i = 0; i < num_configs; i++) {
		ret = samsung_pinconf_rw(pctldev, pin, &configs[i], true);
		if (ret < 0)
			return ret;
	} /* for each config */

	return 0;
469 470 471 472 473 474 475 476 477 478 479
}

/* get the pin config settings for a specified pin */
static int samsung_pinconf_get(struct pinctrl_dev *pctldev, unsigned int pin,
					unsigned long *config)
{
	return samsung_pinconf_rw(pctldev, pin, config, false);
}

/* set the pin config settings for a specified pin group */
static int samsung_pinconf_group_set(struct pinctrl_dev *pctldev,
480 481
			unsigned group, unsigned long *configs,
			unsigned num_configs)
482 483 484 485 486 487 488 489 490
{
	struct samsung_pinctrl_drv_data *drvdata;
	const unsigned int *pins;
	unsigned int cnt;

	drvdata = pinctrl_dev_get_drvdata(pctldev);
	pins = drvdata->pin_groups[group].pins;

	for (cnt = 0; cnt < drvdata->pin_groups[group].num_pins; cnt++)
491
		samsung_pinconf_set(pctldev, pins[cnt], configs, num_configs);
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509

	return 0;
}

/* get the pin config settings for a specified pin group */
static int samsung_pinconf_group_get(struct pinctrl_dev *pctldev,
				unsigned int group, unsigned long *config)
{
	struct samsung_pinctrl_drv_data *drvdata;
	const unsigned int *pins;

	drvdata = pinctrl_dev_get_drvdata(pctldev);
	pins = drvdata->pin_groups[group].pins;
	samsung_pinconf_get(pctldev, pins[0], config);
	return 0;
}

/* list of pinconfig callbacks for pinconfig vertical in the pinctrl code */
510
static const struct pinconf_ops samsung_pinconf_ops = {
511 512 513 514 515 516
	.pin_config_get		= samsung_pinconf_get,
	.pin_config_set		= samsung_pinconf_set,
	.pin_config_group_get	= samsung_pinconf_group_get,
	.pin_config_group_set	= samsung_pinconf_group_set,
};

517 518 519 520 521 522
/*
 * The samsung_gpio_set_vlaue() should be called with "bank->slock" held
 * to avoid race condition.
 */
static void samsung_gpio_set_value(struct gpio_chip *gc,
					  unsigned offset, int value)
523
{
524
	struct samsung_pin_bank *bank = gpiochip_get_data(gc);
525
	const struct samsung_pin_bank_type *type = bank->type;
526
	void __iomem *reg;
527
	u32 data;
528

529
	reg = bank->drvdata->virt_base + bank->pctl_offset;
530

531
	data = readl(reg + type->reg_offset[PINCFG_TYPE_DAT]);
532
	data &= ~(1 << offset);
533
	if (value)
534
		data |= 1 << offset;
535
	writel(data, reg + type->reg_offset[PINCFG_TYPE_DAT]);
536 537 538 539 540 541 542
}

/* gpiolib gpio_set callback function */
static void samsung_gpio_set(struct gpio_chip *gc, unsigned offset, int value)
{
	struct samsung_pin_bank *bank = gpiochip_get_data(gc);
	unsigned long flags;
543

544 545
	spin_lock_irqsave(&bank->slock, flags);
	samsung_gpio_set_value(gc, offset, value);
546
	spin_unlock_irqrestore(&bank->slock, flags);
547 548 549 550 551 552
}

/* gpiolib gpio_get callback function */
static int samsung_gpio_get(struct gpio_chip *gc, unsigned offset)
{
	void __iomem *reg;
553
	u32 data;
554
	struct samsung_pin_bank *bank = gpiochip_get_data(gc);
555
	const struct samsung_pin_bank_type *type = bank->type;
556

557
	reg = bank->drvdata->virt_base + bank->pctl_offset;
558

559
	data = readl(reg + type->reg_offset[PINCFG_TYPE_DAT]);
560
	data >>= offset;
561 562 563 564 565
	data &= 1;
	return data;
}

/*
566 567
 * The samsung_gpio_set_direction() should be called with "bank->slock" held
 * to avoid race condition.
568 569
 * The calls to gpio_direction_output() and gpio_direction_input()
 * leads to this function call.
570
 */
571 572 573
static int samsung_gpio_set_direction(struct gpio_chip *gc,
					     unsigned offset, bool input)
{
574
	const struct samsung_pin_bank_type *type;
575 576 577 578 579
	struct samsung_pin_bank *bank;
	struct samsung_pinctrl_drv_data *drvdata;
	void __iomem *reg;
	u32 data, mask, shift;

580
	bank = gpiochip_get_data(gc);
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
	type = bank->type;
	drvdata = bank->drvdata;

	reg = drvdata->virt_base + bank->pctl_offset +
					type->reg_offset[PINCFG_TYPE_FUNC];

	mask = (1 << type->fld_width[PINCFG_TYPE_FUNC]) - 1;
	shift = offset * type->fld_width[PINCFG_TYPE_FUNC];
	if (shift >= 32) {
		/* Some banks have two config registers */
		shift -= 32;
		reg += 4;
	}

	data = readl(reg);
	data &= ~(mask << shift);
	if (!input)
		data |= FUNC_OUTPUT << shift;
	writel(data, reg);

	return 0;
}

/* gpiolib gpio_direction_input callback function. */
605 606
static int samsung_gpio_direction_input(struct gpio_chip *gc, unsigned offset)
{
607 608 609 610 611 612 613 614
	struct samsung_pin_bank *bank = gpiochip_get_data(gc);
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&bank->slock, flags);
	ret = samsung_gpio_set_direction(gc, offset, true);
	spin_unlock_irqrestore(&bank->slock, flags);
	return ret;
615 616
}

617
/* gpiolib gpio_direction_output callback function. */
618 619 620
static int samsung_gpio_direction_output(struct gpio_chip *gc, unsigned offset,
							int value)
{
621 622 623 624 625 626 627 628 629 630
	struct samsung_pin_bank *bank = gpiochip_get_data(gc);
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&bank->slock, flags);
	samsung_gpio_set_value(gc, offset, value);
	ret = samsung_gpio_set_direction(gc, offset, false);
	spin_unlock_irqrestore(&bank->slock, flags);

	return ret;
631 632
}

633 634 635 636 637 638
/*
 * gpiolib gpio_to_irq callback function. Creates a mapping between a GPIO pin
 * and a virtual IRQ, if not already present.
 */
static int samsung_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
{
639
	struct samsung_pin_bank *bank = gpiochip_get_data(gc);
640 641 642 643 644 645 646 647 648 649
	unsigned int virq;

	if (!bank->irq_domain)
		return -ENXIO;

	virq = irq_create_mapping(bank->irq_domain, offset);

	return (virq) ? : -ENXIO;
}

650 651 652 653
static struct samsung_pin_group *samsung_pinctrl_create_groups(
				struct device *dev,
				struct samsung_pinctrl_drv_data *drvdata,
				unsigned int *cnt)
654
{
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
	struct pinctrl_desc *ctrldesc = &drvdata->pctl;
	struct samsung_pin_group *groups, *grp;
	const struct pinctrl_pin_desc *pdesc;
	int i;

	groups = devm_kzalloc(dev, ctrldesc->npins * sizeof(*groups),
				GFP_KERNEL);
	if (!groups)
		return ERR_PTR(-EINVAL);
	grp = groups;

	pdesc = ctrldesc->pins;
	for (i = 0; i < ctrldesc->npins; ++i, ++pdesc, ++grp) {
		grp->name = pdesc->name;
		grp->pins = &pdesc->number;
		grp->num_pins = 1;
	}

	*cnt = ctrldesc->npins;
	return groups;
}
676

677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
static int samsung_pinctrl_create_function(struct device *dev,
				struct samsung_pinctrl_drv_data *drvdata,
				struct device_node *func_np,
				struct samsung_pmx_func *func)
{
	int npins;
	int ret;
	int i;

	if (of_property_read_u32(func_np, "samsung,pin-function", &func->val))
		return 0;

	npins = of_property_count_strings(func_np, "samsung,pins");
	if (npins < 1) {
		dev_err(dev, "invalid pin list in %s node", func_np->name);
692 693 694
		return -EINVAL;
	}

695 696 697 698
	func->name = func_np->full_name;

	func->groups = devm_kzalloc(dev, npins * sizeof(char *), GFP_KERNEL);
	if (!func->groups)
699 700
		return -ENOMEM;

701 702 703 704 705 706 707 708 709 710
	for (i = 0; i < npins; ++i) {
		const char *gname;

		ret = of_property_read_string_index(func_np, "samsung,pins",
							i, &gname);
		if (ret) {
			dev_err(dev,
				"failed to read pin name %d from %s node\n",
				i, func_np->name);
			return ret;
711
		}
712 713

		func->groups[i] = gname;
714 715
	}

716 717
	func->num_groups = npins;
	return 1;
718 719
}

720 721 722 723
static struct samsung_pmx_func *samsung_pinctrl_create_functions(
				struct device *dev,
				struct samsung_pinctrl_drv_data *drvdata,
				unsigned int *cnt)
724
{
725
	struct samsung_pmx_func *functions, *func;
726 727
	struct device_node *dev_np = dev->of_node;
	struct device_node *cfg_np;
728
	unsigned int func_cnt = 0;
729 730
	int ret;

731 732 733 734 735 736
	/*
	 * Iterate over all the child nodes of the pin controller node
	 * and create pin groups and pin function lists.
	 */
	for_each_child_of_node(dev_np, cfg_np) {
		struct device_node *func_np;
737

738 739 740 741 742 743 744 745 746 747 748 749 750 751
		if (!of_get_child_count(cfg_np)) {
			if (!of_find_property(cfg_np,
			    "samsung,pin-function", NULL))
				continue;
			++func_cnt;
			continue;
		}

		for_each_child_of_node(cfg_np, func_np) {
			if (!of_find_property(func_np,
			    "samsung,pin-function", NULL))
				continue;
			++func_cnt;
		}
752 753
	}

754 755
	functions = devm_kzalloc(dev, func_cnt * sizeof(*functions),
					GFP_KERNEL);
756 757
	if (!functions) {
		dev_err(dev, "failed to allocate memory for function list\n");
758
		return ERR_PTR(-EINVAL);
759 760 761 762 763 764 765
	}
	func = functions;

	/*
	 * Iterate over all the child nodes of the pin controller node
	 * and create pin groups and pin function lists.
	 */
766
	func_cnt = 0;
767
	for_each_child_of_node(dev_np, cfg_np) {
768 769 770 771 772 773 774 775 776 777 778
		struct device_node *func_np;

		if (!of_get_child_count(cfg_np)) {
			ret = samsung_pinctrl_create_function(dev, drvdata,
							cfg_np, func);
			if (ret < 0)
				return ERR_PTR(ret);
			if (ret > 0) {
				++func;
				++func_cnt;
			}
779
			continue;
780
		}
781

782 783 784 785 786 787 788 789 790
		for_each_child_of_node(cfg_np, func_np) {
			ret = samsung_pinctrl_create_function(dev, drvdata,
						func_np, func);
			if (ret < 0)
				return ERR_PTR(ret);
			if (ret > 0) {
				++func;
				++func_cnt;
			}
791
		}
792
	}
793

794 795 796
	*cnt = func_cnt;
	return functions;
}
797

798 799 800 801 802
/*
 * Parse the information about all the available pin groups and pin functions
 * from device node of the pin-controller. A pin group is formed with all
 * the pins listed in the "samsung,pins" property.
 */
803

804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
static int samsung_pinctrl_parse_dt(struct platform_device *pdev,
				    struct samsung_pinctrl_drv_data *drvdata)
{
	struct device *dev = &pdev->dev;
	struct samsung_pin_group *groups;
	struct samsung_pmx_func *functions;
	unsigned int grp_cnt = 0, func_cnt = 0;

	groups = samsung_pinctrl_create_groups(dev, drvdata, &grp_cnt);
	if (IS_ERR(groups)) {
		dev_err(dev, "failed to parse pin groups\n");
		return PTR_ERR(groups);
	}

	functions = samsung_pinctrl_create_functions(dev, drvdata, &func_cnt);
	if (IS_ERR(functions)) {
		dev_err(dev, "failed to parse pin functions\n");
821
		return PTR_ERR(functions);
822 823 824 825 826
	}

	drvdata->pin_groups = groups;
	drvdata->nr_groups = grp_cnt;
	drvdata->pmx_functions = functions;
827
	drvdata->nr_functions = func_cnt;
828 829 830 831 832

	return 0;
}

/* register the pinctrl interface with the pinctrl subsystem */
833 834
static int samsung_pinctrl_register(struct platform_device *pdev,
				    struct samsung_pinctrl_drv_data *drvdata)
835 836 837 838 839 840 841 842 843 844 845 846 847 848
{
	struct pinctrl_desc *ctrldesc = &drvdata->pctl;
	struct pinctrl_pin_desc *pindesc, *pdesc;
	struct samsung_pin_bank *pin_bank;
	char *pin_names;
	int pin, bank, ret;

	ctrldesc->name = "samsung-pinctrl";
	ctrldesc->owner = THIS_MODULE;
	ctrldesc->pctlops = &samsung_pctrl_ops;
	ctrldesc->pmxops = &samsung_pinmux_ops;
	ctrldesc->confops = &samsung_pinconf_ops;

	pindesc = devm_kzalloc(&pdev->dev, sizeof(*pindesc) *
849
			drvdata->nr_pins, GFP_KERNEL);
850 851 852 853 854
	if (!pindesc) {
		dev_err(&pdev->dev, "mem alloc for pin descriptors failed\n");
		return -ENOMEM;
	}
	ctrldesc->pins = pindesc;
855
	ctrldesc->npins = drvdata->nr_pins;
856 857 858

	/* dynamically populate the pin number and pin name for pindesc */
	for (pin = 0, pdesc = pindesc; pin < ctrldesc->npins; pin++, pdesc++)
859
		pdesc->number = pin + drvdata->pin_base;
860 861 862 863 864 865

	/*
	 * allocate space for storing the dynamically generated names for all
	 * the pins which belong to this pin-controller.
	 */
	pin_names = devm_kzalloc(&pdev->dev, sizeof(char) * PIN_NAME_LENGTH *
866
					drvdata->nr_pins, GFP_KERNEL);
867 868 869 870 871 872
	if (!pin_names) {
		dev_err(&pdev->dev, "mem alloc for pin names failed\n");
		return -ENOMEM;
	}

	/* for each pin, the name of the pin is pin-bank name + pin number */
873 874
	for (bank = 0; bank < drvdata->nr_banks; bank++) {
		pin_bank = &drvdata->pin_banks[bank];
875 876 877 878 879 880 881 882
		for (pin = 0; pin < pin_bank->nr_pins; pin++) {
			sprintf(pin_names, "%s-%d", pin_bank->name, pin);
			pdesc = pindesc + pin_bank->pin_base + pin;
			pdesc->name = pin_names;
			pin_names += PIN_NAME_LENGTH;
		}
	}

883 884 885 886
	ret = samsung_pinctrl_parse_dt(pdev, drvdata);
	if (ret)
		return ret;

887
	drvdata->pctl_dev = pinctrl_register(ctrldesc, &pdev->dev, drvdata);
888
	if (IS_ERR(drvdata->pctl_dev)) {
889
		dev_err(&pdev->dev, "could not register pinctrl driver\n");
890
		return PTR_ERR(drvdata->pctl_dev);
891 892
	}

893 894
	for (bank = 0; bank < drvdata->nr_banks; ++bank) {
		pin_bank = &drvdata->pin_banks[bank];
895 896
		pin_bank->grange.name = pin_bank->name;
		pin_bank->grange.id = bank;
897
		pin_bank->grange.pin_base = drvdata->pin_base
898
						+ pin_bank->pin_base;
899 900 901 902 903
		pin_bank->grange.base = pin_bank->gpio_chip.base;
		pin_bank->grange.npins = pin_bank->gpio_chip.ngpio;
		pin_bank->grange.gc = &pin_bank->gpio_chip;
		pinctrl_add_gpio_range(drvdata->pctl_dev, &pin_bank->grange);
	}
904 905 906 907

	return 0;
}

908
static const struct gpio_chip samsung_gpiolib_chip = {
909 910
	.request = gpiochip_generic_request,
	.free = gpiochip_generic_free,
911 912 913 914
	.set = samsung_gpio_set,
	.get = samsung_gpio_get,
	.direction_input = samsung_gpio_direction_input,
	.direction_output = samsung_gpio_direction_output,
915
	.to_irq = samsung_gpio_to_irq,
916 917 918
	.owner = THIS_MODULE,
};

919
/* register the gpiolib interface with the gpiolib subsystem */
920 921
static int samsung_gpiolib_register(struct platform_device *pdev,
				    struct samsung_pinctrl_drv_data *drvdata)
922
{
923
	struct samsung_pin_bank *bank = drvdata->pin_banks;
924 925
	struct gpio_chip *gc;
	int ret;
926 927
	int i;

928
	for (i = 0; i < drvdata->nr_banks; ++i, ++bank) {
929 930 931
		bank->gpio_chip = samsung_gpiolib_chip;

		gc = &bank->gpio_chip;
932
		gc->base = drvdata->pin_base + bank->pin_base;
933
		gc->ngpio = bank->nr_pins;
934
		gc->parent = &pdev->dev;
935 936 937
		gc->of_node = bank->of_node;
		gc->label = bank->name;

938
		ret = gpiochip_add_data(gc, bank);
939 940 941 942 943
		if (ret) {
			dev_err(&pdev->dev, "failed to register gpio_chip %s, error code: %d\n",
							gc->label, ret);
			goto fail;
		}
944 945 946
	}

	return 0;
947 948 949

fail:
	for (--i, --bank; i >= 0; --i, --bank)
950
		gpiochip_remove(&bank->gpio_chip);
951
	return ret;
952 953 954
}

/* unregister the gpiolib interface with the gpiolib subsystem */
955 956
static int samsung_gpiolib_unregister(struct platform_device *pdev,
				      struct samsung_pinctrl_drv_data *drvdata)
957
{
958
	struct samsung_pin_bank *bank = drvdata->pin_banks;
959 960
	int i;

961
	for (i = 0; i < drvdata->nr_banks; ++i, ++bank)
962
		gpiochip_remove(&bank->gpio_chip);
963

964
	return 0;
965 966 967 968 969
}

static const struct of_device_id samsung_pinctrl_dt_match[];

/* retrieve the soc specific data */
970 971 972
static const struct samsung_pin_ctrl *
samsung_pinctrl_get_soc_data(struct samsung_pinctrl_drv_data *d,
			     struct platform_device *pdev)
973 974 975
{
	int id;
	const struct of_device_id *match;
976
	struct device_node *node = pdev->dev.of_node;
977
	struct device_node *np;
978
	const struct samsung_pin_bank_data *bdata;
979
	const struct samsung_pin_ctrl *ctrl;
980 981
	struct samsung_pin_bank *bank;
	int i;
982

983
	id = of_alias_get_id(node, "pinctrl");
984 985
	if (id < 0) {
		dev_err(&pdev->dev, "failed to get alias id\n");
986
		return ERR_PTR(-ENOENT);
987 988
	}
	match = of_match_node(samsung_pinctrl_dt_match, node);
989 990
	ctrl = (struct samsung_pin_ctrl *)match->data + id;

991 992 993
	d->suspend = ctrl->suspend;
	d->resume = ctrl->resume;
	d->nr_banks = ctrl->nr_banks;
994 995 996 997
	d->pin_banks = devm_kcalloc(&pdev->dev, d->nr_banks,
					sizeof(*d->pin_banks), GFP_KERNEL);
	if (!d->pin_banks)
		return ERR_PTR(-ENOMEM);
998 999

	bank = d->pin_banks;
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
	bdata = ctrl->pin_banks;
	for (i = 0; i < ctrl->nr_banks; ++i, ++bdata, ++bank) {
		bank->type = bdata->type;
		bank->pctl_offset = bdata->pctl_offset;
		bank->nr_pins = bdata->nr_pins;
		bank->eint_func = bdata->eint_func;
		bank->eint_type = bdata->eint_type;
		bank->eint_mask = bdata->eint_mask;
		bank->eint_offset = bdata->eint_offset;
		bank->name = bdata->name;

1011
		spin_lock_init(&bank->slock);
1012
		bank->drvdata = d;
1013 1014
		bank->pin_base = d->nr_pins;
		d->nr_pins += bank->nr_pins;
1015 1016
	}

1017 1018 1019
	for_each_child_of_node(node, np) {
		if (!of_find_property(np, "gpio-controller", NULL))
			continue;
1020 1021
		bank = d->pin_banks;
		for (i = 0; i < d->nr_banks; ++i, ++bank) {
1022 1023 1024 1025 1026 1027 1028
			if (!strcmp(bank->name, np->name)) {
				bank->of_node = np;
				break;
			}
		}
	}

1029 1030
	d->pin_base = pin_base;
	pin_base += d->nr_pins;
1031 1032

	return ctrl;
1033 1034
}

1035
static int samsung_pinctrl_probe(struct platform_device *pdev)
1036 1037
{
	struct samsung_pinctrl_drv_data *drvdata;
1038
	const struct samsung_pin_ctrl *ctrl;
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
	struct device *dev = &pdev->dev;
	struct resource *res;
	int ret;

	if (!dev->of_node) {
		dev_err(dev, "device tree node not found\n");
		return -ENODEV;
	}

	drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
	if (!drvdata) {
		dev_err(dev, "failed to allocate memory for driver's "
				"private data\n");
		return -ENOMEM;
	}
1054 1055

	ctrl = samsung_pinctrl_get_soc_data(drvdata, pdev);
1056
	if (IS_ERR(ctrl)) {
1057
		dev_err(&pdev->dev, "driver data not available\n");
1058
		return PTR_ERR(ctrl);
1059
	}
1060 1061 1062
	drvdata->dev = dev;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1063 1064 1065
	drvdata->virt_base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(drvdata->virt_base))
		return PTR_ERR(drvdata->virt_base);
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086

	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (res)
		drvdata->irq = res->start;

	ret = samsung_gpiolib_register(pdev, drvdata);
	if (ret)
		return ret;

	ret = samsung_pinctrl_register(pdev, drvdata);
	if (ret) {
		samsung_gpiolib_unregister(pdev, drvdata);
		return ret;
	}

	if (ctrl->eint_gpio_init)
		ctrl->eint_gpio_init(drvdata);
	if (ctrl->eint_wkup_init)
		ctrl->eint_wkup_init(drvdata);

	platform_set_drvdata(pdev, drvdata);
1087 1088 1089 1090

	/* Add to the global list */
	list_add_tail(&drvdata->node, &drvdata_list);

1091 1092 1093
	return 0;
}

1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
#ifdef CONFIG_PM

/**
 * samsung_pinctrl_suspend_dev - save pinctrl state for suspend for a device
 *
 * Save data for all banks handled by this device.
 */
static void samsung_pinctrl_suspend_dev(
	struct samsung_pinctrl_drv_data *drvdata)
{
	void __iomem *virt_base = drvdata->virt_base;
	int i;

1107 1108
	for (i = 0; i < drvdata->nr_banks; i++) {
		struct samsung_pin_bank *bank = &drvdata->pin_banks[i];
1109
		void __iomem *reg = virt_base + bank->pctl_offset;
1110 1111
		const u8 *offs = bank->type->reg_offset;
		const u8 *widths = bank->type->fld_width;
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
		enum pincfg_type type;

		/* Registers without a powerdown config aren't lost */
		if (!widths[PINCFG_TYPE_CON_PDN])
			continue;

		for (type = 0; type < PINCFG_TYPE_NUM; type++)
			if (widths[type])
				bank->pm_save[type] = readl(reg + offs[type]);

		if (widths[PINCFG_TYPE_FUNC] * bank->nr_pins > 32) {
			/* Some banks have two config registers */
			bank->pm_save[PINCFG_TYPE_NUM] =
				readl(reg + offs[PINCFG_TYPE_FUNC] + 4);
			pr_debug("Save %s @ %p (con %#010x %08x)\n",
				 bank->name, reg,
				 bank->pm_save[PINCFG_TYPE_FUNC],
				 bank->pm_save[PINCFG_TYPE_NUM]);
		} else {
			pr_debug("Save %s @ %p (con %#010x)\n", bank->name,
				 reg, bank->pm_save[PINCFG_TYPE_FUNC]);
		}
	}
1135

1136 1137
	if (drvdata->suspend)
		drvdata->suspend(drvdata);
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
}

/**
 * samsung_pinctrl_resume_dev - restore pinctrl state from suspend for a device
 *
 * Restore one of the banks that was saved during suspend.
 *
 * We don't bother doing anything complicated to avoid glitching lines since
 * we're called before pad retention is turned off.
 */
static void samsung_pinctrl_resume_dev(struct samsung_pinctrl_drv_data *drvdata)
{
	void __iomem *virt_base = drvdata->virt_base;
	int i;

1153 1154
	if (drvdata->resume)
		drvdata->resume(drvdata);
1155

1156 1157
	for (i = 0; i < drvdata->nr_banks; i++) {
		struct samsung_pin_bank *bank = &drvdata->pin_banks[i];
1158
		void __iomem *reg = virt_base + bank->pctl_offset;
1159 1160
		const u8 *offs = bank->type->reg_offset;
		const u8 *widths = bank->type->fld_width;
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 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
		enum pincfg_type type;

		/* Registers without a powerdown config aren't lost */
		if (!widths[PINCFG_TYPE_CON_PDN])
			continue;

		if (widths[PINCFG_TYPE_FUNC] * bank->nr_pins > 32) {
			/* Some banks have two config registers */
			pr_debug("%s @ %p (con %#010x %08x => %#010x %08x)\n",
				 bank->name, reg,
				 readl(reg + offs[PINCFG_TYPE_FUNC]),
				 readl(reg + offs[PINCFG_TYPE_FUNC] + 4),
				 bank->pm_save[PINCFG_TYPE_FUNC],
				 bank->pm_save[PINCFG_TYPE_NUM]);
			writel(bank->pm_save[PINCFG_TYPE_NUM],
			       reg + offs[PINCFG_TYPE_FUNC] + 4);
		} else {
			pr_debug("%s @ %p (con %#010x => %#010x)\n", bank->name,
				 reg, readl(reg + offs[PINCFG_TYPE_FUNC]),
				 bank->pm_save[PINCFG_TYPE_FUNC]);
		}
		for (type = 0; type < PINCFG_TYPE_NUM; type++)
			if (widths[type])
				writel(bank->pm_save[type], reg + offs[type]);
	}
}

/**
 * samsung_pinctrl_suspend - save pinctrl state for suspend
 *
 * Save data for all banks across all devices.
 */
static int samsung_pinctrl_suspend(void)
{
	struct samsung_pinctrl_drv_data *drvdata;

	list_for_each_entry(drvdata, &drvdata_list, node) {
		samsung_pinctrl_suspend_dev(drvdata);
	}

	return 0;
}

/**
 * samsung_pinctrl_resume - restore pinctrl state for suspend
 *
 * Restore data for all banks across all devices.
 */
static void samsung_pinctrl_resume(void)
{
	struct samsung_pinctrl_drv_data *drvdata;

	list_for_each_entry_reverse(drvdata, &drvdata_list, node) {
		samsung_pinctrl_resume_dev(drvdata);
	}
}

#else
#define samsung_pinctrl_suspend		NULL
#define samsung_pinctrl_resume		NULL
#endif

static struct syscore_ops samsung_pinctrl_syscore_ops = {
	.suspend	= samsung_pinctrl_suspend,
	.resume		= samsung_pinctrl_resume,
};

1228
static const struct of_device_id samsung_pinctrl_dt_match[] = {
1229
#ifdef CONFIG_PINCTRL_EXYNOS
1230 1231
	{ .compatible = "samsung,exynos3250-pinctrl",
		.data = (void *)exynos3250_pin_ctrl },
1232
	{ .compatible = "samsung,exynos4210-pinctrl",
1233
		.data = (void *)exynos4210_pin_ctrl },
1234
	{ .compatible = "samsung,exynos4x12-pinctrl",
1235
		.data = (void *)exynos4x12_pin_ctrl },
1236 1237
	{ .compatible = "samsung,exynos4415-pinctrl",
		.data = (void *)exynos4415_pin_ctrl },
1238 1239
	{ .compatible = "samsung,exynos5250-pinctrl",
		.data = (void *)exynos5250_pin_ctrl },
1240 1241
	{ .compatible = "samsung,exynos5260-pinctrl",
		.data = (void *)exynos5260_pin_ctrl },
1242 1243
	{ .compatible = "samsung,exynos5410-pinctrl",
		.data = (void *)exynos5410_pin_ctrl },
1244 1245
	{ .compatible = "samsung,exynos5420-pinctrl",
		.data = (void *)exynos5420_pin_ctrl },
1246 1247
	{ .compatible = "samsung,exynos5433-pinctrl",
		.data = (void *)exynos5433_pin_ctrl },
1248 1249
	{ .compatible = "samsung,s5pv210-pinctrl",
		.data = (void *)s5pv210_pin_ctrl },
1250 1251
	{ .compatible = "samsung,exynos7-pinctrl",
		.data = (void *)exynos7_pin_ctrl },
1252 1253 1254 1255
#endif
#ifdef CONFIG_PINCTRL_S3C64XX
	{ .compatible = "samsung,s3c64xx-pinctrl",
		.data = s3c64xx_pin_ctrl },
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
#endif
#ifdef CONFIG_PINCTRL_S3C24XX
	{ .compatible = "samsung,s3c2412-pinctrl",
		.data = s3c2412_pin_ctrl },
	{ .compatible = "samsung,s3c2416-pinctrl",
		.data = s3c2416_pin_ctrl },
	{ .compatible = "samsung,s3c2440-pinctrl",
		.data = s3c2440_pin_ctrl },
	{ .compatible = "samsung,s3c2450-pinctrl",
		.data = s3c2450_pin_ctrl },
1266
#endif
1267 1268 1269 1270 1271 1272 1273 1274
	{},
};
MODULE_DEVICE_TABLE(of, samsung_pinctrl_dt_match);

static struct platform_driver samsung_pinctrl_driver = {
	.probe		= samsung_pinctrl_probe,
	.driver = {
		.name	= "samsung-pinctrl",
1275
		.of_match_table = samsung_pinctrl_dt_match,
1276 1277 1278 1279 1280
	},
};

static int __init samsung_pinctrl_drv_register(void)
{
1281 1282 1283 1284 1285 1286 1287 1288
	/*
	 * Register syscore ops for save/restore of registers across suspend.
	 * It's important to ensure that this driver is running at an earlier
	 * initcall level than any arch-specific init calls that install syscore
	 * ops that turn off pad retention (like exynos_pm_resume).
	 */
	register_syscore_ops(&samsung_pinctrl_syscore_ops);

1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
	return platform_driver_register(&samsung_pinctrl_driver);
}
postcore_initcall(samsung_pinctrl_drv_register);

static void __exit samsung_pinctrl_drv_unregister(void)
{
	platform_driver_unregister(&samsung_pinctrl_driver);
}
module_exit(samsung_pinctrl_drv_unregister);

MODULE_AUTHOR("Thomas Abraham <thomas.ab@samsung.com>");
MODULE_DESCRIPTION("Samsung pinctrl driver");
MODULE_LICENSE("GPL v2");