2 * Copyright (c) 2014 Google, Inc
4 * SPDX-License-Identifier: GPL-2.0+
12 #include <dm/device-internal.h>
13 #include <dm/uclass-internal.h>
17 DECLARE_GLOBAL_DATA_PTR;
19 static int spi_set_speed_mode(struct udevice *bus, int speed, int mode)
21 struct dm_spi_ops *ops;
24 ops = spi_get_ops(bus);
26 ret = ops->set_speed(bus, speed);
30 printf("Cannot set speed (err=%d)\n", ret);
35 ret = ops->set_mode(bus, mode);
39 printf("Cannot set mode (err=%d)\n", ret);
46 int dm_spi_claim_bus(struct udevice *dev)
48 struct udevice *bus = dev->parent;
49 struct dm_spi_ops *ops = spi_get_ops(bus);
50 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
51 struct spi_slave *slave = dev_get_parent_priv(dev);
54 speed = slave->max_hz;
57 speed = min(speed, (int)spi->max_hz);
63 if (speed != slave->speed) {
64 int ret = spi_set_speed_mode(bus, speed, slave->mode);
71 return ops->claim_bus ? ops->claim_bus(dev) : 0;
74 void dm_spi_release_bus(struct udevice *dev)
76 struct udevice *bus = dev->parent;
77 struct dm_spi_ops *ops = spi_get_ops(bus);
80 ops->release_bus(dev);
83 int dm_spi_xfer(struct udevice *dev, unsigned int bitlen,
84 const void *dout, void *din, unsigned long flags)
86 struct udevice *bus = dev->parent;
88 if (bus->uclass->uc_drv->id != UCLASS_SPI)
91 return spi_get_ops(bus)->xfer(dev, bitlen, dout, din, flags);
94 int spi_claim_bus(struct spi_slave *slave)
96 return dm_spi_claim_bus(slave->dev);
99 void spi_release_bus(struct spi_slave *slave)
101 dm_spi_release_bus(slave->dev);
104 int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
105 const void *dout, void *din, unsigned long flags)
107 return dm_spi_xfer(slave->dev, bitlen, dout, din, flags);
110 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
111 static int spi_child_post_bind(struct udevice *dev)
113 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
115 if (!dev_of_valid(dev))
118 return spi_slave_ofdata_to_platdata(dev, plat);
122 static int spi_post_probe(struct udevice *bus)
124 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
125 struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
127 spi->max_hz = dev_read_u32_default(bus, "spi-max-frequency", 0);
129 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
130 struct dm_spi_ops *ops = spi_get_ops(bus);
133 ops->claim_bus += gd->reloc_off;
134 if (ops->release_bus)
135 ops->release_bus += gd->reloc_off;
136 if (ops->set_wordlen)
137 ops->set_wordlen += gd->reloc_off;
139 ops->xfer += gd->reloc_off;
141 ops->set_speed += gd->reloc_off;
143 ops->set_mode += gd->reloc_off;
145 ops->cs_info += gd->reloc_off;
151 static int spi_child_pre_probe(struct udevice *dev)
153 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
154 struct spi_slave *slave = dev_get_parent_priv(dev);
157 * This is needed because we pass struct spi_slave around the place
158 * instead slave->dev (a struct udevice). So we have to have some
159 * way to access the slave udevice given struct spi_slave. Once we
160 * change the SPI API to use udevice instead of spi_slave, we can
165 slave->max_hz = plat->max_hz;
166 slave->mode = plat->mode;
167 slave->wordlen = SPI_DEFAULT_WORDLEN;
172 int spi_chip_select(struct udevice *dev)
174 struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
176 return plat ? plat->cs : -ENOENT;
179 int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
183 for (device_find_first_child(bus, &dev); dev;
184 device_find_next_child(&dev)) {
185 struct dm_spi_slave_platdata *plat;
187 plat = dev_get_parent_platdata(dev);
188 debug("%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
189 if (plat->cs == cs) {
198 int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
200 struct spi_cs_info info;
204 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
206 debug("%s: No bus %d\n", __func__, busnum);
210 return spi_cs_info(bus, cs, &info);
213 int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
215 struct spi_cs_info local_info;
216 struct dm_spi_ops *ops;
222 /* If there is a device attached, return it */
224 ret = spi_find_chip_select(bus, cs, &info->dev);
229 * Otherwise ask the driver. For the moment we don't have CS info.
230 * When we do we could provide the driver with a helper function
231 * to figure out what chip selects are valid, or just handle the
234 ops = spi_get_ops(bus);
236 return ops->cs_info(bus, cs, info);
239 * We could assume there is at least one valid chip select, but best
240 * to be sure and return an error in this case. The driver didn't
241 * care enough to tell us.
246 int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
247 struct udevice **devp)
249 struct udevice *bus, *dev;
252 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
254 debug("%s: No bus %d\n", __func__, busnum);
257 ret = spi_find_chip_select(bus, cs, &dev);
259 debug("%s: No cs %d\n", __func__, cs);
268 int spi_get_bus_and_cs(int busnum, int cs, int speed, int mode,
269 const char *drv_name, const char *dev_name,
270 struct udevice **busp, struct spi_slave **devp)
272 struct udevice *bus, *dev;
273 struct dm_spi_slave_platdata *plat;
274 bool created = false;
277 #if CONFIG_IS_ENABLED(OF_PLATDATA)
278 ret = uclass_first_device_err(UCLASS_SPI, &bus);
280 ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
283 printf("Invalid bus %d (err=%d)\n", busnum, ret);
286 ret = spi_find_chip_select(bus, cs, &dev);
289 * If there is no such device, create one automatically. This means
290 * that we don't need a device tree node or platform data for the
291 * SPI flash chip - we will bind to the correct driver.
293 if (ret == -ENODEV && drv_name) {
294 debug("%s: Binding new device '%s', busnum=%d, cs=%d, driver=%s\n",
295 __func__, dev_name, busnum, cs, drv_name);
296 ret = device_bind_driver(bus, drv_name, dev_name, &dev);
298 debug("%s: Unable to bind driver (ret=%d)\n", __func__,
302 plat = dev_get_parent_platdata(dev);
304 plat->max_hz = speed;
308 printf("Invalid chip select %d:%d (err=%d)\n", busnum, cs,
313 if (!device_active(dev)) {
314 struct spi_slave *slave;
316 ret = device_probe(dev);
319 slave = dev_get_parent_priv(dev);
323 plat = dev_get_parent_platdata(dev);
325 speed = plat->max_hz;
328 ret = spi_set_speed_mode(bus, speed, mode);
333 *devp = dev_get_parent_priv(dev);
334 debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
339 debug("%s: Error path, created=%d, device '%s'\n", __func__,
342 device_remove(dev, DM_REMOVE_NORMAL);
349 /* Compatibility function - to be removed */
350 struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs,
351 unsigned int speed, unsigned int mode)
353 struct spi_slave *slave;
357 ret = spi_get_bus_and_cs(busnum, cs, speed, mode, NULL, 0, &dev,
365 void spi_free_slave(struct spi_slave *slave)
367 device_remove(slave->dev, DM_REMOVE_NORMAL);
371 int spi_slave_ofdata_to_platdata(struct udevice *dev,
372 struct dm_spi_slave_platdata *plat)
377 plat->cs = dev_read_u32_default(dev, "reg", -1);
378 plat->max_hz = dev_read_u32_default(dev, "spi-max-frequency", 0);
379 if (dev_read_bool(dev, "spi-cpol"))
381 if (dev_read_bool(dev, "spi-cpha"))
383 if (dev_read_bool(dev, "spi-cs-high"))
385 if (dev_read_bool(dev, "spi-3wire"))
387 if (dev_read_bool(dev, "spi-half-duplex"))
388 mode |= SPI_PREAMBLE;
390 /* Device DUAL/QUAD mode */
391 value = dev_read_u32_default(dev, "spi-tx-bus-width", 1);
402 warn_non_spl("spi-tx-bus-width %d not supported\n", value);
406 value = dev_read_u32_default(dev, "spi-rx-bus-width", 1);
417 warn_non_spl("spi-rx-bus-width %d not supported\n", value);
426 UCLASS_DRIVER(spi) = {
429 .flags = DM_UC_FLAG_SEQ_ALIAS,
430 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
431 .post_bind = dm_scan_fdt_dev,
433 .post_probe = spi_post_probe,
434 .child_pre_probe = spi_child_pre_probe,
435 .per_device_auto_alloc_size = sizeof(struct dm_spi_bus),
436 .per_child_auto_alloc_size = sizeof(struct spi_slave),
437 .per_child_platdata_auto_alloc_size =
438 sizeof(struct dm_spi_slave_platdata),
439 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
440 .child_post_bind = spi_child_post_bind,
444 UCLASS_DRIVER(spi_generic) = {
445 .id = UCLASS_SPI_GENERIC,
446 .name = "spi_generic",
449 U_BOOT_DRIVER(spi_generic_drv) = {
450 .name = "spi_generic_drv",
451 .id = UCLASS_SPI_GENERIC,