Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 2 | /* |
Huacai Chen | cbfb3ea | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 3 | * Loongson-2F/3A/3B GPIO Support |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 4 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 5 | * Copyright (c) 2008 Richard Liu, STMicroelectronics <richard.liu@st.com> |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 6 | * Copyright (c) 2008-2010 Arnaud Patard <apatard@mandriva.com> |
Huacai Chen | cbfb3ea | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 7 | * Copyright (c) 2013 Hongbing Hu <huhb@lemote.com> |
| 8 | * Copyright (c) 2014 Huacai Chen <chenhc@lemote.com> |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/spinlock.h> |
| 15 | #include <linux/err.h> |
Linus Walleij | f105edf | 2018-04-13 10:28:21 +0200 | [diff] [blame] | 16 | #include <linux/gpio/driver.h> |
Linus Walleij | 70e703e | 2018-04-13 12:05:36 +0200 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
Linus Walleij | a4e5db8 | 2018-04-13 12:20:24 +0200 | [diff] [blame] | 18 | #include <linux/bitops.h> |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 19 | #include <asm/types.h> |
| 20 | #include <loongson.h> |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 21 | |
| 22 | #define STLS2F_N_GPIO 4 |
Huacai Chen | cbfb3ea | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 23 | #define STLS3A_N_GPIO 16 |
| 24 | |
Jiaxun Yang | 268a2d6 | 2019-10-20 22:43:13 +0800 | [diff] [blame] | 25 | #ifdef CONFIG_CPU_LOONGSON64 |
Huacai Chen | cbfb3ea | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 26 | #define LOONGSON_N_GPIO STLS3A_N_GPIO |
| 27 | #else |
| 28 | #define LOONGSON_N_GPIO STLS2F_N_GPIO |
| 29 | #endif |
| 30 | |
Linus Walleij | a4e5db8 | 2018-04-13 12:20:24 +0200 | [diff] [blame] | 31 | /* |
| 32 | * Offset into the register where we read lines, we write them from offset 0. |
| 33 | * This offset is the only thing that stand between us and using |
| 34 | * GPIO_GENERIC. |
| 35 | */ |
Huacai Chen | cbfb3ea | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 36 | #define LOONGSON_GPIO_IN_OFFSET 16 |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 37 | |
| 38 | static DEFINE_SPINLOCK(gpio_lock); |
| 39 | |
Huacai Chen | cbfb3ea | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 40 | static int loongson_gpio_get_value(struct gpio_chip *chip, unsigned gpio) |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 41 | { |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 42 | u32 val; |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 43 | |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 44 | spin_lock(&gpio_lock); |
| 45 | val = LOONGSON_GPIODATA; |
| 46 | spin_unlock(&gpio_lock); |
| 47 | |
Linus Walleij | a4e5db8 | 2018-04-13 12:20:24 +0200 | [diff] [blame] | 48 | return !!(val & BIT(gpio + LOONGSON_GPIO_IN_OFFSET)); |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 49 | } |
| 50 | |
Huacai Chen | cbfb3ea | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 51 | static void loongson_gpio_set_value(struct gpio_chip *chip, |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 52 | unsigned gpio, int value) |
| 53 | { |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 54 | u32 val; |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 55 | |
| 56 | spin_lock(&gpio_lock); |
| 57 | val = LOONGSON_GPIODATA; |
| 58 | if (value) |
Linus Walleij | a4e5db8 | 2018-04-13 12:20:24 +0200 | [diff] [blame] | 59 | val |= BIT(gpio); |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 60 | else |
Linus Walleij | a4e5db8 | 2018-04-13 12:20:24 +0200 | [diff] [blame] | 61 | val &= ~BIT(gpio); |
Huacai Chen | df5dade | 2015-04-01 10:20:07 +0800 | [diff] [blame] | 62 | LOONGSON_GPIODATA = val; |
| 63 | spin_unlock(&gpio_lock); |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 64 | } |
| 65 | |
Linus Walleij | f105edf | 2018-04-13 10:28:21 +0200 | [diff] [blame] | 66 | static int loongson_gpio_direction_input(struct gpio_chip *chip, unsigned gpio) |
| 67 | { |
| 68 | u32 temp; |
Linus Walleij | f105edf | 2018-04-13 10:28:21 +0200 | [diff] [blame] | 69 | |
| 70 | spin_lock(&gpio_lock); |
Linus Walleij | f105edf | 2018-04-13 10:28:21 +0200 | [diff] [blame] | 71 | temp = LOONGSON_GPIOIE; |
Linus Walleij | a4e5db8 | 2018-04-13 12:20:24 +0200 | [diff] [blame] | 72 | temp |= BIT(gpio); |
Linus Walleij | f105edf | 2018-04-13 10:28:21 +0200 | [diff] [blame] | 73 | LOONGSON_GPIOIE = temp; |
| 74 | spin_unlock(&gpio_lock); |
| 75 | |
| 76 | return 0; |
| 77 | } |
| 78 | |
| 79 | static int loongson_gpio_direction_output(struct gpio_chip *chip, |
| 80 | unsigned gpio, int level) |
| 81 | { |
| 82 | u32 temp; |
Linus Walleij | f105edf | 2018-04-13 10:28:21 +0200 | [diff] [blame] | 83 | |
| 84 | loongson_gpio_set_value(chip, gpio, level); |
| 85 | spin_lock(&gpio_lock); |
Linus Walleij | f105edf | 2018-04-13 10:28:21 +0200 | [diff] [blame] | 86 | temp = LOONGSON_GPIOIE; |
Linus Walleij | a4e5db8 | 2018-04-13 12:20:24 +0200 | [diff] [blame] | 87 | temp &= ~BIT(gpio); |
Linus Walleij | f105edf | 2018-04-13 10:28:21 +0200 | [diff] [blame] | 88 | LOONGSON_GPIOIE = temp; |
| 89 | spin_unlock(&gpio_lock); |
| 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | |
Linus Walleij | 70e703e | 2018-04-13 12:05:36 +0200 | [diff] [blame] | 94 | static int loongson_gpio_probe(struct platform_device *pdev) |
| 95 | { |
| 96 | struct gpio_chip *gc; |
| 97 | struct device *dev = &pdev->dev; |
| 98 | |
| 99 | gc = devm_kzalloc(dev, sizeof(*gc), GFP_KERNEL); |
| 100 | if (!gc) |
| 101 | return -ENOMEM; |
| 102 | |
| 103 | gc->label = "loongson-gpio-chip"; |
| 104 | gc->base = 0; |
| 105 | gc->ngpio = LOONGSON_N_GPIO; |
| 106 | gc->get = loongson_gpio_get_value; |
| 107 | gc->set = loongson_gpio_set_value; |
| 108 | gc->direction_input = loongson_gpio_direction_input; |
| 109 | gc->direction_output = loongson_gpio_direction_output; |
| 110 | |
| 111 | return gpiochip_add_data(gc, NULL); |
| 112 | } |
| 113 | |
| 114 | static struct platform_driver loongson_gpio_driver = { |
| 115 | .driver = { |
| 116 | .name = "loongson-gpio", |
| 117 | }, |
| 118 | .probe = loongson_gpio_probe, |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 119 | }; |
| 120 | |
Huacai Chen | cbfb3ea | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 121 | static int __init loongson_gpio_setup(void) |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 122 | { |
Linus Walleij | 70e703e | 2018-04-13 12:05:36 +0200 | [diff] [blame] | 123 | struct platform_device *pdev; |
| 124 | int ret; |
| 125 | |
| 126 | ret = platform_driver_register(&loongson_gpio_driver); |
| 127 | if (ret) { |
| 128 | pr_err("error registering loongson GPIO driver\n"); |
| 129 | return ret; |
| 130 | } |
| 131 | |
| 132 | pdev = platform_device_register_simple("loongson-gpio", -1, NULL, 0); |
| 133 | return PTR_ERR_OR_ZERO(pdev); |
Arnaud Patard | c197da9 | 2010-04-29 11:58:54 +0200 | [diff] [blame] | 134 | } |
Huacai Chen | cbfb3ea | 2015-04-01 10:20:09 +0800 | [diff] [blame] | 135 | postcore_initcall(loongson_gpio_setup); |