blob: 92c4fe7b26773c9e7bf6eb8278a263b9b6e596d6 [file] [log] [blame]
Arnaud Patardc197da92010-04-29 11:58:54 +02001/*
Huacai Chencbfb3ea72015-04-01 10:20:09 +08002 * Loongson-2F/3A/3B GPIO Support
Arnaud Patardc197da92010-04-29 11:58:54 +02003 *
Ralf Baechle70342282013-01-22 12:59:30 +01004 * Copyright (c) 2008 Richard Liu, STMicroelectronics <richard.liu@st.com>
Arnaud Patardc197da92010-04-29 11:58:54 +02005 * Copyright (c) 2008-2010 Arnaud Patard <apatard@mandriva.com>
Huacai Chencbfb3ea72015-04-01 10:20:09 +08006 * Copyright (c) 2013 Hongbing Hu <huhb@lemote.com>
7 * Copyright (c) 2014 Huacai Chen <chenhc@lemote.com>
Arnaud Patardc197da92010-04-29 11:58:54 +02008 *
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 Chencbfb3ea72015-04-01 10:20:09 +080025#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 Patardc197da92010-04-29 11:58:54 +020034
35static DEFINE_SPINLOCK(gpio_lock);
36
Huacai Chencbfb3ea72015-04-01 10:20:09 +080037static int loongson_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
Arnaud Patardc197da92010-04-29 11:58:54 +020038{
39 u32 temp;
40 u32 mask;
41
Arnaud Patardc197da92010-04-29 11:58:54 +020042 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 Chencbfb3ea72015-04-01 10:20:09 +080052static int loongson_gpio_direction_output(struct gpio_chip *chip,
Arnaud Patardc197da92010-04-29 11:58:54 +020053 unsigned gpio, int level)
54{
55 u32 temp;
56 u32 mask;
57
Arnaud Patardc197da92010-04-29 11:58:54 +020058 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 Chencbfb3ea72015-04-01 10:20:09 +080069static int loongson_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
Arnaud Patardc197da92010-04-29 11:58:54 +020070{
Huacai Chendf5dade2015-04-01 10:20:07 +080071 u32 val;
72 u32 mask;
73
Huacai Chencbfb3ea72015-04-01 10:20:09 +080074 mask = 1 << (gpio + LOONGSON_GPIO_IN_OFFSET);
Huacai Chendf5dade2015-04-01 10:20:07 +080075 spin_lock(&gpio_lock);
76 val = LOONGSON_GPIODATA;
77 spin_unlock(&gpio_lock);
78
79 return (val & mask) != 0;
Arnaud Patardc197da92010-04-29 11:58:54 +020080}
81
Huacai Chencbfb3ea72015-04-01 10:20:09 +080082static void loongson_gpio_set_value(struct gpio_chip *chip,
Arnaud Patardc197da92010-04-29 11:58:54 +020083 unsigned gpio, int value)
84{
Huacai Chendf5dade2015-04-01 10:20:07 +080085 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 Patardc197da92010-04-29 11:58:54 +020098}
99
Huacai Chencbfb3ea72015-04-01 10:20:09 +0800100static 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 Baechle70342282013-01-22 12:59:30 +0100106 .base = 0,
Huacai Chencbfb3ea72015-04-01 10:20:09 +0800107 .ngpio = LOONGSON_N_GPIO,
Huacai Chendf5dade2015-04-01 10:20:07 +0800108 .can_sleep = false,
Arnaud Patardc197da92010-04-29 11:58:54 +0200109};
110
Huacai Chencbfb3ea72015-04-01 10:20:09 +0800111static int __init loongson_gpio_setup(void)
Arnaud Patardc197da92010-04-29 11:58:54 +0200112{
Linus Walleij4eab22e2015-12-08 10:41:44 +0100113 return gpiochip_add_data(&loongson_chip, NULL);
Arnaud Patardc197da92010-04-29 11:58:54 +0200114}
Huacai Chencbfb3ea72015-04-01 10:20:09 +0800115postcore_initcall(loongson_gpio_setup);