xref: /openbmc/u-boot/drivers/spi/spi-uclass.c (revision 8ceb40c7)
1 /*
2  * Copyright (c) 2014 Google, Inc
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 
7 #include <common.h>
8 #include <dm.h>
9 #include <errno.h>
10 #include <malloc.h>
11 #include <spi.h>
12 #include <dm/device-internal.h>
13 #include <dm/uclass-internal.h>
14 #include <dm/lists.h>
15 #include <dm/util.h>
16 
17 DECLARE_GLOBAL_DATA_PTR;
18 
19 static int spi_set_speed_mode(struct udevice *bus, int speed, int mode)
20 {
21 	struct dm_spi_ops *ops;
22 	int ret;
23 
24 	ops = spi_get_ops(bus);
25 	if (ops->set_speed)
26 		ret = ops->set_speed(bus, speed);
27 	else
28 		ret = -EINVAL;
29 	if (ret) {
30 		printf("Cannot set speed (err=%d)\n", ret);
31 		return ret;
32 	}
33 
34 	if (ops->set_mode)
35 		ret = ops->set_mode(bus, mode);
36 	else
37 		ret = -EINVAL;
38 	if (ret) {
39 		printf("Cannot set mode (err=%d)\n", ret);
40 		return ret;
41 	}
42 
43 	return 0;
44 }
45 
46 int dm_spi_claim_bus(struct udevice *dev)
47 {
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);
52 	int speed;
53 	int ret;
54 
55 	speed = slave->max_hz;
56 	if (spi->max_hz) {
57 		if (speed)
58 			speed = min(speed, (int)spi->max_hz);
59 		else
60 			speed = spi->max_hz;
61 	}
62 	if (!speed)
63 		speed = 100000;
64 	if (speed != slave->speed) {
65 		ret = spi_set_speed_mode(bus, speed, slave->mode);
66 		if (ret)
67 			return ret;
68 		slave->speed = speed;
69 	}
70 
71 	return ops->claim_bus ? ops->claim_bus(dev) : 0;
72 }
73 
74 void dm_spi_release_bus(struct udevice *dev)
75 {
76 	struct udevice *bus = dev->parent;
77 	struct dm_spi_ops *ops = spi_get_ops(bus);
78 
79 	if (ops->release_bus)
80 		ops->release_bus(dev);
81 }
82 
83 int dm_spi_xfer(struct udevice *dev, unsigned int bitlen,
84 		const void *dout, void *din, unsigned long flags)
85 {
86 	struct udevice *bus = dev->parent;
87 
88 	if (bus->uclass->uc_drv->id != UCLASS_SPI)
89 		return -EOPNOTSUPP;
90 
91 	return spi_get_ops(bus)->xfer(dev, bitlen, dout, din, flags);
92 }
93 
94 int spi_claim_bus(struct spi_slave *slave)
95 {
96 	return dm_spi_claim_bus(slave->dev);
97 }
98 
99 void spi_release_bus(struct spi_slave *slave)
100 {
101 	dm_spi_release_bus(slave->dev);
102 }
103 
104 int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
105 	     const void *dout, void *din, unsigned long flags)
106 {
107 	return dm_spi_xfer(slave->dev, bitlen, dout, din, flags);
108 }
109 
110 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
111 static int spi_child_post_bind(struct udevice *dev)
112 {
113 	struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
114 
115 	if (!dev_of_valid(dev))
116 		return 0;
117 
118 	return spi_slave_ofdata_to_platdata(dev, plat);
119 }
120 #endif
121 
122 static int spi_post_probe(struct udevice *bus)
123 {
124 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
125 	struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
126 
127 	spi->max_hz = dev_read_u32_default(bus, "spi-max-frequency", 0);
128 #endif
129 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
130 	struct dm_spi_ops *ops = spi_get_ops(bus);
131 
132 
133 	if (ops->claim_bus)
134 		ops->claim_bus += gd->reloc_off;
135 	if (ops->release_bus)
136 		ops->release_bus += gd->reloc_off;
137 	if (ops->set_wordlen)
138 		ops->set_wordlen += gd->reloc_off;
139 	if (ops->xfer)
140 		ops->xfer += gd->reloc_off;
141 	if (ops->set_speed)
142 		ops->set_speed += gd->reloc_off;
143 	if (ops->set_mode)
144 		ops->set_mode += gd->reloc_off;
145 	if (ops->cs_info)
146 		ops->cs_info += gd->reloc_off;
147 #endif
148 
149 	return 0;
150 }
151 
152 static int spi_child_pre_probe(struct udevice *dev)
153 {
154 	struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
155 	struct spi_slave *slave = dev_get_parent_priv(dev);
156 
157 	/*
158 	 * This is needed because we pass struct spi_slave around the place
159 	 * instead slave->dev (a struct udevice). So we have to have some
160 	 * way to access the slave udevice given struct spi_slave. Once we
161 	 * change the SPI API to use udevice instead of spi_slave, we can
162 	 * drop this.
163 	 */
164 	slave->dev = dev;
165 
166 	slave->max_hz = plat->max_hz;
167 	slave->mode = plat->mode;
168 	slave->wordlen = SPI_DEFAULT_WORDLEN;
169 
170 	return 0;
171 }
172 
173 int spi_chip_select(struct udevice *dev)
174 {
175 	struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev);
176 
177 	return plat ? plat->cs : -ENOENT;
178 }
179 
180 int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp)
181 {
182 	struct udevice *dev;
183 
184 	for (device_find_first_child(bus, &dev); dev;
185 	     device_find_next_child(&dev)) {
186 		struct dm_spi_slave_platdata *plat;
187 
188 		plat = dev_get_parent_platdata(dev);
189 		debug("%s: plat=%p, cs=%d\n", __func__, plat, plat->cs);
190 		if (plat->cs == cs) {
191 			*devp = dev;
192 			return 0;
193 		}
194 	}
195 
196 	return -ENODEV;
197 }
198 
199 int spi_cs_is_valid(unsigned int busnum, unsigned int cs)
200 {
201 	struct spi_cs_info info;
202 	struct udevice *bus;
203 	int ret;
204 
205 	ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
206 	if (ret) {
207 		debug("%s: No bus %d\n", __func__, busnum);
208 		return ret;
209 	}
210 
211 	return spi_cs_info(bus, cs, &info);
212 }
213 
214 int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info)
215 {
216 	struct spi_cs_info local_info;
217 	struct dm_spi_ops *ops;
218 	int ret;
219 
220 	if (!info)
221 		info = &local_info;
222 
223 	/* If there is a device attached, return it */
224 	info->dev = NULL;
225 	ret = spi_find_chip_select(bus, cs, &info->dev);
226 	if (!ret)
227 		return 0;
228 
229 	/*
230 	 * Otherwise ask the driver. For the moment we don't have CS info.
231 	 * When we do we could provide the driver with a helper function
232 	 * to figure out what chip selects are valid, or just handle the
233 	 * request.
234 	 */
235 	ops = spi_get_ops(bus);
236 	if (ops->cs_info)
237 		return ops->cs_info(bus, cs, info);
238 
239 	/*
240 	 * We could assume there is at least one valid chip select, but best
241 	 * to be sure and return an error in this case. The driver didn't
242 	 * care enough to tell us.
243 	 */
244 	return -ENODEV;
245 }
246 
247 int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp,
248 			struct udevice **devp)
249 {
250 	struct udevice *bus, *dev;
251 	int ret;
252 
253 	ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, false, &bus);
254 	if (ret) {
255 		debug("%s: No bus %d\n", __func__, busnum);
256 		return ret;
257 	}
258 	ret = spi_find_chip_select(bus, cs, &dev);
259 	if (ret) {
260 		debug("%s: No cs %d\n", __func__, cs);
261 		return ret;
262 	}
263 	*busp = bus;
264 	*devp = dev;
265 
266 	return ret;
267 }
268 
269 int spi_get_bus_and_cs(int busnum, int cs, int speed, int mode,
270 		       const char *drv_name, const char *dev_name,
271 		       struct udevice **busp, struct spi_slave **devp)
272 {
273 	struct udevice *bus, *dev;
274 	struct dm_spi_slave_platdata *plat;
275 	bool created = false;
276 	int ret;
277 
278 #if CONFIG_IS_ENABLED(OF_PLATDATA)
279 	ret = uclass_first_device_err(UCLASS_SPI, &bus);
280 #else
281 	ret = uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus);
282 #endif
283 	if (ret) {
284 		printf("Invalid bus %d (err=%d)\n", busnum, ret);
285 		return ret;
286 	}
287 	ret = spi_find_chip_select(bus, cs, &dev);
288 
289 	/*
290 	 * If there is no such device, create one automatically. This means
291 	 * that we don't need a device tree node or platform data for the
292 	 * SPI flash chip - we will bind to the correct driver.
293 	 */
294 	if (ret == -ENODEV && drv_name) {
295 		debug("%s: Binding new device '%s', busnum=%d, cs=%d, driver=%s\n",
296 		      __func__, dev_name, busnum, cs, drv_name);
297 		ret = device_bind_driver(bus, drv_name, dev_name, &dev);
298 		if (ret) {
299 			debug("%s: Unable to bind driver (ret=%d)\n", __func__,
300 			      ret);
301 			return ret;
302 		}
303 		plat = dev_get_parent_platdata(dev);
304 		plat->cs = cs;
305 		plat->max_hz = speed;
306 		plat->mode = mode;
307 		created = true;
308 	} else if (ret) {
309 		printf("Invalid chip select %d:%d (err=%d)\n", busnum, cs,
310 		       ret);
311 		return ret;
312 	}
313 
314 	if (!device_active(dev)) {
315 		struct spi_slave *slave;
316 
317 		ret = device_probe(dev);
318 		if (ret)
319 			goto err;
320 		slave = dev_get_parent_priv(dev);
321 		slave->dev = dev;
322 	}
323 
324 	plat = dev_get_parent_platdata(dev);
325 	if (!speed) {
326 		speed = plat->max_hz;
327 		mode = plat->mode;
328 	}
329 	ret = spi_set_speed_mode(bus, speed, mode);
330 	if (ret)
331 		goto err;
332 
333 	*busp = bus;
334 	*devp = dev_get_parent_priv(dev);
335 	debug("%s: bus=%p, slave=%p\n", __func__, bus, *devp);
336 
337 	return 0;
338 
339 err:
340 	debug("%s: Error path, created=%d, device '%s'\n", __func__,
341 	      created, dev->name);
342 	if (created) {
343 		device_remove(dev, DM_REMOVE_NORMAL);
344 		device_unbind(dev);
345 	}
346 
347 	return ret;
348 }
349 
350 /* Compatibility function - to be removed */
351 struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs,
352 				  unsigned int speed, unsigned int mode)
353 {
354 	struct spi_slave *slave;
355 	struct udevice *dev;
356 	int ret;
357 
358 	ret = spi_get_bus_and_cs(busnum, cs, speed, mode, NULL, 0, &dev,
359 				 &slave);
360 	if (ret)
361 		return NULL;
362 
363 	return slave;
364 }
365 
366 void spi_free_slave(struct spi_slave *slave)
367 {
368 	device_remove(slave->dev, DM_REMOVE_NORMAL);
369 	slave->dev = NULL;
370 }
371 
372 int spi_slave_ofdata_to_platdata(struct udevice *dev,
373 				 struct dm_spi_slave_platdata *plat)
374 {
375 	int mode = 0;
376 	int value;
377 
378 	plat->cs = dev_read_u32_default(dev, "reg", -1);
379 	plat->max_hz = dev_read_u32_default(dev, "spi-max-frequency", 0);
380 	if (dev_read_bool(dev, "spi-cpol"))
381 		mode |= SPI_CPOL;
382 	if (dev_read_bool(dev, "spi-cpha"))
383 		mode |= SPI_CPHA;
384 	if (dev_read_bool(dev, "spi-cs-high"))
385 		mode |= SPI_CS_HIGH;
386 	if (dev_read_bool(dev, "spi-3wire"))
387 		mode |= SPI_3WIRE;
388 	if (dev_read_bool(dev, "spi-half-duplex"))
389 		mode |= SPI_PREAMBLE;
390 
391 	/* Device DUAL/QUAD mode */
392 	value = dev_read_u32_default(dev, "spi-tx-bus-width", 1);
393 	switch (value) {
394 	case 1:
395 		break;
396 	case 2:
397 		mode |= SPI_TX_DUAL;
398 		break;
399 	case 4:
400 		mode |= SPI_TX_QUAD;
401 		break;
402 	default:
403 		warn_non_spl("spi-tx-bus-width %d not supported\n", value);
404 		break;
405 	}
406 
407 	value = dev_read_u32_default(dev, "spi-rx-bus-width", 1);
408 	switch (value) {
409 	case 1:
410 		break;
411 	case 2:
412 		mode |= SPI_RX_DUAL;
413 		break;
414 	case 4:
415 		mode |= SPI_RX_QUAD;
416 		break;
417 	default:
418 		warn_non_spl("spi-rx-bus-width %d not supported\n", value);
419 		break;
420 	}
421 
422 	plat->mode = mode;
423 
424 	return 0;
425 }
426 
427 UCLASS_DRIVER(spi) = {
428 	.id		= UCLASS_SPI,
429 	.name		= "spi",
430 	.flags		= DM_UC_FLAG_SEQ_ALIAS,
431 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
432 	.post_bind	= dm_scan_fdt_dev,
433 #endif
434 	.post_probe	= spi_post_probe,
435 	.child_pre_probe = spi_child_pre_probe,
436 	.per_device_auto_alloc_size = sizeof(struct dm_spi_bus),
437 	.per_child_auto_alloc_size = sizeof(struct spi_slave),
438 	.per_child_platdata_auto_alloc_size =
439 			sizeof(struct dm_spi_slave_platdata),
440 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
441 	.child_post_bind = spi_child_post_bind,
442 #endif
443 };
444 
445 UCLASS_DRIVER(spi_generic) = {
446 	.id		= UCLASS_SPI_GENERIC,
447 	.name		= "spi_generic",
448 };
449 
450 U_BOOT_DRIVER(spi_generic_drv) = {
451 	.name		= "spi_generic_drv",
452 	.id		= UCLASS_SPI_GENERIC,
453 };
454