Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / ppc / syslib / ocp.c
blobac80370ed2f75fddac17e09eff6f633d289ffe14
1 /*
2 * ocp.c
4 * (c) Benjamin Herrenschmidt (benh@kernel.crashing.org)
5 * Mipsys - France
7 * Derived from work (c) Armin Kuster akuster@pacbell.net
9 * Additional support and port to 2.6 LDM/sysfs by
10 * Matt Porter <mporter@kernel.crashing.org>
11 * Copyright 2004 MontaVista Software, Inc.
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
18 * OCP (On Chip Peripheral) is a software emulated "bus" with a
19 * pseudo discovery method for dumb peripherals. Usually these type
20 * of peripherals are found on embedded SoC (System On a Chip)
21 * processors or highly integrated system controllers that have
22 * a host bridge and many peripherals. Common examples where
23 * this is already used include the PPC4xx, MPC52xx,
24 * and MV64xxx parts.
26 * This subsystem creates a standard OCP bus type within the
27 * device model. The devices on the OCP bus are seeded by an
28 * an initial OCP device array created by the arch-specific
29 * Device entries can be added/removed/modified through OCP
30 * helper functions to accommodate system and board-specific
31 * parameters commonly found in embedded systems. OCP also
32 * provides a standard method for devices to describe extended
33 * attributes about themselves to the system. A standard access
34 * method allows OCP drivers to obtain the information, both
35 * SoC-specific and system/board-specific, needed for operation.
38 #include <linux/module.h>
39 #include <linux/list.h>
40 #include <linux/miscdevice.h>
41 #include <linux/slab.h>
42 #include <linux/types.h>
43 #include <linux/init.h>
44 #include <linux/pm.h>
45 #include <linux/bootmem.h>
46 #include <linux/device.h>
47 #include <linux/rwsem.h>
49 #include <asm/io.h>
50 #include <asm/ocp.h>
51 #include <asm/errno.h>
52 #include <asm/semaphore.h>
54 //#define DBG(x) printk x
55 #define DBG(x)
57 extern int mem_init_done;
59 extern struct ocp_def core_ocp[]; /* Static list of devices, provided by
60 CPU core */
62 LIST_HEAD(ocp_devices); /* List of all OCP devices */
63 DECLARE_RWSEM(ocp_devices_sem); /* Global semaphores for those lists */
65 static int ocp_inited;
67 /* Sysfs support */
68 #define OCP_DEF_ATTR(field, format_string) \
69 static ssize_t \
70 show_##field(struct device *dev, struct device_attribute *attr, char *buf) \
71 { \
72 struct ocp_device *odev = to_ocp_dev(dev); \
74 return sprintf(buf, format_string, odev->def->field); \
75 } \
76 static DEVICE_ATTR(field, S_IRUGO, show_##field, NULL);
78 OCP_DEF_ATTR(vendor, "0x%04x\n");
79 OCP_DEF_ATTR(function, "0x%04x\n");
80 OCP_DEF_ATTR(index, "0x%04x\n");
81 #ifdef CONFIG_PTE_64BIT
82 OCP_DEF_ATTR(paddr, "0x%016Lx\n");
83 #else
84 OCP_DEF_ATTR(paddr, "0x%08lx\n");
85 #endif
86 OCP_DEF_ATTR(irq, "%d\n");
87 OCP_DEF_ATTR(pm, "%lu\n");
89 void ocp_create_sysfs_dev_files(struct ocp_device *odev)
91 struct device *dev = &odev->dev;
93 /* Current OCP device def attributes */
94 device_create_file(dev, &dev_attr_vendor);
95 device_create_file(dev, &dev_attr_function);
96 device_create_file(dev, &dev_attr_index);
97 device_create_file(dev, &dev_attr_paddr);
98 device_create_file(dev, &dev_attr_irq);
99 device_create_file(dev, &dev_attr_pm);
100 /* Current OCP device additions attributes */
101 if (odev->def->additions && odev->def->show)
102 odev->def->show(dev);
106 * ocp_device_match - Match one driver to one device
107 * @drv: driver to match
108 * @dev: device to match
110 * This function returns 0 if the driver and device don't match
112 static int
113 ocp_device_match(struct device *dev, struct device_driver *drv)
115 struct ocp_device *ocp_dev = to_ocp_dev(dev);
116 struct ocp_driver *ocp_drv = to_ocp_drv(drv);
117 const struct ocp_device_id *ids = ocp_drv->id_table;
119 if (!ids)
120 return 0;
122 while (ids->vendor || ids->function) {
123 if ((ids->vendor == OCP_ANY_ID
124 || ids->vendor == ocp_dev->def->vendor)
125 && (ids->function == OCP_ANY_ID
126 || ids->function == ocp_dev->def->function))
127 return 1;
128 ids++;
130 return 0;
133 static int
134 ocp_device_probe(struct device *dev)
136 int error = 0;
137 struct ocp_driver *drv;
138 struct ocp_device *ocp_dev;
140 drv = to_ocp_drv(dev->driver);
141 ocp_dev = to_ocp_dev(dev);
143 if (drv->probe) {
144 error = drv->probe(ocp_dev);
145 if (error >= 0) {
146 ocp_dev->driver = drv;
147 error = 0;
150 return error;
153 static int
154 ocp_device_remove(struct device *dev)
156 struct ocp_device *ocp_dev = to_ocp_dev(dev);
158 if (ocp_dev->driver) {
159 if (ocp_dev->driver->remove)
160 ocp_dev->driver->remove(ocp_dev);
161 ocp_dev->driver = NULL;
163 return 0;
166 static int
167 ocp_device_suspend(struct device *dev, pm_message_t state)
169 struct ocp_device *ocp_dev = to_ocp_dev(dev);
170 struct ocp_driver *ocp_drv = to_ocp_drv(dev->driver);
172 if (dev->driver && ocp_drv->suspend)
173 return ocp_drv->suspend(ocp_dev, state);
174 return 0;
177 static int
178 ocp_device_resume(struct device *dev)
180 struct ocp_device *ocp_dev = to_ocp_dev(dev);
181 struct ocp_driver *ocp_drv = to_ocp_drv(dev->driver);
183 if (dev->driver && ocp_drv->resume)
184 return ocp_drv->resume(ocp_dev);
185 return 0;
188 struct bus_type ocp_bus_type = {
189 .name = "ocp",
190 .match = ocp_device_match,
191 .probe = ocp_device_probe,
192 .remove = ocp_device_remove,
193 .suspend = ocp_device_suspend,
194 .resume = ocp_device_resume,
198 * ocp_register_driver - Register an OCP driver
199 * @drv: pointer to statically defined ocp_driver structure
201 * The driver's probe() callback is called either recursively
202 * by this function or upon later call of ocp_driver_init
204 * NOTE: Detection of devices is a 2 pass step on this implementation,
205 * hotswap isn't supported. First, all OCP devices are put in the device
206 * list, _then_ all drivers are probed on each match.
209 ocp_register_driver(struct ocp_driver *drv)
211 /* initialize common driver fields */
212 drv->driver.name = drv->name;
213 drv->driver.bus = &ocp_bus_type;
215 /* register with core */
216 return driver_register(&drv->driver);
220 * ocp_unregister_driver - Unregister an OCP driver
221 * @drv: pointer to statically defined ocp_driver structure
223 * The driver's remove() callback is called recursively
224 * by this function for any device already registered
226 void
227 ocp_unregister_driver(struct ocp_driver *drv)
229 DBG(("ocp: ocp_unregister_driver(%s)...\n", drv->name));
231 driver_unregister(&drv->driver);
233 DBG(("ocp: ocp_unregister_driver(%s)... done.\n", drv->name));
236 /* Core of ocp_find_device(). Caller must hold ocp_devices_sem */
237 static struct ocp_device *
238 __ocp_find_device(unsigned int vendor, unsigned int function, int index)
240 struct list_head *entry;
241 struct ocp_device *dev, *found = NULL;
243 DBG(("ocp: __ocp_find_device(vendor: %x, function: %x, index: %d)...\n", vendor, function, index));
245 list_for_each(entry, &ocp_devices) {
246 dev = list_entry(entry, struct ocp_device, link);
247 if (vendor != OCP_ANY_ID && vendor != dev->def->vendor)
248 continue;
249 if (function != OCP_ANY_ID && function != dev->def->function)
250 continue;
251 if (index != OCP_ANY_INDEX && index != dev->def->index)
252 continue;
253 found = dev;
254 break;
257 DBG(("ocp: __ocp_find_device(vendor: %x, function: %x, index: %d)... done\n", vendor, function, index));
259 return found;
263 * ocp_find_device - Find a device by function & index
264 * @vendor: vendor ID of the device (or OCP_ANY_ID)
265 * @function: function code of the device (or OCP_ANY_ID)
266 * @idx: index of the device (or OCP_ANY_INDEX)
268 * This function allows a lookup of a given function by it's
269 * index, it's typically used to find the MAL or ZMII associated
270 * with an EMAC or similar horrors.
271 * You can pass vendor, though you usually want OCP_ANY_ID there...
273 struct ocp_device *
274 ocp_find_device(unsigned int vendor, unsigned int function, int index)
276 struct ocp_device *dev;
278 down_read(&ocp_devices_sem);
279 dev = __ocp_find_device(vendor, function, index);
280 up_read(&ocp_devices_sem);
282 return dev;
286 * ocp_get_one_device - Find a def by function & index
287 * @vendor: vendor ID of the device (or OCP_ANY_ID)
288 * @function: function code of the device (or OCP_ANY_ID)
289 * @idx: index of the device (or OCP_ANY_INDEX)
291 * This function allows a lookup of a given ocp_def by it's
292 * vendor, function, and index. The main purpose for is to
293 * allow modification of the def before binding to the driver
295 struct ocp_def *
296 ocp_get_one_device(unsigned int vendor, unsigned int function, int index)
298 struct ocp_device *dev;
299 struct ocp_def *found = NULL;
301 DBG(("ocp: ocp_get_one_device(vendor: %x, function: %x, index: %d)...\n",
302 vendor, function, index));
304 dev = ocp_find_device(vendor, function, index);
306 if (dev)
307 found = dev->def;
309 DBG(("ocp: ocp_get_one_device(vendor: %x, function: %x, index: %d)... done.\n",
310 vendor, function, index));
312 return found;
316 * ocp_add_one_device - Add a device
317 * @def: static device definition structure
319 * This function adds a device definition to the
320 * device list. It may only be called before
321 * ocp_driver_init() and will return an error
322 * otherwise.
325 ocp_add_one_device(struct ocp_def *def)
327 struct ocp_device *dev;
329 DBG(("ocp: ocp_add_one_device()...\n"));
331 /* Can't be called after ocp driver init */
332 if (ocp_inited)
333 return 1;
335 if (mem_init_done)
336 dev = kmalloc(sizeof(*dev), GFP_KERNEL);
337 else
338 dev = alloc_bootmem(sizeof(*dev));
340 if (dev == NULL)
341 return 1;
342 memset(dev, 0, sizeof(*dev));
343 dev->def = def;
344 dev->current_state = 4;
345 sprintf(dev->name, "OCP device %04x:%04x:%04x",
346 dev->def->vendor, dev->def->function, dev->def->index);
347 down_write(&ocp_devices_sem);
348 list_add_tail(&dev->link, &ocp_devices);
349 up_write(&ocp_devices_sem);
351 DBG(("ocp: ocp_add_one_device()...done\n"));
353 return 0;
357 * ocp_remove_one_device - Remove a device by function & index
358 * @vendor: vendor ID of the device (or OCP_ANY_ID)
359 * @function: function code of the device (or OCP_ANY_ID)
360 * @idx: index of the device (or OCP_ANY_INDEX)
362 * This function allows removal of a given function by its
363 * index. It may only be called before ocp_driver_init()
364 * and will return an error otherwise.
367 ocp_remove_one_device(unsigned int vendor, unsigned int function, int index)
369 struct ocp_device *dev;
371 DBG(("ocp: ocp_remove_one_device(vendor: %x, function: %x, index: %d)...\n", vendor, function, index));
373 /* Can't be called after ocp driver init */
374 if (ocp_inited)
375 return 1;
377 down_write(&ocp_devices_sem);
378 dev = __ocp_find_device(vendor, function, index);
379 list_del(&dev->link);
380 up_write(&ocp_devices_sem);
382 DBG(("ocp: ocp_remove_one_device(vendor: %x, function: %x, index: %d)... done.\n", vendor, function, index));
384 return 0;
388 * ocp_for_each_device - Iterate over OCP devices
389 * @callback: routine to execute for each ocp device.
390 * @arg: user data to be passed to callback routine.
392 * This routine holds the ocp_device semaphore, so the
393 * callback routine cannot modify the ocp_device list.
395 void
396 ocp_for_each_device(void(*callback)(struct ocp_device *, void *arg), void *arg)
398 struct list_head *entry;
400 if (callback) {
401 down_read(&ocp_devices_sem);
402 list_for_each(entry, &ocp_devices)
403 callback(list_entry(entry, struct ocp_device, link),
404 arg);
405 up_read(&ocp_devices_sem);
410 * ocp_early_init - Init OCP device management
412 * This function builds the list of devices before setup_arch.
413 * This allows platform code to modify the device lists before
414 * they are bound to drivers (changes to paddr, removing devices
415 * etc)
417 int __init
418 ocp_early_init(void)
420 struct ocp_def *def;
422 DBG(("ocp: ocp_early_init()...\n"));
424 /* Fill the devices list */
425 for (def = core_ocp; def->vendor != OCP_VENDOR_INVALID; def++)
426 ocp_add_one_device(def);
428 DBG(("ocp: ocp_early_init()... done.\n"));
430 return 0;
434 * ocp_driver_init - Init OCP device management
436 * This function is meant to be called via OCP bus registration.
438 static int __init
439 ocp_driver_init(void)
441 int ret = 0, index = 0;
442 struct device *ocp_bus;
443 struct list_head *entry;
444 struct ocp_device *dev;
446 if (ocp_inited)
447 return ret;
448 ocp_inited = 1;
450 DBG(("ocp: ocp_driver_init()...\n"));
452 /* Allocate/register primary OCP bus */
453 ocp_bus = kzalloc(sizeof(struct device), GFP_KERNEL);
454 if (ocp_bus == NULL)
455 return 1;
456 strcpy(ocp_bus->bus_id, "ocp");
458 bus_register(&ocp_bus_type);
460 device_register(ocp_bus);
462 /* Put each OCP device into global device list */
463 list_for_each(entry, &ocp_devices) {
464 dev = list_entry(entry, struct ocp_device, link);
465 sprintf(dev->dev.bus_id, "%2.2x", index);
466 dev->dev.parent = ocp_bus;
467 dev->dev.bus = &ocp_bus_type;
468 device_register(&dev->dev);
469 ocp_create_sysfs_dev_files(dev);
470 index++;
473 DBG(("ocp: ocp_driver_init()... done.\n"));
475 return 0;
478 postcore_initcall(ocp_driver_init);
480 EXPORT_SYMBOL(ocp_bus_type);
481 EXPORT_SYMBOL(ocp_find_device);
482 EXPORT_SYMBOL(ocp_register_driver);
483 EXPORT_SYMBOL(ocp_unregister_driver);