blob: ee30110b5658c6b36212a28d69052f146d81f461 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassdd82d442014-10-13 23:41:52 -06002/*
3 * Copyright (c) 2014 Google, Inc
Simon Glassdd82d442014-10-13 23:41:52 -06004 */
5
Patrick Delaunay1d83e032020-10-15 17:18:17 +02006#define LOG_CATEGORY UCLASS_SPI
7
Simon Glassdd82d442014-10-13 23:41:52 -06008#include <common.h>
9#include <dm.h>
10#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Simon Glassdd82d442014-10-13 23:41:52 -060012#include <malloc.h>
13#include <spi.h>
T Karthik Reddy626a7342021-03-17 12:31:30 +010014#include <spi-mem.h>
Patrick Delaunay1d83e032020-10-15 17:18:17 +020015#include <dm/device_compat.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060016#include <asm/global_data.h>
Simon Glassdd82d442014-10-13 23:41:52 -060017#include <dm/device-internal.h>
18#include <dm/uclass-internal.h>
Simon Glassdd82d442014-10-13 23:41:52 -060019#include <dm/lists.h>
20#include <dm/util.h>
21
22DECLARE_GLOBAL_DATA_PTR;
23
Simon Goldschmidta942e1a2018-10-30 21:09:48 +010024#define SPI_DEFAULT_SPEED_HZ 100000
25
Simon Glassdd82d442014-10-13 23:41:52 -060026static int spi_set_speed_mode(struct udevice *bus, int speed, int mode)
27{
28 struct dm_spi_ops *ops;
29 int ret;
30
31 ops = spi_get_ops(bus);
32 if (ops->set_speed)
33 ret = ops->set_speed(bus, speed);
34 else
35 ret = -EINVAL;
36 if (ret) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +020037 dev_err(bus, "Cannot set speed (err=%d)\n", ret);
Simon Glassdd82d442014-10-13 23:41:52 -060038 return ret;
39 }
40
41 if (ops->set_mode)
42 ret = ops->set_mode(bus, mode);
43 else
44 ret = -EINVAL;
45 if (ret) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +020046 dev_err(bus, "Cannot set mode (err=%d)\n", ret);
Simon Glassdd82d442014-10-13 23:41:52 -060047 return ret;
48 }
49
50 return 0;
51}
52
Peng Fanfdd88a32016-05-03 10:02:22 +080053int dm_spi_claim_bus(struct udevice *dev)
Simon Glassdd82d442014-10-13 23:41:52 -060054{
Simon Glassdd82d442014-10-13 23:41:52 -060055 struct udevice *bus = dev->parent;
56 struct dm_spi_ops *ops = spi_get_ops(bus);
Simon Glassde0977b2015-03-05 12:25:20 -070057 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
Peng Fanfdd88a32016-05-03 10:02:22 +080058 struct spi_slave *slave = dev_get_parent_priv(dev);
Ovidiu Panait40dcee12020-12-14 19:06:50 +020059 uint speed, mode;
Simon Glassdd82d442014-10-13 23:41:52 -060060
61 speed = slave->max_hz;
Ovidiu Panait40dcee12020-12-14 19:06:50 +020062 mode = slave->mode;
63
Simon Glassdd82d442014-10-13 23:41:52 -060064 if (spi->max_hz) {
65 if (speed)
Ovidiu Panait40dcee12020-12-14 19:06:50 +020066 speed = min(speed, spi->max_hz);
Simon Glassdd82d442014-10-13 23:41:52 -060067 else
68 speed = spi->max_hz;
69 }
70 if (!speed)
Simon Goldschmidta942e1a2018-10-30 21:09:48 +010071 speed = SPI_DEFAULT_SPEED_HZ;
Ovidiu Panait40dcee12020-12-14 19:06:50 +020072
73 if (speed != spi->speed || mode != spi->mode) {
Mario Six2d844dd2018-01-15 11:08:41 +010074 int ret = spi_set_speed_mode(bus, speed, slave->mode);
75
Simon Glassb46cb632015-02-17 15:29:35 -070076 if (ret)
Simon Glass00d99902018-10-01 12:22:24 -060077 return log_ret(ret);
Ovidiu Panait40dcee12020-12-14 19:06:50 +020078
79 spi->speed = speed;
80 spi->mode = mode;
Simon Glassb46cb632015-02-17 15:29:35 -070081 }
Simon Glassdd82d442014-10-13 23:41:52 -060082
Simon Glass00d99902018-10-01 12:22:24 -060083 return log_ret(ops->claim_bus ? ops->claim_bus(dev) : 0);
Simon Glassdd82d442014-10-13 23:41:52 -060084}
85
Peng Fanfdd88a32016-05-03 10:02:22 +080086void dm_spi_release_bus(struct udevice *dev)
Simon Glassdd82d442014-10-13 23:41:52 -060087{
Simon Glassdd82d442014-10-13 23:41:52 -060088 struct udevice *bus = dev->parent;
89 struct dm_spi_ops *ops = spi_get_ops(bus);
90
91 if (ops->release_bus)
Simon Glass5c74fba2015-04-19 09:05:40 -060092 ops->release_bus(dev);
Simon Glassdd82d442014-10-13 23:41:52 -060093}
94
Peng Fanfdd88a32016-05-03 10:02:22 +080095int dm_spi_xfer(struct udevice *dev, unsigned int bitlen,
96 const void *dout, void *din, unsigned long flags)
Simon Glassdd82d442014-10-13 23:41:52 -060097{
Simon Glassdd82d442014-10-13 23:41:52 -060098 struct udevice *bus = dev->parent;
Simon Glass2d2e8602019-12-06 21:42:35 -070099 struct dm_spi_ops *ops = spi_get_ops(bus);
Simon Glassdd82d442014-10-13 23:41:52 -0600100
101 if (bus->uclass->uc_drv->id != UCLASS_SPI)
102 return -EOPNOTSUPP;
Simon Glass2d2e8602019-12-06 21:42:35 -0700103 if (!ops->xfer)
104 return -ENOSYS;
Simon Glassdd82d442014-10-13 23:41:52 -0600105
Simon Glass2d2e8602019-12-06 21:42:35 -0700106 return ops->xfer(dev, bitlen, dout, din, flags);
Simon Glassdd82d442014-10-13 23:41:52 -0600107}
108
Simon Glass37ad0fe2019-10-20 21:31:47 -0600109int dm_spi_get_mmap(struct udevice *dev, ulong *map_basep, uint *map_sizep,
110 uint *offsetp)
111{
112 struct udevice *bus = dev->parent;
113 struct dm_spi_ops *ops = spi_get_ops(bus);
114
115 if (bus->uclass->uc_drv->id != UCLASS_SPI)
116 return -EOPNOTSUPP;
117 if (!ops->get_mmap)
118 return -ENOSYS;
119
120 return ops->get_mmap(dev, map_basep, map_sizep, offsetp);
121}
122
Peng Fanfdd88a32016-05-03 10:02:22 +0800123int spi_claim_bus(struct spi_slave *slave)
124{
Simon Glass00d99902018-10-01 12:22:24 -0600125 return log_ret(dm_spi_claim_bus(slave->dev));
Peng Fanfdd88a32016-05-03 10:02:22 +0800126}
127
128void spi_release_bus(struct spi_slave *slave)
129{
130 dm_spi_release_bus(slave->dev);
131}
132
133int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
134 const void *dout, void *din, unsigned long flags)
135{
136 return dm_spi_xfer(slave->dev, bitlen, dout, din, flags);
137}
138
Jagan Teki7cc71fd2019-07-22 17:22:56 +0530139int spi_write_then_read(struct spi_slave *slave, const u8 *opcode,
140 size_t n_opcode, const u8 *txbuf, u8 *rxbuf,
141 size_t n_buf)
142{
143 unsigned long flags = SPI_XFER_BEGIN;
144 int ret;
145
146 if (n_buf == 0)
147 flags |= SPI_XFER_END;
148
149 ret = spi_xfer(slave, n_opcode * 8, opcode, NULL, flags);
150 if (ret) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200151 dev_dbg(slave->dev,
152 "spi: failed to send command (%zu bytes): %d\n",
153 n_opcode, ret);
Jagan Teki7cc71fd2019-07-22 17:22:56 +0530154 } else if (n_buf != 0) {
155 ret = spi_xfer(slave, n_buf * 8, txbuf, rxbuf, SPI_XFER_END);
156 if (ret)
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200157 dev_dbg(slave->dev,
158 "spi: failed to transfer %zu bytes of data: %d\n",
159 n_buf, ret);
Jagan Teki7cc71fd2019-07-22 17:22:56 +0530160 }
161
162 return ret;
163}
164
Simon Glass3fb33392016-11-13 14:22:01 -0700165#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassd941aaf2015-06-23 15:39:05 -0600166static int spi_child_post_bind(struct udevice *dev)
Simon Glassdd82d442014-10-13 23:41:52 -0600167{
Simon Glassb75b15b2020-12-03 16:55:23 -0700168 struct dm_spi_slave_plat *plat = dev_get_parent_plat(dev);
Simon Glassdd82d442014-10-13 23:41:52 -0600169
Simon Glassf1d50f72020-12-19 10:40:13 -0700170 if (!dev_has_ofnode(dev))
Simon Glass5d2ee052015-01-25 08:27:12 -0700171 return 0;
172
Simon Glassaad29ae2020-12-03 16:55:21 -0700173 return spi_slave_of_to_plat(dev, plat);
Simon Glass5d2ee052015-01-25 08:27:12 -0700174}
Simon Glass3fb33392016-11-13 14:22:01 -0700175#endif
Simon Glass5d2ee052015-01-25 08:27:12 -0700176
Simon Glassd941aaf2015-06-23 15:39:05 -0600177static int spi_post_probe(struct udevice *bus)
Simon Glass5d2ee052015-01-25 08:27:12 -0700178{
Simon Glass3fb33392016-11-13 14:22:01 -0700179#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassde0977b2015-03-05 12:25:20 -0700180 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
Simon Glass5d2ee052015-01-25 08:27:12 -0700181
Simon Glass4b280582017-05-18 20:09:54 -0600182 spi->max_hz = dev_read_u32_default(bus, "spi-max-frequency", 0);
Simon Glass3fb33392016-11-13 14:22:01 -0700183#endif
Michal Simek28d7e4e2015-10-27 13:36:42 +0100184#if defined(CONFIG_NEEDS_MANUAL_RELOC)
185 struct dm_spi_ops *ops = spi_get_ops(bus);
Ashok Reddy Soma1d89d8c2019-09-17 00:11:02 -0600186 static int reloc_done;
Michal Simek28d7e4e2015-10-27 13:36:42 +0100187
Ashok Reddy Soma1d89d8c2019-09-17 00:11:02 -0600188 if (!reloc_done) {
189 if (ops->claim_bus)
190 ops->claim_bus += gd->reloc_off;
191 if (ops->release_bus)
192 ops->release_bus += gd->reloc_off;
193 if (ops->set_wordlen)
194 ops->set_wordlen += gd->reloc_off;
195 if (ops->xfer)
196 ops->xfer += gd->reloc_off;
197 if (ops->set_speed)
198 ops->set_speed += gd->reloc_off;
199 if (ops->set_mode)
200 ops->set_mode += gd->reloc_off;
201 if (ops->cs_info)
202 ops->cs_info += gd->reloc_off;
T Karthik Reddy626a7342021-03-17 12:31:30 +0100203 if (ops->mem_ops) {
204 struct spi_controller_mem_ops *mem_ops =
205 (struct spi_controller_mem_ops *)ops->mem_ops;
206 if (mem_ops->adjust_op_size)
207 mem_ops->adjust_op_size += gd->reloc_off;
208 if (mem_ops->supports_op)
209 mem_ops->supports_op += gd->reloc_off;
210 if (mem_ops->exec_op)
211 mem_ops->exec_op += gd->reloc_off;
212 }
Ashok Reddy Soma1d89d8c2019-09-17 00:11:02 -0600213 reloc_done++;
214 }
Michal Simek28d7e4e2015-10-27 13:36:42 +0100215#endif
216
Simon Glassdd82d442014-10-13 23:41:52 -0600217 return 0;
218}
219
Simon Glassd941aaf2015-06-23 15:39:05 -0600220static int spi_child_pre_probe(struct udevice *dev)
Simon Glass82c2f502015-01-25 08:27:11 -0700221{
Simon Glassb75b15b2020-12-03 16:55:23 -0700222 struct dm_spi_slave_plat *plat = dev_get_parent_plat(dev);
Simon Glassde44acf2015-09-28 23:32:01 -0600223 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glass82c2f502015-01-25 08:27:11 -0700224
Simon Glass5d2ee052015-01-25 08:27:12 -0700225 /*
226 * This is needed because we pass struct spi_slave around the place
227 * instead slave->dev (a struct udevice). So we have to have some
228 * way to access the slave udevice given struct spi_slave. Once we
229 * change the SPI API to use udevice instead of spi_slave, we can
230 * drop this.
231 */
Simon Glass82c2f502015-01-25 08:27:11 -0700232 slave->dev = dev;
233
Simon Glass5d2ee052015-01-25 08:27:12 -0700234 slave->max_hz = plat->max_hz;
235 slave->mode = plat->mode;
Christophe Ricardfb0c53e2016-01-17 11:56:48 +0100236 slave->wordlen = SPI_DEFAULT_WORDLEN;
Simon Glass5d2ee052015-01-25 08:27:12 -0700237
Simon Glass82c2f502015-01-25 08:27:11 -0700238 return 0;
239}
240
Simon Glassdd82d442014-10-13 23:41:52 -0600241int spi_chip_select(struct udevice *dev)
242{
Simon Glassb75b15b2020-12-03 16:55:23 -0700243 struct dm_spi_slave_plat *plat = dev_get_parent_plat(dev);
Simon Glassdd82d442014-10-13 23:41:52 -0600244
Simon Glass5d2ee052015-01-25 08:27:12 -0700245 return plat ? plat->cs : -ENOENT;
Simon Glassdd82d442014-10-13 23:41:52 -0600246}
247
Simon Glass5ef36f22014-11-11 10:46:22 -0700248int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
Simon Glassdd82d442014-10-13 23:41:52 -0600249{
Bin Meng9741e732019-09-09 06:00:02 -0700250 struct dm_spi_ops *ops;
251 struct spi_cs_info info;
Simon Glassdd82d442014-10-13 23:41:52 -0600252 struct udevice *dev;
Bin Meng9741e732019-09-09 06:00:02 -0700253 int ret;
254
255 /*
256 * Ask the driver. For the moment we don't have CS info.
257 * When we do we could provide the driver with a helper function
258 * to figure out what chip selects are valid, or just handle the
259 * request.
260 */
261 ops = spi_get_ops(bus);
262 if (ops->cs_info) {
263 ret = ops->cs_info(bus, cs, &info);
264 } else {
265 /*
266 * We could assume there is at least one valid chip select.
267 * The driver didn't care enough to tell us.
268 */
269 ret = 0;
270 }
271
272 if (ret) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200273 dev_err(bus, "Invalid cs %d (err=%d)\n", cs, ret);
Bin Meng9741e732019-09-09 06:00:02 -0700274 return ret;
275 }
Simon Glassdd82d442014-10-13 23:41:52 -0600276
277 for (device_find_first_child(bus, &dev); dev;
278 device_find_next_child(&dev)) {
Simon Glassb75b15b2020-12-03 16:55:23 -0700279 struct dm_spi_slave_plat *plat;
Simon Glassdd82d442014-10-13 23:41:52 -0600280
Simon Glass71fa5b42020-12-03 16:55:18 -0700281 plat = dev_get_parent_plat(dev);
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200282 dev_dbg(bus, "%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
Simon Glass5d2ee052015-01-25 08:27:12 -0700283 if (plat->cs == cs) {
Simon Glassdd82d442014-10-13 23:41:52 -0600284 *devp = dev;
285 return 0;
286 }
287 }
288
289 return -ENODEV;
290}
291
292int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
293{
294 struct spi_cs_info info;
295 struct udevice *bus;
296 int ret;
297
Simon Glass07e13382020-12-16 21:20:29 -0700298 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, &bus);
Simon Glassdd82d442014-10-13 23:41:52 -0600299 if (ret) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200300 log_debug("%s: No bus %d\n", __func__, busnum);
Simon Glassdd82d442014-10-13 23:41:52 -0600301 return ret;
302 }
303
304 return spi_cs_info(bus, cs, &info);
305}
306
307int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
308{
309 struct spi_cs_info local_info;
Simon Glassdd82d442014-10-13 23:41:52 -0600310 int ret;
311
312 if (!info)
313 info = &local_info;
314
315 /* If there is a device attached, return it */
316 info->dev = NULL;
317 ret = spi_find_chip_select(bus, cs, &info->dev);
Bin Meng9741e732019-09-09 06:00:02 -0700318 return ret == -ENODEV ? 0 : ret;
Simon Glassdd82d442014-10-13 23:41:52 -0600319}
320
Simon Glassdd82d442014-10-13 23:41:52 -0600321int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
322 struct udevice **devp)
323{
324 struct udevice *bus, *dev;
325 int ret;
326
Simon Glass07e13382020-12-16 21:20:29 -0700327 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, &bus);
Simon Glassdd82d442014-10-13 23:41:52 -0600328 if (ret) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200329 log_debug("%s: No bus %d\n", __func__, busnum);
Simon Glassdd82d442014-10-13 23:41:52 -0600330 return ret;
331 }
332 ret = spi_find_chip_select(bus, cs, &dev);
333 if (ret) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200334 dev_dbg(bus, "%s: No cs %d\n", __func__, cs);
Simon Glassdd82d442014-10-13 23:41:52 -0600335 return ret;
336 }
337 *busp = bus;
338 *devp = dev;
339
340 return ret;
341}
342
343int spi_get_bus_and_cs(int busnum, int cs, int speed, int mode,
344 const char *drv_name, const char *dev_name,
345 struct udevice **busp, struct spi_slave **devp)
346{
347 struct udevice *bus, *dev;
Simon Glassb75b15b2020-12-03 16:55:23 -0700348 struct dm_spi_slave_plat *plat;
Ovidiu Panait40dcee12020-12-14 19:06:50 +0200349 struct dm_spi_bus *bus_data;
Marcin Wojtas70d8f982019-11-21 05:38:47 +0100350 struct spi_slave *slave;
Simon Glassdd82d442014-10-13 23:41:52 -0600351 bool created = false;
352 int ret;
353
Thomas Fitzsimmons59c90f32019-09-06 07:51:19 -0400354#if CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass3fb33392016-11-13 14:22:01 -0700355 ret = uclass_first_device_err(UCLASS_SPI, &bus);
356#else
Simon Glassdd82d442014-10-13 23:41:52 -0600357 ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
Simon Glass3fb33392016-11-13 14:22:01 -0700358#endif
Simon Glassdd82d442014-10-13 23:41:52 -0600359 if (ret) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200360 log_err("Invalid bus %d (err=%d)\n", busnum, ret);
Simon Glassdd82d442014-10-13 23:41:52 -0600361 return ret;
362 }
363 ret = spi_find_chip_select(bus, cs, &dev);
364
365 /*
366 * If there is no such device, create one automatically. This means
367 * that we don't need a device tree node or platform data for the
368 * SPI flash chip - we will bind to the correct driver.
369 */
370 if (ret == -ENODEV && drv_name) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200371 dev_dbg(bus, "%s: Binding new device '%s', busnum=%d, cs=%d, driver=%s\n",
372 __func__, dev_name, busnum, cs, drv_name);
Simon Glassd8a21f62014-11-11 10:46:23 -0700373 ret = device_bind_driver(bus, drv_name, dev_name, &dev);
Simon Glassf0307e12016-11-13 14:22:05 -0700374 if (ret) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200375 dev_dbg(bus, "%s: Unable to bind driver (ret=%d)\n",
376 __func__, ret);
Simon Glassdd82d442014-10-13 23:41:52 -0600377 return ret;
Simon Glassf0307e12016-11-13 14:22:05 -0700378 }
Simon Glass71fa5b42020-12-03 16:55:18 -0700379 plat = dev_get_parent_plat(dev);
Simon Glass5d2ee052015-01-25 08:27:12 -0700380 plat->cs = cs;
Simon Goldschmidta942e1a2018-10-30 21:09:48 +0100381 if (speed) {
382 plat->max_hz = speed;
383 } else {
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200384 dev_warn(bus,
385 "Warning: SPI speed fallback to %u kHz\n",
386 SPI_DEFAULT_SPEED_HZ / 1000);
Simon Goldschmidta942e1a2018-10-30 21:09:48 +0100387 plat->max_hz = SPI_DEFAULT_SPEED_HZ;
388 }
Simon Glass5d2ee052015-01-25 08:27:12 -0700389 plat->mode = mode;
Simon Glassdd82d442014-10-13 23:41:52 -0600390 created = true;
391 } else if (ret) {
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200392 dev_err(bus, "Invalid chip select %d:%d (err=%d)\n", busnum, cs, ret);
Simon Glassdd82d442014-10-13 23:41:52 -0600393 return ret;
394 }
395
396 if (!device_active(dev)) {
Simon Glass5d2ee052015-01-25 08:27:12 -0700397 struct spi_slave *slave;
Simon Glassdd82d442014-10-13 23:41:52 -0600398
Simon Glass5d2ee052015-01-25 08:27:12 -0700399 ret = device_probe(dev);
Simon Glassdd82d442014-10-13 23:41:52 -0600400 if (ret)
401 goto err;
Simon Glassde44acf2015-09-28 23:32:01 -0600402 slave = dev_get_parent_priv(dev);
Simon Glassdd82d442014-10-13 23:41:52 -0600403 slave->dev = dev;
Simon Glassdd82d442014-10-13 23:41:52 -0600404 }
405
Marcin Wojtas70d8f982019-11-21 05:38:47 +0100406 slave = dev_get_parent_priv(dev);
Ovidiu Panait40dcee12020-12-14 19:06:50 +0200407 bus_data = dev_get_uclass_priv(bus);
Patrick Delaunayfa19c652019-02-27 15:36:44 +0100408
Marcin Wojtas70d8f982019-11-21 05:38:47 +0100409 /*
410 * In case the operation speed is not yet established by
411 * dm_spi_claim_bus() ensure the bus is configured properly.
412 */
Ovidiu Panait40dcee12020-12-14 19:06:50 +0200413 if (!bus_data->speed) {
Marcin Wojtas70d8f982019-11-21 05:38:47 +0100414 ret = spi_claim_bus(slave);
415 if (ret)
416 goto err;
Vignesh Rae569792016-07-06 10:04:28 +0530417 }
Simon Glassdd82d442014-10-13 23:41:52 -0600418
419 *busp = bus;
Marcin Wojtas70d8f982019-11-21 05:38:47 +0100420 *devp = slave;
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200421 log_debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
Simon Glassdd82d442014-10-13 23:41:52 -0600422
423 return 0;
424
425err:
Patrick Delaunay1d83e032020-10-15 17:18:17 +0200426 log_debug("%s: Error path, created=%d, device '%s'\n", __func__,
427 created, dev->name);
Simon Glassdd82d442014-10-13 23:41:52 -0600428 if (created) {
Stefan Roese80b5bc92017-03-20 12:51:48 +0100429 device_remove(dev, DM_REMOVE_NORMAL);
Simon Glassdd82d442014-10-13 23:41:52 -0600430 device_unbind(dev);
431 }
432
433 return ret;
434}
435
436/* Compatibility function - to be removed */
Simon Glassdd82d442014-10-13 23:41:52 -0600437struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs,
438 unsigned int speed, unsigned int mode)
439{
440 struct spi_slave *slave;
441 struct udevice *dev;
442 int ret;
443
444 ret = spi_get_bus_and_cs(busnum, cs, speed, mode, NULL, 0, &dev,
Simon Glass4b280582017-05-18 20:09:54 -0600445 &slave);
Simon Glassdd82d442014-10-13 23:41:52 -0600446 if (ret)
447 return NULL;
448
449 return slave;
450}
451
452void spi_free_slave(struct spi_slave *slave)
453{
Stefan Roese80b5bc92017-03-20 12:51:48 +0100454 device_remove(slave->dev, DM_REMOVE_NORMAL);
Simon Glassdd82d442014-10-13 23:41:52 -0600455}
456
Simon Glassb75b15b2020-12-03 16:55:23 -0700457int spi_slave_of_to_plat(struct udevice *dev, struct dm_spi_slave_plat *plat)
Simon Glassdd82d442014-10-13 23:41:52 -0600458{
Jagan Teki96536b12016-08-08 17:12:12 +0530459 int mode = 0;
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530460 int value;
Simon Glassdd82d442014-10-13 23:41:52 -0600461
Simon Glass4b280582017-05-18 20:09:54 -0600462 plat->cs = dev_read_u32_default(dev, "reg", -1);
Simon Goldschmidta942e1a2018-10-30 21:09:48 +0100463 plat->max_hz = dev_read_u32_default(dev, "spi-max-frequency",
464 SPI_DEFAULT_SPEED_HZ);
Simon Glass4b280582017-05-18 20:09:54 -0600465 if (dev_read_bool(dev, "spi-cpol"))
Simon Glassdd82d442014-10-13 23:41:52 -0600466 mode |= SPI_CPOL;
Simon Glass4b280582017-05-18 20:09:54 -0600467 if (dev_read_bool(dev, "spi-cpha"))
Simon Glassdd82d442014-10-13 23:41:52 -0600468 mode |= SPI_CPHA;
Simon Glass4b280582017-05-18 20:09:54 -0600469 if (dev_read_bool(dev, "spi-cs-high"))
Simon Glassdd82d442014-10-13 23:41:52 -0600470 mode |= SPI_CS_HIGH;
Simon Glass4b280582017-05-18 20:09:54 -0600471 if (dev_read_bool(dev, "spi-3wire"))
Jagan Tekid3868fd2015-12-03 22:19:05 +0530472 mode |= SPI_3WIRE;
Simon Glass4b280582017-05-18 20:09:54 -0600473 if (dev_read_bool(dev, "spi-half-duplex"))
Simon Glassdd82d442014-10-13 23:41:52 -0600474 mode |= SPI_PREAMBLE;
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530475
476 /* Device DUAL/QUAD mode */
Simon Glass4b280582017-05-18 20:09:54 -0600477 value = dev_read_u32_default(dev, "spi-tx-bus-width", 1);
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530478 switch (value) {
479 case 1:
480 break;
481 case 2:
482 mode |= SPI_TX_DUAL;
483 break;
484 case 4:
485 mode |= SPI_TX_QUAD;
486 break;
Vignesh Raghavendrac063ee32019-12-05 15:46:05 +0530487 case 8:
488 mode |= SPI_TX_OCTAL;
489 break;
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530490 default:
Simon Glass6f5bed02016-11-29 20:00:13 -0700491 warn_non_spl("spi-tx-bus-width %d not supported\n", value);
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530492 break;
493 }
494
Simon Glass4b280582017-05-18 20:09:54 -0600495 value = dev_read_u32_default(dev, "spi-rx-bus-width", 1);
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530496 switch (value) {
497 case 1:
498 break;
499 case 2:
Jagan Teki96536b12016-08-08 17:12:12 +0530500 mode |= SPI_RX_DUAL;
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530501 break;
502 case 4:
Jagan Teki96536b12016-08-08 17:12:12 +0530503 mode |= SPI_RX_QUAD;
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530504 break;
Vignesh Raghavendrac063ee32019-12-05 15:46:05 +0530505 case 8:
506 mode |= SPI_RX_OCTAL;
507 break;
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530508 default:
Simon Glass6f5bed02016-11-29 20:00:13 -0700509 warn_non_spl("spi-rx-bus-width %d not supported\n", value);
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530510 break;
511 }
512
Jagan Teki96536b12016-08-08 17:12:12 +0530513 plat->mode = mode;
Mugunthan V N4b0f40c2015-12-23 20:39:37 +0530514
Simon Glassdd82d442014-10-13 23:41:52 -0600515 return 0;
516}
517
518UCLASS_DRIVER(spi) = {
519 .id = UCLASS_SPI,
520 .name = "spi",
Simon Glass0ccb0972015-01-25 08:27:05 -0700521 .flags = DM_UC_FLAG_SEQ_ALIAS,
Faiz Abbas8598c342020-09-14 12:11:14 +0530522#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass18230342016-07-05 17:10:10 -0600523 .post_bind = dm_scan_fdt_dev,
Simon Glass3fb33392016-11-13 14:22:01 -0700524#endif
Simon Glassdd82d442014-10-13 23:41:52 -0600525 .post_probe = spi_post_probe,
Simon Glass82c2f502015-01-25 08:27:11 -0700526 .child_pre_probe = spi_child_pre_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700527 .per_device_auto = sizeof(struct dm_spi_bus),
528 .per_child_auto = sizeof(struct spi_slave),
Simon Glassb75b15b2020-12-03 16:55:23 -0700529 .per_child_plat_auto = sizeof(struct dm_spi_slave_plat),
Simon Glass3fb33392016-11-13 14:22:01 -0700530#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass5d2ee052015-01-25 08:27:12 -0700531 .child_post_bind = spi_child_post_bind,
Simon Glass3fb33392016-11-13 14:22:01 -0700532#endif
Simon Glassdd82d442014-10-13 23:41:52 -0600533};
534
535UCLASS_DRIVER(spi_generic) = {
536 .id = UCLASS_SPI_GENERIC,
537 .name = "spi_generic",
538};
539
540U_BOOT_DRIVER(spi_generic_drv) = {
541 .name = "spi_generic_drv",
542 .id = UCLASS_SPI_GENERIC,
543};