Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 1 | /* |
| 2 | * RTC subsystem, base class |
| 3 | * |
| 4 | * Copyright (C) 2005 Tower Technologies |
| 5 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
| 6 | * |
| 7 | * class skeleton from drivers/hwmon/hwmon.c |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/rtc.h> |
| 16 | #include <linux/kdev_t.h> |
| 17 | #include <linux/idr.h> |
| 18 | |
David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 19 | #include "rtc-core.h" |
| 20 | |
| 21 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 22 | static DEFINE_IDR(rtc_idr); |
| 23 | static DEFINE_MUTEX(idr_lock); |
| 24 | struct class *rtc_class; |
| 25 | |
David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame^] | 26 | static void rtc_device_release(struct device *dev) |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 27 | { |
David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame^] | 28 | struct rtc_device *rtc = to_rtc_device(dev); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 29 | mutex_lock(&idr_lock); |
| 30 | idr_remove(&rtc_idr, rtc->id); |
| 31 | mutex_unlock(&idr_lock); |
| 32 | kfree(rtc); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * rtc_device_register - register w/ RTC class |
| 37 | * @dev: the device to register |
| 38 | * |
| 39 | * rtc_device_unregister() must be called when the class device is no |
| 40 | * longer needed. |
| 41 | * |
| 42 | * Returns the pointer to the new struct class device. |
| 43 | */ |
| 44 | struct rtc_device *rtc_device_register(const char *name, struct device *dev, |
David Brownell | ff8371a | 2006-09-30 23:28:17 -0700 | [diff] [blame] | 45 | const struct rtc_class_ops *ops, |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 46 | struct module *owner) |
| 47 | { |
| 48 | struct rtc_device *rtc; |
| 49 | int id, err; |
| 50 | |
| 51 | if (idr_pre_get(&rtc_idr, GFP_KERNEL) == 0) { |
| 52 | err = -ENOMEM; |
| 53 | goto exit; |
| 54 | } |
| 55 | |
| 56 | |
| 57 | mutex_lock(&idr_lock); |
| 58 | err = idr_get_new(&rtc_idr, NULL, &id); |
| 59 | mutex_unlock(&idr_lock); |
| 60 | |
| 61 | if (err < 0) |
| 62 | goto exit; |
| 63 | |
| 64 | id = id & MAX_ID_MASK; |
| 65 | |
| 66 | rtc = kzalloc(sizeof(struct rtc_device), GFP_KERNEL); |
| 67 | if (rtc == NULL) { |
| 68 | err = -ENOMEM; |
| 69 | goto exit_idr; |
| 70 | } |
| 71 | |
| 72 | rtc->id = id; |
| 73 | rtc->ops = ops; |
| 74 | rtc->owner = owner; |
Alessandro Zummo | 110d693 | 2006-06-25 05:48:20 -0700 | [diff] [blame] | 75 | rtc->max_user_freq = 64; |
David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame^] | 76 | rtc->dev.parent = dev; |
| 77 | rtc->dev.class = rtc_class; |
| 78 | rtc->dev.release = rtc_device_release; |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 79 | |
| 80 | mutex_init(&rtc->ops_lock); |
| 81 | spin_lock_init(&rtc->irq_lock); |
| 82 | spin_lock_init(&rtc->irq_task_lock); |
| 83 | |
| 84 | strlcpy(rtc->name, name, RTC_DEVICE_NAME_SIZE); |
David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame^] | 85 | snprintf(rtc->dev.bus_id, BUS_ID_SIZE, "rtc%d", id); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 86 | |
David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame^] | 87 | err = device_register(&rtc->dev); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 88 | if (err) |
| 89 | goto exit_kfree; |
| 90 | |
David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 91 | rtc_dev_add_device(rtc); |
David Brownell | 446ecbd | 2007-05-08 00:33:33 -0700 | [diff] [blame] | 92 | rtc_sysfs_add_device(rtc); |
David Brownell | 7d9f99e | 2007-05-08 00:33:38 -0700 | [diff] [blame] | 93 | rtc_proc_add_device(rtc); |
David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 94 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 95 | dev_info(dev, "rtc core: registered %s as %s\n", |
David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame^] | 96 | rtc->name, rtc->dev.bus_id); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 97 | |
| 98 | return rtc; |
| 99 | |
| 100 | exit_kfree: |
| 101 | kfree(rtc); |
| 102 | |
| 103 | exit_idr: |
Sonny Rao | 6ac12df | 2006-06-27 02:54:06 -0700 | [diff] [blame] | 104 | mutex_lock(&idr_lock); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 105 | idr_remove(&rtc_idr, id); |
Sonny Rao | 6ac12df | 2006-06-27 02:54:06 -0700 | [diff] [blame] | 106 | mutex_unlock(&idr_lock); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 107 | |
| 108 | exit: |
Alessandro Zummo | d1d65b7 | 2006-04-10 22:54:45 -0700 | [diff] [blame] | 109 | dev_err(dev, "rtc core: unable to register %s, err = %d\n", |
| 110 | name, err); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 111 | return ERR_PTR(err); |
| 112 | } |
| 113 | EXPORT_SYMBOL_GPL(rtc_device_register); |
| 114 | |
| 115 | |
| 116 | /** |
| 117 | * rtc_device_unregister - removes the previously registered RTC class device |
| 118 | * |
| 119 | * @rtc: the RTC class device to destroy |
| 120 | */ |
| 121 | void rtc_device_unregister(struct rtc_device *rtc) |
| 122 | { |
David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame^] | 123 | if (get_device(&rtc->dev) != NULL) { |
David Brownell | e109ebd | 2007-02-28 20:12:40 -0800 | [diff] [blame] | 124 | mutex_lock(&rtc->ops_lock); |
| 125 | /* remove innards of this RTC, then disable it, before |
| 126 | * letting any rtc_class_open() users access it again |
| 127 | */ |
David Brownell | 446ecbd | 2007-05-08 00:33:33 -0700 | [diff] [blame] | 128 | rtc_sysfs_del_device(rtc); |
David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 129 | rtc_dev_del_device(rtc); |
David Brownell | 7d9f99e | 2007-05-08 00:33:38 -0700 | [diff] [blame] | 130 | rtc_proc_del_device(rtc); |
David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame^] | 131 | device_unregister(&rtc->dev); |
David Brownell | e109ebd | 2007-02-28 20:12:40 -0800 | [diff] [blame] | 132 | rtc->ops = NULL; |
| 133 | mutex_unlock(&rtc->ops_lock); |
David Brownell | cd96620 | 2007-05-08 00:33:40 -0700 | [diff] [blame^] | 134 | put_device(&rtc->dev); |
David Brownell | e109ebd | 2007-02-28 20:12:40 -0800 | [diff] [blame] | 135 | } |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 136 | } |
| 137 | EXPORT_SYMBOL_GPL(rtc_device_unregister); |
| 138 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 139 | static int __init rtc_init(void) |
| 140 | { |
| 141 | rtc_class = class_create(THIS_MODULE, "rtc"); |
| 142 | if (IS_ERR(rtc_class)) { |
| 143 | printk(KERN_ERR "%s: couldn't create class\n", __FILE__); |
| 144 | return PTR_ERR(rtc_class); |
| 145 | } |
David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 146 | rtc_dev_init(); |
David Brownell | 446ecbd | 2007-05-08 00:33:33 -0700 | [diff] [blame] | 147 | rtc_sysfs_init(rtc_class); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | static void __exit rtc_exit(void) |
| 152 | { |
David Brownell | 5726fb2 | 2007-05-08 00:33:27 -0700 | [diff] [blame] | 153 | rtc_dev_exit(); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 154 | class_destroy(rtc_class); |
| 155 | } |
| 156 | |
David Brownell | 818a867 | 2006-09-30 23:28:15 -0700 | [diff] [blame] | 157 | subsys_initcall(rtc_init); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 158 | module_exit(rtc_exit); |
| 159 | |
David Brownell | 818a867 | 2006-09-30 23:28:15 -0700 | [diff] [blame] | 160 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 161 | MODULE_DESCRIPTION("RTC class support"); |
| 162 | MODULE_LICENSE("GPL"); |