123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- #include <linux/kernel.h>
- #include <linux/device.h>
- #include <linux/init.h>
- #include <linux/module.h>
- #include <linux/types.h>
- #include <linux/list.h>
- #include <linux/superhyway.h>
- #include <linux/string.h>
- #include <linux/slab.h>
- static int superhyway_devices;
- static struct device superhyway_bus_device = {
- .init_name = "superhyway",
- };
- static void superhyway_device_release(struct device *dev)
- {
- struct superhyway_device *sdev = to_superhyway_device(dev);
- kfree(sdev->resource);
- kfree(sdev);
- }
- int superhyway_add_device(unsigned long base, struct superhyway_device *sdev,
- struct superhyway_bus *bus)
- {
- struct superhyway_device *dev = sdev;
- if (!dev) {
- dev = kzalloc(sizeof(struct superhyway_device), GFP_KERNEL);
- if (!dev)
- return -ENOMEM;
- }
- dev->bus = bus;
- superhyway_read_vcr(dev, base, &dev->vcr);
- if (!dev->resource) {
- dev->resource = kmalloc(sizeof(struct resource), GFP_KERNEL);
- if (!dev->resource) {
- kfree(dev);
- return -ENOMEM;
- }
- dev->resource->name = dev->name;
- dev->resource->start = base;
- dev->resource->end = dev->resource->start + 0x01000000;
- }
- dev->dev.parent = &superhyway_bus_device;
- dev->dev.bus = &superhyway_bus_type;
- dev->dev.release = superhyway_device_release;
- dev->id.id = dev->vcr.mod_id;
- sprintf(dev->name, "SuperHyway device %04x", dev->id.id);
- dev_set_name(&dev->dev, "%02x", superhyway_devices);
- superhyway_devices++;
- return device_register(&dev->dev);
- }
- int superhyway_add_devices(struct superhyway_bus *bus,
- struct superhyway_device **devices,
- int nr_devices)
- {
- int i, ret = 0;
- for (i = 0; i < nr_devices; i++) {
- struct superhyway_device *dev = devices[i];
- ret |= superhyway_add_device(dev->resource[0].start, dev, bus);
- }
- return ret;
- }
- static int __init superhyway_init(void)
- {
- struct superhyway_bus *bus;
- int ret;
- ret = device_register(&superhyway_bus_device);
- if (unlikely(ret))
- return ret;
- for (bus = superhyway_channels; bus->ops; bus++)
- ret |= superhyway_scan_bus(bus);
- return ret;
- }
- postcore_initcall(superhyway_init);
- static const struct superhyway_device_id *
- superhyway_match_id(const struct superhyway_device_id *ids,
- struct superhyway_device *dev)
- {
- while (ids->id) {
- if (ids->id == dev->id.id)
- return ids;
- ids++;
- }
- return NULL;
- }
- static int superhyway_device_probe(struct device *dev)
- {
- struct superhyway_device *shyway_dev = to_superhyway_device(dev);
- struct superhyway_driver *shyway_drv = to_superhyway_driver(dev->driver);
- if (shyway_drv && shyway_drv->probe) {
- const struct superhyway_device_id *id;
- id = superhyway_match_id(shyway_drv->id_table, shyway_dev);
- if (id)
- return shyway_drv->probe(shyway_dev, id);
- }
- return -ENODEV;
- }
- static int superhyway_device_remove(struct device *dev)
- {
- struct superhyway_device *shyway_dev = to_superhyway_device(dev);
- struct superhyway_driver *shyway_drv = to_superhyway_driver(dev->driver);
- if (shyway_drv && shyway_drv->remove) {
- shyway_drv->remove(shyway_dev);
- return 0;
- }
- return -ENODEV;
- }
- int superhyway_register_driver(struct superhyway_driver *drv)
- {
- drv->drv.name = drv->name;
- drv->drv.bus = &superhyway_bus_type;
- return driver_register(&drv->drv);
- }
- void superhyway_unregister_driver(struct superhyway_driver *drv)
- {
- driver_unregister(&drv->drv);
- }
- static int superhyway_bus_match(struct device *dev, struct device_driver *drv)
- {
- struct superhyway_device *shyway_dev = to_superhyway_device(dev);
- struct superhyway_driver *shyway_drv = to_superhyway_driver(drv);
- const struct superhyway_device_id *ids = shyway_drv->id_table;
- if (!ids)
- return -EINVAL;
- if (superhyway_match_id(ids, shyway_dev))
- return 1;
- return -ENODEV;
- }
- struct bus_type superhyway_bus_type = {
- .name = "superhyway",
- .match = superhyway_bus_match,
- #ifdef CONFIG_SYSFS
- .dev_attrs = superhyway_dev_attrs,
- #endif
- .probe = superhyway_device_probe,
- .remove = superhyway_device_remove,
- };
- static int __init superhyway_bus_init(void)
- {
- return bus_register(&superhyway_bus_type);
- }
- static void __exit superhyway_bus_exit(void)
- {
- device_unregister(&superhyway_bus_device);
- bus_unregister(&superhyway_bus_type);
- }
- core_initcall(superhyway_bus_init);
- module_exit(superhyway_bus_exit);
- EXPORT_SYMBOL(superhyway_bus_type);
- EXPORT_SYMBOL(superhyway_add_device);
- EXPORT_SYMBOL(superhyway_add_devices);
- EXPORT_SYMBOL(superhyway_register_driver);
- EXPORT_SYMBOL(superhyway_unregister_driver);
- MODULE_LICENSE("GPL");
|