cregit-Linux how code gets into the kernel

Release 4.14 drivers/gpio/gpio-exar.c

Directory: drivers/gpio
/*
 * GPIO driver for Exar XR17V35X chip
 *
 * Copyright (C) 2015 Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#include <linux/bitops.h>
#include <linux/device.h>
#include <linux/gpio/driver.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/platform_device.h>


#define EXAR_OFFSET_MPIOLVL_LO 0x90

#define EXAR_OFFSET_MPIOSEL_LO 0x93

#define EXAR_OFFSET_MPIOLVL_HI 0x96

#define EXAR_OFFSET_MPIOSEL_HI 0x99


#define DRIVER_NAME "gpio_exar"

static DEFINE_IDA(ida_index);


struct exar_gpio_chip {
	
struct gpio_chip gpio_chip;
	
struct mutex lock;
	
int index;
	
void __iomem *regs;
	
char name[20];
	
unsigned int first_pin;
};


static void exar_update(struct gpio_chip *chip, unsigned int reg, int val, unsigned int offset) { struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip); int temp; mutex_lock(&exar_gpio->lock); temp = readb(exar_gpio->regs + reg); temp &= ~BIT(offset); if (val) temp |= BIT(offset); writeb(temp, exar_gpio->regs + reg); mutex_unlock(&exar_gpio->lock); }

Contributors

PersonTokensPropCommitsCommitProp
Sudip Mukherjee92100.00%1100.00%
Total92100.00%1100.00%


static int exar_set_direction(struct gpio_chip *chip, int direction, unsigned int offset) { struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip); unsigned int addr = (offset + exar_gpio->first_pin) / 8 ? EXAR_OFFSET_MPIOSEL_HI : EXAR_OFFSET_MPIOSEL_LO; unsigned int bit = (offset + exar_gpio->first_pin) % 8; exar_update(chip, addr, direction, bit); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Sudip Mukherjee4155.41%150.00%
Jan Kiszka3344.59%150.00%
Total74100.00%2100.00%


static int exar_get(struct gpio_chip *chip, unsigned int reg) { struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip); int value; mutex_lock(&exar_gpio->lock); value = readb(exar_gpio->regs + reg); mutex_unlock(&exar_gpio->lock); return value; }

Contributors

PersonTokensPropCommitsCommitProp
Sudip Mukherjee58100.00%1100.00%
Total58100.00%1100.00%


static int exar_get_direction(struct gpio_chip *chip, unsigned int offset) { struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip); unsigned int addr = (offset + exar_gpio->first_pin) / 8 ? EXAR_OFFSET_MPIOSEL_HI : EXAR_OFFSET_MPIOSEL_LO; unsigned int bit = (offset + exar_gpio->first_pin) % 8; return !!(exar_get(chip, addr) & BIT(bit)); }

Contributors

PersonTokensPropCommitsCommitProp
Jan Kiszka4256.76%266.67%
Sudip Mukherjee3243.24%133.33%
Total74100.00%3100.00%


static int exar_get_value(struct gpio_chip *chip, unsigned int offset) { struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip); unsigned int addr = (offset + exar_gpio->first_pin) / 8 ? EXAR_OFFSET_MPIOLVL_HI : EXAR_OFFSET_MPIOLVL_LO; unsigned int bit = (offset + exar_gpio->first_pin) % 8; return !!(exar_get(chip, addr) & BIT(bit)); }

Contributors

PersonTokensPropCommitsCommitProp
Jan Kiszka4459.46%266.67%
Sudip Mukherjee3040.54%133.33%
Total74100.00%3100.00%


static void exar_set_value(struct gpio_chip *chip, unsigned int offset, int value) { struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip); unsigned int addr = (offset + exar_gpio->first_pin) / 8 ? EXAR_OFFSET_MPIOLVL_HI : EXAR_OFFSET_MPIOLVL_LO; unsigned int bit = (offset + exar_gpio->first_pin) % 8; exar_update(chip, addr, value, bit); }

Contributors

PersonTokensPropCommitsCommitProp
Sudip Mukherjee3853.52%150.00%
Jan Kiszka3346.48%150.00%
Total71100.00%2100.00%


static int exar_direction_output(struct gpio_chip *chip, unsigned int offset, int value) { exar_set_value(chip, offset, value); return exar_set_direction(chip, 0, offset); }

Contributors

PersonTokensPropCommitsCommitProp
Axel Lin37100.00%1100.00%
Total37100.00%1100.00%


static int exar_direction_input(struct gpio_chip *chip, unsigned int offset) { return exar_set_direction(chip, 1, offset); }

Contributors

PersonTokensPropCommitsCommitProp
Axel Lin25100.00%1100.00%
Total25100.00%1100.00%


static int gpio_exar_probe(struct platform_device *pdev) { struct pci_dev *pcidev = to_pci_dev(pdev->dev.parent); struct exar_gpio_chip *exar_gpio; u32 first_pin, ngpios; void __iomem *p; int index, ret; /* * The UART driver must have mapped region 0 prior to registering this * device - use it. */ p = pcim_iomap_table(pcidev)[0]; if (!p) return -ENOMEM; ret = device_property_read_u32(&pdev->dev, "exar,first-pin", &first_pin); if (ret) return ret; ret = device_property_read_u32(&pdev->dev, "ngpios", &ngpios); if (ret) return ret; exar_gpio = devm_kzalloc(&pdev->dev, sizeof(*exar_gpio), GFP_KERNEL); if (!exar_gpio) return -ENOMEM; mutex_init(&exar_gpio->lock); index = ida_simple_get(&ida_index, 0, 0, GFP_KERNEL); sprintf(exar_gpio->name, "exar_gpio%d", index); exar_gpio->gpio_chip.label = exar_gpio->name; exar_gpio->gpio_chip.parent = &pdev->dev; exar_gpio->gpio_chip.direction_output = exar_direction_output; exar_gpio->gpio_chip.direction_input = exar_direction_input; exar_gpio->gpio_chip.get_direction = exar_get_direction; exar_gpio->gpio_chip.get = exar_get_value; exar_gpio->gpio_chip.set = exar_set_value; exar_gpio->gpio_chip.base = -1; exar_gpio->gpio_chip.ngpio = ngpios; exar_gpio->regs = p; exar_gpio->index = index; exar_gpio->first_pin = first_pin; ret = devm_gpiochip_add_data(&pdev->dev, &exar_gpio->gpio_chip, exar_gpio); if (ret) goto err_destroy; platform_set_drvdata(pdev, exar_gpio); return 0; err_destroy: ida_simple_remove(&ida_index, index); mutex_destroy(&exar_gpio->lock); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Sudip Mukherjee25178.44%114.29%
Jan Kiszka6921.56%685.71%
Total320100.00%7100.00%


static int gpio_exar_remove(struct platform_device *pdev) { struct exar_gpio_chip *exar_gpio = platform_get_drvdata(pdev); ida_simple_remove(&ida_index, exar_gpio->index); mutex_destroy(&exar_gpio->lock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Sudip Mukherjee42100.00%1100.00%
Total42100.00%1100.00%

static struct platform_driver gpio_exar_driver = { .probe = gpio_exar_probe, .remove = gpio_exar_remove, .driver = { .name = DRIVER_NAME, }, }; module_platform_driver(gpio_exar_driver); MODULE_ALIAS("platform:" DRIVER_NAME); MODULE_DESCRIPTION("Exar GPIO driver"); MODULE_AUTHOR("Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>"); MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
Sudip Mukherjee71571.36%111.11%
Jan Kiszka22522.46%777.78%
Axel Lin626.19%111.11%
Total1002100.00%9100.00%
Directory: drivers/gpio
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.