gpio.c 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* linux/arch/arm/mach-s3c2412/gpio.c
 *
 * Copyright (c) 2007 Simtec Electronics
 *	Ben Dooks <ben@simtec.co.uk>
 *
 * http://armlinux.simtec.co.uk/.
 *
 * S3C2412/S3C2413 specific GPIO support
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
*/

#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/module.h>
#include <linux/interrupt.h>
19
#include <linux/gpio.h>
20 21 22 23

#include <asm/mach/arch.h>
#include <asm/mach/map.h>

24 25
#include <mach/regs-gpio.h>
#include <mach/hardware.h>
26

27 28
#include <plat/gpio-core.h>

29 30
int s3c2412_gpio_set_sleepcfg(unsigned int pin, unsigned int state)
{
31
	struct samsung_gpio_chip *chip = samsung_gpiolib_getchip(pin);
32
	unsigned long offs = pin - chip->chip.base;
33 34 35 36 37
	unsigned long flags;
	unsigned long slpcon;

	offs *= 2;

38
	if (pin < S3C2410_GPB(0))
39 40
		return -EINVAL;

41 42
	if (pin >= S3C2410_GPF(0) &&
	    pin <= S3C2410_GPG(16))
43 44
		return -EINVAL;

45
	if (pin > S3C2410_GPH(16))
46 47 48 49
		return -EINVAL;

	local_irq_save(flags);

50
	slpcon = __raw_readl(chip->base + 0x0C);
51 52 53 54

	slpcon &= ~(3 << offs);
	slpcon |= state << offs;

55
	__raw_writel(slpcon, chip->base + 0x0C);
56 57 58 59 60 61 62

	local_irq_restore(flags);

	return 0;
}

EXPORT_SYMBOL(s3c2412_gpio_set_sleepcfg);