gpio.c 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Coldfire generic GPIO support.
 *
 * (C) Copyright 2009, Steven King <sfking@fdwdc.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; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <linux/kernel.h>
17
#include <linux/module.h>
18
#include <linux/init.h>
19
#include <linux/device.h>
20

21 22 23
#include <linux/io.h>
#include <asm/coldfire.h>
#include <asm/mcfsim.h>
24 25
#include <asm/mcfgpio.h>

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 52 53 54 55
int __mcfgpio_get_value(unsigned gpio)
{
	return mcfgpio_read(__mcfgpio_ppdr(gpio)) & mcfgpio_bit(gpio);
}
EXPORT_SYMBOL(__mcfgpio_get_value);

void __mcfgpio_set_value(unsigned gpio, int value)
{
	if (gpio < MCFGPIO_SCR_START) {
		unsigned long flags;
		MCFGPIO_PORTTYPE data;

		local_irq_save(flags);
		data = mcfgpio_read(__mcfgpio_podr(gpio));
		if (value)
			data |= mcfgpio_bit(gpio);
		else
			data &= ~mcfgpio_bit(gpio);
		mcfgpio_write(data, __mcfgpio_podr(gpio));
		local_irq_restore(flags);
	} else {
		if (value)
			mcfgpio_write(mcfgpio_bit(gpio),
					MCFGPIO_SETR_PORT(gpio));
		else
			mcfgpio_write(~mcfgpio_bit(gpio),
					MCFGPIO_CLRR_PORT(gpio));
	}
}
EXPORT_SYMBOL(__mcfgpio_set_value);
56

57
int __mcfgpio_direction_input(unsigned gpio)
58 59 60 61 62
{
	unsigned long flags;
	MCFGPIO_PORTTYPE dir;

	local_irq_save(flags);
63 64 65
	dir = mcfgpio_read(__mcfgpio_pddr(gpio));
	dir &= ~mcfgpio_bit(gpio);
	mcfgpio_write(dir, __mcfgpio_pddr(gpio));
66 67 68 69
	local_irq_restore(flags);

	return 0;
}
70
EXPORT_SYMBOL(__mcfgpio_direction_input);
71

72
int __mcfgpio_direction_output(unsigned gpio, int value)
73 74 75 76 77
{
	unsigned long flags;
	MCFGPIO_PORTTYPE data;

	local_irq_save(flags);
78
	data = mcfgpio_read(__mcfgpio_pddr(gpio));
79
	data |= mcfgpio_bit(gpio);
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
	mcfgpio_write(data, __mcfgpio_pddr(gpio));

	/* now set the data to output */
	if (gpio < MCFGPIO_SCR_START) {
		data = mcfgpio_read(__mcfgpio_podr(gpio));
		if (value)
			data |= mcfgpio_bit(gpio);
		else
			data &= ~mcfgpio_bit(gpio);
		mcfgpio_write(data, __mcfgpio_podr(gpio));
	} else {
		 if (value)
			mcfgpio_write(mcfgpio_bit(gpio),
					MCFGPIO_SETR_PORT(gpio));
		 else
			 mcfgpio_write(~mcfgpio_bit(gpio),
					 MCFGPIO_CLRR_PORT(gpio));
	}
98
	local_irq_restore(flags);
99 100 101
	return 0;
}
EXPORT_SYMBOL(__mcfgpio_direction_output);
102

103 104
int __mcfgpio_request(unsigned gpio)
{
105 106
	return 0;
}
107
EXPORT_SYMBOL(__mcfgpio_request);
108

109
void __mcfgpio_free(unsigned gpio)
110
{
111 112 113
	__mcfgpio_direction_input(gpio);
}
EXPORT_SYMBOL(__mcfgpio_free);
114

115
#ifdef CONFIG_GPIOLIB
116

117
static int mcfgpio_direction_input(struct gpio_chip *chip, unsigned offset)
118 119
{
	return __mcfgpio_direction_input(offset);
120 121
}

122
static int mcfgpio_get_value(struct gpio_chip *chip, unsigned offset)
123
{
124
	return !!__mcfgpio_get_value(offset);
125 126
}

127 128
static int mcfgpio_direction_output(struct gpio_chip *chip, unsigned offset,
				    int value)
129
{
130
	return __mcfgpio_direction_output(offset, value);
131 132
}

133 134
static void mcfgpio_set_value(struct gpio_chip *chip, unsigned offset,
			      int value)
135
{
136 137
	__mcfgpio_set_value(offset, value);
}
138

139
static int mcfgpio_request(struct gpio_chip *chip, unsigned offset)
140 141 142
{
	return __mcfgpio_request(offset);
}
143

144
static void mcfgpio_free(struct gpio_chip *chip, unsigned offset)
145 146
{
	__mcfgpio_free(offset);
147 148
}

149
static int mcfgpio_to_irq(struct gpio_chip *chip, unsigned offset)
150 151 152 153 154 155 156 157 158 159 160
{
#if defined(MCFGPIO_IRQ_MIN)
	if ((offset >= MCFGPIO_IRQ_MIN) && (offset < MCFGPIO_IRQ_MAX))
#else
	if (offset < MCFGPIO_IRQ_MAX)
#endif
		return MCFGPIO_IRQ_VECBASE + offset;
	else
		return -EINVAL;
}

161
static struct bus_type mcfgpio_subsys = {
162 163
	.name		= "gpio",
	.dev_name	= "gpio",
164 165
};

166 167 168 169 170 171 172 173
static struct gpio_chip mcfgpio_chip = {
	.label			= "mcfgpio",
	.request		= mcfgpio_request,
	.free			= mcfgpio_free,
	.direction_input	= mcfgpio_direction_input,
	.direction_output	= mcfgpio_direction_output,
	.get			= mcfgpio_get_value,
	.set			= mcfgpio_set_value,
174
	.to_irq			= mcfgpio_to_irq,
175 176 177
	.base			= 0,
	.ngpio			= MCFGPIO_PIN_MAX,
};
178

179 180
static int __init mcfgpio_sysinit(void)
{
181
	gpiochip_add_data(&mcfgpio_chip, NULL);
182
	return subsys_system_register(&mcfgpio_subsys, NULL);
183 184
}

185 186
core_initcall(mcfgpio_sysinit);
#endif