Release 4.18 drivers/gpio/gpio-loongson.c
/*
* Loongson-2F/3A/3B GPIO Support
*
* Copyright (c) 2008 Richard Liu, STMicroelectronics <richard.liu@st.com>
* Copyright (c) 2008-2010 Arnaud Patard <apatard@mandriva.com>
* Copyright (c) 2013 Hongbing Hu <huhb@lemote.com>
* Copyright (c) 2014 Huacai Chen <chenhc@lemote.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; either version 2 of the License, or
* (at your option) any later version.
*/
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/err.h>
#include <linux/gpio/driver.h>
#include <linux/platform_device.h>
#include <linux/bitops.h>
#include <asm/types.h>
#include <loongson.h>
#define STLS2F_N_GPIO 4
#define STLS3A_N_GPIO 16
#ifdef CONFIG_CPU_LOONGSON3
#define LOONGSON_N_GPIO STLS3A_N_GPIO
#else
#define LOONGSON_N_GPIO STLS2F_N_GPIO
#endif
/*
* Offset into the register where we read lines, we write them from offset 0.
* This offset is the only thing that stand between us and using
* GPIO_GENERIC.
*/
#define LOONGSON_GPIO_IN_OFFSET 16
static DEFINE_SPINLOCK(gpio_lock);
static int loongson_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
{
u32 val;
spin_lock(&gpio_lock);
val = LOONGSON_GPIODATA;
spin_unlock(&gpio_lock);
return !!(val & BIT(gpio + LOONGSON_GPIO_IN_OFFSET));
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Arnaud Patard | 26 | 55.32% | 1 | 33.33% |
Linus Walleij | 21 | 44.68% | 2 | 66.67% |
Total | 47 | 100.00% | 3 | 100.00% |
static void loongson_gpio_set_value(struct gpio_chip *chip,
unsigned gpio, int value)
{
u32 val;
spin_lock(&gpio_lock);
val = LOONGSON_GPIODATA;
if (value)
val |= BIT(gpio);
else
val &= ~BIT(gpio);
LOONGSON_GPIODATA = val;
spin_unlock(&gpio_lock);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Arnaud Patard | 36 | 60.00% | 1 | 33.33% |
Linus Walleij | 24 | 40.00% | 2 | 66.67% |
Total | 60 | 100.00% | 3 | 100.00% |
static int loongson_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
{
u32 temp;
spin_lock(&gpio_lock);
temp = LOONGSON_GPIOIE;
temp |= BIT(gpio);
LOONGSON_GPIOIE = temp;
spin_unlock(&gpio_lock);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Walleij | 20 | 42.55% | 2 | 50.00% |
Arnaud Patard | 15 | 31.91% | 1 | 25.00% |
Huacai Chen | 12 | 25.53% | 1 | 25.00% |
Total | 47 | 100.00% | 4 | 100.00% |
static int loongson_gpio_direction_output(struct gpio_chip *chip,
unsigned gpio, int level)
{
u32 temp;
loongson_gpio_set_value(chip, gpio, level);
spin_lock(&gpio_lock);
temp = LOONGSON_GPIOIE;
temp &= ~BIT(gpio);
LOONGSON_GPIOIE = temp;
spin_unlock(&gpio_lock);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Walleij | 24 | 40.00% | 2 | 50.00% |
Huacai Chen | 19 | 31.67% | 1 | 25.00% |
Arnaud Patard | 17 | 28.33% | 1 | 25.00% |
Total | 60 | 100.00% | 4 | 100.00% |
static int loongson_gpio_probe(struct platform_device *pdev)
{
struct gpio_chip *gc;
struct device *dev = &pdev->dev;
gc = devm_kzalloc(dev, sizeof(*gc), GFP_KERNEL);
if (!gc)
return -ENOMEM;
gc->label = "loongson-gpio-chip";
gc->base = 0;
gc->ngpio = LOONGSON_N_GPIO;
gc->get = loongson_gpio_get_value;
gc->set = loongson_gpio_set_value;
gc->direction_input = loongson_gpio_direction_input;
gc->direction_output = loongson_gpio_direction_output;
return gpiochip_add_data(gc, NULL);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Walleij | 87 | 87.00% | 1 | 33.33% |
Arnaud Patard | 11 | 11.00% | 1 | 33.33% |
Huacai Chen | 2 | 2.00% | 1 | 33.33% |
Total | 100 | 100.00% | 3 | 100.00% |
static struct platform_driver loongson_gpio_driver = {
.driver = {
.name = "loongson-gpio",
},
.probe = loongson_gpio_probe,
};
static int __init loongson_gpio_setup(void)
{
struct platform_device *pdev;
int ret;
ret = platform_driver_register(&loongson_gpio_driver);
if (ret) {
pr_err("error registering loongson GPIO driver\n");
return ret;
}
pdev = platform_device_register_simple("loongson-gpio", -1, NULL, 0);
return PTR_ERR_OR_ZERO(pdev);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Walleij | 46 | 77.97% | 2 | 50.00% |
Arnaud Patard | 12 | 20.34% | 1 | 25.00% |
Huacai Chen | 1 | 1.69% | 1 | 25.00% |
Total | 59 | 100.00% | 4 | 100.00% |
postcore_initcall(loongson_gpio_setup);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Walleij | 245 | 52.69% | 4 | 57.14% |
Arnaud Patard | 160 | 34.41% | 1 | 14.29% |
Huacai Chen | 60 | 12.90% | 2 | 28.57% |
Total | 465 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.