gpiolib.c 6.5 KB
Newer Older
B
Ben Dooks 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* arch/arm/plat-s3c64xx/gpiolib.c
 *
 * Copyright 2008 Openmoko, Inc.
 * Copyright 2008 Simtec Electronics
 *      Ben Dooks <ben@simtec.co.uk>
 *      http://armlinux.simtec.co.uk/
 *
 * S3C64XX - GPIOlib 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/irq.h>
#include <linux/io.h>
18
#include <linux/gpio.h>
B
Ben Dooks 已提交
19 20 21

#include <mach/map.h>

22
#include <plat/gpio-core.h>
23 24
#include <plat/gpio-cfg.h>
#include <plat/gpio-cfg-helpers.h>
25
#include <mach/regs-gpio.h>
B
Ben Dooks 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

/* GPIO bank summary:
 *
 * Bank	GPIOs	Style	SlpCon	ExtInt Group
 * A	8	4Bit	Yes	1
 * B	7	4Bit	Yes	1
 * C	8	4Bit	Yes	2
 * D	5	4Bit	Yes	3
 * E	5	4Bit	Yes	None
 * F	16	2Bit	Yes	4 [1]
 * G	7	4Bit	Yes	5
 * H	10	4Bit[2]	Yes	6
 * I	16	2Bit	Yes	None
 * J	12	2Bit	Yes	None
 * K	16	4Bit[2]	No	None
 * L	15	4Bit[2] No	None
 * M	6	4Bit	No	IRQ_EINT
 * N	16	2Bit	No	IRQ_EINT
 * O	16	2Bit	Yes	7
 * P	15	2Bit	Yes	8
 * Q	9	2Bit	Yes	9
 *
 * [1] BANKF pins 14,15 do not form part of the external interrupt sources
 * [2] BANK has two control registers, GPxCON0 and GPxCON1
 */

52 53
static struct s3c_gpio_cfg gpio_4bit_cfg_noint = {
	.set_config	= s3c_gpio_setcfg_s3c64xx_4bit,
54
	.get_config	= s3c_gpio_getcfg_s3c64xx_4bit,
55 56 57 58 59 60 61
	.set_pull	= s3c_gpio_setpull_updown,
	.get_pull	= s3c_gpio_getpull_updown,
};

static struct s3c_gpio_cfg gpio_4bit_cfg_eint0111 = {
	.cfg_eint	= 7,
	.set_config	= s3c_gpio_setcfg_s3c64xx_4bit,
62
	.get_config	= s3c_gpio_getcfg_s3c64xx_4bit,
63 64 65 66 67 68
	.set_pull	= s3c_gpio_setpull_updown,
	.get_pull	= s3c_gpio_getpull_updown,
};

static struct s3c_gpio_cfg gpio_4bit_cfg_eint0011 = {
	.cfg_eint	= 3,
69
	.get_config	= s3c_gpio_getcfg_s3c64xx_4bit,
70 71 72 73 74
	.set_config	= s3c_gpio_setcfg_s3c64xx_4bit,
	.set_pull	= s3c_gpio_setpull_updown,
	.get_pull	= s3c_gpio_getpull_updown,
};

75
static int s3c64xx_gpio2int_gpm(struct gpio_chip *chip, unsigned pin)
76 77 78 79
{
	return pin < 5 ? IRQ_EINT(23) + pin : -ENXIO;
}

B
Ben Dooks 已提交
80 81 82
static struct s3c_gpio_chip gpio_4bit[] = {
	{
		.base	= S3C64XX_GPA_BASE,
83
		.config	= &gpio_4bit_cfg_eint0111,
B
Ben Dooks 已提交
84 85 86 87 88 89 90
		.chip	= {
			.base	= S3C64XX_GPA(0),
			.ngpio	= S3C64XX_GPIO_A_NR,
			.label	= "GPA",
		},
	}, {
		.base	= S3C64XX_GPB_BASE,
91
		.config	= &gpio_4bit_cfg_eint0111,
B
Ben Dooks 已提交
92 93 94 95 96 97 98
		.chip	= {
			.base	= S3C64XX_GPB(0),
			.ngpio	= S3C64XX_GPIO_B_NR,
			.label	= "GPB",
		},
	}, {
		.base	= S3C64XX_GPC_BASE,
99
		.config	= &gpio_4bit_cfg_eint0111,
B
Ben Dooks 已提交
100 101 102 103 104 105 106
		.chip	= {
			.base	= S3C64XX_GPC(0),
			.ngpio	= S3C64XX_GPIO_C_NR,
			.label	= "GPC",
		},
	}, {
		.base	= S3C64XX_GPD_BASE,
107
		.config	= &gpio_4bit_cfg_eint0111,
B
Ben Dooks 已提交
108 109 110 111 112 113 114
		.chip	= {
			.base	= S3C64XX_GPD(0),
			.ngpio	= S3C64XX_GPIO_D_NR,
			.label	= "GPD",
		},
	}, {
		.base	= S3C64XX_GPE_BASE,
115
		.config	= &gpio_4bit_cfg_noint,
B
Ben Dooks 已提交
116 117 118 119 120 121 122
		.chip	= {
			.base	= S3C64XX_GPE(0),
			.ngpio	= S3C64XX_GPIO_E_NR,
			.label	= "GPE",
		},
	}, {
		.base	= S3C64XX_GPG_BASE,
123
		.config	= &gpio_4bit_cfg_eint0111,
B
Ben Dooks 已提交
124 125 126 127 128 129 130
		.chip	= {
			.base	= S3C64XX_GPG(0),
			.ngpio	= S3C64XX_GPIO_G_NR,
			.label	= "GPG",
		},
	}, {
		.base	= S3C64XX_GPM_BASE,
131
		.config	= &gpio_4bit_cfg_eint0011,
B
Ben Dooks 已提交
132 133 134 135
		.chip	= {
			.base	= S3C64XX_GPM(0),
			.ngpio	= S3C64XX_GPIO_M_NR,
			.label	= "GPM",
136
			.to_irq = s3c64xx_gpio2int_gpm,
B
Ben Dooks 已提交
137 138 139 140
		},
	},
};

141
static int s3c64xx_gpio2int_gpl(struct gpio_chip *chip, unsigned pin)
142 143 144 145
{
	return pin >= 8 ? IRQ_EINT(16) + pin - 8 : -ENXIO;
}

B
Ben Dooks 已提交
146 147 148
static struct s3c_gpio_chip gpio_4bit2[] = {
	{
		.base	= S3C64XX_GPH_BASE + 0x4,
149
		.config	= &gpio_4bit_cfg_eint0111,
B
Ben Dooks 已提交
150 151 152 153 154 155 156
		.chip	= {
			.base	= S3C64XX_GPH(0),
			.ngpio	= S3C64XX_GPIO_H_NR,
			.label	= "GPH",
		},
	}, {
		.base	= S3C64XX_GPK_BASE + 0x4,
157
		.config	= &gpio_4bit_cfg_noint,
B
Ben Dooks 已提交
158 159 160 161 162 163 164
		.chip	= {
			.base	= S3C64XX_GPK(0),
			.ngpio	= S3C64XX_GPIO_K_NR,
			.label	= "GPK",
		},
	}, {
		.base	= S3C64XX_GPL_BASE + 0x4,
165
		.config	= &gpio_4bit_cfg_eint0011,
B
Ben Dooks 已提交
166 167 168 169
		.chip	= {
			.base	= S3C64XX_GPL(0),
			.ngpio	= S3C64XX_GPIO_L_NR,
			.label	= "GPL",
170
			.to_irq = s3c64xx_gpio2int_gpl,
B
Ben Dooks 已提交
171 172 173 174
		},
	},
};

175 176
static struct s3c_gpio_cfg gpio_2bit_cfg_noint = {
	.set_config	= s3c_gpio_setcfg_s3c24xx,
177
	.get_config	= s3c_gpio_getcfg_s3c24xx,
178 179 180 181 182 183 184
	.set_pull	= s3c_gpio_setpull_updown,
	.get_pull	= s3c_gpio_getpull_updown,
};

static struct s3c_gpio_cfg gpio_2bit_cfg_eint10 = {
	.cfg_eint	= 2,
	.set_config	= s3c_gpio_setcfg_s3c24xx,
185
	.get_config	= s3c_gpio_getcfg_s3c24xx,
186 187 188 189 190 191 192
	.set_pull	= s3c_gpio_setpull_updown,
	.get_pull	= s3c_gpio_getpull_updown,
};

static struct s3c_gpio_cfg gpio_2bit_cfg_eint11 = {
	.cfg_eint	= 3,
	.set_config	= s3c_gpio_setcfg_s3c24xx,
193
	.get_config	= s3c_gpio_getcfg_s3c24xx,
194 195 196 197
	.set_pull	= s3c_gpio_setpull_updown,
	.get_pull	= s3c_gpio_getpull_updown,
};

B
Ben Dooks 已提交
198 199 200
static struct s3c_gpio_chip gpio_2bit[] = {
	{
		.base	= S3C64XX_GPF_BASE,
201
		.config	= &gpio_2bit_cfg_eint11,
B
Ben Dooks 已提交
202 203 204 205 206 207 208
		.chip	= {
			.base	= S3C64XX_GPF(0),
			.ngpio	= S3C64XX_GPIO_F_NR,
			.label	= "GPF",
		},
	}, {
		.base	= S3C64XX_GPI_BASE,
209
		.config	= &gpio_2bit_cfg_noint,
B
Ben Dooks 已提交
210 211 212 213 214 215 216
		.chip	= {
			.base	= S3C64XX_GPI(0),
			.ngpio	= S3C64XX_GPIO_I_NR,
			.label	= "GPI",
		},
	}, {
		.base	= S3C64XX_GPJ_BASE,
217
		.config	= &gpio_2bit_cfg_noint,
B
Ben Dooks 已提交
218 219 220 221 222 223 224
		.chip	= {
			.base	= S3C64XX_GPJ(0),
			.ngpio	= S3C64XX_GPIO_J_NR,
			.label	= "GPJ",
		},
	}, {
		.base	= S3C64XX_GPN_BASE,
225
		.irq_base = IRQ_EINT(0),
226
		.config	= &gpio_2bit_cfg_eint10,
B
Ben Dooks 已提交
227 228 229 230
		.chip	= {
			.base	= S3C64XX_GPN(0),
			.ngpio	= S3C64XX_GPIO_N_NR,
			.label	= "GPN",
231
			.to_irq = samsung_gpiolib_to_irq,
B
Ben Dooks 已提交
232 233 234
		},
	}, {
		.base	= S3C64XX_GPO_BASE,
235
		.config	= &gpio_2bit_cfg_eint11,
B
Ben Dooks 已提交
236 237 238 239 240 241 242
		.chip	= {
			.base	= S3C64XX_GPO(0),
			.ngpio	= S3C64XX_GPIO_O_NR,
			.label	= "GPO",
		},
	}, {
		.base	= S3C64XX_GPP_BASE,
243
		.config	= &gpio_2bit_cfg_eint11,
B
Ben Dooks 已提交
244 245 246 247 248 249 250
		.chip	= {
			.base	= S3C64XX_GPP(0),
			.ngpio	= S3C64XX_GPIO_P_NR,
			.label	= "GPP",
		},
	}, {
		.base	= S3C64XX_GPQ_BASE,
251
		.config	= &gpio_2bit_cfg_eint11,
B
Ben Dooks 已提交
252 253 254 255 256 257 258 259
		.chip	= {
			.base	= S3C64XX_GPQ(0),
			.ngpio	= S3C64XX_GPIO_Q_NR,
			.label	= "GPQ",
		},
	},
};

260 261 262
static __init void s3c64xx_gpiolib_add_2bit(struct s3c_gpio_chip *chip)
{
	chip->pm = __gpio_pm(&s3c_gpio_pm_2bit);
B
Ben Dooks 已提交
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
}

static __init void s3c64xx_gpiolib_add(struct s3c_gpio_chip *chips,
				       int nr_chips,
				       void (*fn)(struct s3c_gpio_chip *))
{
	for (; nr_chips > 0; nr_chips--, chips++) {
		if (fn)
			(fn)(chips);
		s3c_gpiolib_add(chips);
	}
}

static __init int s3c64xx_gpiolib_init(void)
{
	s3c64xx_gpiolib_add(gpio_4bit, ARRAY_SIZE(gpio_4bit),
279
			    samsung_gpiolib_add_4bit);
B
Ben Dooks 已提交
280 281

	s3c64xx_gpiolib_add(gpio_4bit2, ARRAY_SIZE(gpio_4bit2),
282
			    samsung_gpiolib_add_4bit2);
B
Ben Dooks 已提交
283

284 285
	s3c64xx_gpiolib_add(gpio_2bit, ARRAY_SIZE(gpio_2bit),
			    s3c64xx_gpiolib_add_2bit);
B
Ben Dooks 已提交
286 287 288 289

	return 0;
}

290
core_initcall(s3c64xx_gpiolib_init);