blob: e06a603ab19e895b88f0a1c74113318371e92426 [file] [log] [blame]
Simon Glassd7af6a42014-10-13 23:41:52 -06001/*
2 * Copyright (c) 2014 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <dm.h>
9#include <errno.h>
Simon Glassd7af6a42014-10-13 23:41:52 -060010#include <malloc.h>
11#include <spi.h>
12#include <dm/device-internal.h>
13#include <dm/uclass-internal.h>
Simon Glassd7af6a42014-10-13 23:41:52 -060014#include <dm/lists.h>
15#include <dm/util.h>
16
17DECLARE_GLOBAL_DATA_PTR;
18
19static int spi_set_speed_mode(struct udevice *bus, int speed, int mode)
20{
21 struct dm_spi_ops *ops;
22 int ret;
23
24 ops = spi_get_ops(bus);
25 if (ops->set_speed)
26 ret = ops->set_speed(bus, speed);
27 else
28 ret = -EINVAL;
29 if (ret) {
30 printf("Cannot set speed (err=%d)\n", ret);
31 return ret;
32 }
33
34 if (ops->set_mode)
35 ret = ops->set_mode(bus, mode);
36 else
37 ret = -EINVAL;
38 if (ret) {
39 printf("Cannot set mode (err=%d)\n", ret);
40 return ret;
41 }
42
43 return 0;
44}
45
Peng Fan7a3eff42016-05-03 10:02:22 +080046int dm_spi_claim_bus(struct udevice *dev)
Simon Glassd7af6a42014-10-13 23:41:52 -060047{
Simon Glassd7af6a42014-10-13 23:41:52 -060048 struct udevice *bus = dev->parent;
49 struct dm_spi_ops *ops = spi_get_ops(bus);
Simon Glasse564f052015-03-05 12:25:20 -070050 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
Peng Fan7a3eff42016-05-03 10:02:22 +080051 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -060052 int speed;
53 int ret;
54
55 speed = slave->max_hz;
56 if (spi->max_hz) {
57 if (speed)
Masahiro Yamadab4141192014-11-07 03:03:31 +090058 speed = min(speed, (int)spi->max_hz);
Simon Glassd7af6a42014-10-13 23:41:52 -060059 else
60 speed = spi->max_hz;
61 }
62 if (!speed)
63 speed = 100000;
Simon Glass60e28092015-02-17 15:29:35 -070064 if (speed != slave->speed) {
65 ret = spi_set_speed_mode(bus, speed, slave->mode);
66 if (ret)
67 return ret;
68 slave->speed = speed;
69 }
Simon Glassd7af6a42014-10-13 23:41:52 -060070
Simon Glass9694b722015-04-19 09:05:40 -060071 return ops->claim_bus ? ops->claim_bus(dev) : 0;
Simon Glassd7af6a42014-10-13 23:41:52 -060072}
73
Peng Fan7a3eff42016-05-03 10:02:22 +080074void dm_spi_release_bus(struct udevice *dev)
Simon Glassd7af6a42014-10-13 23:41:52 -060075{
Simon Glassd7af6a42014-10-13 23:41:52 -060076 struct udevice *bus = dev->parent;
77 struct dm_spi_ops *ops = spi_get_ops(bus);
78
79 if (ops->release_bus)
Simon Glass9694b722015-04-19 09:05:40 -060080 ops->release_bus(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -060081}
82
Peng Fan7a3eff42016-05-03 10:02:22 +080083int dm_spi_xfer(struct udevice *dev, unsigned int bitlen,
84 const void *dout, void *din, unsigned long flags)
Simon Glassd7af6a42014-10-13 23:41:52 -060085{
Simon Glassd7af6a42014-10-13 23:41:52 -060086 struct udevice *bus = dev->parent;
87
88 if (bus->uclass->uc_drv->id != UCLASS_SPI)
89 return -EOPNOTSUPP;
90
91 return spi_get_ops(bus)->xfer(dev, bitlen, dout, din, flags);
92}
93
Peng Fan7a3eff42016-05-03 10:02:22 +080094int spi_claim_bus(struct spi_slave *slave)
95{
96 return dm_spi_claim_bus(slave->dev);
97}
98
99void spi_release_bus(struct spi_slave *slave)
100{
101 dm_spi_release_bus(slave->dev);
102}
103
104int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
105 const void *dout, void *din, unsigned long flags)
106{
107 return dm_spi_xfer(slave->dev, bitlen, dout, din, flags);
108}
109
Simon Glass71634f22016-11-13 14:22:01 -0700110#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass6f849c32015-06-23 15:39:05 -0600111static int spi_child_post_bind(struct udevice *dev)
Simon Glassd7af6a42014-10-13 23:41:52 -0600112{
Simon Glassd0cff032015-01-25 08:27:12 -0700113 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600114
Simon Glass279e26f2017-05-18 20:09:54 -0600115 if (!dev_of_valid(dev))
Simon Glassd0cff032015-01-25 08:27:12 -0700116 return 0;
117
Simon Glass279e26f2017-05-18 20:09:54 -0600118 return spi_slave_ofdata_to_platdata(dev, plat);
Simon Glassd0cff032015-01-25 08:27:12 -0700119}
Simon Glass71634f22016-11-13 14:22:01 -0700120#endif
Simon Glassd0cff032015-01-25 08:27:12 -0700121
Simon Glass6f849c32015-06-23 15:39:05 -0600122static int spi_post_probe(struct udevice *bus)
Simon Glassd0cff032015-01-25 08:27:12 -0700123{
Simon Glass71634f22016-11-13 14:22:01 -0700124#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glasse564f052015-03-05 12:25:20 -0700125 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
Simon Glassd0cff032015-01-25 08:27:12 -0700126
Simon Glass279e26f2017-05-18 20:09:54 -0600127 spi->max_hz = dev_read_u32_default(bus, "spi-max-frequency", 0);
Simon Glass71634f22016-11-13 14:22:01 -0700128#endif
Michal Simek281f1562015-10-27 13:36:42 +0100129#if defined(CONFIG_NEEDS_MANUAL_RELOC)
130 struct dm_spi_ops *ops = spi_get_ops(bus);
131
132
133 if (ops->claim_bus)
134 ops->claim_bus += gd->reloc_off;
135 if (ops->release_bus)
136 ops->release_bus += gd->reloc_off;
137 if (ops->set_wordlen)
138 ops->set_wordlen += gd->reloc_off;
139 if (ops->xfer)
140 ops->xfer += gd->reloc_off;
141 if (ops->set_speed)
142 ops->set_speed += gd->reloc_off;
143 if (ops->set_mode)
144 ops->set_mode += gd->reloc_off;
145 if (ops->cs_info)
146 ops->cs_info += gd->reloc_off;
147#endif
148
Simon Glassd7af6a42014-10-13 23:41:52 -0600149 return 0;
150}
151
Simon Glass6f849c32015-06-23 15:39:05 -0600152static int spi_child_pre_probe(struct udevice *dev)
Simon Glass440714e2015-01-25 08:27:11 -0700153{
Simon Glassd0cff032015-01-25 08:27:12 -0700154 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassbcbe3d12015-09-28 23:32:01 -0600155 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glass440714e2015-01-25 08:27:11 -0700156
Simon Glassd0cff032015-01-25 08:27:12 -0700157 /*
158 * This is needed because we pass struct spi_slave around the place
159 * instead slave->dev (a struct udevice). So we have to have some
160 * way to access the slave udevice given struct spi_slave. Once we
161 * change the SPI API to use udevice instead of spi_slave, we can
162 * drop this.
163 */
Simon Glass440714e2015-01-25 08:27:11 -0700164 slave->dev = dev;
165
Simon Glassd0cff032015-01-25 08:27:12 -0700166 slave->max_hz = plat->max_hz;
167 slave->mode = plat->mode;
Christophe Ricard674f3602016-01-17 11:56:48 +0100168 slave->wordlen = SPI_DEFAULT_WORDLEN;
Simon Glassd0cff032015-01-25 08:27:12 -0700169
Simon Glass440714e2015-01-25 08:27:11 -0700170 return 0;
171}
172
Simon Glassd7af6a42014-10-13 23:41:52 -0600173int spi_chip_select(struct udevice *dev)
174{
Simon Glassd0cff032015-01-25 08:27:12 -0700175 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600176
Simon Glassd0cff032015-01-25 08:27:12 -0700177 return plat ? plat->cs : -ENOENT;
Simon Glassd7af6a42014-10-13 23:41:52 -0600178}
179
Simon Glassff56bba2014-11-11 10:46:22 -0700180int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
Simon Glassd7af6a42014-10-13 23:41:52 -0600181{
182 struct udevice *dev;
183
184 for (device_find_first_child(bus, &dev); dev;
185 device_find_next_child(&dev)) {
Simon Glassd0cff032015-01-25 08:27:12 -0700186 struct dm_spi_slave_platdata *plat;
Simon Glassd7af6a42014-10-13 23:41:52 -0600187
Simon Glassd0cff032015-01-25 08:27:12 -0700188 plat = dev_get_parent_platdata(dev);
189 debug("%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
190 if (plat->cs == cs) {
Simon Glassd7af6a42014-10-13 23:41:52 -0600191 *devp = dev;
192 return 0;
193 }
194 }
195
196 return -ENODEV;
197}
198
199int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
200{
201 struct spi_cs_info info;
202 struct udevice *bus;
203 int ret;
204
205 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
206 if (ret) {
207 debug("%s: No bus %d\n", __func__, busnum);
208 return ret;
209 }
210
211 return spi_cs_info(bus, cs, &info);
212}
213
214int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
215{
216 struct spi_cs_info local_info;
217 struct dm_spi_ops *ops;
218 int ret;
219
220 if (!info)
221 info = &local_info;
222
223 /* If there is a device attached, return it */
224 info->dev = NULL;
225 ret = spi_find_chip_select(bus, cs, &info->dev);
226 if (!ret)
227 return 0;
228
229 /*
230 * Otherwise ask the driver. For the moment we don't have CS info.
231 * When we do we could provide the driver with a helper function
232 * to figure out what chip selects are valid, or just handle the
233 * request.
234 */
235 ops = spi_get_ops(bus);
236 if (ops->cs_info)
237 return ops->cs_info(bus, cs, info);
238
239 /*
240 * We could assume there is at least one valid chip select, but best
241 * to be sure and return an error in this case. The driver didn't
242 * care enough to tell us.
243 */
244 return -ENODEV;
245}
246
Simon Glassd7af6a42014-10-13 23:41:52 -0600247int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
248 struct udevice **devp)
249{
250 struct udevice *bus, *dev;
251 int ret;
252
253 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
254 if (ret) {
255 debug("%s: No bus %d\n", __func__, busnum);
256 return ret;
257 }
258 ret = spi_find_chip_select(bus, cs, &dev);
259 if (ret) {
260 debug("%s: No cs %d\n", __func__, cs);
261 return ret;
262 }
263 *busp = bus;
264 *devp = dev;
265
266 return ret;
267}
268
269int spi_get_bus_and_cs(int busnum, int cs, int speed, int mode,
270 const char *drv_name, const char *dev_name,
271 struct udevice **busp, struct spi_slave **devp)
272{
273 struct udevice *bus, *dev;
Vignesh R96907c02016-07-06 10:04:28 +0530274 struct dm_spi_slave_platdata *plat;
Simon Glassd7af6a42014-10-13 23:41:52 -0600275 bool created = false;
276 int ret;
277
Simon Glass71634f22016-11-13 14:22:01 -0700278#if CONFIG_IS_ENABLED(OF_PLATDATA)
279 ret = uclass_first_device_err(UCLASS_SPI, &bus);
280#else
Simon Glassd7af6a42014-10-13 23:41:52 -0600281 ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
Simon Glass71634f22016-11-13 14:22:01 -0700282#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600283 if (ret) {
284 printf("Invalid bus %d (err=%d)\n", busnum, ret);
285 return ret;
286 }
287 ret = spi_find_chip_select(bus, cs, &dev);
288
289 /*
290 * If there is no such device, create one automatically. This means
291 * that we don't need a device tree node or platform data for the
292 * SPI flash chip - we will bind to the correct driver.
293 */
294 if (ret == -ENODEV && drv_name) {
295 debug("%s: Binding new device '%s', busnum=%d, cs=%d, driver=%s\n",
296 __func__, dev_name, busnum, cs, drv_name);
Simon Glass6b186562014-11-11 10:46:23 -0700297 ret = device_bind_driver(bus, drv_name, dev_name, &dev);
Simon Glass28f98852016-11-13 14:22:05 -0700298 if (ret) {
299 debug("%s: Unable to bind driver (ret=%d)\n", __func__,
300 ret);
Simon Glassd7af6a42014-10-13 23:41:52 -0600301 return ret;
Simon Glass28f98852016-11-13 14:22:05 -0700302 }
Simon Glassd0cff032015-01-25 08:27:12 -0700303 plat = dev_get_parent_platdata(dev);
304 plat->cs = cs;
305 plat->max_hz = speed;
306 plat->mode = mode;
Simon Glassd7af6a42014-10-13 23:41:52 -0600307 created = true;
308 } else if (ret) {
309 printf("Invalid chip select %d:%d (err=%d)\n", busnum, cs,
310 ret);
311 return ret;
312 }
313
314 if (!device_active(dev)) {
Simon Glassd0cff032015-01-25 08:27:12 -0700315 struct spi_slave *slave;
Simon Glassd7af6a42014-10-13 23:41:52 -0600316
Simon Glassd0cff032015-01-25 08:27:12 -0700317 ret = device_probe(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600318 if (ret)
319 goto err;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600320 slave = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600321 slave->dev = dev;
Simon Glassd7af6a42014-10-13 23:41:52 -0600322 }
323
Vignesh R96907c02016-07-06 10:04:28 +0530324 plat = dev_get_parent_platdata(dev);
325 if (!speed) {
326 speed = plat->max_hz;
327 mode = plat->mode;
328 }
Simon Glassd7af6a42014-10-13 23:41:52 -0600329 ret = spi_set_speed_mode(bus, speed, mode);
330 if (ret)
331 goto err;
332
333 *busp = bus;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600334 *devp = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600335 debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
336
337 return 0;
338
339err:
Anatolij Gustschinc8864d72016-04-21 09:28:02 +0200340 debug("%s: Error path, created=%d, device '%s'\n", __func__,
Simon Glassd0cff032015-01-25 08:27:12 -0700341 created, dev->name);
Simon Glassd7af6a42014-10-13 23:41:52 -0600342 if (created) {
Stefan Roese706865a2017-03-20 12:51:48 +0100343 device_remove(dev, DM_REMOVE_NORMAL);
Simon Glassd7af6a42014-10-13 23:41:52 -0600344 device_unbind(dev);
345 }
346
347 return ret;
348}
349
350/* Compatibility function - to be removed */
351struct spi_slave *spi_setup_slave_fdt(const void *blob, int node,
352 int bus_node)
353{
354 struct udevice *bus, *dev;
355 int ret;
356
357 ret = uclass_get_device_by_of_offset(UCLASS_SPI, bus_node, &bus);
358 if (ret)
359 return NULL;
360 ret = device_get_child_by_of_offset(bus, node, &dev);
361 if (ret)
362 return NULL;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600363 return dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600364}
365
366/* Compatibility function - to be removed */
367struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs,
368 unsigned int speed, unsigned int mode)
369{
370 struct spi_slave *slave;
371 struct udevice *dev;
372 int ret;
373
374 ret = spi_get_bus_and_cs(busnum, cs, speed, mode, NULL, 0, &dev,
Simon Glass279e26f2017-05-18 20:09:54 -0600375 &slave);
Simon Glassd7af6a42014-10-13 23:41:52 -0600376 if (ret)
377 return NULL;
378
379 return slave;
380}
381
382void spi_free_slave(struct spi_slave *slave)
383{
Stefan Roese706865a2017-03-20 12:51:48 +0100384 device_remove(slave->dev, DM_REMOVE_NORMAL);
Simon Glassd7af6a42014-10-13 23:41:52 -0600385 slave->dev = NULL;
386}
387
Simon Glass279e26f2017-05-18 20:09:54 -0600388int spi_slave_ofdata_to_platdata(struct udevice *dev,
Simon Glassd0cff032015-01-25 08:27:12 -0700389 struct dm_spi_slave_platdata *plat)
Simon Glassd7af6a42014-10-13 23:41:52 -0600390{
Jagan Teki08fe9c22016-08-08 17:12:12 +0530391 int mode = 0;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530392 int value;
Simon Glassd7af6a42014-10-13 23:41:52 -0600393
Simon Glass279e26f2017-05-18 20:09:54 -0600394 plat->cs = dev_read_u32_default(dev, "reg", -1);
395 plat->max_hz = dev_read_u32_default(dev, "spi-max-frequency", 0);
396 if (dev_read_bool(dev, "spi-cpol"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600397 mode |= SPI_CPOL;
Simon Glass279e26f2017-05-18 20:09:54 -0600398 if (dev_read_bool(dev, "spi-cpha"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600399 mode |= SPI_CPHA;
Simon Glass279e26f2017-05-18 20:09:54 -0600400 if (dev_read_bool(dev, "spi-cs-high"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600401 mode |= SPI_CS_HIGH;
Simon Glass279e26f2017-05-18 20:09:54 -0600402 if (dev_read_bool(dev, "spi-3wire"))
Jagan Teki379b49d2015-12-03 22:19:05 +0530403 mode |= SPI_3WIRE;
Simon Glass279e26f2017-05-18 20:09:54 -0600404 if (dev_read_bool(dev, "spi-half-duplex"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600405 mode |= SPI_PREAMBLE;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530406
407 /* Device DUAL/QUAD mode */
Simon Glass279e26f2017-05-18 20:09:54 -0600408 value = dev_read_u32_default(dev, "spi-tx-bus-width", 1);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530409 switch (value) {
410 case 1:
411 break;
412 case 2:
413 mode |= SPI_TX_DUAL;
414 break;
415 case 4:
416 mode |= SPI_TX_QUAD;
417 break;
418 default:
Simon Glass1b7c28f2016-11-29 20:00:13 -0700419 warn_non_spl("spi-tx-bus-width %d not supported\n", value);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530420 break;
421 }
422
Simon Glass279e26f2017-05-18 20:09:54 -0600423 value = dev_read_u32_default(dev, "spi-rx-bus-width", 1);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530424 switch (value) {
425 case 1:
426 break;
427 case 2:
Jagan Teki08fe9c22016-08-08 17:12:12 +0530428 mode |= SPI_RX_DUAL;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530429 break;
430 case 4:
Jagan Teki08fe9c22016-08-08 17:12:12 +0530431 mode |= SPI_RX_QUAD;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530432 break;
433 default:
Simon Glass1b7c28f2016-11-29 20:00:13 -0700434 warn_non_spl("spi-rx-bus-width %d not supported\n", value);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530435 break;
436 }
437
Jagan Teki08fe9c22016-08-08 17:12:12 +0530438 plat->mode = mode;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530439
Simon Glassd7af6a42014-10-13 23:41:52 -0600440 return 0;
441}
442
443UCLASS_DRIVER(spi) = {
444 .id = UCLASS_SPI,
445 .name = "spi",
Simon Glass9cc36a22015-01-25 08:27:05 -0700446 .flags = DM_UC_FLAG_SEQ_ALIAS,
Simon Glass71634f22016-11-13 14:22:01 -0700447#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass91195482016-07-05 17:10:10 -0600448 .post_bind = dm_scan_fdt_dev,
Simon Glass71634f22016-11-13 14:22:01 -0700449#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600450 .post_probe = spi_post_probe,
Simon Glass440714e2015-01-25 08:27:11 -0700451 .child_pre_probe = spi_child_pre_probe,
Simon Glassd7af6a42014-10-13 23:41:52 -0600452 .per_device_auto_alloc_size = sizeof(struct dm_spi_bus),
Simon Glass19a25f62015-01-25 08:27:07 -0700453 .per_child_auto_alloc_size = sizeof(struct spi_slave),
Simon Glassd0cff032015-01-25 08:27:12 -0700454 .per_child_platdata_auto_alloc_size =
455 sizeof(struct dm_spi_slave_platdata),
Simon Glass71634f22016-11-13 14:22:01 -0700456#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassd0cff032015-01-25 08:27:12 -0700457 .child_post_bind = spi_child_post_bind,
Simon Glass71634f22016-11-13 14:22:01 -0700458#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600459};
460
461UCLASS_DRIVER(spi_generic) = {
462 .id = UCLASS_SPI_GENERIC,
463 .name = "spi_generic",
464};
465
466U_BOOT_DRIVER(spi_generic_drv) = {
467 .name = "spi_generic_drv",
468 .id = UCLASS_SPI_GENERIC,
469};