blob: 246650673010594d08c139551da1973318f78685 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/common/amba.c
3 *
4 * Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/device.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080013#include <linux/string.h>
14#include <linux/slab.h>
Russell King934848d2009-01-08 09:58:51 +000015#include <linux/io.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000016#include <linux/amba/bus.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Russell King934848d2009-01-08 09:58:51 +000018#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/sizes.h>
20
21#define to_amba_device(d) container_of(d, struct amba_device, dev)
22#define to_amba_driver(d) container_of(d, struct amba_driver, drv)
23
24static struct amba_id *
25amba_lookup(struct amba_id *table, struct amba_device *dev)
26{
27 int ret = 0;
28
29 while (table->mask) {
30 ret = (dev->periphid & table->mask) == table->id;
31 if (ret)
32 break;
33 table++;
34 }
35
36 return ret ? table : NULL;
37}
38
39static int amba_match(struct device *dev, struct device_driver *drv)
40{
41 struct amba_device *pcdev = to_amba_device(dev);
42 struct amba_driver *pcdrv = to_amba_driver(drv);
43
44 return amba_lookup(pcdrv->id_table, pcdev) != NULL;
45}
46
47#ifdef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +020048static int amba_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 struct amba_device *pcdev = to_amba_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +020051 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Kay Sievers7eff2e72007-08-14 15:15:12 +020053 retval = add_uevent_var(env, "AMBA_ID=%08x", pcdev->periphid);
Eric Rannaudbf624562007-03-30 22:23:12 -070054 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56#else
Paul Jackson6d20b032005-11-25 20:04:26 -080057#define amba_uevent NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif
59
60static int amba_suspend(struct device *dev, pm_message_t state)
61{
62 struct amba_driver *drv = to_amba_driver(dev->driver);
63 int ret = 0;
64
65 if (dev->driver && drv->suspend)
66 ret = drv->suspend(to_amba_device(dev), state);
67 return ret;
68}
69
70static int amba_resume(struct device *dev)
71{
72 struct amba_driver *drv = to_amba_driver(dev->driver);
73 int ret = 0;
74
75 if (dev->driver && drv->resume)
76 ret = drv->resume(to_amba_device(dev));
77 return ret;
78}
79
Russell King96b13f52006-11-30 14:04:49 +000080#define amba_attr_func(name,fmt,arg...) \
81static ssize_t name##_show(struct device *_dev, \
82 struct device_attribute *attr, char *buf) \
83{ \
84 struct amba_device *dev = to_amba_device(_dev); \
85 return sprintf(buf, fmt, arg); \
86}
87
88#define amba_attr(name,fmt,arg...) \
89amba_attr_func(name,fmt,arg) \
90static DEVICE_ATTR(name, S_IRUGO, name##_show, NULL)
91
92amba_attr_func(id, "%08x\n", dev->periphid);
93amba_attr(irq0, "%u\n", dev->irq[0]);
94amba_attr(irq1, "%u\n", dev->irq[1]);
95amba_attr_func(resource, "\t%016llx\t%016llx\t%016lx\n",
96 (unsigned long long)dev->res.start, (unsigned long long)dev->res.end,
97 dev->res.flags);
98
99static struct device_attribute amba_dev_attrs[] = {
100 __ATTR_RO(id),
101 __ATTR_RO(resource),
102 __ATTR_NULL,
103};
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*
106 * Primecells are part of the Advanced Microcontroller Bus Architecture,
107 * so we call the bus "amba".
108 */
109static struct bus_type amba_bustype = {
110 .name = "amba",
Russell King96b13f52006-11-30 14:04:49 +0000111 .dev_attrs = amba_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 .match = amba_match,
Paul Jackson6d20b032005-11-25 20:04:26 -0800113 .uevent = amba_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .suspend = amba_suspend,
115 .resume = amba_resume,
116};
117
118static int __init amba_init(void)
119{
120 return bus_register(&amba_bustype);
121}
122
123postcore_initcall(amba_init);
124
125/*
126 * These are the device model conversion veneers; they convert the
127 * device model structures to our more specific structures.
128 */
129static int amba_probe(struct device *dev)
130{
131 struct amba_device *pcdev = to_amba_device(dev);
132 struct amba_driver *pcdrv = to_amba_driver(dev->driver);
133 struct amba_id *id;
134
135 id = amba_lookup(pcdrv->id_table, pcdev);
136
137 return pcdrv->probe(pcdev, id);
138}
139
140static int amba_remove(struct device *dev)
141{
142 struct amba_driver *drv = to_amba_driver(dev->driver);
143 return drv->remove(to_amba_device(dev));
144}
145
146static void amba_shutdown(struct device *dev)
147{
148 struct amba_driver *drv = to_amba_driver(dev->driver);
149 drv->shutdown(to_amba_device(dev));
150}
151
152/**
153 * amba_driver_register - register an AMBA device driver
154 * @drv: amba device driver structure
155 *
156 * Register an AMBA device driver with the Linux device model
157 * core. If devices pre-exist, the drivers probe function will
158 * be called.
159 */
160int amba_driver_register(struct amba_driver *drv)
161{
162 drv->drv.bus = &amba_bustype;
163
164#define SETFN(fn) if (drv->fn) drv->drv.fn = amba_##fn
165 SETFN(probe);
166 SETFN(remove);
167 SETFN(shutdown);
168
169 return driver_register(&drv->drv);
170}
171
172/**
173 * amba_driver_unregister - remove an AMBA device driver
174 * @drv: AMBA device driver structure to remove
175 *
176 * Unregister an AMBA device driver from the Linux device
177 * model. The device model will call the drivers remove function
178 * for each device the device driver is currently handling.
179 */
180void amba_driver_unregister(struct amba_driver *drv)
181{
182 driver_unregister(&drv->drv);
183}
184
185
186static void amba_device_release(struct device *dev)
187{
188 struct amba_device *d = to_amba_device(dev);
189
190 if (d->res.parent)
191 release_resource(&d->res);
192 kfree(d);
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/**
196 * amba_device_register - register an AMBA device
197 * @dev: AMBA device to register
198 * @parent: parent memory resource
199 *
200 * Setup the AMBA device, reading the cell ID if present.
201 * Claim the resource, and register the AMBA device with
202 * the Linux device manager.
203 */
204int amba_device_register(struct amba_device *dev, struct resource *parent)
205{
206 u32 pid, cid;
207 void __iomem *tmp;
208 int i, ret;
209
Russell King557dca52009-07-05 22:39:08 +0100210 device_initialize(&dev->dev);
211
212 /*
213 * Copy from device_add
214 */
215 if (dev->dev.init_name) {
216 dev_set_name(&dev->dev, "%s", dev->dev.init_name);
217 dev->dev.init_name = NULL;
218 }
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 dev->dev.release = amba_device_release;
221 dev->dev.bus = &amba_bustype;
222 dev->dev.dma_mask = &dev->dma_mask;
Kay Sievers9d6b4c82009-03-24 16:38:22 -0700223 dev->res.name = dev_name(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 if (!dev->dev.coherent_dma_mask && dev->dma_mask)
226 dev_warn(&dev->dev, "coherent dma mask is unset\n");
227
228 ret = request_resource(parent, &dev->res);
Russell King96b13f52006-11-30 14:04:49 +0000229 if (ret)
230 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Russell King96b13f52006-11-30 14:04:49 +0000232 tmp = ioremap(dev->res.start, SZ_4K);
233 if (!tmp) {
234 ret = -ENOMEM;
235 goto err_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
Russell King96b13f52006-11-30 14:04:49 +0000237
238 for (pid = 0, i = 0; i < 4; i++)
239 pid |= (readl(tmp + 0xfe0 + 4 * i) & 255) << (i * 8);
240 for (cid = 0, i = 0; i < 4; i++)
241 cid |= (readl(tmp + 0xff0 + 4 * i) & 255) << (i * 8);
242
243 iounmap(tmp);
244
245 if (cid == 0xb105f00d)
246 dev->periphid = pid;
247
248 if (!dev->periphid) {
249 ret = -ENODEV;
250 goto err_release;
251 }
252
Russell King557dca52009-07-05 22:39:08 +0100253 ret = device_add(&dev->dev);
Russell King96b13f52006-11-30 14:04:49 +0000254 if (ret)
255 goto err_release;
256
257 if (dev->irq[0] != NO_IRQ)
258 ret = device_create_file(&dev->dev, &dev_attr_irq0);
259 if (ret == 0 && dev->irq[1] != NO_IRQ)
260 ret = device_create_file(&dev->dev, &dev_attr_irq1);
261 if (ret == 0)
262 return ret;
263
264 device_unregister(&dev->dev);
265
266 err_release:
267 release_resource(&dev->res);
268 err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return ret;
270}
271
272/**
273 * amba_device_unregister - unregister an AMBA device
274 * @dev: AMBA device to remove
275 *
276 * Remove the specified AMBA device from the Linux device
277 * manager. All files associated with this object will be
278 * destroyed, and device drivers notified that the device has
279 * been removed. The AMBA device's resources including
280 * the amba_device structure will be freed once all
281 * references to it have been dropped.
282 */
283void amba_device_unregister(struct amba_device *dev)
284{
285 device_unregister(&dev->dev);
286}
287
288
289struct find_data {
290 struct amba_device *dev;
291 struct device *parent;
292 const char *busid;
293 unsigned int id;
294 unsigned int mask;
295};
296
297static int amba_find_match(struct device *dev, void *data)
298{
299 struct find_data *d = data;
300 struct amba_device *pcdev = to_amba_device(dev);
301 int r;
302
303 r = (pcdev->periphid & d->mask) == d->id;
304 if (d->parent)
305 r &= d->parent == dev->parent;
306 if (d->busid)
Kay Sievers9d6b4c82009-03-24 16:38:22 -0700307 r &= strcmp(dev_name(dev), d->busid) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 if (r) {
310 get_device(dev);
311 d->dev = pcdev;
312 }
313
314 return r;
315}
316
317/**
318 * amba_find_device - locate an AMBA device given a bus id
319 * @busid: bus id for device (or NULL)
320 * @parent: parent device (or NULL)
321 * @id: peripheral ID (or 0)
322 * @mask: peripheral ID mask (or 0)
323 *
324 * Return the AMBA device corresponding to the supplied parameters.
325 * If no device matches, returns NULL.
326 *
327 * NOTE: When a valid device is found, its refcount is
328 * incremented, and must be decremented before the returned
329 * reference.
330 */
331struct amba_device *
332amba_find_device(const char *busid, struct device *parent, unsigned int id,
333 unsigned int mask)
334{
335 struct find_data data;
336
337 data.dev = NULL;
338 data.parent = parent;
339 data.busid = busid;
340 data.id = id;
341 data.mask = mask;
342
343 bus_for_each_dev(&amba_bustype, NULL, &data, amba_find_match);
344
345 return data.dev;
346}
347
348/**
349 * amba_request_regions - request all mem regions associated with device
350 * @dev: amba_device structure for device
351 * @name: name, or NULL to use driver name
352 */
353int amba_request_regions(struct amba_device *dev, const char *name)
354{
355 int ret = 0;
356
357 if (!name)
358 name = dev->dev.driver->name;
359
360 if (!request_mem_region(dev->res.start, SZ_4K, name))
361 ret = -EBUSY;
362
363 return ret;
364}
365
366/**
367 * amba_release_regions - release mem regions assoicated with device
368 * @dev: amba_device structure for device
369 *
370 * Release regions claimed by a successful call to amba_request_regions.
371 */
372void amba_release_regions(struct amba_device *dev)
373{
374 release_mem_region(dev->res.start, SZ_4K);
375}
376
377EXPORT_SYMBOL(amba_driver_register);
378EXPORT_SYMBOL(amba_driver_unregister);
379EXPORT_SYMBOL(amba_device_register);
380EXPORT_SYMBOL(amba_device_unregister);
381EXPORT_SYMBOL(amba_find_device);
382EXPORT_SYMBOL(amba_request_regions);
383EXPORT_SYMBOL(amba_release_regions);