2 * Copyright (c) 2014 Google, Inc
4 * SPDX-License-Identifier: GPL-2.0+
13 #include <dm/device-internal.h>
14 #include <dm/uclass-internal.h>
19 DECLARE_GLOBAL_DATA_PTR;
21 static int spi_set_speed_mode(struct udevice *bus, int speed, int mode)
23 struct dm_spi_ops *ops;
26 ops = spi_get_ops(bus);
28 ret = ops->set_speed(bus, speed);
32 printf("Cannot set speed (err=%d)\n", ret);
37 ret = ops->set_mode(bus, mode);
41 printf("Cannot set mode (err=%d)\n", ret);
48 int dm_spi_claim_bus(struct udevice *dev)
50 struct udevice *bus = dev->parent;
51 struct dm_spi_ops *ops = spi_get_ops(bus);
52 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
53 struct spi_slave *slave = dev_get_parent_priv(dev);
57 speed = slave->max_hz;
60 speed = min(speed, (int)spi->max_hz);
66 if (speed != slave->speed) {
67 ret = spi_set_speed_mode(bus, speed, slave->mode);
73 return ops->claim_bus ? ops->claim_bus(dev) : 0;
76 void dm_spi_release_bus(struct udevice *dev)
78 struct udevice *bus = dev->parent;
79 struct dm_spi_ops *ops = spi_get_ops(bus);
82 ops->release_bus(dev);
85 int dm_spi_xfer(struct udevice *dev, unsigned int bitlen,
86 const void *dout, void *din, unsigned long flags)
88 struct udevice *bus = dev->parent;
90 if (bus->uclass->uc_drv->id != UCLASS_SPI)
93 return spi_get_ops(bus)->xfer(dev, bitlen, dout, din, flags);
96 int spi_claim_bus(struct spi_slave *slave)
98 return dm_spi_claim_bus(slave->dev);
101 void spi_release_bus(struct spi_slave *slave)
103 dm_spi_release_bus(slave->dev);
106 int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
107 const void *dout, void *din, unsigned long flags)
109 return dm_spi_xfer(slave->dev, bitlen, dout, din, flags);
112 static int spi_post_bind(struct udevice *dev)
114 /* Scan the bus for devices */
115 return dm_scan_fdt_node(dev, gd->fdt_blob, dev->of_offset, false);
118 static int spi_child_post_bind(struct udevice *dev)
120 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
122 if (dev->of_offset == -1)
125 return spi_slave_ofdata_to_platdata(gd->fdt_blob, dev->of_offset, plat);
128 static int spi_post_probe(struct udevice *bus)
130 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
132 spi->max_hz = fdtdec_get_int(gd->fdt_blob, bus->of_offset,
133 "spi-max-frequency", 0);
135 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
136 struct dm_spi_ops *ops = spi_get_ops(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;
146 ops->xfer += gd->reloc_off;
148 ops->set_speed += gd->reloc_off;
150 ops->set_mode += gd->reloc_off;
152 ops->cs_info += gd->reloc_off;
158 static int spi_child_pre_probe(struct udevice *dev)
160 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
161 struct spi_slave *slave = dev_get_parent_priv(dev);
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
172 slave->max_hz = plat->max_hz;
173 slave->mode = plat->mode;
174 slave->mode_rx = plat->mode_rx;
175 slave->wordlen = SPI_DEFAULT_WORDLEN;
180 int spi_chip_select(struct udevice *dev)
182 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
184 return plat ? plat->cs : -ENOENT;
187 int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
191 for (device_find_first_child(bus, &dev); dev;
192 device_find_next_child(&dev)) {
193 struct dm_spi_slave_platdata *plat;
195 plat = dev_get_parent_platdata(dev);
196 debug("%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
197 if (plat->cs == cs) {
206 int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
208 struct spi_cs_info info;
212 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
214 debug("%s: No bus %d\n", __func__, busnum);
218 return spi_cs_info(bus, cs, &info);
221 int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
223 struct spi_cs_info local_info;
224 struct dm_spi_ops *ops;
230 /* If there is a device attached, return it */
232 ret = spi_find_chip_select(bus, cs, &info->dev);
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
242 ops = spi_get_ops(bus);
244 return ops->cs_info(bus, cs, info);
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.
254 int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
255 struct udevice **devp)
257 struct udevice *bus, *dev;
260 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
262 debug("%s: No bus %d\n", __func__, busnum);
265 ret = spi_find_chip_select(bus, cs, &dev);
267 debug("%s: No cs %d\n", __func__, cs);
276 int 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)
280 struct udevice *bus, *dev;
281 struct dm_spi_slave_platdata *plat;
282 bool created = false;
285 ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
287 printf("Invalid bus %d (err=%d)\n", busnum, ret);
290 ret = spi_find_chip_select(bus, cs, &dev);
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.
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);
300 ret = device_bind_driver(bus, drv_name, dev_name, &dev);
303 plat = dev_get_parent_platdata(dev);
305 plat->max_hz = speed;
309 printf("Invalid chip select %d:%d (err=%d)\n", busnum, cs,
314 if (!device_active(dev)) {
315 struct spi_slave *slave;
317 ret = device_probe(dev);
320 slave = dev_get_parent_priv(dev);
324 plat = dev_get_parent_platdata(dev);
326 speed = plat->max_hz;
329 ret = spi_set_speed_mode(bus, speed, mode);
334 *devp = dev_get_parent_priv(dev);
335 debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
340 debug("%s: Error path, created=%d, device '%s'\n", __func__,
350 /* Compatibility function - to be removed */
351 struct spi_slave *spi_setup_slave_fdt(const void *blob, int node,
354 struct udevice *bus, *dev;
357 ret = uclass_get_device_by_of_offset(UCLASS_SPI, bus_node, &bus);
360 ret = device_get_child_by_of_offset(bus, node, &dev);
363 return dev_get_parent_priv(dev);
366 /* Compatibility function - to be removed */
367 struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs,
368 unsigned int speed, unsigned int mode)
370 struct spi_slave *slave;
374 ret = spi_get_bus_and_cs(busnum, cs, speed, mode, NULL, 0, &dev,
382 void spi_free_slave(struct spi_slave *slave)
384 device_remove(slave->dev);
388 int spi_slave_ofdata_to_platdata(const void *blob, int node,
389 struct dm_spi_slave_platdata *plat)
391 int mode = 0, mode_rx = 0;
394 plat->cs = fdtdec_get_int(blob, node, "reg", -1);
395 plat->max_hz = fdtdec_get_int(blob, node, "spi-max-frequency", 0);
396 if (fdtdec_get_bool(blob, node, "spi-cpol"))
398 if (fdtdec_get_bool(blob, node, "spi-cpha"))
400 if (fdtdec_get_bool(blob, node, "spi-cs-high"))
402 if (fdtdec_get_bool(blob, node, "spi-3wire"))
404 if (fdtdec_get_bool(blob, node, "spi-half-duplex"))
405 mode |= SPI_PREAMBLE;
407 /* Device DUAL/QUAD mode */
408 value = fdtdec_get_uint(blob, node, "spi-tx-bus-width", 1);
419 error("spi-tx-bus-width %d not supported\n", value);
425 value = fdtdec_get_uint(blob, node, "spi-rx-bus-width", 1);
430 mode_rx |= SPI_RX_DUAL;
433 mode_rx |= SPI_RX_QUAD;
436 error("spi-rx-bus-width %d not supported\n", value);
440 plat->mode_rx = mode_rx;
445 UCLASS_DRIVER(spi) = {
448 .flags = DM_UC_FLAG_SEQ_ALIAS,
449 .post_bind = spi_post_bind,
450 .post_probe = spi_post_probe,
451 .child_pre_probe = spi_child_pre_probe,
452 .per_device_auto_alloc_size = sizeof(struct dm_spi_bus),
453 .per_child_auto_alloc_size = sizeof(struct spi_slave),
454 .per_child_platdata_auto_alloc_size =
455 sizeof(struct dm_spi_slave_platdata),
456 .child_post_bind = spi_child_post_bind,
459 UCLASS_DRIVER(spi_generic) = {
460 .id = UCLASS_SPI_GENERIC,
461 .name = "spi_generic",
464 U_BOOT_DRIVER(spi_generic_drv) = {
465 .name = "spi_generic_drv",
466 .id = UCLASS_SPI_GENERIC,