David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 1 | /* |
| 2 | * UWB Multi-interface Controller device management. |
| 3 | * |
| 4 | * Copyright (C) 2007 Cambridge Silicon Radio Ltd. |
| 5 | * |
| 6 | * This file is released under the GNU GPL v2. |
| 7 | */ |
| 8 | #include <linux/kernel.h> |
Paul Gortmaker | 475c0a6 | 2011-07-10 13:18:02 -0400 | [diff] [blame] | 9 | #include <linux/export.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 10 | #include <linux/slab.h> |
David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 11 | #include <linux/uwb/umc.h> |
David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 12 | |
| 13 | static void umc_device_release(struct device *dev) |
| 14 | { |
| 15 | struct umc_dev *umc = to_umc_dev(dev); |
| 16 | |
| 17 | kfree(umc); |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * umc_device_create - allocate a child UMC device |
| 22 | * @parent: parent of the new UMC device. |
| 23 | * @n: index of the new device. |
| 24 | * |
| 25 | * The new UMC device will have a bus ID of the parent with '-n' |
| 26 | * appended. |
| 27 | */ |
| 28 | struct umc_dev *umc_device_create(struct device *parent, int n) |
| 29 | { |
| 30 | struct umc_dev *umc; |
| 31 | |
| 32 | umc = kzalloc(sizeof(struct umc_dev), GFP_KERNEL); |
| 33 | if (umc) { |
Kay Sievers | ae9eba0 | 2008-10-30 20:06:16 +0100 | [diff] [blame] | 34 | dev_set_name(&umc->dev, "%s-%d", dev_name(parent), n); |
David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 35 | umc->dev.parent = parent; |
| 36 | umc->dev.bus = &umc_bus_type; |
| 37 | umc->dev.release = umc_device_release; |
| 38 | |
| 39 | umc->dev.dma_mask = parent->dma_mask; |
| 40 | } |
| 41 | return umc; |
| 42 | } |
| 43 | EXPORT_SYMBOL_GPL(umc_device_create); |
| 44 | |
| 45 | /** |
| 46 | * umc_device_register - register a UMC device |
| 47 | * @umc: pointer to the UMC device |
| 48 | * |
| 49 | * The memory resource for the UMC device is acquired and the device |
| 50 | * registered with the system. |
| 51 | */ |
| 52 | int umc_device_register(struct umc_dev *umc) |
| 53 | { |
| 54 | int err; |
| 55 | |
David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 56 | err = request_resource(umc->resource.parent, &umc->resource); |
| 57 | if (err < 0) { |
Joe Perches | 7189ba9 | 2010-11-12 13:38:02 -0800 | [diff] [blame] | 58 | dev_err(&umc->dev, "can't allocate resource range %pR: %d\n", |
| 59 | &umc->resource, err); |
David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 60 | goto error_request_resource; |
| 61 | } |
| 62 | |
| 63 | err = device_register(&umc->dev); |
| 64 | if (err < 0) |
| 65 | goto error_device_register; |
David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 66 | return 0; |
| 67 | |
| 68 | error_device_register: |
| 69 | release_resource(&umc->resource); |
| 70 | error_request_resource: |
David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 71 | return err; |
| 72 | } |
| 73 | EXPORT_SYMBOL_GPL(umc_device_register); |
| 74 | |
| 75 | /** |
| 76 | * umc_device_unregister - unregister a UMC device |
| 77 | * @umc: pointer to the UMC device |
| 78 | * |
| 79 | * First we unregister the device, make sure the driver can do it's |
| 80 | * resource release thing and then we try to release any left over |
| 81 | * resources. We take a ref to the device, to make sure it doesn't |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 82 | * disappear under our feet. |
David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 83 | */ |
| 84 | void umc_device_unregister(struct umc_dev *umc) |
| 85 | { |
| 86 | struct device *dev; |
| 87 | if (!umc) |
| 88 | return; |
| 89 | dev = get_device(&umc->dev); |
David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 90 | device_unregister(&umc->dev); |
| 91 | release_resource(&umc->resource); |
David Vrabel | da389ea | 2008-09-17 16:34:12 +0100 | [diff] [blame] | 92 | put_device(dev); |
| 93 | } |
| 94 | EXPORT_SYMBOL_GPL(umc_device_unregister); |