cregit-Linux how code gets into the kernel

Release 4.14 drivers/gpio/gpio-max7301.c

Directory: drivers/gpio
/*
 * Copyright (C) 2006 Juergen Beisert, Pengutronix
 * Copyright (C) 2008 Guennadi Liakhovetski, Pengutronix
 * Copyright (C) 2009 Wolfram Sang, Pengutronix
 *
 * 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.
 *
 * Check max730x.c for further details.
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/mutex.h>
#include <linux/slab.h>
#include <linux/spi/spi.h>
#include <linux/spi/max7301.h>

/* A write to the MAX7301 means one message with one transfer */

static int max7301_spi_write(struct device *dev, unsigned int reg, unsigned int val) { struct spi_device *spi = to_spi_device(dev); u16 word = ((reg & 0x7F) << 8) | (val & 0xFF); return spi_write(spi, (const u8 *)&word, sizeof(word)); }

Contributors

PersonTokensPropCommitsCommitProp
Juergen Beisert5480.60%150.00%
Wolfram Sang1319.40%150.00%
Total67100.00%2100.00%

/* A read from the MAX7301 means two transfers; here, one message each */
static int max7301_spi_read(struct device *dev, unsigned int reg) { int ret; u16 word; struct spi_device *spi = to_spi_device(dev); word = 0x8000 | (reg << 8); ret = spi_write(spi, (const u8 *)&word, sizeof(word)); if (ret) return ret; /* * This relies on the fact, that a transfer with NULL tx_buf shifts out * zero bytes (=NOOP for MAX7301) */ ret = spi_read(spi, (u8 *)&word, sizeof(word)); if (ret) return ret; return word & 0xff; }

Contributors

PersonTokensPropCommitsCommitProp
Juergen Beisert8484.00%150.00%
Wolfram Sang1616.00%150.00%
Total100100.00%2100.00%


static int max7301_probe(struct spi_device *spi) { struct max7301 *ts; int ret; /* bits_per_word cannot be configured in platform data */ spi->bits_per_word = 16; ret = spi_setup(spi); if (ret < 0) return ret; ts = devm_kzalloc(&spi->dev, sizeof(struct max7301), GFP_KERNEL); if (!ts) return -ENOMEM; ts->read = max7301_spi_read; ts->write = max7301_spi_write; ts->dev = &spi->dev; ret = __max730x_probe(ts); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Juergen Beisert8787.00%125.00%
Wolfram Sang66.00%125.00%
Jingoo Han66.00%125.00%
Dmitry Baryshkov11.00%125.00%
Total100100.00%4100.00%


static int max7301_remove(struct spi_device *spi) { return __max730x_remove(&spi->dev); }

Contributors

PersonTokensPropCommitsCommitProp
Juergen Beisert1785.00%150.00%
Wolfram Sang315.00%150.00%
Total20100.00%2100.00%

static const struct spi_device_id max7301_id[] = { { "max7301", 0 }, { } }; MODULE_DEVICE_TABLE(spi, max7301_id); static struct spi_driver max7301_driver = { .driver = { .name = "max7301", }, .probe = max7301_probe, .remove = max7301_remove, .id_table = max7301_id, };
static int __init max7301_init(void) { return spi_register_driver(&max7301_driver); }

Contributors

PersonTokensPropCommitsCommitProp
Juergen Beisert16100.00%1100.00%
Total16100.00%1100.00%

/* register after spi postcore initcall and before * subsys initcalls that may rely on these GPIOs */ subsys_initcall(max7301_init);
static void __exit max7301_exit(void) { spi_unregister_driver(&max7301_driver); }

Contributors

PersonTokensPropCommitsCommitProp
Juergen Beisert15100.00%1100.00%
Total15100.00%1100.00%

module_exit(max7301_exit); MODULE_AUTHOR("Juergen Beisert, Wolfram Sang"); MODULE_LICENSE("GPL v2"); MODULE_DESCRIPTION("MAX7301 GPIO-Expander");

Overall Contributors

PersonTokensPropCommitsCommitProp
Juergen Beisert33478.77%112.50%
Wolfram Sang7116.75%112.50%
Jingoo Han61.42%112.50%
David Brownell61.42%112.50%
Tejun Heo30.71%112.50%
Anton Vorontsov20.47%112.50%
Grant C. Likely10.24%112.50%
Dmitry Baryshkov10.24%112.50%
Total424100.00%8100.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.