123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /*
- * 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>
- #include <linux/init.h>
- #include <linux/device.h>
- #include <asm/gpio.h>
- #include <asm/pinmux.h>
- #include <asm/mcfgpio.h>
- #define MCF_CHIP(chip) container_of(chip, struct mcf_gpio_chip, gpio_chip)
- int mcf_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
- {
- unsigned long flags;
- MCFGPIO_PORTTYPE dir;
- struct mcf_gpio_chip *mcf_chip = MCF_CHIP(chip);
- local_irq_save(flags);
- dir = mcfgpio_read(mcf_chip->pddr);
- dir &= ~mcfgpio_bit(chip->base + offset);
- mcfgpio_write(dir, mcf_chip->pddr);
- local_irq_restore(flags);
- return 0;
- }
- int mcf_gpio_get_value(struct gpio_chip *chip, unsigned offset)
- {
- struct mcf_gpio_chip *mcf_chip = MCF_CHIP(chip);
- return mcfgpio_read(mcf_chip->ppdr) & mcfgpio_bit(chip->base + offset);
- }
- int mcf_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
- int value)
- {
- unsigned long flags;
- MCFGPIO_PORTTYPE data;
- struct mcf_gpio_chip *mcf_chip = MCF_CHIP(chip);
- local_irq_save(flags);
- /* write the value to the output latch */
- data = mcfgpio_read(mcf_chip->podr);
- if (value)
- data |= mcfgpio_bit(chip->base + offset);
- else
- data &= ~mcfgpio_bit(chip->base + offset);
- mcfgpio_write(data, mcf_chip->podr);
- /* now set the direction to output */
- data = mcfgpio_read(mcf_chip->pddr);
- data |= mcfgpio_bit(chip->base + offset);
- mcfgpio_write(data, mcf_chip->pddr);
- local_irq_restore(flags);
- return 0;
- }
- void mcf_gpio_set_value(struct gpio_chip *chip, unsigned offset, int value)
- {
- struct mcf_gpio_chip *mcf_chip = MCF_CHIP(chip);
- unsigned long flags;
- MCFGPIO_PORTTYPE data;
- local_irq_save(flags);
- data = mcfgpio_read(mcf_chip->podr);
- if (value)
- data |= mcfgpio_bit(chip->base + offset);
- else
- data &= ~mcfgpio_bit(chip->base + offset);
- mcfgpio_write(data, mcf_chip->podr);
- local_irq_restore(flags);
- }
- void mcf_gpio_set_value_fast(struct gpio_chip *chip, unsigned offset, int value)
- {
- struct mcf_gpio_chip *mcf_chip = MCF_CHIP(chip);
- if (value)
- mcfgpio_write(mcfgpio_bit(chip->base + offset), mcf_chip->setr);
- else
- mcfgpio_write(~mcfgpio_bit(chip->base + offset), mcf_chip->clrr);
- }
- int mcf_gpio_request(struct gpio_chip *chip, unsigned offset)
- {
- struct mcf_gpio_chip *mcf_chip = MCF_CHIP(chip);
- return mcf_chip->gpio_to_pinmux ?
- mcf_pinmux_request(mcf_chip->gpio_to_pinmux[offset], 0) : 0;
- }
- void mcf_gpio_free(struct gpio_chip *chip, unsigned offset)
- {
- struct mcf_gpio_chip *mcf_chip = MCF_CHIP(chip);
- mcf_gpio_direction_input(chip, offset);
- if (mcf_chip->gpio_to_pinmux)
- mcf_pinmux_release(mcf_chip->gpio_to_pinmux[offset], 0);
- }
- struct bus_type mcf_gpio_subsys = {
- .name = "gpio",
- .dev_name = "gpio",
- };
- static int __init mcf_gpio_sysinit(void)
- {
- return subsys_system_register(&mcf_gpio_subsys, NULL);
- }
- core_initcall(mcf_gpio_sysinit);
|