Release 4.7 drivers/i2c/muxes/i2c-mux-reg.c
  
  
/*
 * I2C multiplexer using a single register
 *
 * Copyright 2015 Freescale Semiconductor
 * York Sun  <yorksun@freescale.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/i2c.h>
#include <linux/i2c-mux.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/of_address.h>
#include <linux/platform_data/i2c-mux-reg.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
struct regmux {
	
struct i2c_mux_reg_platform_data data;
};
static int i2c_mux_reg_set(const struct regmux *mux, unsigned int chan_id)
{
	if (!mux->data.reg)
		return -EINVAL;
	/*
         * Write to the register, followed by a read to ensure the write is
         * completed on a "posted" bus, for example PCI or write buffers.
         * The endianness of reading doesn't matter and the return data
         * is not used.
         */
	switch (mux->data.reg_size) {
	case 4:
		if (mux->data.little_endian)
			iowrite32(chan_id, mux->data.reg);
		else
			iowrite32be(chan_id, mux->data.reg);
		if (!mux->data.write_only)
			ioread32(mux->data.reg);
		break;
	case 2:
		if (mux->data.little_endian)
			iowrite16(chan_id, mux->data.reg);
		else
			iowrite16be(chan_id, mux->data.reg);
		if (!mux->data.write_only)
			ioread16(mux->data.reg);
		break;
	case 1:
		iowrite8(chan_id, mux->data.reg);
		if (!mux->data.write_only)
			ioread8(mux->data.reg);
		break;
	}
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| york sun | york sun | 182 | 100.00% | 2 | 100.00% | 
 | Total | 182 | 100.00% | 2 | 100.00% | 
static int i2c_mux_reg_select(struct i2c_mux_core *muxc, u32 chan)
{
	struct regmux *mux = i2c_mux_priv(muxc);
	return i2c_mux_reg_set(mux, chan);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| york sun | york sun | 25 | 78.12% | 1 | 50.00% | 
| peter rosin | peter rosin | 7 | 21.88% | 1 | 50.00% | 
 | Total | 32 | 100.00% | 2 | 100.00% | 
static int i2c_mux_reg_deselect(struct i2c_mux_core *muxc, u32 chan)
{
	struct regmux *mux = i2c_mux_priv(muxc);
	if (mux->data.idle_in_use)
		return i2c_mux_reg_set(mux, mux->data.idle);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| york sun | york sun | 40 | 85.11% | 1 | 50.00% | 
| peter rosin | peter rosin | 7 | 14.89% | 1 | 50.00% | 
 | Total | 47 | 100.00% | 2 | 100.00% | 
#ifdef CONFIG_OF
static int i2c_mux_reg_probe_dt(struct regmux *mux,
				struct platform_device *pdev)
{
	struct device_node *np = pdev->dev.of_node;
	struct device_node *adapter_np, *child;
	struct i2c_adapter *adapter;
	struct resource res;
	unsigned *values;
	int i = 0;
	if (!np)
		return -ENODEV;
	adapter_np = of_parse_phandle(np, "i2c-parent", 0);
	if (!adapter_np) {
		dev_err(&pdev->dev, "Cannot parse i2c-parent\n");
		return -ENODEV;
	}
	adapter = of_find_i2c_adapter_by_node(adapter_np);
	of_node_put(adapter_np);
	if (!adapter)
		return -EPROBE_DEFER;
	mux->data.parent = i2c_adapter_id(adapter);
	put_device(&adapter->dev);
	mux->data.n_values = of_get_child_count(np);
	if (of_find_property(np, "little-endian", NULL)) {
		mux->data.little_endian = true;
	} else if (of_find_property(np, "big-endian", NULL)) {
		mux->data.little_endian = false;
	} else {
#if defined(__BYTE_ORDER) ? __BYTE_ORDER == __LITTLE_ENDIAN : \
	defined(__LITTLE_ENDIAN)
		mux->data.little_endian = true;
#elif defined(__BYTE_ORDER) ? __BYTE_ORDER == __BIG_ENDIAN : \
	defined(__BIG_ENDIAN)
		mux->data.little_endian = false;
#else
#error Endianness not defined?
#endif
	}
	if (of_find_property(np, "write-only", NULL))
		mux->data.write_only = true;
	else
		mux->data.write_only = false;
	values = devm_kzalloc(&pdev->dev,
			      sizeof(*mux->data.values) * mux->data.n_values,
			      GFP_KERNEL);
	if (!values) {
		dev_err(&pdev->dev, "Cannot allocate values array");
		return -ENOMEM;
	}
	for_each_child_of_node(np, child) {
		of_property_read_u32(child, "reg", values + i);
		i++;
	}
	mux->data.values = values;
	if (!of_property_read_u32(np, "idle-state", &mux->data.idle))
		mux->data.idle_in_use = true;
	/* map address from "reg" if exists */
	if (of_address_to_resource(np, 0, &res) == 0) {
		mux->data.reg_size = resource_size(&res);
		mux->data.reg = devm_ioremap_resource(&pdev->dev, &res);
		if (IS_ERR(mux->data.reg))
			return PTR_ERR(mux->data.reg);
	}
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| york sun | york sun | 439 | 98.43% | 1 | 33.33% | 
| vladimir zapolskiy | vladimir zapolskiy | 5 | 1.12% | 1 | 33.33% | 
| lukasz gemborowski | lukasz gemborowski | 2 | 0.45% | 1 | 33.33% | 
 | Total | 446 | 100.00% | 3 | 100.00% | 
#else
static int i2c_mux_reg_probe_dt(struct regmux *mux,
				struct platform_device *pdev)
{
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| york sun | york sun | 18 | 94.74% | 1 | 50.00% | 
| mike rapoport | mike rapoport | 1 | 5.26% | 1 | 50.00% | 
 | Total | 19 | 100.00% | 2 | 100.00% | 
#endif
static int i2c_mux_reg_probe(struct platform_device *pdev)
{
	struct i2c_mux_core *muxc;
	struct regmux *mux;
	struct i2c_adapter *parent;
	struct resource *res;
	unsigned int class;
	int i, ret, nr;
	mux = devm_kzalloc(&pdev->dev, sizeof(*mux), GFP_KERNEL);
	if (!mux)
		return -ENOMEM;
	if (dev_get_platdata(&pdev->dev)) {
		memcpy(&mux->data, dev_get_platdata(&pdev->dev),
			sizeof(mux->data));
	} else {
		ret = i2c_mux_reg_probe_dt(mux, pdev);
		if (ret < 0) {
			dev_err(&pdev->dev, "Error parsing device tree");
			return ret;
		}
	}
	parent = i2c_get_adapter(mux->data.parent);
	if (!parent)
		return -EPROBE_DEFER;
	if (!mux->data.reg) {
		dev_info(&pdev->dev,
			"Register not set, using platform resource\n");
		res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
		mux->data.reg_size = resource_size(res);
		mux->data.reg = devm_ioremap_resource(&pdev->dev, res);
		if (IS_ERR(mux->data.reg))
			return PTR_ERR(mux->data.reg);
	}
	if (mux->data.reg_size != 4 && mux->data.reg_size != 2 &&
	    mux->data.reg_size != 1) {
		dev_err(&pdev->dev, "Invalid register size\n");
		return -EINVAL;
	}
	muxc = i2c_mux_alloc(parent, &pdev->dev, mux->data.n_values, 0, 0,
			     i2c_mux_reg_select, NULL);
	if (!muxc)
		return -ENOMEM;
	muxc->priv = mux;
	platform_set_drvdata(pdev, muxc);
	if (mux->data.idle_in_use)
		muxc->deselect = i2c_mux_reg_deselect;
	for (i = 0; i < mux->data.n_values; i++) {
		nr = mux->data.base_nr ? (mux->data.base_nr + i) : 0;
		class = mux->data.classes ? mux->data.classes[i] : 0;
		ret = i2c_mux_add_adapter(muxc, nr, mux->data.values[i], class);
		if (ret) {
			dev_err(&pdev->dev, "Failed to add adapter %d\n", i);
			goto add_adapter_failed;
		}
	}
	dev_dbg(&pdev->dev, "%d port mux on %s adapter\n",
		 mux->data.n_values, muxc->parent->name);
	return 0;
add_adapter_failed:
	i2c_mux_del_adapters(muxc);
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| york sun | york sun | 375 | 78.95% | 1 | 33.33% | 
| peter rosin | peter rosin | 58 | 12.21% | 1 | 33.33% | 
| wolfram sang | wolfram sang | 42 | 8.84% | 1 | 33.33% | 
 | Total | 475 | 100.00% | 3 | 100.00% | 
static int i2c_mux_reg_remove(struct platform_device *pdev)
{
	struct i2c_mux_core *muxc = platform_get_drvdata(pdev);
	i2c_mux_del_adapters(muxc);
	i2c_put_adapter(muxc->parent);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| york sun | york sun | 31 | 86.11% | 1 | 50.00% | 
| peter rosin | peter rosin | 5 | 13.89% | 1 | 50.00% | 
 | Total | 36 | 100.00% | 2 | 100.00% | 
static const struct of_device_id i2c_mux_reg_of_match[] = {
	{ .compatible = "i2c-mux-reg", },
	{},
};
MODULE_DEVICE_TABLE(of, i2c_mux_reg_of_match);
static struct platform_driver i2c_mux_reg_driver = {
	.probe	= i2c_mux_reg_probe,
	.remove	= i2c_mux_reg_remove,
	.driver	= {
		.name	= "i2c-mux-reg",
		.of_match_table = of_match_ptr(i2c_mux_reg_of_match),
        },
};
module_platform_driver(i2c_mux_reg_driver);
MODULE_DESCRIPTION("Register-based I2C multiplexer driver");
MODULE_AUTHOR("York Sun <yorksun@freescale.com>");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:i2c-mux-reg");
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| york sun | york sun | 1231 | 90.12% | 2 | 25.00% | 
| peter rosin | peter rosin | 77 | 5.64% | 1 | 12.50% | 
| wolfram sang | wolfram sang | 42 | 3.07% | 1 | 12.50% | 
| lukasz gemborowski | lukasz gemborowski | 10 | 0.73% | 2 | 25.00% | 
| vladimir zapolskiy | vladimir zapolskiy | 5 | 0.37% | 1 | 12.50% | 
| mike rapoport | mike rapoport | 1 | 0.07% | 1 | 12.50% | 
 | Total | 1366 | 100.00% | 8 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.