blob: 4a02d95a34a9b388443f02bc4a88f977705eef61 [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;
Simon Glassccdabd82019-12-06 21:42:35 -070088 struct dm_spi_ops *ops = spi_get_ops(bus);
Simon Glassd7af6a42014-10-13 23:41:52 -060089
90 if (bus->uclass->uc_drv->id != UCLASS_SPI)
91 return -EOPNOTSUPP;
Simon Glassccdabd82019-12-06 21:42:35 -070092 if (!ops->xfer)
93 return -ENOSYS;
Simon Glassd7af6a42014-10-13 23:41:52 -060094
Simon Glassccdabd82019-12-06 21:42:35 -070095 return ops->xfer(dev, bitlen, dout, din, flags);
Simon Glassd7af6a42014-10-13 23:41:52 -060096}
97
Simon Glassc53b3182019-10-20 21:31:47 -060098int dm_spi_get_mmap(struct udevice *dev, ulong *map_basep, uint *map_sizep,
99 uint *offsetp)
100{
101 struct udevice *bus = dev->parent;
102 struct dm_spi_ops *ops = spi_get_ops(bus);
103
104 if (bus->uclass->uc_drv->id != UCLASS_SPI)
105 return -EOPNOTSUPP;
106 if (!ops->get_mmap)
107 return -ENOSYS;
108
109 return ops->get_mmap(dev, map_basep, map_sizep, offsetp);
110}
111
Peng Fan7a3eff42016-05-03 10:02:22 +0800112int spi_claim_bus(struct spi_slave *slave)
113{
Simon Glass5e24a2e2018-10-01 12:22:24 -0600114 return log_ret(dm_spi_claim_bus(slave->dev));
Peng Fan7a3eff42016-05-03 10:02:22 +0800115}
116
117void spi_release_bus(struct spi_slave *slave)
118{
119 dm_spi_release_bus(slave->dev);
120}
121
122int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
123 const void *dout, void *din, unsigned long flags)
124{
125 return dm_spi_xfer(slave->dev, bitlen, dout, din, flags);
126}
127
Jagan Teki8473b322019-07-22 17:22:56 +0530128int spi_write_then_read(struct spi_slave *slave, const u8 *opcode,
129 size_t n_opcode, const u8 *txbuf, u8 *rxbuf,
130 size_t n_buf)
131{
132 unsigned long flags = SPI_XFER_BEGIN;
133 int ret;
134
135 if (n_buf == 0)
136 flags |= SPI_XFER_END;
137
138 ret = spi_xfer(slave, n_opcode * 8, opcode, NULL, flags);
139 if (ret) {
140 debug("spi: failed to send command (%zu bytes): %d\n",
141 n_opcode, ret);
142 } else if (n_buf != 0) {
143 ret = spi_xfer(slave, n_buf * 8, txbuf, rxbuf, SPI_XFER_END);
144 if (ret)
145 debug("spi: failed to transfer %zu bytes of data: %d\n",
146 n_buf, ret);
147 }
148
149 return ret;
150}
151
Simon Glass71634f22016-11-13 14:22:01 -0700152#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass6f849c32015-06-23 15:39:05 -0600153static int spi_child_post_bind(struct udevice *dev)
Simon Glassd7af6a42014-10-13 23:41:52 -0600154{
Simon Glassd0cff032015-01-25 08:27:12 -0700155 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600156
Simon Glass279e26f2017-05-18 20:09:54 -0600157 if (!dev_of_valid(dev))
Simon Glassd0cff032015-01-25 08:27:12 -0700158 return 0;
159
Simon Glass279e26f2017-05-18 20:09:54 -0600160 return spi_slave_ofdata_to_platdata(dev, plat);
Simon Glassd0cff032015-01-25 08:27:12 -0700161}
Simon Glass71634f22016-11-13 14:22:01 -0700162#endif
Simon Glassd0cff032015-01-25 08:27:12 -0700163
Simon Glass6f849c32015-06-23 15:39:05 -0600164static int spi_post_probe(struct udevice *bus)
Simon Glassd0cff032015-01-25 08:27:12 -0700165{
Simon Glass71634f22016-11-13 14:22:01 -0700166#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glasse564f052015-03-05 12:25:20 -0700167 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
Simon Glassd0cff032015-01-25 08:27:12 -0700168
Simon Glass279e26f2017-05-18 20:09:54 -0600169 spi->max_hz = dev_read_u32_default(bus, "spi-max-frequency", 0);
Simon Glass71634f22016-11-13 14:22:01 -0700170#endif
Michal Simek281f1562015-10-27 13:36:42 +0100171#if defined(CONFIG_NEEDS_MANUAL_RELOC)
172 struct dm_spi_ops *ops = spi_get_ops(bus);
Ashok Reddy Soma4d9b1af2019-09-17 00:11:02 -0600173 static int reloc_done;
Michal Simek281f1562015-10-27 13:36:42 +0100174
Ashok Reddy Soma4d9b1af2019-09-17 00:11:02 -0600175 if (!reloc_done) {
176 if (ops->claim_bus)
177 ops->claim_bus += gd->reloc_off;
178 if (ops->release_bus)
179 ops->release_bus += gd->reloc_off;
180 if (ops->set_wordlen)
181 ops->set_wordlen += gd->reloc_off;
182 if (ops->xfer)
183 ops->xfer += gd->reloc_off;
184 if (ops->set_speed)
185 ops->set_speed += gd->reloc_off;
186 if (ops->set_mode)
187 ops->set_mode += gd->reloc_off;
188 if (ops->cs_info)
189 ops->cs_info += gd->reloc_off;
190 reloc_done++;
191 }
Michal Simek281f1562015-10-27 13:36:42 +0100192#endif
193
Simon Glassd7af6a42014-10-13 23:41:52 -0600194 return 0;
195}
196
Simon Glass6f849c32015-06-23 15:39:05 -0600197static int spi_child_pre_probe(struct udevice *dev)
Simon Glass440714e2015-01-25 08:27:11 -0700198{
Simon Glassd0cff032015-01-25 08:27:12 -0700199 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassbcbe3d12015-09-28 23:32:01 -0600200 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glass440714e2015-01-25 08:27:11 -0700201
Simon Glassd0cff032015-01-25 08:27:12 -0700202 /*
203 * This is needed because we pass struct spi_slave around the place
204 * instead slave->dev (a struct udevice). So we have to have some
205 * way to access the slave udevice given struct spi_slave. Once we
206 * change the SPI API to use udevice instead of spi_slave, we can
207 * drop this.
208 */
Simon Glass440714e2015-01-25 08:27:11 -0700209 slave->dev = dev;
210
Simon Glassd0cff032015-01-25 08:27:12 -0700211 slave->max_hz = plat->max_hz;
212 slave->mode = plat->mode;
Christophe Ricard674f3602016-01-17 11:56:48 +0100213 slave->wordlen = SPI_DEFAULT_WORDLEN;
Simon Glassd0cff032015-01-25 08:27:12 -0700214
Simon Glass440714e2015-01-25 08:27:11 -0700215 return 0;
216}
217
Simon Glassd7af6a42014-10-13 23:41:52 -0600218int spi_chip_select(struct udevice *dev)
219{
Simon Glassd0cff032015-01-25 08:27:12 -0700220 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600221
Simon Glassd0cff032015-01-25 08:27:12 -0700222 return plat ? plat->cs : -ENOENT;
Simon Glassd7af6a42014-10-13 23:41:52 -0600223}
224
Simon Glassff56bba2014-11-11 10:46:22 -0700225int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
Simon Glassd7af6a42014-10-13 23:41:52 -0600226{
Bin Meng7bacce52019-09-09 06:00:02 -0700227 struct dm_spi_ops *ops;
228 struct spi_cs_info info;
Simon Glassd7af6a42014-10-13 23:41:52 -0600229 struct udevice *dev;
Bin Meng7bacce52019-09-09 06:00:02 -0700230 int ret;
231
232 /*
233 * Ask the driver. For the moment we don't have CS info.
234 * When we do we could provide the driver with a helper function
235 * to figure out what chip selects are valid, or just handle the
236 * request.
237 */
238 ops = spi_get_ops(bus);
239 if (ops->cs_info) {
240 ret = ops->cs_info(bus, cs, &info);
241 } else {
242 /*
243 * We could assume there is at least one valid chip select.
244 * The driver didn't care enough to tell us.
245 */
246 ret = 0;
247 }
248
249 if (ret) {
250 printf("Invalid cs %d (err=%d)\n", cs, ret);
251 return ret;
252 }
Simon Glassd7af6a42014-10-13 23:41:52 -0600253
254 for (device_find_first_child(bus, &dev); dev;
255 device_find_next_child(&dev)) {
Simon Glassd0cff032015-01-25 08:27:12 -0700256 struct dm_spi_slave_platdata *plat;
Simon Glassd7af6a42014-10-13 23:41:52 -0600257
Simon Glassd0cff032015-01-25 08:27:12 -0700258 plat = dev_get_parent_platdata(dev);
259 debug("%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
260 if (plat->cs == cs) {
Simon Glassd7af6a42014-10-13 23:41:52 -0600261 *devp = dev;
262 return 0;
263 }
264 }
265
266 return -ENODEV;
267}
268
269int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
270{
271 struct spi_cs_info info;
272 struct udevice *bus;
273 int ret;
274
275 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
276 if (ret) {
277 debug("%s: No bus %d\n", __func__, busnum);
278 return ret;
279 }
280
281 return spi_cs_info(bus, cs, &info);
282}
283
284int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
285{
286 struct spi_cs_info local_info;
Simon Glassd7af6a42014-10-13 23:41:52 -0600287 int ret;
288
289 if (!info)
290 info = &local_info;
291
292 /* If there is a device attached, return it */
293 info->dev = NULL;
294 ret = spi_find_chip_select(bus, cs, &info->dev);
Bin Meng7bacce52019-09-09 06:00:02 -0700295 return ret == -ENODEV ? 0 : ret;
Simon Glassd7af6a42014-10-13 23:41:52 -0600296}
297
Simon Glassd7af6a42014-10-13 23:41:52 -0600298int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
299 struct udevice **devp)
300{
301 struct udevice *bus, *dev;
302 int ret;
303
304 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
305 if (ret) {
306 debug("%s: No bus %d\n", __func__, busnum);
307 return ret;
308 }
309 ret = spi_find_chip_select(bus, cs, &dev);
310 if (ret) {
311 debug("%s: No cs %d\n", __func__, cs);
312 return ret;
313 }
314 *busp = bus;
315 *devp = dev;
316
317 return ret;
318}
319
320int spi_get_bus_and_cs(int busnum, int cs, int speed, int mode,
321 const char *drv_name, const char *dev_name,
322 struct udevice **busp, struct spi_slave **devp)
323{
324 struct udevice *bus, *dev;
Vignesh R96907c02016-07-06 10:04:28 +0530325 struct dm_spi_slave_platdata *plat;
Marcin Wojtasf7dd5372019-11-21 05:38:47 +0100326 struct spi_slave *slave;
Simon Glassd7af6a42014-10-13 23:41:52 -0600327 bool created = false;
328 int ret;
329
Thomas Fitzsimmons640abba2019-09-06 07:51:19 -0400330#if CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass71634f22016-11-13 14:22:01 -0700331 ret = uclass_first_device_err(UCLASS_SPI, &bus);
332#else
Simon Glassd7af6a42014-10-13 23:41:52 -0600333 ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
Simon Glass71634f22016-11-13 14:22:01 -0700334#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600335 if (ret) {
336 printf("Invalid bus %d (err=%d)\n", busnum, ret);
337 return ret;
338 }
339 ret = spi_find_chip_select(bus, cs, &dev);
340
341 /*
342 * If there is no such device, create one automatically. This means
343 * that we don't need a device tree node or platform data for the
344 * SPI flash chip - we will bind to the correct driver.
345 */
346 if (ret == -ENODEV && drv_name) {
347 debug("%s: Binding new device '%s', busnum=%d, cs=%d, driver=%s\n",
348 __func__, dev_name, busnum, cs, drv_name);
Simon Glass6b186562014-11-11 10:46:23 -0700349 ret = device_bind_driver(bus, drv_name, dev_name, &dev);
Simon Glass28f98852016-11-13 14:22:05 -0700350 if (ret) {
351 debug("%s: Unable to bind driver (ret=%d)\n", __func__,
352 ret);
Simon Glassd7af6a42014-10-13 23:41:52 -0600353 return ret;
Simon Glass28f98852016-11-13 14:22:05 -0700354 }
Simon Glassd0cff032015-01-25 08:27:12 -0700355 plat = dev_get_parent_platdata(dev);
356 plat->cs = cs;
Simon Goldschmidt12bfb2e2018-10-30 21:09:48 +0100357 if (speed) {
358 plat->max_hz = speed;
359 } else {
360 printf("Warning: SPI speed fallback to %u kHz\n",
361 SPI_DEFAULT_SPEED_HZ / 1000);
362 plat->max_hz = SPI_DEFAULT_SPEED_HZ;
363 }
Simon Glassd0cff032015-01-25 08:27:12 -0700364 plat->mode = mode;
Simon Glassd7af6a42014-10-13 23:41:52 -0600365 created = true;
366 } else if (ret) {
367 printf("Invalid chip select %d:%d (err=%d)\n", busnum, cs,
368 ret);
369 return ret;
370 }
371
372 if (!device_active(dev)) {
Simon Glassd0cff032015-01-25 08:27:12 -0700373 struct spi_slave *slave;
Simon Glassd7af6a42014-10-13 23:41:52 -0600374
Simon Glassd0cff032015-01-25 08:27:12 -0700375 ret = device_probe(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600376 if (ret)
377 goto err;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600378 slave = dev_get_parent_priv(dev);
Simon Glassd7af6a42014-10-13 23:41:52 -0600379 slave->dev = dev;
Simon Glassd7af6a42014-10-13 23:41:52 -0600380 }
381
Marcin Wojtasf7dd5372019-11-21 05:38:47 +0100382 slave = dev_get_parent_priv(dev);
Patrick Delaunayb0cc1b82019-02-27 15:36:44 +0100383
Marcin Wojtasf7dd5372019-11-21 05:38:47 +0100384 /*
385 * In case the operation speed is not yet established by
386 * dm_spi_claim_bus() ensure the bus is configured properly.
387 */
388 if (!slave->speed) {
389 ret = spi_claim_bus(slave);
390 if (ret)
391 goto err;
Vignesh R96907c02016-07-06 10:04:28 +0530392 }
Simon Glassd7af6a42014-10-13 23:41:52 -0600393
394 *busp = bus;
Marcin Wojtasf7dd5372019-11-21 05:38:47 +0100395 *devp = slave;
Simon Glassd7af6a42014-10-13 23:41:52 -0600396 debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
397
398 return 0;
399
400err:
Anatolij Gustschinc8864d72016-04-21 09:28:02 +0200401 debug("%s: Error path, created=%d, device '%s'\n", __func__,
Simon Glassd0cff032015-01-25 08:27:12 -0700402 created, dev->name);
Simon Glassd7af6a42014-10-13 23:41:52 -0600403 if (created) {
Stefan Roese706865a2017-03-20 12:51:48 +0100404 device_remove(dev, DM_REMOVE_NORMAL);
Simon Glassd7af6a42014-10-13 23:41:52 -0600405 device_unbind(dev);
406 }
407
408 return ret;
409}
410
411/* Compatibility function - to be removed */
Simon Glassd7af6a42014-10-13 23:41:52 -0600412struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs,
413 unsigned int speed, unsigned int mode)
414{
415 struct spi_slave *slave;
416 struct udevice *dev;
417 int ret;
418
419 ret = spi_get_bus_and_cs(busnum, cs, speed, mode, NULL, 0, &dev,
Simon Glass279e26f2017-05-18 20:09:54 -0600420 &slave);
Simon Glassd7af6a42014-10-13 23:41:52 -0600421 if (ret)
422 return NULL;
423
424 return slave;
425}
426
427void spi_free_slave(struct spi_slave *slave)
428{
Stefan Roese706865a2017-03-20 12:51:48 +0100429 device_remove(slave->dev, DM_REMOVE_NORMAL);
Simon Glassd7af6a42014-10-13 23:41:52 -0600430 slave->dev = NULL;
431}
432
Simon Glass279e26f2017-05-18 20:09:54 -0600433int spi_slave_ofdata_to_platdata(struct udevice *dev,
Simon Glassd0cff032015-01-25 08:27:12 -0700434 struct dm_spi_slave_platdata *plat)
Simon Glassd7af6a42014-10-13 23:41:52 -0600435{
Jagan Teki08fe9c22016-08-08 17:12:12 +0530436 int mode = 0;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530437 int value;
Simon Glassd7af6a42014-10-13 23:41:52 -0600438
Simon Glass279e26f2017-05-18 20:09:54 -0600439 plat->cs = dev_read_u32_default(dev, "reg", -1);
Simon Goldschmidt12bfb2e2018-10-30 21:09:48 +0100440 plat->max_hz = dev_read_u32_default(dev, "spi-max-frequency",
441 SPI_DEFAULT_SPEED_HZ);
Simon Glass279e26f2017-05-18 20:09:54 -0600442 if (dev_read_bool(dev, "spi-cpol"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600443 mode |= SPI_CPOL;
Simon Glass279e26f2017-05-18 20:09:54 -0600444 if (dev_read_bool(dev, "spi-cpha"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600445 mode |= SPI_CPHA;
Simon Glass279e26f2017-05-18 20:09:54 -0600446 if (dev_read_bool(dev, "spi-cs-high"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600447 mode |= SPI_CS_HIGH;
Simon Glass279e26f2017-05-18 20:09:54 -0600448 if (dev_read_bool(dev, "spi-3wire"))
Jagan Teki379b49d2015-12-03 22:19:05 +0530449 mode |= SPI_3WIRE;
Simon Glass279e26f2017-05-18 20:09:54 -0600450 if (dev_read_bool(dev, "spi-half-duplex"))
Simon Glassd7af6a42014-10-13 23:41:52 -0600451 mode |= SPI_PREAMBLE;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530452
453 /* Device DUAL/QUAD mode */
Simon Glass279e26f2017-05-18 20:09:54 -0600454 value = dev_read_u32_default(dev, "spi-tx-bus-width", 1);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530455 switch (value) {
456 case 1:
457 break;
458 case 2:
459 mode |= SPI_TX_DUAL;
460 break;
461 case 4:
462 mode |= SPI_TX_QUAD;
463 break;
Vignesh Raghavendra658df8b2019-12-05 15:46:05 +0530464 case 8:
465 mode |= SPI_TX_OCTAL;
466 break;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530467 default:
Simon Glass1b7c28f2016-11-29 20:00:13 -0700468 warn_non_spl("spi-tx-bus-width %d not supported\n", value);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530469 break;
470 }
471
Simon Glass279e26f2017-05-18 20:09:54 -0600472 value = dev_read_u32_default(dev, "spi-rx-bus-width", 1);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530473 switch (value) {
474 case 1:
475 break;
476 case 2:
Jagan Teki08fe9c22016-08-08 17:12:12 +0530477 mode |= SPI_RX_DUAL;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530478 break;
479 case 4:
Jagan Teki08fe9c22016-08-08 17:12:12 +0530480 mode |= SPI_RX_QUAD;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530481 break;
Vignesh Raghavendra658df8b2019-12-05 15:46:05 +0530482 case 8:
483 mode |= SPI_RX_OCTAL;
484 break;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530485 default:
Simon Glass1b7c28f2016-11-29 20:00:13 -0700486 warn_non_spl("spi-rx-bus-width %d not supported\n", value);
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530487 break;
488 }
489
Jagan Teki08fe9c22016-08-08 17:12:12 +0530490 plat->mode = mode;
Mugunthan V Nf8e2f922015-12-23 20:39:37 +0530491
Simon Glassd7af6a42014-10-13 23:41:52 -0600492 return 0;
493}
494
495UCLASS_DRIVER(spi) = {
496 .id = UCLASS_SPI,
497 .name = "spi",
Simon Glass9cc36a22015-01-25 08:27:05 -0700498 .flags = DM_UC_FLAG_SEQ_ALIAS,
Simon Glass71634f22016-11-13 14:22:01 -0700499#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass91195482016-07-05 17:10:10 -0600500 .post_bind = dm_scan_fdt_dev,
Simon Glass71634f22016-11-13 14:22:01 -0700501#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600502 .post_probe = spi_post_probe,
Simon Glass440714e2015-01-25 08:27:11 -0700503 .child_pre_probe = spi_child_pre_probe,
Simon Glassd7af6a42014-10-13 23:41:52 -0600504 .per_device_auto_alloc_size = sizeof(struct dm_spi_bus),
Simon Glass19a25f62015-01-25 08:27:07 -0700505 .per_child_auto_alloc_size = sizeof(struct spi_slave),
Simon Glassd0cff032015-01-25 08:27:12 -0700506 .per_child_platdata_auto_alloc_size =
507 sizeof(struct dm_spi_slave_platdata),
Simon Glass71634f22016-11-13 14:22:01 -0700508#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassd0cff032015-01-25 08:27:12 -0700509 .child_post_bind = spi_child_post_bind,
Simon Glass71634f22016-11-13 14:22:01 -0700510#endif
Simon Glassd7af6a42014-10-13 23:41:52 -0600511};
512
513UCLASS_DRIVER(spi_generic) = {
514 .id = UCLASS_SPI_GENERIC,
515 .name = "spi_generic",
516};
517
518U_BOOT_DRIVER(spi_generic_drv) = {
519 .name = "spi_generic_drv",
520 .id = UCLASS_SPI_GENERIC,
521};