Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 1 | /* |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 2 | * Loongson-2F/3A/3B GPIO Support |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 3 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 4 | * Copyright (c) 2008 Richard Liu, STMicroelectronics <richard.liu@st.com> |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 5 | * Copyright (c) 2008-2010 Arnaud Patard <apatard@mandriva.com> |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 6 | * Copyright (c) 2013 Hongbing Hu <huhb@lemote.com> |
| 7 | * Copyright (c) 2014 Huacai Chen <chenhc@lemote.com> |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/spinlock.h> |
| 19 | #include <linux/err.h> |
| 20 | #include <asm/types.h> |
| 21 | #include <loongson.h> |
| 22 | #include <linux/gpio.h> |
| 23 | |
| 24 | #define STLS2F_N_GPIO 4 |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 25 | #define STLS3A_N_GPIO 16 |
| 26 | |
| 27 | #ifdef CONFIG_CPU_LOONGSON3 |
| 28 | #define LOONGSON_N_GPIO STLS3A_N_GPIO |
| 29 | #else |
| 30 | #define LOONGSON_N_GPIO STLS2F_N_GPIO |
| 31 | #endif |
| 32 | |
| 33 | #define LOONGSON_GPIO_IN_OFFSET 16 |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 34 | |
| 35 | static DEFINE_SPINLOCK(gpio_lock); |
| 36 | |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 37 | static int loongson_gpio_direction_input(struct gpio_chip *chip, unsigned gpio) |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 38 | { |
| 39 | u32 temp; |
| 40 | u32 mask; |
| 41 | |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 42 | spin_lock(&gpio_lock); |
| 43 | mask = 1 << gpio; |
| 44 | temp = LOONGSON_GPIOIE; |
| 45 | temp |= mask; |
| 46 | LOONGSON_GPIOIE = temp; |
| 47 | spin_unlock(&gpio_lock); |
| 48 | |
| 49 | return 0; |
| 50 | } |
| 51 | |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 52 | static int loongson_gpio_direction_output(struct gpio_chip *chip, |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 53 | unsigned gpio, int level) |
| 54 | { |
| 55 | u32 temp; |
| 56 | u32 mask; |
| 57 | |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 58 | gpio_set_value(gpio, level); |
| 59 | spin_lock(&gpio_lock); |
| 60 | mask = 1 << gpio; |
| 61 | temp = LOONGSON_GPIOIE; |
| 62 | temp &= (~mask); |
| 63 | LOONGSON_GPIOIE = temp; |
| 64 | spin_unlock(&gpio_lock); |
| 65 | |
| 66 | return 0; |
| 67 | } |
| 68 | |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 69 | static int loongson_gpio_get_value(struct gpio_chip *chip, unsigned gpio) |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 70 | { |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 71 | u32 val; |
| 72 | u32 mask; |
| 73 | |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 74 | mask = 1 << (gpio + LOONGSON_GPIO_IN_OFFSET); |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 75 | spin_lock(&gpio_lock); |
| 76 | val = LOONGSON_GPIODATA; |
| 77 | spin_unlock(&gpio_lock); |
| 78 | |
| 79 | return (val & mask) != 0; |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 80 | } |
| 81 | |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 82 | static void loongson_gpio_set_value(struct gpio_chip *chip, |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 83 | unsigned gpio, int value) |
| 84 | { |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 85 | u32 val; |
| 86 | u32 mask; |
| 87 | |
| 88 | mask = 1 << gpio; |
| 89 | |
| 90 | spin_lock(&gpio_lock); |
| 91 | val = LOONGSON_GPIODATA; |
| 92 | if (value) |
| 93 | val |= mask; |
| 94 | else |
| 95 | val &= (~mask); |
| 96 | LOONGSON_GPIODATA = val; |
| 97 | spin_unlock(&gpio_lock); |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 98 | } |
| 99 | |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 100 | static struct gpio_chip loongson_chip = { |
| 101 | .label = "Loongson-gpio-chip", |
| 102 | .direction_input = loongson_gpio_direction_input, |
| 103 | .get = loongson_gpio_get_value, |
| 104 | .direction_output = loongson_gpio_direction_output, |
| 105 | .set = loongson_gpio_set_value, |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 106 | .base = 0, |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 107 | .ngpio = LOONGSON_N_GPIO, |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 108 | .can_sleep = false, |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 109 | }; |
| 110 | |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 111 | static int __init loongson_gpio_setup(void) |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 112 | { |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 113 | return gpiochip_add(&loongson_chip); |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 114 | } |
Huacai Chen | cbfb3ea7 | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 115 | postcore_initcall(loongson_gpio_setup); |