]>
Commit | Line | Data |
---|---|---|
d2912cb1 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
1da177e4 LT |
2 | /* |
3 | * linux/arch/arm/common/amba.c | |
4 | * | |
5 | * Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved. | |
1da177e4 LT |
6 | */ |
7 | #include <linux/module.h> | |
8 | #include <linux/init.h> | |
9 | #include <linux/device.h> | |
4e57b681 TS |
10 | #include <linux/string.h> |
11 | #include <linux/slab.h> | |
934848da | 12 | #include <linux/io.h> |
ba74ec7f RV |
13 | #include <linux/pm.h> |
14 | #include <linux/pm_runtime.h> | |
f48c767c | 15 | #include <linux/pm_domain.h> |
a62c80e5 | 16 | #include <linux/amba/bus.h> |
a875cfbb | 17 | #include <linux/sizes.h> |
3cf38571 | 18 | #include <linux/limits.h> |
bcd3006f | 19 | #include <linux/clk/clk-conf.h> |
07397df2 | 20 | #include <linux/platform_device.h> |
ca5a75df | 21 | #include <linux/property.h> |
79bdcb20 | 22 | #include <linux/reset.h> |
854f695c | 23 | #include <linux/of_irq.h> |
4a6d9dd5 LB |
24 | #include <linux/of_device.h> |
25 | #include <linux/acpi.h> | |
512881ea LB |
26 | #include <linux/iommu.h> |
27 | #include <linux/dma-map-ops.h> | |
1da177e4 | 28 | |
d69d8048 | 29 | #define to_amba_driver(d) container_of_const(d, struct amba_driver, drv) |
1da177e4 | 30 | |
4a2910fa ML |
31 | /* called on periphid match and class 0x9 coresight device. */ |
32 | static int | |
33 | amba_cs_uci_id_match(const struct amba_id *table, struct amba_device *dev) | |
1da177e4 LT |
34 | { |
35 | int ret = 0; | |
4a2910fa ML |
36 | struct amba_cs_uci_id *uci; |
37 | ||
38 | uci = table->data; | |
1da177e4 | 39 | |
4a2910fa ML |
40 | /* no table data or zero mask - return match on periphid */ |
41 | if (!uci || (uci->devarch_mask == 0)) | |
42 | return 1; | |
43 | ||
44 | /* test against read devtype and masked devarch value */ | |
45 | ret = (dev->uci.devtype == uci->devtype) && | |
46 | ((dev->uci.devarch & uci->devarch_mask) == uci->devarch); | |
47 | return ret; | |
48 | } | |
49 | ||
50 | static const struct amba_id * | |
51 | amba_lookup(const struct amba_id *table, struct amba_device *dev) | |
52 | { | |
1da177e4 | 53 | while (table->mask) { |
4a2910fa ML |
54 | if (((dev->periphid & table->mask) == table->id) && |
55 | ((dev->cid != CORESIGHT_CID) || | |
56 | (amba_cs_uci_id_match(table, dev)))) | |
57 | return table; | |
1da177e4 LT |
58 | table++; |
59 | } | |
4a2910fa | 60 | return NULL; |
1da177e4 LT |
61 | } |
62 | ||
5150a8f0 | 63 | static int amba_get_enable_pclk(struct amba_device *pcdev) |
1da177e4 | 64 | { |
5150a8f0 | 65 | int ret; |
1da177e4 | 66 | |
5150a8f0 UKK |
67 | pcdev->pclk = clk_get(&pcdev->dev, "apb_pclk"); |
68 | if (IS_ERR(pcdev->pclk)) | |
69 | return PTR_ERR(pcdev->pclk); | |
3cf38571 | 70 | |
5150a8f0 UKK |
71 | ret = clk_prepare_enable(pcdev->pclk); |
72 | if (ret) | |
73 | clk_put(pcdev->pclk); | |
74 | ||
75 | return ret; | |
1da177e4 LT |
76 | } |
77 | ||
5150a8f0 | 78 | static void amba_put_disable_pclk(struct amba_device *pcdev) |
1da177e4 | 79 | { |
5150a8f0 UKK |
80 | clk_disable_unprepare(pcdev->pclk); |
81 | clk_put(pcdev->pclk); | |
1da177e4 | 82 | } |
1da177e4 | 83 | |
5150a8f0 | 84 | |
3cf38571 AM |
85 | static ssize_t driver_override_show(struct device *_dev, |
86 | struct device_attribute *attr, char *buf) | |
87 | { | |
88 | struct amba_device *dev = to_amba_device(_dev); | |
6a7228d9 | 89 | ssize_t len; |
3cf38571 | 90 | |
6a7228d9 GU |
91 | device_lock(_dev); |
92 | len = sprintf(buf, "%s\n", dev->driver_override); | |
93 | device_unlock(_dev); | |
94 | return len; | |
3cf38571 AM |
95 | } |
96 | ||
97 | static ssize_t driver_override_store(struct device *_dev, | |
98 | struct device_attribute *attr, | |
99 | const char *buf, size_t count) | |
100 | { | |
101 | struct amba_device *dev = to_amba_device(_dev); | |
6e679550 | 102 | int ret; |
3cf38571 | 103 | |
6e679550 KK |
104 | ret = driver_set_override(_dev, &dev->driver_override, buf, count); |
105 | if (ret) | |
106 | return ret; | |
3cf38571 AM |
107 | |
108 | return count; | |
109 | } | |
966449a3 | 110 | static DEVICE_ATTR_RW(driver_override); |
3cf38571 | 111 | |
96b13f5c RK |
112 | #define amba_attr_func(name,fmt,arg...) \ |
113 | static ssize_t name##_show(struct device *_dev, \ | |
114 | struct device_attribute *attr, char *buf) \ | |
115 | { \ | |
116 | struct amba_device *dev = to_amba_device(_dev); \ | |
117 | return sprintf(buf, fmt, arg); \ | |
966449a3 GKH |
118 | } \ |
119 | static DEVICE_ATTR_RO(name) | |
96b13f5c RK |
120 | |
121 | amba_attr_func(id, "%08x\n", dev->periphid); | |
96b13f5c RK |
122 | amba_attr_func(resource, "\t%016llx\t%016llx\t%016lx\n", |
123 | (unsigned long long)dev->res.start, (unsigned long long)dev->res.end, | |
124 | dev->res.flags); | |
125 | ||
966449a3 GKH |
126 | static struct attribute *amba_dev_attrs[] = { |
127 | &dev_attr_id.attr, | |
128 | &dev_attr_resource.attr, | |
129 | &dev_attr_driver_override.attr, | |
130 | NULL, | |
96b13f5c | 131 | }; |
966449a3 | 132 | ATTRIBUTE_GROUPS(amba_dev); |
96b13f5c | 133 | |
f2d3b9a4 SK |
134 | static int amba_read_periphid(struct amba_device *dev) |
135 | { | |
136 | struct reset_control *rstc; | |
137 | u32 size, pid, cid; | |
138 | void __iomem *tmp; | |
139 | int i, ret; | |
140 | ||
141 | ret = dev_pm_domain_attach(&dev->dev, true); | |
142 | if (ret) { | |
143 | dev_dbg(&dev->dev, "can't get PM domain: %d\n", ret); | |
144 | goto err_out; | |
145 | } | |
146 | ||
147 | ret = amba_get_enable_pclk(dev); | |
148 | if (ret) { | |
149 | dev_dbg(&dev->dev, "can't get pclk: %d\n", ret); | |
150 | goto err_pm; | |
151 | } | |
152 | ||
153 | /* | |
154 | * Find reset control(s) of the amba bus and de-assert them. | |
155 | */ | |
156 | rstc = of_reset_control_array_get_optional_shared(dev->dev.of_node); | |
157 | if (IS_ERR(rstc)) { | |
158 | ret = PTR_ERR(rstc); | |
159 | if (ret != -EPROBE_DEFER) | |
160 | dev_err(&dev->dev, "can't get reset: %d\n", ret); | |
161 | goto err_clk; | |
162 | } | |
163 | reset_control_deassert(rstc); | |
164 | reset_control_put(rstc); | |
165 | ||
166 | size = resource_size(&dev->res); | |
167 | tmp = ioremap(dev->res.start, size); | |
168 | if (!tmp) { | |
169 | ret = -ENOMEM; | |
170 | goto err_clk; | |
171 | } | |
172 | ||
173 | /* | |
174 | * Read pid and cid based on size of resource | |
175 | * they are located at end of region | |
176 | */ | |
177 | for (pid = 0, i = 0; i < 4; i++) | |
178 | pid |= (readl(tmp + size - 0x20 + 4 * i) & 255) << (i * 8); | |
179 | for (cid = 0, i = 0; i < 4; i++) | |
180 | cid |= (readl(tmp + size - 0x10 + 4 * i) & 255) << (i * 8); | |
181 | ||
182 | if (cid == CORESIGHT_CID) { | |
183 | /* set the base to the start of the last 4k block */ | |
184 | void __iomem *csbase = tmp + size - 4096; | |
185 | ||
186 | dev->uci.devarch = readl(csbase + UCI_REG_DEVARCH_OFFSET); | |
187 | dev->uci.devtype = readl(csbase + UCI_REG_DEVTYPE_OFFSET) & 0xff; | |
188 | } | |
189 | ||
190 | if (cid == AMBA_CID || cid == CORESIGHT_CID) { | |
191 | dev->periphid = pid; | |
192 | dev->cid = cid; | |
193 | } | |
194 | ||
195 | if (!dev->periphid) | |
196 | ret = -ENODEV; | |
197 | ||
198 | iounmap(tmp); | |
199 | ||
200 | err_clk: | |
201 | amba_put_disable_pclk(dev); | |
202 | err_pm: | |
203 | dev_pm_domain_detach(&dev->dev, true); | |
204 | err_out: | |
205 | return ret; | |
206 | } | |
207 | ||
d69d8048 | 208 | static int amba_match(struct device *dev, const struct device_driver *drv) |
5150a8f0 UKK |
209 | { |
210 | struct amba_device *pcdev = to_amba_device(dev); | |
d69d8048 | 211 | const struct amba_driver *pcdrv = to_amba_driver(drv); |
5150a8f0 | 212 | |
25af7406 | 213 | mutex_lock(&pcdev->periphid_lock); |
f2d3b9a4 SK |
214 | if (!pcdev->periphid) { |
215 | int ret = amba_read_periphid(pcdev); | |
216 | ||
217 | /* | |
218 | * Returning any error other than -EPROBE_DEFER from bus match | |
219 | * can cause driver registration failure. So, if there's a | |
220 | * permanent failure in reading pid and cid, simply map it to | |
221 | * -EPROBE_DEFER. | |
222 | */ | |
25af7406 IM |
223 | if (ret) { |
224 | mutex_unlock(&pcdev->periphid_lock); | |
f2d3b9a4 | 225 | return -EPROBE_DEFER; |
25af7406 | 226 | } |
f2d3b9a4 SK |
227 | dev_set_uevent_suppress(dev, false); |
228 | kobject_uevent(&dev->kobj, KOBJ_ADD); | |
229 | } | |
25af7406 | 230 | mutex_unlock(&pcdev->periphid_lock); |
f2d3b9a4 | 231 | |
5150a8f0 UKK |
232 | /* When driver_override is set, only bind to the matching driver */ |
233 | if (pcdev->driver_override) | |
234 | return !strcmp(pcdev->driver_override, drv->name); | |
235 | ||
236 | return amba_lookup(pcdrv->id_table, pcdev) != NULL; | |
237 | } | |
238 | ||
2a81ada3 | 239 | static int amba_uevent(const struct device *dev, struct kobj_uevent_env *env) |
5150a8f0 | 240 | { |
2a81ada3 | 241 | const struct amba_device *pcdev = to_amba_device(dev); |
5150a8f0 UKK |
242 | int retval = 0; |
243 | ||
244 | retval = add_uevent_var(env, "AMBA_ID=%08x", pcdev->periphid); | |
245 | if (retval) | |
246 | return retval; | |
247 | ||
248 | retval = add_uevent_var(env, "MODALIAS=amba:d%08X", pcdev->periphid); | |
249 | return retval; | |
250 | } | |
251 | ||
dcc0a8f6 WK |
252 | static int of_amba_device_decode_irq(struct amba_device *dev) |
253 | { | |
254 | struct device_node *node = dev->dev.of_node; | |
255 | int i, irq = 0; | |
256 | ||
257 | if (IS_ENABLED(CONFIG_OF_IRQ) && node) { | |
258 | /* Decode the IRQs and address ranges */ | |
259 | for (i = 0; i < AMBA_NR_IRQS; i++) { | |
260 | irq = of_irq_get(node, i); | |
261 | if (irq < 0) { | |
262 | if (irq == -EPROBE_DEFER) | |
263 | return irq; | |
264 | irq = 0; | |
265 | } | |
266 | ||
267 | dev->irq[i] = irq; | |
268 | } | |
269 | } | |
270 | ||
271 | return 0; | |
272 | } | |
273 | ||
f170b59f UKK |
274 | /* |
275 | * These are the device model conversion veneers; they convert the | |
276 | * device model structures to our more specific structures. | |
277 | */ | |
278 | static int amba_probe(struct device *dev) | |
279 | { | |
280 | struct amba_device *pcdev = to_amba_device(dev); | |
281 | struct amba_driver *pcdrv = to_amba_driver(dev->driver); | |
282 | const struct amba_id *id = amba_lookup(pcdrv->id_table, pcdev); | |
283 | int ret; | |
284 | ||
285 | do { | |
dcc0a8f6 WK |
286 | ret = of_amba_device_decode_irq(pcdev); |
287 | if (ret) | |
288 | break; | |
289 | ||
f170b59f UKK |
290 | ret = of_clk_set_defaults(dev->of_node, false); |
291 | if (ret < 0) | |
292 | break; | |
293 | ||
294 | ret = dev_pm_domain_attach(dev, true); | |
295 | if (ret) | |
296 | break; | |
297 | ||
298 | ret = amba_get_enable_pclk(pcdev); | |
299 | if (ret) { | |
300 | dev_pm_domain_detach(dev, true); | |
301 | break; | |
302 | } | |
303 | ||
304 | pm_runtime_get_noresume(dev); | |
305 | pm_runtime_set_active(dev); | |
306 | pm_runtime_enable(dev); | |
307 | ||
308 | ret = pcdrv->probe(pcdev, id); | |
309 | if (ret == 0) | |
310 | break; | |
311 | ||
312 | pm_runtime_disable(dev); | |
313 | pm_runtime_set_suspended(dev); | |
314 | pm_runtime_put_noidle(dev); | |
315 | ||
316 | amba_put_disable_pclk(pcdev); | |
317 | dev_pm_domain_detach(dev, true); | |
318 | } while (0); | |
319 | ||
320 | return ret; | |
321 | } | |
322 | ||
fc7a6209 | 323 | static void amba_remove(struct device *dev) |
f170b59f UKK |
324 | { |
325 | struct amba_device *pcdev = to_amba_device(dev); | |
326 | struct amba_driver *drv = to_amba_driver(dev->driver); | |
327 | ||
328 | pm_runtime_get_sync(dev); | |
329 | if (drv->remove) | |
330 | drv->remove(pcdev); | |
331 | pm_runtime_put_noidle(dev); | |
332 | ||
333 | /* Undo the runtime PM settings in amba_probe() */ | |
334 | pm_runtime_disable(dev); | |
335 | pm_runtime_set_suspended(dev); | |
336 | pm_runtime_put_noidle(dev); | |
337 | ||
338 | amba_put_disable_pclk(pcdev); | |
339 | dev_pm_domain_detach(dev, true); | |
f170b59f UKK |
340 | } |
341 | ||
342 | static void amba_shutdown(struct device *dev) | |
343 | { | |
344 | struct amba_driver *drv; | |
345 | ||
346 | if (!dev->driver) | |
347 | return; | |
348 | ||
349 | drv = to_amba_driver(dev->driver); | |
350 | if (drv->shutdown) | |
351 | drv->shutdown(to_amba_device(dev)); | |
352 | } | |
353 | ||
4a6d9dd5 LB |
354 | static int amba_dma_configure(struct device *dev) |
355 | { | |
512881ea | 356 | struct amba_driver *drv = to_amba_driver(dev->driver); |
4a6d9dd5 LB |
357 | enum dev_dma_attr attr; |
358 | int ret = 0; | |
359 | ||
360 | if (dev->of_node) { | |
361 | ret = of_dma_configure(dev, dev->of_node, true); | |
362 | } else if (has_acpi_companion(dev)) { | |
363 | attr = acpi_get_dma_attr(to_acpi_device_node(dev->fwnode)); | |
364 | ret = acpi_dma_configure(dev, attr); | |
365 | } | |
366 | ||
512881ea LB |
367 | if (!ret && !drv->driver_managed_dma) { |
368 | ret = iommu_device_use_default_domain(dev); | |
369 | if (ret) | |
370 | arch_teardown_dma_ops(dev); | |
371 | } | |
372 | ||
4a6d9dd5 LB |
373 | return ret; |
374 | } | |
375 | ||
512881ea LB |
376 | static void amba_dma_cleanup(struct device *dev) |
377 | { | |
378 | struct amba_driver *drv = to_amba_driver(dev->driver); | |
379 | ||
380 | if (!drv->driver_managed_dma) | |
381 | iommu_device_unuse_default_domain(dev); | |
382 | } | |
383 | ||
f210c53a | 384 | #ifdef CONFIG_PM |
92b97f0a RK |
385 | /* |
386 | * Hooks to provide runtime PM of the pclk (bus clock). It is safe to | |
387 | * enable/disable the bus clock at runtime PM suspend/resume as this | |
1e45860f | 388 | * does not result in loss of context. |
92b97f0a RK |
389 | */ |
390 | static int amba_pm_runtime_suspend(struct device *dev) | |
391 | { | |
392 | struct amba_device *pcdev = to_amba_device(dev); | |
393 | int ret = pm_generic_runtime_suspend(dev); | |
394 | ||
5670c2a5 KK |
395 | if (ret == 0 && dev->driver) { |
396 | if (pm_runtime_is_irq_safe(dev)) | |
397 | clk_disable(pcdev->pclk); | |
398 | else | |
399 | clk_disable_unprepare(pcdev->pclk); | |
400 | } | |
92b97f0a RK |
401 | |
402 | return ret; | |
403 | } | |
404 | ||
405 | static int amba_pm_runtime_resume(struct device *dev) | |
406 | { | |
407 | struct amba_device *pcdev = to_amba_device(dev); | |
408 | int ret; | |
409 | ||
410 | if (dev->driver) { | |
5670c2a5 KK |
411 | if (pm_runtime_is_irq_safe(dev)) |
412 | ret = clk_enable(pcdev->pclk); | |
413 | else | |
414 | ret = clk_prepare_enable(pcdev->pclk); | |
92b97f0a RK |
415 | /* Failure is probably fatal to the system, but... */ |
416 | if (ret) | |
417 | return ret; | |
418 | } | |
419 | ||
420 | return pm_generic_runtime_resume(dev); | |
421 | } | |
5670c2a5 | 422 | #endif /* CONFIG_PM */ |
92b97f0a | 423 | |
ba74ec7f | 424 | static const struct dev_pm_ops amba_pm = { |
6ed23b80 | 425 | SET_RUNTIME_PM_OPS( |
92b97f0a RK |
426 | amba_pm_runtime_suspend, |
427 | amba_pm_runtime_resume, | |
45f0a85c | 428 | NULL |
ba74ec7f RV |
429 | ) |
430 | }; | |
431 | ||
1da177e4 LT |
432 | /* |
433 | * Primecells are part of the Advanced Microcontroller Bus Architecture, | |
434 | * so we call the bus "amba". | |
07397df2 NG |
435 | * DMA configuration for platform and AMBA bus is same. So here we reuse |
436 | * platform's DMA config routine. | |
1da177e4 | 437 | */ |
a4d398a5 | 438 | const struct bus_type amba_bustype = { |
1da177e4 | 439 | .name = "amba", |
966449a3 | 440 | .dev_groups = amba_dev_groups, |
1da177e4 | 441 | .match = amba_match, |
6d20b035 | 442 | .uevent = amba_uevent, |
f170b59f UKK |
443 | .probe = amba_probe, |
444 | .remove = amba_remove, | |
445 | .shutdown = amba_shutdown, | |
4a6d9dd5 | 446 | .dma_configure = amba_dma_configure, |
512881ea | 447 | .dma_cleanup = amba_dma_cleanup, |
26825cfd | 448 | .pm = &amba_pm, |
1da177e4 | 449 | }; |
e9ac68c3 | 450 | EXPORT_SYMBOL_GPL(amba_bustype); |
1da177e4 | 451 | |
ad8d1e32 KC |
452 | bool dev_is_amba(const struct device *dev) |
453 | { | |
454 | return dev->bus == &amba_bustype; | |
455 | } | |
456 | EXPORT_SYMBOL_GPL(dev_is_amba); | |
457 | ||
1da177e4 LT |
458 | static int __init amba_init(void) |
459 | { | |
460 | return bus_register(&amba_bustype); | |
461 | } | |
462 | ||
463 | postcore_initcall(amba_init); | |
464 | ||
f2d3b9a4 SK |
465 | static int amba_proxy_probe(struct amba_device *adev, |
466 | const struct amba_id *id) | |
467 | { | |
468 | WARN(1, "Stub driver should never match any device.\n"); | |
469 | return -ENODEV; | |
470 | } | |
471 | ||
472 | static const struct amba_id amba_stub_drv_ids[] = { | |
473 | { 0, 0 }, | |
474 | }; | |
475 | ||
476 | static struct amba_driver amba_proxy_drv = { | |
477 | .drv = { | |
478 | .name = "amba-proxy", | |
479 | }, | |
480 | .probe = amba_proxy_probe, | |
481 | .id_table = amba_stub_drv_ids, | |
482 | }; | |
483 | ||
484 | static int __init amba_stub_drv_init(void) | |
485 | { | |
486 | if (!IS_ENABLED(CONFIG_MODULES)) | |
487 | return 0; | |
488 | ||
489 | /* | |
490 | * The amba_match() function will get called only if there is at least | |
491 | * one amba driver registered. If all amba drivers are modules and are | |
492 | * only loaded based on uevents, then we'll hit a chicken-and-egg | |
493 | * situation where amba_match() is waiting on drivers and drivers are | |
494 | * waiting on amba_match(). So, register a stub driver to make sure | |
495 | * amba_match() is called even if no amba driver has been registered. | |
496 | */ | |
5677b17c | 497 | return __amba_driver_register(&amba_proxy_drv, NULL); |
f2d3b9a4 SK |
498 | } |
499 | late_initcall_sync(amba_stub_drv_init); | |
500 | ||
1da177e4 | 501 | /** |
5677b17c | 502 | * __amba_driver_register - register an AMBA device driver |
1da177e4 | 503 | * @drv: amba device driver structure |
5677b17c | 504 | * @owner: owning module/driver |
1da177e4 LT |
505 | * |
506 | * Register an AMBA device driver with the Linux device model | |
507 | * core. If devices pre-exist, the drivers probe function will | |
508 | * be called. | |
509 | */ | |
5677b17c KK |
510 | int __amba_driver_register(struct amba_driver *drv, |
511 | struct module *owner) | |
1da177e4 | 512 | { |
de5d7adb UKK |
513 | if (!drv->probe) |
514 | return -EINVAL; | |
1da177e4 | 515 | |
5677b17c | 516 | drv->drv.owner = owner; |
de5d7adb | 517 | drv->drv.bus = &amba_bustype; |
1da177e4 LT |
518 | |
519 | return driver_register(&drv->drv); | |
520 | } | |
5677b17c | 521 | EXPORT_SYMBOL(__amba_driver_register); |
1da177e4 LT |
522 | |
523 | /** | |
524 | * amba_driver_unregister - remove an AMBA device driver | |
525 | * @drv: AMBA device driver structure to remove | |
526 | * | |
527 | * Unregister an AMBA device driver from the Linux device | |
528 | * model. The device model will call the drivers remove function | |
529 | * for each device the device driver is currently handling. | |
530 | */ | |
531 | void amba_driver_unregister(struct amba_driver *drv) | |
532 | { | |
533 | driver_unregister(&drv->drv); | |
534 | } | |
a2e7ae86 | 535 | EXPORT_SYMBOL(amba_driver_unregister); |
1da177e4 LT |
536 | |
537 | static void amba_device_release(struct device *dev) | |
538 | { | |
539 | struct amba_device *d = to_amba_device(dev); | |
540 | ||
ca5a75df | 541 | fwnode_handle_put(dev_fwnode(&d->dev)); |
1da177e4 LT |
542 | if (d->res.parent) |
543 | release_resource(&d->res); | |
25af7406 | 544 | mutex_destroy(&d->periphid_lock); |
1da177e4 LT |
545 | kfree(d); |
546 | } | |
547 | ||
a41980f2 MS |
548 | /** |
549 | * amba_device_add - add a previously allocated AMBA device structure | |
550 | * @dev: AMBA device allocated by amba_device_alloc | |
551 | * @parent: resource parent for this devices resources | |
552 | * | |
553 | * Claim the resource, and read the device cell ID if not already | |
554 | * initialized. Register the AMBA device with the Linux device | |
555 | * manager. | |
556 | */ | |
557 | int amba_device_add(struct amba_device *dev, struct resource *parent) | |
558 | { | |
f2d3b9a4 | 559 | int ret; |
a41980f2 | 560 | |
ca5a75df AS |
561 | fwnode_handle_get(dev_fwnode(&dev->dev)); |
562 | ||
f2d3b9a4 SK |
563 | ret = request_resource(parent, &dev->res); |
564 | if (ret) | |
565 | return ret; | |
a41980f2 | 566 | |
f2d3b9a4 SK |
567 | /* If primecell ID isn't hard-coded, figure it out */ |
568 | if (!dev->periphid) { | |
569 | /* | |
570 | * AMBA device uevents require reading its pid and cid | |
571 | * registers. To do this, the device must be on, clocked and | |
572 | * out of reset. However in some cases those resources might | |
573 | * not yet be available. If that's the case, we suppress the | |
574 | * generation of uevents until we can read the pid and cid | |
575 | * registers. See also amba_match(). | |
576 | */ | |
577 | if (amba_read_periphid(dev)) | |
578 | dev_set_uevent_suppress(&dev->dev, true); | |
579 | } | |
a41980f2 | 580 | |
f2d3b9a4 SK |
581 | ret = device_add(&dev->dev); |
582 | if (ret) | |
583 | release_resource(&dev->res); | |
a41980f2 | 584 | |
a41980f2 MS |
585 | return ret; |
586 | } | |
d5dc9271 RK |
587 | EXPORT_SYMBOL_GPL(amba_device_add); |
588 | ||
589 | static void amba_device_initialize(struct amba_device *dev, const char *name) | |
590 | { | |
591 | device_initialize(&dev->dev); | |
592 | if (name) | |
593 | dev_set_name(&dev->dev, "%s", name); | |
594 | dev->dev.release = amba_device_release; | |
595 | dev->dev.bus = &amba_bustype; | |
446b2a93 | 596 | dev->dev.dma_mask = &dev->dev.coherent_dma_mask; |
f4584884 | 597 | dev->dev.dma_parms = &dev->dma_parms; |
d5dc9271 | 598 | dev->res.name = dev_name(&dev->dev); |
25af7406 | 599 | mutex_init(&dev->periphid_lock); |
d5dc9271 RK |
600 | } |
601 | ||
602 | /** | |
603 | * amba_device_alloc - allocate an AMBA device | |
604 | * @name: sysfs name of the AMBA device | |
605 | * @base: base of AMBA device | |
606 | * @size: size of AMBA device | |
607 | * | |
608 | * Allocate and initialize an AMBA device structure. Returns %NULL | |
609 | * on failure. | |
610 | */ | |
611 | struct amba_device *amba_device_alloc(const char *name, resource_size_t base, | |
612 | size_t size) | |
613 | { | |
614 | struct amba_device *dev; | |
615 | ||
616 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); | |
617 | if (dev) { | |
618 | amba_device_initialize(dev, name); | |
619 | dev->res.start = base; | |
620 | dev->res.end = base + size - 1; | |
621 | dev->res.flags = IORESOURCE_MEM; | |
622 | } | |
623 | ||
624 | return dev; | |
625 | } | |
626 | EXPORT_SYMBOL_GPL(amba_device_alloc); | |
627 | ||
628 | /** | |
629 | * amba_device_register - register an AMBA device | |
630 | * @dev: AMBA device to register | |
631 | * @parent: parent memory resource | |
632 | * | |
633 | * Setup the AMBA device, reading the cell ID if present. | |
634 | * Claim the resource, and register the AMBA device with | |
635 | * the Linux device manager. | |
636 | */ | |
637 | int amba_device_register(struct amba_device *dev, struct resource *parent) | |
638 | { | |
639 | amba_device_initialize(dev, dev->dev.init_name); | |
640 | dev->dev.init_name = NULL; | |
641 | ||
d5dc9271 RK |
642 | return amba_device_add(dev, parent); |
643 | } | |
a2e7ae86 | 644 | EXPORT_SYMBOL(amba_device_register); |
d5dc9271 RK |
645 | |
646 | /** | |
647 | * amba_device_put - put an AMBA device | |
648 | * @dev: AMBA device to put | |
649 | */ | |
650 | void amba_device_put(struct amba_device *dev) | |
651 | { | |
652 | put_device(&dev->dev); | |
653 | } | |
654 | EXPORT_SYMBOL_GPL(amba_device_put); | |
1da177e4 LT |
655 | |
656 | /** | |
657 | * amba_device_unregister - unregister an AMBA device | |
658 | * @dev: AMBA device to remove | |
659 | * | |
660 | * Remove the specified AMBA device from the Linux device | |
661 | * manager. All files associated with this object will be | |
662 | * destroyed, and device drivers notified that the device has | |
663 | * been removed. The AMBA device's resources including | |
664 | * the amba_device structure will be freed once all | |
665 | * references to it have been dropped. | |
666 | */ | |
667 | void amba_device_unregister(struct amba_device *dev) | |
668 | { | |
669 | device_unregister(&dev->dev); | |
670 | } | |
a2e7ae86 | 671 | EXPORT_SYMBOL(amba_device_unregister); |
1da177e4 | 672 | |
1da177e4 LT |
673 | /** |
674 | * amba_request_regions - request all mem regions associated with device | |
675 | * @dev: amba_device structure for device | |
676 | * @name: name, or NULL to use driver name | |
677 | */ | |
678 | int amba_request_regions(struct amba_device *dev, const char *name) | |
679 | { | |
680 | int ret = 0; | |
8afe0b96 | 681 | u32 size; |
1da177e4 LT |
682 | |
683 | if (!name) | |
684 | name = dev->dev.driver->name; | |
685 | ||
8afe0b96 LC |
686 | size = resource_size(&dev->res); |
687 | ||
688 | if (!request_mem_region(dev->res.start, size, name)) | |
1da177e4 LT |
689 | ret = -EBUSY; |
690 | ||
691 | return ret; | |
692 | } | |
a2e7ae86 | 693 | EXPORT_SYMBOL(amba_request_regions); |
1da177e4 LT |
694 | |
695 | /** | |
25985edc | 696 | * amba_release_regions - release mem regions associated with device |
1da177e4 LT |
697 | * @dev: amba_device structure for device |
698 | * | |
699 | * Release regions claimed by a successful call to amba_request_regions. | |
700 | */ | |
701 | void amba_release_regions(struct amba_device *dev) | |
702 | { | |
8afe0b96 LC |
703 | u32 size; |
704 | ||
705 | size = resource_size(&dev->res); | |
706 | release_mem_region(dev->res.start, size); | |
1da177e4 | 707 | } |
1da177e4 | 708 | EXPORT_SYMBOL(amba_release_regions); |