blob: 665611f7e23a3337720c2589e73c55fef74efe77 [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
Simon Glassc53b3182019-10-20 21:31:47 -060095int dm_spi_get_mmap(struct udevice *dev, ulong *map_basep, uint *map_sizep,
96 uint *offsetp)
97{
98 struct udevice *bus = dev->parent;
99 struct dm_spi_ops *ops = spi_get_ops(bus);
100
101 if (bus->uclass->uc_drv->id != UCLASS_SPI)
102 return -EOPNOTSUPP;
103 if (!ops->get_mmap)
104 return -ENOSYS;
105
106 return ops->get_mmap(dev, map_basep, map_sizep, offsetp);
107}
108
Peng Fan7a3eff42016-05-03 10:02:22 +0800109int spi_claim_bus(struct spi_slave *slave)
110{
Simon Glass5e24a2e2018-10-01 12:22:24 -0600111 return log_ret(dm_spi_claim_bus(slave->dev));
Peng Fan7a3eff42016-05-03 10:02:22 +0800112}
113
114void spi_release_bus(struct spi_slave *slave)
115{
116 dm_spi_release_bus(slave->dev);
117}
118
119int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
120 const void *dout, void *din, unsigned long flags)
121{
122 return dm_spi_xfer(slave->dev, bitlen, dout, din, flags);
123}
124
Jagan Teki8473b322019-07-22 17:22:56 +0530125int spi_write_then_read(struct spi_slave *slave, const u8 *opcode,
126 size_t n_opcode, const u8 *txbuf, u8 *rxbuf,
127 size_t n_buf)
128{
129 unsigned long flags = SPI_XFER_BEGIN;
130 int ret;
131
132 if (n_buf == 0)
133 flags |= SPI_XFER_END;
134
135 ret = spi_xfer(slave, n_opcode * 8, opcode, NULL, flags);
136 if (ret) {
137 debug("spi: failed to send command (%zu bytes): %d\n",
138 n_opcode, ret);
139 } else if (n_buf != 0) {
140 ret = spi_xfer(slave, n_buf * 8, txbuf, rxbuf, SPI_XFER_END);
141 if (ret)
142 debug("spi: failed to transfer %zu bytes of data: %d\n",
143 n_buf, ret);
144 }
145
146 return ret;
147}
148
Simon Glass71634f22016-11-13 14:22:01 -0700149#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass6f849c32015-06-23 15:39:05 -0600150static int spi_child_post_bind(struct udevice *dev)
Simon Glassd7af6a42014-10-13 23:41:52 -0600151{
Simon Glassd0cff032015-01-25 08:27:12 -0700152 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600153
Simon Glass279e26f2017-05-18 20:09:54 -0600154 if (!dev_of_valid(dev))
Simon Glassd0cff032015-01-25 08:27:12 -0700155 return 0;
156
Simon Glass279e26f2017-05-18 20:09:54 -0600157 return spi_slave_ofdata_to_platdata(dev, plat);
Simon Glassd0cff032015-01-25 08:27:12 -0700158}
Simon Glass71634f22016-11-13 14:22:01 -0700159#endif
Simon Glassd0cff032015-01-25 08:27:12 -0700160
Simon Glass6f849c32015-06-23 15:39:05 -0600161static int spi_post_probe(struct udevice *bus)
Simon Glassd0cff032015-01-25 08:27:12 -0700162{
Simon Glass71634f22016-11-13 14:22:01 -0700163#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glasse564f052015-03-05 12:25:20 -0700164 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
Simon Glassd0cff032015-01-25 08:27:12 -0700165
Simon Glass279e26f2017-05-18 20:09:54 -0600166 spi->max_hz = dev_read_u32_default(bus, "spi-max-frequency", 0);
Simon Glass71634f22016-11-13 14:22:01 -0700167#endif
Michal Simek281f1562015-10-27 13:36:42 +0100168#if defined(CONFIG_NEEDS_MANUAL_RELOC)
169 struct dm_spi_ops *ops = spi_get_ops(bus);
170
Michal Simek281f1562015-10-27 13:36:42 +0100171 if (ops->claim_bus)
172 ops->claim_bus += gd->reloc_off;
173 if (ops->release_bus)
174 ops->release_bus += gd->reloc_off;
175 if (ops->set_wordlen)
176 ops->set_wordlen += gd->reloc_off;
177 if (ops->xfer)
178 ops->xfer += gd->reloc_off;
179 if (ops->set_speed)
180 ops->set_speed += gd->reloc_off;
181 if (ops->set_mode)
182 ops->set_mode += gd->reloc_off;
183 if (ops->cs_info)
184 ops->cs_info += gd->reloc_off;
185#endif
186
Simon Glassd7af6a42014-10-13 23:41:52 -0600187 return 0;
188}
189
Simon Glass6f849c32015-06-23 15:39:05 -0600190static int spi_child_pre_probe(struct udevice *dev)
Simon Glass440714e2015-01-25 08:27:11 -0700191{
Simon Glassd0cff032015-01-25 08:27:12 -0700192 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassbcbe3d12015-09-28 23:32:01 -0600193 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glass440714e2015-01-25 08:27:11 -0700194
Simon Glassd0cff032015-01-25 08:27:12 -0700195 /*
196 * This is needed because we pass struct spi_slave around the place
197 * instead slave->dev (a struct udevice). So we have to have some
198 * way to access the slave udevice given struct spi_slave. Once we
199 * change the SPI API to use udevice instead of spi_slave, we can
200 * drop this.
201 */
Simon Glass440714e2015-01-25 08:27:11 -0700202 slave->dev = dev;
203
Simon Glassd0cff032015-01-25 08:27:12 -0700204 slave->max_hz = plat->max_hz;
205 slave->mode = plat->mode;
Christophe Ricard674f3602016-01-17 11:56:48 +0100206 slave->wordlen = SPI_DEFAULT_WORDLEN;
Simon Glassd0cff032015-01-25 08:27:12 -0700207
Simon Glass440714e2015-01-25 08:27:11 -0700208 return 0;
209}
210
Simon Glassd7af6a42014-10-13 23:41:52 -0600211int spi_chip_select(struct udevice *dev)
212{
Simon Glassd0cff032015-01-25 08:27:12 -0700213 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600214
Simon Glassd0cff032015-01-25 08:27:12 -0700215 return plat ? plat->cs : -ENOENT;
Simon Glassd7af6a42014-10-13 23:41:52 -0600216}
217
Simon Glassff56bba2014-11-11 10:46:22 -0700218int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
Simon Glassd7af6a42014-10-13 23:41:52 -0600219{
220 struct udevice *dev;
221
222 for (device_find_first_child(bus, &dev); dev;
223 device_find_next_child(&dev)) {
Simon Glassd0cff032015-01-25 08:27:12 -0700224 struct dm_spi_slave_platdata *plat;
Simon Glassd7af6a42014-10-13 23:41:52 -0600225
Simon Glassd0cff032015-01-25 08:27:12 -0700226 plat = dev_get_parent_platdata(dev);
227 debug("%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
228 if (plat->cs == cs) {
Simon Glassd7af6a42014-10-13 23:41:52 -0600229 *devp = dev;
230 return 0;
231 }
232 }
233
234 return -ENODEV;
235}
236
237int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
238{
239 struct spi_cs_info info;
240 struct udevice *bus;
241 int ret;
242
243 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
244 if (ret) {
245 debug("%s: No bus %d\n", __func__, busnum);
246 return ret;
247 }
248
249 return spi_cs_info(bus, cs, &info);
250}
251
252int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
253{
254 struct spi_cs_info local_info;
255 struct dm_spi_ops *ops;
256 int ret;
257
258 if (!info)
259 info = &local_info;
260
261 /* If there is a device attached, return it */
262 info->dev = NULL;
263 ret = spi_find_chip_select(bus, cs, &info->dev);
264 if (!ret)
265 return 0;
266
267 /*
268 * Otherwise ask the driver. For the moment we don't have CS info.
269 * When we do we could provide the driver with a helper function
270 * to figure out what chip selects are valid, or just handle the
271 * request.
272 */
273 ops = spi_get_ops(bus);
274 if (ops->cs_info)
275 return ops->cs_info(bus, cs, info);
276
277 /*
Bin Meng4dd520b2019-09-09 06:00:00 -0700278 * We could assume there is at least one valid chip select.
279 * The driver didn't care enough to tell us.
Simon Glassd7af6a42014-10-13 23:41:52 -0600280 */
Bin Meng4dd520b2019-09-09 06:00:00 -0700281 return 0;
Simon Glassd7af6a42014-10-13 23:41:52 -0600282}
283
Simon Glassd7af6a42014-10-13 23:41:52 -0600284int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
285 struct udevice **devp)
286{
287 struct udevice *bus, *dev;
288 int ret;
289
290 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
291 if (ret) {
292 debug("%s: No bus %d\n", __func__, busnum);
293 return ret;
294 }
295 ret = spi_find_chip_select(bus, cs, &dev);
296 if (ret) {
297 debug("%s: No cs %d\n", __func__, cs);
298 return ret;
299 }
300 *busp = bus;
301 *devp = dev;
302
303 return ret;
304}
305
306int spi_get_bus_and_cs(int busnum, int cs, int speed, int mode,
307 const char *drv_name, const char *dev_name,
308 struct udevice **busp, struct spi_slave **devp)
309{
310 struct udevice *bus, *dev;
Vignesh R96907c02016-07-06 10:04:28 +0530311 struct dm_spi_slave_platdata *plat;
Simon Glassd7af6a42014-10-13 23:41:52 -0600312 bool created = false;
313 int ret;
314
Thomas Fitzsimmons640abba2019-09-06 07:51:19 -0400315#if CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass71634f22016-11-13 14:22:01 -0700316 ret = uclass_first_device_err(UCLASS_SPI, &bus);
317#else
Simon Glassd7af6a42014-10-13 23:41:52 -0600318 ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
Simon Glass71634f22016-11-13 14:22:01 -0700319#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600320 if (ret) {
321 printf("Invalid bus %d (err=%d)\n", busnum, ret);
322 return ret;
323 }
324 ret = spi_find_chip_select(bus, cs, &dev);
325
326 /*
327 * If there is no such device, create one automatically. This means
328 * that we don't need a device tree node or platform data for the
329 * SPI flash chip - we will bind to the correct driver.
330 */
331 if (ret == -ENODEV && drv_name) {
332 debug("%s: Binding new device '%s', busnum=%d, cs=%d, driver=%s\n",
333 __func__, dev_name, busnum, cs, drv_name);
Simon Glass6b186562014-11-11 10:46:23 -0700334 ret = device_bind_driver(bus, drv_name, dev_name, &dev);
Simon Glass28f98852016-11-13 14:22:05 -0700335 if (ret) {
336 debug("%s: Unable to bind driver (ret=%d)\n", __func__,
337 ret);
Simon Glassd7af6a42014-10-13 23:41:52 -0600338 return ret;
Simon Glass28f98852016-11-13 14:22:05 -0700339 }
Simon Glassd0cff032015-01-25 08:27:12 -0700340 plat = dev_get_parent_platdata(dev);
341 plat->cs = cs;
Simon Goldschmidt12bfb2e2018-10-30 21:09:48 +0100342 if (speed) {
343 plat->max_hz = speed;
344 } else {
345 printf("Warning: SPI speed fallback to %u kHz\n",
346 SPI_DEFAULT_SPEED_HZ / 1000);
347 plat->max_hz = SPI_DEFAULT_SPEED_HZ;
348 }
Simon Glassd0cff032015-01-25 08:27:12 -0700349 plat->mode = mode;
Simon Glassd7af6a42014-10-13 23:41:52 -0600350 created = true;
351 } else if (ret) {
352 printf("Invalid chip select %d:%d (err=%d)\n", busnum, cs,
353 ret);
354 return ret;
355 }
356
357 if (!device_active(dev)) {
Simon Glassd0cff032015-01-25 08:27:12 -0700358 struct spi_slave *slave;
Simon Glassd7af6a42014-10-13 23:41:52 -0600359
Simon Glassd0cff032015-01-25 08:27:12 -0700360 ret = device_probe(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600361 if (ret)
362 goto err;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600363 slave = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600364 slave->dev = dev;
Simon Glassd7af6a42014-10-13 23:41:52 -0600365 }
366
Vignesh R96907c02016-07-06 10:04:28 +0530367 plat = dev_get_parent_platdata(dev);
Patrick Delaunayb0cc1b82019-02-27 15:36:44 +0100368
369 /* get speed and mode from platdata when available */
370 if (plat->max_hz) {
Vignesh R96907c02016-07-06 10:04:28 +0530371 speed = plat->max_hz;
372 mode = plat->mode;
373 }
Simon Glassd7af6a42014-10-13 23:41:52 -0600374 ret = spi_set_speed_mode(bus, speed, mode);
375 if (ret)
376 goto err;
377
378 *busp = bus;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600379 *devp = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600380 debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
381
382 return 0;
383
384err:
Anatolij Gustschinc8864d72016-04-21 09:28:02 +0200385 debug("%s: Error path, created=%d, device '%s'\n", __func__,
Simon Glassd0cff032015-01-25 08:27:12 -0700386 created, dev->name);
Simon Glassd7af6a42014-10-13 23:41:52 -0600387 if (created) {
Stefan Roese706865a2017-03-20 12:51:48 +0100388 device_remove(dev, DM_REMOVE_NORMAL);
Simon Glassd7af6a42014-10-13 23:41:52 -0600389 device_unbind(dev);
390 }
391
392 return ret;
393}
394
395/* Compatibility function - to be removed */
Simon Glassd7af6a42014-10-13 23:41:52 -0600396struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs,
397 unsigned int speed, unsigned int mode)
398{
399 struct spi_slave *slave;
400 struct udevice *dev;
401 int ret;
402
403 ret = spi_get_bus_and_cs(busnum, cs, speed, mode, NULL, 0, &dev,
Simon Glass279e26f2017-05-18 20:09:54 -0600404 &slave);
Simon Glassd7af6a42014-10-13 23:41:52 -0600405 if (ret)
406 return NULL;
407
408 return slave;
409}
410
411void spi_free_slave(struct spi_slave *slave)
412{
Stefan Roese706865a2017-03-20 12:51:48 +0100413 device_remove(slave->dev, DM_REMOVE_NORMAL);
Simon Glassd7af6a42014-10-13 23:41:52 -0600414 slave->dev = NULL;
415}
416
Simon Glass279e26f2017-05-18 20:09:54 -0600417int spi_slave_ofdata_to_platdata(struct udevice *dev,
Simon Glassd0cff032015-01-25 08:27:12 -0700418 struct dm_spi_slave_platdata *plat)
Simon Glassd7af6a42014-10-13 23:41:52 -0600419{
Jagan Teki08fe9c22016-08-08 17:12:12 +0530420 int mode = 0;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530421 int value;
Simon Glassd7af6a42014-10-13 23:41:52 -0600422
Simon Glass279e26f2017-05-18 20:09:54 -0600423 plat->cs = dev_read_u32_default(dev, "reg", -1);
Simon Goldschmidt12bfb2e2018-10-30 21:09:48 +0100424 plat->max_hz = dev_read_u32_default(dev, "spi-max-frequency",
425 SPI_DEFAULT_SPEED_HZ);
Simon Glass279e26f2017-05-18 20:09:54 -0600426 if (dev_read_bool(dev, "spi-cpol"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600427 mode |= SPI_CPOL;
Simon Glass279e26f2017-05-18 20:09:54 -0600428 if (dev_read_bool(dev, "spi-cpha"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600429 mode |= SPI_CPHA;
Simon Glass279e26f2017-05-18 20:09:54 -0600430 if (dev_read_bool(dev, "spi-cs-high"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600431 mode |= SPI_CS_HIGH;
Simon Glass279e26f2017-05-18 20:09:54 -0600432 if (dev_read_bool(dev, "spi-3wire"))
Jagan Teki379b49d2015-12-03 22:19:05 +0530433 mode |= SPI_3WIRE;
Simon Glass279e26f2017-05-18 20:09:54 -0600434 if (dev_read_bool(dev, "spi-half-duplex"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600435 mode |= SPI_PREAMBLE;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530436
437 /* Device DUAL/QUAD mode */
Simon Glass279e26f2017-05-18 20:09:54 -0600438 value = dev_read_u32_default(dev, "spi-tx-bus-width", 1);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530439 switch (value) {
440 case 1:
441 break;
442 case 2:
443 mode |= SPI_TX_DUAL;
444 break;
445 case 4:
446 mode |= SPI_TX_QUAD;
447 break;
448 default:
Simon Glass1b7c28f2016-11-29 20:00:13 -0700449 warn_non_spl("spi-tx-bus-width %d not supported\n", value);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530450 break;
451 }
452
Simon Glass279e26f2017-05-18 20:09:54 -0600453 value = dev_read_u32_default(dev, "spi-rx-bus-width", 1);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530454 switch (value) {
455 case 1:
456 break;
457 case 2:
Jagan Teki08fe9c22016-08-08 17:12:12 +0530458 mode |= SPI_RX_DUAL;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530459 break;
460 case 4:
Jagan Teki08fe9c22016-08-08 17:12:12 +0530461 mode |= SPI_RX_QUAD;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530462 break;
463 default:
Simon Glass1b7c28f2016-11-29 20:00:13 -0700464 warn_non_spl("spi-rx-bus-width %d not supported\n", value);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530465 break;
466 }
467
Jagan Teki08fe9c22016-08-08 17:12:12 +0530468 plat->mode = mode;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530469
Simon Glassd7af6a42014-10-13 23:41:52 -0600470 return 0;
471}
472
473UCLASS_DRIVER(spi) = {
474 .id = UCLASS_SPI,
475 .name = "spi",
Simon Glass9cc36a22015-01-25 08:27:05 -0700476 .flags = DM_UC_FLAG_SEQ_ALIAS,
Simon Glass71634f22016-11-13 14:22:01 -0700477#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass91195482016-07-05 17:10:10 -0600478 .post_bind = dm_scan_fdt_dev,
Simon Glass71634f22016-11-13 14:22:01 -0700479#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600480 .post_probe = spi_post_probe,
Simon Glass440714e2015-01-25 08:27:11 -0700481 .child_pre_probe = spi_child_pre_probe,
Simon Glassd7af6a42014-10-13 23:41:52 -0600482 .per_device_auto_alloc_size = sizeof(struct dm_spi_bus),
Simon Glass19a25f62015-01-25 08:27:07 -0700483 .per_child_auto_alloc_size = sizeof(struct spi_slave),
Simon Glassd0cff032015-01-25 08:27:12 -0700484 .per_child_platdata_auto_alloc_size =
485 sizeof(struct dm_spi_slave_platdata),
Simon Glass71634f22016-11-13 14:22:01 -0700486#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassd0cff032015-01-25 08:27:12 -0700487 .child_post_bind = spi_child_post_bind,
Simon Glass71634f22016-11-13 14:22:01 -0700488#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600489};
490
491UCLASS_DRIVER(spi_generic) = {
492 .id = UCLASS_SPI_GENERIC,
493 .name = "spi_generic",
494};
495
496U_BOOT_DRIVER(spi_generic_drv) = {
497 .name = "spi_generic_drv",
498 .id = UCLASS_SPI_GENERIC,
499};