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 spi_claim_bus(struct spi_slave *slave)
50 struct udevice *dev = slave->dev;
51 struct udevice *bus = dev->parent;
52 struct dm_spi_ops *ops = spi_get_ops(bus);
53 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
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 spi_release_bus(struct spi_slave *slave)
78 struct udevice *dev = slave->dev;
79 struct udevice *bus = dev->parent;
80 struct dm_spi_ops *ops = spi_get_ops(bus);
83 ops->release_bus(dev);
86 int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
87 const void *dout, void *din, unsigned long flags)
89 struct udevice *dev = slave->dev;
90 struct udevice *bus = dev->parent;
92 if (bus->uclass->uc_drv->id != UCLASS_SPI)
95 return spi_get_ops(bus)->xfer(dev, bitlen, dout, din, flags);
98 static int spi_post_bind(struct udevice *dev)
100 /* Scan the bus for devices */
101 return dm_scan_fdt_node(dev, gd->fdt_blob, dev->of_offset, false);
104 static int spi_child_post_bind(struct udevice *dev)
106 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
108 if (dev->of_offset == -1)
111 return spi_slave_ofdata_to_platdata(gd->fdt_blob, dev->of_offset, plat);
114 static int spi_post_probe(struct udevice *bus)
116 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
118 spi->max_hz = fdtdec_get_int(gd->fdt_blob, bus->of_offset,
119 "spi-max-frequency", 0);
121 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
122 struct dm_spi_ops *ops = spi_get_ops(bus);
126 ops->claim_bus += gd->reloc_off;
127 if (ops->release_bus)
128 ops->release_bus += gd->reloc_off;
129 if (ops->set_wordlen)
130 ops->set_wordlen += gd->reloc_off;
132 ops->xfer += gd->reloc_off;
134 ops->set_speed += gd->reloc_off;
136 ops->set_mode += gd->reloc_off;
138 ops->cs_info += gd->reloc_off;
144 static int spi_child_pre_probe(struct udevice *dev)
146 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
147 struct spi_slave *slave = dev_get_parent_priv(dev);
150 * This is needed because we pass struct spi_slave around the place
151 * instead slave->dev (a struct udevice). So we have to have some
152 * way to access the slave udevice given struct spi_slave. Once we
153 * change the SPI API to use udevice instead of spi_slave, we can
158 slave->max_hz = plat->max_hz;
159 slave->mode = plat->mode;
160 slave->mode_rx = plat->mode_rx;
161 slave->wordlen = SPI_DEFAULT_WORDLEN;
166 int spi_chip_select(struct udevice *dev)
168 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
170 return plat ? plat->cs : -ENOENT;
173 int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
177 for (device_find_first_child(bus, &dev); dev;
178 device_find_next_child(&dev)) {
179 struct dm_spi_slave_platdata *plat;
181 plat = dev_get_parent_platdata(dev);
182 debug("%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
183 if (plat->cs == cs) {
192 int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
194 struct spi_cs_info info;
198 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
200 debug("%s: No bus %d\n", __func__, busnum);
204 return spi_cs_info(bus, cs, &info);
207 int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
209 struct spi_cs_info local_info;
210 struct dm_spi_ops *ops;
216 /* If there is a device attached, return it */
218 ret = spi_find_chip_select(bus, cs, &info->dev);
223 * Otherwise ask the driver. For the moment we don't have CS info.
224 * When we do we could provide the driver with a helper function
225 * to figure out what chip selects are valid, or just handle the
228 ops = spi_get_ops(bus);
230 return ops->cs_info(bus, cs, info);
233 * We could assume there is at least one valid chip select, but best
234 * to be sure and return an error in this case. The driver didn't
235 * care enough to tell us.
240 int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
241 struct udevice **devp)
243 struct udevice *bus, *dev;
246 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
248 debug("%s: No bus %d\n", __func__, busnum);
251 ret = spi_find_chip_select(bus, cs, &dev);
253 debug("%s: No cs %d\n", __func__, cs);
262 int spi_get_bus_and_cs(int busnum, int cs, int speed, int mode,
263 const char *drv_name, const char *dev_name,
264 struct udevice **busp, struct spi_slave **devp)
266 struct udevice *bus, *dev;
267 bool created = false;
270 ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
272 printf("Invalid bus %d (err=%d)\n", busnum, ret);
275 ret = spi_find_chip_select(bus, cs, &dev);
278 * If there is no such device, create one automatically. This means
279 * that we don't need a device tree node or platform data for the
280 * SPI flash chip - we will bind to the correct driver.
282 if (ret == -ENODEV && drv_name) {
283 struct dm_spi_slave_platdata *plat;
285 debug("%s: Binding new device '%s', busnum=%d, cs=%d, driver=%s\n",
286 __func__, dev_name, busnum, cs, drv_name);
287 ret = device_bind_driver(bus, drv_name, dev_name, &dev);
290 plat = dev_get_parent_platdata(dev);
292 plat->max_hz = speed;
296 printf("Invalid chip select %d:%d (err=%d)\n", busnum, cs,
301 if (!device_active(dev)) {
302 struct spi_slave *slave;
304 ret = device_probe(dev);
307 slave = dev_get_parent_priv(dev);
311 ret = spi_set_speed_mode(bus, speed, mode);
316 *devp = dev_get_parent_priv(dev);
317 debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
322 debug("%s: Error path, credted=%d, device '%s'\n", __func__,
332 /* Compatibility function - to be removed */
333 struct spi_slave *spi_setup_slave_fdt(const void *blob, int node,
336 struct udevice *bus, *dev;
339 ret = uclass_get_device_by_of_offset(UCLASS_SPI, bus_node, &bus);
342 ret = device_get_child_by_of_offset(bus, node, &dev);
345 return dev_get_parent_priv(dev);
348 /* Compatibility function - to be removed */
349 struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs,
350 unsigned int speed, unsigned int mode)
352 struct spi_slave *slave;
356 ret = spi_get_bus_and_cs(busnum, cs, speed, mode, NULL, 0, &dev,
364 void spi_free_slave(struct spi_slave *slave)
366 device_remove(slave->dev);
370 int spi_slave_ofdata_to_platdata(const void *blob, int node,
371 struct dm_spi_slave_platdata *plat)
373 int mode = 0, mode_rx = 0;
376 plat->cs = fdtdec_get_int(blob, node, "reg", -1);
377 plat->max_hz = fdtdec_get_int(blob, node, "spi-max-frequency", 0);
378 if (fdtdec_get_bool(blob, node, "spi-cpol"))
380 if (fdtdec_get_bool(blob, node, "spi-cpha"))
382 if (fdtdec_get_bool(blob, node, "spi-cs-high"))
384 if (fdtdec_get_bool(blob, node, "spi-3wire"))
386 if (fdtdec_get_bool(blob, node, "spi-half-duplex"))
387 mode |= SPI_PREAMBLE;
389 /* Device DUAL/QUAD mode */
390 value = fdtdec_get_uint(blob, node, "spi-tx-bus-width", 1);
401 error("spi-tx-bus-width %d not supported\n", value);
407 value = fdtdec_get_uint(blob, node, "spi-rx-bus-width", 1);
412 mode_rx |= SPI_RX_DUAL;
415 mode_rx |= SPI_RX_QUAD;
418 error("spi-rx-bus-width %d not supported\n", value);
422 plat->mode_rx = mode_rx;
427 UCLASS_DRIVER(spi) = {
430 .flags = DM_UC_FLAG_SEQ_ALIAS,
431 .post_bind = spi_post_bind,
432 .post_probe = spi_post_probe,
433 .child_pre_probe = spi_child_pre_probe,
434 .per_device_auto_alloc_size = sizeof(struct dm_spi_bus),
435 .per_child_auto_alloc_size = sizeof(struct spi_slave),
436 .per_child_platdata_auto_alloc_size =
437 sizeof(struct dm_spi_slave_platdata),
438 .child_post_bind = spi_child_post_bind,
441 UCLASS_DRIVER(spi_generic) = {
442 .id = UCLASS_SPI_GENERIC,
443 .name = "spi_generic",
446 U_BOOT_DRIVER(spi_generic_drv) = {
447 .name = "spi_generic_drv",
448 .id = UCLASS_SPI_GENERIC,