blob: 15d90a54a1e61f82a67e56a0afbc1286fe348838 [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;
Simon Glassd7af6a42014-10-13 23:41:52 -060053
54 speed = slave->max_hz;
55 if (spi->max_hz) {
56 if (speed)
Masahiro Yamadab4141192014-11-07 03:03:31 +090057 speed = min(speed, (int)spi->max_hz);
Simon Glassd7af6a42014-10-13 23:41:52 -060058 else
59 speed = spi->max_hz;
60 }
61 if (!speed)
62 speed = 100000;
Simon Glass60e28092015-02-17 15:29:35 -070063 if (speed != slave->speed) {
Mario Six24fc1ec2018-01-15 11:08:41 +010064 int ret = spi_set_speed_mode(bus, speed, slave->mode);
65
Simon Glass60e28092015-02-17 15:29:35 -070066 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
Michal Simek281f1562015-10-27 13:36:42 +0100132 if (ops->claim_bus)
133 ops->claim_bus += gd->reloc_off;
134 if (ops->release_bus)
135 ops->release_bus += gd->reloc_off;
136 if (ops->set_wordlen)
137 ops->set_wordlen += gd->reloc_off;
138 if (ops->xfer)
139 ops->xfer += gd->reloc_off;
140 if (ops->set_speed)
141 ops->set_speed += gd->reloc_off;
142 if (ops->set_mode)
143 ops->set_mode += gd->reloc_off;
144 if (ops->cs_info)
145 ops->cs_info += gd->reloc_off;
146#endif
147
Simon Glassd7af6a42014-10-13 23:41:52 -0600148 return 0;
149}
150
Simon Glass6f849c32015-06-23 15:39:05 -0600151static int spi_child_pre_probe(struct udevice *dev)
Simon Glass440714e2015-01-25 08:27:11 -0700152{
Simon Glassd0cff032015-01-25 08:27:12 -0700153 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassbcbe3d12015-09-28 23:32:01 -0600154 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glass440714e2015-01-25 08:27:11 -0700155
Simon Glassd0cff032015-01-25 08:27:12 -0700156 /*
157 * This is needed because we pass struct spi_slave around the place
158 * instead slave->dev (a struct udevice). So we have to have some
159 * way to access the slave udevice given struct spi_slave. Once we
160 * change the SPI API to use udevice instead of spi_slave, we can
161 * drop this.
162 */
Simon Glass440714e2015-01-25 08:27:11 -0700163 slave->dev = dev;
164
Simon Glassd0cff032015-01-25 08:27:12 -0700165 slave->max_hz = plat->max_hz;
166 slave->mode = plat->mode;
Christophe Ricard674f3602016-01-17 11:56:48 +0100167 slave->wordlen = SPI_DEFAULT_WORDLEN;
Simon Glassd0cff032015-01-25 08:27:12 -0700168
Simon Glass440714e2015-01-25 08:27:11 -0700169 return 0;
170}
171
Simon Glassd7af6a42014-10-13 23:41:52 -0600172int spi_chip_select(struct udevice *dev)
173{
Simon Glassd0cff032015-01-25 08:27:12 -0700174 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600175
Simon Glassd0cff032015-01-25 08:27:12 -0700176 return plat ? plat->cs : -ENOENT;
Simon Glassd7af6a42014-10-13 23:41:52 -0600177}
178
Simon Glassff56bba2014-11-11 10:46:22 -0700179int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
Simon Glassd7af6a42014-10-13 23:41:52 -0600180{
181 struct udevice *dev;
182
183 for (device_find_first_child(bus, &dev); dev;
184 device_find_next_child(&dev)) {
Simon Glassd0cff032015-01-25 08:27:12 -0700185 struct dm_spi_slave_platdata *plat;
Simon Glassd7af6a42014-10-13 23:41:52 -0600186
Simon Glassd0cff032015-01-25 08:27:12 -0700187 plat = dev_get_parent_platdata(dev);
188 debug("%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
189 if (plat->cs == cs) {
Simon Glassd7af6a42014-10-13 23:41:52 -0600190 *devp = dev;
191 return 0;
192 }
193 }
194
195 return -ENODEV;
196}
197
198int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
199{
200 struct spi_cs_info info;
201 struct udevice *bus;
202 int ret;
203
204 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
205 if (ret) {
206 debug("%s: No bus %d\n", __func__, busnum);
207 return ret;
208 }
209
210 return spi_cs_info(bus, cs, &info);
211}
212
213int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
214{
215 struct spi_cs_info local_info;
216 struct dm_spi_ops *ops;
217 int ret;
218
219 if (!info)
220 info = &local_info;
221
222 /* If there is a device attached, return it */
223 info->dev = NULL;
224 ret = spi_find_chip_select(bus, cs, &info->dev);
225 if (!ret)
226 return 0;
227
228 /*
229 * Otherwise ask the driver. For the moment we don't have CS info.
230 * When we do we could provide the driver with a helper function
231 * to figure out what chip selects are valid, or just handle the
232 * request.
233 */
234 ops = spi_get_ops(bus);
235 if (ops->cs_info)
236 return ops->cs_info(bus, cs, info);
237
238 /*
239 * We could assume there is at least one valid chip select, but best
240 * to be sure and return an error in this case. The driver didn't
241 * care enough to tell us.
242 */
243 return -ENODEV;
244}
245
Simon Glassd7af6a42014-10-13 23:41:52 -0600246int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
247 struct udevice **devp)
248{
249 struct udevice *bus, *dev;
250 int ret;
251
252 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
253 if (ret) {
254 debug("%s: No bus %d\n", __func__, busnum);
255 return ret;
256 }
257 ret = spi_find_chip_select(bus, cs, &dev);
258 if (ret) {
259 debug("%s: No cs %d\n", __func__, cs);
260 return ret;
261 }
262 *busp = bus;
263 *devp = dev;
264
265 return ret;
266}
267
268int spi_get_bus_and_cs(int busnum, int cs, int speed, int mode,
269 const char *drv_name, const char *dev_name,
270 struct udevice **busp, struct spi_slave **devp)
271{
272 struct udevice *bus, *dev;
Vignesh R96907c02016-07-06 10:04:28 +0530273 struct dm_spi_slave_platdata *plat;
Simon Glassd7af6a42014-10-13 23:41:52 -0600274 bool created = false;
275 int ret;
276
Simon Glass71634f22016-11-13 14:22:01 -0700277#if CONFIG_IS_ENABLED(OF_PLATDATA)
278 ret = uclass_first_device_err(UCLASS_SPI, &bus);
279#else
Simon Glassd7af6a42014-10-13 23:41:52 -0600280 ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
Simon Glass71634f22016-11-13 14:22:01 -0700281#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600282 if (ret) {
283 printf("Invalid bus %d (err=%d)\n", busnum, ret);
284 return ret;
285 }
286 ret = spi_find_chip_select(bus, cs, &dev);
287
288 /*
289 * If there is no such device, create one automatically. This means
290 * that we don't need a device tree node or platform data for the
291 * SPI flash chip - we will bind to the correct driver.
292 */
293 if (ret == -ENODEV && drv_name) {
294 debug("%s: Binding new device '%s', busnum=%d, cs=%d, driver=%s\n",
295 __func__, dev_name, busnum, cs, drv_name);
Simon Glass6b186562014-11-11 10:46:23 -0700296 ret = device_bind_driver(bus, drv_name, dev_name, &dev);
Simon Glass28f98852016-11-13 14:22:05 -0700297 if (ret) {
298 debug("%s: Unable to bind driver (ret=%d)\n", __func__,
299 ret);
Simon Glassd7af6a42014-10-13 23:41:52 -0600300 return ret;
Simon Glass28f98852016-11-13 14:22:05 -0700301 }
Simon Glassd0cff032015-01-25 08:27:12 -0700302 plat = dev_get_parent_platdata(dev);
303 plat->cs = cs;
304 plat->max_hz = speed;
305 plat->mode = mode;
Simon Glassd7af6a42014-10-13 23:41:52 -0600306 created = true;
307 } else if (ret) {
308 printf("Invalid chip select %d:%d (err=%d)\n", busnum, cs,
309 ret);
310 return ret;
311 }
312
313 if (!device_active(dev)) {
Simon Glassd0cff032015-01-25 08:27:12 -0700314 struct spi_slave *slave;
Simon Glassd7af6a42014-10-13 23:41:52 -0600315
Simon Glassd0cff032015-01-25 08:27:12 -0700316 ret = device_probe(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600317 if (ret)
318 goto err;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600319 slave = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600320 slave->dev = dev;
Simon Glassd7af6a42014-10-13 23:41:52 -0600321 }
322
Vignesh R96907c02016-07-06 10:04:28 +0530323 plat = dev_get_parent_platdata(dev);
324 if (!speed) {
325 speed = plat->max_hz;
326 mode = plat->mode;
327 }
Simon Glassd7af6a42014-10-13 23:41:52 -0600328 ret = spi_set_speed_mode(bus, speed, mode);
329 if (ret)
330 goto err;
331
332 *busp = bus;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600333 *devp = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600334 debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
335
336 return 0;
337
338err:
Anatolij Gustschinc8864d72016-04-21 09:28:02 +0200339 debug("%s: Error path, created=%d, device '%s'\n", __func__,
Simon Glassd0cff032015-01-25 08:27:12 -0700340 created, dev->name);
Simon Glassd7af6a42014-10-13 23:41:52 -0600341 if (created) {
Stefan Roese706865a2017-03-20 12:51:48 +0100342 device_remove(dev, DM_REMOVE_NORMAL);
Simon Glassd7af6a42014-10-13 23:41:52 -0600343 device_unbind(dev);
344 }
345
346 return ret;
347}
348
349/* Compatibility function - to be removed */
Simon Glassd7af6a42014-10-13 23:41:52 -0600350struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs,
351 unsigned int speed, unsigned int mode)
352{
353 struct spi_slave *slave;
354 struct udevice *dev;
355 int ret;
356
357 ret = spi_get_bus_and_cs(busnum, cs, speed, mode, NULL, 0, &dev,
Simon Glass279e26f2017-05-18 20:09:54 -0600358 &slave);
Simon Glassd7af6a42014-10-13 23:41:52 -0600359 if (ret)
360 return NULL;
361
362 return slave;
363}
364
365void spi_free_slave(struct spi_slave *slave)
366{
Stefan Roese706865a2017-03-20 12:51:48 +0100367 device_remove(slave->dev, DM_REMOVE_NORMAL);
Simon Glassd7af6a42014-10-13 23:41:52 -0600368 slave->dev = NULL;
369}
370
Simon Glass279e26f2017-05-18 20:09:54 -0600371int spi_slave_ofdata_to_platdata(struct udevice *dev,
Simon Glassd0cff032015-01-25 08:27:12 -0700372 struct dm_spi_slave_platdata *plat)
Simon Glassd7af6a42014-10-13 23:41:52 -0600373{
Jagan Teki08fe9c22016-08-08 17:12:12 +0530374 int mode = 0;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530375 int value;
Simon Glassd7af6a42014-10-13 23:41:52 -0600376
Simon Glass279e26f2017-05-18 20:09:54 -0600377 plat->cs = dev_read_u32_default(dev, "reg", -1);
378 plat->max_hz = dev_read_u32_default(dev, "spi-max-frequency", 0);
379 if (dev_read_bool(dev, "spi-cpol"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600380 mode |= SPI_CPOL;
Simon Glass279e26f2017-05-18 20:09:54 -0600381 if (dev_read_bool(dev, "spi-cpha"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600382 mode |= SPI_CPHA;
Simon Glass279e26f2017-05-18 20:09:54 -0600383 if (dev_read_bool(dev, "spi-cs-high"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600384 mode |= SPI_CS_HIGH;
Simon Glass279e26f2017-05-18 20:09:54 -0600385 if (dev_read_bool(dev, "spi-3wire"))
Jagan Teki379b49d2015-12-03 22:19:05 +0530386 mode |= SPI_3WIRE;
Simon Glass279e26f2017-05-18 20:09:54 -0600387 if (dev_read_bool(dev, "spi-half-duplex"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600388 mode |= SPI_PREAMBLE;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530389
390 /* Device DUAL/QUAD mode */
Simon Glass279e26f2017-05-18 20:09:54 -0600391 value = dev_read_u32_default(dev, "spi-tx-bus-width", 1);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530392 switch (value) {
393 case 1:
394 break;
395 case 2:
396 mode |= SPI_TX_DUAL;
397 break;
398 case 4:
399 mode |= SPI_TX_QUAD;
400 break;
401 default:
Simon Glass1b7c28f2016-11-29 20:00:13 -0700402 warn_non_spl("spi-tx-bus-width %d not supported\n", value);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530403 break;
404 }
405
Simon Glass279e26f2017-05-18 20:09:54 -0600406 value = dev_read_u32_default(dev, "spi-rx-bus-width", 1);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530407 switch (value) {
408 case 1:
409 break;
410 case 2:
Jagan Teki08fe9c22016-08-08 17:12:12 +0530411 mode |= SPI_RX_DUAL;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530412 break;
413 case 4:
Jagan Teki08fe9c22016-08-08 17:12:12 +0530414 mode |= SPI_RX_QUAD;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530415 break;
416 default:
Simon Glass1b7c28f2016-11-29 20:00:13 -0700417 warn_non_spl("spi-rx-bus-width %d not supported\n", value);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530418 break;
419 }
420
Jagan Teki08fe9c22016-08-08 17:12:12 +0530421 plat->mode = mode;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530422
Simon Glassd7af6a42014-10-13 23:41:52 -0600423 return 0;
424}
425
426UCLASS_DRIVER(spi) = {
427 .id = UCLASS_SPI,
428 .name = "spi",
Simon Glass9cc36a22015-01-25 08:27:05 -0700429 .flags = DM_UC_FLAG_SEQ_ALIAS,
Simon Glass71634f22016-11-13 14:22:01 -0700430#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass91195482016-07-05 17:10:10 -0600431 .post_bind = dm_scan_fdt_dev,
Simon Glass71634f22016-11-13 14:22:01 -0700432#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600433 .post_probe = spi_post_probe,
Simon Glass440714e2015-01-25 08:27:11 -0700434 .child_pre_probe = spi_child_pre_probe,
Simon Glassd7af6a42014-10-13 23:41:52 -0600435 .per_device_auto_alloc_size = sizeof(struct dm_spi_bus),
Simon Glass19a25f62015-01-25 08:27:07 -0700436 .per_child_auto_alloc_size = sizeof(struct spi_slave),
Simon Glassd0cff032015-01-25 08:27:12 -0700437 .per_child_platdata_auto_alloc_size =
438 sizeof(struct dm_spi_slave_platdata),
Simon Glass71634f22016-11-13 14:22:01 -0700439#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassd0cff032015-01-25 08:27:12 -0700440 .child_post_bind = spi_child_post_bind,
Simon Glass71634f22016-11-13 14:22:01 -0700441#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600442};
443
444UCLASS_DRIVER(spi_generic) = {
445 .id = UCLASS_SPI_GENERIC,
446 .name = "spi_generic",
447};
448
449U_BOOT_DRIVER(spi_generic_drv) = {
450 .name = "spi_generic_drv",
451 .id = UCLASS_SPI_GENERIC,
452};