blob: 8003f9bfc8635cb32d0f7808f7c5a3e11bf2c2ed [file] [log] [blame]
Simon Glassdd82d442014-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>
10#include <fdtdec.h>
11#include <malloc.h>
12#include <spi.h>
13#include <dm/device-internal.h>
14#include <dm/uclass-internal.h>
15#include <dm/root.h>
16#include <dm/lists.h>
17#include <dm/util.h>
18
19DECLARE_GLOBAL_DATA_PTR;
20
21static int spi_set_speed_mode(struct udevice *bus, int speed, int mode)
22{
23 struct dm_spi_ops *ops;
24 int ret;
25
26 ops = spi_get_ops(bus);
27 if (ops->set_speed)
28 ret = ops->set_speed(bus, speed);
29 else
30 ret = -EINVAL;
31 if (ret) {
32 printf("Cannot set speed (err=%d)\n", ret);
33 return ret;
34 }
35
36 if (ops->set_mode)
37 ret = ops->set_mode(bus, mode);
38 else
39 ret = -EINVAL;
40 if (ret) {
41 printf("Cannot set mode (err=%d)\n", ret);
42 return ret;
43 }
44
45 return 0;
46}
47
Peng Fanfdd88a32016-05-03 10:02:22 +080048int dm_spi_claim_bus(struct udevice *dev)
Simon Glassdd82d442014-10-13 23:41:52 -060049{
Simon Glassdd82d442014-10-13 23:41:52 -060050 struct udevice *bus = dev->parent;
51 struct dm_spi_ops *ops = spi_get_ops(bus);
Simon Glassde0977b2015-03-05 12:25:20 -070052 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
Peng Fanfdd88a32016-05-03 10:02:22 +080053 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glassdd82d442014-10-13 23:41:52 -060054 int speed;
55 int ret;
56
57 speed = slave->max_hz;
58 if (spi->max_hz) {
59 if (speed)
Masahiro Yamadadb204642014-11-07 03:03:31 +090060 speed = min(speed, (int)spi->max_hz);
Simon Glassdd82d442014-10-13 23:41:52 -060061 else
62 speed = spi->max_hz;
63 }
64 if (!speed)
65 speed = 100000;
Simon Glassb46cb632015-02-17 15:29:35 -070066 if (speed != slave->speed) {
67 ret = spi_set_speed_mode(bus, speed, slave->mode);
68 if (ret)
69 return ret;
70 slave->speed = speed;
71 }
Simon Glassdd82d442014-10-13 23:41:52 -060072
Simon Glass5c74fba2015-04-19 09:05:40 -060073 return ops->claim_bus ? ops->claim_bus(dev) : 0;
Simon Glassdd82d442014-10-13 23:41:52 -060074}
75
Peng Fanfdd88a32016-05-03 10:02:22 +080076void dm_spi_release_bus(struct udevice *dev)
Simon Glassdd82d442014-10-13 23:41:52 -060077{
Simon Glassdd82d442014-10-13 23:41:52 -060078 struct udevice *bus = dev->parent;
79 struct dm_spi_ops *ops = spi_get_ops(bus);
80
81 if (ops->release_bus)
Simon Glass5c74fba2015-04-19 09:05:40 -060082 ops->release_bus(dev);
Simon Glassdd82d442014-10-13 23:41:52 -060083}
84
Peng Fanfdd88a32016-05-03 10:02:22 +080085int dm_spi_xfer(struct udevice *dev, unsigned int bitlen,
86 const void *dout, void *din, unsigned long flags)
Simon Glassdd82d442014-10-13 23:41:52 -060087{
Simon Glassdd82d442014-10-13 23:41:52 -060088 struct udevice *bus = dev->parent;
89
90 if (bus->uclass->uc_drv->id != UCLASS_SPI)
91 return -EOPNOTSUPP;
92
93 return spi_get_ops(bus)->xfer(dev, bitlen, dout, din, flags);
94}
95
Peng Fanfdd88a32016-05-03 10:02:22 +080096int spi_claim_bus(struct spi_slave *slave)
97{
98 return dm_spi_claim_bus(slave->dev);
99}
100
101void spi_release_bus(struct spi_slave *slave)
102{
103 dm_spi_release_bus(slave->dev);
104}
105
106int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
107 const void *dout, void *din, unsigned long flags)
108{
109 return dm_spi_xfer(slave->dev, bitlen, dout, din, flags);
110}
111
Simon Glassd941aaf2015-06-23 15:39:05 -0600112static int spi_post_bind(struct udevice *dev)
Simon Glassdd82d442014-10-13 23:41:52 -0600113{
114 /* Scan the bus for devices */
115 return dm_scan_fdt_node(dev, gd->fdt_blob, dev->of_offset, false);
116}
117
Simon Glassd941aaf2015-06-23 15:39:05 -0600118static int spi_child_post_bind(struct udevice *dev)
Simon Glassdd82d442014-10-13 23:41:52 -0600119{
Simon Glass5d2ee052015-01-25 08:27:12 -0700120 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassdd82d442014-10-13 23:41:52 -0600121
Simon Glass5d2ee052015-01-25 08:27:12 -0700122 if (dev->of_offset == -1)
123 return 0;
124
125 return spi_slave_ofdata_to_platdata(gd->fdt_blob, dev->of_offset, plat);
126}
127
Simon Glassd941aaf2015-06-23 15:39:05 -0600128static int spi_post_probe(struct udevice *bus)
Simon Glass5d2ee052015-01-25 08:27:12 -0700129{
Simon Glassde0977b2015-03-05 12:25:20 -0700130 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
Simon Glass5d2ee052015-01-25 08:27:12 -0700131
132 spi->max_hz = fdtdec_get_int(gd->fdt_blob, bus->of_offset,
Simon Glassdd82d442014-10-13 23:41:52 -0600133 "spi-max-frequency", 0);
134
Michal Simek28d7e4e2015-10-27 13:36:42 +0100135#if defined(CONFIG_NEEDS_MANUAL_RELOC)
136 struct dm_spi_ops *ops = spi_get_ops(bus);
137
138
139 if (ops->claim_bus)
140 ops->claim_bus += gd->reloc_off;
141 if (ops->release_bus)
142 ops->release_bus += gd->reloc_off;
143 if (ops->set_wordlen)
144 ops->set_wordlen += gd->reloc_off;
145 if (ops->xfer)
146 ops->xfer += gd->reloc_off;
147 if (ops->set_speed)
148 ops->set_speed += gd->reloc_off;
149 if (ops->set_mode)
150 ops->set_mode += gd->reloc_off;
151 if (ops->cs_info)
152 ops->cs_info += gd->reloc_off;
153#endif
154
Simon Glassdd82d442014-10-13 23:41:52 -0600155 return 0;
156}
157
Simon Glassd941aaf2015-06-23 15:39:05 -0600158static int spi_child_pre_probe(struct udevice *dev)
Simon Glass82c2f502015-01-25 08:27:11 -0700159{
Simon Glass5d2ee052015-01-25 08:27:12 -0700160 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassde44acf2015-09-28 23:32:01 -0600161 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glass82c2f502015-01-25 08:27:11 -0700162
Simon Glass5d2ee052015-01-25 08:27:12 -0700163 /*
164 * This is needed because we pass struct spi_slave around the place
165 * instead slave->dev (a struct udevice). So we have to have some
166 * way to access the slave udevice given struct spi_slave. Once we
167 * change the SPI API to use udevice instead of spi_slave, we can
168 * drop this.
169 */
Simon Glass82c2f502015-01-25 08:27:11 -0700170 slave->dev = dev;
171
Simon Glass5d2ee052015-01-25 08:27:12 -0700172 slave->max_hz = plat->max_hz;
173 slave->mode = plat->mode;
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530174 slave->mode_rx = plat->mode_rx;
Christophe Ricardfb0c53e2016-01-17 11:56:48 +0100175 slave->wordlen = SPI_DEFAULT_WORDLEN;
Simon Glass5d2ee052015-01-25 08:27:12 -0700176
Simon Glass82c2f502015-01-25 08:27:11 -0700177 return 0;
178}
179
Simon Glassdd82d442014-10-13 23:41:52 -0600180int spi_chip_select(struct udevice *dev)
181{
Simon Glass5d2ee052015-01-25 08:27:12 -0700182 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassdd82d442014-10-13 23:41:52 -0600183
Simon Glass5d2ee052015-01-25 08:27:12 -0700184 return plat ? plat->cs : -ENOENT;
Simon Glassdd82d442014-10-13 23:41:52 -0600185}
186
Simon Glass5ef36f22014-11-11 10:46:22 -0700187int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
Simon Glassdd82d442014-10-13 23:41:52 -0600188{
189 struct udevice *dev;
190
191 for (device_find_first_child(bus, &dev); dev;
192 device_find_next_child(&dev)) {
Simon Glass5d2ee052015-01-25 08:27:12 -0700193 struct dm_spi_slave_platdata *plat;
Simon Glassdd82d442014-10-13 23:41:52 -0600194
Simon Glass5d2ee052015-01-25 08:27:12 -0700195 plat = dev_get_parent_platdata(dev);
196 debug("%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
197 if (plat->cs == cs) {
Simon Glassdd82d442014-10-13 23:41:52 -0600198 *devp = dev;
199 return 0;
200 }
201 }
202
203 return -ENODEV;
204}
205
206int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
207{
208 struct spi_cs_info info;
209 struct udevice *bus;
210 int ret;
211
212 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
213 if (ret) {
214 debug("%s: No bus %d\n", __func__, busnum);
215 return ret;
216 }
217
218 return spi_cs_info(bus, cs, &info);
219}
220
221int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
222{
223 struct spi_cs_info local_info;
224 struct dm_spi_ops *ops;
225 int ret;
226
227 if (!info)
228 info = &local_info;
229
230 /* If there is a device attached, return it */
231 info->dev = NULL;
232 ret = spi_find_chip_select(bus, cs, &info->dev);
233 if (!ret)
234 return 0;
235
236 /*
237 * Otherwise ask the driver. For the moment we don't have CS info.
238 * When we do we could provide the driver with a helper function
239 * to figure out what chip selects are valid, or just handle the
240 * request.
241 */
242 ops = spi_get_ops(bus);
243 if (ops->cs_info)
244 return ops->cs_info(bus, cs, info);
245
246 /*
247 * We could assume there is at least one valid chip select, but best
248 * to be sure and return an error in this case. The driver didn't
249 * care enough to tell us.
250 */
251 return -ENODEV;
252}
253
Simon Glassdd82d442014-10-13 23:41:52 -0600254int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
255 struct udevice **devp)
256{
257 struct udevice *bus, *dev;
258 int ret;
259
260 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
261 if (ret) {
262 debug("%s: No bus %d\n", __func__, busnum);
263 return ret;
264 }
265 ret = spi_find_chip_select(bus, cs, &dev);
266 if (ret) {
267 debug("%s: No cs %d\n", __func__, cs);
268 return ret;
269 }
270 *busp = bus;
271 *devp = dev;
272
273 return ret;
274}
275
276int spi_get_bus_and_cs(int busnum, int cs, int speed, int mode,
277 const char *drv_name, const char *dev_name,
278 struct udevice **busp, struct spi_slave **devp)
279{
280 struct udevice *bus, *dev;
Vignesh Rae569792016-07-06 10:04:28 +0530281 struct dm_spi_slave_platdata *plat;
Simon Glassdd82d442014-10-13 23:41:52 -0600282 bool created = false;
283 int ret;
284
285 ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
286 if (ret) {
287 printf("Invalid bus %d (err=%d)\n", busnum, ret);
288 return ret;
289 }
290 ret = spi_find_chip_select(bus, cs, &dev);
291
292 /*
293 * If there is no such device, create one automatically. This means
294 * that we don't need a device tree node or platform data for the
295 * SPI flash chip - we will bind to the correct driver.
296 */
297 if (ret == -ENODEV && drv_name) {
298 debug("%s: Binding new device '%s', busnum=%d, cs=%d, driver=%s\n",
299 __func__, dev_name, busnum, cs, drv_name);
Simon Glassd8a21f62014-11-11 10:46:23 -0700300 ret = device_bind_driver(bus, drv_name, dev_name, &dev);
Simon Glassdd82d442014-10-13 23:41:52 -0600301 if (ret)
302 return ret;
Simon Glass5d2ee052015-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 Glassdd82d442014-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 Glass5d2ee052015-01-25 08:27:12 -0700315 struct spi_slave *slave;
Simon Glassdd82d442014-10-13 23:41:52 -0600316
Simon Glass5d2ee052015-01-25 08:27:12 -0700317 ret = device_probe(dev);
Simon Glassdd82d442014-10-13 23:41:52 -0600318 if (ret)
319 goto err;
Simon Glassde44acf2015-09-28 23:32:01 -0600320 slave = dev_get_parent_priv(dev);
Simon Glassdd82d442014-10-13 23:41:52 -0600321 slave->dev = dev;
Simon Glassdd82d442014-10-13 23:41:52 -0600322 }
323
Vignesh Rae569792016-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 Glassdd82d442014-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 Glassde44acf2015-09-28 23:32:01 -0600334 *devp = dev_get_parent_priv(dev);
Simon Glassdd82d442014-10-13 23:41:52 -0600335 debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
336
337 return 0;
338
339err:
Anatolij Gustschin264359e2016-04-21 09:28:02 +0200340 debug("%s: Error path, created=%d, device '%s'\n", __func__,
Simon Glass5d2ee052015-01-25 08:27:12 -0700341 created, dev->name);
Simon Glassdd82d442014-10-13 23:41:52 -0600342 if (created) {
343 device_remove(dev);
344 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 Glassde44acf2015-09-28 23:32:01 -0600363 return dev_get_parent_priv(dev);
Simon Glassdd82d442014-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,
375 &slave);
376 if (ret)
377 return NULL;
378
379 return slave;
380}
381
382void spi_free_slave(struct spi_slave *slave)
383{
384 device_remove(slave->dev);
385 slave->dev = NULL;
386}
387
Simon Glass5d2ee052015-01-25 08:27:12 -0700388int spi_slave_ofdata_to_platdata(const void *blob, int node,
389 struct dm_spi_slave_platdata *plat)
Simon Glassdd82d442014-10-13 23:41:52 -0600390{
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530391 int mode = 0, mode_rx = 0;
392 int value;
Simon Glassdd82d442014-10-13 23:41:52 -0600393
Simon Glass5d2ee052015-01-25 08:27:12 -0700394 plat->cs = fdtdec_get_int(blob, node, "reg", -1);
395 plat->max_hz = fdtdec_get_int(blob, node, "spi-max-frequency", 0);
Simon Glassdd82d442014-10-13 23:41:52 -0600396 if (fdtdec_get_bool(blob, node, "spi-cpol"))
397 mode |= SPI_CPOL;
398 if (fdtdec_get_bool(blob, node, "spi-cpha"))
399 mode |= SPI_CPHA;
400 if (fdtdec_get_bool(blob, node, "spi-cs-high"))
401 mode |= SPI_CS_HIGH;
Jagan Tekid3868fd2015-12-03 22:19:05 +0530402 if (fdtdec_get_bool(blob, node, "spi-3wire"))
403 mode |= SPI_3WIRE;
Simon Glassdd82d442014-10-13 23:41:52 -0600404 if (fdtdec_get_bool(blob, node, "spi-half-duplex"))
405 mode |= SPI_PREAMBLE;
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530406
407 /* Device DUAL/QUAD mode */
408 value = fdtdec_get_uint(blob, node, "spi-tx-bus-width", 1);
409 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:
419 error("spi-tx-bus-width %d not supported\n", value);
420 break;
421 }
422
Simon Glass5d2ee052015-01-25 08:27:12 -0700423 plat->mode = mode;
Simon Glassdd82d442014-10-13 23:41:52 -0600424
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530425 value = fdtdec_get_uint(blob, node, "spi-rx-bus-width", 1);
426 switch (value) {
427 case 1:
428 break;
429 case 2:
430 mode_rx |= SPI_RX_DUAL;
431 break;
432 case 4:
433 mode_rx |= SPI_RX_QUAD;
434 break;
435 default:
436 error("spi-rx-bus-width %d not supported\n", value);
437 break;
438 }
439
440 plat->mode_rx = mode_rx;
441
Simon Glassdd82d442014-10-13 23:41:52 -0600442 return 0;
443}
444
445UCLASS_DRIVER(spi) = {
446 .id = UCLASS_SPI,
447 .name = "spi",
Simon Glass0ccb0972015-01-25 08:27:05 -0700448 .flags = DM_UC_FLAG_SEQ_ALIAS,
Simon Glassdd82d442014-10-13 23:41:52 -0600449 .post_bind = spi_post_bind,
450 .post_probe = spi_post_probe,
Simon Glass82c2f502015-01-25 08:27:11 -0700451 .child_pre_probe = spi_child_pre_probe,
Simon Glassdd82d442014-10-13 23:41:52 -0600452 .per_device_auto_alloc_size = sizeof(struct dm_spi_bus),
Simon Glass31a4d8d2015-01-25 08:27:07 -0700453 .per_child_auto_alloc_size = sizeof(struct spi_slave),
Simon Glass5d2ee052015-01-25 08:27:12 -0700454 .per_child_platdata_auto_alloc_size =
455 sizeof(struct dm_spi_slave_platdata),
456 .child_post_bind = spi_child_post_bind,
Simon Glassdd82d442014-10-13 23:41:52 -0600457};
458
459UCLASS_DRIVER(spi_generic) = {
460 .id = UCLASS_SPI_GENERIC,
461 .name = "spi_generic",
462};
463
464U_BOOT_DRIVER(spi_generic_drv) = {
465 .name = "spi_generic_drv",
466 .id = UCLASS_SPI_GENERIC,
467};