blob: a4d1b65682d1e75d4ccac2b38c90f2f1f005a124 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassd7af6a42014-10-13 23:41:52 -06002/*
3 * Copyright (c) 2014 Google, Inc
Simon Glassd7af6a42014-10-13 23:41:52 -06004 */
5
6#include <common.h>
7#include <dm.h>
8#include <errno.h>
Simon Glassd7af6a42014-10-13 23:41:52 -06009#include <malloc.h>
10#include <spi.h>
11#include <dm/device-internal.h>
12#include <dm/uclass-internal.h>
Simon Glassd7af6a42014-10-13 23:41:52 -060013#include <dm/lists.h>
14#include <dm/util.h>
15
16DECLARE_GLOBAL_DATA_PTR;
17
Simon Goldschmidt12bfb2e2018-10-30 21:09:48 +010018#define SPI_DEFAULT_SPEED_HZ 100000
19
Simon Glassd7af6a42014-10-13 23:41:52 -060020static int spi_set_speed_mode(struct udevice *bus, int speed, int mode)
21{
22 struct dm_spi_ops *ops;
23 int ret;
24
25 ops = spi_get_ops(bus);
26 if (ops->set_speed)
27 ret = ops->set_speed(bus, speed);
28 else
29 ret = -EINVAL;
30 if (ret) {
31 printf("Cannot set speed (err=%d)\n", ret);
32 return ret;
33 }
34
35 if (ops->set_mode)
36 ret = ops->set_mode(bus, mode);
37 else
38 ret = -EINVAL;
39 if (ret) {
40 printf("Cannot set mode (err=%d)\n", ret);
41 return ret;
42 }
43
44 return 0;
45}
46
Peng Fan7a3eff42016-05-03 10:02:22 +080047int dm_spi_claim_bus(struct udevice *dev)
Simon Glassd7af6a42014-10-13 23:41:52 -060048{
Simon Glassd7af6a42014-10-13 23:41:52 -060049 struct udevice *bus = dev->parent;
50 struct dm_spi_ops *ops = spi_get_ops(bus);
Simon Glasse564f052015-03-05 12:25:20 -070051 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
Peng Fan7a3eff42016-05-03 10:02:22 +080052 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -060053 int speed;
Simon Glassd7af6a42014-10-13 23:41:52 -060054
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)
Simon Goldschmidt12bfb2e2018-10-30 21:09:48 +010063 speed = SPI_DEFAULT_SPEED_HZ;
Simon Glass60e28092015-02-17 15:29:35 -070064 if (speed != slave->speed) {
Mario Six24fc1ec2018-01-15 11:08:41 +010065 int ret = spi_set_speed_mode(bus, speed, slave->mode);
66
Simon Glass60e28092015-02-17 15:29:35 -070067 if (ret)
Simon Glass5e24a2e2018-10-01 12:22:24 -060068 return log_ret(ret);
Simon Glass60e28092015-02-17 15:29:35 -070069 slave->speed = speed;
70 }
Simon Glassd7af6a42014-10-13 23:41:52 -060071
Simon Glass5e24a2e2018-10-01 12:22:24 -060072 return log_ret(ops->claim_bus ? ops->claim_bus(dev) : 0);
Simon Glassd7af6a42014-10-13 23:41:52 -060073}
74
Peng Fan7a3eff42016-05-03 10:02:22 +080075void dm_spi_release_bus(struct udevice *dev)
Simon Glassd7af6a42014-10-13 23:41:52 -060076{
Simon Glassd7af6a42014-10-13 23:41:52 -060077 struct udevice *bus = dev->parent;
78 struct dm_spi_ops *ops = spi_get_ops(bus);
79
80 if (ops->release_bus)
Simon Glass9694b722015-04-19 09:05:40 -060081 ops->release_bus(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -060082}
83
Peng Fan7a3eff42016-05-03 10:02:22 +080084int dm_spi_xfer(struct udevice *dev, unsigned int bitlen,
85 const void *dout, void *din, unsigned long flags)
Simon Glassd7af6a42014-10-13 23:41:52 -060086{
Simon Glassd7af6a42014-10-13 23:41:52 -060087 struct udevice *bus = dev->parent;
88
89 if (bus->uclass->uc_drv->id != UCLASS_SPI)
90 return -EOPNOTSUPP;
91
92 return spi_get_ops(bus)->xfer(dev, bitlen, dout, din, flags);
93}
94
Peng Fan7a3eff42016-05-03 10:02:22 +080095int spi_claim_bus(struct spi_slave *slave)
96{
Simon Glass5e24a2e2018-10-01 12:22:24 -060097 return log_ret(dm_spi_claim_bus(slave->dev));
Peng Fan7a3eff42016-05-03 10:02:22 +080098}
99
100void spi_release_bus(struct spi_slave *slave)
101{
102 dm_spi_release_bus(slave->dev);
103}
104
105int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
106 const void *dout, void *din, unsigned long flags)
107{
108 return dm_spi_xfer(slave->dev, bitlen, dout, din, flags);
109}
110
Jagan Teki8473b322019-07-22 17:22:56 +0530111int spi_write_then_read(struct spi_slave *slave, const u8 *opcode,
112 size_t n_opcode, const u8 *txbuf, u8 *rxbuf,
113 size_t n_buf)
114{
115 unsigned long flags = SPI_XFER_BEGIN;
116 int ret;
117
118 if (n_buf == 0)
119 flags |= SPI_XFER_END;
120
121 ret = spi_xfer(slave, n_opcode * 8, opcode, NULL, flags);
122 if (ret) {
123 debug("spi: failed to send command (%zu bytes): %d\n",
124 n_opcode, ret);
125 } else if (n_buf != 0) {
126 ret = spi_xfer(slave, n_buf * 8, txbuf, rxbuf, SPI_XFER_END);
127 if (ret)
128 debug("spi: failed to transfer %zu bytes of data: %d\n",
129 n_buf, ret);
130 }
131
132 return ret;
133}
134
Simon Glass71634f22016-11-13 14:22:01 -0700135#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass6f849c32015-06-23 15:39:05 -0600136static int spi_child_post_bind(struct udevice *dev)
Simon Glassd7af6a42014-10-13 23:41:52 -0600137{
Simon Glassd0cff032015-01-25 08:27:12 -0700138 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600139
Simon Glass279e26f2017-05-18 20:09:54 -0600140 if (!dev_of_valid(dev))
Simon Glassd0cff032015-01-25 08:27:12 -0700141 return 0;
142
Simon Glass279e26f2017-05-18 20:09:54 -0600143 return spi_slave_ofdata_to_platdata(dev, plat);
Simon Glassd0cff032015-01-25 08:27:12 -0700144}
Simon Glass71634f22016-11-13 14:22:01 -0700145#endif
Simon Glassd0cff032015-01-25 08:27:12 -0700146
Simon Glass6f849c32015-06-23 15:39:05 -0600147static int spi_post_probe(struct udevice *bus)
Simon Glassd0cff032015-01-25 08:27:12 -0700148{
Simon Glass71634f22016-11-13 14:22:01 -0700149#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glasse564f052015-03-05 12:25:20 -0700150 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
Simon Glassd0cff032015-01-25 08:27:12 -0700151
Simon Glass279e26f2017-05-18 20:09:54 -0600152 spi->max_hz = dev_read_u32_default(bus, "spi-max-frequency", 0);
Simon Glass71634f22016-11-13 14:22:01 -0700153#endif
Michal Simek281f1562015-10-27 13:36:42 +0100154#if defined(CONFIG_NEEDS_MANUAL_RELOC)
155 struct dm_spi_ops *ops = spi_get_ops(bus);
156
Michal Simek281f1562015-10-27 13:36:42 +0100157 if (ops->claim_bus)
158 ops->claim_bus += gd->reloc_off;
159 if (ops->release_bus)
160 ops->release_bus += gd->reloc_off;
161 if (ops->set_wordlen)
162 ops->set_wordlen += gd->reloc_off;
163 if (ops->xfer)
164 ops->xfer += gd->reloc_off;
165 if (ops->set_speed)
166 ops->set_speed += gd->reloc_off;
167 if (ops->set_mode)
168 ops->set_mode += gd->reloc_off;
169 if (ops->cs_info)
170 ops->cs_info += gd->reloc_off;
171#endif
172
Simon Glassd7af6a42014-10-13 23:41:52 -0600173 return 0;
174}
175
Simon Glass6f849c32015-06-23 15:39:05 -0600176static int spi_child_pre_probe(struct udevice *dev)
Simon Glass440714e2015-01-25 08:27:11 -0700177{
Simon Glassd0cff032015-01-25 08:27:12 -0700178 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassbcbe3d12015-09-28 23:32:01 -0600179 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glass440714e2015-01-25 08:27:11 -0700180
Simon Glassd0cff032015-01-25 08:27:12 -0700181 /*
182 * This is needed because we pass struct spi_slave around the place
183 * instead slave->dev (a struct udevice). So we have to have some
184 * way to access the slave udevice given struct spi_slave. Once we
185 * change the SPI API to use udevice instead of spi_slave, we can
186 * drop this.
187 */
Simon Glass440714e2015-01-25 08:27:11 -0700188 slave->dev = dev;
189
Simon Glassd0cff032015-01-25 08:27:12 -0700190 slave->max_hz = plat->max_hz;
191 slave->mode = plat->mode;
Christophe Ricard674f3602016-01-17 11:56:48 +0100192 slave->wordlen = SPI_DEFAULT_WORDLEN;
Simon Glassd0cff032015-01-25 08:27:12 -0700193
Simon Glass440714e2015-01-25 08:27:11 -0700194 return 0;
195}
196
Simon Glassd7af6a42014-10-13 23:41:52 -0600197int spi_chip_select(struct udevice *dev)
198{
Simon Glassd0cff032015-01-25 08:27:12 -0700199 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600200
Simon Glassd0cff032015-01-25 08:27:12 -0700201 return plat ? plat->cs : -ENOENT;
Simon Glassd7af6a42014-10-13 23:41:52 -0600202}
203
Simon Glassff56bba2014-11-11 10:46:22 -0700204int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
Simon Glassd7af6a42014-10-13 23:41:52 -0600205{
206 struct udevice *dev;
207
208 for (device_find_first_child(bus, &dev); dev;
209 device_find_next_child(&dev)) {
Simon Glassd0cff032015-01-25 08:27:12 -0700210 struct dm_spi_slave_platdata *plat;
Simon Glassd7af6a42014-10-13 23:41:52 -0600211
Simon Glassd0cff032015-01-25 08:27:12 -0700212 plat = dev_get_parent_platdata(dev);
213 debug("%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
214 if (plat->cs == cs) {
Simon Glassd7af6a42014-10-13 23:41:52 -0600215 *devp = dev;
216 return 0;
217 }
218 }
219
220 return -ENODEV;
221}
222
223int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
224{
225 struct spi_cs_info info;
226 struct udevice *bus;
227 int ret;
228
229 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
230 if (ret) {
231 debug("%s: No bus %d\n", __func__, busnum);
232 return ret;
233 }
234
235 return spi_cs_info(bus, cs, &info);
236}
237
238int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
239{
240 struct spi_cs_info local_info;
241 struct dm_spi_ops *ops;
242 int ret;
243
244 if (!info)
245 info = &local_info;
246
247 /* If there is a device attached, return it */
248 info->dev = NULL;
249 ret = spi_find_chip_select(bus, cs, &info->dev);
250 if (!ret)
251 return 0;
252
253 /*
254 * Otherwise ask the driver. For the moment we don't have CS info.
255 * When we do we could provide the driver with a helper function
256 * to figure out what chip selects are valid, or just handle the
257 * request.
258 */
259 ops = spi_get_ops(bus);
260 if (ops->cs_info)
261 return ops->cs_info(bus, cs, info);
262
263 /*
264 * We could assume there is at least one valid chip select, but best
265 * to be sure and return an error in this case. The driver didn't
266 * care enough to tell us.
267 */
268 return -ENODEV;
269}
270
Simon Glassd7af6a42014-10-13 23:41:52 -0600271int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
272 struct udevice **devp)
273{
274 struct udevice *bus, *dev;
275 int ret;
276
277 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
278 if (ret) {
279 debug("%s: No bus %d\n", __func__, busnum);
280 return ret;
281 }
282 ret = spi_find_chip_select(bus, cs, &dev);
283 if (ret) {
284 debug("%s: No cs %d\n", __func__, cs);
285 return ret;
286 }
287 *busp = bus;
288 *devp = dev;
289
290 return ret;
291}
292
293int spi_get_bus_and_cs(int busnum, int cs, int speed, int mode,
294 const char *drv_name, const char *dev_name,
295 struct udevice **busp, struct spi_slave **devp)
296{
297 struct udevice *bus, *dev;
Vignesh R96907c02016-07-06 10:04:28 +0530298 struct dm_spi_slave_platdata *plat;
Simon Glassd7af6a42014-10-13 23:41:52 -0600299 bool created = false;
300 int ret;
301
Thomas Fitzsimmons640abba2019-09-06 07:51:19 -0400302#if CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass71634f22016-11-13 14:22:01 -0700303 ret = uclass_first_device_err(UCLASS_SPI, &bus);
304#else
Simon Glassd7af6a42014-10-13 23:41:52 -0600305 ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
Simon Glass71634f22016-11-13 14:22:01 -0700306#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600307 if (ret) {
308 printf("Invalid bus %d (err=%d)\n", busnum, ret);
309 return ret;
310 }
311 ret = spi_find_chip_select(bus, cs, &dev);
312
313 /*
314 * If there is no such device, create one automatically. This means
315 * that we don't need a device tree node or platform data for the
316 * SPI flash chip - we will bind to the correct driver.
317 */
318 if (ret == -ENODEV && drv_name) {
319 debug("%s: Binding new device '%s', busnum=%d, cs=%d, driver=%s\n",
320 __func__, dev_name, busnum, cs, drv_name);
Simon Glass6b186562014-11-11 10:46:23 -0700321 ret = device_bind_driver(bus, drv_name, dev_name, &dev);
Simon Glass28f98852016-11-13 14:22:05 -0700322 if (ret) {
323 debug("%s: Unable to bind driver (ret=%d)\n", __func__,
324 ret);
Simon Glassd7af6a42014-10-13 23:41:52 -0600325 return ret;
Simon Glass28f98852016-11-13 14:22:05 -0700326 }
Simon Glassd0cff032015-01-25 08:27:12 -0700327 plat = dev_get_parent_platdata(dev);
328 plat->cs = cs;
Simon Goldschmidt12bfb2e2018-10-30 21:09:48 +0100329 if (speed) {
330 plat->max_hz = speed;
331 } else {
332 printf("Warning: SPI speed fallback to %u kHz\n",
333 SPI_DEFAULT_SPEED_HZ / 1000);
334 plat->max_hz = SPI_DEFAULT_SPEED_HZ;
335 }
Simon Glassd0cff032015-01-25 08:27:12 -0700336 plat->mode = mode;
Simon Glassd7af6a42014-10-13 23:41:52 -0600337 created = true;
338 } else if (ret) {
339 printf("Invalid chip select %d:%d (err=%d)\n", busnum, cs,
340 ret);
341 return ret;
342 }
343
344 if (!device_active(dev)) {
Simon Glassd0cff032015-01-25 08:27:12 -0700345 struct spi_slave *slave;
Simon Glassd7af6a42014-10-13 23:41:52 -0600346
Simon Glassd0cff032015-01-25 08:27:12 -0700347 ret = device_probe(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600348 if (ret)
349 goto err;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600350 slave = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600351 slave->dev = dev;
Simon Glassd7af6a42014-10-13 23:41:52 -0600352 }
353
Vignesh R96907c02016-07-06 10:04:28 +0530354 plat = dev_get_parent_platdata(dev);
Patrick Delaunayb0cc1b82019-02-27 15:36:44 +0100355
356 /* get speed and mode from platdata when available */
357 if (plat->max_hz) {
Vignesh R96907c02016-07-06 10:04:28 +0530358 speed = plat->max_hz;
359 mode = plat->mode;
360 }
Simon Glassd7af6a42014-10-13 23:41:52 -0600361 ret = spi_set_speed_mode(bus, speed, mode);
362 if (ret)
363 goto err;
364
365 *busp = bus;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600366 *devp = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600367 debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
368
369 return 0;
370
371err:
Anatolij Gustschinc8864d72016-04-21 09:28:02 +0200372 debug("%s: Error path, created=%d, device '%s'\n", __func__,
Simon Glassd0cff032015-01-25 08:27:12 -0700373 created, dev->name);
Simon Glassd7af6a42014-10-13 23:41:52 -0600374 if (created) {
Stefan Roese706865a2017-03-20 12:51:48 +0100375 device_remove(dev, DM_REMOVE_NORMAL);
Simon Glassd7af6a42014-10-13 23:41:52 -0600376 device_unbind(dev);
377 }
378
379 return ret;
380}
381
382/* Compatibility function - to be removed */
Simon Glassd7af6a42014-10-13 23:41:52 -0600383struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs,
384 unsigned int speed, unsigned int mode)
385{
386 struct spi_slave *slave;
387 struct udevice *dev;
388 int ret;
389
390 ret = spi_get_bus_and_cs(busnum, cs, speed, mode, NULL, 0, &dev,
Simon Glass279e26f2017-05-18 20:09:54 -0600391 &slave);
Simon Glassd7af6a42014-10-13 23:41:52 -0600392 if (ret)
393 return NULL;
394
395 return slave;
396}
397
398void spi_free_slave(struct spi_slave *slave)
399{
Stefan Roese706865a2017-03-20 12:51:48 +0100400 device_remove(slave->dev, DM_REMOVE_NORMAL);
Simon Glassd7af6a42014-10-13 23:41:52 -0600401 slave->dev = NULL;
402}
403
Simon Glass279e26f2017-05-18 20:09:54 -0600404int spi_slave_ofdata_to_platdata(struct udevice *dev,
Simon Glassd0cff032015-01-25 08:27:12 -0700405 struct dm_spi_slave_platdata *plat)
Simon Glassd7af6a42014-10-13 23:41:52 -0600406{
Jagan Teki08fe9c22016-08-08 17:12:12 +0530407 int mode = 0;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530408 int value;
Simon Glassd7af6a42014-10-13 23:41:52 -0600409
Simon Glass279e26f2017-05-18 20:09:54 -0600410 plat->cs = dev_read_u32_default(dev, "reg", -1);
Simon Goldschmidt12bfb2e2018-10-30 21:09:48 +0100411 plat->max_hz = dev_read_u32_default(dev, "spi-max-frequency",
412 SPI_DEFAULT_SPEED_HZ);
Simon Glass279e26f2017-05-18 20:09:54 -0600413 if (dev_read_bool(dev, "spi-cpol"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600414 mode |= SPI_CPOL;
Simon Glass279e26f2017-05-18 20:09:54 -0600415 if (dev_read_bool(dev, "spi-cpha"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600416 mode |= SPI_CPHA;
Simon Glass279e26f2017-05-18 20:09:54 -0600417 if (dev_read_bool(dev, "spi-cs-high"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600418 mode |= SPI_CS_HIGH;
Simon Glass279e26f2017-05-18 20:09:54 -0600419 if (dev_read_bool(dev, "spi-3wire"))
Jagan Teki379b49d2015-12-03 22:19:05 +0530420 mode |= SPI_3WIRE;
Simon Glass279e26f2017-05-18 20:09:54 -0600421 if (dev_read_bool(dev, "spi-half-duplex"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600422 mode |= SPI_PREAMBLE;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530423
424 /* Device DUAL/QUAD mode */
Simon Glass279e26f2017-05-18 20:09:54 -0600425 value = dev_read_u32_default(dev, "spi-tx-bus-width", 1);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530426 switch (value) {
427 case 1:
428 break;
429 case 2:
430 mode |= SPI_TX_DUAL;
431 break;
432 case 4:
433 mode |= SPI_TX_QUAD;
434 break;
435 default:
Simon Glass1b7c28f2016-11-29 20:00:13 -0700436 warn_non_spl("spi-tx-bus-width %d not supported\n", value);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530437 break;
438 }
439
Simon Glass279e26f2017-05-18 20:09:54 -0600440 value = dev_read_u32_default(dev, "spi-rx-bus-width", 1);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530441 switch (value) {
442 case 1:
443 break;
444 case 2:
Jagan Teki08fe9c22016-08-08 17:12:12 +0530445 mode |= SPI_RX_DUAL;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530446 break;
447 case 4:
Jagan Teki08fe9c22016-08-08 17:12:12 +0530448 mode |= SPI_RX_QUAD;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530449 break;
450 default:
Simon Glass1b7c28f2016-11-29 20:00:13 -0700451 warn_non_spl("spi-rx-bus-width %d not supported\n", value);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530452 break;
453 }
454
Jagan Teki08fe9c22016-08-08 17:12:12 +0530455 plat->mode = mode;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530456
Simon Glassd7af6a42014-10-13 23:41:52 -0600457 return 0;
458}
459
460UCLASS_DRIVER(spi) = {
461 .id = UCLASS_SPI,
462 .name = "spi",
Simon Glass9cc36a22015-01-25 08:27:05 -0700463 .flags = DM_UC_FLAG_SEQ_ALIAS,
Simon Glass71634f22016-11-13 14:22:01 -0700464#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass91195482016-07-05 17:10:10 -0600465 .post_bind = dm_scan_fdt_dev,
Simon Glass71634f22016-11-13 14:22:01 -0700466#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600467 .post_probe = spi_post_probe,
Simon Glass440714e2015-01-25 08:27:11 -0700468 .child_pre_probe = spi_child_pre_probe,
Simon Glassd7af6a42014-10-13 23:41:52 -0600469 .per_device_auto_alloc_size = sizeof(struct dm_spi_bus),
Simon Glass19a25f62015-01-25 08:27:07 -0700470 .per_child_auto_alloc_size = sizeof(struct spi_slave),
Simon Glassd0cff032015-01-25 08:27:12 -0700471 .per_child_platdata_auto_alloc_size =
472 sizeof(struct dm_spi_slave_platdata),
Simon Glass71634f22016-11-13 14:22:01 -0700473#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassd0cff032015-01-25 08:27:12 -0700474 .child_post_bind = spi_child_post_bind,
Simon Glass71634f22016-11-13 14:22:01 -0700475#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600476};
477
478UCLASS_DRIVER(spi_generic) = {
479 .id = UCLASS_SPI_GENERIC,
480 .name = "spi_generic",
481};
482
483U_BOOT_DRIVER(spi_generic_drv) = {
484 .name = "spi_generic_drv",
485 .id = UCLASS_SPI_GENERIC,
486};