York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 1 | /* |
| 2 | * I2C multiplexer using a single register |
| 3 | * |
| 4 | * Copyright 2015 Freescale Semiconductor |
| 5 | * York Sun <yorksun@freescale.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License as published by the |
| 9 | * Free Software Foundation; either version 2 of the License, or (at your |
| 10 | * option) any later version. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/i2c.h> |
| 14 | #include <linux/i2c-mux.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/io.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/of_address.h> |
| 19 | #include <linux/platform_data/i2c-mux-reg.h> |
| 20 | #include <linux/platform_device.h> |
| 21 | #include <linux/slab.h> |
| 22 | |
| 23 | struct regmux { |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 24 | struct i2c_mux_reg_platform_data data; |
| 25 | }; |
| 26 | |
| 27 | static int i2c_mux_reg_set(const struct regmux *mux, unsigned int chan_id) |
| 28 | { |
| 29 | if (!mux->data.reg) |
| 30 | return -EINVAL; |
| 31 | |
York Sun | 5a73882 | 2015-09-02 11:40:46 -0500 | [diff] [blame] | 32 | /* |
| 33 | * Write to the register, followed by a read to ensure the write is |
| 34 | * completed on a "posted" bus, for example PCI or write buffers. |
| 35 | * The endianness of reading doesn't matter and the return data |
| 36 | * is not used. |
| 37 | */ |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 38 | switch (mux->data.reg_size) { |
| 39 | case 4: |
York Sun | 5a73882 | 2015-09-02 11:40:46 -0500 | [diff] [blame] | 40 | if (mux->data.little_endian) |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 41 | iowrite32(chan_id, mux->data.reg); |
York Sun | 5a73882 | 2015-09-02 11:40:46 -0500 | [diff] [blame] | 42 | else |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 43 | iowrite32be(chan_id, mux->data.reg); |
York Sun | 5a73882 | 2015-09-02 11:40:46 -0500 | [diff] [blame] | 44 | if (!mux->data.write_only) |
| 45 | ioread32(mux->data.reg); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 46 | break; |
| 47 | case 2: |
York Sun | 5a73882 | 2015-09-02 11:40:46 -0500 | [diff] [blame] | 48 | if (mux->data.little_endian) |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 49 | iowrite16(chan_id, mux->data.reg); |
York Sun | 5a73882 | 2015-09-02 11:40:46 -0500 | [diff] [blame] | 50 | else |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 51 | iowrite16be(chan_id, mux->data.reg); |
York Sun | 5a73882 | 2015-09-02 11:40:46 -0500 | [diff] [blame] | 52 | if (!mux->data.write_only) |
| 53 | ioread16(mux->data.reg); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 54 | break; |
| 55 | case 1: |
| 56 | iowrite8(chan_id, mux->data.reg); |
| 57 | if (!mux->data.write_only) |
| 58 | ioread8(mux->data.reg); |
| 59 | break; |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | return 0; |
| 63 | } |
| 64 | |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 65 | static int i2c_mux_reg_select(struct i2c_mux_core *muxc, u32 chan) |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 66 | { |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 67 | struct regmux *mux = i2c_mux_priv(muxc); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 68 | |
| 69 | return i2c_mux_reg_set(mux, chan); |
| 70 | } |
| 71 | |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 72 | static int i2c_mux_reg_deselect(struct i2c_mux_core *muxc, u32 chan) |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 73 | { |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 74 | struct regmux *mux = i2c_mux_priv(muxc); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 75 | |
| 76 | if (mux->data.idle_in_use) |
| 77 | return i2c_mux_reg_set(mux, mux->data.idle); |
| 78 | |
| 79 | return 0; |
| 80 | } |
| 81 | |
| 82 | #ifdef CONFIG_OF |
| 83 | static int i2c_mux_reg_probe_dt(struct regmux *mux, |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 84 | struct platform_device *pdev) |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 85 | { |
| 86 | struct device_node *np = pdev->dev.of_node; |
| 87 | struct device_node *adapter_np, *child; |
| 88 | struct i2c_adapter *adapter; |
| 89 | struct resource res; |
| 90 | unsigned *values; |
| 91 | int i = 0; |
| 92 | |
| 93 | if (!np) |
| 94 | return -ENODEV; |
| 95 | |
| 96 | adapter_np = of_parse_phandle(np, "i2c-parent", 0); |
| 97 | if (!adapter_np) { |
| 98 | dev_err(&pdev->dev, "Cannot parse i2c-parent\n"); |
| 99 | return -ENODEV; |
| 100 | } |
| 101 | adapter = of_find_i2c_adapter_by_node(adapter_np); |
Vladimir Zapolskiy | bdbf4a2 | 2015-08-26 23:59:33 +0300 | [diff] [blame] | 102 | of_node_put(adapter_np); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 103 | if (!adapter) |
| 104 | return -EPROBE_DEFER; |
| 105 | |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 106 | mux->data.parent = i2c_adapter_id(adapter); |
| 107 | put_device(&adapter->dev); |
| 108 | |
| 109 | mux->data.n_values = of_get_child_count(np); |
| 110 | if (of_find_property(np, "little-endian", NULL)) { |
| 111 | mux->data.little_endian = true; |
| 112 | } else if (of_find_property(np, "big-endian", NULL)) { |
| 113 | mux->data.little_endian = false; |
| 114 | } else { |
| 115 | #if defined(__BYTE_ORDER) ? __BYTE_ORDER == __LITTLE_ENDIAN : \ |
| 116 | defined(__LITTLE_ENDIAN) |
| 117 | mux->data.little_endian = true; |
| 118 | #elif defined(__BYTE_ORDER) ? __BYTE_ORDER == __BIG_ENDIAN : \ |
| 119 | defined(__BIG_ENDIAN) |
| 120 | mux->data.little_endian = false; |
| 121 | #else |
| 122 | #error Endianness not defined? |
| 123 | #endif |
| 124 | } |
| 125 | if (of_find_property(np, "write-only", NULL)) |
| 126 | mux->data.write_only = true; |
| 127 | else |
| 128 | mux->data.write_only = false; |
| 129 | |
| 130 | values = devm_kzalloc(&pdev->dev, |
| 131 | sizeof(*mux->data.values) * mux->data.n_values, |
| 132 | GFP_KERNEL); |
| 133 | if (!values) { |
| 134 | dev_err(&pdev->dev, "Cannot allocate values array"); |
| 135 | return -ENOMEM; |
| 136 | } |
| 137 | |
| 138 | for_each_child_of_node(np, child) { |
| 139 | of_property_read_u32(child, "reg", values + i); |
| 140 | i++; |
| 141 | } |
| 142 | mux->data.values = values; |
| 143 | |
| 144 | if (!of_property_read_u32(np, "idle-state", &mux->data.idle)) |
| 145 | mux->data.idle_in_use = true; |
| 146 | |
| 147 | /* map address from "reg" if exists */ |
Lukasz Gemborowski | 22ebf00 | 2016-06-27 12:57:47 +0200 | [diff] [blame] | 148 | if (of_address_to_resource(np, 0, &res) == 0) { |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 149 | mux->data.reg_size = resource_size(&res); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 150 | mux->data.reg = devm_ioremap_resource(&pdev->dev, &res); |
| 151 | if (IS_ERR(mux->data.reg)) |
| 152 | return PTR_ERR(mux->data.reg); |
| 153 | } |
| 154 | |
| 155 | return 0; |
| 156 | } |
| 157 | #else |
Mike Rapoport | a05a34e | 2015-09-02 11:03:41 +0300 | [diff] [blame] | 158 | static int i2c_mux_reg_probe_dt(struct regmux *mux, |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 159 | struct platform_device *pdev) |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 160 | { |
| 161 | return 0; |
| 162 | } |
| 163 | #endif |
| 164 | |
| 165 | static int i2c_mux_reg_probe(struct platform_device *pdev) |
| 166 | { |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 167 | struct i2c_mux_core *muxc; |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 168 | struct regmux *mux; |
| 169 | struct i2c_adapter *parent; |
| 170 | struct resource *res; |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 171 | unsigned int class; |
| 172 | int i, ret, nr; |
| 173 | |
| 174 | mux = devm_kzalloc(&pdev->dev, sizeof(*mux), GFP_KERNEL); |
| 175 | if (!mux) |
| 176 | return -ENOMEM; |
| 177 | |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 178 | if (dev_get_platdata(&pdev->dev)) { |
| 179 | memcpy(&mux->data, dev_get_platdata(&pdev->dev), |
| 180 | sizeof(mux->data)); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 181 | } else { |
| 182 | ret = i2c_mux_reg_probe_dt(mux, pdev); |
| 183 | if (ret < 0) { |
| 184 | dev_err(&pdev->dev, "Error parsing device tree"); |
| 185 | return ret; |
| 186 | } |
| 187 | } |
| 188 | |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 189 | parent = i2c_get_adapter(mux->data.parent); |
| 190 | if (!parent) |
| 191 | return -EPROBE_DEFER; |
| 192 | |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 193 | if (!mux->data.reg) { |
| 194 | dev_info(&pdev->dev, |
| 195 | "Register not set, using platform resource\n"); |
| 196 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 197 | mux->data.reg_size = resource_size(res); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 198 | mux->data.reg = devm_ioremap_resource(&pdev->dev, res); |
| 199 | if (IS_ERR(mux->data.reg)) |
| 200 | return PTR_ERR(mux->data.reg); |
| 201 | } |
| 202 | |
Wolfram Sang | fce388a | 2015-08-20 23:40:46 +0200 | [diff] [blame] | 203 | if (mux->data.reg_size != 4 && mux->data.reg_size != 2 && |
| 204 | mux->data.reg_size != 1) { |
| 205 | dev_err(&pdev->dev, "Invalid register size\n"); |
| 206 | return -EINVAL; |
| 207 | } |
| 208 | |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 209 | muxc = i2c_mux_alloc(parent, &pdev->dev, mux->data.n_values, 0, 0, |
| 210 | i2c_mux_reg_select, NULL); |
| 211 | if (!muxc) |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 212 | return -ENOMEM; |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 213 | muxc->priv = mux; |
| 214 | |
| 215 | platform_set_drvdata(pdev, muxc); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 216 | |
| 217 | if (mux->data.idle_in_use) |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 218 | muxc->deselect = i2c_mux_reg_deselect; |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 219 | |
| 220 | for (i = 0; i < mux->data.n_values; i++) { |
| 221 | nr = mux->data.base_nr ? (mux->data.base_nr + i) : 0; |
| 222 | class = mux->data.classes ? mux->data.classes[i] : 0; |
| 223 | |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 224 | ret = i2c_mux_add_adapter(muxc, nr, mux->data.values[i], class); |
Peter Rosin | f089236 | 2017-04-03 10:14:29 +0200 | [diff] [blame] | 225 | if (ret) |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 226 | goto add_adapter_failed; |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | dev_dbg(&pdev->dev, "%d port mux on %s adapter\n", |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 230 | mux->data.n_values, muxc->parent->name); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 231 | |
| 232 | return 0; |
| 233 | |
| 234 | add_adapter_failed: |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 235 | i2c_mux_del_adapters(muxc); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 236 | |
| 237 | return ret; |
| 238 | } |
| 239 | |
| 240 | static int i2c_mux_reg_remove(struct platform_device *pdev) |
| 241 | { |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 242 | struct i2c_mux_core *muxc = platform_get_drvdata(pdev); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 243 | |
Peter Rosin | 193304a | 2016-04-20 08:40:27 +0200 | [diff] [blame] | 244 | i2c_mux_del_adapters(muxc); |
| 245 | i2c_put_adapter(muxc->parent); |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 246 | |
| 247 | return 0; |
| 248 | } |
| 249 | |
| 250 | static const struct of_device_id i2c_mux_reg_of_match[] = { |
| 251 | { .compatible = "i2c-mux-reg", }, |
| 252 | {}, |
| 253 | }; |
| 254 | MODULE_DEVICE_TABLE(of, i2c_mux_reg_of_match); |
| 255 | |
| 256 | static struct platform_driver i2c_mux_reg_driver = { |
| 257 | .probe = i2c_mux_reg_probe, |
| 258 | .remove = i2c_mux_reg_remove, |
| 259 | .driver = { |
| 260 | .name = "i2c-mux-reg", |
Lukasz Gemborowski | 9f05e62 | 2016-06-06 15:51:50 +0200 | [diff] [blame] | 261 | .of_match_table = of_match_ptr(i2c_mux_reg_of_match), |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 262 | }, |
| 263 | }; |
| 264 | |
| 265 | module_platform_driver(i2c_mux_reg_driver); |
| 266 | |
| 267 | MODULE_DESCRIPTION("Register-based I2C multiplexer driver"); |
| 268 | MODULE_AUTHOR("York Sun <yorksun@freescale.com>"); |
| 269 | MODULE_LICENSE("GPL"); |
| 270 | MODULE_ALIAS("platform:i2c-mux-reg"); |