David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1 | /* |
Grant Likely | ca632f5 | 2011-06-06 01:16:30 -0600 | [diff] [blame] | 2 | * SPI init/core code |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2005 David Brownell |
Grant Likely | d57a428 | 2012-04-07 14:16:53 -0600 | [diff] [blame] | 5 | * Copyright (C) 2008 Secret Lab Technologies Ltd. |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 16 | */ |
| 17 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/device.h> |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/cache.h> |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 22 | #include <linux/dma-mapping.h> |
| 23 | #include <linux/dmaengine.h> |
Matthias Kaehlcke | 9404082 | 2007-07-17 04:04:16 -0700 | [diff] [blame] | 24 | #include <linux/mutex.h> |
Sinan Akman | 2b7a32f | 2010-10-02 21:28:29 -0600 | [diff] [blame] | 25 | #include <linux/of_device.h> |
Grant Likely | d57a428 | 2012-04-07 14:16:53 -0600 | [diff] [blame] | 26 | #include <linux/of_irq.h> |
Sylwester Nawrocki | 86be408 | 2014-06-18 17:29:32 +0200 | [diff] [blame] | 27 | #include <linux/clk/clk-conf.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Anton Vorontsov | e0626e3 | 2009-09-22 16:46:08 -0700 | [diff] [blame] | 29 | #include <linux/mod_devicetable.h> |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 30 | #include <linux/spi/spi.h> |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 31 | #include <linux/of_gpio.h> |
Mark Brown | 3ae22e8 | 2010-12-25 15:32:27 +0100 | [diff] [blame] | 32 | #include <linux/pm_runtime.h> |
Ulf Hansson | f48c767 | 2014-09-29 13:58:47 +0200 | [diff] [blame] | 33 | #include <linux/pm_domain.h> |
Paul Gortmaker | 025ed13 | 2011-07-10 12:57:55 -0400 | [diff] [blame] | 34 | #include <linux/export.h> |
Clark Williams | 8bd75c7 | 2013-02-07 09:47:07 -0600 | [diff] [blame] | 35 | #include <linux/sched/rt.h> |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 36 | #include <linux/delay.h> |
| 37 | #include <linux/kthread.h> |
Mika Westerberg | 64bee4d | 2012-11-30 12:37:53 +0100 | [diff] [blame] | 38 | #include <linux/ioport.h> |
| 39 | #include <linux/acpi.h> |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 40 | |
Mark Brown | 56ec197 | 2013-10-07 19:33:53 +0100 | [diff] [blame] | 41 | #define CREATE_TRACE_POINTS |
| 42 | #include <trace/events/spi.h> |
| 43 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 44 | static void spidev_release(struct device *dev) |
| 45 | { |
Hans-Peter Nilsson | 0ffa028 | 2007-02-12 00:52:45 -0800 | [diff] [blame] | 46 | struct spi_device *spi = to_spi_device(dev); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 47 | |
| 48 | /* spi masters may cleanup for released devices */ |
| 49 | if (spi->master->cleanup) |
| 50 | spi->master->cleanup(spi); |
| 51 | |
David Brownell | 0c868461 | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 52 | spi_master_put(spi->master); |
Roman Tereshonkov | 07a389f | 2010-04-12 09:56:35 +0000 | [diff] [blame] | 53 | kfree(spi); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | static ssize_t |
| 57 | modalias_show(struct device *dev, struct device_attribute *a, char *buf) |
| 58 | { |
| 59 | const struct spi_device *spi = to_spi_device(dev); |
Zhang Rui | 8c4ff6d | 2014-01-14 16:46:37 +0800 | [diff] [blame] | 60 | int len; |
| 61 | |
| 62 | len = acpi_device_modalias(dev, buf, PAGE_SIZE - 1); |
| 63 | if (len != -ENODEV) |
| 64 | return len; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 65 | |
Grant Likely | d8e328b | 2012-05-20 00:08:13 -0600 | [diff] [blame] | 66 | return sprintf(buf, "%s%s\n", SPI_MODULE_PREFIX, spi->modalias); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 67 | } |
Greg Kroah-Hartman | aa7da56 | 2013-10-07 18:27:38 -0700 | [diff] [blame] | 68 | static DEVICE_ATTR_RO(modalias); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 69 | |
Greg Kroah-Hartman | aa7da56 | 2013-10-07 18:27:38 -0700 | [diff] [blame] | 70 | static struct attribute *spi_dev_attrs[] = { |
| 71 | &dev_attr_modalias.attr, |
| 72 | NULL, |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 73 | }; |
Greg Kroah-Hartman | aa7da56 | 2013-10-07 18:27:38 -0700 | [diff] [blame] | 74 | ATTRIBUTE_GROUPS(spi_dev); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 75 | |
| 76 | /* modalias support makes "modprobe $MODALIAS" new-style hotplug work, |
| 77 | * and the sysfs version makes coldplug work too. |
| 78 | */ |
| 79 | |
Anton Vorontsov | 75368bf | 2009-09-22 16:46:04 -0700 | [diff] [blame] | 80 | static const struct spi_device_id *spi_match_id(const struct spi_device_id *id, |
| 81 | const struct spi_device *sdev) |
| 82 | { |
| 83 | while (id->name[0]) { |
| 84 | if (!strcmp(sdev->modalias, id->name)) |
| 85 | return id; |
| 86 | id++; |
| 87 | } |
| 88 | return NULL; |
| 89 | } |
| 90 | |
| 91 | const struct spi_device_id *spi_get_device_id(const struct spi_device *sdev) |
| 92 | { |
| 93 | const struct spi_driver *sdrv = to_spi_driver(sdev->dev.driver); |
| 94 | |
| 95 | return spi_match_id(sdrv->id_table, sdev); |
| 96 | } |
| 97 | EXPORT_SYMBOL_GPL(spi_get_device_id); |
| 98 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 99 | static int spi_match_device(struct device *dev, struct device_driver *drv) |
| 100 | { |
| 101 | const struct spi_device *spi = to_spi_device(dev); |
Anton Vorontsov | 75368bf | 2009-09-22 16:46:04 -0700 | [diff] [blame] | 102 | const struct spi_driver *sdrv = to_spi_driver(drv); |
| 103 | |
Sinan Akman | 2b7a32f | 2010-10-02 21:28:29 -0600 | [diff] [blame] | 104 | /* Attempt an OF style match */ |
| 105 | if (of_driver_match_device(dev, drv)) |
| 106 | return 1; |
| 107 | |
Mika Westerberg | 64bee4d | 2012-11-30 12:37:53 +0100 | [diff] [blame] | 108 | /* Then try ACPI */ |
| 109 | if (acpi_driver_match_device(dev, drv)) |
| 110 | return 1; |
| 111 | |
Anton Vorontsov | 75368bf | 2009-09-22 16:46:04 -0700 | [diff] [blame] | 112 | if (sdrv->id_table) |
| 113 | return !!spi_match_id(sdrv->id_table, spi); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 114 | |
Kay Sievers | 35f74fc | 2009-01-06 10:44:37 -0800 | [diff] [blame] | 115 | return strcmp(spi->modalias, drv->name) == 0; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 116 | } |
| 117 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 118 | static int spi_uevent(struct device *dev, struct kobj_uevent_env *env) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 119 | { |
| 120 | const struct spi_device *spi = to_spi_device(dev); |
Zhang Rui | 8c4ff6d | 2014-01-14 16:46:37 +0800 | [diff] [blame] | 121 | int rc; |
| 122 | |
| 123 | rc = acpi_device_uevent_modalias(dev, env); |
| 124 | if (rc != -ENODEV) |
| 125 | return rc; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 126 | |
Anton Vorontsov | e0626e3 | 2009-09-22 16:46:08 -0700 | [diff] [blame] | 127 | add_uevent_var(env, "MODALIAS=%s%s", SPI_MODULE_PREFIX, spi->modalias); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 128 | return 0; |
| 129 | } |
| 130 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 131 | struct bus_type spi_bus_type = { |
| 132 | .name = "spi", |
Greg Kroah-Hartman | aa7da56 | 2013-10-07 18:27:38 -0700 | [diff] [blame] | 133 | .dev_groups = spi_dev_groups, |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 134 | .match = spi_match_device, |
| 135 | .uevent = spi_uevent, |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 136 | }; |
| 137 | EXPORT_SYMBOL_GPL(spi_bus_type); |
| 138 | |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 139 | |
| 140 | static int spi_drv_probe(struct device *dev) |
| 141 | { |
| 142 | const struct spi_driver *sdrv = to_spi_driver(dev->driver); |
Mika Westerberg | 33cf00e | 2013-10-10 13:28:48 +0300 | [diff] [blame] | 143 | int ret; |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 144 | |
Sylwester Nawrocki | 86be408 | 2014-06-18 17:29:32 +0200 | [diff] [blame] | 145 | ret = of_clk_set_defaults(dev->of_node, false); |
| 146 | if (ret) |
| 147 | return ret; |
| 148 | |
Ulf Hansson | 676e7c2 | 2014-09-19 20:27:41 +0200 | [diff] [blame] | 149 | ret = dev_pm_domain_attach(dev, true); |
| 150 | if (ret != -EPROBE_DEFER) { |
| 151 | ret = sdrv->probe(to_spi_device(dev)); |
| 152 | if (ret) |
| 153 | dev_pm_domain_detach(dev, true); |
| 154 | } |
Mika Westerberg | 33cf00e | 2013-10-10 13:28:48 +0300 | [diff] [blame] | 155 | |
| 156 | return ret; |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | static int spi_drv_remove(struct device *dev) |
| 160 | { |
| 161 | const struct spi_driver *sdrv = to_spi_driver(dev->driver); |
Mika Westerberg | 33cf00e | 2013-10-10 13:28:48 +0300 | [diff] [blame] | 162 | int ret; |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 163 | |
Jean Delvare | aec35f4 | 2014-02-13 15:28:41 +0100 | [diff] [blame] | 164 | ret = sdrv->remove(to_spi_device(dev)); |
Ulf Hansson | 676e7c2 | 2014-09-19 20:27:41 +0200 | [diff] [blame] | 165 | dev_pm_domain_detach(dev, true); |
Mika Westerberg | 33cf00e | 2013-10-10 13:28:48 +0300 | [diff] [blame] | 166 | |
| 167 | return ret; |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | static void spi_drv_shutdown(struct device *dev) |
| 171 | { |
| 172 | const struct spi_driver *sdrv = to_spi_driver(dev->driver); |
| 173 | |
| 174 | sdrv->shutdown(to_spi_device(dev)); |
| 175 | } |
| 176 | |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 177 | /** |
| 178 | * spi_register_driver - register a SPI driver |
| 179 | * @sdrv: the driver to register |
| 180 | * Context: can sleep |
| 181 | */ |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 182 | int spi_register_driver(struct spi_driver *sdrv) |
| 183 | { |
| 184 | sdrv->driver.bus = &spi_bus_type; |
| 185 | if (sdrv->probe) |
| 186 | sdrv->driver.probe = spi_drv_probe; |
| 187 | if (sdrv->remove) |
| 188 | sdrv->driver.remove = spi_drv_remove; |
| 189 | if (sdrv->shutdown) |
| 190 | sdrv->driver.shutdown = spi_drv_shutdown; |
| 191 | return driver_register(&sdrv->driver); |
| 192 | } |
| 193 | EXPORT_SYMBOL_GPL(spi_register_driver); |
| 194 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 195 | /*-------------------------------------------------------------------------*/ |
| 196 | |
| 197 | /* SPI devices should normally not be created by SPI device drivers; that |
| 198 | * would make them board-specific. Similarly with SPI master drivers. |
| 199 | * Device registration normally goes into like arch/.../mach.../board-YYY.c |
| 200 | * with other readonly (flashable) information about mainboard devices. |
| 201 | */ |
| 202 | |
| 203 | struct boardinfo { |
| 204 | struct list_head list; |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 205 | struct spi_board_info board_info; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 206 | }; |
| 207 | |
| 208 | static LIST_HEAD(board_list); |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 209 | static LIST_HEAD(spi_master_list); |
| 210 | |
| 211 | /* |
| 212 | * Used to protect add/del opertion for board_info list and |
| 213 | * spi_master list, and their matching process |
| 214 | */ |
Matthias Kaehlcke | 9404082 | 2007-07-17 04:04:16 -0700 | [diff] [blame] | 215 | static DEFINE_MUTEX(board_lock); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 216 | |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 217 | /** |
| 218 | * spi_alloc_device - Allocate a new SPI device |
| 219 | * @master: Controller to which device is connected |
| 220 | * Context: can sleep |
| 221 | * |
| 222 | * Allows a driver to allocate and initialize a spi_device without |
| 223 | * registering it immediately. This allows a driver to directly |
| 224 | * fill the spi_device with device parameters before calling |
| 225 | * spi_add_device() on it. |
| 226 | * |
| 227 | * Caller is responsible to call spi_add_device() on the returned |
| 228 | * spi_device structure to add it to the SPI master. If the caller |
| 229 | * needs to discard the spi_device without adding it, then it should |
| 230 | * call spi_dev_put() on it. |
| 231 | * |
| 232 | * Returns a pointer to the new device, or NULL. |
| 233 | */ |
| 234 | struct spi_device *spi_alloc_device(struct spi_master *master) |
| 235 | { |
| 236 | struct spi_device *spi; |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 237 | |
| 238 | if (!spi_master_get(master)) |
| 239 | return NULL; |
| 240 | |
Jingoo Han | 5fe5f05 | 2013-10-14 10:31:51 +0900 | [diff] [blame] | 241 | spi = kzalloc(sizeof(*spi), GFP_KERNEL); |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 242 | if (!spi) { |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 243 | spi_master_put(master); |
| 244 | return NULL; |
| 245 | } |
| 246 | |
| 247 | spi->master = master; |
Laurent Pinchart | 178db7d | 2011-12-12 01:15:06 +0100 | [diff] [blame] | 248 | spi->dev.parent = &master->dev; |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 249 | spi->dev.bus = &spi_bus_type; |
| 250 | spi->dev.release = spidev_release; |
Andreas Larsson | 446411e | 2013-02-13 14:20:25 +0100 | [diff] [blame] | 251 | spi->cs_gpio = -ENOENT; |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 252 | device_initialize(&spi->dev); |
| 253 | return spi; |
| 254 | } |
| 255 | EXPORT_SYMBOL_GPL(spi_alloc_device); |
| 256 | |
Jarkko Nikula | e13ac47 | 2013-11-14 14:03:53 +0200 | [diff] [blame] | 257 | static void spi_dev_set_name(struct spi_device *spi) |
| 258 | { |
| 259 | struct acpi_device *adev = ACPI_COMPANION(&spi->dev); |
| 260 | |
| 261 | if (adev) { |
| 262 | dev_set_name(&spi->dev, "spi-%s", acpi_dev_name(adev)); |
| 263 | return; |
| 264 | } |
| 265 | |
| 266 | dev_set_name(&spi->dev, "%s.%u", dev_name(&spi->master->dev), |
| 267 | spi->chip_select); |
| 268 | } |
| 269 | |
Mika Westerberg | b6fb8d3 | 2014-01-09 15:23:55 +0200 | [diff] [blame] | 270 | static int spi_dev_check(struct device *dev, void *data) |
| 271 | { |
| 272 | struct spi_device *spi = to_spi_device(dev); |
| 273 | struct spi_device *new_spi = data; |
| 274 | |
| 275 | if (spi->master == new_spi->master && |
| 276 | spi->chip_select == new_spi->chip_select) |
| 277 | return -EBUSY; |
| 278 | return 0; |
| 279 | } |
| 280 | |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 281 | /** |
| 282 | * spi_add_device - Add spi_device allocated with spi_alloc_device |
| 283 | * @spi: spi_device to register |
| 284 | * |
| 285 | * Companion function to spi_alloc_device. Devices allocated with |
| 286 | * spi_alloc_device can be added onto the spi bus with this function. |
| 287 | * |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 288 | * Returns 0 on success; negative errno on failure |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 289 | */ |
| 290 | int spi_add_device(struct spi_device *spi) |
| 291 | { |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 292 | static DEFINE_MUTEX(spi_add_lock); |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 293 | struct spi_master *master = spi->master; |
| 294 | struct device *dev = master->dev.parent; |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 295 | int status; |
| 296 | |
| 297 | /* Chipselects are numbered 0..max; validate. */ |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 298 | if (spi->chip_select >= master->num_chipselect) { |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 299 | dev_err(dev, "cs%d >= max %d\n", |
| 300 | spi->chip_select, |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 301 | master->num_chipselect); |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 302 | return -EINVAL; |
| 303 | } |
| 304 | |
| 305 | /* Set the bus ID string */ |
Jarkko Nikula | e13ac47 | 2013-11-14 14:03:53 +0200 | [diff] [blame] | 306 | spi_dev_set_name(spi); |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 307 | |
| 308 | /* We need to make sure there's no other device with this |
| 309 | * chipselect **BEFORE** we call setup(), else we'll trash |
| 310 | * its configuration. Lock against concurrent add() calls. |
| 311 | */ |
| 312 | mutex_lock(&spi_add_lock); |
| 313 | |
Mika Westerberg | b6fb8d3 | 2014-01-09 15:23:55 +0200 | [diff] [blame] | 314 | status = bus_for_each_dev(&spi_bus_type, NULL, spi, spi_dev_check); |
| 315 | if (status) { |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 316 | dev_err(dev, "chipselect %d already in use\n", |
| 317 | spi->chip_select); |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 318 | goto done; |
| 319 | } |
| 320 | |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 321 | if (master->cs_gpios) |
| 322 | spi->cs_gpio = master->cs_gpios[spi->chip_select]; |
| 323 | |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 324 | /* Drivers may modify this initial i/o setup, but will |
| 325 | * normally rely on the device being setup. Devices |
| 326 | * using SPI_CS_HIGH can't coexist well otherwise... |
| 327 | */ |
David Brownell | 7d07719 | 2009-06-17 16:26:03 -0700 | [diff] [blame] | 328 | status = spi_setup(spi); |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 329 | if (status < 0) { |
Linus Walleij | eb288a1 | 2010-10-21 21:06:44 +0200 | [diff] [blame] | 330 | dev_err(dev, "can't setup %s, status %d\n", |
| 331 | dev_name(&spi->dev), status); |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 332 | goto done; |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 333 | } |
| 334 | |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 335 | /* Device may be bound to an active driver when this returns */ |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 336 | status = device_add(&spi->dev); |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 337 | if (status < 0) |
Linus Walleij | eb288a1 | 2010-10-21 21:06:44 +0200 | [diff] [blame] | 338 | dev_err(dev, "can't add %s, status %d\n", |
| 339 | dev_name(&spi->dev), status); |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 340 | else |
Kay Sievers | 35f74fc | 2009-01-06 10:44:37 -0800 | [diff] [blame] | 341 | dev_dbg(dev, "registered child %s\n", dev_name(&spi->dev)); |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 342 | |
David Brownell | e48880e | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 343 | done: |
| 344 | mutex_unlock(&spi_add_lock); |
| 345 | return status; |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 346 | } |
| 347 | EXPORT_SYMBOL_GPL(spi_add_device); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 348 | |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 349 | /** |
| 350 | * spi_new_device - instantiate one new SPI device |
| 351 | * @master: Controller to which device is connected |
| 352 | * @chip: Describes the SPI device |
| 353 | * Context: can sleep |
| 354 | * |
| 355 | * On typical mainboards, this is purely internal; and it's not needed |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 356 | * after board init creates the hard-wired devices. Some development |
| 357 | * platforms may not be able to use spi_register_board_info though, and |
| 358 | * this is exported so that for example a USB or parport based adapter |
| 359 | * driver could add devices (which it would learn about out-of-band). |
David Brownell | 082c8cb | 2007-07-31 00:39:45 -0700 | [diff] [blame] | 360 | * |
| 361 | * Returns the new device, or NULL. |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 362 | */ |
Adrian Bunk | e9d5a46 | 2007-03-26 21:32:23 -0800 | [diff] [blame] | 363 | struct spi_device *spi_new_device(struct spi_master *master, |
| 364 | struct spi_board_info *chip) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 365 | { |
| 366 | struct spi_device *proxy; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 367 | int status; |
| 368 | |
David Brownell | 082c8cb | 2007-07-31 00:39:45 -0700 | [diff] [blame] | 369 | /* NOTE: caller did any chip->bus_num checks necessary. |
| 370 | * |
| 371 | * Also, unless we change the return value convention to use |
| 372 | * error-or-pointer (not NULL-or-pointer), troubleshootability |
| 373 | * suggests syslogged diagnostics are best here (ugh). |
| 374 | */ |
| 375 | |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 376 | proxy = spi_alloc_device(master); |
| 377 | if (!proxy) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 378 | return NULL; |
| 379 | |
Grant Likely | 102eb97 | 2008-07-23 21:29:55 -0700 | [diff] [blame] | 380 | WARN_ON(strlen(chip->modalias) >= sizeof(proxy->modalias)); |
| 381 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 382 | proxy->chip_select = chip->chip_select; |
| 383 | proxy->max_speed_hz = chip->max_speed_hz; |
David Brownell | 980a01c | 2006-06-28 07:47:15 -0700 | [diff] [blame] | 384 | proxy->mode = chip->mode; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 385 | proxy->irq = chip->irq; |
Grant Likely | 102eb97 | 2008-07-23 21:29:55 -0700 | [diff] [blame] | 386 | strlcpy(proxy->modalias, chip->modalias, sizeof(proxy->modalias)); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 387 | proxy->dev.platform_data = (void *) chip->platform_data; |
| 388 | proxy->controller_data = chip->controller_data; |
| 389 | proxy->controller_state = NULL; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 390 | |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 391 | status = spi_add_device(proxy); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 392 | if (status < 0) { |
Grant Likely | dc87c98 | 2008-05-15 16:50:22 -0600 | [diff] [blame] | 393 | spi_dev_put(proxy); |
| 394 | return NULL; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 395 | } |
| 396 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 397 | return proxy; |
| 398 | } |
| 399 | EXPORT_SYMBOL_GPL(spi_new_device); |
| 400 | |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 401 | static void spi_match_master_to_boardinfo(struct spi_master *master, |
| 402 | struct spi_board_info *bi) |
| 403 | { |
| 404 | struct spi_device *dev; |
| 405 | |
| 406 | if (master->bus_num != bi->bus_num) |
| 407 | return; |
| 408 | |
| 409 | dev = spi_new_device(master, bi); |
| 410 | if (!dev) |
| 411 | dev_err(master->dev.parent, "can't create new device for %s\n", |
| 412 | bi->modalias); |
| 413 | } |
| 414 | |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 415 | /** |
| 416 | * spi_register_board_info - register SPI devices for a given board |
| 417 | * @info: array of chip descriptors |
| 418 | * @n: how many descriptors are provided |
| 419 | * Context: can sleep |
| 420 | * |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 421 | * Board-specific early init code calls this (probably during arch_initcall) |
| 422 | * with segments of the SPI device table. Any device nodes are created later, |
| 423 | * after the relevant parent SPI controller (bus_num) is defined. We keep |
| 424 | * this table of devices forever, so that reloading a controller driver will |
| 425 | * not make Linux forget about these hard-wired devices. |
| 426 | * |
| 427 | * Other code can also call this, e.g. a particular add-on board might provide |
| 428 | * SPI devices through its expansion connector, so code initializing that board |
| 429 | * would naturally declare its SPI devices. |
| 430 | * |
| 431 | * The board info passed can safely be __initdata ... but be careful of |
| 432 | * any embedded pointers (platform_data, etc), they're copied as-is. |
| 433 | */ |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 434 | int spi_register_board_info(struct spi_board_info const *info, unsigned n) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 435 | { |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 436 | struct boardinfo *bi; |
| 437 | int i; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 438 | |
Xiubo Li | c7908a3 | 2014-09-24 14:30:29 +0800 | [diff] [blame] | 439 | if (!n) |
| 440 | return -EINVAL; |
| 441 | |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 442 | bi = kzalloc(n * sizeof(*bi), GFP_KERNEL); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 443 | if (!bi) |
| 444 | return -ENOMEM; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 445 | |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 446 | for (i = 0; i < n; i++, bi++, info++) { |
| 447 | struct spi_master *master; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 448 | |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 449 | memcpy(&bi->board_info, info, sizeof(*info)); |
| 450 | mutex_lock(&board_lock); |
| 451 | list_add_tail(&bi->list, &board_list); |
| 452 | list_for_each_entry(master, &spi_master_list, list) |
| 453 | spi_match_master_to_boardinfo(master, &bi->board_info); |
| 454 | mutex_unlock(&board_lock); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 455 | } |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 456 | |
| 457 | return 0; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | /*-------------------------------------------------------------------------*/ |
| 461 | |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 462 | static void spi_set_cs(struct spi_device *spi, bool enable) |
| 463 | { |
| 464 | if (spi->mode & SPI_CS_HIGH) |
| 465 | enable = !enable; |
| 466 | |
| 467 | if (spi->cs_gpio >= 0) |
| 468 | gpio_set_value(spi->cs_gpio, !enable); |
| 469 | else if (spi->master->set_cs) |
| 470 | spi->master->set_cs(spi, !enable); |
| 471 | } |
| 472 | |
Geert Uytterhoeven | 2de440f | 2014-05-02 06:29:34 +0200 | [diff] [blame] | 473 | #ifdef CONFIG_HAS_DMA |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 474 | static int spi_map_buf(struct spi_master *master, struct device *dev, |
| 475 | struct sg_table *sgt, void *buf, size_t len, |
| 476 | enum dma_data_direction dir) |
| 477 | { |
| 478 | const bool vmalloced_buf = is_vmalloc_addr(buf); |
Andrew Gabbasov | 65598c1 | 2015-06-30 10:48:37 -0500 | [diff] [blame^] | 479 | int desc_len; |
| 480 | int sgs; |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 481 | struct page *vm_page; |
| 482 | void *sg_buf; |
| 483 | size_t min; |
| 484 | int i, ret; |
| 485 | |
Andrew Gabbasov | 65598c1 | 2015-06-30 10:48:37 -0500 | [diff] [blame^] | 486 | if (vmalloced_buf) { |
| 487 | desc_len = PAGE_SIZE; |
| 488 | sgs = DIV_ROUND_UP(len + offset_in_page(buf), desc_len); |
| 489 | } else { |
| 490 | desc_len = master->max_dma_len; |
| 491 | sgs = DIV_ROUND_UP(len, desc_len); |
| 492 | } |
| 493 | |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 494 | ret = sg_alloc_table(sgt, sgs, GFP_KERNEL); |
| 495 | if (ret != 0) |
| 496 | return ret; |
| 497 | |
| 498 | for (i = 0; i < sgs; i++) { |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 499 | |
| 500 | if (vmalloced_buf) { |
Andrew Gabbasov | 65598c1 | 2015-06-30 10:48:37 -0500 | [diff] [blame^] | 501 | min = min_t(size_t, |
| 502 | len, desc_len - offset_in_page(buf)); |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 503 | vm_page = vmalloc_to_page(buf); |
| 504 | if (!vm_page) { |
| 505 | sg_free_table(sgt); |
| 506 | return -ENOMEM; |
| 507 | } |
Charles Keepax | c1aefbd | 2014-11-17 09:14:31 +0000 | [diff] [blame] | 508 | sg_set_page(&sgt->sgl[i], vm_page, |
| 509 | min, offset_in_page(buf)); |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 510 | } else { |
Andrew Gabbasov | 65598c1 | 2015-06-30 10:48:37 -0500 | [diff] [blame^] | 511 | min = min_t(size_t, len, desc_len); |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 512 | sg_buf = buf; |
Charles Keepax | c1aefbd | 2014-11-17 09:14:31 +0000 | [diff] [blame] | 513 | sg_set_buf(&sgt->sgl[i], sg_buf, min); |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 514 | } |
| 515 | |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 516 | |
| 517 | buf += min; |
| 518 | len -= min; |
| 519 | } |
| 520 | |
| 521 | ret = dma_map_sg(dev, sgt->sgl, sgt->nents, dir); |
Geert Uytterhoeven | 89e4b66 | 2014-07-10 15:29:32 +0200 | [diff] [blame] | 522 | if (!ret) |
| 523 | ret = -ENOMEM; |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 524 | if (ret < 0) { |
| 525 | sg_free_table(sgt); |
| 526 | return ret; |
| 527 | } |
| 528 | |
| 529 | sgt->nents = ret; |
| 530 | |
| 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | static void spi_unmap_buf(struct spi_master *master, struct device *dev, |
| 535 | struct sg_table *sgt, enum dma_data_direction dir) |
| 536 | { |
| 537 | if (sgt->orig_nents) { |
| 538 | dma_unmap_sg(dev, sgt->sgl, sgt->orig_nents, dir); |
| 539 | sg_free_table(sgt); |
| 540 | } |
| 541 | } |
| 542 | |
Geert Uytterhoeven | 2de440f | 2014-05-02 06:29:34 +0200 | [diff] [blame] | 543 | static int __spi_map_msg(struct spi_master *master, struct spi_message *msg) |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 544 | { |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 545 | struct device *tx_dev, *rx_dev; |
| 546 | struct spi_transfer *xfer; |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 547 | int ret; |
Mark Brown | 3a2eba9 | 2014-01-28 20:17:03 +0000 | [diff] [blame] | 548 | |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 549 | if (!master->can_dma) |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 550 | return 0; |
| 551 | |
Geert Uytterhoeven | 3fc2542 | 2014-07-10 15:29:33 +0200 | [diff] [blame] | 552 | tx_dev = master->dma_tx->device->dev; |
| 553 | rx_dev = master->dma_rx->device->dev; |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 554 | |
| 555 | list_for_each_entry(xfer, &msg->transfers, transfer_list) { |
| 556 | if (!master->can_dma(master, msg->spi, xfer)) |
| 557 | continue; |
| 558 | |
| 559 | if (xfer->tx_buf != NULL) { |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 560 | ret = spi_map_buf(master, tx_dev, &xfer->tx_sg, |
| 561 | (void *)xfer->tx_buf, xfer->len, |
| 562 | DMA_TO_DEVICE); |
| 563 | if (ret != 0) |
| 564 | return ret; |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 565 | } |
| 566 | |
| 567 | if (xfer->rx_buf != NULL) { |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 568 | ret = spi_map_buf(master, rx_dev, &xfer->rx_sg, |
| 569 | xfer->rx_buf, xfer->len, |
| 570 | DMA_FROM_DEVICE); |
| 571 | if (ret != 0) { |
| 572 | spi_unmap_buf(master, tx_dev, &xfer->tx_sg, |
| 573 | DMA_TO_DEVICE); |
| 574 | return ret; |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 575 | } |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | master->cur_msg_mapped = true; |
| 580 | |
| 581 | return 0; |
| 582 | } |
| 583 | |
Martin Sperl | 4b78645 | 2015-05-25 10:13:10 +0000 | [diff] [blame] | 584 | static int __spi_unmap_msg(struct spi_master *master, struct spi_message *msg) |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 585 | { |
| 586 | struct spi_transfer *xfer; |
| 587 | struct device *tx_dev, *rx_dev; |
| 588 | |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 589 | if (!master->cur_msg_mapped || !master->can_dma) |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 590 | return 0; |
| 591 | |
Geert Uytterhoeven | 3fc2542 | 2014-07-10 15:29:33 +0200 | [diff] [blame] | 592 | tx_dev = master->dma_tx->device->dev; |
| 593 | rx_dev = master->dma_rx->device->dev; |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 594 | |
| 595 | list_for_each_entry(xfer, &msg->transfers, transfer_list) { |
| 596 | if (!master->can_dma(master, msg->spi, xfer)) |
| 597 | continue; |
| 598 | |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 599 | spi_unmap_buf(master, rx_dev, &xfer->rx_sg, DMA_FROM_DEVICE); |
| 600 | spi_unmap_buf(master, tx_dev, &xfer->tx_sg, DMA_TO_DEVICE); |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | return 0; |
| 604 | } |
Geert Uytterhoeven | 2de440f | 2014-05-02 06:29:34 +0200 | [diff] [blame] | 605 | #else /* !CONFIG_HAS_DMA */ |
| 606 | static inline int __spi_map_msg(struct spi_master *master, |
| 607 | struct spi_message *msg) |
| 608 | { |
| 609 | return 0; |
| 610 | } |
| 611 | |
Martin Sperl | 4b78645 | 2015-05-25 10:13:10 +0000 | [diff] [blame] | 612 | static inline int __spi_unmap_msg(struct spi_master *master, |
| 613 | struct spi_message *msg) |
Geert Uytterhoeven | 2de440f | 2014-05-02 06:29:34 +0200 | [diff] [blame] | 614 | { |
| 615 | return 0; |
| 616 | } |
| 617 | #endif /* !CONFIG_HAS_DMA */ |
| 618 | |
Martin Sperl | 4b78645 | 2015-05-25 10:13:10 +0000 | [diff] [blame] | 619 | static inline int spi_unmap_msg(struct spi_master *master, |
| 620 | struct spi_message *msg) |
| 621 | { |
| 622 | struct spi_transfer *xfer; |
| 623 | |
| 624 | list_for_each_entry(xfer, &msg->transfers, transfer_list) { |
| 625 | /* |
| 626 | * Restore the original value of tx_buf or rx_buf if they are |
| 627 | * NULL. |
| 628 | */ |
| 629 | if (xfer->tx_buf == master->dummy_tx) |
| 630 | xfer->tx_buf = NULL; |
| 631 | if (xfer->rx_buf == master->dummy_rx) |
| 632 | xfer->rx_buf = NULL; |
| 633 | } |
| 634 | |
| 635 | return __spi_unmap_msg(master, msg); |
| 636 | } |
| 637 | |
Geert Uytterhoeven | 2de440f | 2014-05-02 06:29:34 +0200 | [diff] [blame] | 638 | static int spi_map_msg(struct spi_master *master, struct spi_message *msg) |
| 639 | { |
| 640 | struct spi_transfer *xfer; |
| 641 | void *tmp; |
| 642 | unsigned int max_tx, max_rx; |
| 643 | |
| 644 | if (master->flags & (SPI_MASTER_MUST_RX | SPI_MASTER_MUST_TX)) { |
| 645 | max_tx = 0; |
| 646 | max_rx = 0; |
| 647 | |
| 648 | list_for_each_entry(xfer, &msg->transfers, transfer_list) { |
| 649 | if ((master->flags & SPI_MASTER_MUST_TX) && |
| 650 | !xfer->tx_buf) |
| 651 | max_tx = max(xfer->len, max_tx); |
| 652 | if ((master->flags & SPI_MASTER_MUST_RX) && |
| 653 | !xfer->rx_buf) |
| 654 | max_rx = max(xfer->len, max_rx); |
| 655 | } |
| 656 | |
| 657 | if (max_tx) { |
| 658 | tmp = krealloc(master->dummy_tx, max_tx, |
| 659 | GFP_KERNEL | GFP_DMA); |
| 660 | if (!tmp) |
| 661 | return -ENOMEM; |
| 662 | master->dummy_tx = tmp; |
| 663 | memset(tmp, 0, max_tx); |
| 664 | } |
| 665 | |
| 666 | if (max_rx) { |
| 667 | tmp = krealloc(master->dummy_rx, max_rx, |
| 668 | GFP_KERNEL | GFP_DMA); |
| 669 | if (!tmp) |
| 670 | return -ENOMEM; |
| 671 | master->dummy_rx = tmp; |
| 672 | } |
| 673 | |
| 674 | if (max_tx || max_rx) { |
| 675 | list_for_each_entry(xfer, &msg->transfers, |
| 676 | transfer_list) { |
| 677 | if (!xfer->tx_buf) |
| 678 | xfer->tx_buf = master->dummy_tx; |
| 679 | if (!xfer->rx_buf) |
| 680 | xfer->rx_buf = master->dummy_rx; |
| 681 | } |
| 682 | } |
| 683 | } |
| 684 | |
| 685 | return __spi_map_msg(master, msg); |
| 686 | } |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 687 | |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 688 | /* |
| 689 | * spi_transfer_one_message - Default implementation of transfer_one_message() |
| 690 | * |
| 691 | * This is a standard implementation of transfer_one_message() for |
| 692 | * drivers which impelment a transfer_one() operation. It provides |
| 693 | * standard handling of delays and chip select management. |
| 694 | */ |
| 695 | static int spi_transfer_one_message(struct spi_master *master, |
| 696 | struct spi_message *msg) |
| 697 | { |
| 698 | struct spi_transfer *xfer; |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 699 | bool keep_cs = false; |
| 700 | int ret = 0; |
Nicholas Mc Guire | 682a71b | 2015-02-02 03:30:32 -0500 | [diff] [blame] | 701 | unsigned long ms = 1; |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 702 | |
| 703 | spi_set_cs(msg->spi, true); |
| 704 | |
| 705 | list_for_each_entry(xfer, &msg->transfers, transfer_list) { |
| 706 | trace_spi_transfer_start(msg, xfer); |
| 707 | |
Mark Brown | 38ec10f | 2014-08-16 16:27:41 +0100 | [diff] [blame] | 708 | if (xfer->tx_buf || xfer->rx_buf) { |
| 709 | reinit_completion(&master->xfer_completion); |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 710 | |
Mark Brown | 38ec10f | 2014-08-16 16:27:41 +0100 | [diff] [blame] | 711 | ret = master->transfer_one(master, msg->spi, xfer); |
| 712 | if (ret < 0) { |
| 713 | dev_err(&msg->spi->dev, |
| 714 | "SPI transfer failed: %d\n", ret); |
| 715 | goto out; |
| 716 | } |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 717 | |
Mark Brown | 38ec10f | 2014-08-16 16:27:41 +0100 | [diff] [blame] | 718 | if (ret > 0) { |
| 719 | ret = 0; |
| 720 | ms = xfer->len * 8 * 1000 / xfer->speed_hz; |
| 721 | ms += ms + 100; /* some tolerance */ |
Mark Brown | 16a0ce4 | 2014-01-30 22:16:41 +0000 | [diff] [blame] | 722 | |
Mark Brown | 38ec10f | 2014-08-16 16:27:41 +0100 | [diff] [blame] | 723 | ms = wait_for_completion_timeout(&master->xfer_completion, |
| 724 | msecs_to_jiffies(ms)); |
| 725 | } |
Mark Brown | 16a0ce4 | 2014-01-30 22:16:41 +0000 | [diff] [blame] | 726 | |
Mark Brown | 38ec10f | 2014-08-16 16:27:41 +0100 | [diff] [blame] | 727 | if (ms == 0) { |
| 728 | dev_err(&msg->spi->dev, |
| 729 | "SPI transfer timed out\n"); |
| 730 | msg->status = -ETIMEDOUT; |
| 731 | } |
| 732 | } else { |
| 733 | if (xfer->len) |
| 734 | dev_err(&msg->spi->dev, |
| 735 | "Bufferless transfer has length %u\n", |
| 736 | xfer->len); |
Axel Lin | 13a4279 | 2014-01-18 22:05:22 +0800 | [diff] [blame] | 737 | } |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 738 | |
| 739 | trace_spi_transfer_stop(msg, xfer); |
| 740 | |
| 741 | if (msg->status != -EINPROGRESS) |
| 742 | goto out; |
| 743 | |
| 744 | if (xfer->delay_usecs) |
| 745 | udelay(xfer->delay_usecs); |
| 746 | |
| 747 | if (xfer->cs_change) { |
| 748 | if (list_is_last(&xfer->transfer_list, |
| 749 | &msg->transfers)) { |
| 750 | keep_cs = true; |
| 751 | } else { |
Mark Brown | 0b73aa6 | 2014-03-29 23:48:07 +0000 | [diff] [blame] | 752 | spi_set_cs(msg->spi, false); |
| 753 | udelay(10); |
| 754 | spi_set_cs(msg->spi, true); |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 755 | } |
| 756 | } |
| 757 | |
| 758 | msg->actual_length += xfer->len; |
| 759 | } |
| 760 | |
| 761 | out: |
| 762 | if (ret != 0 || !keep_cs) |
| 763 | spi_set_cs(msg->spi, false); |
| 764 | |
| 765 | if (msg->status == -EINPROGRESS) |
| 766 | msg->status = ret; |
| 767 | |
Geert Uytterhoeven | ff61eb4 | 2015-04-07 20:39:19 +0200 | [diff] [blame] | 768 | if (msg->status && master->handle_err) |
Andy Shevchenko | b716c4f | 2015-02-27 17:34:15 +0200 | [diff] [blame] | 769 | master->handle_err(master, msg); |
| 770 | |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 771 | spi_finalize_current_message(master); |
| 772 | |
| 773 | return ret; |
| 774 | } |
| 775 | |
| 776 | /** |
| 777 | * spi_finalize_current_transfer - report completion of a transfer |
Thierry Reding | 2c67568 | 2014-08-08 13:02:36 +0200 | [diff] [blame] | 778 | * @master: the master reporting completion |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 779 | * |
| 780 | * Called by SPI drivers using the core transfer_one_message() |
| 781 | * implementation to notify it that the current interrupt driven |
Geert Uytterhoeven | 9e8f488 | 2014-01-21 16:10:05 +0100 | [diff] [blame] | 782 | * transfer has finished and the next one may be scheduled. |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 783 | */ |
| 784 | void spi_finalize_current_transfer(struct spi_master *master) |
| 785 | { |
| 786 | complete(&master->xfer_completion); |
| 787 | } |
| 788 | EXPORT_SYMBOL_GPL(spi_finalize_current_transfer); |
| 789 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 790 | /** |
Mark Brown | fc9e0f7 | 2014-12-10 13:46:33 +0000 | [diff] [blame] | 791 | * __spi_pump_messages - function which processes spi message queue |
| 792 | * @master: master to process queue for |
| 793 | * @in_kthread: true if we are in the context of the message pump thread |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 794 | * |
| 795 | * This function checks if there is any spi message in the queue that |
| 796 | * needs processing and if so call out to the driver to initialize hardware |
| 797 | * and transfer each message. |
| 798 | * |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 799 | * Note that it is called both from the kthread itself and also from |
| 800 | * inside spi_sync(); the queue extraction handling at the top of the |
| 801 | * function should deal with this safely. |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 802 | */ |
Mark Brown | fc9e0f7 | 2014-12-10 13:46:33 +0000 | [diff] [blame] | 803 | static void __spi_pump_messages(struct spi_master *master, bool in_kthread) |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 804 | { |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 805 | unsigned long flags; |
| 806 | bool was_busy = false; |
| 807 | int ret; |
| 808 | |
Mark Brown | 983aee5 | 2014-12-09 19:46:56 +0000 | [diff] [blame] | 809 | /* Lock queue */ |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 810 | spin_lock_irqsave(&master->queue_lock, flags); |
Mark Brown | 983aee5 | 2014-12-09 19:46:56 +0000 | [diff] [blame] | 811 | |
| 812 | /* Make sure we are not already running a message */ |
| 813 | if (master->cur_msg) { |
| 814 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 815 | return; |
| 816 | } |
| 817 | |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 818 | /* If another context is idling the device then defer */ |
| 819 | if (master->idling) { |
| 820 | queue_kthread_work(&master->kworker, &master->pump_messages); |
| 821 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 822 | return; |
| 823 | } |
| 824 | |
Mark Brown | 983aee5 | 2014-12-09 19:46:56 +0000 | [diff] [blame] | 825 | /* Check if the queue is idle */ |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 826 | if (list_empty(&master->queue) || !master->running) { |
Bryan Freed | b0b36b8 | 2013-03-13 11:17:40 -0700 | [diff] [blame] | 827 | if (!master->busy) { |
| 828 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 829 | return; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 830 | } |
Mark Brown | fc9e0f7 | 2014-12-10 13:46:33 +0000 | [diff] [blame] | 831 | |
| 832 | /* Only do teardown in the thread */ |
| 833 | if (!in_kthread) { |
| 834 | queue_kthread_work(&master->kworker, |
| 835 | &master->pump_messages); |
| 836 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 837 | return; |
| 838 | } |
| 839 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 840 | master->busy = false; |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 841 | master->idling = true; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 842 | spin_unlock_irqrestore(&master->queue_lock, flags); |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 843 | |
Mark Brown | 3a2eba9 | 2014-01-28 20:17:03 +0000 | [diff] [blame] | 844 | kfree(master->dummy_rx); |
| 845 | master->dummy_rx = NULL; |
| 846 | kfree(master->dummy_tx); |
| 847 | master->dummy_tx = NULL; |
Bryan Freed | b0b36b8 | 2013-03-13 11:17:40 -0700 | [diff] [blame] | 848 | if (master->unprepare_transfer_hardware && |
| 849 | master->unprepare_transfer_hardware(master)) |
| 850 | dev_err(&master->dev, |
| 851 | "failed to unprepare transfer hardware\n"); |
Mark Brown | 49834de | 2013-07-28 14:47:02 +0100 | [diff] [blame] | 852 | if (master->auto_runtime_pm) { |
| 853 | pm_runtime_mark_last_busy(master->dev.parent); |
| 854 | pm_runtime_put_autosuspend(master->dev.parent); |
| 855 | } |
Mark Brown | 56ec197 | 2013-10-07 19:33:53 +0100 | [diff] [blame] | 856 | trace_spi_master_idle(master); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 857 | |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 858 | spin_lock_irqsave(&master->queue_lock, flags); |
| 859 | master->idling = false; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 860 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 861 | return; |
| 862 | } |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 863 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 864 | /* Extract head of queue */ |
| 865 | master->cur_msg = |
Axel Lin | a89e2d2 | 2014-01-09 16:03:58 +0800 | [diff] [blame] | 866 | list_first_entry(&master->queue, struct spi_message, queue); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 867 | |
| 868 | list_del_init(&master->cur_msg->queue); |
| 869 | if (master->busy) |
| 870 | was_busy = true; |
| 871 | else |
| 872 | master->busy = true; |
| 873 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 874 | |
Mark Brown | 49834de | 2013-07-28 14:47:02 +0100 | [diff] [blame] | 875 | if (!was_busy && master->auto_runtime_pm) { |
| 876 | ret = pm_runtime_get_sync(master->dev.parent); |
| 877 | if (ret < 0) { |
| 878 | dev_err(&master->dev, "Failed to power device: %d\n", |
| 879 | ret); |
| 880 | return; |
| 881 | } |
| 882 | } |
| 883 | |
Mark Brown | 56ec197 | 2013-10-07 19:33:53 +0100 | [diff] [blame] | 884 | if (!was_busy) |
| 885 | trace_spi_master_busy(master); |
| 886 | |
Shubhrajyoti D | 7dfd2bd | 2012-05-10 19:20:41 +0530 | [diff] [blame] | 887 | if (!was_busy && master->prepare_transfer_hardware) { |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 888 | ret = master->prepare_transfer_hardware(master); |
| 889 | if (ret) { |
| 890 | dev_err(&master->dev, |
| 891 | "failed to prepare transfer hardware\n"); |
Mark Brown | 49834de | 2013-07-28 14:47:02 +0100 | [diff] [blame] | 892 | |
| 893 | if (master->auto_runtime_pm) |
| 894 | pm_runtime_put(master->dev.parent); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 895 | return; |
| 896 | } |
| 897 | } |
| 898 | |
Mark Brown | 56ec197 | 2013-10-07 19:33:53 +0100 | [diff] [blame] | 899 | trace_spi_message_start(master->cur_msg); |
| 900 | |
Mark Brown | 2841a5f | 2013-10-05 00:23:12 +0100 | [diff] [blame] | 901 | if (master->prepare_message) { |
| 902 | ret = master->prepare_message(master, master->cur_msg); |
| 903 | if (ret) { |
| 904 | dev_err(&master->dev, |
| 905 | "failed to prepare message: %d\n", ret); |
| 906 | master->cur_msg->status = ret; |
| 907 | spi_finalize_current_message(master); |
| 908 | return; |
| 909 | } |
| 910 | master->cur_msg_prepared = true; |
| 911 | } |
| 912 | |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 913 | ret = spi_map_msg(master, master->cur_msg); |
| 914 | if (ret) { |
| 915 | master->cur_msg->status = ret; |
| 916 | spi_finalize_current_message(master); |
| 917 | return; |
| 918 | } |
| 919 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 920 | ret = master->transfer_one_message(master, master->cur_msg); |
| 921 | if (ret) { |
| 922 | dev_err(&master->dev, |
Geert Uytterhoeven | 1f802f8 | 2014-01-28 10:33:03 +0100 | [diff] [blame] | 923 | "failed to transfer one message from queue\n"); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 924 | return; |
| 925 | } |
| 926 | } |
| 927 | |
Mark Brown | fc9e0f7 | 2014-12-10 13:46:33 +0000 | [diff] [blame] | 928 | /** |
| 929 | * spi_pump_messages - kthread work function which processes spi message queue |
| 930 | * @work: pointer to kthread work struct contained in the master struct |
| 931 | */ |
| 932 | static void spi_pump_messages(struct kthread_work *work) |
| 933 | { |
| 934 | struct spi_master *master = |
| 935 | container_of(work, struct spi_master, pump_messages); |
| 936 | |
| 937 | __spi_pump_messages(master, true); |
| 938 | } |
| 939 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 940 | static int spi_init_queue(struct spi_master *master) |
| 941 | { |
| 942 | struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 }; |
| 943 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 944 | master->running = false; |
| 945 | master->busy = false; |
| 946 | |
| 947 | init_kthread_worker(&master->kworker); |
| 948 | master->kworker_task = kthread_run(kthread_worker_fn, |
Kees Cook | f170168 | 2013-07-03 15:04:58 -0700 | [diff] [blame] | 949 | &master->kworker, "%s", |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 950 | dev_name(&master->dev)); |
| 951 | if (IS_ERR(master->kworker_task)) { |
| 952 | dev_err(&master->dev, "failed to create message pump task\n"); |
Jarkko Nikula | 98a8f5a | 2014-12-04 11:02:25 +0200 | [diff] [blame] | 953 | return PTR_ERR(master->kworker_task); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 954 | } |
| 955 | init_kthread_work(&master->pump_messages, spi_pump_messages); |
| 956 | |
| 957 | /* |
| 958 | * Master config will indicate if this controller should run the |
| 959 | * message pump with high (realtime) priority to reduce the transfer |
| 960 | * latency on the bus by minimising the delay between a transfer |
| 961 | * request and the scheduling of the message pump thread. Without this |
| 962 | * setting the message pump thread will remain at default priority. |
| 963 | */ |
| 964 | if (master->rt) { |
| 965 | dev_info(&master->dev, |
| 966 | "will run message pump with realtime priority\n"); |
| 967 | sched_setscheduler(master->kworker_task, SCHED_FIFO, ¶m); |
| 968 | } |
| 969 | |
| 970 | return 0; |
| 971 | } |
| 972 | |
| 973 | /** |
| 974 | * spi_get_next_queued_message() - called by driver to check for queued |
| 975 | * messages |
| 976 | * @master: the master to check for queued messages |
| 977 | * |
| 978 | * If there are more messages in the queue, the next message is returned from |
| 979 | * this call. |
| 980 | */ |
| 981 | struct spi_message *spi_get_next_queued_message(struct spi_master *master) |
| 982 | { |
| 983 | struct spi_message *next; |
| 984 | unsigned long flags; |
| 985 | |
| 986 | /* get a pointer to the next message, if any */ |
| 987 | spin_lock_irqsave(&master->queue_lock, flags); |
Axel Lin | 1cfd97f | 2014-01-02 15:16:40 +0800 | [diff] [blame] | 988 | next = list_first_entry_or_null(&master->queue, struct spi_message, |
| 989 | queue); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 990 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 991 | |
| 992 | return next; |
| 993 | } |
| 994 | EXPORT_SYMBOL_GPL(spi_get_next_queued_message); |
| 995 | |
| 996 | /** |
| 997 | * spi_finalize_current_message() - the current message is complete |
| 998 | * @master: the master to return the message to |
| 999 | * |
| 1000 | * Called by the driver to notify the core that the message in the front of the |
| 1001 | * queue is complete and can be removed from the queue. |
| 1002 | */ |
| 1003 | void spi_finalize_current_message(struct spi_master *master) |
| 1004 | { |
| 1005 | struct spi_message *mesg; |
| 1006 | unsigned long flags; |
Mark Brown | 2841a5f | 2013-10-05 00:23:12 +0100 | [diff] [blame] | 1007 | int ret; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1008 | |
| 1009 | spin_lock_irqsave(&master->queue_lock, flags); |
| 1010 | mesg = master->cur_msg; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1011 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 1012 | |
Mark Brown | 99adef3 | 2014-01-16 12:22:43 +0000 | [diff] [blame] | 1013 | spi_unmap_msg(master, mesg); |
| 1014 | |
Mark Brown | 2841a5f | 2013-10-05 00:23:12 +0100 | [diff] [blame] | 1015 | if (master->cur_msg_prepared && master->unprepare_message) { |
| 1016 | ret = master->unprepare_message(master, mesg); |
| 1017 | if (ret) { |
| 1018 | dev_err(&master->dev, |
| 1019 | "failed to unprepare message: %d\n", ret); |
| 1020 | } |
| 1021 | } |
Uwe Kleine-König | 391949b | 2015-03-18 11:27:28 +0100 | [diff] [blame] | 1022 | |
Martin Sperl | 8e76ef8 | 2015-05-10 07:50:45 +0000 | [diff] [blame] | 1023 | spin_lock_irqsave(&master->queue_lock, flags); |
| 1024 | master->cur_msg = NULL; |
Mark Brown | 2841a5f | 2013-10-05 00:23:12 +0100 | [diff] [blame] | 1025 | master->cur_msg_prepared = false; |
Martin Sperl | 8e76ef8 | 2015-05-10 07:50:45 +0000 | [diff] [blame] | 1026 | queue_kthread_work(&master->kworker, &master->pump_messages); |
| 1027 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 1028 | |
| 1029 | trace_spi_message_done(mesg); |
Mark Brown | 2841a5f | 2013-10-05 00:23:12 +0100 | [diff] [blame] | 1030 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1031 | mesg->state = NULL; |
| 1032 | if (mesg->complete) |
| 1033 | mesg->complete(mesg->context); |
| 1034 | } |
| 1035 | EXPORT_SYMBOL_GPL(spi_finalize_current_message); |
| 1036 | |
| 1037 | static int spi_start_queue(struct spi_master *master) |
| 1038 | { |
| 1039 | unsigned long flags; |
| 1040 | |
| 1041 | spin_lock_irqsave(&master->queue_lock, flags); |
| 1042 | |
| 1043 | if (master->running || master->busy) { |
| 1044 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 1045 | return -EBUSY; |
| 1046 | } |
| 1047 | |
| 1048 | master->running = true; |
| 1049 | master->cur_msg = NULL; |
| 1050 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 1051 | |
| 1052 | queue_kthread_work(&master->kworker, &master->pump_messages); |
| 1053 | |
| 1054 | return 0; |
| 1055 | } |
| 1056 | |
| 1057 | static int spi_stop_queue(struct spi_master *master) |
| 1058 | { |
| 1059 | unsigned long flags; |
| 1060 | unsigned limit = 500; |
| 1061 | int ret = 0; |
| 1062 | |
| 1063 | spin_lock_irqsave(&master->queue_lock, flags); |
| 1064 | |
| 1065 | /* |
| 1066 | * This is a bit lame, but is optimized for the common execution path. |
| 1067 | * A wait_queue on the master->busy could be used, but then the common |
| 1068 | * execution path (pump_messages) would be required to call wake_up or |
| 1069 | * friends on every SPI message. Do this instead. |
| 1070 | */ |
| 1071 | while ((!list_empty(&master->queue) || master->busy) && limit--) { |
| 1072 | spin_unlock_irqrestore(&master->queue_lock, flags); |
Axel Lin | f97b26b | 2014-02-21 09:15:18 +0800 | [diff] [blame] | 1073 | usleep_range(10000, 11000); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1074 | spin_lock_irqsave(&master->queue_lock, flags); |
| 1075 | } |
| 1076 | |
| 1077 | if (!list_empty(&master->queue) || master->busy) |
| 1078 | ret = -EBUSY; |
| 1079 | else |
| 1080 | master->running = false; |
| 1081 | |
| 1082 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 1083 | |
| 1084 | if (ret) { |
| 1085 | dev_warn(&master->dev, |
| 1086 | "could not stop message queue\n"); |
| 1087 | return ret; |
| 1088 | } |
| 1089 | return ret; |
| 1090 | } |
| 1091 | |
| 1092 | static int spi_destroy_queue(struct spi_master *master) |
| 1093 | { |
| 1094 | int ret; |
| 1095 | |
| 1096 | ret = spi_stop_queue(master); |
| 1097 | |
| 1098 | /* |
| 1099 | * flush_kthread_worker will block until all work is done. |
| 1100 | * If the reason that stop_queue timed out is that the work will never |
| 1101 | * finish, then it does no good to call flush/stop thread, so |
| 1102 | * return anyway. |
| 1103 | */ |
| 1104 | if (ret) { |
| 1105 | dev_err(&master->dev, "problem destroying queue\n"); |
| 1106 | return ret; |
| 1107 | } |
| 1108 | |
| 1109 | flush_kthread_worker(&master->kworker); |
| 1110 | kthread_stop(master->kworker_task); |
| 1111 | |
| 1112 | return 0; |
| 1113 | } |
| 1114 | |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 1115 | static int __spi_queued_transfer(struct spi_device *spi, |
| 1116 | struct spi_message *msg, |
| 1117 | bool need_pump) |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1118 | { |
| 1119 | struct spi_master *master = spi->master; |
| 1120 | unsigned long flags; |
| 1121 | |
| 1122 | spin_lock_irqsave(&master->queue_lock, flags); |
| 1123 | |
| 1124 | if (!master->running) { |
| 1125 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 1126 | return -ESHUTDOWN; |
| 1127 | } |
| 1128 | msg->actual_length = 0; |
| 1129 | msg->status = -EINPROGRESS; |
| 1130 | |
| 1131 | list_add_tail(&msg->queue, &master->queue); |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 1132 | if (!master->busy && need_pump) |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1133 | queue_kthread_work(&master->kworker, &master->pump_messages); |
| 1134 | |
| 1135 | spin_unlock_irqrestore(&master->queue_lock, flags); |
| 1136 | return 0; |
| 1137 | } |
| 1138 | |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 1139 | /** |
| 1140 | * spi_queued_transfer - transfer function for queued transfers |
| 1141 | * @spi: spi device which is requesting transfer |
| 1142 | * @msg: spi message which is to handled is queued to driver queue |
| 1143 | */ |
| 1144 | static int spi_queued_transfer(struct spi_device *spi, struct spi_message *msg) |
| 1145 | { |
| 1146 | return __spi_queued_transfer(spi, msg, true); |
| 1147 | } |
| 1148 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1149 | static int spi_master_initialize_queue(struct spi_master *master) |
| 1150 | { |
| 1151 | int ret; |
| 1152 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1153 | master->transfer = spi_queued_transfer; |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 1154 | if (!master->transfer_one_message) |
| 1155 | master->transfer_one_message = spi_transfer_one_message; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1156 | |
| 1157 | /* Initialize and start queue */ |
| 1158 | ret = spi_init_queue(master); |
| 1159 | if (ret) { |
| 1160 | dev_err(&master->dev, "problem initializing queue\n"); |
| 1161 | goto err_init_queue; |
| 1162 | } |
Mark Brown | c3676d5 | 2014-05-01 10:47:52 -0700 | [diff] [blame] | 1163 | master->queued = true; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1164 | ret = spi_start_queue(master); |
| 1165 | if (ret) { |
| 1166 | dev_err(&master->dev, "problem starting queue\n"); |
| 1167 | goto err_start_queue; |
| 1168 | } |
| 1169 | |
| 1170 | return 0; |
| 1171 | |
| 1172 | err_start_queue: |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1173 | spi_destroy_queue(master); |
Mark Brown | c3676d5 | 2014-05-01 10:47:52 -0700 | [diff] [blame] | 1174 | err_init_queue: |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1175 | return ret; |
| 1176 | } |
| 1177 | |
| 1178 | /*-------------------------------------------------------------------------*/ |
| 1179 | |
Andreas Larsson | 7cb9436 | 2012-12-04 15:09:38 +0100 | [diff] [blame] | 1180 | #if defined(CONFIG_OF) |
Pantelis Antoniou | aff5e3f | 2014-10-29 10:40:37 +0200 | [diff] [blame] | 1181 | static struct spi_device * |
| 1182 | of_register_spi_device(struct spi_master *master, struct device_node *nc) |
| 1183 | { |
| 1184 | struct spi_device *spi; |
| 1185 | int rc; |
| 1186 | u32 value; |
| 1187 | |
| 1188 | /* Alloc an spi_device */ |
| 1189 | spi = spi_alloc_device(master); |
| 1190 | if (!spi) { |
| 1191 | dev_err(&master->dev, "spi_device alloc error for %s\n", |
| 1192 | nc->full_name); |
| 1193 | rc = -ENOMEM; |
| 1194 | goto err_out; |
| 1195 | } |
| 1196 | |
| 1197 | /* Select device driver */ |
| 1198 | rc = of_modalias_node(nc, spi->modalias, |
| 1199 | sizeof(spi->modalias)); |
| 1200 | if (rc < 0) { |
| 1201 | dev_err(&master->dev, "cannot find modalias for %s\n", |
| 1202 | nc->full_name); |
| 1203 | goto err_out; |
| 1204 | } |
| 1205 | |
| 1206 | /* Device address */ |
| 1207 | rc = of_property_read_u32(nc, "reg", &value); |
| 1208 | if (rc) { |
| 1209 | dev_err(&master->dev, "%s has no valid 'reg' property (%d)\n", |
| 1210 | nc->full_name, rc); |
| 1211 | goto err_out; |
| 1212 | } |
| 1213 | spi->chip_select = value; |
| 1214 | |
| 1215 | /* Mode (clock phase/polarity/etc.) */ |
| 1216 | if (of_find_property(nc, "spi-cpha", NULL)) |
| 1217 | spi->mode |= SPI_CPHA; |
| 1218 | if (of_find_property(nc, "spi-cpol", NULL)) |
| 1219 | spi->mode |= SPI_CPOL; |
| 1220 | if (of_find_property(nc, "spi-cs-high", NULL)) |
| 1221 | spi->mode |= SPI_CS_HIGH; |
| 1222 | if (of_find_property(nc, "spi-3wire", NULL)) |
| 1223 | spi->mode |= SPI_3WIRE; |
| 1224 | if (of_find_property(nc, "spi-lsb-first", NULL)) |
| 1225 | spi->mode |= SPI_LSB_FIRST; |
| 1226 | |
| 1227 | /* Device DUAL/QUAD mode */ |
| 1228 | if (!of_property_read_u32(nc, "spi-tx-bus-width", &value)) { |
| 1229 | switch (value) { |
| 1230 | case 1: |
| 1231 | break; |
| 1232 | case 2: |
| 1233 | spi->mode |= SPI_TX_DUAL; |
| 1234 | break; |
| 1235 | case 4: |
| 1236 | spi->mode |= SPI_TX_QUAD; |
| 1237 | break; |
| 1238 | default: |
| 1239 | dev_warn(&master->dev, |
| 1240 | "spi-tx-bus-width %d not supported\n", |
| 1241 | value); |
| 1242 | break; |
| 1243 | } |
| 1244 | } |
| 1245 | |
| 1246 | if (!of_property_read_u32(nc, "spi-rx-bus-width", &value)) { |
| 1247 | switch (value) { |
| 1248 | case 1: |
| 1249 | break; |
| 1250 | case 2: |
| 1251 | spi->mode |= SPI_RX_DUAL; |
| 1252 | break; |
| 1253 | case 4: |
| 1254 | spi->mode |= SPI_RX_QUAD; |
| 1255 | break; |
| 1256 | default: |
| 1257 | dev_warn(&master->dev, |
| 1258 | "spi-rx-bus-width %d not supported\n", |
| 1259 | value); |
| 1260 | break; |
| 1261 | } |
| 1262 | } |
| 1263 | |
| 1264 | /* Device speed */ |
| 1265 | rc = of_property_read_u32(nc, "spi-max-frequency", &value); |
| 1266 | if (rc) { |
| 1267 | dev_err(&master->dev, "%s has no valid 'spi-max-frequency' property (%d)\n", |
| 1268 | nc->full_name, rc); |
| 1269 | goto err_out; |
| 1270 | } |
| 1271 | spi->max_speed_hz = value; |
| 1272 | |
| 1273 | /* IRQ */ |
| 1274 | spi->irq = irq_of_parse_and_map(nc, 0); |
| 1275 | |
| 1276 | /* Store a pointer to the node in the device structure */ |
| 1277 | of_node_get(nc); |
| 1278 | spi->dev.of_node = nc; |
| 1279 | |
| 1280 | /* Register the new device */ |
Pantelis Antoniou | aff5e3f | 2014-10-29 10:40:37 +0200 | [diff] [blame] | 1281 | rc = spi_add_device(spi); |
| 1282 | if (rc) { |
| 1283 | dev_err(&master->dev, "spi_device register error %s\n", |
| 1284 | nc->full_name); |
| 1285 | goto err_out; |
| 1286 | } |
| 1287 | |
| 1288 | return spi; |
| 1289 | |
| 1290 | err_out: |
| 1291 | spi_dev_put(spi); |
| 1292 | return ERR_PTR(rc); |
| 1293 | } |
| 1294 | |
Grant Likely | d57a428 | 2012-04-07 14:16:53 -0600 | [diff] [blame] | 1295 | /** |
| 1296 | * of_register_spi_devices() - Register child devices onto the SPI bus |
| 1297 | * @master: Pointer to spi_master device |
| 1298 | * |
| 1299 | * Registers an spi_device for each child node of master node which has a 'reg' |
| 1300 | * property. |
| 1301 | */ |
| 1302 | static void of_register_spi_devices(struct spi_master *master) |
| 1303 | { |
| 1304 | struct spi_device *spi; |
| 1305 | struct device_node *nc; |
Grant Likely | d57a428 | 2012-04-07 14:16:53 -0600 | [diff] [blame] | 1306 | |
| 1307 | if (!master->dev.of_node) |
| 1308 | return; |
| 1309 | |
Alexander Sverdlin | f3b6159 | 2012-11-29 08:59:29 +0100 | [diff] [blame] | 1310 | for_each_available_child_of_node(master->dev.of_node, nc) { |
Pantelis Antoniou | aff5e3f | 2014-10-29 10:40:37 +0200 | [diff] [blame] | 1311 | spi = of_register_spi_device(master, nc); |
| 1312 | if (IS_ERR(spi)) |
| 1313 | dev_warn(&master->dev, "Failed to create SPI device for %s\n", |
Grant Likely | d57a428 | 2012-04-07 14:16:53 -0600 | [diff] [blame] | 1314 | nc->full_name); |
Grant Likely | d57a428 | 2012-04-07 14:16:53 -0600 | [diff] [blame] | 1315 | } |
| 1316 | } |
| 1317 | #else |
| 1318 | static void of_register_spi_devices(struct spi_master *master) { } |
| 1319 | #endif |
| 1320 | |
Mika Westerberg | 64bee4d | 2012-11-30 12:37:53 +0100 | [diff] [blame] | 1321 | #ifdef CONFIG_ACPI |
| 1322 | static int acpi_spi_add_resource(struct acpi_resource *ares, void *data) |
| 1323 | { |
| 1324 | struct spi_device *spi = data; |
| 1325 | |
| 1326 | if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) { |
| 1327 | struct acpi_resource_spi_serialbus *sb; |
| 1328 | |
| 1329 | sb = &ares->data.spi_serial_bus; |
| 1330 | if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_SPI) { |
| 1331 | spi->chip_select = sb->device_selection; |
| 1332 | spi->max_speed_hz = sb->connection_speed; |
| 1333 | |
| 1334 | if (sb->clock_phase == ACPI_SPI_SECOND_PHASE) |
| 1335 | spi->mode |= SPI_CPHA; |
| 1336 | if (sb->clock_polarity == ACPI_SPI_START_HIGH) |
| 1337 | spi->mode |= SPI_CPOL; |
| 1338 | if (sb->device_polarity == ACPI_SPI_ACTIVE_HIGH) |
| 1339 | spi->mode |= SPI_CS_HIGH; |
| 1340 | } |
| 1341 | } else if (spi->irq < 0) { |
| 1342 | struct resource r; |
| 1343 | |
| 1344 | if (acpi_dev_resource_interrupt(ares, 0, &r)) |
| 1345 | spi->irq = r.start; |
| 1346 | } |
| 1347 | |
| 1348 | /* Always tell the ACPI core to skip this resource */ |
| 1349 | return 1; |
| 1350 | } |
| 1351 | |
| 1352 | static acpi_status acpi_spi_add_device(acpi_handle handle, u32 level, |
| 1353 | void *data, void **return_value) |
| 1354 | { |
| 1355 | struct spi_master *master = data; |
| 1356 | struct list_head resource_list; |
| 1357 | struct acpi_device *adev; |
| 1358 | struct spi_device *spi; |
| 1359 | int ret; |
| 1360 | |
| 1361 | if (acpi_bus_get_device(handle, &adev)) |
| 1362 | return AE_OK; |
| 1363 | if (acpi_bus_get_status(adev) || !adev->status.present) |
| 1364 | return AE_OK; |
| 1365 | |
| 1366 | spi = spi_alloc_device(master); |
| 1367 | if (!spi) { |
| 1368 | dev_err(&master->dev, "failed to allocate SPI device for %s\n", |
| 1369 | dev_name(&adev->dev)); |
| 1370 | return AE_NO_MEMORY; |
| 1371 | } |
| 1372 | |
Rafael J. Wysocki | 7b19981 | 2013-11-11 22:41:56 +0100 | [diff] [blame] | 1373 | ACPI_COMPANION_SET(&spi->dev, adev); |
Mika Westerberg | 64bee4d | 2012-11-30 12:37:53 +0100 | [diff] [blame] | 1374 | spi->irq = -1; |
| 1375 | |
| 1376 | INIT_LIST_HEAD(&resource_list); |
| 1377 | ret = acpi_dev_get_resources(adev, &resource_list, |
| 1378 | acpi_spi_add_resource, spi); |
| 1379 | acpi_dev_free_resource_list(&resource_list); |
| 1380 | |
| 1381 | if (ret < 0 || !spi->max_speed_hz) { |
| 1382 | spi_dev_put(spi); |
| 1383 | return AE_OK; |
| 1384 | } |
| 1385 | |
Mika Westerberg | 33cf00e | 2013-10-10 13:28:48 +0300 | [diff] [blame] | 1386 | adev->power.flags.ignore_parent = true; |
Jarkko Nikula | cf9eb39 | 2013-10-10 17:19:17 +0300 | [diff] [blame] | 1387 | strlcpy(spi->modalias, acpi_device_hid(adev), sizeof(spi->modalias)); |
Mika Westerberg | 64bee4d | 2012-11-30 12:37:53 +0100 | [diff] [blame] | 1388 | if (spi_add_device(spi)) { |
Mika Westerberg | 33cf00e | 2013-10-10 13:28:48 +0300 | [diff] [blame] | 1389 | adev->power.flags.ignore_parent = false; |
Mika Westerberg | 64bee4d | 2012-11-30 12:37:53 +0100 | [diff] [blame] | 1390 | dev_err(&master->dev, "failed to add SPI device %s from ACPI\n", |
| 1391 | dev_name(&adev->dev)); |
| 1392 | spi_dev_put(spi); |
| 1393 | } |
| 1394 | |
| 1395 | return AE_OK; |
| 1396 | } |
| 1397 | |
| 1398 | static void acpi_register_spi_devices(struct spi_master *master) |
| 1399 | { |
| 1400 | acpi_status status; |
| 1401 | acpi_handle handle; |
| 1402 | |
Rafael J. Wysocki | 2989617 | 2013-04-01 00:21:08 +0000 | [diff] [blame] | 1403 | handle = ACPI_HANDLE(master->dev.parent); |
Mika Westerberg | 64bee4d | 2012-11-30 12:37:53 +0100 | [diff] [blame] | 1404 | if (!handle) |
| 1405 | return; |
| 1406 | |
| 1407 | status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1, |
| 1408 | acpi_spi_add_device, NULL, |
| 1409 | master, NULL); |
| 1410 | if (ACPI_FAILURE(status)) |
| 1411 | dev_warn(&master->dev, "failed to enumerate SPI slaves\n"); |
| 1412 | } |
| 1413 | #else |
| 1414 | static inline void acpi_register_spi_devices(struct spi_master *master) {} |
| 1415 | #endif /* CONFIG_ACPI */ |
| 1416 | |
Tony Jones | 49dce68 | 2007-10-16 01:27:48 -0700 | [diff] [blame] | 1417 | static void spi_master_release(struct device *dev) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1418 | { |
| 1419 | struct spi_master *master; |
| 1420 | |
Tony Jones | 49dce68 | 2007-10-16 01:27:48 -0700 | [diff] [blame] | 1421 | master = container_of(dev, struct spi_master, dev); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1422 | kfree(master); |
| 1423 | } |
| 1424 | |
| 1425 | static struct class spi_master_class = { |
| 1426 | .name = "spi_master", |
| 1427 | .owner = THIS_MODULE, |
Tony Jones | 49dce68 | 2007-10-16 01:27:48 -0700 | [diff] [blame] | 1428 | .dev_release = spi_master_release, |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1429 | }; |
| 1430 | |
| 1431 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1432 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1433 | /** |
| 1434 | * spi_alloc_master - allocate SPI master controller |
| 1435 | * @dev: the controller, possibly using the platform_bus |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 1436 | * @size: how much zeroed driver-private data to allocate; the pointer to this |
Tony Jones | 49dce68 | 2007-10-16 01:27:48 -0700 | [diff] [blame] | 1437 | * memory is in the driver_data field of the returned device, |
David Brownell | 0c868461 | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1438 | * accessible with spi_master_get_devdata(). |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 1439 | * Context: can sleep |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1440 | * |
| 1441 | * This call is used only by SPI master controller drivers, which are the |
| 1442 | * only ones directly touching chip registers. It's how they allocate |
dmitry pervushin | ba1a051 | 2006-05-20 15:00:14 -0700 | [diff] [blame] | 1443 | * an spi_master structure, prior to calling spi_register_master(). |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1444 | * |
| 1445 | * This must be called from context that can sleep. It returns the SPI |
| 1446 | * master structure on success, else NULL. |
| 1447 | * |
| 1448 | * The caller is responsible for assigning the bus number and initializing |
dmitry pervushin | ba1a051 | 2006-05-20 15:00:14 -0700 | [diff] [blame] | 1449 | * the master's methods before calling spi_register_master(); and (after errors |
Uwe Kleine-König | eb4af0f | 2012-02-23 10:40:14 +0100 | [diff] [blame] | 1450 | * adding the device) calling spi_master_put() and kfree() to prevent a memory |
| 1451 | * leak. |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1452 | */ |
Adrian Bunk | e9d5a46 | 2007-03-26 21:32:23 -0800 | [diff] [blame] | 1453 | struct spi_master *spi_alloc_master(struct device *dev, unsigned size) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1454 | { |
| 1455 | struct spi_master *master; |
| 1456 | |
David Brownell | 0c868461 | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1457 | if (!dev) |
| 1458 | return NULL; |
| 1459 | |
Jingoo Han | 5fe5f05 | 2013-10-14 10:31:51 +0900 | [diff] [blame] | 1460 | master = kzalloc(size + sizeof(*master), GFP_KERNEL); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1461 | if (!master) |
| 1462 | return NULL; |
| 1463 | |
Tony Jones | 49dce68 | 2007-10-16 01:27:48 -0700 | [diff] [blame] | 1464 | device_initialize(&master->dev); |
Grant Likely | 1e8a52e | 2012-05-19 23:42:08 -0600 | [diff] [blame] | 1465 | master->bus_num = -1; |
| 1466 | master->num_chipselect = 1; |
Tony Jones | 49dce68 | 2007-10-16 01:27:48 -0700 | [diff] [blame] | 1467 | master->dev.class = &spi_master_class; |
| 1468 | master->dev.parent = get_device(dev); |
David Brownell | 0c868461 | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1469 | spi_master_set_devdata(master, &master[1]); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1470 | |
| 1471 | return master; |
| 1472 | } |
| 1473 | EXPORT_SYMBOL_GPL(spi_alloc_master); |
| 1474 | |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 1475 | #ifdef CONFIG_OF |
| 1476 | static int of_spi_register_master(struct spi_master *master) |
| 1477 | { |
Grant Likely | e80beb2 | 2013-02-12 17:48:37 +0000 | [diff] [blame] | 1478 | int nb, i, *cs; |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 1479 | struct device_node *np = master->dev.of_node; |
| 1480 | |
| 1481 | if (!np) |
| 1482 | return 0; |
| 1483 | |
| 1484 | nb = of_gpio_named_count(np, "cs-gpios"); |
Jingoo Han | 5fe5f05 | 2013-10-14 10:31:51 +0900 | [diff] [blame] | 1485 | master->num_chipselect = max_t(int, nb, master->num_chipselect); |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 1486 | |
Andreas Larsson | 8ec5d84 | 2013-02-13 14:23:24 +0100 | [diff] [blame] | 1487 | /* Return error only for an incorrectly formed cs-gpios property */ |
| 1488 | if (nb == 0 || nb == -ENOENT) |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 1489 | return 0; |
Andreas Larsson | 8ec5d84 | 2013-02-13 14:23:24 +0100 | [diff] [blame] | 1490 | else if (nb < 0) |
| 1491 | return nb; |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 1492 | |
| 1493 | cs = devm_kzalloc(&master->dev, |
| 1494 | sizeof(int) * master->num_chipselect, |
| 1495 | GFP_KERNEL); |
| 1496 | master->cs_gpios = cs; |
| 1497 | |
| 1498 | if (!master->cs_gpios) |
| 1499 | return -ENOMEM; |
| 1500 | |
Andreas Larsson | 0da83bb | 2013-01-29 15:53:40 +0100 | [diff] [blame] | 1501 | for (i = 0; i < master->num_chipselect; i++) |
Andreas Larsson | 446411e | 2013-02-13 14:20:25 +0100 | [diff] [blame] | 1502 | cs[i] = -ENOENT; |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 1503 | |
| 1504 | for (i = 0; i < nb; i++) |
| 1505 | cs[i] = of_get_named_gpio(np, "cs-gpios", i); |
| 1506 | |
| 1507 | return 0; |
| 1508 | } |
| 1509 | #else |
| 1510 | static int of_spi_register_master(struct spi_master *master) |
| 1511 | { |
| 1512 | return 0; |
| 1513 | } |
| 1514 | #endif |
| 1515 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1516 | /** |
| 1517 | * spi_register_master - register SPI master controller |
| 1518 | * @master: initialized master, originally from spi_alloc_master() |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 1519 | * Context: can sleep |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1520 | * |
| 1521 | * SPI master controllers connect to their drivers using some non-SPI bus, |
| 1522 | * such as the platform bus. The final stage of probe() in that code |
| 1523 | * includes calling spi_register_master() to hook up to this SPI bus glue. |
| 1524 | * |
| 1525 | * SPI controllers use board specific (often SOC specific) bus numbers, |
| 1526 | * and board-specific addressing for SPI devices combines those numbers |
| 1527 | * with chip select numbers. Since SPI does not directly support dynamic |
| 1528 | * device identification, boards need configuration tables telling which |
| 1529 | * chip is at which address. |
| 1530 | * |
| 1531 | * This must be called from context that can sleep. It returns zero on |
| 1532 | * success, else a negative error code (dropping the master's refcount). |
David Brownell | 0c868461 | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1533 | * After a successful return, the caller is responsible for calling |
| 1534 | * spi_unregister_master(). |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1535 | */ |
Adrian Bunk | e9d5a46 | 2007-03-26 21:32:23 -0800 | [diff] [blame] | 1536 | int spi_register_master(struct spi_master *master) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1537 | { |
David Brownell | e44a45a | 2007-06-03 13:50:40 -0700 | [diff] [blame] | 1538 | static atomic_t dyn_bus_id = ATOMIC_INIT((1<<15) - 1); |
Tony Jones | 49dce68 | 2007-10-16 01:27:48 -0700 | [diff] [blame] | 1539 | struct device *dev = master->dev.parent; |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 1540 | struct boardinfo *bi; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1541 | int status = -ENODEV; |
| 1542 | int dynamic = 0; |
| 1543 | |
David Brownell | 0c868461 | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1544 | if (!dev) |
| 1545 | return -ENODEV; |
| 1546 | |
Jean-Christophe PLAGNIOL-VILLARD | 7431798 | 2012-11-15 20:19:57 +0100 | [diff] [blame] | 1547 | status = of_spi_register_master(master); |
| 1548 | if (status) |
| 1549 | return status; |
| 1550 | |
David Brownell | 082c8cb | 2007-07-31 00:39:45 -0700 | [diff] [blame] | 1551 | /* even if it's just one always-selected device, there must |
| 1552 | * be at least one chipselect |
| 1553 | */ |
| 1554 | if (master->num_chipselect == 0) |
| 1555 | return -EINVAL; |
| 1556 | |
Grant Likely | bb29785 | 2012-12-21 19:32:09 +0000 | [diff] [blame] | 1557 | if ((master->bus_num < 0) && master->dev.of_node) |
| 1558 | master->bus_num = of_alias_get_id(master->dev.of_node, "spi"); |
| 1559 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1560 | /* convention: dynamically assigned bus IDs count down from the max */ |
David Brownell | a020ed7 | 2006-04-03 15:49:04 -0700 | [diff] [blame] | 1561 | if (master->bus_num < 0) { |
David Brownell | 082c8cb | 2007-07-31 00:39:45 -0700 | [diff] [blame] | 1562 | /* FIXME switch to an IDR based scheme, something like |
| 1563 | * I2C now uses, so we can't run out of "dynamic" IDs |
| 1564 | */ |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1565 | master->bus_num = atomic_dec_return(&dyn_bus_id); |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 1566 | dynamic = 1; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1567 | } |
| 1568 | |
Mark Brown | 5424d43 | 2014-12-10 17:40:53 +0000 | [diff] [blame] | 1569 | INIT_LIST_HEAD(&master->queue); |
| 1570 | spin_lock_init(&master->queue_lock); |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1571 | spin_lock_init(&master->bus_lock_spinlock); |
| 1572 | mutex_init(&master->bus_lock_mutex); |
| 1573 | master->bus_lock_flag = 0; |
Mark Brown | b158935 | 2013-10-05 11:50:40 +0100 | [diff] [blame] | 1574 | init_completion(&master->xfer_completion); |
Mark Brown | 6ad45a2 | 2014-02-02 13:47:47 +0000 | [diff] [blame] | 1575 | if (!master->max_dma_len) |
| 1576 | master->max_dma_len = INT_MAX; |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1577 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1578 | /* register the device, then userspace will see it. |
| 1579 | * registration fails if the bus ID is in use. |
| 1580 | */ |
Kay Sievers | 35f74fc | 2009-01-06 10:44:37 -0800 | [diff] [blame] | 1581 | dev_set_name(&master->dev, "spi%u", master->bus_num); |
Tony Jones | 49dce68 | 2007-10-16 01:27:48 -0700 | [diff] [blame] | 1582 | status = device_add(&master->dev); |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 1583 | if (status < 0) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1584 | goto done; |
Kay Sievers | 35f74fc | 2009-01-06 10:44:37 -0800 | [diff] [blame] | 1585 | dev_dbg(dev, "registered master %s%s\n", dev_name(&master->dev), |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1586 | dynamic ? " (dynamic)" : ""); |
| 1587 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1588 | /* If we're using a queued driver, start the queue */ |
| 1589 | if (master->transfer) |
| 1590 | dev_info(dev, "master is unqueued, this is deprecated\n"); |
| 1591 | else { |
| 1592 | status = spi_master_initialize_queue(master); |
| 1593 | if (status) { |
Axel Lin | e93b072 | 2013-08-31 20:25:52 +0800 | [diff] [blame] | 1594 | device_del(&master->dev); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1595 | goto done; |
| 1596 | } |
| 1597 | } |
| 1598 | |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 1599 | mutex_lock(&board_lock); |
| 1600 | list_add_tail(&master->list, &spi_master_list); |
| 1601 | list_for_each_entry(bi, &board_list, list) |
| 1602 | spi_match_master_to_boardinfo(master, &bi->board_info); |
| 1603 | mutex_unlock(&board_lock); |
| 1604 | |
Mika Westerberg | 64bee4d | 2012-11-30 12:37:53 +0100 | [diff] [blame] | 1605 | /* Register devices from the device tree and ACPI */ |
Anatolij Gustschin | 12b15e8 | 2010-07-27 22:35:58 +0200 | [diff] [blame] | 1606 | of_register_spi_devices(master); |
Mika Westerberg | 64bee4d | 2012-11-30 12:37:53 +0100 | [diff] [blame] | 1607 | acpi_register_spi_devices(master); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1608 | done: |
| 1609 | return status; |
| 1610 | } |
| 1611 | EXPORT_SYMBOL_GPL(spi_register_master); |
| 1612 | |
Mark Brown | 666d5b4 | 2013-08-31 18:50:52 +0100 | [diff] [blame] | 1613 | static void devm_spi_unregister(struct device *dev, void *res) |
| 1614 | { |
| 1615 | spi_unregister_master(*(struct spi_master **)res); |
| 1616 | } |
| 1617 | |
| 1618 | /** |
| 1619 | * dev_spi_register_master - register managed SPI master controller |
| 1620 | * @dev: device managing SPI master |
| 1621 | * @master: initialized master, originally from spi_alloc_master() |
| 1622 | * Context: can sleep |
| 1623 | * |
| 1624 | * Register a SPI device as with spi_register_master() which will |
| 1625 | * automatically be unregister |
| 1626 | */ |
| 1627 | int devm_spi_register_master(struct device *dev, struct spi_master *master) |
| 1628 | { |
| 1629 | struct spi_master **ptr; |
| 1630 | int ret; |
| 1631 | |
| 1632 | ptr = devres_alloc(devm_spi_unregister, sizeof(*ptr), GFP_KERNEL); |
| 1633 | if (!ptr) |
| 1634 | return -ENOMEM; |
| 1635 | |
| 1636 | ret = spi_register_master(master); |
Stephen Warren | 4b92894 | 2013-11-21 16:11:15 -0700 | [diff] [blame] | 1637 | if (!ret) { |
Mark Brown | 666d5b4 | 2013-08-31 18:50:52 +0100 | [diff] [blame] | 1638 | *ptr = master; |
| 1639 | devres_add(dev, ptr); |
| 1640 | } else { |
| 1641 | devres_free(ptr); |
| 1642 | } |
| 1643 | |
| 1644 | return ret; |
| 1645 | } |
| 1646 | EXPORT_SYMBOL_GPL(devm_spi_register_master); |
| 1647 | |
David Lamparter | 3486008 | 2010-08-30 23:54:17 +0200 | [diff] [blame] | 1648 | static int __unregister(struct device *dev, void *null) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1649 | { |
David Lamparter | 3486008 | 2010-08-30 23:54:17 +0200 | [diff] [blame] | 1650 | spi_unregister_device(to_spi_device(dev)); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1651 | return 0; |
| 1652 | } |
| 1653 | |
| 1654 | /** |
| 1655 | * spi_unregister_master - unregister SPI master controller |
| 1656 | * @master: the master being unregistered |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 1657 | * Context: can sleep |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1658 | * |
| 1659 | * This call is used only by SPI master controller drivers, which are the |
| 1660 | * only ones directly touching chip registers. |
| 1661 | * |
| 1662 | * This must be called from context that can sleep. |
| 1663 | */ |
| 1664 | void spi_unregister_master(struct spi_master *master) |
| 1665 | { |
Jeff Garzik | 89fc9a1 | 2006-12-06 20:35:35 -0800 | [diff] [blame] | 1666 | int dummy; |
| 1667 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1668 | if (master->queued) { |
| 1669 | if (spi_destroy_queue(master)) |
| 1670 | dev_err(&master->dev, "queue remove failed\n"); |
| 1671 | } |
| 1672 | |
Feng Tang | 2b9603a | 2010-08-02 15:52:15 +0800 | [diff] [blame] | 1673 | mutex_lock(&board_lock); |
| 1674 | list_del(&master->list); |
| 1675 | mutex_unlock(&board_lock); |
| 1676 | |
Sebastian Andrzej Siewior | 97dbf37 | 2010-12-21 17:24:31 -0800 | [diff] [blame] | 1677 | dummy = device_for_each_child(&master->dev, NULL, __unregister); |
Tony Jones | 49dce68 | 2007-10-16 01:27:48 -0700 | [diff] [blame] | 1678 | device_unregister(&master->dev); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1679 | } |
| 1680 | EXPORT_SYMBOL_GPL(spi_unregister_master); |
| 1681 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1682 | int spi_master_suspend(struct spi_master *master) |
| 1683 | { |
| 1684 | int ret; |
| 1685 | |
| 1686 | /* Basically no-ops for non-queued masters */ |
| 1687 | if (!master->queued) |
| 1688 | return 0; |
| 1689 | |
| 1690 | ret = spi_stop_queue(master); |
| 1691 | if (ret) |
| 1692 | dev_err(&master->dev, "queue stop failed\n"); |
| 1693 | |
| 1694 | return ret; |
| 1695 | } |
| 1696 | EXPORT_SYMBOL_GPL(spi_master_suspend); |
| 1697 | |
| 1698 | int spi_master_resume(struct spi_master *master) |
| 1699 | { |
| 1700 | int ret; |
| 1701 | |
| 1702 | if (!master->queued) |
| 1703 | return 0; |
| 1704 | |
| 1705 | ret = spi_start_queue(master); |
| 1706 | if (ret) |
| 1707 | dev_err(&master->dev, "queue restart failed\n"); |
| 1708 | |
| 1709 | return ret; |
| 1710 | } |
| 1711 | EXPORT_SYMBOL_GPL(spi_master_resume); |
| 1712 | |
Michał Mirosław | 9f3b795 | 2013-02-01 20:40:17 +0100 | [diff] [blame] | 1713 | static int __spi_master_match(struct device *dev, const void *data) |
Dave Young | 5ed2c83 | 2008-01-22 15:14:18 +0800 | [diff] [blame] | 1714 | { |
| 1715 | struct spi_master *m; |
Michał Mirosław | 9f3b795 | 2013-02-01 20:40:17 +0100 | [diff] [blame] | 1716 | const u16 *bus_num = data; |
Dave Young | 5ed2c83 | 2008-01-22 15:14:18 +0800 | [diff] [blame] | 1717 | |
| 1718 | m = container_of(dev, struct spi_master, dev); |
| 1719 | return m->bus_num == *bus_num; |
| 1720 | } |
| 1721 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1722 | /** |
| 1723 | * spi_busnum_to_master - look up master associated with bus_num |
| 1724 | * @bus_num: the master's bus number |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 1725 | * Context: can sleep |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1726 | * |
| 1727 | * This call may be used with devices that are registered after |
| 1728 | * arch init time. It returns a refcounted pointer to the relevant |
| 1729 | * spi_master (which the caller must release), or NULL if there is |
| 1730 | * no such master registered. |
| 1731 | */ |
| 1732 | struct spi_master *spi_busnum_to_master(u16 bus_num) |
| 1733 | { |
Tony Jones | 49dce68 | 2007-10-16 01:27:48 -0700 | [diff] [blame] | 1734 | struct device *dev; |
Atsushi Nemoto | 1e9a51d | 2007-01-26 00:56:54 -0800 | [diff] [blame] | 1735 | struct spi_master *master = NULL; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1736 | |
Greg Kroah-Hartman | 695794a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 1737 | dev = class_find_device(&spi_master_class, NULL, &bus_num, |
Dave Young | 5ed2c83 | 2008-01-22 15:14:18 +0800 | [diff] [blame] | 1738 | __spi_master_match); |
| 1739 | if (dev) |
| 1740 | master = container_of(dev, struct spi_master, dev); |
| 1741 | /* reference got in class_find_device */ |
Atsushi Nemoto | 1e9a51d | 2007-01-26 00:56:54 -0800 | [diff] [blame] | 1742 | return master; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 1743 | } |
| 1744 | EXPORT_SYMBOL_GPL(spi_busnum_to_master); |
| 1745 | |
| 1746 | |
| 1747 | /*-------------------------------------------------------------------------*/ |
| 1748 | |
David Brownell | 7d07719 | 2009-06-17 16:26:03 -0700 | [diff] [blame] | 1749 | /* Core methods for SPI master protocol drivers. Some of the |
| 1750 | * other core methods are currently defined as inline functions. |
| 1751 | */ |
| 1752 | |
| 1753 | /** |
| 1754 | * spi_setup - setup SPI mode and clock rate |
| 1755 | * @spi: the device whose settings are being modified |
| 1756 | * Context: can sleep, and no requests are queued to the device |
| 1757 | * |
| 1758 | * SPI protocol drivers may need to update the transfer mode if the |
| 1759 | * device doesn't work with its default. They may likewise need |
| 1760 | * to update clock rates or word sizes from initial values. This function |
| 1761 | * changes those settings, and must be called from a context that can sleep. |
| 1762 | * Except for SPI_CS_HIGH, which takes effect immediately, the changes take |
| 1763 | * effect the next time the device is selected and data is transferred to |
| 1764 | * or from it. When this function returns, the spi device is deselected. |
| 1765 | * |
| 1766 | * Note that this call will fail if the protocol driver specifies an option |
| 1767 | * that the underlying controller or its driver does not support. For |
| 1768 | * example, not all hardware supports wire transfers using nine bit words, |
| 1769 | * LSB-first wire encoding, or active-high chipselects. |
| 1770 | */ |
| 1771 | int spi_setup(struct spi_device *spi) |
| 1772 | { |
Geert Uytterhoeven | 83596fb | 2014-04-14 19:39:53 +0200 | [diff] [blame] | 1773 | unsigned bad_bits, ugly_bits; |
Laxman Dewangan | caae070 | 2012-11-09 14:35:22 +0530 | [diff] [blame] | 1774 | int status = 0; |
David Brownell | 7d07719 | 2009-06-17 16:26:03 -0700 | [diff] [blame] | 1775 | |
wangyuhang | f477b7f | 2013-08-11 18:15:17 +0800 | [diff] [blame] | 1776 | /* check mode to prevent that DUAL and QUAD set at the same time |
| 1777 | */ |
| 1778 | if (((spi->mode & SPI_TX_DUAL) && (spi->mode & SPI_TX_QUAD)) || |
| 1779 | ((spi->mode & SPI_RX_DUAL) && (spi->mode & SPI_RX_QUAD))) { |
| 1780 | dev_err(&spi->dev, |
| 1781 | "setup: can not select dual and quad at the same time\n"); |
| 1782 | return -EINVAL; |
| 1783 | } |
| 1784 | /* if it is SPI_3WIRE mode, DUAL and QUAD should be forbidden |
| 1785 | */ |
| 1786 | if ((spi->mode & SPI_3WIRE) && (spi->mode & |
| 1787 | (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD))) |
| 1788 | return -EINVAL; |
David Brownell | e7db06b | 2009-06-17 16:26:04 -0700 | [diff] [blame] | 1789 | /* help drivers fail *cleanly* when they need options |
| 1790 | * that aren't supported with their current master |
| 1791 | */ |
| 1792 | bad_bits = spi->mode & ~spi->master->mode_bits; |
Geert Uytterhoeven | 83596fb | 2014-04-14 19:39:53 +0200 | [diff] [blame] | 1793 | ugly_bits = bad_bits & |
| 1794 | (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD); |
| 1795 | if (ugly_bits) { |
| 1796 | dev_warn(&spi->dev, |
| 1797 | "setup: ignoring unsupported mode bits %x\n", |
| 1798 | ugly_bits); |
| 1799 | spi->mode &= ~ugly_bits; |
| 1800 | bad_bits &= ~ugly_bits; |
| 1801 | } |
David Brownell | e7db06b | 2009-06-17 16:26:04 -0700 | [diff] [blame] | 1802 | if (bad_bits) { |
Linus Walleij | eb288a1 | 2010-10-21 21:06:44 +0200 | [diff] [blame] | 1803 | dev_err(&spi->dev, "setup: unsupported mode bits %x\n", |
David Brownell | e7db06b | 2009-06-17 16:26:04 -0700 | [diff] [blame] | 1804 | bad_bits); |
| 1805 | return -EINVAL; |
| 1806 | } |
| 1807 | |
David Brownell | 7d07719 | 2009-06-17 16:26:03 -0700 | [diff] [blame] | 1808 | if (!spi->bits_per_word) |
| 1809 | spi->bits_per_word = 8; |
| 1810 | |
Axel Lin | 052eb2d | 2014-02-10 00:08:05 +0800 | [diff] [blame] | 1811 | if (!spi->max_speed_hz) |
| 1812 | spi->max_speed_hz = spi->master->max_speed_hz; |
| 1813 | |
Ivan T. Ivanov | 1a7b7ee | 2015-03-13 18:43:49 +0200 | [diff] [blame] | 1814 | spi_set_cs(spi, false); |
| 1815 | |
Laxman Dewangan | caae070 | 2012-11-09 14:35:22 +0530 | [diff] [blame] | 1816 | if (spi->master->setup) |
| 1817 | status = spi->master->setup(spi); |
David Brownell | 7d07719 | 2009-06-17 16:26:03 -0700 | [diff] [blame] | 1818 | |
Jingoo Han | 5fe5f05 | 2013-10-14 10:31:51 +0900 | [diff] [blame] | 1819 | dev_dbg(&spi->dev, "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\n", |
David Brownell | 7d07719 | 2009-06-17 16:26:03 -0700 | [diff] [blame] | 1820 | (int) (spi->mode & (SPI_CPOL | SPI_CPHA)), |
| 1821 | (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "", |
| 1822 | (spi->mode & SPI_LSB_FIRST) ? "lsb, " : "", |
| 1823 | (spi->mode & SPI_3WIRE) ? "3wire, " : "", |
| 1824 | (spi->mode & SPI_LOOP) ? "loopback, " : "", |
| 1825 | spi->bits_per_word, spi->max_speed_hz, |
| 1826 | status); |
| 1827 | |
| 1828 | return status; |
| 1829 | } |
| 1830 | EXPORT_SYMBOL_GPL(spi_setup); |
| 1831 | |
Mark Brown | 9080873 | 2013-11-13 23:44:15 +0000 | [diff] [blame] | 1832 | static int __spi_validate(struct spi_device *spi, struct spi_message *message) |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1833 | { |
| 1834 | struct spi_master *master = spi->master; |
Laxman Dewangan | e6811d1 | 2012-11-09 14:36:45 +0530 | [diff] [blame] | 1835 | struct spi_transfer *xfer; |
Atsushi Nemoto | 6ea3129 | 2014-02-28 23:03:16 +0900 | [diff] [blame] | 1836 | int w_size; |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1837 | |
Mark Brown | 24a0013 | 2013-07-10 15:05:40 +0100 | [diff] [blame] | 1838 | if (list_empty(&message->transfers)) |
| 1839 | return -EINVAL; |
Mark Brown | 24a0013 | 2013-07-10 15:05:40 +0100 | [diff] [blame] | 1840 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1841 | /* Half-duplex links include original MicroWire, and ones with |
| 1842 | * only one data pin like SPI_3WIRE (switches direction) or where |
| 1843 | * either MOSI or MISO is missing. They can also be caused by |
| 1844 | * software limitations. |
| 1845 | */ |
| 1846 | if ((master->flags & SPI_MASTER_HALF_DUPLEX) |
| 1847 | || (spi->mode & SPI_3WIRE)) { |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1848 | unsigned flags = master->flags; |
| 1849 | |
| 1850 | list_for_each_entry(xfer, &message->transfers, transfer_list) { |
| 1851 | if (xfer->rx_buf && xfer->tx_buf) |
| 1852 | return -EINVAL; |
| 1853 | if ((flags & SPI_MASTER_NO_TX) && xfer->tx_buf) |
| 1854 | return -EINVAL; |
| 1855 | if ((flags & SPI_MASTER_NO_RX) && xfer->rx_buf) |
| 1856 | return -EINVAL; |
| 1857 | } |
| 1858 | } |
| 1859 | |
Laxman Dewangan | e6811d1 | 2012-11-09 14:36:45 +0530 | [diff] [blame] | 1860 | /** |
Laxman Dewangan | 059b8ff | 2013-01-05 00:17:14 +0530 | [diff] [blame] | 1861 | * Set transfer bits_per_word and max speed as spi device default if |
| 1862 | * it is not set for this transfer. |
wangyuhang | f477b7f | 2013-08-11 18:15:17 +0800 | [diff] [blame] | 1863 | * Set transfer tx_nbits and rx_nbits as single transfer default |
| 1864 | * (SPI_NBITS_SINGLE) if it is not set for this transfer. |
Laxman Dewangan | e6811d1 | 2012-11-09 14:36:45 +0530 | [diff] [blame] | 1865 | */ |
| 1866 | list_for_each_entry(xfer, &message->transfers, transfer_list) { |
Sourav Poddar | 078726c | 2013-07-18 15:31:25 +0530 | [diff] [blame] | 1867 | message->frame_length += xfer->len; |
Laxman Dewangan | e6811d1 | 2012-11-09 14:36:45 +0530 | [diff] [blame] | 1868 | if (!xfer->bits_per_word) |
| 1869 | xfer->bits_per_word = spi->bits_per_word; |
Axel Lin | a6f87fa | 2014-03-17 10:08:12 +0800 | [diff] [blame] | 1870 | |
| 1871 | if (!xfer->speed_hz) |
Laxman Dewangan | 059b8ff | 2013-01-05 00:17:14 +0530 | [diff] [blame] | 1872 | xfer->speed_hz = spi->max_speed_hz; |
Axel Lin | a6f87fa | 2014-03-17 10:08:12 +0800 | [diff] [blame] | 1873 | |
| 1874 | if (master->max_speed_hz && |
| 1875 | xfer->speed_hz > master->max_speed_hz) |
| 1876 | xfer->speed_hz = master->max_speed_hz; |
Gabor Juhos | 56ede94 | 2013-08-14 10:25:28 +0200 | [diff] [blame] | 1877 | |
Stephen Warren | 543bb25 | 2013-03-26 20:37:57 -0600 | [diff] [blame] | 1878 | if (master->bits_per_word_mask) { |
| 1879 | /* Only 32 bits fit in the mask */ |
| 1880 | if (xfer->bits_per_word > 32) |
| 1881 | return -EINVAL; |
| 1882 | if (!(master->bits_per_word_mask & |
| 1883 | BIT(xfer->bits_per_word - 1))) |
| 1884 | return -EINVAL; |
| 1885 | } |
Mark Brown | a2fd4f9 | 2013-07-10 14:57:26 +0100 | [diff] [blame] | 1886 | |
Ivan T. Ivanov | 4d94bd2 | 2014-02-20 12:02:08 +0200 | [diff] [blame] | 1887 | /* |
| 1888 | * SPI transfer length should be multiple of SPI word size |
| 1889 | * where SPI word size should be power-of-two multiple |
| 1890 | */ |
| 1891 | if (xfer->bits_per_word <= 8) |
| 1892 | w_size = 1; |
| 1893 | else if (xfer->bits_per_word <= 16) |
| 1894 | w_size = 2; |
| 1895 | else |
| 1896 | w_size = 4; |
| 1897 | |
Ivan T. Ivanov | 4d94bd2 | 2014-02-20 12:02:08 +0200 | [diff] [blame] | 1898 | /* No partial transfers accepted */ |
Atsushi Nemoto | 6ea3129 | 2014-02-28 23:03:16 +0900 | [diff] [blame] | 1899 | if (xfer->len % w_size) |
Ivan T. Ivanov | 4d94bd2 | 2014-02-20 12:02:08 +0200 | [diff] [blame] | 1900 | return -EINVAL; |
| 1901 | |
Mark Brown | a2fd4f9 | 2013-07-10 14:57:26 +0100 | [diff] [blame] | 1902 | if (xfer->speed_hz && master->min_speed_hz && |
| 1903 | xfer->speed_hz < master->min_speed_hz) |
| 1904 | return -EINVAL; |
wangyuhang | f477b7f | 2013-08-11 18:15:17 +0800 | [diff] [blame] | 1905 | |
| 1906 | if (xfer->tx_buf && !xfer->tx_nbits) |
| 1907 | xfer->tx_nbits = SPI_NBITS_SINGLE; |
| 1908 | if (xfer->rx_buf && !xfer->rx_nbits) |
| 1909 | xfer->rx_nbits = SPI_NBITS_SINGLE; |
| 1910 | /* check transfer tx/rx_nbits: |
Geert Uytterhoeven | 1afd998 | 2014-01-12 14:00:29 +0100 | [diff] [blame] | 1911 | * 1. check the value matches one of single, dual and quad |
| 1912 | * 2. check tx/rx_nbits match the mode in spi_device |
wangyuhang | f477b7f | 2013-08-11 18:15:17 +0800 | [diff] [blame] | 1913 | */ |
Sourav Poddar | db90a44 | 2013-08-22 21:20:48 +0530 | [diff] [blame] | 1914 | if (xfer->tx_buf) { |
| 1915 | if (xfer->tx_nbits != SPI_NBITS_SINGLE && |
| 1916 | xfer->tx_nbits != SPI_NBITS_DUAL && |
| 1917 | xfer->tx_nbits != SPI_NBITS_QUAD) |
| 1918 | return -EINVAL; |
| 1919 | if ((xfer->tx_nbits == SPI_NBITS_DUAL) && |
| 1920 | !(spi->mode & (SPI_TX_DUAL | SPI_TX_QUAD))) |
| 1921 | return -EINVAL; |
| 1922 | if ((xfer->tx_nbits == SPI_NBITS_QUAD) && |
| 1923 | !(spi->mode & SPI_TX_QUAD)) |
| 1924 | return -EINVAL; |
Sourav Poddar | db90a44 | 2013-08-22 21:20:48 +0530 | [diff] [blame] | 1925 | } |
wangyuhang | f477b7f | 2013-08-11 18:15:17 +0800 | [diff] [blame] | 1926 | /* check transfer rx_nbits */ |
Sourav Poddar | db90a44 | 2013-08-22 21:20:48 +0530 | [diff] [blame] | 1927 | if (xfer->rx_buf) { |
| 1928 | if (xfer->rx_nbits != SPI_NBITS_SINGLE && |
| 1929 | xfer->rx_nbits != SPI_NBITS_DUAL && |
| 1930 | xfer->rx_nbits != SPI_NBITS_QUAD) |
| 1931 | return -EINVAL; |
| 1932 | if ((xfer->rx_nbits == SPI_NBITS_DUAL) && |
| 1933 | !(spi->mode & (SPI_RX_DUAL | SPI_RX_QUAD))) |
| 1934 | return -EINVAL; |
| 1935 | if ((xfer->rx_nbits == SPI_NBITS_QUAD) && |
| 1936 | !(spi->mode & SPI_RX_QUAD)) |
| 1937 | return -EINVAL; |
Sourav Poddar | db90a44 | 2013-08-22 21:20:48 +0530 | [diff] [blame] | 1938 | } |
Laxman Dewangan | e6811d1 | 2012-11-09 14:36:45 +0530 | [diff] [blame] | 1939 | } |
| 1940 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1941 | message->status = -EINPROGRESS; |
Mark Brown | 9080873 | 2013-11-13 23:44:15 +0000 | [diff] [blame] | 1942 | |
| 1943 | return 0; |
| 1944 | } |
| 1945 | |
| 1946 | static int __spi_async(struct spi_device *spi, struct spi_message *message) |
| 1947 | { |
| 1948 | struct spi_master *master = spi->master; |
| 1949 | |
| 1950 | message->spi = spi; |
| 1951 | |
| 1952 | trace_spi_message_submit(message); |
| 1953 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1954 | return master->transfer(spi, message); |
| 1955 | } |
| 1956 | |
David Brownell | 568d069 | 2009-09-22 16:46:18 -0700 | [diff] [blame] | 1957 | /** |
| 1958 | * spi_async - asynchronous SPI transfer |
| 1959 | * @spi: device with which data will be exchanged |
| 1960 | * @message: describes the data transfers, including completion callback |
| 1961 | * Context: any (irqs may be blocked, etc) |
| 1962 | * |
| 1963 | * This call may be used in_irq and other contexts which can't sleep, |
| 1964 | * as well as from task contexts which can sleep. |
| 1965 | * |
| 1966 | * The completion callback is invoked in a context which can't sleep. |
| 1967 | * Before that invocation, the value of message->status is undefined. |
| 1968 | * When the callback is issued, message->status holds either zero (to |
| 1969 | * indicate complete success) or a negative error code. After that |
| 1970 | * callback returns, the driver which issued the transfer request may |
| 1971 | * deallocate the associated memory; it's no longer in use by any SPI |
| 1972 | * core or controller driver code. |
| 1973 | * |
| 1974 | * Note that although all messages to a spi_device are handled in |
| 1975 | * FIFO order, messages may go to different devices in other orders. |
| 1976 | * Some device might be higher priority, or have various "hard" access |
| 1977 | * time requirements, for example. |
| 1978 | * |
| 1979 | * On detection of any fault during the transfer, processing of |
| 1980 | * the entire message is aborted, and the device is deselected. |
| 1981 | * Until returning from the associated message completion callback, |
| 1982 | * no other spi_message queued to that device will be processed. |
| 1983 | * (This rule applies equally to all the synchronous transfer calls, |
| 1984 | * which are wrappers around this core asynchronous primitive.) |
| 1985 | */ |
| 1986 | int spi_async(struct spi_device *spi, struct spi_message *message) |
| 1987 | { |
| 1988 | struct spi_master *master = spi->master; |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1989 | int ret; |
| 1990 | unsigned long flags; |
David Brownell | 568d069 | 2009-09-22 16:46:18 -0700 | [diff] [blame] | 1991 | |
Mark Brown | 9080873 | 2013-11-13 23:44:15 +0000 | [diff] [blame] | 1992 | ret = __spi_validate(spi, message); |
| 1993 | if (ret != 0) |
| 1994 | return ret; |
| 1995 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1996 | spin_lock_irqsave(&master->bus_lock_spinlock, flags); |
David Brownell | 568d069 | 2009-09-22 16:46:18 -0700 | [diff] [blame] | 1997 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 1998 | if (master->bus_lock_flag) |
| 1999 | ret = -EBUSY; |
| 2000 | else |
| 2001 | ret = __spi_async(spi, message); |
David Brownell | 568d069 | 2009-09-22 16:46:18 -0700 | [diff] [blame] | 2002 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2003 | spin_unlock_irqrestore(&master->bus_lock_spinlock, flags); |
| 2004 | |
| 2005 | return ret; |
David Brownell | 568d069 | 2009-09-22 16:46:18 -0700 | [diff] [blame] | 2006 | } |
| 2007 | EXPORT_SYMBOL_GPL(spi_async); |
| 2008 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2009 | /** |
| 2010 | * spi_async_locked - version of spi_async with exclusive bus usage |
| 2011 | * @spi: device with which data will be exchanged |
| 2012 | * @message: describes the data transfers, including completion callback |
| 2013 | * Context: any (irqs may be blocked, etc) |
| 2014 | * |
| 2015 | * This call may be used in_irq and other contexts which can't sleep, |
| 2016 | * as well as from task contexts which can sleep. |
| 2017 | * |
| 2018 | * The completion callback is invoked in a context which can't sleep. |
| 2019 | * Before that invocation, the value of message->status is undefined. |
| 2020 | * When the callback is issued, message->status holds either zero (to |
| 2021 | * indicate complete success) or a negative error code. After that |
| 2022 | * callback returns, the driver which issued the transfer request may |
| 2023 | * deallocate the associated memory; it's no longer in use by any SPI |
| 2024 | * core or controller driver code. |
| 2025 | * |
| 2026 | * Note that although all messages to a spi_device are handled in |
| 2027 | * FIFO order, messages may go to different devices in other orders. |
| 2028 | * Some device might be higher priority, or have various "hard" access |
| 2029 | * time requirements, for example. |
| 2030 | * |
| 2031 | * On detection of any fault during the transfer, processing of |
| 2032 | * the entire message is aborted, and the device is deselected. |
| 2033 | * Until returning from the associated message completion callback, |
| 2034 | * no other spi_message queued to that device will be processed. |
| 2035 | * (This rule applies equally to all the synchronous transfer calls, |
| 2036 | * which are wrappers around this core asynchronous primitive.) |
| 2037 | */ |
| 2038 | int spi_async_locked(struct spi_device *spi, struct spi_message *message) |
| 2039 | { |
| 2040 | struct spi_master *master = spi->master; |
| 2041 | int ret; |
| 2042 | unsigned long flags; |
| 2043 | |
Mark Brown | 9080873 | 2013-11-13 23:44:15 +0000 | [diff] [blame] | 2044 | ret = __spi_validate(spi, message); |
| 2045 | if (ret != 0) |
| 2046 | return ret; |
| 2047 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2048 | spin_lock_irqsave(&master->bus_lock_spinlock, flags); |
| 2049 | |
| 2050 | ret = __spi_async(spi, message); |
| 2051 | |
| 2052 | spin_unlock_irqrestore(&master->bus_lock_spinlock, flags); |
| 2053 | |
| 2054 | return ret; |
| 2055 | |
| 2056 | } |
| 2057 | EXPORT_SYMBOL_GPL(spi_async_locked); |
| 2058 | |
David Brownell | 7d07719 | 2009-06-17 16:26:03 -0700 | [diff] [blame] | 2059 | |
| 2060 | /*-------------------------------------------------------------------------*/ |
| 2061 | |
| 2062 | /* Utility methods for SPI master protocol drivers, layered on |
| 2063 | * top of the core. Some other utility methods are defined as |
| 2064 | * inline functions. |
| 2065 | */ |
| 2066 | |
Andrew Morton | 5d870c8 | 2006-01-11 11:23:49 -0800 | [diff] [blame] | 2067 | static void spi_complete(void *arg) |
| 2068 | { |
| 2069 | complete(arg); |
| 2070 | } |
| 2071 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2072 | static int __spi_sync(struct spi_device *spi, struct spi_message *message, |
| 2073 | int bus_locked) |
| 2074 | { |
| 2075 | DECLARE_COMPLETION_ONSTACK(done); |
| 2076 | int status; |
| 2077 | struct spi_master *master = spi->master; |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 2078 | unsigned long flags; |
| 2079 | |
| 2080 | status = __spi_validate(spi, message); |
| 2081 | if (status != 0) |
| 2082 | return status; |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2083 | |
| 2084 | message->complete = spi_complete; |
| 2085 | message->context = &done; |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 2086 | message->spi = spi; |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2087 | |
| 2088 | if (!bus_locked) |
| 2089 | mutex_lock(&master->bus_lock_mutex); |
| 2090 | |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 2091 | /* If we're not using the legacy transfer method then we will |
| 2092 | * try to transfer in the calling context so special case. |
| 2093 | * This code would be less tricky if we could remove the |
| 2094 | * support for driver implemented message queues. |
| 2095 | */ |
| 2096 | if (master->transfer == spi_queued_transfer) { |
| 2097 | spin_lock_irqsave(&master->bus_lock_spinlock, flags); |
| 2098 | |
| 2099 | trace_spi_message_submit(message); |
| 2100 | |
| 2101 | status = __spi_queued_transfer(spi, message, false); |
| 2102 | |
| 2103 | spin_unlock_irqrestore(&master->bus_lock_spinlock, flags); |
| 2104 | } else { |
| 2105 | status = spi_async_locked(spi, message); |
| 2106 | } |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2107 | |
| 2108 | if (!bus_locked) |
| 2109 | mutex_unlock(&master->bus_lock_mutex); |
| 2110 | |
| 2111 | if (status == 0) { |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 2112 | /* Push out the messages in the calling context if we |
| 2113 | * can. |
| 2114 | */ |
| 2115 | if (master->transfer == spi_queued_transfer) |
Mark Brown | fc9e0f7 | 2014-12-10 13:46:33 +0000 | [diff] [blame] | 2116 | __spi_pump_messages(master, false); |
Mark Brown | 0461a41 | 2014-12-09 21:38:05 +0000 | [diff] [blame] | 2117 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2118 | wait_for_completion(&done); |
| 2119 | status = message->status; |
| 2120 | } |
| 2121 | message->context = NULL; |
| 2122 | return status; |
| 2123 | } |
| 2124 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2125 | /** |
| 2126 | * spi_sync - blocking/synchronous SPI data transfers |
| 2127 | * @spi: device with which data will be exchanged |
| 2128 | * @message: describes the data transfers |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 2129 | * Context: can sleep |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2130 | * |
| 2131 | * This call may only be used from a context that may sleep. The sleep |
| 2132 | * is non-interruptible, and has no timeout. Low-overhead controller |
| 2133 | * drivers may DMA directly into and out of the message buffers. |
| 2134 | * |
| 2135 | * Note that the SPI device's chip select is active during the message, |
| 2136 | * and then is normally disabled between messages. Drivers for some |
| 2137 | * frequently-used devices may want to minimize costs of selecting a chip, |
| 2138 | * by leaving it selected in anticipation that the next message will go |
| 2139 | * to the same chip. (That may increase power usage.) |
| 2140 | * |
David Brownell | 0c868461 | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 2141 | * Also, the caller is guaranteeing that the memory associated with the |
| 2142 | * message will not be freed before this call returns. |
| 2143 | * |
Marc Pignat | 9b938b7 | 2007-12-04 23:45:10 -0800 | [diff] [blame] | 2144 | * It returns zero on success, else a negative error code. |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2145 | */ |
| 2146 | int spi_sync(struct spi_device *spi, struct spi_message *message) |
| 2147 | { |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2148 | return __spi_sync(spi, message, 0); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2149 | } |
| 2150 | EXPORT_SYMBOL_GPL(spi_sync); |
| 2151 | |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2152 | /** |
| 2153 | * spi_sync_locked - version of spi_sync with exclusive bus usage |
| 2154 | * @spi: device with which data will be exchanged |
| 2155 | * @message: describes the data transfers |
| 2156 | * Context: can sleep |
| 2157 | * |
| 2158 | * This call may only be used from a context that may sleep. The sleep |
| 2159 | * is non-interruptible, and has no timeout. Low-overhead controller |
| 2160 | * drivers may DMA directly into and out of the message buffers. |
| 2161 | * |
| 2162 | * This call should be used by drivers that require exclusive access to the |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2163 | * SPI bus. It has to be preceded by a spi_bus_lock call. The SPI bus must |
Ernst Schwab | cf32b71e | 2010-06-28 17:49:29 -0700 | [diff] [blame] | 2164 | * be released by a spi_bus_unlock call when the exclusive access is over. |
| 2165 | * |
| 2166 | * It returns zero on success, else a negative error code. |
| 2167 | */ |
| 2168 | int spi_sync_locked(struct spi_device *spi, struct spi_message *message) |
| 2169 | { |
| 2170 | return __spi_sync(spi, message, 1); |
| 2171 | } |
| 2172 | EXPORT_SYMBOL_GPL(spi_sync_locked); |
| 2173 | |
| 2174 | /** |
| 2175 | * spi_bus_lock - obtain a lock for exclusive SPI bus usage |
| 2176 | * @master: SPI bus master that should be locked for exclusive bus access |
| 2177 | * Context: can sleep |
| 2178 | * |
| 2179 | * This call may only be used from a context that may sleep. The sleep |
| 2180 | * is non-interruptible, and has no timeout. |
| 2181 | * |
| 2182 | * This call should be used by drivers that require exclusive access to the |
| 2183 | * SPI bus. The SPI bus must be released by a spi_bus_unlock call when the |
| 2184 | * exclusive access is over. Data transfer must be done by spi_sync_locked |
| 2185 | * and spi_async_locked calls when the SPI bus lock is held. |
| 2186 | * |
| 2187 | * It returns zero on success, else a negative error code. |
| 2188 | */ |
| 2189 | int spi_bus_lock(struct spi_master *master) |
| 2190 | { |
| 2191 | unsigned long flags; |
| 2192 | |
| 2193 | mutex_lock(&master->bus_lock_mutex); |
| 2194 | |
| 2195 | spin_lock_irqsave(&master->bus_lock_spinlock, flags); |
| 2196 | master->bus_lock_flag = 1; |
| 2197 | spin_unlock_irqrestore(&master->bus_lock_spinlock, flags); |
| 2198 | |
| 2199 | /* mutex remains locked until spi_bus_unlock is called */ |
| 2200 | |
| 2201 | return 0; |
| 2202 | } |
| 2203 | EXPORT_SYMBOL_GPL(spi_bus_lock); |
| 2204 | |
| 2205 | /** |
| 2206 | * spi_bus_unlock - release the lock for exclusive SPI bus usage |
| 2207 | * @master: SPI bus master that was locked for exclusive bus access |
| 2208 | * Context: can sleep |
| 2209 | * |
| 2210 | * This call may only be used from a context that may sleep. The sleep |
| 2211 | * is non-interruptible, and has no timeout. |
| 2212 | * |
| 2213 | * This call releases an SPI bus lock previously obtained by an spi_bus_lock |
| 2214 | * call. |
| 2215 | * |
| 2216 | * It returns zero on success, else a negative error code. |
| 2217 | */ |
| 2218 | int spi_bus_unlock(struct spi_master *master) |
| 2219 | { |
| 2220 | master->bus_lock_flag = 0; |
| 2221 | |
| 2222 | mutex_unlock(&master->bus_lock_mutex); |
| 2223 | |
| 2224 | return 0; |
| 2225 | } |
| 2226 | EXPORT_SYMBOL_GPL(spi_bus_unlock); |
| 2227 | |
David Brownell | a9948b6 | 2006-04-02 10:37:40 -0800 | [diff] [blame] | 2228 | /* portable code must never pass more than 32 bytes */ |
Jingoo Han | 5fe5f05 | 2013-10-14 10:31:51 +0900 | [diff] [blame] | 2229 | #define SPI_BUFSIZ max(32, SMP_CACHE_BYTES) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2230 | |
| 2231 | static u8 *buf; |
| 2232 | |
| 2233 | /** |
| 2234 | * spi_write_then_read - SPI synchronous write followed by read |
| 2235 | * @spi: device with which data will be exchanged |
| 2236 | * @txbuf: data to be written (need not be dma-safe) |
| 2237 | * @n_tx: size of txbuf, in bytes |
Jiri Pirko | 2757049 | 2009-06-17 16:26:06 -0700 | [diff] [blame] | 2238 | * @rxbuf: buffer into which data will be read (need not be dma-safe) |
| 2239 | * @n_rx: size of rxbuf, in bytes |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 2240 | * Context: can sleep |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2241 | * |
| 2242 | * This performs a half duplex MicroWire style transaction with the |
| 2243 | * device, sending txbuf and then reading rxbuf. The return value |
| 2244 | * is zero for success, else a negative errno status code. |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 2245 | * This call may only be used from a context that may sleep. |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2246 | * |
David Brownell | 0c868461 | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 2247 | * Parameters to this routine are always copied using a small buffer; |
David Brownell | 33e34dc | 2007-05-08 00:32:21 -0700 | [diff] [blame] | 2248 | * portable code should never use this for more than 32 bytes. |
| 2249 | * Performance-sensitive or bulk transfer code should instead use |
David Brownell | 0c868461 | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 2250 | * spi_{async,sync}() calls with dma-safe buffers. |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2251 | */ |
| 2252 | int spi_write_then_read(struct spi_device *spi, |
Mark Brown | 0c4a159 | 2011-05-11 00:09:30 +0200 | [diff] [blame] | 2253 | const void *txbuf, unsigned n_tx, |
| 2254 | void *rxbuf, unsigned n_rx) |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2255 | { |
David Brownell | 068f407 | 2007-12-04 23:45:09 -0800 | [diff] [blame] | 2256 | static DEFINE_MUTEX(lock); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2257 | |
| 2258 | int status; |
| 2259 | struct spi_message message; |
David Brownell | bdff549 | 2009-04-13 14:39:57 -0700 | [diff] [blame] | 2260 | struct spi_transfer x[2]; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2261 | u8 *local_buf; |
| 2262 | |
Mark Brown | b3a223e | 2012-12-02 12:54:25 +0900 | [diff] [blame] | 2263 | /* Use preallocated DMA-safe buffer if we can. We can't avoid |
| 2264 | * copying here, (as a pure convenience thing), but we can |
| 2265 | * keep heap costs out of the hot path unless someone else is |
| 2266 | * using the pre-allocated buffer or the transfer is too large. |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2267 | */ |
Mark Brown | b3a223e | 2012-12-02 12:54:25 +0900 | [diff] [blame] | 2268 | if ((n_tx + n_rx) > SPI_BUFSIZ || !mutex_trylock(&lock)) { |
Mark Brown | 2cd94c8 | 2013-01-27 14:35:04 +0800 | [diff] [blame] | 2269 | local_buf = kmalloc(max((unsigned)SPI_BUFSIZ, n_tx + n_rx), |
| 2270 | GFP_KERNEL | GFP_DMA); |
Mark Brown | b3a223e | 2012-12-02 12:54:25 +0900 | [diff] [blame] | 2271 | if (!local_buf) |
| 2272 | return -ENOMEM; |
| 2273 | } else { |
| 2274 | local_buf = buf; |
| 2275 | } |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2276 | |
Vitaly Wool | 8275c64 | 2006-01-08 13:34:28 -0800 | [diff] [blame] | 2277 | spi_message_init(&message); |
Jingoo Han | 5fe5f05 | 2013-10-14 10:31:51 +0900 | [diff] [blame] | 2278 | memset(x, 0, sizeof(x)); |
David Brownell | bdff549 | 2009-04-13 14:39:57 -0700 | [diff] [blame] | 2279 | if (n_tx) { |
| 2280 | x[0].len = n_tx; |
| 2281 | spi_message_add_tail(&x[0], &message); |
| 2282 | } |
| 2283 | if (n_rx) { |
| 2284 | x[1].len = n_rx; |
| 2285 | spi_message_add_tail(&x[1], &message); |
| 2286 | } |
Vitaly Wool | 8275c64 | 2006-01-08 13:34:28 -0800 | [diff] [blame] | 2287 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2288 | memcpy(local_buf, txbuf, n_tx); |
David Brownell | bdff549 | 2009-04-13 14:39:57 -0700 | [diff] [blame] | 2289 | x[0].tx_buf = local_buf; |
| 2290 | x[1].rx_buf = local_buf + n_tx; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2291 | |
| 2292 | /* do the i/o */ |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2293 | status = spi_sync(spi, &message); |
Marc Pignat | 9b938b7 | 2007-12-04 23:45:10 -0800 | [diff] [blame] | 2294 | if (status == 0) |
David Brownell | bdff549 | 2009-04-13 14:39:57 -0700 | [diff] [blame] | 2295 | memcpy(rxbuf, x[1].rx_buf, n_rx); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2296 | |
David Brownell | bdff549 | 2009-04-13 14:39:57 -0700 | [diff] [blame] | 2297 | if (x[0].tx_buf == buf) |
David Brownell | 068f407 | 2007-12-04 23:45:09 -0800 | [diff] [blame] | 2298 | mutex_unlock(&lock); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2299 | else |
| 2300 | kfree(local_buf); |
| 2301 | |
| 2302 | return status; |
| 2303 | } |
| 2304 | EXPORT_SYMBOL_GPL(spi_write_then_read); |
| 2305 | |
| 2306 | /*-------------------------------------------------------------------------*/ |
| 2307 | |
Pantelis Antoniou | ce79d54 | 2014-10-28 22:36:05 +0200 | [diff] [blame] | 2308 | #if IS_ENABLED(CONFIG_OF_DYNAMIC) |
| 2309 | static int __spi_of_device_match(struct device *dev, void *data) |
| 2310 | { |
| 2311 | return dev->of_node == data; |
| 2312 | } |
| 2313 | |
| 2314 | /* must call put_device() when done with returned spi_device device */ |
| 2315 | static struct spi_device *of_find_spi_device_by_node(struct device_node *node) |
| 2316 | { |
| 2317 | struct device *dev = bus_find_device(&spi_bus_type, NULL, node, |
| 2318 | __spi_of_device_match); |
| 2319 | return dev ? to_spi_device(dev) : NULL; |
| 2320 | } |
| 2321 | |
| 2322 | static int __spi_of_master_match(struct device *dev, const void *data) |
| 2323 | { |
| 2324 | return dev->of_node == data; |
| 2325 | } |
| 2326 | |
| 2327 | /* the spi masters are not using spi_bus, so we find it with another way */ |
| 2328 | static struct spi_master *of_find_spi_master_by_node(struct device_node *node) |
| 2329 | { |
| 2330 | struct device *dev; |
| 2331 | |
| 2332 | dev = class_find_device(&spi_master_class, NULL, node, |
| 2333 | __spi_of_master_match); |
| 2334 | if (!dev) |
| 2335 | return NULL; |
| 2336 | |
| 2337 | /* reference got in class_find_device */ |
| 2338 | return container_of(dev, struct spi_master, dev); |
| 2339 | } |
| 2340 | |
| 2341 | static int of_spi_notify(struct notifier_block *nb, unsigned long action, |
| 2342 | void *arg) |
| 2343 | { |
| 2344 | struct of_reconfig_data *rd = arg; |
| 2345 | struct spi_master *master; |
| 2346 | struct spi_device *spi; |
| 2347 | |
| 2348 | switch (of_reconfig_get_state_change(action, arg)) { |
| 2349 | case OF_RECONFIG_CHANGE_ADD: |
| 2350 | master = of_find_spi_master_by_node(rd->dn->parent); |
| 2351 | if (master == NULL) |
| 2352 | return NOTIFY_OK; /* not for us */ |
| 2353 | |
| 2354 | spi = of_register_spi_device(master, rd->dn); |
| 2355 | put_device(&master->dev); |
| 2356 | |
| 2357 | if (IS_ERR(spi)) { |
| 2358 | pr_err("%s: failed to create for '%s'\n", |
| 2359 | __func__, rd->dn->full_name); |
| 2360 | return notifier_from_errno(PTR_ERR(spi)); |
| 2361 | } |
| 2362 | break; |
| 2363 | |
| 2364 | case OF_RECONFIG_CHANGE_REMOVE: |
| 2365 | /* find our device by node */ |
| 2366 | spi = of_find_spi_device_by_node(rd->dn); |
| 2367 | if (spi == NULL) |
| 2368 | return NOTIFY_OK; /* no? not meant for us */ |
| 2369 | |
| 2370 | /* unregister takes one ref away */ |
| 2371 | spi_unregister_device(spi); |
| 2372 | |
| 2373 | /* and put the reference of the find */ |
| 2374 | put_device(&spi->dev); |
| 2375 | break; |
| 2376 | } |
| 2377 | |
| 2378 | return NOTIFY_OK; |
| 2379 | } |
| 2380 | |
| 2381 | static struct notifier_block spi_of_notifier = { |
| 2382 | .notifier_call = of_spi_notify, |
| 2383 | }; |
| 2384 | #else /* IS_ENABLED(CONFIG_OF_DYNAMIC) */ |
| 2385 | extern struct notifier_block spi_of_notifier; |
| 2386 | #endif /* IS_ENABLED(CONFIG_OF_DYNAMIC) */ |
| 2387 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2388 | static int __init spi_init(void) |
| 2389 | { |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 2390 | int status; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2391 | |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 2392 | buf = kmalloc(SPI_BUFSIZ, GFP_KERNEL); |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 2393 | if (!buf) { |
| 2394 | status = -ENOMEM; |
| 2395 | goto err0; |
| 2396 | } |
| 2397 | |
| 2398 | status = bus_register(&spi_bus_type); |
| 2399 | if (status < 0) |
| 2400 | goto err1; |
| 2401 | |
| 2402 | status = class_register(&spi_master_class); |
| 2403 | if (status < 0) |
| 2404 | goto err2; |
Pantelis Antoniou | ce79d54 | 2014-10-28 22:36:05 +0200 | [diff] [blame] | 2405 | |
Fabio Estevam | 5267720 | 2014-11-26 20:13:57 -0200 | [diff] [blame] | 2406 | if (IS_ENABLED(CONFIG_OF_DYNAMIC)) |
Pantelis Antoniou | ce79d54 | 2014-10-28 22:36:05 +0200 | [diff] [blame] | 2407 | WARN_ON(of_reconfig_notifier_register(&spi_of_notifier)); |
| 2408 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2409 | return 0; |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 2410 | |
| 2411 | err2: |
| 2412 | bus_unregister(&spi_bus_type); |
| 2413 | err1: |
| 2414 | kfree(buf); |
| 2415 | buf = NULL; |
| 2416 | err0: |
| 2417 | return status; |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2418 | } |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 2419 | |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2420 | /* board_info is normally registered in arch_initcall(), |
| 2421 | * but even essential drivers wait till later |
David Brownell | b885244 | 2006-01-08 13:34:23 -0800 | [diff] [blame] | 2422 | * |
| 2423 | * REVISIT only boardinfo really needs static linking. the rest (device and |
| 2424 | * driver registration) _could_ be dynamically linked (modular) ... costs |
| 2425 | * include needing to have boardinfo data structures be much more public. |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2426 | */ |
David Brownell | 673c0c0 | 2008-10-15 22:02:46 -0700 | [diff] [blame] | 2427 | postcore_initcall(spi_init); |
David Brownell | 8ae12a0 | 2006-01-08 13:34:19 -0800 | [diff] [blame] | 2428 | |