diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-09-21 06:51:27 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-09-21 06:51:42 -0400 |
commit | ae82bfd61ca7e57cc2d914add9ab0873e260f2f5 (patch) | |
tree | a7f862ad8b0ae4f2e8953e6aa613eb702b484ecf /drivers | |
parent | cd74c86bdf705f824d494a2bbda393d1d562b40a (diff) | |
parent | ebc79c4f8da0f92efa968e0328f32334a2ce80cf (diff) |
Merge branch 'linus' into perfcounters/rename
Merge reason: pull in all the latest code before doing the rename.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers')
214 files changed, 16054 insertions, 4776 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c index 390e664ec1c7..6bee6af8d8e1 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c | |||
@@ -166,13 +166,16 @@ static int dev_uevent(struct kset *kset, struct kobject *kobj, | |||
166 | if (MAJOR(dev->devt)) { | 166 | if (MAJOR(dev->devt)) { |
167 | const char *tmp; | 167 | const char *tmp; |
168 | const char *name; | 168 | const char *name; |
169 | mode_t mode = 0; | ||
169 | 170 | ||
170 | add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt)); | 171 | add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt)); |
171 | add_uevent_var(env, "MINOR=%u", MINOR(dev->devt)); | 172 | add_uevent_var(env, "MINOR=%u", MINOR(dev->devt)); |
172 | name = device_get_nodename(dev, &tmp); | 173 | name = device_get_devnode(dev, &mode, &tmp); |
173 | if (name) { | 174 | if (name) { |
174 | add_uevent_var(env, "DEVNAME=%s", name); | 175 | add_uevent_var(env, "DEVNAME=%s", name); |
175 | kfree(tmp); | 176 | kfree(tmp); |
177 | if (mode) | ||
178 | add_uevent_var(env, "DEVMODE=%#o", mode & 0777); | ||
176 | } | 179 | } |
177 | } | 180 | } |
178 | 181 | ||
@@ -1148,8 +1151,9 @@ static struct device *next_device(struct klist_iter *i) | |||
1148 | } | 1151 | } |
1149 | 1152 | ||
1150 | /** | 1153 | /** |
1151 | * device_get_nodename - path of device node file | 1154 | * device_get_devnode - path of device node file |
1152 | * @dev: device | 1155 | * @dev: device |
1156 | * @mode: returned file access mode | ||
1153 | * @tmp: possibly allocated string | 1157 | * @tmp: possibly allocated string |
1154 | * | 1158 | * |
1155 | * Return the relative path of a possible device node. | 1159 | * Return the relative path of a possible device node. |
@@ -1157,21 +1161,22 @@ static struct device *next_device(struct klist_iter *i) | |||
1157 | * a name. This memory is returned in tmp and needs to be | 1161 | * a name. This memory is returned in tmp and needs to be |
1158 | * freed by the caller. | 1162 | * freed by the caller. |
1159 | */ | 1163 | */ |
1160 | const char *device_get_nodename(struct device *dev, const char **tmp) | 1164 | const char *device_get_devnode(struct device *dev, |
1165 | mode_t *mode, const char **tmp) | ||
1161 | { | 1166 | { |
1162 | char *s; | 1167 | char *s; |
1163 | 1168 | ||
1164 | *tmp = NULL; | 1169 | *tmp = NULL; |
1165 | 1170 | ||
1166 | /* the device type may provide a specific name */ | 1171 | /* the device type may provide a specific name */ |
1167 | if (dev->type && dev->type->nodename) | 1172 | if (dev->type && dev->type->devnode) |
1168 | *tmp = dev->type->nodename(dev); | 1173 | *tmp = dev->type->devnode(dev, mode); |
1169 | if (*tmp) | 1174 | if (*tmp) |
1170 | return *tmp; | 1175 | return *tmp; |
1171 | 1176 | ||
1172 | /* the class may provide a specific name */ | 1177 | /* the class may provide a specific name */ |
1173 | if (dev->class && dev->class->nodename) | 1178 | if (dev->class && dev->class->devnode) |
1174 | *tmp = dev->class->nodename(dev); | 1179 | *tmp = dev->class->devnode(dev, mode); |
1175 | if (*tmp) | 1180 | if (*tmp) |
1176 | return *tmp; | 1181 | return *tmp; |
1177 | 1182 | ||
diff --git a/drivers/base/devtmpfs.c b/drivers/base/devtmpfs.c index fd488ad4263a..a1cb5afe6801 100644 --- a/drivers/base/devtmpfs.c +++ b/drivers/base/devtmpfs.c | |||
@@ -6,9 +6,10 @@ | |||
6 | * During bootup, before any driver core device is registered, | 6 | * During bootup, before any driver core device is registered, |
7 | * devtmpfs, a tmpfs-based filesystem is created. Every driver-core | 7 | * devtmpfs, a tmpfs-based filesystem is created. Every driver-core |
8 | * device which requests a device node, will add a node in this | 8 | * device which requests a device node, will add a node in this |
9 | * filesystem. The node is named after the the name of the device, | 9 | * filesystem. |
10 | * or the susbsytem can provide a custom name. All devices are | 10 | * By default, all devices are named after the the name of the |
11 | * owned by root and have a mode of 0600. | 11 | * device, owned by root and have a default mode of 0600. Subsystems |
12 | * can overwrite the default setting if needed. | ||
12 | */ | 13 | */ |
13 | 14 | ||
14 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
@@ -20,6 +21,7 @@ | |||
20 | #include <linux/fs.h> | 21 | #include <linux/fs.h> |
21 | #include <linux/shmem_fs.h> | 22 | #include <linux/shmem_fs.h> |
22 | #include <linux/cred.h> | 23 | #include <linux/cred.h> |
24 | #include <linux/sched.h> | ||
23 | #include <linux/init_task.h> | 25 | #include <linux/init_task.h> |
24 | 26 | ||
25 | static struct vfsmount *dev_mnt; | 27 | static struct vfsmount *dev_mnt; |
@@ -134,7 +136,7 @@ int devtmpfs_create_node(struct device *dev) | |||
134 | const char *tmp = NULL; | 136 | const char *tmp = NULL; |
135 | const char *nodename; | 137 | const char *nodename; |
136 | const struct cred *curr_cred; | 138 | const struct cred *curr_cred; |
137 | mode_t mode; | 139 | mode_t mode = 0; |
138 | struct nameidata nd; | 140 | struct nameidata nd; |
139 | struct dentry *dentry; | 141 | struct dentry *dentry; |
140 | int err; | 142 | int err; |
@@ -142,14 +144,16 @@ int devtmpfs_create_node(struct device *dev) | |||
142 | if (!dev_mnt) | 144 | if (!dev_mnt) |
143 | return 0; | 145 | return 0; |
144 | 146 | ||
145 | nodename = device_get_nodename(dev, &tmp); | 147 | nodename = device_get_devnode(dev, &mode, &tmp); |
146 | if (!nodename) | 148 | if (!nodename) |
147 | return -ENOMEM; | 149 | return -ENOMEM; |
148 | 150 | ||
151 | if (mode == 0) | ||
152 | mode = 0600; | ||
149 | if (is_blockdev(dev)) | 153 | if (is_blockdev(dev)) |
150 | mode = S_IFBLK|0600; | 154 | mode |= S_IFBLK; |
151 | else | 155 | else |
152 | mode = S_IFCHR|0600; | 156 | mode |= S_IFCHR; |
153 | 157 | ||
154 | curr_cred = override_creds(&init_cred); | 158 | curr_cred = override_creds(&init_cred); |
155 | err = vfs_path_lookup(dev_mnt->mnt_root, dev_mnt, | 159 | err = vfs_path_lookup(dev_mnt->mnt_root, dev_mnt, |
@@ -165,8 +169,12 @@ int devtmpfs_create_node(struct device *dev) | |||
165 | 169 | ||
166 | dentry = lookup_create(&nd, 0); | 170 | dentry = lookup_create(&nd, 0); |
167 | if (!IS_ERR(dentry)) { | 171 | if (!IS_ERR(dentry)) { |
172 | int umask; | ||
173 | |||
174 | umask = sys_umask(0000); | ||
168 | err = vfs_mknod(nd.path.dentry->d_inode, | 175 | err = vfs_mknod(nd.path.dentry->d_inode, |
169 | dentry, mode, dev->devt); | 176 | dentry, mode, dev->devt); |
177 | sys_umask(umask); | ||
170 | /* mark as kernel created inode */ | 178 | /* mark as kernel created inode */ |
171 | if (!err) | 179 | if (!err) |
172 | dentry->d_inode->i_private = &dev_mnt; | 180 | dentry->d_inode->i_private = &dev_mnt; |
@@ -271,7 +279,7 @@ int devtmpfs_delete_node(struct device *dev) | |||
271 | if (!dev_mnt) | 279 | if (!dev_mnt) |
272 | return 0; | 280 | return 0; |
273 | 281 | ||
274 | nodename = device_get_nodename(dev, &tmp); | 282 | nodename = device_get_devnode(dev, NULL, &tmp); |
275 | if (!nodename) | 283 | if (!nodename) |
276 | return -ENOMEM; | 284 | return -ENOMEM; |
277 | 285 | ||
diff --git a/drivers/block/aoe/aoechr.c b/drivers/block/aoe/aoechr.c index 19888354188f..62141ec09a22 100644 --- a/drivers/block/aoe/aoechr.c +++ b/drivers/block/aoe/aoechr.c | |||
@@ -266,7 +266,7 @@ static const struct file_operations aoe_fops = { | |||
266 | .owner = THIS_MODULE, | 266 | .owner = THIS_MODULE, |
267 | }; | 267 | }; |
268 | 268 | ||
269 | static char *aoe_nodename(struct device *dev) | 269 | static char *aoe_devnode(struct device *dev, mode_t *mode) |
270 | { | 270 | { |
271 | return kasprintf(GFP_KERNEL, "etherd/%s", dev_name(dev)); | 271 | return kasprintf(GFP_KERNEL, "etherd/%s", dev_name(dev)); |
272 | } | 272 | } |
@@ -288,7 +288,7 @@ aoechr_init(void) | |||
288 | unregister_chrdev(AOE_MAJOR, "aoechr"); | 288 | unregister_chrdev(AOE_MAJOR, "aoechr"); |
289 | return PTR_ERR(aoe_class); | 289 | return PTR_ERR(aoe_class); |
290 | } | 290 | } |
291 | aoe_class->nodename = aoe_nodename; | 291 | aoe_class->devnode = aoe_devnode; |
292 | 292 | ||
293 | for (i = 0; i < ARRAY_SIZE(chardevs); ++i) | 293 | for (i = 0; i < ARRAY_SIZE(chardevs); ++i) |
294 | device_create(aoe_class, NULL, | 294 | device_create(aoe_class, NULL, |
diff --git a/drivers/block/pktcdvd.c b/drivers/block/pktcdvd.c index 95f11cdef203..fd5bb8ad59a9 100644 --- a/drivers/block/pktcdvd.c +++ b/drivers/block/pktcdvd.c | |||
@@ -2857,7 +2857,7 @@ static struct block_device_operations pktcdvd_ops = { | |||
2857 | .media_changed = pkt_media_changed, | 2857 | .media_changed = pkt_media_changed, |
2858 | }; | 2858 | }; |
2859 | 2859 | ||
2860 | static char *pktcdvd_nodename(struct gendisk *gd) | 2860 | static char *pktcdvd_devnode(struct gendisk *gd, mode_t *mode) |
2861 | { | 2861 | { |
2862 | return kasprintf(GFP_KERNEL, "pktcdvd/%s", gd->disk_name); | 2862 | return kasprintf(GFP_KERNEL, "pktcdvd/%s", gd->disk_name); |
2863 | } | 2863 | } |
@@ -2914,7 +2914,7 @@ static int pkt_setup_dev(dev_t dev, dev_t* pkt_dev) | |||
2914 | disk->fops = &pktcdvd_ops; | 2914 | disk->fops = &pktcdvd_ops; |
2915 | disk->flags = GENHD_FL_REMOVABLE; | 2915 | disk->flags = GENHD_FL_REMOVABLE; |
2916 | strcpy(disk->disk_name, pd->name); | 2916 | strcpy(disk->disk_name, pd->name); |
2917 | disk->nodename = pktcdvd_nodename; | 2917 | disk->devnode = pktcdvd_devnode; |
2918 | disk->private_data = pd; | 2918 | disk->private_data = pd; |
2919 | disk->queue = blk_alloc_queue(GFP_KERNEL); | 2919 | disk->queue = blk_alloc_queue(GFP_KERNEL); |
2920 | if (!disk->queue) | 2920 | if (!disk->queue) |
@@ -3070,7 +3070,7 @@ static const struct file_operations pkt_ctl_fops = { | |||
3070 | static struct miscdevice pkt_misc = { | 3070 | static struct miscdevice pkt_misc = { |
3071 | .minor = MISC_DYNAMIC_MINOR, | 3071 | .minor = MISC_DYNAMIC_MINOR, |
3072 | .name = DRIVER_NAME, | 3072 | .name = DRIVER_NAME, |
3073 | .name = "pktcdvd/control", | 3073 | .nodename = "pktcdvd/control", |
3074 | .fops = &pkt_ctl_fops | 3074 | .fops = &pkt_ctl_fops |
3075 | }; | 3075 | }; |
3076 | 3076 | ||
diff --git a/drivers/char/cyclades.c b/drivers/char/cyclades.c index 2dafc2da0648..df5038bbcbc2 100644 --- a/drivers/char/cyclades.c +++ b/drivers/char/cyclades.c | |||
@@ -11,7 +11,7 @@ | |||
11 | * Initially written by Randolph Bentson <bentson@grieg.seaslug.org>. | 11 | * Initially written by Randolph Bentson <bentson@grieg.seaslug.org>. |
12 | * Modified and maintained by Marcio Saito <marcio@cyclades.com>. | 12 | * Modified and maintained by Marcio Saito <marcio@cyclades.com>. |
13 | * | 13 | * |
14 | * Copyright (C) 2007 Jiri Slaby <jirislaby@gmail.com> | 14 | * Copyright (C) 2007-2009 Jiri Slaby <jirislaby@gmail.com> |
15 | * | 15 | * |
16 | * Much of the design and some of the code came from serial.c | 16 | * Much of the design and some of the code came from serial.c |
17 | * which was copyright (C) 1991, 1992 Linus Torvalds. It was | 17 | * which was copyright (C) 1991, 1992 Linus Torvalds. It was |
@@ -19,577 +19,9 @@ | |||
19 | * and then fixed as suggested by Michael K. Johnson 12/12/92. | 19 | * and then fixed as suggested by Michael K. Johnson 12/12/92. |
20 | * Converted to pci probing and cleaned up by Jiri Slaby. | 20 | * Converted to pci probing and cleaned up by Jiri Slaby. |
21 | * | 21 | * |
22 | * This version supports shared IRQ's (only for PCI boards). | ||
23 | * | ||
24 | * Prevent users from opening non-existing Z ports. | ||
25 | * | ||
26 | * Revision 2.3.2.8 2000/07/06 18:14:16 ivan | ||
27 | * Fixed the PCI detection function to work properly on Alpha systems. | ||
28 | * Implemented support for TIOCSERGETLSR ioctl. | ||
29 | * Implemented full support for non-standard baud rates. | ||
30 | * | ||
31 | * Revision 2.3.2.7 2000/06/01 18:26:34 ivan | ||
32 | * Request PLX I/O region, although driver doesn't use it, to avoid | ||
33 | * problems with other drivers accessing it. | ||
34 | * Removed count for on-board buffer characters in cy_chars_in_buffer | ||
35 | * (Cyclades-Z only). | ||
36 | * | ||
37 | * Revision 2.3.2.6 2000/05/05 13:56:05 ivan | ||
38 | * Driver now reports physical instead of virtual memory addresses. | ||
39 | * Masks were added to some Cyclades-Z read accesses. | ||
40 | * Implemented workaround for PLX9050 bug that would cause a system lockup | ||
41 | * in certain systems, depending on the MMIO addresses allocated to the | ||
42 | * board. | ||
43 | * Changed the Tx interrupt programming in the CD1400 chips to boost up | ||
44 | * performance (Cyclom-Y only). | ||
45 | * Code is now compliant with the new module interface (module_[init|exit]). | ||
46 | * Make use of the PCI helper functions to access PCI resources. | ||
47 | * Did some code "housekeeping". | ||
48 | * | ||
49 | * Revision 2.3.2.5 2000/01/19 14:35:33 ivan | ||
50 | * Fixed bug in cy_set_termios on CRTSCTS flag turnoff. | ||
51 | * | ||
52 | * Revision 2.3.2.4 2000/01/17 09:19:40 ivan | ||
53 | * Fixed SMP locking in Cyclom-Y interrupt handler. | ||
54 | * | ||
55 | * Revision 2.3.2.3 1999/12/28 12:11:39 ivan | ||
56 | * Added a new cyclades_card field called nports to allow the driver to | ||
57 | * know the exact number of ports found by the Z firmware after its load; | ||
58 | * RX buffer contention prevention logic on interrupt op mode revisited | ||
59 | * (Cyclades-Z only); | ||
60 | * Revisited printk's for Z debug; | ||
61 | * Driver now makes sure that the constant SERIAL_XMIT_SIZE is defined; | ||
62 | * | ||
63 | * Revision 2.3.2.2 1999/10/01 11:27:43 ivan | ||
64 | * Fixed bug in cyz_poll that would make all ports but port 0 | ||
65 | * unable to transmit/receive data (Cyclades-Z only); | ||
66 | * Implemented logic to prevent the RX buffer from being stuck with data | ||
67 | * due to a driver / firmware race condition in interrupt op mode | ||
68 | * (Cyclades-Z only); | ||
69 | * Fixed bug in block_til_ready logic that would lead to a system crash; | ||
70 | * Revisited cy_close spinlock usage; | ||
71 | * | ||
72 | * Revision 2.3.2.1 1999/09/28 11:01:22 ivan | ||
73 | * Revisited CONFIG_PCI conditional compilation for PCI board support; | ||
74 | * Implemented TIOCGICOUNT and TIOCMIWAIT ioctl support; | ||
75 | * _Major_ cleanup on the Cyclades-Z interrupt support code / logic; | ||
76 | * Removed CTS handling from the driver -- this is now completely handled | ||
77 | * by the firmware (Cyclades-Z only); | ||
78 | * Flush RX on-board buffers on a port open (Cyclades-Z only); | ||
79 | * Fixed handling of ASYNC_SPD_* TTY flags; | ||
80 | * Module unload now unmaps all memory area allocated by ioremap; | ||
81 | * | ||
82 | * Revision 2.3.1.1 1999/07/15 16:45:53 ivan | ||
83 | * Removed CY_PROC conditional compilation; | ||
84 | * Implemented SMP-awareness for the driver; | ||
85 | * Implemented a new ISA IRQ autoprobe that uses the irq_probe_[on|off] | ||
86 | * functions; | ||
87 | * The driver now accepts memory addresses (maddr=0xMMMMM) and IRQs | ||
88 | * (irq=NN) as parameters (only for ISA boards); | ||
89 | * Fixed bug in set_line_char that would prevent the Cyclades-Z | ||
90 | * ports from being configured at speeds above 115.2Kbps; | ||
91 | * Fixed bug in cy_set_termios that would prevent XON/XOFF flow control | ||
92 | * switching from working properly; | ||
93 | * The driver now only prints IRQ info for the Cyclades-Z if it's | ||
94 | * configured to work in interrupt mode; | ||
95 | * | ||
96 | * Revision 2.2.2.3 1999/06/28 11:13:29 ivan | ||
97 | * Added support for interrupt mode operation for the Z cards; | ||
98 | * Removed the driver inactivity control for the Z; | ||
99 | * Added a missing MOD_DEC_USE_COUNT in the cy_open function for when | ||
100 | * the Z firmware is not loaded yet; | ||
101 | * Replaced the "manual" Z Tx flush buffer by a call to a FW command of | ||
102 | * same functionality; | ||
103 | * Implemented workaround for IRQ setting loss on the PCI configuration | ||
104 | * registers after a PCI bridge EEPROM reload (affects PLX9060 only); | ||
105 | * | ||
106 | * Revision 2.2.2.2 1999/05/14 17:18:15 ivan | ||
107 | * /proc entry location changed to /proc/tty/driver/cyclades; | ||
108 | * Added support to shared IRQ's (only for PCI boards); | ||
109 | * Added support for Cobalt Qube2 systems; | ||
110 | * IRQ [de]allocation scheme revisited; | ||
111 | * BREAK implementation changed in order to make use of the 'break_ctl' | ||
112 | * TTY facility; | ||
113 | * Fixed typo in TTY structure field 'driver_name'; | ||
114 | * Included a PCI bridge reset and EEPROM reload in the board | ||
115 | * initialization code (for both Y and Z series). | ||
116 | * | ||
117 | * Revision 2.2.2.1 1999/04/08 16:17:43 ivan | ||
118 | * Fixed a bug in cy_wait_until_sent that was preventing the port to be | ||
119 | * closed properly after a SIGINT; | ||
120 | * Module usage counter scheme revisited; | ||
121 | * Added support to the upcoming Y PCI boards (i.e., support to additional | ||
122 | * PCI Device ID's). | ||
123 | * | ||
124 | * Revision 2.2.1.10 1999/01/20 16:14:29 ivan | ||
125 | * Removed all unnecessary page-alignement operations in ioremap calls | ||
126 | * (ioremap is currently safe for these operations). | ||
127 | * | ||
128 | * Revision 2.2.1.9 1998/12/30 18:18:30 ivan | ||
129 | * Changed access to PLX PCI bridge registers from I/O to MMIO, in | ||
130 | * order to make PLX9050-based boards work with certain motherboards. | ||
131 | * | ||
132 | * Revision 2.2.1.8 1998/11/13 12:46:20 ivan | ||
133 | * cy_close function now resets (correctly) the tty->closing flag; | ||
134 | * JIFFIES_DIFF macro fixed. | ||
135 | * | ||
136 | * Revision 2.2.1.7 1998/09/03 12:07:28 ivan | ||
137 | * Fixed bug in cy_close function, which was not informing HW of | ||
138 | * which port should have the reception disabled before doing so; | ||
139 | * fixed Cyclom-8YoP hardware detection bug. | ||
140 | * | ||
141 | * Revision 2.2.1.6 1998/08/20 17:15:39 ivan | ||
142 | * Fixed bug in cy_close function, which causes malfunction | ||
143 | * of one of the first 4 ports when a higher port is closed | ||
144 | * (Cyclom-Y only). | ||
145 | * | ||
146 | * Revision 2.2.1.5 1998/08/10 18:10:28 ivan | ||
147 | * Fixed Cyclom-4Yo hardware detection bug. | ||
148 | * | ||
149 | * Revision 2.2.1.4 1998/08/04 11:02:50 ivan | ||
150 | * /proc/cyclades implementation with great collaboration of | ||
151 | * Marc Lewis <marc@blarg.net>; | ||
152 | * cyy_interrupt was changed to avoid occurrence of kernel oopses | ||
153 | * during PPP operation. | ||
154 | * | ||
155 | * Revision 2.2.1.3 1998/06/01 12:09:10 ivan | ||
156 | * General code review in order to comply with 2.1 kernel standards; | ||
157 | * data loss prevention for slow devices revisited (cy_wait_until_sent | ||
158 | * was created); | ||
159 | * removed conditional compilation for new/old PCI structure support | ||
160 | * (now the driver only supports the new PCI structure). | ||
161 | * | ||
162 | * Revision 2.2.1.1 1998/03/19 16:43:12 ivan | ||
163 | * added conditional compilation for new/old PCI structure support; | ||
164 | * removed kernel series (2.0.x / 2.1.x) conditional compilation. | ||
165 | * | ||
166 | * Revision 2.1.1.3 1998/03/16 18:01:12 ivan | ||
167 | * cleaned up the data loss fix; | ||
168 | * fixed XON/XOFF handling once more (Cyclades-Z); | ||
169 | * general review of the driver routines; | ||
170 | * introduction of a mechanism to prevent data loss with slow | ||
171 | * printers, by forcing a delay before closing the port. | ||
172 | * | ||
173 | * Revision 2.1.1.2 1998/02/17 16:50:00 ivan | ||
174 | * fixed detection/handling of new CD1400 in Ye boards; | ||
175 | * fixed XON/XOFF handling (Cyclades-Z); | ||
176 | * fixed data loss caused by a premature port close; | ||
177 | * introduction of a flag that holds the CD1400 version ID per port | ||
178 | * (used by the CYGETCD1400VER new ioctl). | ||
179 | * | ||
180 | * Revision 2.1.1.1 1997/12/03 17:31:19 ivan | ||
181 | * Code review for the module cleanup routine; | ||
182 | * fixed RTS and DTR status report for new CD1400's in get_modem_info; | ||
183 | * includes anonymous changes regarding signal_pending. | ||
184 | * | ||
185 | * Revision 2.1 1997/11/01 17:42:41 ivan | ||
186 | * Changes in the driver to support Alpha systems (except 8Zo V_1); | ||
187 | * BREAK fix for the Cyclades-Z boards; | ||
188 | * driver inactivity control by FW implemented; | ||
189 | * introduction of flag that allows driver to take advantage of | ||
190 | * a special CD1400 feature related to HW flow control; | ||
191 | * added support for the CD1400 rev. J (Cyclom-Y boards); | ||
192 | * introduction of ioctls to: | ||
193 | * - control the rtsdtr_inv flag (Cyclom-Y); | ||
194 | * - control the rflow flag (Cyclom-Y); | ||
195 | * - adjust the polling interval (Cyclades-Z); | ||
196 | * | ||
197 | * Revision 1.36.4.33 1997/06/27 19:00:00 ivan | ||
198 | * Fixes related to kernel version conditional | ||
199 | * compilation. | ||
200 | * | ||
201 | * Revision 1.36.4.32 1997/06/14 19:30:00 ivan | ||
202 | * Compatibility issues between kernels 2.0.x and | ||
203 | * 2.1.x (mainly related to clear_bit function). | ||
204 | * | ||
205 | * Revision 1.36.4.31 1997/06/03 15:30:00 ivan | ||
206 | * Changes to define the memory window according to the | ||
207 | * board type. | ||
208 | * | ||
209 | * Revision 1.36.4.30 1997/05/16 15:30:00 daniel | ||
210 | * Changes to support new cycladesZ boards. | ||
211 | * | ||
212 | * Revision 1.36.4.29 1997/05/12 11:30:00 daniel | ||
213 | * Merge of Bentson's and Daniel's version 1.36.4.28. | ||
214 | * Corrects bug in cy_detect_pci: check if there are more | ||
215 | * ports than the number of static structs allocated. | ||
216 | * Warning message during initialization if this driver is | ||
217 | * used with the new generation of cycladesZ boards. Those | ||
218 | * will be supported only in next release of the driver. | ||
219 | * Corrects bug in cy_detect_pci and cy_detect_isa that | ||
220 | * returned wrong number of VALID boards, when a cyclomY | ||
221 | * was found with no serial modules connected. | ||
222 | * Changes to use current (2.1.x) kernel subroutine names | ||
223 | * and created macros for compilation with 2.0.x kernel, | ||
224 | * instead of the other way around. | ||
225 | * | ||
226 | * Revision 1.36.4.28 1997/05/?? ??:00:00 bentson | ||
227 | * Change queue_task_irq_off to queue_task_irq. | ||
228 | * The inline function queue_task_irq_off (tqueue.h) | ||
229 | * was removed from latest releases of 2.1.x kernel. | ||
230 | * Use of macro __init to mark the initialization | ||
231 | * routines, so memory can be reused. | ||
232 | * Also incorporate implementation of critical region | ||
233 | * in function cleanup_module() created by anonymous | ||
234 | * linuxer. | ||
235 | * | ||
236 | * Revision 1.36.4.28 1997/04/25 16:00:00 daniel | ||
237 | * Change to support new firmware that solves DCD problem: | ||
238 | * application could fail to receive SIGHUP signal when DCD | ||
239 | * varying too fast. | ||
240 | * | ||
241 | * Revision 1.36.4.27 1997/03/26 10:30:00 daniel | ||
242 | * Changed for support linux versions 2.1.X. | ||
243 | * Backward compatible with linux versions 2.0.X. | ||
244 | * Corrected illegal use of filler field in | ||
245 | * CH_CTRL struct. | ||
246 | * Deleted some debug messages. | ||
247 | * | ||
248 | * Revision 1.36.4.26 1997/02/27 12:00:00 daniel | ||
249 | * Included check for NULL tty pointer in cyz_poll. | ||
250 | * | ||
251 | * Revision 1.36.4.25 1997/02/26 16:28:30 bentson | ||
252 | * Bill Foster at Blarg! Online services noticed that | ||
253 | * some of the switch elements of -Z modem control | ||
254 | * lacked a closing "break;" | ||
255 | * | ||
256 | * Revision 1.36.4.24 1997/02/24 11:00:00 daniel | ||
257 | * Changed low water threshold for buffer xmit_buf | ||
258 | * | ||
259 | * Revision 1.36.4.23 1996/12/02 21:50:16 bentson | ||
260 | * Marcio provided fix to modem status fetch for -Z | ||
261 | * | ||
262 | * Revision 1.36.4.22 1996/10/28 22:41:17 bentson | ||
263 | * improve mapping of -Z control page (thanks to Steve | ||
264 | * Price <stevep@fa.tdktca.com> for help on this) | ||
265 | * | ||
266 | * Revision 1.36.4.21 1996/09/10 17:00:10 bentson | ||
267 | * shift from CPU-bound to memcopy in cyz_polling operation | ||
268 | * | ||
269 | * Revision 1.36.4.20 1996/09/09 18:30:32 Bentson | ||
270 | * Added support to set and report higher speeds. | ||
271 | * | ||
272 | * Revision 1.36.4.19c 1996/08/09 10:00:00 Marcio Saito | ||
273 | * Some fixes in the HW flow control for the BETA release. | ||
274 | * Don't try to register the IRQ. | ||
275 | * | ||
276 | * Revision 1.36.4.19 1996/08/08 16:23:18 Bentson | ||
277 | * make sure "cyc" appears in all kernel messages; all soft interrupts | ||
278 | * handled by same routine; recognize out-of-band reception; comment | ||
279 | * out some diagnostic messages; leave RTS/CTS flow control to hardware; | ||
280 | * fix race condition in -Z buffer management; only -Y needs to explicitly | ||
281 | * flush chars; tidy up some startup messages; | ||
282 | * | ||
283 | * Revision 1.36.4.18 1996/07/25 18:57:31 bentson | ||
284 | * shift MOD_INC_USE_COUNT location to match | ||
285 | * serial.c; purge some diagnostic messages; | ||
286 | * | ||
287 | * Revision 1.36.4.17 1996/07/25 18:01:08 bentson | ||
288 | * enable modem status messages and fetch & process them; note | ||
289 | * time of last activity type for each port; set_line_char now | ||
290 | * supports more than line 0 and treats 0 baud correctly; | ||
291 | * get_modem_info senses rs_status; | ||
292 | * | ||
293 | * Revision 1.36.4.16 1996/07/20 08:43:15 bentson | ||
294 | * barely works--now's time to turn on | ||
295 | * more features 'til it breaks | ||
296 | * | ||
297 | * Revision 1.36.4.15 1996/07/19 22:30:06 bentson | ||
298 | * check more -Z board status; shorten boot message | ||
299 | * | ||
300 | * Revision 1.36.4.14 1996/07/19 22:20:37 bentson | ||
301 | * fix reference to ch_ctrl in startup; verify return | ||
302 | * values from cyz_issue_cmd and cyz_update_channel; | ||
303 | * more stuff to get modem control correct; | ||
304 | * | ||
305 | * Revision 1.36.4.13 1996/07/11 19:53:33 bentson | ||
306 | * more -Z stuff folded in; re-order changes to put -Z stuff | ||
307 | * after -Y stuff (to make changes clearer) | ||
308 | * | ||
309 | * Revision 1.36.4.12 1996/07/11 15:40:55 bentson | ||
310 | * Add code to poll Cyclades-Z. Add code to get & set RS-232 control. | ||
311 | * Add code to send break. Clear firmware ID word at startup (so | ||
312 | * that other code won't talk to inactive board). | ||
313 | * | ||
314 | * Revision 1.36.4.11 1996/07/09 05:28:29 bentson | ||
315 | * add code for -Z in set_line_char | ||
316 | * | ||
317 | * Revision 1.36.4.10 1996/07/08 19:28:37 bentson | ||
318 | * fold more -Z stuff (or in some cases, error messages) | ||
319 | * into driver; add text to "don't know what to do" messages. | ||
320 | * | ||
321 | * Revision 1.36.4.9 1996/07/08 18:38:38 bentson | ||
322 | * moved compile-time flags near top of file; cosmetic changes | ||
323 | * to narrow text (to allow 2-up printing); changed many declarations | ||
324 | * to "static" to limit external symbols; shuffled code order to | ||
325 | * coalesce -Y and -Z specific code, also to put internal functions | ||
326 | * in order of tty_driver structure; added code to recognize -Z | ||
327 | * ports (and for moment, do nothing or report error); add cy_startup | ||
328 | * to parse boot command line for extra base addresses for ISA probes; | ||
329 | * | ||
330 | * Revision 1.36.4.8 1996/06/25 17:40:19 bentson | ||
331 | * reorder some code, fix types of some vars (int vs. long), | ||
332 | * add cy_setup to support user declared ISA addresses | ||
333 | * | ||
334 | * Revision 1.36.4.7 1996/06/21 23:06:18 bentson | ||
335 | * dump ioctl based firmware load (it's now a user level | ||
336 | * program); ensure uninitialzed ports cannot be used | ||
337 | * | ||
338 | * Revision 1.36.4.6 1996/06/20 23:17:19 bentson | ||
339 | * rename vars and restructure some code | ||
340 | * | ||
341 | * Revision 1.36.4.5 1996/06/14 15:09:44 bentson | ||
342 | * get right status back after boot load | ||
343 | * | ||
344 | * Revision 1.36.4.4 1996/06/13 19:51:44 bentson | ||
345 | * successfully loads firmware | ||
346 | * | ||
347 | * Revision 1.36.4.3 1996/06/13 06:08:33 bentson | ||
348 | * add more of the code for the boot/load ioctls | ||
349 | * | ||
350 | * Revision 1.36.4.2 1996/06/11 21:00:51 bentson | ||
351 | * start to add Z functionality--starting with ioctl | ||
352 | * for loading firmware | ||
353 | * | ||
354 | * Revision 1.36.4.1 1996/06/10 18:03:02 bentson | ||
355 | * added code to recognize Z/PCI card at initialization; report | ||
356 | * presence, but card is not initialized (because firmware needs | ||
357 | * to be loaded) | ||
358 | * | ||
359 | * Revision 1.36.3.8 1996/06/07 16:29:00 bentson | ||
360 | * starting minor number at zero; added missing verify_area | ||
361 | * as noted by Heiko Eißfeldt <heiko@colossus.escape.de> | ||
362 | * | ||
363 | * Revision 1.36.3.7 1996/04/19 21:06:18 bentson | ||
364 | * remove unneeded boot message & fix CLOCAL hardware flow | ||
365 | * control (Miquel van Smoorenburg <miquels@Q.cistron.nl>); | ||
366 | * remove unused diagnostic statements; minor 0 is first; | ||
367 | * | ||
368 | * Revision 1.36.3.6 1996/03/13 13:21:17 marcio | ||
369 | * The kernel function vremap (available only in later 1.3.xx kernels) | ||
370 | * allows the access to memory addresses above the RAM. This revision | ||
371 | * of the driver supports PCI boards below 1Mb (device id 0x100) and | ||
372 | * above 1Mb (device id 0x101). | ||
373 | * | ||
374 | * Revision 1.36.3.5 1996/03/07 15:20:17 bentson | ||
375 | * Some global changes to interrupt handling spilled into | ||
376 | * this driver--mostly unused arguments in system function | ||
377 | * calls. Also added change by Marcio Saito which should | ||
378 | * reduce lost interrupts at startup by fast processors. | ||
379 | * | ||
380 | * Revision 1.36.3.4 1995/11/13 20:45:10 bentson | ||
381 | * Changes by Corey Minyard <minyard@wf-rch.cirr.com> distributed | ||
382 | * in 1.3.41 kernel to remove a possible race condition, extend | ||
383 | * some error messages, and let the driver run as a loadable module | ||
384 | * Change by Alan Wendt <alan@ez0.ezlink.com> to remove a | ||
385 | * possible race condition. | ||
386 | * Change by Marcio Saito <marcio@cyclades.com> to fix PCI addressing. | ||
387 | * | ||
388 | * Revision 1.36.3.3 1995/11/13 19:44:48 bentson | ||
389 | * Changes by Linus Torvalds in 1.3.33 kernel distribution | ||
390 | * required due to reordering of driver initialization. | ||
391 | * Drivers are now initialized *after* memory management. | ||
392 | * | ||
393 | * Revision 1.36.3.2 1995/09/08 22:07:14 bentson | ||
394 | * remove printk from ISR; fix typo | ||
395 | * | ||
396 | * Revision 1.36.3.1 1995/09/01 12:00:42 marcio | ||
397 | * Minor fixes in the PCI board support. PCI function calls in | ||
398 | * conditional compilation (CONFIG_PCI). Thanks to Jim Duncan | ||
399 | * <duncan@okay.com>. "bad serial count" message removed. | ||
400 | * | ||
401 | * Revision 1.36.3 1995/08/22 09:19:42 marcio | ||
402 | * Cyclom-Y/PCI support added. Changes in the cy_init routine and | ||
403 | * board initialization. Changes in the boot messages. The driver | ||
404 | * supports up to 4 boards and 64 ports by default. | ||
405 | * | ||
406 | * Revision 1.36.1.4 1995/03/29 06:14:14 bentson | ||
407 | * disambiguate between Cyclom-16Y and Cyclom-32Ye; | ||
408 | * | ||
409 | * Revision 1.36.1.3 1995/03/23 22:15:35 bentson | ||
410 | * add missing break in modem control block in ioctl switch statement | ||
411 | * (discovered by Michael Edward Chastain <mec@jobe.shell.portal.com>); | ||
412 | * | ||
413 | * Revision 1.36.1.2 1995/03/22 19:16:22 bentson | ||
414 | * make sure CTS flow control is set as soon as possible (thanks | ||
415 | * to note from David Lambert <lambert@chesapeake.rps.slb.com>); | ||
416 | * | ||
417 | * Revision 1.36.1.1 1995/03/13 15:44:43 bentson | ||
418 | * initialize defaults for receive threshold and stale data timeout; | ||
419 | * cosmetic changes; | ||
420 | * | ||
421 | * Revision 1.36 1995/03/10 23:33:53 bentson | ||
422 | * added support of chips 4-7 in 32 port Cyclom-Ye; | ||
423 | * fix cy_interrupt pointer dereference problem | ||
424 | * (Joe Portman <baron@aa.net>); | ||
425 | * give better error response if open is attempted on non-existent port | ||
426 | * (Zachariah Vaum <jchryslr@netcom.com>); | ||
427 | * correct command timeout (Kenneth Lerman <lerman@@seltd.newnet.com>); | ||
428 | * conditional compilation for -16Y on systems with fast, noisy bus; | ||
429 | * comment out diagnostic print function; | ||
430 | * cleaned up table of base addresses; | ||
431 | * set receiver time-out period register to correct value, | ||
432 | * set receive threshold to better default values, | ||
433 | * set chip timer to more accurate 200 Hz ticking, | ||
434 | * add code to monitor and modify receive parameters | ||
435 | * (Rik Faith <faith@cs.unc.edu> Nick Simicich | ||
436 | * <njs@scifi.emi.net>); | ||
437 | * | ||
438 | * Revision 1.35 1994/12/16 13:54:18 steffen | ||
439 | * additional patch by Marcio Saito for board detection | ||
440 | * Accidently left out in 1.34 | ||
441 | * | ||
442 | * Revision 1.34 1994/12/10 12:37:12 steffen | ||
443 | * This is the corrected version as suggested by Marcio Saito | ||
444 | * | ||
445 | * Revision 1.33 1994/12/01 22:41:18 bentson | ||
446 | * add hooks to support more high speeds directly; add tytso | ||
447 | * patch regarding CLOCAL wakeups | ||
448 | * | ||
449 | * Revision 1.32 1994/11/23 19:50:04 bentson | ||
450 | * allow direct kernel control of higher signalling rates; | ||
451 | * look for cards at additional locations | ||
452 | * | ||
453 | * Revision 1.31 1994/11/16 04:33:28 bentson | ||
454 | * ANOTHER fix from Corey Minyard, minyard@wf-rch.cirr.com-- | ||
455 | * a problem in chars_in_buffer has been resolved by some | ||
456 | * small changes; this should yield smoother output | ||
457 | * | ||
458 | * Revision 1.30 1994/11/16 04:28:05 bentson | ||
459 | * Fix from Corey Minyard, Internet: minyard@metronet.com, | ||
460 | * UUCP: minyard@wf-rch.cirr.com, WORK: minyardbnr.ca, to | ||
461 | * cy_hangup that appears to clear up much (all?) of the | ||
462 | * DTR glitches; also he's added/cleaned-up diagnostic messages | ||
463 | * | ||
464 | * Revision 1.29 1994/11/16 04:16:07 bentson | ||
465 | * add change proposed by Ralph Sims, ralphs@halcyon.com, to | ||
466 | * operate higher speeds in same way as other serial ports; | ||
467 | * add more serial ports (for up to two 16-port muxes). | ||
468 | * | ||
469 | * Revision 1.28 1994/11/04 00:13:16 root | ||
470 | * turn off diagnostic messages | ||
471 | * | ||
472 | * Revision 1.27 1994/11/03 23:46:37 root | ||
473 | * bunch of changes to bring driver into greater conformance | ||
474 | * with the serial.c driver (looking for missed fixes) | ||
475 | * | ||
476 | * Revision 1.26 1994/11/03 22:40:36 root | ||
477 | * automatic interrupt probing fixed. | ||
478 | * | ||
479 | * Revision 1.25 1994/11/03 20:17:02 root | ||
480 | * start to implement auto-irq | ||
481 | * | ||
482 | * Revision 1.24 1994/11/03 18:01:55 root | ||
483 | * still working on modem signals--trying not to drop DTR | ||
484 | * during the getty/login processes | ||
485 | * | ||
486 | * Revision 1.23 1994/11/03 17:51:36 root | ||
487 | * extend baud rate support; set receive threshold as function | ||
488 | * of baud rate; fix some problems with RTS/CTS; | ||
489 | * | ||
490 | * Revision 1.22 1994/11/02 18:05:35 root | ||
491 | * changed arguments to udelay to type long to get | ||
492 | * delays to be of correct duration | ||
493 | * | ||
494 | * Revision 1.21 1994/11/02 17:37:30 root | ||
495 | * employ udelay (after calibrating loops_per_second earlier | ||
496 | * in init/main.c) instead of using home-grown delay routines | ||
497 | * | ||
498 | * Revision 1.20 1994/11/02 03:11:38 root | ||
499 | * cy_chars_in_buffer forces a return value of 0 to let | ||
500 | * login work (don't know why it does); some functions | ||
501 | * that were returning EFAULT, now executes the code; | ||
502 | * more work on deciding when to disable xmit interrupts; | ||
503 | * | ||
504 | * Revision 1.19 1994/11/01 20:10:14 root | ||
505 | * define routine to start transmission interrupts (by enabling | ||
506 | * transmit interrupts); directly enable/disable modem interrupts; | ||
507 | * | ||
508 | * Revision 1.18 1994/11/01 18:40:45 bentson | ||
509 | * Don't always enable transmit interrupts in startup; interrupt on | ||
510 | * TxMpty instead of TxRdy to help characters get out before shutdown; | ||
511 | * restructure xmit interrupt to check for chars first and quit if | ||
512 | * none are ready to go; modem status (MXVRx) is upright, _not_ inverted | ||
513 | * (to my view); | ||
514 | * | ||
515 | * Revision 1.17 1994/10/30 04:39:45 bentson | ||
516 | * rename serial_driver and callout_driver to cy_serial_driver and | ||
517 | * cy_callout_driver to avoid linkage interference; initialize | ||
518 | * info->type to PORT_CIRRUS; ruggedize paranoia test; elide ->port | ||
519 | * from cyclades_port structure; add paranoia check to cy_close; | ||
520 | * | ||
521 | * Revision 1.16 1994/10/30 01:14:33 bentson | ||
522 | * change major numbers; add some _early_ return statements; | ||
523 | * | ||
524 | * Revision 1.15 1994/10/29 06:43:15 bentson | ||
525 | * final tidying up for clean compile; enable some error reporting | ||
526 | * | ||
527 | * Revision 1.14 1994/10/28 20:30:22 Bentson | ||
528 | * lots of changes to drag the driver towards the new tty_io | ||
529 | * structures and operation. not expected to work, but may | ||
530 | * compile cleanly. | ||
531 | * | ||
532 | * Revision 1.13 1994/07/21 23:08:57 Bentson | ||
533 | * add some diagnostic cruft; support 24 lines (for testing | ||
534 | * both -8Y and -16Y cards; be more thorough in servicing all | ||
535 | * chips during interrupt; add "volatile" a few places to | ||
536 | * circumvent compiler optimizations; fix base & offset | ||
537 | * computations in block_til_ready (was causing chip 0 to | ||
538 | * stop operation) | ||
539 | * | ||
540 | * Revision 1.12 1994/07/19 16:42:11 Bentson | ||
541 | * add some hackery for kernel version 1.1.8; expand | ||
542 | * error messages; refine timing for delay loops and | ||
543 | * declare loop params volatile | ||
544 | * | ||
545 | * Revision 1.11 1994/06/11 21:53:10 bentson | ||
546 | * get use of save_car right in transmit interrupt service | ||
547 | * | ||
548 | * Revision 1.10.1.1 1994/06/11 21:31:18 bentson | ||
549 | * add some diagnostic printing; try to fix save_car stuff | ||
550 | * | ||
551 | * Revision 1.10 1994/06/11 20:36:08 bentson | ||
552 | * clean up compiler warnings | ||
553 | * | ||
554 | * Revision 1.9 1994/06/11 19:42:46 bentson | ||
555 | * added a bunch of code to support modem signalling | ||
556 | * | ||
557 | * Revision 1.8 1994/06/11 17:57:07 bentson | ||
558 | * recognize break & parity error | ||
559 | * | ||
560 | * Revision 1.7 1994/06/05 05:51:34 bentson | ||
561 | * Reorder baud table to be monotonic; add cli to CP; discard | ||
562 | * incoming characters and status if the line isn't open; start to | ||
563 | * fold code into cy_throttle; start to port get_serial_info, | ||
564 | * set_serial_info, get_modem_info, set_modem_info, and send_break | ||
565 | * from serial.c; expand cy_ioctl; relocate and expand config_setup; | ||
566 | * get flow control characters from tty struct; invalidate ports w/o | ||
567 | * hardware; | ||
568 | * | ||
569 | * Revision 1.6 1994/05/31 18:42:21 bentson | ||
570 | * add a loop-breaker in the interrupt service routine; | ||
571 | * note when port is initialized so that it can be shut | ||
572 | * down under the right conditions; receive works without | ||
573 | * any obvious errors | ||
574 | * | ||
575 | * Revision 1.5 1994/05/30 00:55:02 bentson | ||
576 | * transmit works without obvious errors | ||
577 | * | ||
578 | * Revision 1.4 1994/05/27 18:46:27 bentson | ||
579 | * incorporated more code from lib_y.c; can now print short | ||
580 | * strings under interrupt control to port zero; seems to | ||
581 | * select ports/channels/lines correctly | ||
582 | * | ||
583 | * Revision 1.3 1994/05/25 22:12:44 bentson | ||
584 | * shifting from multi-port on a card to proper multiplexor | ||
585 | * data structures; added skeletons of most routines | ||
586 | * | ||
587 | * Revision 1.2 1994/05/19 13:21:43 bentson | ||
588 | * start to crib from other sources | ||
589 | * | ||
590 | */ | 22 | */ |
591 | 23 | ||
592 | #define CY_VERSION "2.5" | 24 | #define CY_VERSION "2.6" |
593 | 25 | ||
594 | /* If you need to install more boards than NR_CARDS, change the constant | 26 | /* If you need to install more boards than NR_CARDS, change the constant |
595 | in the definition below. No other change is necessary to support up to | 27 | in the definition below. No other change is necessary to support up to |
@@ -648,9 +80,7 @@ | |||
648 | #include <linux/firmware.h> | 80 | #include <linux/firmware.h> |
649 | #include <linux/device.h> | 81 | #include <linux/device.h> |
650 | 82 | ||
651 | #include <asm/system.h> | ||
652 | #include <linux/io.h> | 83 | #include <linux/io.h> |
653 | #include <asm/irq.h> | ||
654 | #include <linux/uaccess.h> | 84 | #include <linux/uaccess.h> |
655 | 85 | ||
656 | #include <linux/kernel.h> | 86 | #include <linux/kernel.h> |
@@ -660,13 +90,11 @@ | |||
660 | #include <linux/proc_fs.h> | 90 | #include <linux/proc_fs.h> |
661 | #include <linux/seq_file.h> | 91 | #include <linux/seq_file.h> |
662 | 92 | ||
663 | static void cy_throttle(struct tty_struct *tty); | ||
664 | static void cy_send_xchar(struct tty_struct *tty, char ch); | 93 | static void cy_send_xchar(struct tty_struct *tty, char ch); |
665 | 94 | ||
666 | #ifndef SERIAL_XMIT_SIZE | 95 | #ifndef SERIAL_XMIT_SIZE |
667 | #define SERIAL_XMIT_SIZE (min(PAGE_SIZE, 4096)) | 96 | #define SERIAL_XMIT_SIZE (min(PAGE_SIZE, 4096)) |
668 | #endif | 97 | #endif |
669 | #define WAKEUP_CHARS 256 | ||
670 | 98 | ||
671 | #define STD_COM_FLAGS (0) | 99 | #define STD_COM_FLAGS (0) |
672 | 100 | ||
@@ -756,25 +184,25 @@ static int cy_next_channel; /* next minor available */ | |||
756 | * HI VHI | 184 | * HI VHI |
757 | * 20 | 185 | * 20 |
758 | */ | 186 | */ |
759 | static int baud_table[] = { | 187 | static const int baud_table[] = { |
760 | 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, | 188 | 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, |
761 | 1800, 2400, 4800, 9600, 19200, 38400, 57600, 76800, 115200, 150000, | 189 | 1800, 2400, 4800, 9600, 19200, 38400, 57600, 76800, 115200, 150000, |
762 | 230400, 0 | 190 | 230400, 0 |
763 | }; | 191 | }; |
764 | 192 | ||
765 | static char baud_co_25[] = { /* 25 MHz clock option table */ | 193 | static const char baud_co_25[] = { /* 25 MHz clock option table */ |
766 | /* value => 00 01 02 03 04 */ | 194 | /* value => 00 01 02 03 04 */ |
767 | /* divide by 8 32 128 512 2048 */ | 195 | /* divide by 8 32 128 512 2048 */ |
768 | 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x02, | 196 | 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x02, |
769 | 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 | 197 | 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
770 | }; | 198 | }; |
771 | 199 | ||
772 | static char baud_bpr_25[] = { /* 25 MHz baud rate period table */ | 200 | static const char baud_bpr_25[] = { /* 25 MHz baud rate period table */ |
773 | 0x00, 0xf5, 0xa3, 0x6f, 0x5c, 0x51, 0xf5, 0xa3, 0x51, 0xa3, | 201 | 0x00, 0xf5, 0xa3, 0x6f, 0x5c, 0x51, 0xf5, 0xa3, 0x51, 0xa3, |
774 | 0x6d, 0x51, 0xa3, 0x51, 0xa3, 0x51, 0x36, 0x29, 0x1b, 0x15 | 202 | 0x6d, 0x51, 0xa3, 0x51, 0xa3, 0x51, 0x36, 0x29, 0x1b, 0x15 |
775 | }; | 203 | }; |
776 | 204 | ||
777 | static char baud_co_60[] = { /* 60 MHz clock option table (CD1400 J) */ | 205 | static const char baud_co_60[] = { /* 60 MHz clock option table (CD1400 J) */ |
778 | /* value => 00 01 02 03 04 */ | 206 | /* value => 00 01 02 03 04 */ |
779 | /* divide by 8 32 128 512 2048 */ | 207 | /* divide by 8 32 128 512 2048 */ |
780 | 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, | 208 | 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, |
@@ -782,13 +210,13 @@ static char baud_co_60[] = { /* 60 MHz clock option table (CD1400 J) */ | |||
782 | 0x00 | 210 | 0x00 |
783 | }; | 211 | }; |
784 | 212 | ||
785 | static char baud_bpr_60[] = { /* 60 MHz baud rate period table (CD1400 J) */ | 213 | static const char baud_bpr_60[] = { /* 60 MHz baud rate period table (CD1400 J) */ |
786 | 0x00, 0x82, 0x21, 0xff, 0xdb, 0xc3, 0x92, 0x62, 0xc3, 0x62, | 214 | 0x00, 0x82, 0x21, 0xff, 0xdb, 0xc3, 0x92, 0x62, 0xc3, 0x62, |
787 | 0x41, 0xc3, 0x62, 0xc3, 0x62, 0xc3, 0x82, 0x62, 0x41, 0x32, | 215 | 0x41, 0xc3, 0x62, 0xc3, 0x62, 0xc3, 0x82, 0x62, 0x41, 0x32, |
788 | 0x21 | 216 | 0x21 |
789 | }; | 217 | }; |
790 | 218 | ||
791 | static char baud_cor3[] = { /* receive threshold */ | 219 | static const char baud_cor3[] = { /* receive threshold */ |
792 | 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, | 220 | 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, |
793 | 0x0a, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x07, | 221 | 0x0a, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x07, |
794 | 0x07 | 222 | 0x07 |
@@ -805,7 +233,7 @@ static char baud_cor3[] = { /* receive threshold */ | |||
805 | * cables. | 233 | * cables. |
806 | */ | 234 | */ |
807 | 235 | ||
808 | static char rflow_thr[] = { /* rflow threshold */ | 236 | static const char rflow_thr[] = { /* rflow threshold */ |
809 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 237 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
810 | 0x00, 0x00, 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, | 238 | 0x00, 0x00, 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, |
811 | 0x0a | 239 | 0x0a |
@@ -814,7 +242,7 @@ static char rflow_thr[] = { /* rflow threshold */ | |||
814 | /* The Cyclom-Ye has placed the sequential chips in non-sequential | 242 | /* The Cyclom-Ye has placed the sequential chips in non-sequential |
815 | * address order. This look-up table overcomes that problem. | 243 | * address order. This look-up table overcomes that problem. |
816 | */ | 244 | */ |
817 | static int cy_chip_offset[] = { 0x0000, | 245 | static const unsigned int cy_chip_offset[] = { 0x0000, |
818 | 0x0400, | 246 | 0x0400, |
819 | 0x0800, | 247 | 0x0800, |
820 | 0x0C00, | 248 | 0x0C00, |
@@ -827,7 +255,7 @@ static int cy_chip_offset[] = { 0x0000, | |||
827 | /* PCI related definitions */ | 255 | /* PCI related definitions */ |
828 | 256 | ||
829 | #ifdef CONFIG_PCI | 257 | #ifdef CONFIG_PCI |
830 | static struct pci_device_id cy_pci_dev_id[] __devinitdata = { | 258 | static const struct pci_device_id cy_pci_dev_id[] = { |
831 | /* PCI < 1Mb */ | 259 | /* PCI < 1Mb */ |
832 | { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Lo) }, | 260 | { PCI_DEVICE(PCI_VENDOR_ID_CYCLADES, PCI_DEVICE_ID_CYCLOM_Y_Lo) }, |
833 | /* PCI > 1Mb */ | 261 | /* PCI > 1Mb */ |
@@ -850,7 +278,7 @@ MODULE_DEVICE_TABLE(pci, cy_pci_dev_id); | |||
850 | #endif | 278 | #endif |
851 | 279 | ||
852 | static void cy_start(struct tty_struct *); | 280 | static void cy_start(struct tty_struct *); |
853 | static void set_line_char(struct cyclades_port *); | 281 | static void cy_set_line_char(struct cyclades_port *, struct tty_struct *); |
854 | static int cyz_issue_cmd(struct cyclades_card *, __u32, __u8, __u32); | 282 | static int cyz_issue_cmd(struct cyclades_card *, __u32, __u8, __u32); |
855 | #ifdef CONFIG_ISA | 283 | #ifdef CONFIG_ISA |
856 | static unsigned detect_isa_irq(void __iomem *); | 284 | static unsigned detect_isa_irq(void __iomem *); |
@@ -869,6 +297,20 @@ static void cyz_rx_restart(unsigned long); | |||
869 | static struct timer_list cyz_rx_full_timer[NR_PORTS]; | 297 | static struct timer_list cyz_rx_full_timer[NR_PORTS]; |
870 | #endif /* CONFIG_CYZ_INTR */ | 298 | #endif /* CONFIG_CYZ_INTR */ |
871 | 299 | ||
300 | static inline void cyy_writeb(struct cyclades_port *port, u32 reg, u8 val) | ||
301 | { | ||
302 | struct cyclades_card *card = port->card; | ||
303 | |||
304 | cy_writeb(port->u.cyy.base_addr + (reg << card->bus_index), val); | ||
305 | } | ||
306 | |||
307 | static inline u8 cyy_readb(struct cyclades_port *port, u32 reg) | ||
308 | { | ||
309 | struct cyclades_card *card = port->card; | ||
310 | |||
311 | return readb(port->u.cyy.base_addr + (reg << card->bus_index)); | ||
312 | } | ||
313 | |||
872 | static inline bool cy_is_Z(struct cyclades_card *card) | 314 | static inline bool cy_is_Z(struct cyclades_card *card) |
873 | { | 315 | { |
874 | return card->num_chips == (unsigned int)-1; | 316 | return card->num_chips == (unsigned int)-1; |
@@ -893,7 +335,7 @@ static inline bool cyz_is_loaded(struct cyclades_card *card) | |||
893 | } | 335 | } |
894 | 336 | ||
895 | static inline int serial_paranoia_check(struct cyclades_port *info, | 337 | static inline int serial_paranoia_check(struct cyclades_port *info, |
896 | char *name, const char *routine) | 338 | const char *name, const char *routine) |
897 | { | 339 | { |
898 | #ifdef SERIAL_PARANOIA_CHECK | 340 | #ifdef SERIAL_PARANOIA_CHECK |
899 | if (!info) { | 341 | if (!info) { |
@@ -909,7 +351,7 @@ static inline int serial_paranoia_check(struct cyclades_port *info, | |||
909 | } | 351 | } |
910 | #endif | 352 | #endif |
911 | return 0; | 353 | return 0; |
912 | } /* serial_paranoia_check */ | 354 | } |
913 | 355 | ||
914 | /***********************************************************/ | 356 | /***********************************************************/ |
915 | /********* Start of block of Cyclom-Y specific code ********/ | 357 | /********* Start of block of Cyclom-Y specific code ********/ |
@@ -921,13 +363,14 @@ static inline int serial_paranoia_check(struct cyclades_port *info, | |||
921 | 363 | ||
922 | This function is only called from inside spinlock-protected code. | 364 | This function is only called from inside spinlock-protected code. |
923 | */ | 365 | */ |
924 | static int cyy_issue_cmd(void __iomem *base_addr, u_char cmd, int index) | 366 | static int __cyy_issue_cmd(void __iomem *base_addr, u8 cmd, int index) |
925 | { | 367 | { |
368 | void __iomem *ccr = base_addr + (CyCCR << index); | ||
926 | unsigned int i; | 369 | unsigned int i; |
927 | 370 | ||
928 | /* Check to see that the previous command has completed */ | 371 | /* Check to see that the previous command has completed */ |
929 | for (i = 0; i < 100; i++) { | 372 | for (i = 0; i < 100; i++) { |
930 | if (readb(base_addr + (CyCCR << index)) == 0) | 373 | if (readb(ccr) == 0) |
931 | break; | 374 | break; |
932 | udelay(10L); | 375 | udelay(10L); |
933 | } | 376 | } |
@@ -937,10 +380,16 @@ static int cyy_issue_cmd(void __iomem *base_addr, u_char cmd, int index) | |||
937 | return -1; | 380 | return -1; |
938 | 381 | ||
939 | /* Issue the new command */ | 382 | /* Issue the new command */ |
940 | cy_writeb(base_addr + (CyCCR << index), cmd); | 383 | cy_writeb(ccr, cmd); |
941 | 384 | ||
942 | return 0; | 385 | return 0; |
943 | } /* cyy_issue_cmd */ | 386 | } |
387 | |||
388 | static inline int cyy_issue_cmd(struct cyclades_port *port, u8 cmd) | ||
389 | { | ||
390 | return __cyy_issue_cmd(port->u.cyy.base_addr, cmd, | ||
391 | port->card->bus_index); | ||
392 | } | ||
944 | 393 | ||
945 | #ifdef CONFIG_ISA | 394 | #ifdef CONFIG_ISA |
946 | /* ISA interrupt detection code */ | 395 | /* ISA interrupt detection code */ |
@@ -960,12 +409,12 @@ static unsigned detect_isa_irq(void __iomem *address) | |||
960 | 409 | ||
961 | irqs = probe_irq_on(); | 410 | irqs = probe_irq_on(); |
962 | /* Wait ... */ | 411 | /* Wait ... */ |
963 | udelay(5000L); | 412 | msleep(5); |
964 | 413 | ||
965 | /* Enable the Tx interrupts on the CD1400 */ | 414 | /* Enable the Tx interrupts on the CD1400 */ |
966 | local_irq_save(flags); | 415 | local_irq_save(flags); |
967 | cy_writeb(address + (CyCAR << index), 0); | 416 | cy_writeb(address + (CyCAR << index), 0); |
968 | cyy_issue_cmd(address, CyCHAN_CTL | CyENB_XMTR, index); | 417 | __cyy_issue_cmd(address, CyCHAN_CTL | CyENB_XMTR, index); |
969 | 418 | ||
970 | cy_writeb(address + (CyCAR << index), 0); | 419 | cy_writeb(address + (CyCAR << index), 0); |
971 | cy_writeb(address + (CySRER << index), | 420 | cy_writeb(address + (CySRER << index), |
@@ -973,7 +422,7 @@ static unsigned detect_isa_irq(void __iomem *address) | |||
973 | local_irq_restore(flags); | 422 | local_irq_restore(flags); |
974 | 423 | ||
975 | /* Wait ... */ | 424 | /* Wait ... */ |
976 | udelay(5000L); | 425 | msleep(5); |
977 | 426 | ||
978 | /* Check which interrupt is in use */ | 427 | /* Check which interrupt is in use */ |
979 | irq = probe_irq_off(irqs); | 428 | irq = probe_irq_off(irqs); |
@@ -999,7 +448,7 @@ static void cyy_chip_rx(struct cyclades_card *cinfo, int chip, | |||
999 | struct cyclades_port *info; | 448 | struct cyclades_port *info; |
1000 | struct tty_struct *tty; | 449 | struct tty_struct *tty; |
1001 | int len, index = cinfo->bus_index; | 450 | int len, index = cinfo->bus_index; |
1002 | u8 save_xir, channel, save_car, data, char_count; | 451 | u8 ivr, save_xir, channel, save_car, data, char_count; |
1003 | 452 | ||
1004 | #ifdef CY_DEBUG_INTERRUPTS | 453 | #ifdef CY_DEBUG_INTERRUPTS |
1005 | printk(KERN_DEBUG "cyy_interrupt: rcvd intr, chip %d\n", chip); | 454 | printk(KERN_DEBUG "cyy_interrupt: rcvd intr, chip %d\n", chip); |
@@ -1008,26 +457,25 @@ static void cyy_chip_rx(struct cyclades_card *cinfo, int chip, | |||
1008 | save_xir = readb(base_addr + (CyRIR << index)); | 457 | save_xir = readb(base_addr + (CyRIR << index)); |
1009 | channel = save_xir & CyIRChannel; | 458 | channel = save_xir & CyIRChannel; |
1010 | info = &cinfo->ports[channel + chip * 4]; | 459 | info = &cinfo->ports[channel + chip * 4]; |
1011 | save_car = readb(base_addr + (CyCAR << index)); | 460 | save_car = cyy_readb(info, CyCAR); |
1012 | cy_writeb(base_addr + (CyCAR << index), save_xir); | 461 | cyy_writeb(info, CyCAR, save_xir); |
462 | ivr = cyy_readb(info, CyRIVR) & CyIVRMask; | ||
1013 | 463 | ||
464 | tty = tty_port_tty_get(&info->port); | ||
1014 | /* if there is nowhere to put the data, discard it */ | 465 | /* if there is nowhere to put the data, discard it */ |
1015 | if (info->port.tty == NULL) { | 466 | if (tty == NULL) { |
1016 | if ((readb(base_addr + (CyRIVR << index)) & CyIVRMask) == | 467 | if (ivr == CyIVRRxEx) { /* exception */ |
1017 | CyIVRRxEx) { /* exception */ | 468 | data = cyy_readb(info, CyRDSR); |
1018 | data = readb(base_addr + (CyRDSR << index)); | ||
1019 | } else { /* normal character reception */ | 469 | } else { /* normal character reception */ |
1020 | char_count = readb(base_addr + (CyRDCR << index)); | 470 | char_count = cyy_readb(info, CyRDCR); |
1021 | while (char_count--) | 471 | while (char_count--) |
1022 | data = readb(base_addr + (CyRDSR << index)); | 472 | data = cyy_readb(info, CyRDSR); |
1023 | } | 473 | } |
1024 | goto end; | 474 | goto end; |
1025 | } | 475 | } |
1026 | /* there is an open port for this data */ | 476 | /* there is an open port for this data */ |
1027 | tty = info->port.tty; | 477 | if (ivr == CyIVRRxEx) { /* exception */ |
1028 | if ((readb(base_addr + (CyRIVR << index)) & CyIVRMask) == | 478 | data = cyy_readb(info, CyRDSR); |
1029 | CyIVRRxEx) { /* exception */ | ||
1030 | data = readb(base_addr + (CyRDSR << index)); | ||
1031 | 479 | ||
1032 | /* For statistics only */ | 480 | /* For statistics only */ |
1033 | if (data & CyBREAK) | 481 | if (data & CyBREAK) |
@@ -1041,28 +489,29 @@ static void cyy_chip_rx(struct cyclades_card *cinfo, int chip, | |||
1041 | 489 | ||
1042 | if (data & info->ignore_status_mask) { | 490 | if (data & info->ignore_status_mask) { |
1043 | info->icount.rx++; | 491 | info->icount.rx++; |
492 | tty_kref_put(tty); | ||
1044 | return; | 493 | return; |
1045 | } | 494 | } |
1046 | if (tty_buffer_request_room(tty, 1)) { | 495 | if (tty_buffer_request_room(tty, 1)) { |
1047 | if (data & info->read_status_mask) { | 496 | if (data & info->read_status_mask) { |
1048 | if (data & CyBREAK) { | 497 | if (data & CyBREAK) { |
1049 | tty_insert_flip_char(tty, | 498 | tty_insert_flip_char(tty, |
1050 | readb(base_addr + (CyRDSR << | 499 | cyy_readb(info, CyRDSR), |
1051 | index)), TTY_BREAK); | 500 | TTY_BREAK); |
1052 | info->icount.rx++; | 501 | info->icount.rx++; |
1053 | if (info->port.flags & ASYNC_SAK) | 502 | if (info->port.flags & ASYNC_SAK) |
1054 | do_SAK(tty); | 503 | do_SAK(tty); |
1055 | } else if (data & CyFRAME) { | 504 | } else if (data & CyFRAME) { |
1056 | tty_insert_flip_char(tty, | 505 | tty_insert_flip_char(tty, |
1057 | readb(base_addr + (CyRDSR << | 506 | cyy_readb(info, CyRDSR), |
1058 | index)), TTY_FRAME); | 507 | TTY_FRAME); |
1059 | info->icount.rx++; | 508 | info->icount.rx++; |
1060 | info->idle_stats.frame_errs++; | 509 | info->idle_stats.frame_errs++; |
1061 | } else if (data & CyPARITY) { | 510 | } else if (data & CyPARITY) { |
1062 | /* Pieces of seven... */ | 511 | /* Pieces of seven... */ |
1063 | tty_insert_flip_char(tty, | 512 | tty_insert_flip_char(tty, |
1064 | readb(base_addr + (CyRDSR << | 513 | cyy_readb(info, CyRDSR), |
1065 | index)), TTY_PARITY); | 514 | TTY_PARITY); |
1066 | info->icount.rx++; | 515 | info->icount.rx++; |
1067 | info->idle_stats.parity_errs++; | 516 | info->idle_stats.parity_errs++; |
1068 | } else if (data & CyOVERRUN) { | 517 | } else if (data & CyOVERRUN) { |
@@ -1074,8 +523,8 @@ static void cyy_chip_rx(struct cyclades_card *cinfo, int chip, | |||
1074 | the next incoming character. | 523 | the next incoming character. |
1075 | */ | 524 | */ |
1076 | tty_insert_flip_char(tty, | 525 | tty_insert_flip_char(tty, |
1077 | readb(base_addr + (CyRDSR << | 526 | cyy_readb(info, CyRDSR), |
1078 | index)), TTY_FRAME); | 527 | TTY_FRAME); |
1079 | info->icount.rx++; | 528 | info->icount.rx++; |
1080 | info->idle_stats.overruns++; | 529 | info->idle_stats.overruns++; |
1081 | /* These two conditions may imply */ | 530 | /* These two conditions may imply */ |
@@ -1099,7 +548,7 @@ static void cyy_chip_rx(struct cyclades_card *cinfo, int chip, | |||
1099 | } | 548 | } |
1100 | } else { /* normal character reception */ | 549 | } else { /* normal character reception */ |
1101 | /* load # chars available from the chip */ | 550 | /* load # chars available from the chip */ |
1102 | char_count = readb(base_addr + (CyRDCR << index)); | 551 | char_count = cyy_readb(info, CyRDCR); |
1103 | 552 | ||
1104 | #ifdef CY_ENABLE_MONITORING | 553 | #ifdef CY_ENABLE_MONITORING |
1105 | ++info->mon.int_count; | 554 | ++info->mon.int_count; |
@@ -1110,7 +559,7 @@ static void cyy_chip_rx(struct cyclades_card *cinfo, int chip, | |||
1110 | #endif | 559 | #endif |
1111 | len = tty_buffer_request_room(tty, char_count); | 560 | len = tty_buffer_request_room(tty, char_count); |
1112 | while (len--) { | 561 | while (len--) { |
1113 | data = readb(base_addr + (CyRDSR << index)); | 562 | data = cyy_readb(info, CyRDSR); |
1114 | tty_insert_flip_char(tty, data, TTY_NORMAL); | 563 | tty_insert_flip_char(tty, data, TTY_NORMAL); |
1115 | info->idle_stats.recv_bytes++; | 564 | info->idle_stats.recv_bytes++; |
1116 | info->icount.rx++; | 565 | info->icount.rx++; |
@@ -1121,16 +570,18 @@ static void cyy_chip_rx(struct cyclades_card *cinfo, int chip, | |||
1121 | info->idle_stats.recv_idle = jiffies; | 570 | info->idle_stats.recv_idle = jiffies; |
1122 | } | 571 | } |
1123 | tty_schedule_flip(tty); | 572 | tty_schedule_flip(tty); |
573 | tty_kref_put(tty); | ||
1124 | end: | 574 | end: |
1125 | /* end of service */ | 575 | /* end of service */ |
1126 | cy_writeb(base_addr + (CyRIR << index), save_xir & 0x3f); | 576 | cyy_writeb(info, CyRIR, save_xir & 0x3f); |
1127 | cy_writeb(base_addr + (CyCAR << index), save_car); | 577 | cyy_writeb(info, CyCAR, save_car); |
1128 | } | 578 | } |
1129 | 579 | ||
1130 | static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip, | 580 | static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip, |
1131 | void __iomem *base_addr) | 581 | void __iomem *base_addr) |
1132 | { | 582 | { |
1133 | struct cyclades_port *info; | 583 | struct cyclades_port *info; |
584 | struct tty_struct *tty; | ||
1134 | int char_count, index = cinfo->bus_index; | 585 | int char_count, index = cinfo->bus_index; |
1135 | u8 save_xir, channel, save_car, outch; | 586 | u8 save_xir, channel, save_car, outch; |
1136 | 587 | ||
@@ -1154,9 +605,9 @@ static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip, | |||
1154 | goto end; | 605 | goto end; |
1155 | } | 606 | } |
1156 | info = &cinfo->ports[channel + chip * 4]; | 607 | info = &cinfo->ports[channel + chip * 4]; |
1157 | if (info->port.tty == NULL) { | 608 | tty = tty_port_tty_get(&info->port); |
1158 | cy_writeb(base_addr + (CySRER << index), | 609 | if (tty == NULL) { |
1159 | readb(base_addr + (CySRER << index)) & ~CyTxRdy); | 610 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) & ~CyTxRdy); |
1160 | goto end; | 611 | goto end; |
1161 | } | 612 | } |
1162 | 613 | ||
@@ -1165,7 +616,7 @@ static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip, | |||
1165 | 616 | ||
1166 | if (info->x_char) { /* send special char */ | 617 | if (info->x_char) { /* send special char */ |
1167 | outch = info->x_char; | 618 | outch = info->x_char; |
1168 | cy_writeb(base_addr + (CyTDR << index), outch); | 619 | cyy_writeb(info, CyTDR, outch); |
1169 | char_count--; | 620 | char_count--; |
1170 | info->icount.tx++; | 621 | info->icount.tx++; |
1171 | info->x_char = 0; | 622 | info->x_char = 0; |
@@ -1173,14 +624,14 @@ static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip, | |||
1173 | 624 | ||
1174 | if (info->breakon || info->breakoff) { | 625 | if (info->breakon || info->breakoff) { |
1175 | if (info->breakon) { | 626 | if (info->breakon) { |
1176 | cy_writeb(base_addr + (CyTDR << index), 0); | 627 | cyy_writeb(info, CyTDR, 0); |
1177 | cy_writeb(base_addr + (CyTDR << index), 0x81); | 628 | cyy_writeb(info, CyTDR, 0x81); |
1178 | info->breakon = 0; | 629 | info->breakon = 0; |
1179 | char_count -= 2; | 630 | char_count -= 2; |
1180 | } | 631 | } |
1181 | if (info->breakoff) { | 632 | if (info->breakoff) { |
1182 | cy_writeb(base_addr + (CyTDR << index), 0); | 633 | cyy_writeb(info, CyTDR, 0); |
1183 | cy_writeb(base_addr + (CyTDR << index), 0x83); | 634 | cyy_writeb(info, CyTDR, 0x83); |
1184 | info->breakoff = 0; | 635 | info->breakoff = 0; |
1185 | char_count -= 2; | 636 | char_count -= 2; |
1186 | } | 637 | } |
@@ -1188,27 +639,23 @@ static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip, | |||
1188 | 639 | ||
1189 | while (char_count-- > 0) { | 640 | while (char_count-- > 0) { |
1190 | if (!info->xmit_cnt) { | 641 | if (!info->xmit_cnt) { |
1191 | if (readb(base_addr + (CySRER << index)) & CyTxMpty) { | 642 | if (cyy_readb(info, CySRER) & CyTxMpty) { |
1192 | cy_writeb(base_addr + (CySRER << index), | 643 | cyy_writeb(info, CySRER, |
1193 | readb(base_addr + (CySRER << index)) & | 644 | cyy_readb(info, CySRER) & ~CyTxMpty); |
1194 | ~CyTxMpty); | ||
1195 | } else { | 645 | } else { |
1196 | cy_writeb(base_addr + (CySRER << index), | 646 | cyy_writeb(info, CySRER, CyTxMpty | |
1197 | (readb(base_addr + (CySRER << index)) & | 647 | (cyy_readb(info, CySRER) & ~CyTxRdy)); |
1198 | ~CyTxRdy) | CyTxMpty); | ||
1199 | } | 648 | } |
1200 | goto done; | 649 | goto done; |
1201 | } | 650 | } |
1202 | if (info->port.xmit_buf == NULL) { | 651 | if (info->port.xmit_buf == NULL) { |
1203 | cy_writeb(base_addr + (CySRER << index), | 652 | cyy_writeb(info, CySRER, |
1204 | readb(base_addr + (CySRER << index)) & | 653 | cyy_readb(info, CySRER) & ~CyTxRdy); |
1205 | ~CyTxRdy); | ||
1206 | goto done; | 654 | goto done; |
1207 | } | 655 | } |
1208 | if (info->port.tty->stopped || info->port.tty->hw_stopped) { | 656 | if (tty->stopped || tty->hw_stopped) { |
1209 | cy_writeb(base_addr + (CySRER << index), | 657 | cyy_writeb(info, CySRER, |
1210 | readb(base_addr + (CySRER << index)) & | 658 | cyy_readb(info, CySRER) & ~CyTxRdy); |
1211 | ~CyTxRdy); | ||
1212 | goto done; | 659 | goto done; |
1213 | } | 660 | } |
1214 | /* Because the Embedded Transmit Commands have been enabled, | 661 | /* Because the Embedded Transmit Commands have been enabled, |
@@ -1225,15 +672,15 @@ static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip, | |||
1225 | info->xmit_cnt--; | 672 | info->xmit_cnt--; |
1226 | info->xmit_tail = (info->xmit_tail + 1) & | 673 | info->xmit_tail = (info->xmit_tail + 1) & |
1227 | (SERIAL_XMIT_SIZE - 1); | 674 | (SERIAL_XMIT_SIZE - 1); |
1228 | cy_writeb(base_addr + (CyTDR << index), outch); | 675 | cyy_writeb(info, CyTDR, outch); |
1229 | info->icount.tx++; | 676 | info->icount.tx++; |
1230 | } else { | 677 | } else { |
1231 | if (char_count > 1) { | 678 | if (char_count > 1) { |
1232 | info->xmit_cnt--; | 679 | info->xmit_cnt--; |
1233 | info->xmit_tail = (info->xmit_tail + 1) & | 680 | info->xmit_tail = (info->xmit_tail + 1) & |
1234 | (SERIAL_XMIT_SIZE - 1); | 681 | (SERIAL_XMIT_SIZE - 1); |
1235 | cy_writeb(base_addr + (CyTDR << index), outch); | 682 | cyy_writeb(info, CyTDR, outch); |
1236 | cy_writeb(base_addr + (CyTDR << index), 0); | 683 | cyy_writeb(info, CyTDR, 0); |
1237 | info->icount.tx++; | 684 | info->icount.tx++; |
1238 | char_count--; | 685 | char_count--; |
1239 | } | 686 | } |
@@ -1241,17 +688,19 @@ static void cyy_chip_tx(struct cyclades_card *cinfo, unsigned int chip, | |||
1241 | } | 688 | } |
1242 | 689 | ||
1243 | done: | 690 | done: |
1244 | tty_wakeup(info->port.tty); | 691 | tty_wakeup(tty); |
692 | tty_kref_put(tty); | ||
1245 | end: | 693 | end: |
1246 | /* end of service */ | 694 | /* end of service */ |
1247 | cy_writeb(base_addr + (CyTIR << index), save_xir & 0x3f); | 695 | cyy_writeb(info, CyTIR, save_xir & 0x3f); |
1248 | cy_writeb(base_addr + (CyCAR << index), save_car); | 696 | cyy_writeb(info, CyCAR, save_car); |
1249 | } | 697 | } |
1250 | 698 | ||
1251 | static void cyy_chip_modem(struct cyclades_card *cinfo, int chip, | 699 | static void cyy_chip_modem(struct cyclades_card *cinfo, int chip, |
1252 | void __iomem *base_addr) | 700 | void __iomem *base_addr) |
1253 | { | 701 | { |
1254 | struct cyclades_port *info; | 702 | struct cyclades_port *info; |
703 | struct tty_struct *tty; | ||
1255 | int index = cinfo->bus_index; | 704 | int index = cinfo->bus_index; |
1256 | u8 save_xir, channel, save_car, mdm_change, mdm_status; | 705 | u8 save_xir, channel, save_car, mdm_change, mdm_status; |
1257 | 706 | ||
@@ -1259,13 +708,14 @@ static void cyy_chip_modem(struct cyclades_card *cinfo, int chip, | |||
1259 | save_xir = readb(base_addr + (CyMIR << index)); | 708 | save_xir = readb(base_addr + (CyMIR << index)); |
1260 | channel = save_xir & CyIRChannel; | 709 | channel = save_xir & CyIRChannel; |
1261 | info = &cinfo->ports[channel + chip * 4]; | 710 | info = &cinfo->ports[channel + chip * 4]; |
1262 | save_car = readb(base_addr + (CyCAR << index)); | 711 | save_car = cyy_readb(info, CyCAR); |
1263 | cy_writeb(base_addr + (CyCAR << index), save_xir); | 712 | cyy_writeb(info, CyCAR, save_xir); |
1264 | 713 | ||
1265 | mdm_change = readb(base_addr + (CyMISR << index)); | 714 | mdm_change = cyy_readb(info, CyMISR); |
1266 | mdm_status = readb(base_addr + (CyMSVR1 << index)); | 715 | mdm_status = cyy_readb(info, CyMSVR1); |
1267 | 716 | ||
1268 | if (!info->port.tty) | 717 | tty = tty_port_tty_get(&info->port); |
718 | if (!tty) | ||
1269 | goto end; | 719 | goto end; |
1270 | 720 | ||
1271 | if (mdm_change & CyANY_DELTA) { | 721 | if (mdm_change & CyANY_DELTA) { |
@@ -1279,35 +729,32 @@ static void cyy_chip_modem(struct cyclades_card *cinfo, int chip, | |||
1279 | if (mdm_change & CyRI) | 729 | if (mdm_change & CyRI) |
1280 | info->icount.rng++; | 730 | info->icount.rng++; |
1281 | 731 | ||
1282 | wake_up_interruptible(&info->delta_msr_wait); | 732 | wake_up_interruptible(&info->port.delta_msr_wait); |
1283 | } | 733 | } |
1284 | 734 | ||
1285 | if ((mdm_change & CyDCD) && (info->port.flags & ASYNC_CHECK_CD)) { | 735 | if ((mdm_change & CyDCD) && (info->port.flags & ASYNC_CHECK_CD)) { |
1286 | if (!(mdm_status & CyDCD)) { | 736 | if (mdm_status & CyDCD) |
1287 | tty_hangup(info->port.tty); | 737 | wake_up_interruptible(&info->port.open_wait); |
1288 | info->port.flags &= ~ASYNC_NORMAL_ACTIVE; | 738 | else |
1289 | } | 739 | tty_hangup(tty); |
1290 | wake_up_interruptible(&info->port.open_wait); | ||
1291 | } | 740 | } |
1292 | if ((mdm_change & CyCTS) && (info->port.flags & ASYNC_CTS_FLOW)) { | 741 | if ((mdm_change & CyCTS) && (info->port.flags & ASYNC_CTS_FLOW)) { |
1293 | if (info->port.tty->hw_stopped) { | 742 | if (tty->hw_stopped) { |
1294 | if (mdm_status & CyCTS) { | 743 | if (mdm_status & CyCTS) { |
1295 | /* cy_start isn't used | 744 | /* cy_start isn't used |
1296 | because... !!! */ | 745 | because... !!! */ |
1297 | info->port.tty->hw_stopped = 0; | 746 | tty->hw_stopped = 0; |
1298 | cy_writeb(base_addr + (CySRER << index), | 747 | cyy_writeb(info, CySRER, |
1299 | readb(base_addr + (CySRER << index)) | | 748 | cyy_readb(info, CySRER) | CyTxRdy); |
1300 | CyTxRdy); | 749 | tty_wakeup(tty); |
1301 | tty_wakeup(info->port.tty); | ||
1302 | } | 750 | } |
1303 | } else { | 751 | } else { |
1304 | if (!(mdm_status & CyCTS)) { | 752 | if (!(mdm_status & CyCTS)) { |
1305 | /* cy_stop isn't used | 753 | /* cy_stop isn't used |
1306 | because ... !!! */ | 754 | because ... !!! */ |
1307 | info->port.tty->hw_stopped = 1; | 755 | tty->hw_stopped = 1; |
1308 | cy_writeb(base_addr + (CySRER << index), | 756 | cyy_writeb(info, CySRER, |
1309 | readb(base_addr + (CySRER << index)) & | 757 | cyy_readb(info, CySRER) & ~CyTxRdy); |
1310 | ~CyTxRdy); | ||
1311 | } | 758 | } |
1312 | } | 759 | } |
1313 | } | 760 | } |
@@ -1315,10 +762,11 @@ static void cyy_chip_modem(struct cyclades_card *cinfo, int chip, | |||
1315 | } | 762 | } |
1316 | if (mdm_change & CyRI) { | 763 | if (mdm_change & CyRI) { |
1317 | }*/ | 764 | }*/ |
765 | tty_kref_put(tty); | ||
1318 | end: | 766 | end: |
1319 | /* end of service */ | 767 | /* end of service */ |
1320 | cy_writeb(base_addr + (CyMIR << index), save_xir & 0x3f); | 768 | cyy_writeb(info, CyMIR, save_xir & 0x3f); |
1321 | cy_writeb(base_addr + (CyCAR << index), save_car); | 769 | cyy_writeb(info, CyCAR, save_car); |
1322 | } | 770 | } |
1323 | 771 | ||
1324 | /* The real interrupt service routine is called | 772 | /* The real interrupt service routine is called |
@@ -1389,6 +837,56 @@ static irqreturn_t cyy_interrupt(int irq, void *dev_id) | |||
1389 | return IRQ_HANDLED; | 837 | return IRQ_HANDLED; |
1390 | } /* cyy_interrupt */ | 838 | } /* cyy_interrupt */ |
1391 | 839 | ||
840 | static void cyy_change_rts_dtr(struct cyclades_port *info, unsigned int set, | ||
841 | unsigned int clear) | ||
842 | { | ||
843 | struct cyclades_card *card = info->card; | ||
844 | int channel = info->line - card->first_line; | ||
845 | u32 rts, dtr, msvrr, msvrd; | ||
846 | |||
847 | channel &= 0x03; | ||
848 | |||
849 | if (info->rtsdtr_inv) { | ||
850 | msvrr = CyMSVR2; | ||
851 | msvrd = CyMSVR1; | ||
852 | rts = CyDTR; | ||
853 | dtr = CyRTS; | ||
854 | } else { | ||
855 | msvrr = CyMSVR1; | ||
856 | msvrd = CyMSVR2; | ||
857 | rts = CyRTS; | ||
858 | dtr = CyDTR; | ||
859 | } | ||
860 | if (set & TIOCM_RTS) { | ||
861 | cyy_writeb(info, CyCAR, channel); | ||
862 | cyy_writeb(info, msvrr, rts); | ||
863 | } | ||
864 | if (clear & TIOCM_RTS) { | ||
865 | cyy_writeb(info, CyCAR, channel); | ||
866 | cyy_writeb(info, msvrr, ~rts); | ||
867 | } | ||
868 | if (set & TIOCM_DTR) { | ||
869 | cyy_writeb(info, CyCAR, channel); | ||
870 | cyy_writeb(info, msvrd, dtr); | ||
871 | #ifdef CY_DEBUG_DTR | ||
872 | printk(KERN_DEBUG "cyc:set_modem_info raising DTR\n"); | ||
873 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", | ||
874 | cyy_readb(info, CyMSVR1), | ||
875 | cyy_readb(info, CyMSVR2)); | ||
876 | #endif | ||
877 | } | ||
878 | if (clear & TIOCM_DTR) { | ||
879 | cyy_writeb(info, CyCAR, channel); | ||
880 | cyy_writeb(info, msvrd, ~dtr); | ||
881 | #ifdef CY_DEBUG_DTR | ||
882 | printk(KERN_DEBUG "cyc:set_modem_info dropping DTR\n"); | ||
883 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", | ||
884 | cyy_readb(info, CyMSVR1), | ||
885 | cyy_readb(info, CyMSVR2)); | ||
886 | #endif | ||
887 | } | ||
888 | } | ||
889 | |||
1392 | /***********************************************************/ | 890 | /***********************************************************/ |
1393 | /********* End of block of Cyclom-Y specific code **********/ | 891 | /********* End of block of Cyclom-Y specific code **********/ |
1394 | /******** Start of block of Cyclades-Z specific code *******/ | 892 | /******** Start of block of Cyclades-Z specific code *******/ |
@@ -1398,15 +896,9 @@ static int | |||
1398 | cyz_fetch_msg(struct cyclades_card *cinfo, | 896 | cyz_fetch_msg(struct cyclades_card *cinfo, |
1399 | __u32 *channel, __u8 *cmd, __u32 *param) | 897 | __u32 *channel, __u8 *cmd, __u32 *param) |
1400 | { | 898 | { |
1401 | struct FIRM_ID __iomem *firm_id; | 899 | struct BOARD_CTRL __iomem *board_ctrl = cinfo->board_ctrl; |
1402 | struct ZFW_CTRL __iomem *zfw_ctrl; | ||
1403 | struct BOARD_CTRL __iomem *board_ctrl; | ||
1404 | unsigned long loc_doorbell; | 900 | unsigned long loc_doorbell; |
1405 | 901 | ||
1406 | firm_id = cinfo->base_addr + ID_ADDRESS; | ||
1407 | zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
1408 | board_ctrl = &zfw_ctrl->board_ctrl; | ||
1409 | |||
1410 | loc_doorbell = readl(&cinfo->ctl_addr.p9060->loc_doorbell); | 902 | loc_doorbell = readl(&cinfo->ctl_addr.p9060->loc_doorbell); |
1411 | if (loc_doorbell) { | 903 | if (loc_doorbell) { |
1412 | *cmd = (char)(0xff & loc_doorbell); | 904 | *cmd = (char)(0xff & loc_doorbell); |
@@ -1422,19 +914,13 @@ static int | |||
1422 | cyz_issue_cmd(struct cyclades_card *cinfo, | 914 | cyz_issue_cmd(struct cyclades_card *cinfo, |
1423 | __u32 channel, __u8 cmd, __u32 param) | 915 | __u32 channel, __u8 cmd, __u32 param) |
1424 | { | 916 | { |
1425 | struct FIRM_ID __iomem *firm_id; | 917 | struct BOARD_CTRL __iomem *board_ctrl = cinfo->board_ctrl; |
1426 | struct ZFW_CTRL __iomem *zfw_ctrl; | ||
1427 | struct BOARD_CTRL __iomem *board_ctrl; | ||
1428 | __u32 __iomem *pci_doorbell; | 918 | __u32 __iomem *pci_doorbell; |
1429 | unsigned int index; | 919 | unsigned int index; |
1430 | 920 | ||
1431 | firm_id = cinfo->base_addr + ID_ADDRESS; | ||
1432 | if (!cyz_is_loaded(cinfo)) | 921 | if (!cyz_is_loaded(cinfo)) |
1433 | return -1; | 922 | return -1; |
1434 | 923 | ||
1435 | zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
1436 | board_ctrl = &zfw_ctrl->board_ctrl; | ||
1437 | |||
1438 | index = 0; | 924 | index = 0; |
1439 | pci_doorbell = &cinfo->ctl_addr.p9060->pci_doorbell; | 925 | pci_doorbell = &cinfo->ctl_addr.p9060->pci_doorbell; |
1440 | while ((readl(pci_doorbell) & 0xff) != 0) { | 926 | while ((readl(pci_doorbell) & 0xff) != 0) { |
@@ -1449,11 +935,10 @@ cyz_issue_cmd(struct cyclades_card *cinfo, | |||
1449 | return 0; | 935 | return 0; |
1450 | } /* cyz_issue_cmd */ | 936 | } /* cyz_issue_cmd */ |
1451 | 937 | ||
1452 | static void cyz_handle_rx(struct cyclades_port *info, | 938 | static void cyz_handle_rx(struct cyclades_port *info, struct tty_struct *tty) |
1453 | struct BUF_CTRL __iomem *buf_ctrl) | ||
1454 | { | 939 | { |
940 | struct BUF_CTRL __iomem *buf_ctrl = info->u.cyz.buf_ctrl; | ||
1455 | struct cyclades_card *cinfo = info->card; | 941 | struct cyclades_card *cinfo = info->card; |
1456 | struct tty_struct *tty = info->port.tty; | ||
1457 | unsigned int char_count; | 942 | unsigned int char_count; |
1458 | int len; | 943 | int len; |
1459 | #ifdef BLOCKMOVE | 944 | #ifdef BLOCKMOVE |
@@ -1542,11 +1027,10 @@ static void cyz_handle_rx(struct cyclades_port *info, | |||
1542 | } | 1027 | } |
1543 | } | 1028 | } |
1544 | 1029 | ||
1545 | static void cyz_handle_tx(struct cyclades_port *info, | 1030 | static void cyz_handle_tx(struct cyclades_port *info, struct tty_struct *tty) |
1546 | struct BUF_CTRL __iomem *buf_ctrl) | ||
1547 | { | 1031 | { |
1032 | struct BUF_CTRL __iomem *buf_ctrl = info->u.cyz.buf_ctrl; | ||
1548 | struct cyclades_card *cinfo = info->card; | 1033 | struct cyclades_card *cinfo = info->card; |
1549 | struct tty_struct *tty = info->port.tty; | ||
1550 | u8 data; | 1034 | u8 data; |
1551 | unsigned int char_count; | 1035 | unsigned int char_count; |
1552 | #ifdef BLOCKMOVE | 1036 | #ifdef BLOCKMOVE |
@@ -1621,34 +1105,24 @@ ztxdone: | |||
1621 | 1105 | ||
1622 | static void cyz_handle_cmd(struct cyclades_card *cinfo) | 1106 | static void cyz_handle_cmd(struct cyclades_card *cinfo) |
1623 | { | 1107 | { |
1108 | struct BOARD_CTRL __iomem *board_ctrl = cinfo->board_ctrl; | ||
1624 | struct tty_struct *tty; | 1109 | struct tty_struct *tty; |
1625 | struct cyclades_port *info; | 1110 | struct cyclades_port *info; |
1626 | static struct FIRM_ID __iomem *firm_id; | ||
1627 | static struct ZFW_CTRL __iomem *zfw_ctrl; | ||
1628 | static struct BOARD_CTRL __iomem *board_ctrl; | ||
1629 | static struct CH_CTRL __iomem *ch_ctrl; | ||
1630 | static struct BUF_CTRL __iomem *buf_ctrl; | ||
1631 | __u32 channel, param, fw_ver; | 1111 | __u32 channel, param, fw_ver; |
1632 | __u8 cmd; | 1112 | __u8 cmd; |
1633 | int special_count; | 1113 | int special_count; |
1634 | int delta_count; | 1114 | int delta_count; |
1635 | 1115 | ||
1636 | firm_id = cinfo->base_addr + ID_ADDRESS; | ||
1637 | zfw_ctrl = cinfo->base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
1638 | board_ctrl = &zfw_ctrl->board_ctrl; | ||
1639 | fw_ver = readl(&board_ctrl->fw_version); | 1116 | fw_ver = readl(&board_ctrl->fw_version); |
1640 | 1117 | ||
1641 | while (cyz_fetch_msg(cinfo, &channel, &cmd, ¶m) == 1) { | 1118 | while (cyz_fetch_msg(cinfo, &channel, &cmd, ¶m) == 1) { |
1642 | special_count = 0; | 1119 | special_count = 0; |
1643 | delta_count = 0; | 1120 | delta_count = 0; |
1644 | info = &cinfo->ports[channel]; | 1121 | info = &cinfo->ports[channel]; |
1645 | tty = info->port.tty; | 1122 | tty = tty_port_tty_get(&info->port); |
1646 | if (tty == NULL) | 1123 | if (tty == NULL) |
1647 | continue; | 1124 | continue; |
1648 | 1125 | ||
1649 | ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]); | ||
1650 | buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]); | ||
1651 | |||
1652 | switch (cmd) { | 1126 | switch (cmd) { |
1653 | case C_CM_PR_ERROR: | 1127 | case C_CM_PR_ERROR: |
1654 | tty_insert_flip_char(tty, 0, TTY_PARITY); | 1128 | tty_insert_flip_char(tty, 0, TTY_PARITY); |
@@ -1669,15 +1143,12 @@ static void cyz_handle_cmd(struct cyclades_card *cinfo) | |||
1669 | info->icount.dcd++; | 1143 | info->icount.dcd++; |
1670 | delta_count++; | 1144 | delta_count++; |
1671 | if (info->port.flags & ASYNC_CHECK_CD) { | 1145 | if (info->port.flags & ASYNC_CHECK_CD) { |
1672 | if ((fw_ver > 241 ? ((u_long) param) : | 1146 | u32 dcd = fw_ver > 241 ? param : |
1673 | readl(&ch_ctrl->rs_status)) & | 1147 | readl(&info->u.cyz.ch_ctrl->rs_status); |
1674 | C_RS_DCD) { | 1148 | if (dcd & C_RS_DCD) |
1675 | wake_up_interruptible(&info->port.open_wait); | 1149 | wake_up_interruptible(&info->port.open_wait); |
1676 | } else { | 1150 | else |
1677 | tty_hangup(info->port.tty); | 1151 | tty_hangup(tty); |
1678 | wake_up_interruptible(&info->port.open_wait); | ||
1679 | info->port.flags &= ~ASYNC_NORMAL_ACTIVE; | ||
1680 | } | ||
1681 | } | 1152 | } |
1682 | break; | 1153 | break; |
1683 | case C_CM_MCTS: | 1154 | case C_CM_MCTS: |
@@ -1706,7 +1177,7 @@ static void cyz_handle_cmd(struct cyclades_card *cinfo) | |||
1706 | printk(KERN_DEBUG "cyz_interrupt: rcvd intr, card %d, " | 1177 | printk(KERN_DEBUG "cyz_interrupt: rcvd intr, card %d, " |
1707 | "port %ld\n", info->card, channel); | 1178 | "port %ld\n", info->card, channel); |
1708 | #endif | 1179 | #endif |
1709 | cyz_handle_rx(info, buf_ctrl); | 1180 | cyz_handle_rx(info, tty); |
1710 | break; | 1181 | break; |
1711 | case C_CM_TXBEMPTY: | 1182 | case C_CM_TXBEMPTY: |
1712 | case C_CM_TXLOWWM: | 1183 | case C_CM_TXLOWWM: |
@@ -1716,7 +1187,7 @@ static void cyz_handle_cmd(struct cyclades_card *cinfo) | |||
1716 | printk(KERN_DEBUG "cyz_interrupt: xmit intr, card %d, " | 1187 | printk(KERN_DEBUG "cyz_interrupt: xmit intr, card %d, " |
1717 | "port %ld\n", info->card, channel); | 1188 | "port %ld\n", info->card, channel); |
1718 | #endif | 1189 | #endif |
1719 | cyz_handle_tx(info, buf_ctrl); | 1190 | cyz_handle_tx(info, tty); |
1720 | break; | 1191 | break; |
1721 | #endif /* CONFIG_CYZ_INTR */ | 1192 | #endif /* CONFIG_CYZ_INTR */ |
1722 | case C_CM_FATAL: | 1193 | case C_CM_FATAL: |
@@ -1726,9 +1197,10 @@ static void cyz_handle_cmd(struct cyclades_card *cinfo) | |||
1726 | break; | 1197 | break; |
1727 | } | 1198 | } |
1728 | if (delta_count) | 1199 | if (delta_count) |
1729 | wake_up_interruptible(&info->delta_msr_wait); | 1200 | wake_up_interruptible(&info->port.delta_msr_wait); |
1730 | if (special_count) | 1201 | if (special_count) |
1731 | tty_schedule_flip(tty); | 1202 | tty_schedule_flip(tty); |
1203 | tty_kref_put(tty); | ||
1732 | } | 1204 | } |
1733 | } | 1205 | } |
1734 | 1206 | ||
@@ -1774,10 +1246,6 @@ static void cyz_poll(unsigned long arg) | |||
1774 | { | 1246 | { |
1775 | struct cyclades_card *cinfo; | 1247 | struct cyclades_card *cinfo; |
1776 | struct cyclades_port *info; | 1248 | struct cyclades_port *info; |
1777 | struct tty_struct *tty; | ||
1778 | struct FIRM_ID __iomem *firm_id; | ||
1779 | struct ZFW_CTRL __iomem *zfw_ctrl; | ||
1780 | struct BUF_CTRL __iomem *buf_ctrl; | ||
1781 | unsigned long expires = jiffies + HZ; | 1249 | unsigned long expires = jiffies + HZ; |
1782 | unsigned int port, card; | 1250 | unsigned int port, card; |
1783 | 1251 | ||
@@ -1789,10 +1257,6 @@ static void cyz_poll(unsigned long arg) | |||
1789 | if (!cyz_is_loaded(cinfo)) | 1257 | if (!cyz_is_loaded(cinfo)) |
1790 | continue; | 1258 | continue; |
1791 | 1259 | ||
1792 | firm_id = cinfo->base_addr + ID_ADDRESS; | ||
1793 | zfw_ctrl = cinfo->base_addr + | ||
1794 | (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
1795 | |||
1796 | /* Skip first polling cycle to avoid racing conditions with the FW */ | 1260 | /* Skip first polling cycle to avoid racing conditions with the FW */ |
1797 | if (!cinfo->intr_enabled) { | 1261 | if (!cinfo->intr_enabled) { |
1798 | cinfo->intr_enabled = 1; | 1262 | cinfo->intr_enabled = 1; |
@@ -1802,13 +1266,17 @@ static void cyz_poll(unsigned long arg) | |||
1802 | cyz_handle_cmd(cinfo); | 1266 | cyz_handle_cmd(cinfo); |
1803 | 1267 | ||
1804 | for (port = 0; port < cinfo->nports; port++) { | 1268 | for (port = 0; port < cinfo->nports; port++) { |
1269 | struct tty_struct *tty; | ||
1270 | |||
1805 | info = &cinfo->ports[port]; | 1271 | info = &cinfo->ports[port]; |
1806 | tty = info->port.tty; | 1272 | tty = tty_port_tty_get(&info->port); |
1807 | buf_ctrl = &(zfw_ctrl->buf_ctrl[port]); | 1273 | /* OK to pass NULL to the handle functions below. |
1274 | They need to drop the data in that case. */ | ||
1808 | 1275 | ||
1809 | if (!info->throttle) | 1276 | if (!info->throttle) |
1810 | cyz_handle_rx(info, buf_ctrl); | 1277 | cyz_handle_rx(info, tty); |
1811 | cyz_handle_tx(info, buf_ctrl); | 1278 | cyz_handle_tx(info, tty); |
1279 | tty_kref_put(tty); | ||
1812 | } | 1280 | } |
1813 | /* poll every 'cyz_polling_cycle' period */ | 1281 | /* poll every 'cyz_polling_cycle' period */ |
1814 | expires = jiffies + cyz_polling_cycle; | 1282 | expires = jiffies + cyz_polling_cycle; |
@@ -1824,13 +1292,12 @@ static void cyz_poll(unsigned long arg) | |||
1824 | /* This is called whenever a port becomes active; | 1292 | /* This is called whenever a port becomes active; |
1825 | interrupts are enabled and DTR & RTS are turned on. | 1293 | interrupts are enabled and DTR & RTS are turned on. |
1826 | */ | 1294 | */ |
1827 | static int startup(struct cyclades_port *info) | 1295 | static int cy_startup(struct cyclades_port *info, struct tty_struct *tty) |
1828 | { | 1296 | { |
1829 | struct cyclades_card *card; | 1297 | struct cyclades_card *card; |
1830 | unsigned long flags; | 1298 | unsigned long flags; |
1831 | int retval = 0; | 1299 | int retval = 0; |
1832 | void __iomem *base_addr; | 1300 | int channel; |
1833 | int chip, channel, index; | ||
1834 | unsigned long page; | 1301 | unsigned long page; |
1835 | 1302 | ||
1836 | card = info->card; | 1303 | card = info->card; |
@@ -1842,15 +1309,11 @@ static int startup(struct cyclades_port *info) | |||
1842 | 1309 | ||
1843 | spin_lock_irqsave(&card->card_lock, flags); | 1310 | spin_lock_irqsave(&card->card_lock, flags); |
1844 | 1311 | ||
1845 | if (info->port.flags & ASYNC_INITIALIZED) { | 1312 | if (info->port.flags & ASYNC_INITIALIZED) |
1846 | free_page(page); | ||
1847 | goto errout; | 1313 | goto errout; |
1848 | } | ||
1849 | 1314 | ||
1850 | if (!info->type) { | 1315 | if (!info->type) { |
1851 | if (info->port.tty) | 1316 | set_bit(TTY_IO_ERROR, &tty->flags); |
1852 | set_bit(TTY_IO_ERROR, &info->port.tty->flags); | ||
1853 | free_page(page); | ||
1854 | goto errout; | 1317 | goto errout; |
1855 | } | 1318 | } |
1856 | 1319 | ||
@@ -1861,96 +1324,53 @@ static int startup(struct cyclades_port *info) | |||
1861 | 1324 | ||
1862 | spin_unlock_irqrestore(&card->card_lock, flags); | 1325 | spin_unlock_irqrestore(&card->card_lock, flags); |
1863 | 1326 | ||
1864 | set_line_char(info); | 1327 | cy_set_line_char(info, tty); |
1865 | 1328 | ||
1866 | if (!cy_is_Z(card)) { | 1329 | if (!cy_is_Z(card)) { |
1867 | chip = channel >> 2; | ||
1868 | channel &= 0x03; | 1330 | channel &= 0x03; |
1869 | index = card->bus_index; | ||
1870 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | ||
1871 | 1331 | ||
1872 | #ifdef CY_DEBUG_OPEN | ||
1873 | printk(KERN_DEBUG "cyc startup card %d, chip %d, channel %d, " | ||
1874 | "base_addr %p\n", | ||
1875 | card, chip, channel, base_addr); | ||
1876 | #endif | ||
1877 | spin_lock_irqsave(&card->card_lock, flags); | 1332 | spin_lock_irqsave(&card->card_lock, flags); |
1878 | 1333 | ||
1879 | cy_writeb(base_addr + (CyCAR << index), (u_char) channel); | 1334 | cyy_writeb(info, CyCAR, channel); |
1880 | 1335 | ||
1881 | cy_writeb(base_addr + (CyRTPR << index), | 1336 | cyy_writeb(info, CyRTPR, |
1882 | (info->default_timeout ? info->default_timeout : 0x02)); | 1337 | (info->default_timeout ? info->default_timeout : 0x02)); |
1883 | /* 10ms rx timeout */ | 1338 | /* 10ms rx timeout */ |
1884 | 1339 | ||
1885 | cyy_issue_cmd(base_addr, CyCHAN_CTL | CyENB_RCVR | CyENB_XMTR, | 1340 | cyy_issue_cmd(info, CyCHAN_CTL | CyENB_RCVR | CyENB_XMTR); |
1886 | index); | ||
1887 | |||
1888 | cy_writeb(base_addr + (CyCAR << index), (u_char) channel); | ||
1889 | cy_writeb(base_addr + (CyMSVR1 << index), CyRTS); | ||
1890 | cy_writeb(base_addr + (CyMSVR2 << index), CyDTR); | ||
1891 | |||
1892 | #ifdef CY_DEBUG_DTR | ||
1893 | printk(KERN_DEBUG "cyc:startup raising DTR\n"); | ||
1894 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", | ||
1895 | readb(base_addr + (CyMSVR1 << index)), | ||
1896 | readb(base_addr + (CyMSVR2 << index))); | ||
1897 | #endif | ||
1898 | |||
1899 | cy_writeb(base_addr + (CySRER << index), | ||
1900 | readb(base_addr + (CySRER << index)) | CyRxData); | ||
1901 | info->port.flags |= ASYNC_INITIALIZED; | ||
1902 | |||
1903 | if (info->port.tty) | ||
1904 | clear_bit(TTY_IO_ERROR, &info->port.tty->flags); | ||
1905 | info->xmit_cnt = info->xmit_head = info->xmit_tail = 0; | ||
1906 | info->breakon = info->breakoff = 0; | ||
1907 | memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats)); | ||
1908 | info->idle_stats.in_use = | ||
1909 | info->idle_stats.recv_idle = | ||
1910 | info->idle_stats.xmit_idle = jiffies; | ||
1911 | 1341 | ||
1912 | spin_unlock_irqrestore(&card->card_lock, flags); | 1342 | cyy_change_rts_dtr(info, TIOCM_RTS | TIOCM_DTR, 0); |
1913 | 1343 | ||
1344 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyRxData); | ||
1914 | } else { | 1345 | } else { |
1915 | struct FIRM_ID __iomem *firm_id; | 1346 | struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl; |
1916 | struct ZFW_CTRL __iomem *zfw_ctrl; | ||
1917 | struct BOARD_CTRL __iomem *board_ctrl; | ||
1918 | struct CH_CTRL __iomem *ch_ctrl; | ||
1919 | 1347 | ||
1920 | base_addr = card->base_addr; | ||
1921 | |||
1922 | firm_id = base_addr + ID_ADDRESS; | ||
1923 | if (!cyz_is_loaded(card)) | 1348 | if (!cyz_is_loaded(card)) |
1924 | return -ENODEV; | 1349 | return -ENODEV; |
1925 | 1350 | ||
1926 | zfw_ctrl = card->base_addr + | ||
1927 | (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
1928 | board_ctrl = &zfw_ctrl->board_ctrl; | ||
1929 | ch_ctrl = zfw_ctrl->ch_ctrl; | ||
1930 | |||
1931 | #ifdef CY_DEBUG_OPEN | 1351 | #ifdef CY_DEBUG_OPEN |
1932 | printk(KERN_DEBUG "cyc startup Z card %d, channel %d, " | 1352 | printk(KERN_DEBUG "cyc startup Z card %d, channel %d, " |
1933 | "base_addr %p\n", card, channel, base_addr); | 1353 | "base_addr %p\n", card, channel, card->base_addr); |
1934 | #endif | 1354 | #endif |
1935 | spin_lock_irqsave(&card->card_lock, flags); | 1355 | spin_lock_irqsave(&card->card_lock, flags); |
1936 | 1356 | ||
1937 | cy_writel(&ch_ctrl[channel].op_mode, C_CH_ENABLE); | 1357 | cy_writel(&ch_ctrl->op_mode, C_CH_ENABLE); |
1938 | #ifdef Z_WAKE | 1358 | #ifdef Z_WAKE |
1939 | #ifdef CONFIG_CYZ_INTR | 1359 | #ifdef CONFIG_CYZ_INTR |
1940 | cy_writel(&ch_ctrl[channel].intr_enable, | 1360 | cy_writel(&ch_ctrl->intr_enable, |
1941 | C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM | | 1361 | C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM | |
1942 | C_IN_RXNNDT | C_IN_IOCTLW | C_IN_MDCD); | 1362 | C_IN_RXNNDT | C_IN_IOCTLW | C_IN_MDCD); |
1943 | #else | 1363 | #else |
1944 | cy_writel(&ch_ctrl[channel].intr_enable, | 1364 | cy_writel(&ch_ctrl->intr_enable, |
1945 | C_IN_IOCTLW | C_IN_MDCD); | 1365 | C_IN_IOCTLW | C_IN_MDCD); |
1946 | #endif /* CONFIG_CYZ_INTR */ | 1366 | #endif /* CONFIG_CYZ_INTR */ |
1947 | #else | 1367 | #else |
1948 | #ifdef CONFIG_CYZ_INTR | 1368 | #ifdef CONFIG_CYZ_INTR |
1949 | cy_writel(&ch_ctrl[channel].intr_enable, | 1369 | cy_writel(&ch_ctrl->intr_enable, |
1950 | C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM | | 1370 | C_IN_TXBEMPTY | C_IN_TXLOWWM | C_IN_RXHIWM | |
1951 | C_IN_RXNNDT | C_IN_MDCD); | 1371 | C_IN_RXNNDT | C_IN_MDCD); |
1952 | #else | 1372 | #else |
1953 | cy_writel(&ch_ctrl[channel].intr_enable, C_IN_MDCD); | 1373 | cy_writel(&ch_ctrl->intr_enable, C_IN_MDCD); |
1954 | #endif /* CONFIG_CYZ_INTR */ | 1374 | #endif /* CONFIG_CYZ_INTR */ |
1955 | #endif /* Z_WAKE */ | 1375 | #endif /* Z_WAKE */ |
1956 | 1376 | ||
@@ -1969,32 +1389,22 @@ static int startup(struct cyclades_port *info) | |||
1969 | 1389 | ||
1970 | /* set timeout !!! */ | 1390 | /* set timeout !!! */ |
1971 | /* set RTS and DTR !!! */ | 1391 | /* set RTS and DTR !!! */ |
1972 | cy_writel(&ch_ctrl[channel].rs_control, | 1392 | tty_port_raise_dtr_rts(&info->port); |
1973 | readl(&ch_ctrl[channel].rs_control) | C_RS_RTS | | ||
1974 | C_RS_DTR); | ||
1975 | retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L); | ||
1976 | if (retval != 0) { | ||
1977 | printk(KERN_ERR "cyc:startup(3) retval on ttyC%d was " | ||
1978 | "%x\n", info->line, retval); | ||
1979 | } | ||
1980 | #ifdef CY_DEBUG_DTR | ||
1981 | printk(KERN_DEBUG "cyc:startup raising Z DTR\n"); | ||
1982 | #endif | ||
1983 | 1393 | ||
1984 | /* enable send, recv, modem !!! */ | 1394 | /* enable send, recv, modem !!! */ |
1395 | } | ||
1985 | 1396 | ||
1986 | info->port.flags |= ASYNC_INITIALIZED; | 1397 | info->port.flags |= ASYNC_INITIALIZED; |
1987 | if (info->port.tty) | ||
1988 | clear_bit(TTY_IO_ERROR, &info->port.tty->flags); | ||
1989 | info->xmit_cnt = info->xmit_head = info->xmit_tail = 0; | ||
1990 | info->breakon = info->breakoff = 0; | ||
1991 | memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats)); | ||
1992 | info->idle_stats.in_use = | ||
1993 | info->idle_stats.recv_idle = | ||
1994 | info->idle_stats.xmit_idle = jiffies; | ||
1995 | 1398 | ||
1996 | spin_unlock_irqrestore(&card->card_lock, flags); | 1399 | clear_bit(TTY_IO_ERROR, &tty->flags); |
1997 | } | 1400 | info->xmit_cnt = info->xmit_head = info->xmit_tail = 0; |
1401 | info->breakon = info->breakoff = 0; | ||
1402 | memset((char *)&info->idle_stats, 0, sizeof(info->idle_stats)); | ||
1403 | info->idle_stats.in_use = | ||
1404 | info->idle_stats.recv_idle = | ||
1405 | info->idle_stats.xmit_idle = jiffies; | ||
1406 | |||
1407 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
1998 | 1408 | ||
1999 | #ifdef CY_DEBUG_OPEN | 1409 | #ifdef CY_DEBUG_OPEN |
2000 | printk(KERN_DEBUG "cyc startup done\n"); | 1410 | printk(KERN_DEBUG "cyc startup done\n"); |
@@ -2003,28 +1413,20 @@ static int startup(struct cyclades_port *info) | |||
2003 | 1413 | ||
2004 | errout: | 1414 | errout: |
2005 | spin_unlock_irqrestore(&card->card_lock, flags); | 1415 | spin_unlock_irqrestore(&card->card_lock, flags); |
1416 | free_page(page); | ||
2006 | return retval; | 1417 | return retval; |
2007 | } /* startup */ | 1418 | } /* startup */ |
2008 | 1419 | ||
2009 | static void start_xmit(struct cyclades_port *info) | 1420 | static void start_xmit(struct cyclades_port *info) |
2010 | { | 1421 | { |
2011 | struct cyclades_card *card; | 1422 | struct cyclades_card *card = info->card; |
2012 | unsigned long flags; | 1423 | unsigned long flags; |
2013 | void __iomem *base_addr; | 1424 | int channel = info->line - card->first_line; |
2014 | int chip, channel, index; | ||
2015 | 1425 | ||
2016 | card = info->card; | ||
2017 | channel = info->line - card->first_line; | ||
2018 | if (!cy_is_Z(card)) { | 1426 | if (!cy_is_Z(card)) { |
2019 | chip = channel >> 2; | ||
2020 | channel &= 0x03; | ||
2021 | index = card->bus_index; | ||
2022 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | ||
2023 | |||
2024 | spin_lock_irqsave(&card->card_lock, flags); | 1427 | spin_lock_irqsave(&card->card_lock, flags); |
2025 | cy_writeb(base_addr + (CyCAR << index), channel); | 1428 | cyy_writeb(info, CyCAR, channel & 0x03); |
2026 | cy_writeb(base_addr + (CySRER << index), | 1429 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyTxRdy); |
2027 | readb(base_addr + (CySRER << index)) | CyTxRdy); | ||
2028 | spin_unlock_irqrestore(&card->card_lock, flags); | 1430 | spin_unlock_irqrestore(&card->card_lock, flags); |
2029 | } else { | 1431 | } else { |
2030 | #ifdef CONFIG_CYZ_INTR | 1432 | #ifdef CONFIG_CYZ_INTR |
@@ -2047,12 +1449,11 @@ static void start_xmit(struct cyclades_port *info) | |||
2047 | * This routine shuts down a serial port; interrupts are disabled, | 1449 | * This routine shuts down a serial port; interrupts are disabled, |
2048 | * and DTR is dropped if the hangup on close termio flag is on. | 1450 | * and DTR is dropped if the hangup on close termio flag is on. |
2049 | */ | 1451 | */ |
2050 | static void shutdown(struct cyclades_port *info) | 1452 | static void cy_shutdown(struct cyclades_port *info, struct tty_struct *tty) |
2051 | { | 1453 | { |
2052 | struct cyclades_card *card; | 1454 | struct cyclades_card *card; |
2053 | unsigned long flags; | 1455 | unsigned long flags; |
2054 | void __iomem *base_addr; | 1456 | int channel; |
2055 | int chip, channel, index; | ||
2056 | 1457 | ||
2057 | if (!(info->port.flags & ASYNC_INITIALIZED)) | 1458 | if (!(info->port.flags & ASYNC_INITIALIZED)) |
2058 | return; | 1459 | return; |
@@ -2060,21 +1461,10 @@ static void shutdown(struct cyclades_port *info) | |||
2060 | card = info->card; | 1461 | card = info->card; |
2061 | channel = info->line - card->first_line; | 1462 | channel = info->line - card->first_line; |
2062 | if (!cy_is_Z(card)) { | 1463 | if (!cy_is_Z(card)) { |
2063 | chip = channel >> 2; | ||
2064 | channel &= 0x03; | ||
2065 | index = card->bus_index; | ||
2066 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | ||
2067 | |||
2068 | #ifdef CY_DEBUG_OPEN | ||
2069 | printk(KERN_DEBUG "cyc shutdown Y card %d, chip %d, " | ||
2070 | "channel %d, base_addr %p\n", | ||
2071 | card, chip, channel, base_addr); | ||
2072 | #endif | ||
2073 | |||
2074 | spin_lock_irqsave(&card->card_lock, flags); | 1464 | spin_lock_irqsave(&card->card_lock, flags); |
2075 | 1465 | ||
2076 | /* Clear delta_msr_wait queue to avoid mem leaks. */ | 1466 | /* Clear delta_msr_wait queue to avoid mem leaks. */ |
2077 | wake_up_interruptible(&info->delta_msr_wait); | 1467 | wake_up_interruptible(&info->port.delta_msr_wait); |
2078 | 1468 | ||
2079 | if (info->port.xmit_buf) { | 1469 | if (info->port.xmit_buf) { |
2080 | unsigned char *temp; | 1470 | unsigned char *temp; |
@@ -2082,47 +1472,25 @@ static void shutdown(struct cyclades_port *info) | |||
2082 | info->port.xmit_buf = NULL; | 1472 | info->port.xmit_buf = NULL; |
2083 | free_page((unsigned long)temp); | 1473 | free_page((unsigned long)temp); |
2084 | } | 1474 | } |
2085 | cy_writeb(base_addr + (CyCAR << index), (u_char) channel); | 1475 | if (tty->termios->c_cflag & HUPCL) |
2086 | if (!info->port.tty || (info->port.tty->termios->c_cflag & HUPCL)) { | 1476 | cyy_change_rts_dtr(info, 0, TIOCM_RTS | TIOCM_DTR); |
2087 | cy_writeb(base_addr + (CyMSVR1 << index), ~CyRTS); | 1477 | |
2088 | cy_writeb(base_addr + (CyMSVR2 << index), ~CyDTR); | 1478 | cyy_issue_cmd(info, CyCHAN_CTL | CyDIS_RCVR); |
2089 | #ifdef CY_DEBUG_DTR | ||
2090 | printk(KERN_DEBUG "cyc shutdown dropping DTR\n"); | ||
2091 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", | ||
2092 | readb(base_addr + (CyMSVR1 << index)), | ||
2093 | readb(base_addr + (CyMSVR2 << index))); | ||
2094 | #endif | ||
2095 | } | ||
2096 | cyy_issue_cmd(base_addr, CyCHAN_CTL | CyDIS_RCVR, index); | ||
2097 | /* it may be appropriate to clear _XMIT at | 1479 | /* it may be appropriate to clear _XMIT at |
2098 | some later date (after testing)!!! */ | 1480 | some later date (after testing)!!! */ |
2099 | 1481 | ||
2100 | if (info->port.tty) | 1482 | set_bit(TTY_IO_ERROR, &tty->flags); |
2101 | set_bit(TTY_IO_ERROR, &info->port.tty->flags); | ||
2102 | info->port.flags &= ~ASYNC_INITIALIZED; | 1483 | info->port.flags &= ~ASYNC_INITIALIZED; |
2103 | spin_unlock_irqrestore(&card->card_lock, flags); | 1484 | spin_unlock_irqrestore(&card->card_lock, flags); |
2104 | } else { | 1485 | } else { |
2105 | struct FIRM_ID __iomem *firm_id; | ||
2106 | struct ZFW_CTRL __iomem *zfw_ctrl; | ||
2107 | struct BOARD_CTRL __iomem *board_ctrl; | ||
2108 | struct CH_CTRL __iomem *ch_ctrl; | ||
2109 | int retval; | ||
2110 | |||
2111 | base_addr = card->base_addr; | ||
2112 | #ifdef CY_DEBUG_OPEN | 1486 | #ifdef CY_DEBUG_OPEN |
2113 | printk(KERN_DEBUG "cyc shutdown Z card %d, channel %d, " | 1487 | printk(KERN_DEBUG "cyc shutdown Z card %d, channel %d, " |
2114 | "base_addr %p\n", card, channel, base_addr); | 1488 | "base_addr %p\n", card, channel, card->base_addr); |
2115 | #endif | 1489 | #endif |
2116 | 1490 | ||
2117 | firm_id = base_addr + ID_ADDRESS; | ||
2118 | if (!cyz_is_loaded(card)) | 1491 | if (!cyz_is_loaded(card)) |
2119 | return; | 1492 | return; |
2120 | 1493 | ||
2121 | zfw_ctrl = card->base_addr + | ||
2122 | (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
2123 | board_ctrl = &zfw_ctrl->board_ctrl; | ||
2124 | ch_ctrl = zfw_ctrl->ch_ctrl; | ||
2125 | |||
2126 | spin_lock_irqsave(&card->card_lock, flags); | 1494 | spin_lock_irqsave(&card->card_lock, flags); |
2127 | 1495 | ||
2128 | if (info->port.xmit_buf) { | 1496 | if (info->port.xmit_buf) { |
@@ -2132,23 +1500,10 @@ static void shutdown(struct cyclades_port *info) | |||
2132 | free_page((unsigned long)temp); | 1500 | free_page((unsigned long)temp); |
2133 | } | 1501 | } |
2134 | 1502 | ||
2135 | if (!info->port.tty || (info->port.tty->termios->c_cflag & HUPCL)) { | 1503 | if (tty->termios->c_cflag & HUPCL) |
2136 | cy_writel(&ch_ctrl[channel].rs_control, | 1504 | tty_port_lower_dtr_rts(&info->port); |
2137 | (__u32)(readl(&ch_ctrl[channel].rs_control) & | ||
2138 | ~(C_RS_RTS | C_RS_DTR))); | ||
2139 | retval = cyz_issue_cmd(info->card, channel, | ||
2140 | C_CM_IOCTLM, 0L); | ||
2141 | if (retval != 0) { | ||
2142 | printk(KERN_ERR"cyc:shutdown retval on ttyC%d " | ||
2143 | "was %x\n", info->line, retval); | ||
2144 | } | ||
2145 | #ifdef CY_DEBUG_DTR | ||
2146 | printk(KERN_DEBUG "cyc:shutdown dropping Z DTR\n"); | ||
2147 | #endif | ||
2148 | } | ||
2149 | 1505 | ||
2150 | if (info->port.tty) | 1506 | set_bit(TTY_IO_ERROR, &tty->flags); |
2151 | set_bit(TTY_IO_ERROR, &info->port.tty->flags); | ||
2152 | info->port.flags &= ~ASYNC_INITIALIZED; | 1507 | info->port.flags &= ~ASYNC_INITIALIZED; |
2153 | 1508 | ||
2154 | spin_unlock_irqrestore(&card->card_lock, flags); | 1509 | spin_unlock_irqrestore(&card->card_lock, flags); |
@@ -2165,199 +1520,6 @@ static void shutdown(struct cyclades_port *info) | |||
2165 | * ------------------------------------------------------------ | 1520 | * ------------------------------------------------------------ |
2166 | */ | 1521 | */ |
2167 | 1522 | ||
2168 | static int | ||
2169 | block_til_ready(struct tty_struct *tty, struct file *filp, | ||
2170 | struct cyclades_port *info) | ||
2171 | { | ||
2172 | DECLARE_WAITQUEUE(wait, current); | ||
2173 | struct cyclades_card *cinfo; | ||
2174 | unsigned long flags; | ||
2175 | int chip, channel, index; | ||
2176 | int retval; | ||
2177 | void __iomem *base_addr; | ||
2178 | |||
2179 | cinfo = info->card; | ||
2180 | channel = info->line - cinfo->first_line; | ||
2181 | |||
2182 | /* | ||
2183 | * If the device is in the middle of being closed, then block | ||
2184 | * until it's done, and then try again. | ||
2185 | */ | ||
2186 | if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) { | ||
2187 | wait_event_interruptible(info->port.close_wait, | ||
2188 | !(info->port.flags & ASYNC_CLOSING)); | ||
2189 | return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS; | ||
2190 | } | ||
2191 | |||
2192 | /* | ||
2193 | * If non-blocking mode is set, then make the check up front | ||
2194 | * and then exit. | ||
2195 | */ | ||
2196 | if ((filp->f_flags & O_NONBLOCK) || | ||
2197 | (tty->flags & (1 << TTY_IO_ERROR))) { | ||
2198 | info->port.flags |= ASYNC_NORMAL_ACTIVE; | ||
2199 | return 0; | ||
2200 | } | ||
2201 | |||
2202 | /* | ||
2203 | * Block waiting for the carrier detect and the line to become | ||
2204 | * free (i.e., not in use by the callout). While we are in | ||
2205 | * this loop, info->port.count is dropped by one, so that | ||
2206 | * cy_close() knows when to free things. We restore it upon | ||
2207 | * exit, either normal or abnormal. | ||
2208 | */ | ||
2209 | retval = 0; | ||
2210 | add_wait_queue(&info->port.open_wait, &wait); | ||
2211 | #ifdef CY_DEBUG_OPEN | ||
2212 | printk(KERN_DEBUG "cyc block_til_ready before block: ttyC%d, " | ||
2213 | "count = %d\n", info->line, info->port.count); | ||
2214 | #endif | ||
2215 | spin_lock_irqsave(&cinfo->card_lock, flags); | ||
2216 | if (!tty_hung_up_p(filp)) | ||
2217 | info->port.count--; | ||
2218 | spin_unlock_irqrestore(&cinfo->card_lock, flags); | ||
2219 | #ifdef CY_DEBUG_COUNT | ||
2220 | printk(KERN_DEBUG "cyc block_til_ready: (%d): decrementing count to " | ||
2221 | "%d\n", current->pid, info->port.count); | ||
2222 | #endif | ||
2223 | info->port.blocked_open++; | ||
2224 | |||
2225 | if (!cy_is_Z(cinfo)) { | ||
2226 | chip = channel >> 2; | ||
2227 | channel &= 0x03; | ||
2228 | index = cinfo->bus_index; | ||
2229 | base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index); | ||
2230 | |||
2231 | while (1) { | ||
2232 | spin_lock_irqsave(&cinfo->card_lock, flags); | ||
2233 | if ((tty->termios->c_cflag & CBAUD)) { | ||
2234 | cy_writeb(base_addr + (CyCAR << index), | ||
2235 | (u_char) channel); | ||
2236 | cy_writeb(base_addr + (CyMSVR1 << index), | ||
2237 | CyRTS); | ||
2238 | cy_writeb(base_addr + (CyMSVR2 << index), | ||
2239 | CyDTR); | ||
2240 | #ifdef CY_DEBUG_DTR | ||
2241 | printk(KERN_DEBUG "cyc:block_til_ready raising " | ||
2242 | "DTR\n"); | ||
2243 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", | ||
2244 | readb(base_addr + (CyMSVR1 << index)), | ||
2245 | readb(base_addr + (CyMSVR2 << index))); | ||
2246 | #endif | ||
2247 | } | ||
2248 | spin_unlock_irqrestore(&cinfo->card_lock, flags); | ||
2249 | |||
2250 | set_current_state(TASK_INTERRUPTIBLE); | ||
2251 | if (tty_hung_up_p(filp) || | ||
2252 | !(info->port.flags & ASYNC_INITIALIZED)) { | ||
2253 | retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ? | ||
2254 | -EAGAIN : -ERESTARTSYS); | ||
2255 | break; | ||
2256 | } | ||
2257 | |||
2258 | spin_lock_irqsave(&cinfo->card_lock, flags); | ||
2259 | cy_writeb(base_addr + (CyCAR << index), | ||
2260 | (u_char) channel); | ||
2261 | if (!(info->port.flags & ASYNC_CLOSING) && (C_CLOCAL(tty) || | ||
2262 | (readb(base_addr + | ||
2263 | (CyMSVR1 << index)) & CyDCD))) { | ||
2264 | spin_unlock_irqrestore(&cinfo->card_lock, flags); | ||
2265 | break; | ||
2266 | } | ||
2267 | spin_unlock_irqrestore(&cinfo->card_lock, flags); | ||
2268 | |||
2269 | if (signal_pending(current)) { | ||
2270 | retval = -ERESTARTSYS; | ||
2271 | break; | ||
2272 | } | ||
2273 | #ifdef CY_DEBUG_OPEN | ||
2274 | printk(KERN_DEBUG "cyc block_til_ready blocking: " | ||
2275 | "ttyC%d, count = %d\n", | ||
2276 | info->line, info->port.count); | ||
2277 | #endif | ||
2278 | schedule(); | ||
2279 | } | ||
2280 | } else { | ||
2281 | struct FIRM_ID __iomem *firm_id; | ||
2282 | struct ZFW_CTRL __iomem *zfw_ctrl; | ||
2283 | struct BOARD_CTRL __iomem *board_ctrl; | ||
2284 | struct CH_CTRL __iomem *ch_ctrl; | ||
2285 | |||
2286 | base_addr = cinfo->base_addr; | ||
2287 | firm_id = base_addr + ID_ADDRESS; | ||
2288 | if (!cyz_is_loaded(cinfo)) { | ||
2289 | __set_current_state(TASK_RUNNING); | ||
2290 | remove_wait_queue(&info->port.open_wait, &wait); | ||
2291 | return -EINVAL; | ||
2292 | } | ||
2293 | |||
2294 | zfw_ctrl = base_addr + (readl(&firm_id->zfwctrl_addr) | ||
2295 | & 0xfffff); | ||
2296 | board_ctrl = &zfw_ctrl->board_ctrl; | ||
2297 | ch_ctrl = zfw_ctrl->ch_ctrl; | ||
2298 | |||
2299 | while (1) { | ||
2300 | if ((tty->termios->c_cflag & CBAUD)) { | ||
2301 | cy_writel(&ch_ctrl[channel].rs_control, | ||
2302 | readl(&ch_ctrl[channel].rs_control) | | ||
2303 | C_RS_RTS | C_RS_DTR); | ||
2304 | retval = cyz_issue_cmd(cinfo, | ||
2305 | channel, C_CM_IOCTLM, 0L); | ||
2306 | if (retval != 0) { | ||
2307 | printk(KERN_ERR "cyc:block_til_ready " | ||
2308 | "retval on ttyC%d was %x\n", | ||
2309 | info->line, retval); | ||
2310 | } | ||
2311 | #ifdef CY_DEBUG_DTR | ||
2312 | printk(KERN_DEBUG "cyc:block_til_ready raising " | ||
2313 | "Z DTR\n"); | ||
2314 | #endif | ||
2315 | } | ||
2316 | |||
2317 | set_current_state(TASK_INTERRUPTIBLE); | ||
2318 | if (tty_hung_up_p(filp) || | ||
2319 | !(info->port.flags & ASYNC_INITIALIZED)) { | ||
2320 | retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ? | ||
2321 | -EAGAIN : -ERESTARTSYS); | ||
2322 | break; | ||
2323 | } | ||
2324 | if (!(info->port.flags & ASYNC_CLOSING) && (C_CLOCAL(tty) || | ||
2325 | (readl(&ch_ctrl[channel].rs_status) & | ||
2326 | C_RS_DCD))) { | ||
2327 | break; | ||
2328 | } | ||
2329 | if (signal_pending(current)) { | ||
2330 | retval = -ERESTARTSYS; | ||
2331 | break; | ||
2332 | } | ||
2333 | #ifdef CY_DEBUG_OPEN | ||
2334 | printk(KERN_DEBUG "cyc block_til_ready blocking: " | ||
2335 | "ttyC%d, count = %d\n", | ||
2336 | info->line, info->port.count); | ||
2337 | #endif | ||
2338 | schedule(); | ||
2339 | } | ||
2340 | } | ||
2341 | __set_current_state(TASK_RUNNING); | ||
2342 | remove_wait_queue(&info->port.open_wait, &wait); | ||
2343 | if (!tty_hung_up_p(filp)) { | ||
2344 | info->port.count++; | ||
2345 | #ifdef CY_DEBUG_COUNT | ||
2346 | printk(KERN_DEBUG "cyc:block_til_ready (%d): incrementing " | ||
2347 | "count to %d\n", current->pid, info->port.count); | ||
2348 | #endif | ||
2349 | } | ||
2350 | info->port.blocked_open--; | ||
2351 | #ifdef CY_DEBUG_OPEN | ||
2352 | printk(KERN_DEBUG "cyc:block_til_ready after blocking: ttyC%d, " | ||
2353 | "count = %d\n", info->line, info->port.count); | ||
2354 | #endif | ||
2355 | if (retval) | ||
2356 | return retval; | ||
2357 | info->port.flags |= ASYNC_NORMAL_ACTIVE; | ||
2358 | return 0; | ||
2359 | } /* block_til_ready */ | ||
2360 | |||
2361 | /* | 1523 | /* |
2362 | * This routine is called whenever a serial port is opened. It | 1524 | * This routine is called whenever a serial port is opened. It |
2363 | * performs the serial-specific initialization for the tty structure. | 1525 | * performs the serial-specific initialization for the tty structure. |
@@ -2436,7 +1598,6 @@ static int cy_open(struct tty_struct *tty, struct file *filp) | |||
2436 | printk(KERN_DEBUG "cyc:cy_open ttyC%d\n", info->line); | 1598 | printk(KERN_DEBUG "cyc:cy_open ttyC%d\n", info->line); |
2437 | #endif | 1599 | #endif |
2438 | tty->driver_data = info; | 1600 | tty->driver_data = info; |
2439 | info->port.tty = tty; | ||
2440 | if (serial_paranoia_check(info, tty->name, "cy_open")) | 1601 | if (serial_paranoia_check(info, tty->name, "cy_open")) |
2441 | return -ENODEV; | 1602 | return -ENODEV; |
2442 | 1603 | ||
@@ -2462,11 +1623,11 @@ static int cy_open(struct tty_struct *tty, struct file *filp) | |||
2462 | /* | 1623 | /* |
2463 | * Start up serial port | 1624 | * Start up serial port |
2464 | */ | 1625 | */ |
2465 | retval = startup(info); | 1626 | retval = cy_startup(info, tty); |
2466 | if (retval) | 1627 | if (retval) |
2467 | return retval; | 1628 | return retval; |
2468 | 1629 | ||
2469 | retval = block_til_ready(tty, filp, info); | 1630 | retval = tty_port_block_til_ready(&info->port, tty, filp); |
2470 | if (retval) { | 1631 | if (retval) { |
2471 | #ifdef CY_DEBUG_OPEN | 1632 | #ifdef CY_DEBUG_OPEN |
2472 | printk(KERN_DEBUG "cyc:cy_open returning after block_til_ready " | 1633 | printk(KERN_DEBUG "cyc:cy_open returning after block_til_ready " |
@@ -2476,6 +1637,7 @@ static int cy_open(struct tty_struct *tty, struct file *filp) | |||
2476 | } | 1637 | } |
2477 | 1638 | ||
2478 | info->throttle = 0; | 1639 | info->throttle = 0; |
1640 | tty_port_tty_set(&info->port, tty); | ||
2479 | 1641 | ||
2480 | #ifdef CY_DEBUG_OPEN | 1642 | #ifdef CY_DEBUG_OPEN |
2481 | printk(KERN_DEBUG "cyc:cy_open done\n"); | 1643 | printk(KERN_DEBUG "cyc:cy_open done\n"); |
@@ -2490,8 +1652,6 @@ static void cy_wait_until_sent(struct tty_struct *tty, int timeout) | |||
2490 | { | 1652 | { |
2491 | struct cyclades_card *card; | 1653 | struct cyclades_card *card; |
2492 | struct cyclades_port *info = tty->driver_data; | 1654 | struct cyclades_port *info = tty->driver_data; |
2493 | void __iomem *base_addr; | ||
2494 | int chip, channel, index; | ||
2495 | unsigned long orig_jiffies; | 1655 | unsigned long orig_jiffies; |
2496 | int char_time; | 1656 | int char_time; |
2497 | 1657 | ||
@@ -2535,13 +1695,8 @@ static void cy_wait_until_sent(struct tty_struct *tty, int timeout) | |||
2535 | timeout, char_time, jiffies); | 1695 | timeout, char_time, jiffies); |
2536 | #endif | 1696 | #endif |
2537 | card = info->card; | 1697 | card = info->card; |
2538 | channel = (info->line) - (card->first_line); | ||
2539 | if (!cy_is_Z(card)) { | 1698 | if (!cy_is_Z(card)) { |
2540 | chip = channel >> 2; | 1699 | while (cyy_readb(info, CySRER) & CyTxRdy) { |
2541 | channel &= 0x03; | ||
2542 | index = card->bus_index; | ||
2543 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | ||
2544 | while (readb(base_addr + (CySRER << index)) & CyTxRdy) { | ||
2545 | #ifdef CY_DEBUG_WAIT_UNTIL_SENT | 1700 | #ifdef CY_DEBUG_WAIT_UNTIL_SENT |
2546 | printk(KERN_DEBUG "Not clean (jiff=%lu)...", jiffies); | 1701 | printk(KERN_DEBUG "Not clean (jiff=%lu)...", jiffies); |
2547 | #endif | 1702 | #endif |
@@ -2595,103 +1750,37 @@ static void cy_flush_buffer(struct tty_struct *tty) | |||
2595 | } /* cy_flush_buffer */ | 1750 | } /* cy_flush_buffer */ |
2596 | 1751 | ||
2597 | 1752 | ||
2598 | /* | 1753 | static void cy_do_close(struct tty_port *port) |
2599 | * This routine is called when a particular tty device is closed. | ||
2600 | */ | ||
2601 | static void cy_close(struct tty_struct *tty, struct file *filp) | ||
2602 | { | 1754 | { |
2603 | struct cyclades_port *info = tty->driver_data; | 1755 | struct cyclades_port *info = container_of(port, struct cyclades_port, |
1756 | port); | ||
2604 | struct cyclades_card *card; | 1757 | struct cyclades_card *card; |
2605 | unsigned long flags; | 1758 | unsigned long flags; |
2606 | 1759 | int channel; | |
2607 | #ifdef CY_DEBUG_OTHER | ||
2608 | printk(KERN_DEBUG "cyc:cy_close ttyC%d\n", info->line); | ||
2609 | #endif | ||
2610 | |||
2611 | if (!info || serial_paranoia_check(info, tty->name, "cy_close")) | ||
2612 | return; | ||
2613 | 1760 | ||
2614 | card = info->card; | 1761 | card = info->card; |
2615 | 1762 | channel = info->line - card->first_line; | |
2616 | spin_lock_irqsave(&card->card_lock, flags); | ||
2617 | /* If the TTY is being hung up, nothing to do */ | ||
2618 | if (tty_hung_up_p(filp)) { | ||
2619 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
2620 | return; | ||
2621 | } | ||
2622 | #ifdef CY_DEBUG_OPEN | ||
2623 | printk(KERN_DEBUG "cyc:cy_close ttyC%d, count = %d\n", info->line, | ||
2624 | info->port.count); | ||
2625 | #endif | ||
2626 | if ((tty->count == 1) && (info->port.count != 1)) { | ||
2627 | /* | ||
2628 | * Uh, oh. tty->count is 1, which means that the tty | ||
2629 | * structure will be freed. Info->count should always | ||
2630 | * be one in these conditions. If it's greater than | ||
2631 | * one, we've got real problems, since it means the | ||
2632 | * serial port won't be shutdown. | ||
2633 | */ | ||
2634 | printk(KERN_ERR "cyc:cy_close: bad serial port count; " | ||
2635 | "tty->count is 1, info->port.count is %d\n", info->port.count); | ||
2636 | info->port.count = 1; | ||
2637 | } | ||
2638 | #ifdef CY_DEBUG_COUNT | ||
2639 | printk(KERN_DEBUG "cyc:cy_close at (%d): decrementing count to %d\n", | ||
2640 | current->pid, info->port.count - 1); | ||
2641 | #endif | ||
2642 | if (--info->port.count < 0) { | ||
2643 | #ifdef CY_DEBUG_COUNT | ||
2644 | printk(KERN_DEBUG "cyc:cyc_close setting count to 0\n"); | ||
2645 | #endif | ||
2646 | info->port.count = 0; | ||
2647 | } | ||
2648 | if (info->port.count) { | ||
2649 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
2650 | return; | ||
2651 | } | ||
2652 | info->port.flags |= ASYNC_CLOSING; | ||
2653 | |||
2654 | /* | ||
2655 | * Now we wait for the transmit buffer to clear; and we notify | ||
2656 | * the line discipline to only process XON/XOFF characters. | ||
2657 | */ | ||
2658 | tty->closing = 1; | ||
2659 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
2660 | if (info->port.closing_wait != CY_CLOSING_WAIT_NONE) | ||
2661 | tty_wait_until_sent(tty, info->port.closing_wait); | ||
2662 | |||
2663 | spin_lock_irqsave(&card->card_lock, flags); | 1763 | spin_lock_irqsave(&card->card_lock, flags); |
2664 | 1764 | ||
2665 | if (!cy_is_Z(card)) { | 1765 | if (!cy_is_Z(card)) { |
2666 | int channel = info->line - card->first_line; | ||
2667 | int index = card->bus_index; | ||
2668 | void __iomem *base_addr = card->base_addr + | ||
2669 | (cy_chip_offset[channel >> 2] << index); | ||
2670 | /* Stop accepting input */ | 1766 | /* Stop accepting input */ |
2671 | channel &= 0x03; | 1767 | cyy_writeb(info, CyCAR, channel & 0x03); |
2672 | cy_writeb(base_addr + (CyCAR << index), (u_char) channel); | 1768 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) & ~CyRxData); |
2673 | cy_writeb(base_addr + (CySRER << index), | ||
2674 | readb(base_addr + (CySRER << index)) & ~CyRxData); | ||
2675 | if (info->port.flags & ASYNC_INITIALIZED) { | 1769 | if (info->port.flags & ASYNC_INITIALIZED) { |
2676 | /* Waiting for on-board buffers to be empty before | 1770 | /* Waiting for on-board buffers to be empty before |
2677 | closing the port */ | 1771 | closing the port */ |
2678 | spin_unlock_irqrestore(&card->card_lock, flags); | 1772 | spin_unlock_irqrestore(&card->card_lock, flags); |
2679 | cy_wait_until_sent(tty, info->timeout); | 1773 | cy_wait_until_sent(port->tty, info->timeout); |
2680 | spin_lock_irqsave(&card->card_lock, flags); | 1774 | spin_lock_irqsave(&card->card_lock, flags); |
2681 | } | 1775 | } |
2682 | } else { | 1776 | } else { |
2683 | #ifdef Z_WAKE | 1777 | #ifdef Z_WAKE |
2684 | /* Waiting for on-board buffers to be empty before closing | 1778 | /* Waiting for on-board buffers to be empty before closing |
2685 | the port */ | 1779 | the port */ |
2686 | void __iomem *base_addr = card->base_addr; | 1780 | struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl; |
2687 | struct FIRM_ID __iomem *firm_id = base_addr + ID_ADDRESS; | ||
2688 | struct ZFW_CTRL __iomem *zfw_ctrl = | ||
2689 | base_addr + (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
2690 | struct CH_CTRL __iomem *ch_ctrl = zfw_ctrl->ch_ctrl; | ||
2691 | int channel = info->line - card->first_line; | ||
2692 | int retval; | 1781 | int retval; |
2693 | 1782 | ||
2694 | if (readl(&ch_ctrl[channel].flow_status) != C_FS_TXIDLE) { | 1783 | if (readl(&ch_ctrl->flow_status) != C_FS_TXIDLE) { |
2695 | retval = cyz_issue_cmd(card, channel, C_CM_IOCTLW, 0L); | 1784 | retval = cyz_issue_cmd(card, channel, C_CM_IOCTLW, 0L); |
2696 | if (retval != 0) { | 1785 | if (retval != 0) { |
2697 | printk(KERN_DEBUG "cyc:cy_close retval on " | 1786 | printk(KERN_DEBUG "cyc:cy_close retval on " |
@@ -2703,32 +1792,19 @@ static void cy_close(struct tty_struct *tty, struct file *filp) | |||
2703 | } | 1792 | } |
2704 | #endif | 1793 | #endif |
2705 | } | 1794 | } |
2706 | |||
2707 | spin_unlock_irqrestore(&card->card_lock, flags); | 1795 | spin_unlock_irqrestore(&card->card_lock, flags); |
2708 | shutdown(info); | 1796 | cy_shutdown(info, port->tty); |
2709 | cy_flush_buffer(tty); | 1797 | } |
2710 | tty_ldisc_flush(tty); | ||
2711 | spin_lock_irqsave(&card->card_lock, flags); | ||
2712 | |||
2713 | tty->closing = 0; | ||
2714 | info->port.tty = NULL; | ||
2715 | if (info->port.blocked_open) { | ||
2716 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
2717 | if (info->port.close_delay) { | ||
2718 | msleep_interruptible(jiffies_to_msecs | ||
2719 | (info->port.close_delay)); | ||
2720 | } | ||
2721 | wake_up_interruptible(&info->port.open_wait); | ||
2722 | spin_lock_irqsave(&card->card_lock, flags); | ||
2723 | } | ||
2724 | info->port.flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING); | ||
2725 | wake_up_interruptible(&info->port.close_wait); | ||
2726 | |||
2727 | #ifdef CY_DEBUG_OTHER | ||
2728 | printk(KERN_DEBUG "cyc:cy_close done\n"); | ||
2729 | #endif | ||
2730 | 1798 | ||
2731 | spin_unlock_irqrestore(&card->card_lock, flags); | 1799 | /* |
1800 | * This routine is called when a particular tty device is closed. | ||
1801 | */ | ||
1802 | static void cy_close(struct tty_struct *tty, struct file *filp) | ||
1803 | { | ||
1804 | struct cyclades_port *info = tty->driver_data; | ||
1805 | if (!info || serial_paranoia_check(info, tty->name, "cy_close")) | ||
1806 | return; | ||
1807 | tty_port_close(&info->port, tty, filp); | ||
2732 | } /* cy_close */ | 1808 | } /* cy_close */ |
2733 | 1809 | ||
2734 | /* This routine gets called when tty_write has put something into | 1810 | /* This routine gets called when tty_write has put something into |
@@ -2871,18 +1947,13 @@ static int cy_write_room(struct tty_struct *tty) | |||
2871 | 1947 | ||
2872 | static int cy_chars_in_buffer(struct tty_struct *tty) | 1948 | static int cy_chars_in_buffer(struct tty_struct *tty) |
2873 | { | 1949 | { |
2874 | struct cyclades_card *card; | ||
2875 | struct cyclades_port *info = tty->driver_data; | 1950 | struct cyclades_port *info = tty->driver_data; |
2876 | int channel; | ||
2877 | 1951 | ||
2878 | if (serial_paranoia_check(info, tty->name, "cy_chars_in_buffer")) | 1952 | if (serial_paranoia_check(info, tty->name, "cy_chars_in_buffer")) |
2879 | return 0; | 1953 | return 0; |
2880 | 1954 | ||
2881 | card = info->card; | ||
2882 | channel = (info->line) - (card->first_line); | ||
2883 | |||
2884 | #ifdef Z_EXT_CHARS_IN_BUFFER | 1955 | #ifdef Z_EXT_CHARS_IN_BUFFER |
2885 | if (!cy_is_Z(card)) { | 1956 | if (!cy_is_Z(info->card)) { |
2886 | #endif /* Z_EXT_CHARS_IN_BUFFER */ | 1957 | #endif /* Z_EXT_CHARS_IN_BUFFER */ |
2887 | #ifdef CY_DEBUG_IO | 1958 | #ifdef CY_DEBUG_IO |
2888 | printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n", | 1959 | printk(KERN_DEBUG "cyc:cy_chars_in_buffer ttyC%d %d\n", |
@@ -2891,20 +1962,11 @@ static int cy_chars_in_buffer(struct tty_struct *tty) | |||
2891 | return info->xmit_cnt; | 1962 | return info->xmit_cnt; |
2892 | #ifdef Z_EXT_CHARS_IN_BUFFER | 1963 | #ifdef Z_EXT_CHARS_IN_BUFFER |
2893 | } else { | 1964 | } else { |
2894 | static struct FIRM_ID *firm_id; | 1965 | struct BUF_CTRL __iomem *buf_ctrl = info->u.cyz.buf_ctrl; |
2895 | static struct ZFW_CTRL *zfw_ctrl; | ||
2896 | static struct CH_CTRL *ch_ctrl; | ||
2897 | static struct BUF_CTRL *buf_ctrl; | ||
2898 | int char_count; | 1966 | int char_count; |
2899 | __u32 tx_put, tx_get, tx_bufsize; | 1967 | __u32 tx_put, tx_get, tx_bufsize; |
2900 | 1968 | ||
2901 | lock_kernel(); | 1969 | lock_kernel(); |
2902 | firm_id = card->base_addr + ID_ADDRESS; | ||
2903 | zfw_ctrl = card->base_addr + | ||
2904 | (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
2905 | ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]); | ||
2906 | buf_ctrl = &(zfw_ctrl->buf_ctrl[channel]); | ||
2907 | |||
2908 | tx_get = readl(&buf_ctrl->tx_get); | 1970 | tx_get = readl(&buf_ctrl->tx_get); |
2909 | tx_put = readl(&buf_ctrl->tx_put); | 1971 | tx_put = readl(&buf_ctrl->tx_put); |
2910 | tx_bufsize = readl(&buf_ctrl->tx_bufsize); | 1972 | tx_bufsize = readl(&buf_ctrl->tx_bufsize); |
@@ -2957,48 +2019,44 @@ static void cyy_baud_calc(struct cyclades_port *info, __u32 baud) | |||
2957 | * This routine finds or computes the various line characteristics. | 2019 | * This routine finds or computes the various line characteristics. |
2958 | * It used to be called config_setup | 2020 | * It used to be called config_setup |
2959 | */ | 2021 | */ |
2960 | static void set_line_char(struct cyclades_port *info) | 2022 | static void cy_set_line_char(struct cyclades_port *info, struct tty_struct *tty) |
2961 | { | 2023 | { |
2962 | struct cyclades_card *card; | 2024 | struct cyclades_card *card; |
2963 | unsigned long flags; | 2025 | unsigned long flags; |
2964 | void __iomem *base_addr; | 2026 | int channel; |
2965 | int chip, channel, index; | ||
2966 | unsigned cflag, iflag; | 2027 | unsigned cflag, iflag; |
2967 | int baud, baud_rate = 0; | 2028 | int baud, baud_rate = 0; |
2968 | int i; | 2029 | int i; |
2969 | 2030 | ||
2970 | if (!info->port.tty || !info->port.tty->termios) | 2031 | if (!tty->termios) /* XXX can this happen at all? */ |
2971 | return; | 2032 | return; |
2972 | 2033 | ||
2973 | if (info->line == -1) | 2034 | if (info->line == -1) |
2974 | return; | 2035 | return; |
2975 | 2036 | ||
2976 | cflag = info->port.tty->termios->c_cflag; | 2037 | cflag = tty->termios->c_cflag; |
2977 | iflag = info->port.tty->termios->c_iflag; | 2038 | iflag = tty->termios->c_iflag; |
2978 | 2039 | ||
2979 | /* | 2040 | /* |
2980 | * Set up the tty->alt_speed kludge | 2041 | * Set up the tty->alt_speed kludge |
2981 | */ | 2042 | */ |
2982 | if (info->port.tty) { | 2043 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI) |
2983 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI) | 2044 | tty->alt_speed = 57600; |
2984 | info->port.tty->alt_speed = 57600; | 2045 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI) |
2985 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI) | 2046 | tty->alt_speed = 115200; |
2986 | info->port.tty->alt_speed = 115200; | 2047 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI) |
2987 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI) | 2048 | tty->alt_speed = 230400; |
2988 | info->port.tty->alt_speed = 230400; | 2049 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP) |
2989 | if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP) | 2050 | tty->alt_speed = 460800; |
2990 | info->port.tty->alt_speed = 460800; | ||
2991 | } | ||
2992 | 2051 | ||
2993 | card = info->card; | 2052 | card = info->card; |
2994 | channel = info->line - card->first_line; | 2053 | channel = info->line - card->first_line; |
2995 | 2054 | ||
2996 | if (!cy_is_Z(card)) { | 2055 | if (!cy_is_Z(card)) { |
2997 | 2056 | u32 cflags; | |
2998 | index = card->bus_index; | ||
2999 | 2057 | ||
3000 | /* baud rate */ | 2058 | /* baud rate */ |
3001 | baud = tty_get_baud_rate(info->port.tty); | 2059 | baud = tty_get_baud_rate(tty); |
3002 | if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) == | 2060 | if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) == |
3003 | ASYNC_SPD_CUST) { | 2061 | ASYNC_SPD_CUST) { |
3004 | if (info->custom_divisor) | 2062 | if (info->custom_divisor) |
@@ -3107,124 +2165,68 @@ static void set_line_char(struct cyclades_port *info) | |||
3107 | cable. Contact Marcio Saito for details. | 2165 | cable. Contact Marcio Saito for details. |
3108 | ***********************************************/ | 2166 | ***********************************************/ |
3109 | 2167 | ||
3110 | chip = channel >> 2; | ||
3111 | channel &= 0x03; | 2168 | channel &= 0x03; |
3112 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | ||
3113 | 2169 | ||
3114 | spin_lock_irqsave(&card->card_lock, flags); | 2170 | spin_lock_irqsave(&card->card_lock, flags); |
3115 | cy_writeb(base_addr + (CyCAR << index), (u_char) channel); | 2171 | cyy_writeb(info, CyCAR, channel); |
3116 | 2172 | ||
3117 | /* tx and rx baud rate */ | 2173 | /* tx and rx baud rate */ |
3118 | 2174 | ||
3119 | cy_writeb(base_addr + (CyTCOR << index), info->tco); | 2175 | cyy_writeb(info, CyTCOR, info->tco); |
3120 | cy_writeb(base_addr + (CyTBPR << index), info->tbpr); | 2176 | cyy_writeb(info, CyTBPR, info->tbpr); |
3121 | cy_writeb(base_addr + (CyRCOR << index), info->rco); | 2177 | cyy_writeb(info, CyRCOR, info->rco); |
3122 | cy_writeb(base_addr + (CyRBPR << index), info->rbpr); | 2178 | cyy_writeb(info, CyRBPR, info->rbpr); |
3123 | 2179 | ||
3124 | /* set line characteristics according configuration */ | 2180 | /* set line characteristics according configuration */ |
3125 | 2181 | ||
3126 | cy_writeb(base_addr + (CySCHR1 << index), | 2182 | cyy_writeb(info, CySCHR1, START_CHAR(tty)); |
3127 | START_CHAR(info->port.tty)); | 2183 | cyy_writeb(info, CySCHR2, STOP_CHAR(tty)); |
3128 | cy_writeb(base_addr + (CySCHR2 << index), STOP_CHAR(info->port.tty)); | 2184 | cyy_writeb(info, CyCOR1, info->cor1); |
3129 | cy_writeb(base_addr + (CyCOR1 << index), info->cor1); | 2185 | cyy_writeb(info, CyCOR2, info->cor2); |
3130 | cy_writeb(base_addr + (CyCOR2 << index), info->cor2); | 2186 | cyy_writeb(info, CyCOR3, info->cor3); |
3131 | cy_writeb(base_addr + (CyCOR3 << index), info->cor3); | 2187 | cyy_writeb(info, CyCOR4, info->cor4); |
3132 | cy_writeb(base_addr + (CyCOR4 << index), info->cor4); | 2188 | cyy_writeb(info, CyCOR5, info->cor5); |
3133 | cy_writeb(base_addr + (CyCOR5 << index), info->cor5); | ||
3134 | 2189 | ||
3135 | cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR1ch | CyCOR2ch | | 2190 | cyy_issue_cmd(info, CyCOR_CHANGE | CyCOR1ch | CyCOR2ch | |
3136 | CyCOR3ch, index); | 2191 | CyCOR3ch); |
3137 | 2192 | ||
3138 | /* !!! Is this needed? */ | 2193 | /* !!! Is this needed? */ |
3139 | cy_writeb(base_addr + (CyCAR << index), (u_char) channel); | 2194 | cyy_writeb(info, CyCAR, channel); |
3140 | cy_writeb(base_addr + (CyRTPR << index), | 2195 | cyy_writeb(info, CyRTPR, |
3141 | (info->default_timeout ? info->default_timeout : 0x02)); | 2196 | (info->default_timeout ? info->default_timeout : 0x02)); |
3142 | /* 10ms rx timeout */ | 2197 | /* 10ms rx timeout */ |
3143 | 2198 | ||
3144 | if (C_CLOCAL(info->port.tty)) { | 2199 | cflags = CyCTS; |
3145 | /* without modem intr */ | 2200 | if (!C_CLOCAL(tty)) |
3146 | cy_writeb(base_addr + (CySRER << index), | 2201 | cflags |= CyDSR | CyRI | CyDCD; |
3147 | readb(base_addr + (CySRER << index)) | CyMdmCh); | 2202 | /* without modem intr */ |
3148 | /* act on 1->0 modem transitions */ | 2203 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyMdmCh); |
3149 | if ((cflag & CRTSCTS) && info->rflow) { | 2204 | /* act on 1->0 modem transitions */ |
3150 | cy_writeb(base_addr + (CyMCOR1 << index), | 2205 | if ((cflag & CRTSCTS) && info->rflow) |
3151 | (CyCTS | rflow_thr[i])); | 2206 | cyy_writeb(info, CyMCOR1, cflags | rflow_thr[i]); |
3152 | } else { | 2207 | else |
3153 | cy_writeb(base_addr + (CyMCOR1 << index), | 2208 | cyy_writeb(info, CyMCOR1, cflags); |
3154 | CyCTS); | 2209 | /* act on 0->1 modem transitions */ |
3155 | } | 2210 | cyy_writeb(info, CyMCOR2, cflags); |
3156 | /* act on 0->1 modem transitions */ | ||
3157 | cy_writeb(base_addr + (CyMCOR2 << index), CyCTS); | ||
3158 | } else { | ||
3159 | /* without modem intr */ | ||
3160 | cy_writeb(base_addr + (CySRER << index), | ||
3161 | readb(base_addr + | ||
3162 | (CySRER << index)) | CyMdmCh); | ||
3163 | /* act on 1->0 modem transitions */ | ||
3164 | if ((cflag & CRTSCTS) && info->rflow) { | ||
3165 | cy_writeb(base_addr + (CyMCOR1 << index), | ||
3166 | (CyDSR | CyCTS | CyRI | CyDCD | | ||
3167 | rflow_thr[i])); | ||
3168 | } else { | ||
3169 | cy_writeb(base_addr + (CyMCOR1 << index), | ||
3170 | CyDSR | CyCTS | CyRI | CyDCD); | ||
3171 | } | ||
3172 | /* act on 0->1 modem transitions */ | ||
3173 | cy_writeb(base_addr + (CyMCOR2 << index), | ||
3174 | CyDSR | CyCTS | CyRI | CyDCD); | ||
3175 | } | ||
3176 | 2211 | ||
3177 | if (i == 0) { /* baud rate is zero, turn off line */ | 2212 | if (i == 0) /* baud rate is zero, turn off line */ |
3178 | if (info->rtsdtr_inv) { | 2213 | cyy_change_rts_dtr(info, 0, TIOCM_DTR); |
3179 | cy_writeb(base_addr + (CyMSVR1 << index), | 2214 | else |
3180 | ~CyRTS); | 2215 | cyy_change_rts_dtr(info, TIOCM_DTR, 0); |
3181 | } else { | ||
3182 | cy_writeb(base_addr + (CyMSVR2 << index), | ||
3183 | ~CyDTR); | ||
3184 | } | ||
3185 | #ifdef CY_DEBUG_DTR | ||
3186 | printk(KERN_DEBUG "cyc:set_line_char dropping DTR\n"); | ||
3187 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", | ||
3188 | readb(base_addr + (CyMSVR1 << index)), | ||
3189 | readb(base_addr + (CyMSVR2 << index))); | ||
3190 | #endif | ||
3191 | } else { | ||
3192 | if (info->rtsdtr_inv) { | ||
3193 | cy_writeb(base_addr + (CyMSVR1 << index), | ||
3194 | CyRTS); | ||
3195 | } else { | ||
3196 | cy_writeb(base_addr + (CyMSVR2 << index), | ||
3197 | CyDTR); | ||
3198 | } | ||
3199 | #ifdef CY_DEBUG_DTR | ||
3200 | printk(KERN_DEBUG "cyc:set_line_char raising DTR\n"); | ||
3201 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", | ||
3202 | readb(base_addr + (CyMSVR1 << index)), | ||
3203 | readb(base_addr + (CyMSVR2 << index))); | ||
3204 | #endif | ||
3205 | } | ||
3206 | 2216 | ||
3207 | if (info->port.tty) | 2217 | clear_bit(TTY_IO_ERROR, &tty->flags); |
3208 | clear_bit(TTY_IO_ERROR, &info->port.tty->flags); | ||
3209 | spin_unlock_irqrestore(&card->card_lock, flags); | 2218 | spin_unlock_irqrestore(&card->card_lock, flags); |
3210 | 2219 | ||
3211 | } else { | 2220 | } else { |
3212 | struct FIRM_ID __iomem *firm_id; | 2221 | struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl; |
3213 | struct ZFW_CTRL __iomem *zfw_ctrl; | ||
3214 | struct CH_CTRL __iomem *ch_ctrl; | ||
3215 | __u32 sw_flow; | 2222 | __u32 sw_flow; |
3216 | int retval; | 2223 | int retval; |
3217 | 2224 | ||
3218 | firm_id = card->base_addr + ID_ADDRESS; | ||
3219 | if (!cyz_is_loaded(card)) | 2225 | if (!cyz_is_loaded(card)) |
3220 | return; | 2226 | return; |
3221 | 2227 | ||
3222 | zfw_ctrl = card->base_addr + | ||
3223 | (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
3224 | ch_ctrl = &(zfw_ctrl->ch_ctrl[channel]); | ||
3225 | |||
3226 | /* baud rate */ | 2228 | /* baud rate */ |
3227 | baud = tty_get_baud_rate(info->port.tty); | 2229 | baud = tty_get_baud_rate(tty); |
3228 | if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) == | 2230 | if (baud == 38400 && (info->port.flags & ASYNC_SPD_MASK) == |
3229 | ASYNC_SPD_CUST) { | 2231 | ASYNC_SPD_CUST) { |
3230 | if (info->custom_divisor) | 2232 | if (info->custom_divisor) |
@@ -3335,45 +2337,38 @@ static void set_line_char(struct cyclades_port *info) | |||
3335 | "was %x\n", info->line, retval); | 2337 | "was %x\n", info->line, retval); |
3336 | } | 2338 | } |
3337 | 2339 | ||
3338 | if (info->port.tty) | 2340 | clear_bit(TTY_IO_ERROR, &tty->flags); |
3339 | clear_bit(TTY_IO_ERROR, &info->port.tty->flags); | ||
3340 | } | 2341 | } |
3341 | } /* set_line_char */ | 2342 | } /* set_line_char */ |
3342 | 2343 | ||
3343 | static int | 2344 | static int cy_get_serial_info(struct cyclades_port *info, |
3344 | get_serial_info(struct cyclades_port *info, | ||
3345 | struct serial_struct __user *retinfo) | 2345 | struct serial_struct __user *retinfo) |
3346 | { | 2346 | { |
3347 | struct serial_struct tmp; | ||
3348 | struct cyclades_card *cinfo = info->card; | 2347 | struct cyclades_card *cinfo = info->card; |
3349 | 2348 | struct serial_struct tmp = { | |
3350 | if (!retinfo) | 2349 | .type = info->type, |
3351 | return -EFAULT; | 2350 | .line = info->line, |
3352 | memset(&tmp, 0, sizeof(tmp)); | 2351 | .port = (info->card - cy_card) * 0x100 + info->line - |
3353 | tmp.type = info->type; | 2352 | cinfo->first_line, |
3354 | tmp.line = info->line; | 2353 | .irq = cinfo->irq, |
3355 | tmp.port = (info->card - cy_card) * 0x100 + info->line - | 2354 | .flags = info->port.flags, |
3356 | cinfo->first_line; | 2355 | .close_delay = info->port.close_delay, |
3357 | tmp.irq = cinfo->irq; | 2356 | .closing_wait = info->port.closing_wait, |
3358 | tmp.flags = info->port.flags; | 2357 | .baud_base = info->baud, |
3359 | tmp.close_delay = info->port.close_delay; | 2358 | .custom_divisor = info->custom_divisor, |
3360 | tmp.closing_wait = info->port.closing_wait; | 2359 | .hub6 = 0, /*!!! */ |
3361 | tmp.baud_base = info->baud; | 2360 | }; |
3362 | tmp.custom_divisor = info->custom_divisor; | ||
3363 | tmp.hub6 = 0; /*!!! */ | ||
3364 | return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0; | 2361 | return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0; |
3365 | } /* get_serial_info */ | 2362 | } |
3366 | 2363 | ||
3367 | static int | 2364 | static int |
3368 | set_serial_info(struct cyclades_port *info, | 2365 | cy_set_serial_info(struct cyclades_port *info, struct tty_struct *tty, |
3369 | struct serial_struct __user *new_info) | 2366 | struct serial_struct __user *new_info) |
3370 | { | 2367 | { |
3371 | struct serial_struct new_serial; | 2368 | struct serial_struct new_serial; |
3372 | struct cyclades_port old_info; | ||
3373 | 2369 | ||
3374 | if (copy_from_user(&new_serial, new_info, sizeof(new_serial))) | 2370 | if (copy_from_user(&new_serial, new_info, sizeof(new_serial))) |
3375 | return -EFAULT; | 2371 | return -EFAULT; |
3376 | old_info = *info; | ||
3377 | 2372 | ||
3378 | if (!capable(CAP_SYS_ADMIN)) { | 2373 | if (!capable(CAP_SYS_ADMIN)) { |
3379 | if (new_serial.close_delay != info->port.close_delay || | 2374 | if (new_serial.close_delay != info->port.close_delay || |
@@ -3403,10 +2398,10 @@ set_serial_info(struct cyclades_port *info, | |||
3403 | 2398 | ||
3404 | check_and_exit: | 2399 | check_and_exit: |
3405 | if (info->port.flags & ASYNC_INITIALIZED) { | 2400 | if (info->port.flags & ASYNC_INITIALIZED) { |
3406 | set_line_char(info); | 2401 | cy_set_line_char(info, tty); |
3407 | return 0; | 2402 | return 0; |
3408 | } else { | 2403 | } else { |
3409 | return startup(info); | 2404 | return cy_startup(info, tty); |
3410 | } | 2405 | } |
3411 | } /* set_serial_info */ | 2406 | } /* set_serial_info */ |
3412 | 2407 | ||
@@ -3422,24 +2417,14 @@ check_and_exit: | |||
3422 | */ | 2417 | */ |
3423 | static int get_lsr_info(struct cyclades_port *info, unsigned int __user *value) | 2418 | static int get_lsr_info(struct cyclades_port *info, unsigned int __user *value) |
3424 | { | 2419 | { |
3425 | struct cyclades_card *card; | 2420 | struct cyclades_card *card = info->card; |
3426 | int chip, channel, index; | ||
3427 | unsigned char status; | ||
3428 | unsigned int result; | 2421 | unsigned int result; |
3429 | unsigned long flags; | 2422 | unsigned long flags; |
3430 | void __iomem *base_addr; | 2423 | u8 status; |
3431 | 2424 | ||
3432 | card = info->card; | ||
3433 | channel = (info->line) - (card->first_line); | ||
3434 | if (!cy_is_Z(card)) { | 2425 | if (!cy_is_Z(card)) { |
3435 | chip = channel >> 2; | ||
3436 | channel &= 0x03; | ||
3437 | index = card->bus_index; | ||
3438 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | ||
3439 | |||
3440 | spin_lock_irqsave(&card->card_lock, flags); | 2426 | spin_lock_irqsave(&card->card_lock, flags); |
3441 | status = readb(base_addr + (CySRER << index)) & | 2427 | status = cyy_readb(info, CySRER) & (CyTxRdy | CyTxMpty); |
3442 | (CyTxRdy | CyTxMpty); | ||
3443 | spin_unlock_irqrestore(&card->card_lock, flags); | 2428 | spin_unlock_irqrestore(&card->card_lock, flags); |
3444 | result = (status ? 0 : TIOCSER_TEMT); | 2429 | result = (status ? 0 : TIOCSER_TEMT); |
3445 | } else { | 2430 | } else { |
@@ -3453,34 +2438,23 @@ static int cy_tiocmget(struct tty_struct *tty, struct file *file) | |||
3453 | { | 2438 | { |
3454 | struct cyclades_port *info = tty->driver_data; | 2439 | struct cyclades_port *info = tty->driver_data; |
3455 | struct cyclades_card *card; | 2440 | struct cyclades_card *card; |
3456 | int chip, channel, index; | 2441 | int result; |
3457 | void __iomem *base_addr; | ||
3458 | unsigned long flags; | ||
3459 | unsigned char status; | ||
3460 | unsigned long lstatus; | ||
3461 | unsigned int result; | ||
3462 | struct FIRM_ID __iomem *firm_id; | ||
3463 | struct ZFW_CTRL __iomem *zfw_ctrl; | ||
3464 | struct BOARD_CTRL __iomem *board_ctrl; | ||
3465 | struct CH_CTRL __iomem *ch_ctrl; | ||
3466 | 2442 | ||
3467 | if (serial_paranoia_check(info, tty->name, __func__)) | 2443 | if (serial_paranoia_check(info, tty->name, __func__)) |
3468 | return -ENODEV; | 2444 | return -ENODEV; |
3469 | 2445 | ||
3470 | lock_kernel(); | ||
3471 | |||
3472 | card = info->card; | 2446 | card = info->card; |
3473 | channel = info->line - card->first_line; | 2447 | |
2448 | lock_kernel(); | ||
3474 | if (!cy_is_Z(card)) { | 2449 | if (!cy_is_Z(card)) { |
3475 | chip = channel >> 2; | 2450 | unsigned long flags; |
3476 | channel &= 0x03; | 2451 | int channel = info->line - card->first_line; |
3477 | index = card->bus_index; | 2452 | u8 status; |
3478 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | ||
3479 | 2453 | ||
3480 | spin_lock_irqsave(&card->card_lock, flags); | 2454 | spin_lock_irqsave(&card->card_lock, flags); |
3481 | cy_writeb(base_addr + (CyCAR << index), (u_char) channel); | 2455 | cyy_writeb(info, CyCAR, channel & 0x03); |
3482 | status = readb(base_addr + (CyMSVR1 << index)); | 2456 | status = cyy_readb(info, CyMSVR1); |
3483 | status |= readb(base_addr + (CyMSVR2 << index)); | 2457 | status |= cyy_readb(info, CyMSVR2); |
3484 | spin_unlock_irqrestore(&card->card_lock, flags); | 2458 | spin_unlock_irqrestore(&card->card_lock, flags); |
3485 | 2459 | ||
3486 | if (info->rtsdtr_inv) { | 2460 | if (info->rtsdtr_inv) { |
@@ -3495,27 +2469,22 @@ static int cy_tiocmget(struct tty_struct *tty, struct file *file) | |||
3495 | ((status & CyDSR) ? TIOCM_DSR : 0) | | 2469 | ((status & CyDSR) ? TIOCM_DSR : 0) | |
3496 | ((status & CyCTS) ? TIOCM_CTS : 0); | 2470 | ((status & CyCTS) ? TIOCM_CTS : 0); |
3497 | } else { | 2471 | } else { |
3498 | base_addr = card->base_addr; | 2472 | u32 lstatus; |
3499 | firm_id = card->base_addr + ID_ADDRESS; | 2473 | |
3500 | if (cyz_is_loaded(card)) { | 2474 | if (!cyz_is_loaded(card)) { |
3501 | zfw_ctrl = card->base_addr + | 2475 | result = -ENODEV; |
3502 | (readl(&firm_id->zfwctrl_addr) & 0xfffff); | 2476 | goto end; |
3503 | board_ctrl = &zfw_ctrl->board_ctrl; | ||
3504 | ch_ctrl = zfw_ctrl->ch_ctrl; | ||
3505 | lstatus = readl(&ch_ctrl[channel].rs_status); | ||
3506 | result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) | | ||
3507 | ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) | | ||
3508 | ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) | | ||
3509 | ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) | | ||
3510 | ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) | | ||
3511 | ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0); | ||
3512 | } else { | ||
3513 | result = 0; | ||
3514 | unlock_kernel(); | ||
3515 | return -ENODEV; | ||
3516 | } | 2477 | } |
3517 | 2478 | ||
2479 | lstatus = readl(&info->u.cyz.ch_ctrl->rs_status); | ||
2480 | result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) | | ||
2481 | ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) | | ||
2482 | ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) | | ||
2483 | ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) | | ||
2484 | ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) | | ||
2485 | ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0); | ||
3518 | } | 2486 | } |
2487 | end: | ||
3519 | unlock_kernel(); | 2488 | unlock_kernel(); |
3520 | return result; | 2489 | return result; |
3521 | } /* cy_tiomget */ | 2490 | } /* cy_tiomget */ |
@@ -3526,150 +2495,53 @@ cy_tiocmset(struct tty_struct *tty, struct file *file, | |||
3526 | { | 2495 | { |
3527 | struct cyclades_port *info = tty->driver_data; | 2496 | struct cyclades_port *info = tty->driver_data; |
3528 | struct cyclades_card *card; | 2497 | struct cyclades_card *card; |
3529 | int chip, channel, index; | ||
3530 | void __iomem *base_addr; | ||
3531 | unsigned long flags; | 2498 | unsigned long flags; |
3532 | struct FIRM_ID __iomem *firm_id; | ||
3533 | struct ZFW_CTRL __iomem *zfw_ctrl; | ||
3534 | struct BOARD_CTRL __iomem *board_ctrl; | ||
3535 | struct CH_CTRL __iomem *ch_ctrl; | ||
3536 | int retval; | ||
3537 | 2499 | ||
3538 | if (serial_paranoia_check(info, tty->name, __func__)) | 2500 | if (serial_paranoia_check(info, tty->name, __func__)) |
3539 | return -ENODEV; | 2501 | return -ENODEV; |
3540 | 2502 | ||
3541 | card = info->card; | 2503 | card = info->card; |
3542 | channel = (info->line) - (card->first_line); | ||
3543 | if (!cy_is_Z(card)) { | 2504 | if (!cy_is_Z(card)) { |
3544 | chip = channel >> 2; | 2505 | spin_lock_irqsave(&card->card_lock, flags); |
3545 | channel &= 0x03; | 2506 | cyy_change_rts_dtr(info, set, clear); |
3546 | index = card->bus_index; | 2507 | spin_unlock_irqrestore(&card->card_lock, flags); |
3547 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | 2508 | } else { |
2509 | struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl; | ||
2510 | int retval, channel = info->line - card->first_line; | ||
2511 | u32 rs; | ||
3548 | 2512 | ||
3549 | if (set & TIOCM_RTS) { | 2513 | if (!cyz_is_loaded(card)) |
3550 | spin_lock_irqsave(&card->card_lock, flags); | 2514 | return -ENODEV; |
3551 | cy_writeb(base_addr + (CyCAR << index), | 2515 | |
3552 | (u_char) channel); | 2516 | spin_lock_irqsave(&card->card_lock, flags); |
3553 | if (info->rtsdtr_inv) { | 2517 | rs = readl(&ch_ctrl->rs_control); |
3554 | cy_writeb(base_addr + (CyMSVR2 << index), | 2518 | if (set & TIOCM_RTS) |
3555 | CyDTR); | 2519 | rs |= C_RS_RTS; |
3556 | } else { | 2520 | if (clear & TIOCM_RTS) |
3557 | cy_writeb(base_addr + (CyMSVR1 << index), | 2521 | rs &= ~C_RS_RTS; |
3558 | CyRTS); | ||
3559 | } | ||
3560 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
3561 | } | ||
3562 | if (clear & TIOCM_RTS) { | ||
3563 | spin_lock_irqsave(&card->card_lock, flags); | ||
3564 | cy_writeb(base_addr + (CyCAR << index), | ||
3565 | (u_char) channel); | ||
3566 | if (info->rtsdtr_inv) { | ||
3567 | cy_writeb(base_addr + (CyMSVR2 << index), | ||
3568 | ~CyDTR); | ||
3569 | } else { | ||
3570 | cy_writeb(base_addr + (CyMSVR1 << index), | ||
3571 | ~CyRTS); | ||
3572 | } | ||
3573 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
3574 | } | ||
3575 | if (set & TIOCM_DTR) { | 2522 | if (set & TIOCM_DTR) { |
3576 | spin_lock_irqsave(&card->card_lock, flags); | 2523 | rs |= C_RS_DTR; |
3577 | cy_writeb(base_addr + (CyCAR << index), | ||
3578 | (u_char) channel); | ||
3579 | if (info->rtsdtr_inv) { | ||
3580 | cy_writeb(base_addr + (CyMSVR1 << index), | ||
3581 | CyRTS); | ||
3582 | } else { | ||
3583 | cy_writeb(base_addr + (CyMSVR2 << index), | ||
3584 | CyDTR); | ||
3585 | } | ||
3586 | #ifdef CY_DEBUG_DTR | 2524 | #ifdef CY_DEBUG_DTR |
3587 | printk(KERN_DEBUG "cyc:set_modem_info raising DTR\n"); | 2525 | printk(KERN_DEBUG "cyc:set_modem_info raising Z DTR\n"); |
3588 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", | ||
3589 | readb(base_addr + (CyMSVR1 << index)), | ||
3590 | readb(base_addr + (CyMSVR2 << index))); | ||
3591 | #endif | 2526 | #endif |
3592 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
3593 | } | 2527 | } |
3594 | if (clear & TIOCM_DTR) { | 2528 | if (clear & TIOCM_DTR) { |
3595 | spin_lock_irqsave(&card->card_lock, flags); | 2529 | rs &= ~C_RS_DTR; |
3596 | cy_writeb(base_addr + (CyCAR << index), | ||
3597 | (u_char) channel); | ||
3598 | if (info->rtsdtr_inv) { | ||
3599 | cy_writeb(base_addr + (CyMSVR1 << index), | ||
3600 | ~CyRTS); | ||
3601 | } else { | ||
3602 | cy_writeb(base_addr + (CyMSVR2 << index), | ||
3603 | ~CyDTR); | ||
3604 | } | ||
3605 | |||
3606 | #ifdef CY_DEBUG_DTR | 2530 | #ifdef CY_DEBUG_DTR |
3607 | printk(KERN_DEBUG "cyc:set_modem_info dropping DTR\n"); | 2531 | printk(KERN_DEBUG "cyc:set_modem_info clearing " |
3608 | printk(KERN_DEBUG " status: 0x%x, 0x%x\n", | 2532 | "Z DTR\n"); |
3609 | readb(base_addr + (CyMSVR1 << index)), | ||
3610 | readb(base_addr + (CyMSVR2 << index))); | ||
3611 | #endif | 2533 | #endif |
3612 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
3613 | } | 2534 | } |
3614 | } else { | 2535 | cy_writel(&ch_ctrl->rs_control, rs); |
3615 | base_addr = card->base_addr; | ||
3616 | |||
3617 | firm_id = card->base_addr + ID_ADDRESS; | ||
3618 | if (cyz_is_loaded(card)) { | ||
3619 | zfw_ctrl = card->base_addr + | ||
3620 | (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
3621 | board_ctrl = &zfw_ctrl->board_ctrl; | ||
3622 | ch_ctrl = zfw_ctrl->ch_ctrl; | ||
3623 | |||
3624 | if (set & TIOCM_RTS) { | ||
3625 | spin_lock_irqsave(&card->card_lock, flags); | ||
3626 | cy_writel(&ch_ctrl[channel].rs_control, | ||
3627 | readl(&ch_ctrl[channel].rs_control) | | ||
3628 | C_RS_RTS); | ||
3629 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
3630 | } | ||
3631 | if (clear & TIOCM_RTS) { | ||
3632 | spin_lock_irqsave(&card->card_lock, flags); | ||
3633 | cy_writel(&ch_ctrl[channel].rs_control, | ||
3634 | readl(&ch_ctrl[channel].rs_control) & | ||
3635 | ~C_RS_RTS); | ||
3636 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
3637 | } | ||
3638 | if (set & TIOCM_DTR) { | ||
3639 | spin_lock_irqsave(&card->card_lock, flags); | ||
3640 | cy_writel(&ch_ctrl[channel].rs_control, | ||
3641 | readl(&ch_ctrl[channel].rs_control) | | ||
3642 | C_RS_DTR); | ||
3643 | #ifdef CY_DEBUG_DTR | ||
3644 | printk(KERN_DEBUG "cyc:set_modem_info raising " | ||
3645 | "Z DTR\n"); | ||
3646 | #endif | ||
3647 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
3648 | } | ||
3649 | if (clear & TIOCM_DTR) { | ||
3650 | spin_lock_irqsave(&card->card_lock, flags); | ||
3651 | cy_writel(&ch_ctrl[channel].rs_control, | ||
3652 | readl(&ch_ctrl[channel].rs_control) & | ||
3653 | ~C_RS_DTR); | ||
3654 | #ifdef CY_DEBUG_DTR | ||
3655 | printk(KERN_DEBUG "cyc:set_modem_info clearing " | ||
3656 | "Z DTR\n"); | ||
3657 | #endif | ||
3658 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
3659 | } | ||
3660 | } else { | ||
3661 | return -ENODEV; | ||
3662 | } | ||
3663 | spin_lock_irqsave(&card->card_lock, flags); | ||
3664 | retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L); | 2536 | retval = cyz_issue_cmd(card, channel, C_CM_IOCTLM, 0L); |
2537 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
3665 | if (retval != 0) { | 2538 | if (retval != 0) { |
3666 | printk(KERN_ERR "cyc:set_modem_info retval on ttyC%d " | 2539 | printk(KERN_ERR "cyc:set_modem_info retval on ttyC%d " |
3667 | "was %x\n", info->line, retval); | 2540 | "was %x\n", info->line, retval); |
3668 | } | 2541 | } |
3669 | spin_unlock_irqrestore(&card->card_lock, flags); | ||
3670 | } | 2542 | } |
3671 | return 0; | 2543 | return 0; |
3672 | } /* cy_tiocmset */ | 2544 | } |
3673 | 2545 | ||
3674 | /* | 2546 | /* |
3675 | * cy_break() --- routine which turns the break handling on or off | 2547 | * cy_break() --- routine which turns the break handling on or off |
@@ -3734,41 +2606,18 @@ static int cy_break(struct tty_struct *tty, int break_state) | |||
3734 | return retval; | 2606 | return retval; |
3735 | } /* cy_break */ | 2607 | } /* cy_break */ |
3736 | 2608 | ||
3737 | static int get_mon_info(struct cyclades_port *info, | ||
3738 | struct cyclades_monitor __user *mon) | ||
3739 | { | ||
3740 | |||
3741 | if (copy_to_user(mon, &info->mon, sizeof(struct cyclades_monitor))) | ||
3742 | return -EFAULT; | ||
3743 | info->mon.int_count = 0; | ||
3744 | info->mon.char_count = 0; | ||
3745 | info->mon.char_max = 0; | ||
3746 | info->mon.char_last = 0; | ||
3747 | return 0; | ||
3748 | } /* get_mon_info */ | ||
3749 | |||
3750 | static int set_threshold(struct cyclades_port *info, unsigned long value) | 2609 | static int set_threshold(struct cyclades_port *info, unsigned long value) |
3751 | { | 2610 | { |
3752 | struct cyclades_card *card; | 2611 | struct cyclades_card *card = info->card; |
3753 | void __iomem *base_addr; | ||
3754 | int channel, chip, index; | ||
3755 | unsigned long flags; | 2612 | unsigned long flags; |
3756 | 2613 | ||
3757 | card = info->card; | ||
3758 | channel = info->line - card->first_line; | ||
3759 | if (!cy_is_Z(card)) { | 2614 | if (!cy_is_Z(card)) { |
3760 | chip = channel >> 2; | ||
3761 | channel &= 0x03; | ||
3762 | index = card->bus_index; | ||
3763 | base_addr = | ||
3764 | card->base_addr + (cy_chip_offset[chip] << index); | ||
3765 | |||
3766 | info->cor3 &= ~CyREC_FIFO; | 2615 | info->cor3 &= ~CyREC_FIFO; |
3767 | info->cor3 |= value & CyREC_FIFO; | 2616 | info->cor3 |= value & CyREC_FIFO; |
3768 | 2617 | ||
3769 | spin_lock_irqsave(&card->card_lock, flags); | 2618 | spin_lock_irqsave(&card->card_lock, flags); |
3770 | cy_writeb(base_addr + (CyCOR3 << index), info->cor3); | 2619 | cyy_writeb(info, CyCOR3, info->cor3); |
3771 | cyy_issue_cmd(base_addr, CyCOR_CHANGE | CyCOR3ch, index); | 2620 | cyy_issue_cmd(info, CyCOR_CHANGE | CyCOR3ch); |
3772 | spin_unlock_irqrestore(&card->card_lock, flags); | 2621 | spin_unlock_irqrestore(&card->card_lock, flags); |
3773 | } | 2622 | } |
3774 | return 0; | 2623 | return 0; |
@@ -3777,55 +2626,23 @@ static int set_threshold(struct cyclades_port *info, unsigned long value) | |||
3777 | static int get_threshold(struct cyclades_port *info, | 2626 | static int get_threshold(struct cyclades_port *info, |
3778 | unsigned long __user *value) | 2627 | unsigned long __user *value) |
3779 | { | 2628 | { |
3780 | struct cyclades_card *card; | 2629 | struct cyclades_card *card = info->card; |
3781 | void __iomem *base_addr; | ||
3782 | int channel, chip, index; | ||
3783 | unsigned long tmp; | ||
3784 | 2630 | ||
3785 | card = info->card; | ||
3786 | channel = info->line - card->first_line; | ||
3787 | if (!cy_is_Z(card)) { | 2631 | if (!cy_is_Z(card)) { |
3788 | chip = channel >> 2; | 2632 | u8 tmp = cyy_readb(info, CyCOR3) & CyREC_FIFO; |
3789 | channel &= 0x03; | ||
3790 | index = card->bus_index; | ||
3791 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | ||
3792 | |||
3793 | tmp = readb(base_addr + (CyCOR3 << index)) & CyREC_FIFO; | ||
3794 | return put_user(tmp, value); | 2633 | return put_user(tmp, value); |
3795 | } | 2634 | } |
3796 | return 0; | 2635 | return 0; |
3797 | } /* get_threshold */ | 2636 | } /* get_threshold */ |
3798 | 2637 | ||
3799 | static int set_default_threshold(struct cyclades_port *info, | ||
3800 | unsigned long value) | ||
3801 | { | ||
3802 | info->default_threshold = value & 0x0f; | ||
3803 | return 0; | ||
3804 | } /* set_default_threshold */ | ||
3805 | |||
3806 | static int get_default_threshold(struct cyclades_port *info, | ||
3807 | unsigned long __user *value) | ||
3808 | { | ||
3809 | return put_user(info->default_threshold, value); | ||
3810 | } /* get_default_threshold */ | ||
3811 | |||
3812 | static int set_timeout(struct cyclades_port *info, unsigned long value) | 2638 | static int set_timeout(struct cyclades_port *info, unsigned long value) |
3813 | { | 2639 | { |
3814 | struct cyclades_card *card; | 2640 | struct cyclades_card *card = info->card; |
3815 | void __iomem *base_addr; | ||
3816 | int channel, chip, index; | ||
3817 | unsigned long flags; | 2641 | unsigned long flags; |
3818 | 2642 | ||
3819 | card = info->card; | ||
3820 | channel = info->line - card->first_line; | ||
3821 | if (!cy_is_Z(card)) { | 2643 | if (!cy_is_Z(card)) { |
3822 | chip = channel >> 2; | ||
3823 | channel &= 0x03; | ||
3824 | index = card->bus_index; | ||
3825 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | ||
3826 | |||
3827 | spin_lock_irqsave(&card->card_lock, flags); | 2644 | spin_lock_irqsave(&card->card_lock, flags); |
3828 | cy_writeb(base_addr + (CyRTPR << index), value & 0xff); | 2645 | cyy_writeb(info, CyRTPR, value & 0xff); |
3829 | spin_unlock_irqrestore(&card->card_lock, flags); | 2646 | spin_unlock_irqrestore(&card->card_lock, flags); |
3830 | } | 2647 | } |
3831 | return 0; | 2648 | return 0; |
@@ -3834,36 +2651,35 @@ static int set_timeout(struct cyclades_port *info, unsigned long value) | |||
3834 | static int get_timeout(struct cyclades_port *info, | 2651 | static int get_timeout(struct cyclades_port *info, |
3835 | unsigned long __user *value) | 2652 | unsigned long __user *value) |
3836 | { | 2653 | { |
3837 | struct cyclades_card *card; | 2654 | struct cyclades_card *card = info->card; |
3838 | void __iomem *base_addr; | ||
3839 | int channel, chip, index; | ||
3840 | unsigned long tmp; | ||
3841 | 2655 | ||
3842 | card = info->card; | ||
3843 | channel = info->line - card->first_line; | ||
3844 | if (!cy_is_Z(card)) { | 2656 | if (!cy_is_Z(card)) { |
3845 | chip = channel >> 2; | 2657 | u8 tmp = cyy_readb(info, CyRTPR); |
3846 | channel &= 0x03; | ||
3847 | index = card->bus_index; | ||
3848 | base_addr = card->base_addr + (cy_chip_offset[chip] << index); | ||
3849 | |||
3850 | tmp = readb(base_addr + (CyRTPR << index)); | ||
3851 | return put_user(tmp, value); | 2658 | return put_user(tmp, value); |
3852 | } | 2659 | } |
3853 | return 0; | 2660 | return 0; |
3854 | } /* get_timeout */ | 2661 | } /* get_timeout */ |
3855 | 2662 | ||
3856 | static int set_default_timeout(struct cyclades_port *info, unsigned long value) | 2663 | static int cy_cflags_changed(struct cyclades_port *info, unsigned long arg, |
2664 | struct cyclades_icount *cprev) | ||
3857 | { | 2665 | { |
3858 | info->default_timeout = value & 0xff; | 2666 | struct cyclades_icount cnow; |
3859 | return 0; | 2667 | unsigned long flags; |
3860 | } /* set_default_timeout */ | 2668 | int ret; |
3861 | 2669 | ||
3862 | static int get_default_timeout(struct cyclades_port *info, | 2670 | spin_lock_irqsave(&info->card->card_lock, flags); |
3863 | unsigned long __user *value) | 2671 | cnow = info->icount; /* atomic copy */ |
3864 | { | 2672 | spin_unlock_irqrestore(&info->card->card_lock, flags); |
3865 | return put_user(info->default_timeout, value); | 2673 | |
3866 | } /* get_default_timeout */ | 2674 | ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) || |
2675 | ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) || | ||
2676 | ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) || | ||
2677 | ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts)); | ||
2678 | |||
2679 | *cprev = cnow; | ||
2680 | |||
2681 | return ret; | ||
2682 | } | ||
3867 | 2683 | ||
3868 | /* | 2684 | /* |
3869 | * This routine allows the tty driver to implement device- | 2685 | * This routine allows the tty driver to implement device- |
@@ -3875,8 +2691,7 @@ cy_ioctl(struct tty_struct *tty, struct file *file, | |||
3875 | unsigned int cmd, unsigned long arg) | 2691 | unsigned int cmd, unsigned long arg) |
3876 | { | 2692 | { |
3877 | struct cyclades_port *info = tty->driver_data; | 2693 | struct cyclades_port *info = tty->driver_data; |
3878 | struct cyclades_icount cprev, cnow; /* kernel counter temps */ | 2694 | struct cyclades_icount cnow; /* kernel counter temps */ |
3879 | struct serial_icounter_struct __user *p_cuser; /* user space */ | ||
3880 | int ret_val = 0; | 2695 | int ret_val = 0; |
3881 | unsigned long flags; | 2696 | unsigned long flags; |
3882 | void __user *argp = (void __user *)arg; | 2697 | void __user *argp = (void __user *)arg; |
@@ -3892,7 +2707,11 @@ cy_ioctl(struct tty_struct *tty, struct file *file, | |||
3892 | 2707 | ||
3893 | switch (cmd) { | 2708 | switch (cmd) { |
3894 | case CYGETMON: | 2709 | case CYGETMON: |
3895 | ret_val = get_mon_info(info, argp); | 2710 | if (copy_to_user(argp, &info->mon, sizeof(info->mon))) { |
2711 | ret_val = -EFAULT; | ||
2712 | break; | ||
2713 | } | ||
2714 | memset(&info->mon, 0, sizeof(info->mon)); | ||
3896 | break; | 2715 | break; |
3897 | case CYGETTHRESH: | 2716 | case CYGETTHRESH: |
3898 | ret_val = get_threshold(info, argp); | 2717 | ret_val = get_threshold(info, argp); |
@@ -3901,10 +2720,11 @@ cy_ioctl(struct tty_struct *tty, struct file *file, | |||
3901 | ret_val = set_threshold(info, arg); | 2720 | ret_val = set_threshold(info, arg); |
3902 | break; | 2721 | break; |
3903 | case CYGETDEFTHRESH: | 2722 | case CYGETDEFTHRESH: |
3904 | ret_val = get_default_threshold(info, argp); | 2723 | ret_val = put_user(info->default_threshold, |
2724 | (unsigned long __user *)argp); | ||
3905 | break; | 2725 | break; |
3906 | case CYSETDEFTHRESH: | 2726 | case CYSETDEFTHRESH: |
3907 | ret_val = set_default_threshold(info, arg); | 2727 | info->default_threshold = arg & 0x0f; |
3908 | break; | 2728 | break; |
3909 | case CYGETTIMEOUT: | 2729 | case CYGETTIMEOUT: |
3910 | ret_val = get_timeout(info, argp); | 2730 | ret_val = get_timeout(info, argp); |
@@ -3913,21 +2733,20 @@ cy_ioctl(struct tty_struct *tty, struct file *file, | |||
3913 | ret_val = set_timeout(info, arg); | 2733 | ret_val = set_timeout(info, arg); |
3914 | break; | 2734 | break; |
3915 | case CYGETDEFTIMEOUT: | 2735 | case CYGETDEFTIMEOUT: |
3916 | ret_val = get_default_timeout(info, argp); | 2736 | ret_val = put_user(info->default_timeout, |
2737 | (unsigned long __user *)argp); | ||
3917 | break; | 2738 | break; |
3918 | case CYSETDEFTIMEOUT: | 2739 | case CYSETDEFTIMEOUT: |
3919 | ret_val = set_default_timeout(info, arg); | 2740 | info->default_timeout = arg & 0xff; |
3920 | break; | 2741 | break; |
3921 | case CYSETRFLOW: | 2742 | case CYSETRFLOW: |
3922 | info->rflow = (int)arg; | 2743 | info->rflow = (int)arg; |
3923 | ret_val = 0; | ||
3924 | break; | 2744 | break; |
3925 | case CYGETRFLOW: | 2745 | case CYGETRFLOW: |
3926 | ret_val = info->rflow; | 2746 | ret_val = info->rflow; |
3927 | break; | 2747 | break; |
3928 | case CYSETRTSDTR_INV: | 2748 | case CYSETRTSDTR_INV: |
3929 | info->rtsdtr_inv = (int)arg; | 2749 | info->rtsdtr_inv = (int)arg; |
3930 | ret_val = 0; | ||
3931 | break; | 2750 | break; |
3932 | case CYGETRTSDTR_INV: | 2751 | case CYGETRTSDTR_INV: |
3933 | ret_val = info->rtsdtr_inv; | 2752 | ret_val = info->rtsdtr_inv; |
@@ -3938,7 +2757,6 @@ cy_ioctl(struct tty_struct *tty, struct file *file, | |||
3938 | #ifndef CONFIG_CYZ_INTR | 2757 | #ifndef CONFIG_CYZ_INTR |
3939 | case CYZSETPOLLCYCLE: | 2758 | case CYZSETPOLLCYCLE: |
3940 | cyz_polling_cycle = (arg * HZ) / 1000; | 2759 | cyz_polling_cycle = (arg * HZ) / 1000; |
3941 | ret_val = 0; | ||
3942 | break; | 2760 | break; |
3943 | case CYZGETPOLLCYCLE: | 2761 | case CYZGETPOLLCYCLE: |
3944 | ret_val = (cyz_polling_cycle * 1000) / HZ; | 2762 | ret_val = (cyz_polling_cycle * 1000) / HZ; |
@@ -3946,16 +2764,15 @@ cy_ioctl(struct tty_struct *tty, struct file *file, | |||
3946 | #endif /* CONFIG_CYZ_INTR */ | 2764 | #endif /* CONFIG_CYZ_INTR */ |
3947 | case CYSETWAIT: | 2765 | case CYSETWAIT: |
3948 | info->port.closing_wait = (unsigned short)arg * HZ / 100; | 2766 | info->port.closing_wait = (unsigned short)arg * HZ / 100; |
3949 | ret_val = 0; | ||
3950 | break; | 2767 | break; |
3951 | case CYGETWAIT: | 2768 | case CYGETWAIT: |
3952 | ret_val = info->port.closing_wait / (HZ / 100); | 2769 | ret_val = info->port.closing_wait / (HZ / 100); |
3953 | break; | 2770 | break; |
3954 | case TIOCGSERIAL: | 2771 | case TIOCGSERIAL: |
3955 | ret_val = get_serial_info(info, argp); | 2772 | ret_val = cy_get_serial_info(info, argp); |
3956 | break; | 2773 | break; |
3957 | case TIOCSSERIAL: | 2774 | case TIOCSSERIAL: |
3958 | ret_val = set_serial_info(info, argp); | 2775 | ret_val = cy_set_serial_info(info, tty, argp); |
3959 | break; | 2776 | break; |
3960 | case TIOCSERGETLSR: /* Get line status register */ | 2777 | case TIOCSERGETLSR: /* Get line status register */ |
3961 | ret_val = get_lsr_info(info, argp); | 2778 | ret_val = get_lsr_info(info, argp); |
@@ -3971,17 +2788,8 @@ cy_ioctl(struct tty_struct *tty, struct file *file, | |||
3971 | /* note the counters on entry */ | 2788 | /* note the counters on entry */ |
3972 | cnow = info->icount; | 2789 | cnow = info->icount; |
3973 | spin_unlock_irqrestore(&info->card->card_lock, flags); | 2790 | spin_unlock_irqrestore(&info->card->card_lock, flags); |
3974 | ret_val = wait_event_interruptible(info->delta_msr_wait, ({ | 2791 | ret_val = wait_event_interruptible(info->port.delta_msr_wait, |
3975 | cprev = cnow; | 2792 | cy_cflags_changed(info, arg, &cnow)); |
3976 | spin_lock_irqsave(&info->card->card_lock, flags); | ||
3977 | cnow = info->icount; /* atomic copy */ | ||
3978 | spin_unlock_irqrestore(&info->card->card_lock, flags); | ||
3979 | |||
3980 | ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) || | ||
3981 | ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) || | ||
3982 | ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) || | ||
3983 | ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)); | ||
3984 | })); | ||
3985 | break; | 2793 | break; |
3986 | 2794 | ||
3987 | /* | 2795 | /* |
@@ -3990,46 +2798,29 @@ cy_ioctl(struct tty_struct *tty, struct file *file, | |||
3990 | * NB: both 1->0 and 0->1 transitions are counted except for | 2798 | * NB: both 1->0 and 0->1 transitions are counted except for |
3991 | * RI where only 0->1 is counted. | 2799 | * RI where only 0->1 is counted. |
3992 | */ | 2800 | */ |
3993 | case TIOCGICOUNT: | 2801 | case TIOCGICOUNT: { |
2802 | struct serial_icounter_struct sic = { }; | ||
2803 | |||
3994 | spin_lock_irqsave(&info->card->card_lock, flags); | 2804 | spin_lock_irqsave(&info->card->card_lock, flags); |
3995 | cnow = info->icount; | 2805 | cnow = info->icount; |
3996 | spin_unlock_irqrestore(&info->card->card_lock, flags); | 2806 | spin_unlock_irqrestore(&info->card->card_lock, flags); |
3997 | p_cuser = argp; | 2807 | |
3998 | ret_val = put_user(cnow.cts, &p_cuser->cts); | 2808 | sic.cts = cnow.cts; |
3999 | if (ret_val) | 2809 | sic.dsr = cnow.dsr; |
4000 | break; | 2810 | sic.rng = cnow.rng; |
4001 | ret_val = put_user(cnow.dsr, &p_cuser->dsr); | 2811 | sic.dcd = cnow.dcd; |
4002 | if (ret_val) | 2812 | sic.rx = cnow.rx; |
4003 | break; | 2813 | sic.tx = cnow.tx; |
4004 | ret_val = put_user(cnow.rng, &p_cuser->rng); | 2814 | sic.frame = cnow.frame; |
4005 | if (ret_val) | 2815 | sic.overrun = cnow.overrun; |
4006 | break; | 2816 | sic.parity = cnow.parity; |
4007 | ret_val = put_user(cnow.dcd, &p_cuser->dcd); | 2817 | sic.brk = cnow.brk; |
4008 | if (ret_val) | 2818 | sic.buf_overrun = cnow.buf_overrun; |
4009 | break; | 2819 | |
4010 | ret_val = put_user(cnow.rx, &p_cuser->rx); | 2820 | if (copy_to_user(argp, &sic, sizeof(sic))) |
4011 | if (ret_val) | 2821 | ret_val = -EFAULT; |
4012 | break; | ||
4013 | ret_val = put_user(cnow.tx, &p_cuser->tx); | ||
4014 | if (ret_val) | ||
4015 | break; | ||
4016 | ret_val = put_user(cnow.frame, &p_cuser->frame); | ||
4017 | if (ret_val) | ||
4018 | break; | ||
4019 | ret_val = put_user(cnow.overrun, &p_cuser->overrun); | ||
4020 | if (ret_val) | ||
4021 | break; | ||
4022 | ret_val = put_user(cnow.parity, &p_cuser->parity); | ||
4023 | if (ret_val) | ||
4024 | break; | ||
4025 | ret_val = put_user(cnow.brk, &p_cuser->brk); | ||
4026 | if (ret_val) | ||
4027 | break; | ||
4028 | ret_val = put_user(cnow.buf_overrun, &p_cuser->buf_overrun); | ||
4029 | if (ret_val) | ||
4030 | break; | ||
4031 | ret_val = 0; | ||
4032 | break; | 2822 | break; |
2823 | } | ||
4033 | default: | 2824 | default: |
4034 | ret_val = -ENOIOCTLCMD; | 2825 | ret_val = -ENOIOCTLCMD; |
4035 | } | 2826 | } |
@@ -4055,7 +2846,7 @@ static void cy_set_termios(struct tty_struct *tty, struct ktermios *old_termios) | |||
4055 | printk(KERN_DEBUG "cyc:cy_set_termios ttyC%d\n", info->line); | 2846 | printk(KERN_DEBUG "cyc:cy_set_termios ttyC%d\n", info->line); |
4056 | #endif | 2847 | #endif |
4057 | 2848 | ||
4058 | set_line_char(info); | 2849 | cy_set_line_char(info, tty); |
4059 | 2850 | ||
4060 | if ((old_termios->c_cflag & CRTSCTS) && | 2851 | if ((old_termios->c_cflag & CRTSCTS) && |
4061 | !(tty->termios->c_cflag & CRTSCTS)) { | 2852 | !(tty->termios->c_cflag & CRTSCTS)) { |
@@ -4112,8 +2903,6 @@ static void cy_throttle(struct tty_struct *tty) | |||
4112 | struct cyclades_port *info = tty->driver_data; | 2903 | struct cyclades_port *info = tty->driver_data; |
4113 | struct cyclades_card *card; | 2904 | struct cyclades_card *card; |
4114 | unsigned long flags; | 2905 | unsigned long flags; |
4115 | void __iomem *base_addr; | ||
4116 | int chip, channel, index; | ||
4117 | 2906 | ||
4118 | #ifdef CY_DEBUG_THROTTLE | 2907 | #ifdef CY_DEBUG_THROTTLE |
4119 | char buf[64]; | 2908 | char buf[64]; |
@@ -4135,24 +2924,9 @@ static void cy_throttle(struct tty_struct *tty) | |||
4135 | } | 2924 | } |
4136 | 2925 | ||
4137 | if (tty->termios->c_cflag & CRTSCTS) { | 2926 | if (tty->termios->c_cflag & CRTSCTS) { |
4138 | channel = info->line - card->first_line; | ||
4139 | if (!cy_is_Z(card)) { | 2927 | if (!cy_is_Z(card)) { |
4140 | chip = channel >> 2; | ||
4141 | channel &= 0x03; | ||
4142 | index = card->bus_index; | ||
4143 | base_addr = card->base_addr + | ||
4144 | (cy_chip_offset[chip] << index); | ||
4145 | |||
4146 | spin_lock_irqsave(&card->card_lock, flags); | 2928 | spin_lock_irqsave(&card->card_lock, flags); |
4147 | cy_writeb(base_addr + (CyCAR << index), | 2929 | cyy_change_rts_dtr(info, 0, TIOCM_RTS); |
4148 | (u_char) channel); | ||
4149 | if (info->rtsdtr_inv) { | ||
4150 | cy_writeb(base_addr + (CyMSVR2 << index), | ||
4151 | ~CyDTR); | ||
4152 | } else { | ||
4153 | cy_writeb(base_addr + (CyMSVR1 << index), | ||
4154 | ~CyRTS); | ||
4155 | } | ||
4156 | spin_unlock_irqrestore(&card->card_lock, flags); | 2930 | spin_unlock_irqrestore(&card->card_lock, flags); |
4157 | } else { | 2931 | } else { |
4158 | info->throttle = 1; | 2932 | info->throttle = 1; |
@@ -4170,8 +2944,6 @@ static void cy_unthrottle(struct tty_struct *tty) | |||
4170 | struct cyclades_port *info = tty->driver_data; | 2944 | struct cyclades_port *info = tty->driver_data; |
4171 | struct cyclades_card *card; | 2945 | struct cyclades_card *card; |
4172 | unsigned long flags; | 2946 | unsigned long flags; |
4173 | void __iomem *base_addr; | ||
4174 | int chip, channel, index; | ||
4175 | 2947 | ||
4176 | #ifdef CY_DEBUG_THROTTLE | 2948 | #ifdef CY_DEBUG_THROTTLE |
4177 | char buf[64]; | 2949 | char buf[64]; |
@@ -4192,24 +2964,9 @@ static void cy_unthrottle(struct tty_struct *tty) | |||
4192 | 2964 | ||
4193 | if (tty->termios->c_cflag & CRTSCTS) { | 2965 | if (tty->termios->c_cflag & CRTSCTS) { |
4194 | card = info->card; | 2966 | card = info->card; |
4195 | channel = info->line - card->first_line; | ||
4196 | if (!cy_is_Z(card)) { | 2967 | if (!cy_is_Z(card)) { |
4197 | chip = channel >> 2; | ||
4198 | channel &= 0x03; | ||
4199 | index = card->bus_index; | ||
4200 | base_addr = card->base_addr + | ||
4201 | (cy_chip_offset[chip] << index); | ||
4202 | |||
4203 | spin_lock_irqsave(&card->card_lock, flags); | 2968 | spin_lock_irqsave(&card->card_lock, flags); |
4204 | cy_writeb(base_addr + (CyCAR << index), | 2969 | cyy_change_rts_dtr(info, TIOCM_RTS, 0); |
4205 | (u_char) channel); | ||
4206 | if (info->rtsdtr_inv) { | ||
4207 | cy_writeb(base_addr + (CyMSVR2 << index), | ||
4208 | CyDTR); | ||
4209 | } else { | ||
4210 | cy_writeb(base_addr + (CyMSVR1 << index), | ||
4211 | CyRTS); | ||
4212 | } | ||
4213 | spin_unlock_irqrestore(&card->card_lock, flags); | 2970 | spin_unlock_irqrestore(&card->card_lock, flags); |
4214 | } else { | 2971 | } else { |
4215 | info->throttle = 0; | 2972 | info->throttle = 0; |
@@ -4224,8 +2981,7 @@ static void cy_stop(struct tty_struct *tty) | |||
4224 | { | 2981 | { |
4225 | struct cyclades_card *cinfo; | 2982 | struct cyclades_card *cinfo; |
4226 | struct cyclades_port *info = tty->driver_data; | 2983 | struct cyclades_port *info = tty->driver_data; |
4227 | void __iomem *base_addr; | 2984 | int channel; |
4228 | int chip, channel, index; | ||
4229 | unsigned long flags; | 2985 | unsigned long flags; |
4230 | 2986 | ||
4231 | #ifdef CY_DEBUG_OTHER | 2987 | #ifdef CY_DEBUG_OTHER |
@@ -4238,16 +2994,9 @@ static void cy_stop(struct tty_struct *tty) | |||
4238 | cinfo = info->card; | 2994 | cinfo = info->card; |
4239 | channel = info->line - cinfo->first_line; | 2995 | channel = info->line - cinfo->first_line; |
4240 | if (!cy_is_Z(cinfo)) { | 2996 | if (!cy_is_Z(cinfo)) { |
4241 | index = cinfo->bus_index; | ||
4242 | chip = channel >> 2; | ||
4243 | channel &= 0x03; | ||
4244 | base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index); | ||
4245 | |||
4246 | spin_lock_irqsave(&cinfo->card_lock, flags); | 2997 | spin_lock_irqsave(&cinfo->card_lock, flags); |
4247 | cy_writeb(base_addr + (CyCAR << index), | 2998 | cyy_writeb(info, CyCAR, channel & 0x03); |
4248 | (u_char)(channel & 0x0003)); /* index channel */ | 2999 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) & ~CyTxRdy); |
4249 | cy_writeb(base_addr + (CySRER << index), | ||
4250 | readb(base_addr + (CySRER << index)) & ~CyTxRdy); | ||
4251 | spin_unlock_irqrestore(&cinfo->card_lock, flags); | 3000 | spin_unlock_irqrestore(&cinfo->card_lock, flags); |
4252 | } | 3001 | } |
4253 | } /* cy_stop */ | 3002 | } /* cy_stop */ |
@@ -4256,8 +3005,7 @@ static void cy_start(struct tty_struct *tty) | |||
4256 | { | 3005 | { |
4257 | struct cyclades_card *cinfo; | 3006 | struct cyclades_card *cinfo; |
4258 | struct cyclades_port *info = tty->driver_data; | 3007 | struct cyclades_port *info = tty->driver_data; |
4259 | void __iomem *base_addr; | 3008 | int channel; |
4260 | int chip, channel, index; | ||
4261 | unsigned long flags; | 3009 | unsigned long flags; |
4262 | 3010 | ||
4263 | #ifdef CY_DEBUG_OTHER | 3011 | #ifdef CY_DEBUG_OTHER |
@@ -4269,17 +3017,10 @@ static void cy_start(struct tty_struct *tty) | |||
4269 | 3017 | ||
4270 | cinfo = info->card; | 3018 | cinfo = info->card; |
4271 | channel = info->line - cinfo->first_line; | 3019 | channel = info->line - cinfo->first_line; |
4272 | index = cinfo->bus_index; | ||
4273 | if (!cy_is_Z(cinfo)) { | 3020 | if (!cy_is_Z(cinfo)) { |
4274 | chip = channel >> 2; | ||
4275 | channel &= 0x03; | ||
4276 | base_addr = cinfo->base_addr + (cy_chip_offset[chip] << index); | ||
4277 | |||
4278 | spin_lock_irqsave(&cinfo->card_lock, flags); | 3021 | spin_lock_irqsave(&cinfo->card_lock, flags); |
4279 | cy_writeb(base_addr + (CyCAR << index), | 3022 | cyy_writeb(info, CyCAR, channel & 0x03); |
4280 | (u_char) (channel & 0x0003)); /* index channel */ | 3023 | cyy_writeb(info, CySRER, cyy_readb(info, CySRER) | CyTxRdy); |
4281 | cy_writeb(base_addr + (CySRER << index), | ||
4282 | readb(base_addr + (CySRER << index)) | CyTxRdy); | ||
4283 | spin_unlock_irqrestore(&cinfo->card_lock, flags); | 3024 | spin_unlock_irqrestore(&cinfo->card_lock, flags); |
4284 | } | 3025 | } |
4285 | } /* cy_start */ | 3026 | } /* cy_start */ |
@@ -4299,17 +3040,84 @@ static void cy_hangup(struct tty_struct *tty) | |||
4299 | return; | 3040 | return; |
4300 | 3041 | ||
4301 | cy_flush_buffer(tty); | 3042 | cy_flush_buffer(tty); |
4302 | shutdown(info); | 3043 | cy_shutdown(info, tty); |
4303 | info->port.count = 0; | 3044 | tty_port_hangup(&info->port); |
4304 | #ifdef CY_DEBUG_COUNT | ||
4305 | printk(KERN_DEBUG "cyc:cy_hangup (%d): setting count to 0\n", | ||
4306 | current->pid); | ||
4307 | #endif | ||
4308 | info->port.tty = NULL; | ||
4309 | info->port.flags &= ~ASYNC_NORMAL_ACTIVE; | ||
4310 | wake_up_interruptible(&info->port.open_wait); | ||
4311 | } /* cy_hangup */ | 3045 | } /* cy_hangup */ |
4312 | 3046 | ||
3047 | static int cyy_carrier_raised(struct tty_port *port) | ||
3048 | { | ||
3049 | struct cyclades_port *info = container_of(port, struct cyclades_port, | ||
3050 | port); | ||
3051 | struct cyclades_card *cinfo = info->card; | ||
3052 | unsigned long flags; | ||
3053 | int channel = info->line - cinfo->first_line; | ||
3054 | u32 cd; | ||
3055 | |||
3056 | spin_lock_irqsave(&cinfo->card_lock, flags); | ||
3057 | cyy_writeb(info, CyCAR, channel & 0x03); | ||
3058 | cd = cyy_readb(info, CyMSVR1) & CyDCD; | ||
3059 | spin_unlock_irqrestore(&cinfo->card_lock, flags); | ||
3060 | |||
3061 | return cd; | ||
3062 | } | ||
3063 | |||
3064 | static void cyy_dtr_rts(struct tty_port *port, int raise) | ||
3065 | { | ||
3066 | struct cyclades_port *info = container_of(port, struct cyclades_port, | ||
3067 | port); | ||
3068 | struct cyclades_card *cinfo = info->card; | ||
3069 | unsigned long flags; | ||
3070 | |||
3071 | spin_lock_irqsave(&cinfo->card_lock, flags); | ||
3072 | cyy_change_rts_dtr(info, raise ? TIOCM_RTS | TIOCM_DTR : 0, | ||
3073 | raise ? 0 : TIOCM_RTS | TIOCM_DTR); | ||
3074 | spin_unlock_irqrestore(&cinfo->card_lock, flags); | ||
3075 | } | ||
3076 | |||
3077 | static int cyz_carrier_raised(struct tty_port *port) | ||
3078 | { | ||
3079 | struct cyclades_port *info = container_of(port, struct cyclades_port, | ||
3080 | port); | ||
3081 | |||
3082 | return readl(&info->u.cyz.ch_ctrl->rs_status) & C_RS_DCD; | ||
3083 | } | ||
3084 | |||
3085 | static void cyz_dtr_rts(struct tty_port *port, int raise) | ||
3086 | { | ||
3087 | struct cyclades_port *info = container_of(port, struct cyclades_port, | ||
3088 | port); | ||
3089 | struct cyclades_card *cinfo = info->card; | ||
3090 | struct CH_CTRL __iomem *ch_ctrl = info->u.cyz.ch_ctrl; | ||
3091 | int ret, channel = info->line - cinfo->first_line; | ||
3092 | u32 rs; | ||
3093 | |||
3094 | rs = readl(&ch_ctrl->rs_control); | ||
3095 | if (raise) | ||
3096 | rs |= C_RS_RTS | C_RS_DTR; | ||
3097 | else | ||
3098 | rs &= ~(C_RS_RTS | C_RS_DTR); | ||
3099 | cy_writel(&ch_ctrl->rs_control, rs); | ||
3100 | ret = cyz_issue_cmd(cinfo, channel, C_CM_IOCTLM, 0L); | ||
3101 | if (ret != 0) | ||
3102 | printk(KERN_ERR "%s: retval on ttyC%d was %x\n", | ||
3103 | __func__, info->line, ret); | ||
3104 | #ifdef CY_DEBUG_DTR | ||
3105 | printk(KERN_DEBUG "%s: raising Z DTR\n", __func__); | ||
3106 | #endif | ||
3107 | } | ||
3108 | |||
3109 | static const struct tty_port_operations cyy_port_ops = { | ||
3110 | .carrier_raised = cyy_carrier_raised, | ||
3111 | .dtr_rts = cyy_dtr_rts, | ||
3112 | .shutdown = cy_do_close, | ||
3113 | }; | ||
3114 | |||
3115 | static const struct tty_port_operations cyz_port_ops = { | ||
3116 | .carrier_raised = cyz_carrier_raised, | ||
3117 | .dtr_rts = cyz_dtr_rts, | ||
3118 | .shutdown = cy_do_close, | ||
3119 | }; | ||
3120 | |||
4313 | /* | 3121 | /* |
4314 | * --------------------------------------------------------------------- | 3122 | * --------------------------------------------------------------------- |
4315 | * cy_init() and friends | 3123 | * cy_init() and friends |
@@ -4321,8 +3129,7 @@ static void cy_hangup(struct tty_struct *tty) | |||
4321 | static int __devinit cy_init_card(struct cyclades_card *cinfo) | 3129 | static int __devinit cy_init_card(struct cyclades_card *cinfo) |
4322 | { | 3130 | { |
4323 | struct cyclades_port *info; | 3131 | struct cyclades_port *info; |
4324 | unsigned int port; | 3132 | unsigned int channel, port; |
4325 | unsigned short chip_number; | ||
4326 | 3133 | ||
4327 | spin_lock_init(&cinfo->card_lock); | 3134 | spin_lock_init(&cinfo->card_lock); |
4328 | cinfo->intr_enabled = 0; | 3135 | cinfo->intr_enabled = 0; |
@@ -4334,9 +3141,9 @@ static int __devinit cy_init_card(struct cyclades_card *cinfo) | |||
4334 | return -ENOMEM; | 3141 | return -ENOMEM; |
4335 | } | 3142 | } |
4336 | 3143 | ||
4337 | for (port = cinfo->first_line; port < cinfo->first_line + cinfo->nports; | 3144 | for (channel = 0, port = cinfo->first_line; channel < cinfo->nports; |
4338 | port++) { | 3145 | channel++, port++) { |
4339 | info = &cinfo->ports[port - cinfo->first_line]; | 3146 | info = &cinfo->ports[channel]; |
4340 | tty_port_init(&info->port); | 3147 | tty_port_init(&info->port); |
4341 | info->magic = CYCLADES_MAGIC; | 3148 | info->magic = CYCLADES_MAGIC; |
4342 | info->card = cinfo; | 3149 | info->card = cinfo; |
@@ -4346,10 +3153,19 @@ static int __devinit cy_init_card(struct cyclades_card *cinfo) | |||
4346 | info->port.close_delay = 5 * HZ / 10; | 3153 | info->port.close_delay = 5 * HZ / 10; |
4347 | info->port.flags = STD_COM_FLAGS; | 3154 | info->port.flags = STD_COM_FLAGS; |
4348 | init_completion(&info->shutdown_wait); | 3155 | init_completion(&info->shutdown_wait); |
4349 | init_waitqueue_head(&info->delta_msr_wait); | ||
4350 | 3156 | ||
4351 | if (cy_is_Z(cinfo)) { | 3157 | if (cy_is_Z(cinfo)) { |
3158 | struct FIRM_ID *firm_id = cinfo->base_addr + ID_ADDRESS; | ||
3159 | struct ZFW_CTRL *zfw_ctrl; | ||
3160 | |||
3161 | info->port.ops = &cyz_port_ops; | ||
4352 | info->type = PORT_STARTECH; | 3162 | info->type = PORT_STARTECH; |
3163 | |||
3164 | zfw_ctrl = cinfo->base_addr + | ||
3165 | (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
3166 | info->u.cyz.ch_ctrl = &zfw_ctrl->ch_ctrl[channel]; | ||
3167 | info->u.cyz.buf_ctrl = &zfw_ctrl->buf_ctrl[channel]; | ||
3168 | |||
4353 | if (cinfo->hw_ver == ZO_V1) | 3169 | if (cinfo->hw_ver == ZO_V1) |
4354 | info->xmit_fifo_size = CYZ_FIFO_SIZE; | 3170 | info->xmit_fifo_size = CYZ_FIFO_SIZE; |
4355 | else | 3171 | else |
@@ -4359,17 +3175,20 @@ static int __devinit cy_init_card(struct cyclades_card *cinfo) | |||
4359 | cyz_rx_restart, (unsigned long)info); | 3175 | cyz_rx_restart, (unsigned long)info); |
4360 | #endif | 3176 | #endif |
4361 | } else { | 3177 | } else { |
3178 | unsigned short chip_number; | ||
4362 | int index = cinfo->bus_index; | 3179 | int index = cinfo->bus_index; |
3180 | |||
3181 | info->port.ops = &cyy_port_ops; | ||
4363 | info->type = PORT_CIRRUS; | 3182 | info->type = PORT_CIRRUS; |
4364 | info->xmit_fifo_size = CyMAX_CHAR_FIFO; | 3183 | info->xmit_fifo_size = CyMAX_CHAR_FIFO; |
4365 | info->cor1 = CyPARITY_NONE | Cy_1_STOP | Cy_8_BITS; | 3184 | info->cor1 = CyPARITY_NONE | Cy_1_STOP | Cy_8_BITS; |
4366 | info->cor2 = CyETC; | 3185 | info->cor2 = CyETC; |
4367 | info->cor3 = 0x08; /* _very_ small rcv threshold */ | 3186 | info->cor3 = 0x08; /* _very_ small rcv threshold */ |
4368 | 3187 | ||
4369 | chip_number = (port - cinfo->first_line) / 4; | 3188 | chip_number = channel / CyPORTS_PER_CHIP; |
4370 | info->chip_rev = readb(cinfo->base_addr + | 3189 | info->u.cyy.base_addr = cinfo->base_addr + |
4371 | (cy_chip_offset[chip_number] << index) + | 3190 | (cy_chip_offset[chip_number] << index); |
4372 | (CyGFRCR << index)); | 3191 | info->chip_rev = cyy_readb(info, CyGFRCR); |
4373 | 3192 | ||
4374 | if (info->chip_rev >= CD1400_REV_J) { | 3193 | if (info->chip_rev >= CD1400_REV_J) { |
4375 | /* It is a CD1400 rev. J or later */ | 3194 | /* It is a CD1400 rev. J or later */ |
@@ -5060,8 +3879,14 @@ static int __devinit cy_pci_probe(struct pci_dev *pdev, | |||
5060 | } | 3879 | } |
5061 | cy_card[card_no].num_chips = nchan / CyPORTS_PER_CHIP; | 3880 | cy_card[card_no].num_chips = nchan / CyPORTS_PER_CHIP; |
5062 | } else { | 3881 | } else { |
3882 | struct FIRM_ID __iomem *firm_id = addr2 + ID_ADDRESS; | ||
3883 | struct ZFW_CTRL __iomem *zfw_ctrl; | ||
3884 | |||
3885 | zfw_ctrl = addr2 + (readl(&firm_id->zfwctrl_addr) & 0xfffff); | ||
3886 | |||
5063 | cy_card[card_no].hw_ver = mailbox; | 3887 | cy_card[card_no].hw_ver = mailbox; |
5064 | cy_card[card_no].num_chips = (unsigned int)-1; | 3888 | cy_card[card_no].num_chips = (unsigned int)-1; |
3889 | cy_card[card_no].board_ctrl = &zfw_ctrl->board_ctrl; | ||
5065 | #ifdef CONFIG_CYZ_INTR | 3890 | #ifdef CONFIG_CYZ_INTR |
5066 | /* allocate IRQ only if board has an IRQ */ | 3891 | /* allocate IRQ only if board has an IRQ */ |
5067 | if (irq != 0 && irq != 255) { | 3892 | if (irq != 0 && irq != 255) { |
@@ -5191,18 +4016,30 @@ static int cyclades_proc_show(struct seq_file *m, void *v) | |||
5191 | for (j = 0; j < cy_card[i].nports; j++) { | 4016 | for (j = 0; j < cy_card[i].nports; j++) { |
5192 | info = &cy_card[i].ports[j]; | 4017 | info = &cy_card[i].ports[j]; |
5193 | 4018 | ||
5194 | if (info->port.count) | 4019 | if (info->port.count) { |
4020 | /* XXX is the ldisc num worth this? */ | ||
4021 | struct tty_struct *tty; | ||
4022 | struct tty_ldisc *ld; | ||
4023 | int num = 0; | ||
4024 | tty = tty_port_tty_get(&info->port); | ||
4025 | if (tty) { | ||
4026 | ld = tty_ldisc_ref(tty); | ||
4027 | if (ld) { | ||
4028 | num = ld->ops->num; | ||
4029 | tty_ldisc_deref(ld); | ||
4030 | } | ||
4031 | tty_kref_put(tty); | ||
4032 | } | ||
5195 | seq_printf(m, "%3d %8lu %10lu %8lu " | 4033 | seq_printf(m, "%3d %8lu %10lu %8lu " |
5196 | "%10lu %8lu %9lu %6ld\n", info->line, | 4034 | "%10lu %8lu %9lu %6d\n", info->line, |
5197 | (cur_jifs - info->idle_stats.in_use) / | 4035 | (cur_jifs - info->idle_stats.in_use) / |
5198 | HZ, info->idle_stats.xmit_bytes, | 4036 | HZ, info->idle_stats.xmit_bytes, |
5199 | (cur_jifs - info->idle_stats.xmit_idle)/ | 4037 | (cur_jifs - info->idle_stats.xmit_idle)/ |
5200 | HZ, info->idle_stats.recv_bytes, | 4038 | HZ, info->idle_stats.recv_bytes, |
5201 | (cur_jifs - info->idle_stats.recv_idle)/ | 4039 | (cur_jifs - info->idle_stats.recv_idle)/ |
5202 | HZ, info->idle_stats.overruns, | 4040 | HZ, info->idle_stats.overruns, |
5203 | /* FIXME: double check locking */ | 4041 | num); |
5204 | (long)info->port.tty->ldisc->ops->num); | 4042 | } else |
5205 | else | ||
5206 | seq_printf(m, "%3d %8lu %10lu %8lu " | 4043 | seq_printf(m, "%3d %8lu %10lu %8lu " |
5207 | "%10lu %8lu %9lu %6ld\n", | 4044 | "%10lu %8lu %9lu %6ld\n", |
5208 | info->line, 0L, 0L, 0L, 0L, 0L, 0L, 0L); | 4045 | info->line, 0L, 0L, 0L, 0L, 0L, 0L, 0L); |
diff --git a/drivers/char/esp.c b/drivers/char/esp.c index a5c59fc2b0ff..b19d43cd9542 100644 --- a/drivers/char/esp.c +++ b/drivers/char/esp.c | |||
@@ -572,7 +572,7 @@ static void check_modem_status(struct esp_struct *info) | |||
572 | info->icount.dcd++; | 572 | info->icount.dcd++; |
573 | if (status & UART_MSR_DCTS) | 573 | if (status & UART_MSR_DCTS) |
574 | info->icount.cts++; | 574 | info->icount.cts++; |
575 | wake_up_interruptible(&info->delta_msr_wait); | 575 | wake_up_interruptible(&info->port.delta_msr_wait); |
576 | } | 576 | } |
577 | 577 | ||
578 | if ((info->port.flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) { | 578 | if ((info->port.flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) { |
@@ -927,7 +927,7 @@ static void shutdown(struct esp_struct *info) | |||
927 | * clear delta_msr_wait queue to avoid mem leaks: we may free the irq | 927 | * clear delta_msr_wait queue to avoid mem leaks: we may free the irq |
928 | * here so the queue might never be waken up | 928 | * here so the queue might never be waken up |
929 | */ | 929 | */ |
930 | wake_up_interruptible(&info->delta_msr_wait); | 930 | wake_up_interruptible(&info->port.delta_msr_wait); |
931 | wake_up_interruptible(&info->break_wait); | 931 | wake_up_interruptible(&info->break_wait); |
932 | 932 | ||
933 | /* stop a DMA transfer on the port being closed */ | 933 | /* stop a DMA transfer on the port being closed */ |
@@ -1800,7 +1800,7 @@ static int rs_ioctl(struct tty_struct *tty, struct file *file, | |||
1800 | spin_unlock_irqrestore(&info->lock, flags); | 1800 | spin_unlock_irqrestore(&info->lock, flags); |
1801 | while (1) { | 1801 | while (1) { |
1802 | /* FIXME: convert to new style wakeup */ | 1802 | /* FIXME: convert to new style wakeup */ |
1803 | interruptible_sleep_on(&info->delta_msr_wait); | 1803 | interruptible_sleep_on(&info->port.delta_msr_wait); |
1804 | /* see if a signal did it */ | 1804 | /* see if a signal did it */ |
1805 | if (signal_pending(current)) | 1805 | if (signal_pending(current)) |
1806 | return -ERESTARTSYS; | 1806 | return -ERESTARTSYS; |
@@ -2452,7 +2452,6 @@ static int __init espserial_init(void) | |||
2452 | info->config.flow_off = flow_off; | 2452 | info->config.flow_off = flow_off; |
2453 | info->config.pio_threshold = pio_threshold; | 2453 | info->config.pio_threshold = pio_threshold; |
2454 | info->next_port = ports; | 2454 | info->next_port = ports; |
2455 | init_waitqueue_head(&info->delta_msr_wait); | ||
2456 | init_waitqueue_head(&info->break_wait); | 2455 | init_waitqueue_head(&info->break_wait); |
2457 | ports = info; | 2456 | ports = info; |
2458 | printk(KERN_INFO "ttyP%d at 0x%04x (irq = %d) is an ESP ", | 2457 | printk(KERN_INFO "ttyP%d at 0x%04x (irq = %d) is an ESP ", |
diff --git a/drivers/char/hw_random/core.c b/drivers/char/hw_random/core.c index fc93e2fc7c71..1573aebd54b5 100644 --- a/drivers/char/hw_random/core.c +++ b/drivers/char/hw_random/core.c | |||
@@ -153,7 +153,7 @@ static const struct file_operations rng_chrdev_ops = { | |||
153 | static struct miscdevice rng_miscdev = { | 153 | static struct miscdevice rng_miscdev = { |
154 | .minor = RNG_MISCDEV_MINOR, | 154 | .minor = RNG_MISCDEV_MINOR, |
155 | .name = RNG_MODULE_NAME, | 155 | .name = RNG_MODULE_NAME, |
156 | .devnode = "hwrng", | 156 | .nodename = "hwrng", |
157 | .fops = &rng_chrdev_ops, | 157 | .fops = &rng_chrdev_ops, |
158 | }; | 158 | }; |
159 | 159 | ||
diff --git a/drivers/char/isicom.c b/drivers/char/isicom.c index 4f1f4cd670da..426bfdd7f3e0 100644 --- a/drivers/char/isicom.c +++ b/drivers/char/isicom.c | |||
@@ -846,37 +846,53 @@ static int isicom_carrier_raised(struct tty_port *port) | |||
846 | return (ip->status & ISI_DCD)?1 : 0; | 846 | return (ip->status & ISI_DCD)?1 : 0; |
847 | } | 847 | } |
848 | 848 | ||
849 | static int isicom_open(struct tty_struct *tty, struct file *filp) | 849 | static struct tty_port *isicom_find_port(struct tty_struct *tty) |
850 | { | 850 | { |
851 | struct isi_port *port; | 851 | struct isi_port *port; |
852 | struct isi_board *card; | 852 | struct isi_board *card; |
853 | unsigned int board; | 853 | unsigned int board; |
854 | int error, line; | 854 | int line = tty->index; |
855 | 855 | ||
856 | line = tty->index; | ||
857 | if (line < 0 || line > PORT_COUNT-1) | 856 | if (line < 0 || line > PORT_COUNT-1) |
858 | return -ENODEV; | 857 | return NULL; |
859 | board = BOARD(line); | 858 | board = BOARD(line); |
860 | card = &isi_card[board]; | 859 | card = &isi_card[board]; |
861 | 860 | ||
862 | if (!(card->status & FIRMWARE_LOADED)) | 861 | if (!(card->status & FIRMWARE_LOADED)) |
863 | return -ENODEV; | 862 | return NULL; |
864 | 863 | ||
865 | /* open on a port greater than the port count for the card !!! */ | 864 | /* open on a port greater than the port count for the card !!! */ |
866 | if (line > ((board * 16) + card->port_count - 1)) | 865 | if (line > ((board * 16) + card->port_count - 1)) |
867 | return -ENODEV; | 866 | return NULL; |
868 | 867 | ||
869 | port = &isi_ports[line]; | 868 | port = &isi_ports[line]; |
870 | if (isicom_paranoia_check(port, tty->name, "isicom_open")) | 869 | if (isicom_paranoia_check(port, tty->name, "isicom_open")) |
871 | return -ENODEV; | 870 | return NULL; |
872 | 871 | ||
872 | return &port->port; | ||
873 | } | ||
874 | |||
875 | static int isicom_open(struct tty_struct *tty, struct file *filp) | ||
876 | { | ||
877 | struct isi_port *port; | ||
878 | struct isi_board *card; | ||
879 | struct tty_port *tport; | ||
880 | int error = 0; | ||
881 | |||
882 | tport = isicom_find_port(tty); | ||
883 | if (tport == NULL) | ||
884 | return -ENODEV; | ||
885 | port = container_of(tport, struct isi_port, port); | ||
886 | card = &isi_card[BOARD(tty->index)]; | ||
873 | isicom_setup_board(card); | 887 | isicom_setup_board(card); |
874 | 888 | ||
875 | /* FIXME: locking on port.count etc */ | 889 | /* FIXME: locking on port.count etc */ |
876 | port->port.count++; | 890 | port->port.count++; |
877 | tty->driver_data = port; | 891 | tty->driver_data = port; |
878 | tty_port_tty_set(&port->port, tty); | 892 | tty_port_tty_set(&port->port, tty); |
879 | error = isicom_setup_port(tty); | 893 | /* FIXME: Locking on Initialized flag */ |
894 | if (!test_bit(ASYNCB_INITIALIZED, &tport->flags)) | ||
895 | error = isicom_setup_port(tty); | ||
880 | if (error == 0) | 896 | if (error == 0) |
881 | error = tty_port_block_til_ready(&port->port, tty, filp); | 897 | error = tty_port_block_til_ready(&port->port, tty, filp); |
882 | return error; | 898 | return error; |
@@ -952,19 +968,12 @@ static void isicom_flush_buffer(struct tty_struct *tty) | |||
952 | tty_wakeup(tty); | 968 | tty_wakeup(tty); |
953 | } | 969 | } |
954 | 970 | ||
955 | static void isicom_close(struct tty_struct *tty, struct file *filp) | 971 | static void isicom_close_port(struct tty_port *port) |
956 | { | 972 | { |
957 | struct isi_port *ip = tty->driver_data; | 973 | struct isi_port *ip = container_of(port, struct isi_port, port); |
958 | struct tty_port *port = &ip->port; | 974 | struct isi_board *card = ip->card; |
959 | struct isi_board *card; | ||
960 | unsigned long flags; | 975 | unsigned long flags; |
961 | 976 | ||
962 | BUG_ON(!ip); | ||
963 | |||
964 | card = ip->card; | ||
965 | if (isicom_paranoia_check(ip, tty->name, "isicom_close")) | ||
966 | return; | ||
967 | |||
968 | /* indicate to the card that no more data can be received | 977 | /* indicate to the card that no more data can be received |
969 | on this port */ | 978 | on this port */ |
970 | spin_lock_irqsave(&card->card_lock, flags); | 979 | spin_lock_irqsave(&card->card_lock, flags); |
@@ -974,9 +983,19 @@ static void isicom_close(struct tty_struct *tty, struct file *filp) | |||
974 | } | 983 | } |
975 | isicom_shutdown_port(ip); | 984 | isicom_shutdown_port(ip); |
976 | spin_unlock_irqrestore(&card->card_lock, flags); | 985 | spin_unlock_irqrestore(&card->card_lock, flags); |
986 | } | ||
987 | |||
988 | static void isicom_close(struct tty_struct *tty, struct file *filp) | ||
989 | { | ||
990 | struct isi_port *ip = tty->driver_data; | ||
991 | struct tty_port *port = &ip->port; | ||
992 | if (isicom_paranoia_check(ip, tty->name, "isicom_close")) | ||
993 | return; | ||
977 | 994 | ||
995 | if (tty_port_close_start(port, tty, filp) == 0) | ||
996 | return; | ||
997 | isicom_close_port(port); | ||
978 | isicom_flush_buffer(tty); | 998 | isicom_flush_buffer(tty); |
979 | |||
980 | tty_port_close_end(port, tty); | 999 | tty_port_close_end(port, tty); |
981 | } | 1000 | } |
982 | 1001 | ||
diff --git a/drivers/char/mbcs.c b/drivers/char/mbcs.c index acd8e9ed474a..87c67b42bc08 100644 --- a/drivers/char/mbcs.c +++ b/drivers/char/mbcs.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/moduleparam.h> | 15 | #include <linux/moduleparam.h> |
16 | #include <linux/types.h> | 16 | #include <linux/types.h> |
17 | #include <linux/ioport.h> | 17 | #include <linux/ioport.h> |
18 | #include <linux/kernel.h> | ||
18 | #include <linux/notifier.h> | 19 | #include <linux/notifier.h> |
19 | #include <linux/reboot.h> | 20 | #include <linux/reboot.h> |
20 | #include <linux/init.h> | 21 | #include <linux/init.h> |
@@ -715,8 +716,8 @@ static ssize_t show_algo(struct device *dev, struct device_attribute *attr, char | |||
715 | */ | 716 | */ |
716 | debug0 = *(uint64_t *) soft->debug_addr; | 717 | debug0 = *(uint64_t *) soft->debug_addr; |
717 | 718 | ||
718 | return sprintf(buf, "0x%lx 0x%lx\n", | 719 | return sprintf(buf, "0x%x 0x%x\n", |
719 | (debug0 >> 32), (debug0 & 0xffffffff)); | 720 | upper_32_bits(debug0), lower_32_bits(debug0)); |
720 | } | 721 | } |
721 | 722 | ||
722 | static ssize_t store_algo(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) | 723 | static ssize_t store_algo(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
diff --git a/drivers/char/mem.c b/drivers/char/mem.c index 0491cdf63f2a..0aede1d6a9ea 100644 --- a/drivers/char/mem.c +++ b/drivers/char/mem.c | |||
@@ -866,24 +866,25 @@ static const struct file_operations kmsg_fops = { | |||
866 | 866 | ||
867 | static const struct memdev { | 867 | static const struct memdev { |
868 | const char *name; | 868 | const char *name; |
869 | mode_t mode; | ||
869 | const struct file_operations *fops; | 870 | const struct file_operations *fops; |
870 | struct backing_dev_info *dev_info; | 871 | struct backing_dev_info *dev_info; |
871 | } devlist[] = { | 872 | } devlist[] = { |
872 | [ 1] = { "mem", &mem_fops, &directly_mappable_cdev_bdi }, | 873 | [1] = { "mem", 0, &mem_fops, &directly_mappable_cdev_bdi }, |
873 | #ifdef CONFIG_DEVKMEM | 874 | #ifdef CONFIG_DEVKMEM |
874 | [ 2] = { "kmem", &kmem_fops, &directly_mappable_cdev_bdi }, | 875 | [2] = { "kmem", 0, &kmem_fops, &directly_mappable_cdev_bdi }, |
875 | #endif | 876 | #endif |
876 | [ 3] = {"null", &null_fops, NULL }, | 877 | [3] = { "null", 0666, &null_fops, NULL }, |
877 | #ifdef CONFIG_DEVPORT | 878 | #ifdef CONFIG_DEVPORT |
878 | [ 4] = { "port", &port_fops, NULL }, | 879 | [4] = { "port", 0, &port_fops, NULL }, |
879 | #endif | 880 | #endif |
880 | [ 5] = { "zero", &zero_fops, &zero_bdi }, | 881 | [5] = { "zero", 0666, &zero_fops, &zero_bdi }, |
881 | [ 7] = { "full", &full_fops, NULL }, | 882 | [7] = { "full", 0666, &full_fops, NULL }, |
882 | [ 8] = { "random", &random_fops, NULL }, | 883 | [8] = { "random", 0666, &random_fops, NULL }, |
883 | [ 9] = { "urandom", &urandom_fops, NULL }, | 884 | [9] = { "urandom", 0666, &urandom_fops, NULL }, |
884 | [11] = { "kmsg", &kmsg_fops, NULL }, | 885 | [11] = { "kmsg", 0, &kmsg_fops, NULL }, |
885 | #ifdef CONFIG_CRASH_DUMP | 886 | #ifdef CONFIG_CRASH_DUMP |
886 | [12] = { "oldmem", &oldmem_fops, NULL }, | 887 | [12] = { "oldmem", 0, &oldmem_fops, NULL }, |
887 | #endif | 888 | #endif |
888 | }; | 889 | }; |
889 | 890 | ||
@@ -920,6 +921,13 @@ static const struct file_operations memory_fops = { | |||
920 | .open = memory_open, | 921 | .open = memory_open, |
921 | }; | 922 | }; |
922 | 923 | ||
924 | static char *mem_devnode(struct device *dev, mode_t *mode) | ||
925 | { | ||
926 | if (mode && devlist[MINOR(dev->devt)].mode) | ||
927 | *mode = devlist[MINOR(dev->devt)].mode; | ||
928 | return NULL; | ||
929 | } | ||
930 | |||
923 | static struct class *mem_class; | 931 | static struct class *mem_class; |
924 | 932 | ||
925 | static int __init chr_dev_init(void) | 933 | static int __init chr_dev_init(void) |
@@ -935,6 +943,7 @@ static int __init chr_dev_init(void) | |||
935 | printk("unable to get major %d for memory devs\n", MEM_MAJOR); | 943 | printk("unable to get major %d for memory devs\n", MEM_MAJOR); |
936 | 944 | ||
937 | mem_class = class_create(THIS_MODULE, "mem"); | 945 | mem_class = class_create(THIS_MODULE, "mem"); |
946 | mem_class->devnode = mem_devnode; | ||
938 | for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) { | 947 | for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) { |
939 | if (!devlist[minor].name) | 948 | if (!devlist[minor].name) |
940 | continue; | 949 | continue; |
diff --git a/drivers/char/misc.c b/drivers/char/misc.c index 62c99fa59e2b..1ee27cc23426 100644 --- a/drivers/char/misc.c +++ b/drivers/char/misc.c | |||
@@ -263,12 +263,14 @@ int misc_deregister(struct miscdevice *misc) | |||
263 | EXPORT_SYMBOL(misc_register); | 263 | EXPORT_SYMBOL(misc_register); |
264 | EXPORT_SYMBOL(misc_deregister); | 264 | EXPORT_SYMBOL(misc_deregister); |
265 | 265 | ||
266 | static char *misc_nodename(struct device *dev) | 266 | static char *misc_devnode(struct device *dev, mode_t *mode) |
267 | { | 267 | { |
268 | struct miscdevice *c = dev_get_drvdata(dev); | 268 | struct miscdevice *c = dev_get_drvdata(dev); |
269 | 269 | ||
270 | if (c->devnode) | 270 | if (mode && c->mode) |
271 | return kstrdup(c->devnode, GFP_KERNEL); | 271 | *mode = c->mode; |
272 | if (c->nodename) | ||
273 | return kstrdup(c->nodename, GFP_KERNEL); | ||
272 | return NULL; | 274 | return NULL; |
273 | } | 275 | } |
274 | 276 | ||
@@ -287,7 +289,7 @@ static int __init misc_init(void) | |||
287 | err = -EIO; | 289 | err = -EIO; |
288 | if (register_chrdev(MISC_MAJOR,"misc",&misc_fops)) | 290 | if (register_chrdev(MISC_MAJOR,"misc",&misc_fops)) |
289 | goto fail_printk; | 291 | goto fail_printk; |
290 | misc_class->nodename = misc_nodename; | 292 | misc_class->devnode = misc_devnode; |
291 | return 0; | 293 | return 0; |
292 | 294 | ||
293 | fail_printk: | 295 | fail_printk: |
diff --git a/drivers/char/mxser.c b/drivers/char/mxser.c index dbf8d52f31d0..5e28d39b9e81 100644 --- a/drivers/char/mxser.c +++ b/drivers/char/mxser.c | |||
@@ -48,7 +48,7 @@ | |||
48 | 48 | ||
49 | #include "mxser.h" | 49 | #include "mxser.h" |
50 | 50 | ||
51 | #define MXSER_VERSION "2.0.4" /* 1.12 */ | 51 | #define MXSER_VERSION "2.0.5" /* 1.14 */ |
52 | #define MXSERMAJOR 174 | 52 | #define MXSERMAJOR 174 |
53 | 53 | ||
54 | #define MXSER_BOARDS 4 /* Max. boards */ | 54 | #define MXSER_BOARDS 4 /* Max. boards */ |
@@ -69,6 +69,7 @@ | |||
69 | #define PCI_DEVICE_ID_POS104UL 0x1044 | 69 | #define PCI_DEVICE_ID_POS104UL 0x1044 |
70 | #define PCI_DEVICE_ID_CB108 0x1080 | 70 | #define PCI_DEVICE_ID_CB108 0x1080 |
71 | #define PCI_DEVICE_ID_CP102UF 0x1023 | 71 | #define PCI_DEVICE_ID_CP102UF 0x1023 |
72 | #define PCI_DEVICE_ID_CP112UL 0x1120 | ||
72 | #define PCI_DEVICE_ID_CB114 0x1142 | 73 | #define PCI_DEVICE_ID_CB114 0x1142 |
73 | #define PCI_DEVICE_ID_CP114UL 0x1143 | 74 | #define PCI_DEVICE_ID_CP114UL 0x1143 |
74 | #define PCI_DEVICE_ID_CB134I 0x1341 | 75 | #define PCI_DEVICE_ID_CB134I 0x1341 |
@@ -139,7 +140,8 @@ static const struct mxser_cardinfo mxser_cards[] = { | |||
139 | { "CP-138U series", 8, }, | 140 | { "CP-138U series", 8, }, |
140 | { "POS-104UL series", 4, }, | 141 | { "POS-104UL series", 4, }, |
141 | { "CP-114UL series", 4, }, | 142 | { "CP-114UL series", 4, }, |
142 | /*30*/ { "CP-102UF series", 2, } | 143 | /*30*/ { "CP-102UF series", 2, }, |
144 | { "CP-112UL series", 2, }, | ||
143 | }; | 145 | }; |
144 | 146 | ||
145 | /* driver_data correspond to the lines in the structure above | 147 | /* driver_data correspond to the lines in the structure above |
@@ -170,6 +172,7 @@ static struct pci_device_id mxser_pcibrds[] = { | |||
170 | { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_POS104UL), .driver_data = 28 }, | 172 | { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_POS104UL), .driver_data = 28 }, |
171 | { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP114UL), .driver_data = 29 }, | 173 | { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP114UL), .driver_data = 29 }, |
172 | { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP102UF), .driver_data = 30 }, | 174 | { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP102UF), .driver_data = 30 }, |
175 | { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP112UL), .driver_data = 31 }, | ||
173 | { } | 176 | { } |
174 | }; | 177 | }; |
175 | MODULE_DEVICE_TABLE(pci, mxser_pcibrds); | 178 | MODULE_DEVICE_TABLE(pci, mxser_pcibrds); |
@@ -258,7 +261,6 @@ struct mxser_port { | |||
258 | struct mxser_mon mon_data; | 261 | struct mxser_mon mon_data; |
259 | 262 | ||
260 | spinlock_t slock; | 263 | spinlock_t slock; |
261 | wait_queue_head_t delta_msr_wait; | ||
262 | }; | 264 | }; |
263 | 265 | ||
264 | struct mxser_board { | 266 | struct mxser_board { |
@@ -818,7 +820,7 @@ static void mxser_check_modem_status(struct tty_struct *tty, | |||
818 | if (status & UART_MSR_DCTS) | 820 | if (status & UART_MSR_DCTS) |
819 | port->icount.cts++; | 821 | port->icount.cts++; |
820 | port->mon_data.modem_status = status; | 822 | port->mon_data.modem_status = status; |
821 | wake_up_interruptible(&port->delta_msr_wait); | 823 | wake_up_interruptible(&port->port.delta_msr_wait); |
822 | 824 | ||
823 | if ((port->port.flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) { | 825 | if ((port->port.flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) { |
824 | if (status & UART_MSR_DCD) | 826 | if (status & UART_MSR_DCD) |
@@ -973,7 +975,7 @@ static void mxser_shutdown(struct tty_struct *tty) | |||
973 | * clear delta_msr_wait queue to avoid mem leaks: we may free the irq | 975 | * clear delta_msr_wait queue to avoid mem leaks: we may free the irq |
974 | * here so the queue might never be waken up | 976 | * here so the queue might never be waken up |
975 | */ | 977 | */ |
976 | wake_up_interruptible(&info->delta_msr_wait); | 978 | wake_up_interruptible(&info->port.delta_msr_wait); |
977 | 979 | ||
978 | /* | 980 | /* |
979 | * Free the IRQ, if necessary | 981 | * Free the IRQ, if necessary |
@@ -1073,34 +1075,17 @@ static void mxser_flush_buffer(struct tty_struct *tty) | |||
1073 | } | 1075 | } |
1074 | 1076 | ||
1075 | 1077 | ||
1076 | /* | 1078 | static void mxser_close_port(struct tty_struct *tty, struct tty_port *port) |
1077 | * This routine is called when the serial port gets closed. First, we | ||
1078 | * wait for the last remaining data to be sent. Then, we unlink its | ||
1079 | * async structure from the interrupt chain if necessary, and we free | ||
1080 | * that IRQ if nothing is left in the chain. | ||
1081 | */ | ||
1082 | static void mxser_close(struct tty_struct *tty, struct file *filp) | ||
1083 | { | 1079 | { |
1084 | struct mxser_port *info = tty->driver_data; | 1080 | struct mxser_port *info = container_of(port, struct mxser_port, port); |
1085 | struct tty_port *port = &info->port; | ||
1086 | |||
1087 | unsigned long timeout; | 1081 | unsigned long timeout; |
1088 | |||
1089 | if (tty->index == MXSER_PORTS) | ||
1090 | return; | ||
1091 | if (!info) | ||
1092 | return; | ||
1093 | |||
1094 | if (tty_port_close_start(port, tty, filp) == 0) | ||
1095 | return; | ||
1096 | |||
1097 | /* | 1082 | /* |
1098 | * Save the termios structure, since this port may have | 1083 | * Save the termios structure, since this port may have |
1099 | * separate termios for callout and dialin. | 1084 | * separate termios for callout and dialin. |
1100 | * | 1085 | * |
1101 | * FIXME: Can this go ? | 1086 | * FIXME: Can this go ? |
1102 | */ | 1087 | */ |
1103 | if (info->port.flags & ASYNC_NORMAL_ACTIVE) | 1088 | if (port->flags & ASYNC_NORMAL_ACTIVE) |
1104 | info->normal_termios = *tty->termios; | 1089 | info->normal_termios = *tty->termios; |
1105 | /* | 1090 | /* |
1106 | * At this point we stop accepting input. To do this, we | 1091 | * At this point we stop accepting input. To do this, we |
@@ -1112,7 +1097,7 @@ static void mxser_close(struct tty_struct *tty, struct file *filp) | |||
1112 | if (info->board->chip_flag) | 1097 | if (info->board->chip_flag) |
1113 | info->IER &= ~MOXA_MUST_RECV_ISR; | 1098 | info->IER &= ~MOXA_MUST_RECV_ISR; |
1114 | 1099 | ||
1115 | if (info->port.flags & ASYNC_INITIALIZED) { | 1100 | if (port->flags & ASYNC_INITIALIZED) { |
1116 | outb(info->IER, info->ioaddr + UART_IER); | 1101 | outb(info->IER, info->ioaddr + UART_IER); |
1117 | /* | 1102 | /* |
1118 | * Before we drop DTR, make sure the UART transmitter | 1103 | * Before we drop DTR, make sure the UART transmitter |
@@ -1127,8 +1112,26 @@ static void mxser_close(struct tty_struct *tty, struct file *filp) | |||
1127 | } | 1112 | } |
1128 | } | 1113 | } |
1129 | mxser_shutdown(tty); | 1114 | mxser_shutdown(tty); |
1130 | mxser_flush_buffer(tty); | ||
1131 | 1115 | ||
1116 | } | ||
1117 | |||
1118 | /* | ||
1119 | * This routine is called when the serial port gets closed. First, we | ||
1120 | * wait for the last remaining data to be sent. Then, we unlink its | ||
1121 | * async structure from the interrupt chain if necessary, and we free | ||
1122 | * that IRQ if nothing is left in the chain. | ||
1123 | */ | ||
1124 | static void mxser_close(struct tty_struct *tty, struct file *filp) | ||
1125 | { | ||
1126 | struct mxser_port *info = tty->driver_data; | ||
1127 | struct tty_port *port = &info->port; | ||
1128 | |||
1129 | if (tty->index == MXSER_PORTS) | ||
1130 | return; | ||
1131 | if (tty_port_close_start(port, tty, filp) == 0) | ||
1132 | return; | ||
1133 | mxser_close_port(tty, port); | ||
1134 | mxser_flush_buffer(tty); | ||
1132 | /* Right now the tty_port set is done outside of the close_end helper | 1135 | /* Right now the tty_port set is done outside of the close_end helper |
1133 | as we don't yet have everyone using refcounts */ | 1136 | as we don't yet have everyone using refcounts */ |
1134 | tty_port_close_end(port, tty); | 1137 | tty_port_close_end(port, tty); |
@@ -1761,7 +1764,7 @@ static int mxser_ioctl(struct tty_struct *tty, struct file *file, | |||
1761 | cnow = info->icount; /* note the counters on entry */ | 1764 | cnow = info->icount; /* note the counters on entry */ |
1762 | spin_unlock_irqrestore(&info->slock, flags); | 1765 | spin_unlock_irqrestore(&info->slock, flags); |
1763 | 1766 | ||
1764 | return wait_event_interruptible(info->delta_msr_wait, | 1767 | return wait_event_interruptible(info->port.delta_msr_wait, |
1765 | mxser_cflags_changed(info, arg, &cnow)); | 1768 | mxser_cflags_changed(info, arg, &cnow)); |
1766 | /* | 1769 | /* |
1767 | * Get counter of input serial line interrupts (DCD,RI,DSR,CTS) | 1770 | * Get counter of input serial line interrupts (DCD,RI,DSR,CTS) |
@@ -1803,7 +1806,7 @@ static int mxser_ioctl(struct tty_struct *tty, struct file *file, | |||
1803 | 1806 | ||
1804 | lock_kernel(); | 1807 | lock_kernel(); |
1805 | len = mxser_chars_in_buffer(tty); | 1808 | len = mxser_chars_in_buffer(tty); |
1806 | lsr = inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT; | 1809 | lsr = inb(info->ioaddr + UART_LSR) & UART_LSR_THRE; |
1807 | len += (lsr ? 0 : 1); | 1810 | len += (lsr ? 0 : 1); |
1808 | unlock_kernel(); | 1811 | unlock_kernel(); |
1809 | 1812 | ||
@@ -2413,7 +2416,6 @@ static int __devinit mxser_initbrd(struct mxser_board *brd, | |||
2413 | info->port.close_delay = 5 * HZ / 10; | 2416 | info->port.close_delay = 5 * HZ / 10; |
2414 | info->port.closing_wait = 30 * HZ; | 2417 | info->port.closing_wait = 30 * HZ; |
2415 | info->normal_termios = mxvar_sdriver->init_termios; | 2418 | info->normal_termios = mxvar_sdriver->init_termios; |
2416 | init_waitqueue_head(&info->delta_msr_wait); | ||
2417 | memset(&info->mon_data, 0, sizeof(struct mxser_mon)); | 2419 | memset(&info->mon_data, 0, sizeof(struct mxser_mon)); |
2418 | info->err_shadow = 0; | 2420 | info->err_shadow = 0; |
2419 | spin_lock_init(&info->slock); | 2421 | spin_lock_init(&info->slock); |
diff --git a/drivers/char/n_tty.c b/drivers/char/n_tty.c index 4e28b35024ec..2e50f4dfc79c 100644 --- a/drivers/char/n_tty.c +++ b/drivers/char/n_tty.c | |||
@@ -272,7 +272,8 @@ static inline int is_continuation(unsigned char c, struct tty_struct *tty) | |||
272 | * | 272 | * |
273 | * This is a helper function that handles one output character | 273 | * This is a helper function that handles one output character |
274 | * (including special characters like TAB, CR, LF, etc.), | 274 | * (including special characters like TAB, CR, LF, etc.), |
275 | * putting the results in the tty driver's write buffer. | 275 | * doing OPOST processing and putting the results in the |
276 | * tty driver's write buffer. | ||
276 | * | 277 | * |
277 | * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY | 278 | * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY |
278 | * and NLDLY. They simply aren't relevant in the world today. | 279 | * and NLDLY. They simply aren't relevant in the world today. |
@@ -350,8 +351,9 @@ static int do_output_char(unsigned char c, struct tty_struct *tty, int space) | |||
350 | * @c: character (or partial unicode symbol) | 351 | * @c: character (or partial unicode symbol) |
351 | * @tty: terminal device | 352 | * @tty: terminal device |
352 | * | 353 | * |
353 | * Perform OPOST processing. Returns -1 when the output device is | 354 | * Output one character with OPOST processing. |
354 | * full and the character must be retried. | 355 | * Returns -1 when the output device is full and the character |
356 | * must be retried. | ||
355 | * | 357 | * |
356 | * Locking: output_lock to protect column state and space left | 358 | * Locking: output_lock to protect column state and space left |
357 | * (also, this is called from n_tty_write under the | 359 | * (also, this is called from n_tty_write under the |
@@ -377,8 +379,11 @@ static int process_output(unsigned char c, struct tty_struct *tty) | |||
377 | /** | 379 | /** |
378 | * process_output_block - block post processor | 380 | * process_output_block - block post processor |
379 | * @tty: terminal device | 381 | * @tty: terminal device |
380 | * @inbuf: user buffer | 382 | * @buf: character buffer |
381 | * @nr: number of bytes | 383 | * @nr: number of bytes to output |
384 | * | ||
385 | * Output a block of characters with OPOST processing. | ||
386 | * Returns the number of characters output. | ||
382 | * | 387 | * |
383 | * This path is used to speed up block console writes, among other | 388 | * This path is used to speed up block console writes, among other |
384 | * things when processing blocks of output data. It handles only | 389 | * things when processing blocks of output data. It handles only |
@@ -571,33 +576,23 @@ static void process_echoes(struct tty_struct *tty) | |||
571 | break; | 576 | break; |
572 | 577 | ||
573 | default: | 578 | default: |
574 | if (iscntrl(op)) { | ||
575 | if (L_ECHOCTL(tty)) { | ||
576 | /* | ||
577 | * Ensure there is enough space | ||
578 | * for the whole ctrl pair. | ||
579 | */ | ||
580 | if (space < 2) { | ||
581 | no_space_left = 1; | ||
582 | break; | ||
583 | } | ||
584 | tty_put_char(tty, '^'); | ||
585 | tty_put_char(tty, op ^ 0100); | ||
586 | tty->column += 2; | ||
587 | space -= 2; | ||
588 | } else { | ||
589 | if (!space) { | ||
590 | no_space_left = 1; | ||
591 | break; | ||
592 | } | ||
593 | tty_put_char(tty, op); | ||
594 | space--; | ||
595 | } | ||
596 | } | ||
597 | /* | 579 | /* |
598 | * If above falls through, this was an | 580 | * If the op is not a special byte code, |
599 | * undefined op. | 581 | * it is a ctrl char tagged to be echoed |
582 | * as "^X" (where X is the letter | ||
583 | * representing the control char). | ||
584 | * Note that we must ensure there is | ||
585 | * enough space for the whole ctrl pair. | ||
586 | * | ||
600 | */ | 587 | */ |
588 | if (space < 2) { | ||
589 | no_space_left = 1; | ||
590 | break; | ||
591 | } | ||
592 | tty_put_char(tty, '^'); | ||
593 | tty_put_char(tty, op ^ 0100); | ||
594 | tty->column += 2; | ||
595 | space -= 2; | ||
601 | cp += 2; | 596 | cp += 2; |
602 | nr -= 2; | 597 | nr -= 2; |
603 | } | 598 | } |
@@ -605,12 +600,18 @@ static void process_echoes(struct tty_struct *tty) | |||
605 | if (no_space_left) | 600 | if (no_space_left) |
606 | break; | 601 | break; |
607 | } else { | 602 | } else { |
608 | int retval; | 603 | if (O_OPOST(tty) && |
609 | 604 | !(test_bit(TTY_HW_COOK_OUT, &tty->flags))) { | |
610 | retval = do_output_char(c, tty, space); | 605 | int retval = do_output_char(c, tty, space); |
611 | if (retval < 0) | 606 | if (retval < 0) |
612 | break; | 607 | break; |
613 | space -= retval; | 608 | space -= retval; |
609 | } else { | ||
610 | if (!space) | ||
611 | break; | ||
612 | tty_put_char(tty, c); | ||
613 | space -= 1; | ||
614 | } | ||
614 | cp += 1; | 615 | cp += 1; |
615 | nr -= 1; | 616 | nr -= 1; |
616 | } | 617 | } |
@@ -798,8 +799,8 @@ static void echo_char_raw(unsigned char c, struct tty_struct *tty) | |||
798 | * Echo user input back onto the screen. This must be called only when | 799 | * Echo user input back onto the screen. This must be called only when |
799 | * L_ECHO(tty) is true. Called from the driver receive_buf path. | 800 | * L_ECHO(tty) is true. Called from the driver receive_buf path. |
800 | * | 801 | * |
801 | * This variant tags control characters to be possibly echoed as | 802 | * This variant tags control characters to be echoed as "^X" |
802 | * as "^X" (where X is the letter representing the control char). | 803 | * (where X is the letter representing the control char). |
803 | * | 804 | * |
804 | * Locking: echo_lock to protect the echo buffer | 805 | * Locking: echo_lock to protect the echo buffer |
805 | */ | 806 | */ |
@@ -812,7 +813,7 @@ static void echo_char(unsigned char c, struct tty_struct *tty) | |||
812 | add_echo_byte(ECHO_OP_START, tty); | 813 | add_echo_byte(ECHO_OP_START, tty); |
813 | add_echo_byte(ECHO_OP_START, tty); | 814 | add_echo_byte(ECHO_OP_START, tty); |
814 | } else { | 815 | } else { |
815 | if (iscntrl(c) && c != '\t') | 816 | if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t') |
816 | add_echo_byte(ECHO_OP_START, tty); | 817 | add_echo_byte(ECHO_OP_START, tty); |
817 | add_echo_byte(c, tty); | 818 | add_echo_byte(c, tty); |
818 | } | 819 | } |
diff --git a/drivers/char/raw.c b/drivers/char/raw.c index 40268db02e22..64acd05f71c8 100644 --- a/drivers/char/raw.c +++ b/drivers/char/raw.c | |||
@@ -261,7 +261,7 @@ static const struct file_operations raw_ctl_fops = { | |||
261 | 261 | ||
262 | static struct cdev raw_cdev; | 262 | static struct cdev raw_cdev; |
263 | 263 | ||
264 | static char *raw_nodename(struct device *dev) | 264 | static char *raw_devnode(struct device *dev, mode_t *mode) |
265 | { | 265 | { |
266 | return kasprintf(GFP_KERNEL, "raw/%s", dev_name(dev)); | 266 | return kasprintf(GFP_KERNEL, "raw/%s", dev_name(dev)); |
267 | } | 267 | } |
@@ -289,7 +289,7 @@ static int __init raw_init(void) | |||
289 | ret = PTR_ERR(raw_class); | 289 | ret = PTR_ERR(raw_class); |
290 | goto error_region; | 290 | goto error_region; |
291 | } | 291 | } |
292 | raw_class->nodename = raw_nodename; | 292 | raw_class->devnode = raw_devnode; |
293 | device_create(raw_class, NULL, MKDEV(RAW_MAJOR, 0), NULL, "rawctl"); | 293 | device_create(raw_class, NULL, MKDEV(RAW_MAJOR, 0), NULL, "rawctl"); |
294 | 294 | ||
295 | return 0; | 295 | return 0; |
diff --git a/drivers/char/riscom8.c b/drivers/char/riscom8.c index 171711acf5cd..3cfa22d469e0 100644 --- a/drivers/char/riscom8.c +++ b/drivers/char/riscom8.c | |||
@@ -343,7 +343,7 @@ static void rc_receive_exc(struct riscom_board const *bp) | |||
343 | if (port == NULL) | 343 | if (port == NULL) |
344 | return; | 344 | return; |
345 | 345 | ||
346 | tty = port->port.tty; | 346 | tty = tty_port_tty_get(&port->port); |
347 | 347 | ||
348 | #ifdef RC_REPORT_OVERRUN | 348 | #ifdef RC_REPORT_OVERRUN |
349 | status = rc_in(bp, CD180_RCSR); | 349 | status = rc_in(bp, CD180_RCSR); |
@@ -355,18 +355,18 @@ static void rc_receive_exc(struct riscom_board const *bp) | |||
355 | #endif | 355 | #endif |
356 | ch = rc_in(bp, CD180_RDR); | 356 | ch = rc_in(bp, CD180_RDR); |
357 | if (!status) | 357 | if (!status) |
358 | return; | 358 | goto out; |
359 | if (status & RCSR_TOUT) { | 359 | if (status & RCSR_TOUT) { |
360 | printk(KERN_WARNING "rc%d: port %d: Receiver timeout. " | 360 | printk(KERN_WARNING "rc%d: port %d: Receiver timeout. " |
361 | "Hardware problems ?\n", | 361 | "Hardware problems ?\n", |
362 | board_No(bp), port_No(port)); | 362 | board_No(bp), port_No(port)); |
363 | return; | 363 | goto out; |
364 | 364 | ||
365 | } else if (status & RCSR_BREAK) { | 365 | } else if (status & RCSR_BREAK) { |
366 | printk(KERN_INFO "rc%d: port %d: Handling break...\n", | 366 | printk(KERN_INFO "rc%d: port %d: Handling break...\n", |
367 | board_No(bp), port_No(port)); | 367 | board_No(bp), port_No(port)); |
368 | flag = TTY_BREAK; | 368 | flag = TTY_BREAK; |
369 | if (port->port.flags & ASYNC_SAK) | 369 | if (tty && (port->port.flags & ASYNC_SAK)) |
370 | do_SAK(tty); | 370 | do_SAK(tty); |
371 | 371 | ||
372 | } else if (status & RCSR_PE) | 372 | } else if (status & RCSR_PE) |
@@ -380,8 +380,12 @@ static void rc_receive_exc(struct riscom_board const *bp) | |||
380 | else | 380 | else |
381 | flag = TTY_NORMAL; | 381 | flag = TTY_NORMAL; |
382 | 382 | ||
383 | tty_insert_flip_char(tty, ch, flag); | 383 | if (tty) { |
384 | tty_flip_buffer_push(tty); | 384 | tty_insert_flip_char(tty, ch, flag); |
385 | tty_flip_buffer_push(tty); | ||
386 | } | ||
387 | out: | ||
388 | tty_kref_put(tty); | ||
385 | } | 389 | } |
386 | 390 | ||
387 | static void rc_receive(struct riscom_board const *bp) | 391 | static void rc_receive(struct riscom_board const *bp) |
@@ -394,7 +398,7 @@ static void rc_receive(struct riscom_board const *bp) | |||
394 | if (port == NULL) | 398 | if (port == NULL) |
395 | return; | 399 | return; |
396 | 400 | ||
397 | tty = port->port.tty; | 401 | tty = tty_port_tty_get(&port->port); |
398 | 402 | ||
399 | count = rc_in(bp, CD180_RDCR); | 403 | count = rc_in(bp, CD180_RDCR); |
400 | 404 | ||
@@ -403,15 +407,14 @@ static void rc_receive(struct riscom_board const *bp) | |||
403 | #endif | 407 | #endif |
404 | 408 | ||
405 | while (count--) { | 409 | while (count--) { |
406 | if (tty_buffer_request_room(tty, 1) == 0) { | 410 | u8 ch = rc_in(bp, CD180_RDR); |
407 | printk(KERN_WARNING "rc%d: port %d: Working around " | 411 | if (tty) |
408 | "flip buffer overflow.\n", | 412 | tty_insert_flip_char(tty, ch, TTY_NORMAL); |
409 | board_No(bp), port_No(port)); | 413 | } |
410 | break; | 414 | if (tty) { |
411 | } | 415 | tty_flip_buffer_push(tty); |
412 | tty_insert_flip_char(tty, rc_in(bp, CD180_RDR), TTY_NORMAL); | 416 | tty_kref_put(tty); |
413 | } | 417 | } |
414 | tty_flip_buffer_push(tty); | ||
415 | } | 418 | } |
416 | 419 | ||
417 | static void rc_transmit(struct riscom_board const *bp) | 420 | static void rc_transmit(struct riscom_board const *bp) |
@@ -424,22 +427,22 @@ static void rc_transmit(struct riscom_board const *bp) | |||
424 | if (port == NULL) | 427 | if (port == NULL) |
425 | return; | 428 | return; |
426 | 429 | ||
427 | tty = port->port.tty; | 430 | tty = tty_port_tty_get(&port->port); |
428 | 431 | ||
429 | if (port->IER & IER_TXEMPTY) { | 432 | if (port->IER & IER_TXEMPTY) { |
430 | /* FIFO drained */ | 433 | /* FIFO drained */ |
431 | rc_out(bp, CD180_CAR, port_No(port)); | 434 | rc_out(bp, CD180_CAR, port_No(port)); |
432 | port->IER &= ~IER_TXEMPTY; | 435 | port->IER &= ~IER_TXEMPTY; |
433 | rc_out(bp, CD180_IER, port->IER); | 436 | rc_out(bp, CD180_IER, port->IER); |
434 | return; | 437 | goto out; |
435 | } | 438 | } |
436 | 439 | ||
437 | if ((port->xmit_cnt <= 0 && !port->break_length) | 440 | if ((port->xmit_cnt <= 0 && !port->break_length) |
438 | || tty->stopped || tty->hw_stopped) { | 441 | || (tty && (tty->stopped || tty->hw_stopped))) { |
439 | rc_out(bp, CD180_CAR, port_No(port)); | 442 | rc_out(bp, CD180_CAR, port_No(port)); |
440 | port->IER &= ~IER_TXRDY; | 443 | port->IER &= ~IER_TXRDY; |
441 | rc_out(bp, CD180_IER, port->IER); | 444 | rc_out(bp, CD180_IER, port->IER); |
442 | return; | 445 | goto out; |
443 | } | 446 | } |
444 | 447 | ||
445 | if (port->break_length) { | 448 | if (port->break_length) { |
@@ -464,7 +467,7 @@ static void rc_transmit(struct riscom_board const *bp) | |||
464 | rc_out(bp, CD180_CCR, CCR_CORCHG2); | 467 | rc_out(bp, CD180_CCR, CCR_CORCHG2); |
465 | port->break_length = 0; | 468 | port->break_length = 0; |
466 | } | 469 | } |
467 | return; | 470 | goto out; |
468 | } | 471 | } |
469 | 472 | ||
470 | count = CD180_NFIFO; | 473 | count = CD180_NFIFO; |
@@ -480,8 +483,10 @@ static void rc_transmit(struct riscom_board const *bp) | |||
480 | port->IER &= ~IER_TXRDY; | 483 | port->IER &= ~IER_TXRDY; |
481 | rc_out(bp, CD180_IER, port->IER); | 484 | rc_out(bp, CD180_IER, port->IER); |
482 | } | 485 | } |
483 | if (port->xmit_cnt <= port->wakeup_chars) | 486 | if (tty && port->xmit_cnt <= port->wakeup_chars) |
484 | tty_wakeup(tty); | 487 | tty_wakeup(tty); |
488 | out: | ||
489 | tty_kref_put(tty); | ||
485 | } | 490 | } |
486 | 491 | ||
487 | static void rc_check_modem(struct riscom_board const *bp) | 492 | static void rc_check_modem(struct riscom_board const *bp) |
@@ -494,37 +499,43 @@ static void rc_check_modem(struct riscom_board const *bp) | |||
494 | if (port == NULL) | 499 | if (port == NULL) |
495 | return; | 500 | return; |
496 | 501 | ||
497 | tty = port->port.tty; | 502 | tty = tty_port_tty_get(&port->port); |
498 | 503 | ||
499 | mcr = rc_in(bp, CD180_MCR); | 504 | mcr = rc_in(bp, CD180_MCR); |
500 | if (mcr & MCR_CDCHG) { | 505 | if (mcr & MCR_CDCHG) { |
501 | if (rc_in(bp, CD180_MSVR) & MSVR_CD) | 506 | if (rc_in(bp, CD180_MSVR) & MSVR_CD) |
502 | wake_up_interruptible(&port->port.open_wait); | 507 | wake_up_interruptible(&port->port.open_wait); |
503 | else | 508 | else if (tty) |
504 | tty_hangup(tty); | 509 | tty_hangup(tty); |
505 | } | 510 | } |
506 | 511 | ||
507 | #ifdef RISCOM_BRAIN_DAMAGED_CTS | 512 | #ifdef RISCOM_BRAIN_DAMAGED_CTS |
508 | if (mcr & MCR_CTSCHG) { | 513 | if (mcr & MCR_CTSCHG) { |
509 | if (rc_in(bp, CD180_MSVR) & MSVR_CTS) { | 514 | if (rc_in(bp, CD180_MSVR) & MSVR_CTS) { |
510 | tty->hw_stopped = 0; | ||
511 | port->IER |= IER_TXRDY; | 515 | port->IER |= IER_TXRDY; |
512 | if (port->xmit_cnt <= port->wakeup_chars) | 516 | if (tty) { |
513 | tty_wakeup(tty); | 517 | tty->hw_stopped = 0; |
518 | if (port->xmit_cnt <= port->wakeup_chars) | ||
519 | tty_wakeup(tty); | ||
520 | } | ||
514 | } else { | 521 | } else { |
515 | tty->hw_stopped = 1; | 522 | if (tty) |
523 | tty->hw_stopped = 1; | ||
516 | port->IER &= ~IER_TXRDY; | 524 | port->IER &= ~IER_TXRDY; |
517 | } | 525 | } |
518 | rc_out(bp, CD180_IER, port->IER); | 526 | rc_out(bp, CD180_IER, port->IER); |
519 | } | 527 | } |
520 | if (mcr & MCR_DSRCHG) { | 528 | if (mcr & MCR_DSRCHG) { |
521 | if (rc_in(bp, CD180_MSVR) & MSVR_DSR) { | 529 | if (rc_in(bp, CD180_MSVR) & MSVR_DSR) { |
522 | tty->hw_stopped = 0; | ||
523 | port->IER |= IER_TXRDY; | 530 | port->IER |= IER_TXRDY; |
524 | if (port->xmit_cnt <= port->wakeup_chars) | 531 | if (tty) { |
525 | tty_wakeup(tty); | 532 | tty->hw_stopped = 0; |
533 | if (port->xmit_cnt <= port->wakeup_chars) | ||
534 | tty_wakeup(tty); | ||
535 | } | ||
526 | } else { | 536 | } else { |
527 | tty->hw_stopped = 1; | 537 | if (tty) |
538 | tty->hw_stopped = 1; | ||
528 | port->IER &= ~IER_TXRDY; | 539 | port->IER &= ~IER_TXRDY; |
529 | } | 540 | } |
530 | rc_out(bp, CD180_IER, port->IER); | 541 | rc_out(bp, CD180_IER, port->IER); |
@@ -533,6 +544,7 @@ static void rc_check_modem(struct riscom_board const *bp) | |||
533 | 544 | ||
534 | /* Clear change bits */ | 545 | /* Clear change bits */ |
535 | rc_out(bp, CD180_MCR, 0); | 546 | rc_out(bp, CD180_MCR, 0); |
547 | tty_kref_put(tty); | ||
536 | } | 548 | } |
537 | 549 | ||
538 | /* The main interrupt processing routine */ | 550 | /* The main interrupt processing routine */ |
@@ -632,9 +644,9 @@ static void rc_shutdown_board(struct riscom_board *bp) | |||
632 | * Setting up port characteristics. | 644 | * Setting up port characteristics. |
633 | * Must be called with disabled interrupts | 645 | * Must be called with disabled interrupts |
634 | */ | 646 | */ |
635 | static void rc_change_speed(struct riscom_board *bp, struct riscom_port *port) | 647 | static void rc_change_speed(struct tty_struct *tty, struct riscom_board *bp, |
648 | struct riscom_port *port) | ||
636 | { | 649 | { |
637 | struct tty_struct *tty = port->port.tty; | ||
638 | unsigned long baud; | 650 | unsigned long baud; |
639 | long tmp; | 651 | long tmp; |
640 | unsigned char cor1 = 0, cor3 = 0; | 652 | unsigned char cor1 = 0, cor3 = 0; |
@@ -781,7 +793,8 @@ static void rc_change_speed(struct riscom_board *bp, struct riscom_port *port) | |||
781 | } | 793 | } |
782 | 794 | ||
783 | /* Must be called with interrupts enabled */ | 795 | /* Must be called with interrupts enabled */ |
784 | static int rc_setup_port(struct riscom_board *bp, struct riscom_port *port) | 796 | static int rc_setup_port(struct tty_struct *tty, struct riscom_board *bp, |
797 | struct riscom_port *port) | ||
785 | { | 798 | { |
786 | unsigned long flags; | 799 | unsigned long flags; |
787 | 800 | ||
@@ -793,11 +806,11 @@ static int rc_setup_port(struct riscom_board *bp, struct riscom_port *port) | |||
793 | 806 | ||
794 | spin_lock_irqsave(&riscom_lock, flags); | 807 | spin_lock_irqsave(&riscom_lock, flags); |
795 | 808 | ||
796 | clear_bit(TTY_IO_ERROR, &port->port.tty->flags); | 809 | clear_bit(TTY_IO_ERROR, &tty->flags); |
797 | if (port->port.count == 1) | 810 | if (port->port.count == 1) |
798 | bp->count++; | 811 | bp->count++; |
799 | port->xmit_cnt = port->xmit_head = port->xmit_tail = 0; | 812 | port->xmit_cnt = port->xmit_head = port->xmit_tail = 0; |
800 | rc_change_speed(bp, port); | 813 | rc_change_speed(tty, bp, port); |
801 | port->port.flags |= ASYNC_INITIALIZED; | 814 | port->port.flags |= ASYNC_INITIALIZED; |
802 | 815 | ||
803 | spin_unlock_irqrestore(&riscom_lock, flags); | 816 | spin_unlock_irqrestore(&riscom_lock, flags); |
@@ -898,9 +911,9 @@ static int rc_open(struct tty_struct *tty, struct file *filp) | |||
898 | 911 | ||
899 | port->port.count++; | 912 | port->port.count++; |
900 | tty->driver_data = port; | 913 | tty->driver_data = port; |
901 | port->port.tty = tty; | 914 | tty_port_tty_set(&port->port, tty); |
902 | 915 | ||
903 | error = rc_setup_port(bp, port); | 916 | error = rc_setup_port(tty, bp, port); |
904 | if (error == 0) | 917 | if (error == 0) |
905 | error = tty_port_block_til_ready(&port->port, tty, filp); | 918 | error = tty_port_block_til_ready(&port->port, tty, filp); |
906 | return error; | 919 | return error; |
@@ -921,20 +934,12 @@ static void rc_flush_buffer(struct tty_struct *tty) | |||
921 | tty_wakeup(tty); | 934 | tty_wakeup(tty); |
922 | } | 935 | } |
923 | 936 | ||
924 | static void rc_close(struct tty_struct *tty, struct file *filp) | 937 | static void rc_close_port(struct tty_port *port) |
925 | { | 938 | { |
926 | struct riscom_port *port = tty->driver_data; | ||
927 | struct riscom_board *bp; | ||
928 | unsigned long flags; | 939 | unsigned long flags; |
940 | struct riscom_port *rp = container_of(port, struct riscom_port, port); | ||
941 | struct riscom_board *bp = port_Board(rp); | ||
929 | unsigned long timeout; | 942 | unsigned long timeout; |
930 | |||
931 | if (!port || rc_paranoia_check(port, tty->name, "close")) | ||
932 | return; | ||
933 | |||
934 | bp = port_Board(port); | ||
935 | |||
936 | if (tty_port_close_start(&port->port, tty, filp) == 0) | ||
937 | return; | ||
938 | 943 | ||
939 | /* | 944 | /* |
940 | * At this point we stop accepting input. To do this, we | 945 | * At this point we stop accepting input. To do this, we |
@@ -944,31 +949,37 @@ static void rc_close(struct tty_struct *tty, struct file *filp) | |||
944 | */ | 949 | */ |
945 | 950 | ||
946 | spin_lock_irqsave(&riscom_lock, flags); | 951 | spin_lock_irqsave(&riscom_lock, flags); |
947 | port->IER &= ~IER_RXD; | 952 | rp->IER &= ~IER_RXD; |
948 | if (port->port.flags & ASYNC_INITIALIZED) { | 953 | if (port->flags & ASYNC_INITIALIZED) { |
949 | port->IER &= ~IER_TXRDY; | 954 | rp->IER &= ~IER_TXRDY; |
950 | port->IER |= IER_TXEMPTY; | 955 | rp->IER |= IER_TXEMPTY; |
951 | rc_out(bp, CD180_CAR, port_No(port)); | 956 | rc_out(bp, CD180_CAR, port_No(rp)); |
952 | rc_out(bp, CD180_IER, port->IER); | 957 | rc_out(bp, CD180_IER, rp->IER); |
953 | /* | 958 | /* |
954 | * Before we drop DTR, make sure the UART transmitter | 959 | * Before we drop DTR, make sure the UART transmitter |
955 | * has completely drained; this is especially | 960 | * has completely drained; this is especially |
956 | * important if there is a transmit FIFO! | 961 | * important if there is a transmit FIFO! |
957 | */ | 962 | */ |
958 | timeout = jiffies + HZ; | 963 | timeout = jiffies + HZ; |
959 | while (port->IER & IER_TXEMPTY) { | 964 | while (rp->IER & IER_TXEMPTY) { |
960 | spin_unlock_irqrestore(&riscom_lock, flags); | 965 | spin_unlock_irqrestore(&riscom_lock, flags); |
961 | msleep_interruptible(jiffies_to_msecs(port->timeout)); | 966 | msleep_interruptible(jiffies_to_msecs(rp->timeout)); |
962 | spin_lock_irqsave(&riscom_lock, flags); | 967 | spin_lock_irqsave(&riscom_lock, flags); |
963 | if (time_after(jiffies, timeout)) | 968 | if (time_after(jiffies, timeout)) |
964 | break; | 969 | break; |
965 | } | 970 | } |
966 | } | 971 | } |
967 | rc_shutdown_port(tty, bp, port); | 972 | rc_shutdown_port(port->tty, bp, rp); |
968 | rc_flush_buffer(tty); | ||
969 | spin_unlock_irqrestore(&riscom_lock, flags); | 973 | spin_unlock_irqrestore(&riscom_lock, flags); |
974 | } | ||
975 | |||
976 | static void rc_close(struct tty_struct *tty, struct file *filp) | ||
977 | { | ||
978 | struct riscom_port *port = tty->driver_data; | ||
970 | 979 | ||
971 | tty_port_close_end(&port->port, tty); | 980 | if (!port || rc_paranoia_check(port, tty->name, "close")) |
981 | return; | ||
982 | tty_port_close(&port->port, tty, filp); | ||
972 | } | 983 | } |
973 | 984 | ||
974 | static int rc_write(struct tty_struct *tty, | 985 | static int rc_write(struct tty_struct *tty, |
@@ -1170,7 +1181,7 @@ static int rc_send_break(struct tty_struct *tty, int length) | |||
1170 | return 0; | 1181 | return 0; |
1171 | } | 1182 | } |
1172 | 1183 | ||
1173 | static int rc_set_serial_info(struct riscom_port *port, | 1184 | static int rc_set_serial_info(struct tty_struct *tty, struct riscom_port *port, |
1174 | struct serial_struct __user *newinfo) | 1185 | struct serial_struct __user *newinfo) |
1175 | { | 1186 | { |
1176 | struct serial_struct tmp; | 1187 | struct serial_struct tmp; |
@@ -1180,17 +1191,6 @@ static int rc_set_serial_info(struct riscom_port *port, | |||
1180 | if (copy_from_user(&tmp, newinfo, sizeof(tmp))) | 1191 | if (copy_from_user(&tmp, newinfo, sizeof(tmp))) |
1181 | return -EFAULT; | 1192 | return -EFAULT; |
1182 | 1193 | ||
1183 | #if 0 | ||
1184 | if ((tmp.irq != bp->irq) || | ||
1185 | (tmp.port != bp->base) || | ||
1186 | (tmp.type != PORT_CIRRUS) || | ||
1187 | (tmp.baud_base != (RC_OSCFREQ + CD180_TPC/2) / CD180_TPC) || | ||
1188 | (tmp.custom_divisor != 0) || | ||
1189 | (tmp.xmit_fifo_size != CD180_NFIFO) || | ||
1190 | (tmp.flags & ~RISCOM_LEGAL_FLAGS)) | ||
1191 | return -EINVAL; | ||
1192 | #endif | ||
1193 | |||
1194 | change_speed = ((port->port.flags & ASYNC_SPD_MASK) != | 1194 | change_speed = ((port->port.flags & ASYNC_SPD_MASK) != |
1195 | (tmp.flags & ASYNC_SPD_MASK)); | 1195 | (tmp.flags & ASYNC_SPD_MASK)); |
1196 | 1196 | ||
@@ -1212,7 +1212,7 @@ static int rc_set_serial_info(struct riscom_port *port, | |||
1212 | unsigned long flags; | 1212 | unsigned long flags; |
1213 | 1213 | ||
1214 | spin_lock_irqsave(&riscom_lock, flags); | 1214 | spin_lock_irqsave(&riscom_lock, flags); |
1215 | rc_change_speed(bp, port); | 1215 | rc_change_speed(tty, bp, port); |
1216 | spin_unlock_irqrestore(&riscom_lock, flags); | 1216 | spin_unlock_irqrestore(&riscom_lock, flags); |
1217 | } | 1217 | } |
1218 | return 0; | 1218 | return 0; |
@@ -1255,7 +1255,7 @@ static int rc_ioctl(struct tty_struct *tty, struct file *filp, | |||
1255 | break; | 1255 | break; |
1256 | case TIOCSSERIAL: | 1256 | case TIOCSSERIAL: |
1257 | lock_kernel(); | 1257 | lock_kernel(); |
1258 | retval = rc_set_serial_info(port, argp); | 1258 | retval = rc_set_serial_info(tty, port, argp); |
1259 | unlock_kernel(); | 1259 | unlock_kernel(); |
1260 | break; | 1260 | break; |
1261 | default: | 1261 | default: |
@@ -1350,21 +1350,12 @@ static void rc_start(struct tty_struct *tty) | |||
1350 | static void rc_hangup(struct tty_struct *tty) | 1350 | static void rc_hangup(struct tty_struct *tty) |
1351 | { | 1351 | { |
1352 | struct riscom_port *port = tty->driver_data; | 1352 | struct riscom_port *port = tty->driver_data; |
1353 | struct riscom_board *bp; | ||
1354 | unsigned long flags; | ||
1355 | 1353 | ||
1356 | if (rc_paranoia_check(port, tty->name, "rc_hangup")) | 1354 | if (rc_paranoia_check(port, tty->name, "rc_hangup")) |
1357 | return; | 1355 | return; |
1358 | 1356 | ||
1359 | bp = port_Board(port); | 1357 | rc_shutdown_port(tty, port_Board(port), port); |
1360 | 1358 | tty_port_hangup(&port->port); | |
1361 | rc_shutdown_port(tty, bp, port); | ||
1362 | spin_lock_irqsave(&port->port.lock, flags); | ||
1363 | port->port.count = 0; | ||
1364 | port->port.flags &= ~ASYNC_NORMAL_ACTIVE; | ||
1365 | port->port.tty = NULL; | ||
1366 | wake_up_interruptible(&port->port.open_wait); | ||
1367 | spin_unlock_irqrestore(&port->port.lock, flags); | ||
1368 | } | 1359 | } |
1369 | 1360 | ||
1370 | static void rc_set_termios(struct tty_struct *tty, | 1361 | static void rc_set_termios(struct tty_struct *tty, |
@@ -1377,7 +1368,7 @@ static void rc_set_termios(struct tty_struct *tty, | |||
1377 | return; | 1368 | return; |
1378 | 1369 | ||
1379 | spin_lock_irqsave(&riscom_lock, flags); | 1370 | spin_lock_irqsave(&riscom_lock, flags); |
1380 | rc_change_speed(port_Board(port), port); | 1371 | rc_change_speed(tty, port_Board(port), port); |
1381 | spin_unlock_irqrestore(&riscom_lock, flags); | 1372 | spin_unlock_irqrestore(&riscom_lock, flags); |
1382 | 1373 | ||
1383 | if ((old_termios->c_cflag & CRTSCTS) && | 1374 | if ((old_termios->c_cflag & CRTSCTS) && |
@@ -1410,6 +1401,7 @@ static const struct tty_operations riscom_ops = { | |||
1410 | 1401 | ||
1411 | static const struct tty_port_operations riscom_port_ops = { | 1402 | static const struct tty_port_operations riscom_port_ops = { |
1412 | .carrier_raised = carrier_raised, | 1403 | .carrier_raised = carrier_raised, |
1404 | .shutdown = rc_close_port, | ||
1413 | }; | 1405 | }; |
1414 | 1406 | ||
1415 | 1407 | ||
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index a3afa0c387cd..ea18a129b0b5 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
@@ -1184,6 +1184,7 @@ int tty_init_termios(struct tty_struct *tty) | |||
1184 | tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios); | 1184 | tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios); |
1185 | return 0; | 1185 | return 0; |
1186 | } | 1186 | } |
1187 | EXPORT_SYMBOL_GPL(tty_init_termios); | ||
1187 | 1188 | ||
1188 | /** | 1189 | /** |
1189 | * tty_driver_install_tty() - install a tty entry in the driver | 1190 | * tty_driver_install_tty() - install a tty entry in the driver |
@@ -1386,10 +1387,14 @@ EXPORT_SYMBOL(tty_shutdown); | |||
1386 | * tty_mutex - sometimes only | 1387 | * tty_mutex - sometimes only |
1387 | * takes the file list lock internally when working on the list | 1388 | * takes the file list lock internally when working on the list |
1388 | * of ttys that the driver keeps. | 1389 | * of ttys that the driver keeps. |
1390 | * | ||
1391 | * This method gets called from a work queue so that the driver private | ||
1392 | * shutdown ops can sleep (needed for USB at least) | ||
1389 | */ | 1393 | */ |
1390 | static void release_one_tty(struct kref *kref) | 1394 | static void release_one_tty(struct work_struct *work) |
1391 | { | 1395 | { |
1392 | struct tty_struct *tty = container_of(kref, struct tty_struct, kref); | 1396 | struct tty_struct *tty = |
1397 | container_of(work, struct tty_struct, hangup_work); | ||
1393 | struct tty_driver *driver = tty->driver; | 1398 | struct tty_driver *driver = tty->driver; |
1394 | 1399 | ||
1395 | if (tty->ops->shutdown) | 1400 | if (tty->ops->shutdown) |
@@ -1407,6 +1412,15 @@ static void release_one_tty(struct kref *kref) | |||
1407 | free_tty_struct(tty); | 1412 | free_tty_struct(tty); |
1408 | } | 1413 | } |
1409 | 1414 | ||
1415 | static void queue_release_one_tty(struct kref *kref) | ||
1416 | { | ||
1417 | struct tty_struct *tty = container_of(kref, struct tty_struct, kref); | ||
1418 | /* The hangup queue is now free so we can reuse it rather than | ||
1419 | waste a chunk of memory for each port */ | ||
1420 | INIT_WORK(&tty->hangup_work, release_one_tty); | ||
1421 | schedule_work(&tty->hangup_work); | ||
1422 | } | ||
1423 | |||
1410 | /** | 1424 | /** |
1411 | * tty_kref_put - release a tty kref | 1425 | * tty_kref_put - release a tty kref |
1412 | * @tty: tty device | 1426 | * @tty: tty device |
@@ -1418,7 +1432,7 @@ static void release_one_tty(struct kref *kref) | |||
1418 | void tty_kref_put(struct tty_struct *tty) | 1432 | void tty_kref_put(struct tty_struct *tty) |
1419 | { | 1433 | { |
1420 | if (tty) | 1434 | if (tty) |
1421 | kref_put(&tty->kref, release_one_tty); | 1435 | kref_put(&tty->kref, queue_release_one_tty); |
1422 | } | 1436 | } |
1423 | EXPORT_SYMBOL(tty_kref_put); | 1437 | EXPORT_SYMBOL(tty_kref_put); |
1424 | 1438 | ||
@@ -2085,7 +2099,7 @@ static int tioccons(struct file *file) | |||
2085 | * the generic functionality existed. This piece of history is preserved | 2099 | * the generic functionality existed. This piece of history is preserved |
2086 | * in the expected tty API of posix OS's. | 2100 | * in the expected tty API of posix OS's. |
2087 | * | 2101 | * |
2088 | * Locking: none, the open fle handle ensures it won't go away. | 2102 | * Locking: none, the open file handle ensures it won't go away. |
2089 | */ | 2103 | */ |
2090 | 2104 | ||
2091 | static int fionbio(struct file *file, int __user *p) | 2105 | static int fionbio(struct file *file, int __user *p) |
@@ -3056,11 +3070,22 @@ void __init console_init(void) | |||
3056 | } | 3070 | } |
3057 | } | 3071 | } |
3058 | 3072 | ||
3073 | static char *tty_devnode(struct device *dev, mode_t *mode) | ||
3074 | { | ||
3075 | if (!mode) | ||
3076 | return NULL; | ||
3077 | if (dev->devt == MKDEV(TTYAUX_MAJOR, 0) || | ||
3078 | dev->devt == MKDEV(TTYAUX_MAJOR, 2)) | ||
3079 | *mode = 0666; | ||
3080 | return NULL; | ||
3081 | } | ||
3082 | |||
3059 | static int __init tty_class_init(void) | 3083 | static int __init tty_class_init(void) |
3060 | { | 3084 | { |
3061 | tty_class = class_create(THIS_MODULE, "tty"); | 3085 | tty_class = class_create(THIS_MODULE, "tty"); |
3062 | if (IS_ERR(tty_class)) | 3086 | if (IS_ERR(tty_class)) |
3063 | return PTR_ERR(tty_class); | 3087 | return PTR_ERR(tty_class); |
3088 | tty_class->devnode = tty_devnode; | ||
3064 | return 0; | 3089 | return 0; |
3065 | } | 3090 | } |
3066 | 3091 | ||
diff --git a/drivers/char/tty_ioctl.c b/drivers/char/tty_ioctl.c index ad6ba4ed2808..8e67d5c642a4 100644 --- a/drivers/char/tty_ioctl.c +++ b/drivers/char/tty_ioctl.c | |||
@@ -393,9 +393,7 @@ void tty_termios_encode_baud_rate(struct ktermios *termios, | |||
393 | termios->c_cflag |= (BOTHER << IBSHIFT); | 393 | termios->c_cflag |= (BOTHER << IBSHIFT); |
394 | #else | 394 | #else |
395 | if (ifound == -1 || ofound == -1) { | 395 | if (ifound == -1 || ofound == -1) { |
396 | static int warned; | 396 | printk_once(KERN_WARNING "tty: Unable to return correct " |
397 | if (!warned++) | ||
398 | printk(KERN_WARNING "tty: Unable to return correct " | ||
399 | "speed data as your architecture needs updating.\n"); | 397 | "speed data as your architecture needs updating.\n"); |
400 | } | 398 | } |
401 | #endif | 399 | #endif |
diff --git a/drivers/char/tty_ldisc.c b/drivers/char/tty_ldisc.c index e48af9f79219..aafdbaebc16a 100644 --- a/drivers/char/tty_ldisc.c +++ b/drivers/char/tty_ldisc.c | |||
@@ -145,48 +145,33 @@ int tty_unregister_ldisc(int disc) | |||
145 | } | 145 | } |
146 | EXPORT_SYMBOL(tty_unregister_ldisc); | 146 | EXPORT_SYMBOL(tty_unregister_ldisc); |
147 | 147 | ||
148 | 148 | static struct tty_ldisc_ops *get_ldops(int disc) | |
149 | /** | ||
150 | * tty_ldisc_try_get - try and reference an ldisc | ||
151 | * @disc: ldisc number | ||
152 | * | ||
153 | * Attempt to open and lock a line discipline into place. Return | ||
154 | * the line discipline refcounted or an error. | ||
155 | */ | ||
156 | |||
157 | static struct tty_ldisc *tty_ldisc_try_get(int disc) | ||
158 | { | 149 | { |
159 | unsigned long flags; | 150 | unsigned long flags; |
160 | struct tty_ldisc *ld; | 151 | struct tty_ldisc_ops *ldops, *ret; |
161 | struct tty_ldisc_ops *ldops; | ||
162 | int err = -EINVAL; | ||
163 | |||
164 | ld = kmalloc(sizeof(struct tty_ldisc), GFP_KERNEL); | ||
165 | if (ld == NULL) | ||
166 | return ERR_PTR(-ENOMEM); | ||
167 | 152 | ||
168 | spin_lock_irqsave(&tty_ldisc_lock, flags); | 153 | spin_lock_irqsave(&tty_ldisc_lock, flags); |
169 | ld->ops = NULL; | 154 | ret = ERR_PTR(-EINVAL); |
170 | ldops = tty_ldiscs[disc]; | 155 | ldops = tty_ldiscs[disc]; |
171 | /* Check the entry is defined */ | ||
172 | if (ldops) { | 156 | if (ldops) { |
173 | /* If the module is being unloaded we can't use it */ | 157 | ret = ERR_PTR(-EAGAIN); |
174 | if (!try_module_get(ldops->owner)) | 158 | if (try_module_get(ldops->owner)) { |
175 | err = -EAGAIN; | ||
176 | else { | ||
177 | /* lock it */ | ||
178 | ldops->refcount++; | 159 | ldops->refcount++; |
179 | ld->ops = ldops; | 160 | ret = ldops; |
180 | atomic_set(&ld->users, 1); | ||
181 | err = 0; | ||
182 | } | 161 | } |
183 | } | 162 | } |
184 | spin_unlock_irqrestore(&tty_ldisc_lock, flags); | 163 | spin_unlock_irqrestore(&tty_ldisc_lock, flags); |
185 | if (err) { | 164 | return ret; |
186 | kfree(ld); | 165 | } |
187 | return ERR_PTR(err); | 166 | |
188 | } | 167 | static void put_ldops(struct tty_ldisc_ops *ldops) |
189 | return ld; | 168 | { |
169 | unsigned long flags; | ||
170 | |||
171 | spin_lock_irqsave(&tty_ldisc_lock, flags); | ||
172 | ldops->refcount--; | ||
173 | module_put(ldops->owner); | ||
174 | spin_unlock_irqrestore(&tty_ldisc_lock, flags); | ||
190 | } | 175 | } |
191 | 176 | ||
192 | /** | 177 | /** |
@@ -205,14 +190,31 @@ static struct tty_ldisc *tty_ldisc_try_get(int disc) | |||
205 | static struct tty_ldisc *tty_ldisc_get(int disc) | 190 | static struct tty_ldisc *tty_ldisc_get(int disc) |
206 | { | 191 | { |
207 | struct tty_ldisc *ld; | 192 | struct tty_ldisc *ld; |
193 | struct tty_ldisc_ops *ldops; | ||
208 | 194 | ||
209 | if (disc < N_TTY || disc >= NR_LDISCS) | 195 | if (disc < N_TTY || disc >= NR_LDISCS) |
210 | return ERR_PTR(-EINVAL); | 196 | return ERR_PTR(-EINVAL); |
211 | ld = tty_ldisc_try_get(disc); | 197 | |
212 | if (IS_ERR(ld)) { | 198 | /* |
199 | * Get the ldisc ops - we may need to request them to be loaded | ||
200 | * dynamically and try again. | ||
201 | */ | ||
202 | ldops = get_ldops(disc); | ||
203 | if (IS_ERR(ldops)) { | ||
213 | request_module("tty-ldisc-%d", disc); | 204 | request_module("tty-ldisc-%d", disc); |
214 | ld = tty_ldisc_try_get(disc); | 205 | ldops = get_ldops(disc); |
206 | if (IS_ERR(ldops)) | ||
207 | return ERR_CAST(ldops); | ||
215 | } | 208 | } |
209 | |||
210 | ld = kmalloc(sizeof(struct tty_ldisc), GFP_KERNEL); | ||
211 | if (ld == NULL) { | ||
212 | put_ldops(ldops); | ||
213 | return ERR_PTR(-ENOMEM); | ||
214 | } | ||
215 | |||
216 | ld->ops = ldops; | ||
217 | atomic_set(&ld->users, 1); | ||
216 | return ld; | 218 | return ld; |
217 | } | 219 | } |
218 | 220 | ||
@@ -234,13 +236,13 @@ static void tty_ldiscs_seq_stop(struct seq_file *m, void *v) | |||
234 | static int tty_ldiscs_seq_show(struct seq_file *m, void *v) | 236 | static int tty_ldiscs_seq_show(struct seq_file *m, void *v) |
235 | { | 237 | { |
236 | int i = *(loff_t *)v; | 238 | int i = *(loff_t *)v; |
237 | struct tty_ldisc *ld; | 239 | struct tty_ldisc_ops *ldops; |
238 | 240 | ||
239 | ld = tty_ldisc_try_get(i); | 241 | ldops = get_ldops(i); |
240 | if (IS_ERR(ld)) | 242 | if (IS_ERR(ldops)) |
241 | return 0; | 243 | return 0; |
242 | seq_printf(m, "%-10s %2d\n", ld->ops->name ? ld->ops->name : "???", i); | 244 | seq_printf(m, "%-10s %2d\n", ldops->name ? ldops->name : "???", i); |
243 | put_ldisc(ld); | 245 | put_ldops(ldops); |
244 | return 0; | 246 | return 0; |
245 | } | 247 | } |
246 | 248 | ||
diff --git a/drivers/char/tty_port.c b/drivers/char/tty_port.c index 9769b1149f76..a4bbb28f10be 100644 --- a/drivers/char/tty_port.c +++ b/drivers/char/tty_port.c | |||
@@ -23,6 +23,7 @@ void tty_port_init(struct tty_port *port) | |||
23 | memset(port, 0, sizeof(*port)); | 23 | memset(port, 0, sizeof(*port)); |
24 | init_waitqueue_head(&port->open_wait); | 24 | init_waitqueue_head(&port->open_wait); |
25 | init_waitqueue_head(&port->close_wait); | 25 | init_waitqueue_head(&port->close_wait); |
26 | init_waitqueue_head(&port->delta_msr_wait); | ||
26 | mutex_init(&port->mutex); | 27 | mutex_init(&port->mutex); |
27 | spin_lock_init(&port->lock); | 28 | spin_lock_init(&port->lock); |
28 | port->close_delay = (50 * HZ) / 100; | 29 | port->close_delay = (50 * HZ) / 100; |
@@ -96,6 +97,14 @@ void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty) | |||
96 | } | 97 | } |
97 | EXPORT_SYMBOL(tty_port_tty_set); | 98 | EXPORT_SYMBOL(tty_port_tty_set); |
98 | 99 | ||
100 | static void tty_port_shutdown(struct tty_port *port) | ||
101 | { | ||
102 | if (port->ops->shutdown && | ||
103 | test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags)) | ||
104 | port->ops->shutdown(port); | ||
105 | |||
106 | } | ||
107 | |||
99 | /** | 108 | /** |
100 | * tty_port_hangup - hangup helper | 109 | * tty_port_hangup - hangup helper |
101 | * @port: tty port | 110 | * @port: tty port |
@@ -116,6 +125,8 @@ void tty_port_hangup(struct tty_port *port) | |||
116 | port->tty = NULL; | 125 | port->tty = NULL; |
117 | spin_unlock_irqrestore(&port->lock, flags); | 126 | spin_unlock_irqrestore(&port->lock, flags); |
118 | wake_up_interruptible(&port->open_wait); | 127 | wake_up_interruptible(&port->open_wait); |
128 | wake_up_interruptible(&port->delta_msr_wait); | ||
129 | tty_port_shutdown(port); | ||
119 | } | 130 | } |
120 | EXPORT_SYMBOL(tty_port_hangup); | 131 | EXPORT_SYMBOL(tty_port_hangup); |
121 | 132 | ||
@@ -296,15 +307,17 @@ int tty_port_close_start(struct tty_port *port, struct tty_struct *tty, struct f | |||
296 | 307 | ||
297 | if (port->count) { | 308 | if (port->count) { |
298 | spin_unlock_irqrestore(&port->lock, flags); | 309 | spin_unlock_irqrestore(&port->lock, flags); |
310 | if (port->ops->drop) | ||
311 | port->ops->drop(port); | ||
299 | return 0; | 312 | return 0; |
300 | } | 313 | } |
301 | port->flags |= ASYNC_CLOSING; | 314 | set_bit(ASYNCB_CLOSING, &port->flags); |
302 | tty->closing = 1; | 315 | tty->closing = 1; |
303 | spin_unlock_irqrestore(&port->lock, flags); | 316 | spin_unlock_irqrestore(&port->lock, flags); |
304 | /* Don't block on a stalled port, just pull the chain */ | 317 | /* Don't block on a stalled port, just pull the chain */ |
305 | if (tty->flow_stopped) | 318 | if (tty->flow_stopped) |
306 | tty_driver_flush_buffer(tty); | 319 | tty_driver_flush_buffer(tty); |
307 | if (port->flags & ASYNC_INITIALIZED && | 320 | if (test_bit(ASYNCB_INITIALIZED, &port->flags) && |
308 | port->closing_wait != ASYNC_CLOSING_WAIT_NONE) | 321 | port->closing_wait != ASYNC_CLOSING_WAIT_NONE) |
309 | tty_wait_until_sent(tty, port->closing_wait); | 322 | tty_wait_until_sent(tty, port->closing_wait); |
310 | if (port->drain_delay) { | 323 | if (port->drain_delay) { |
@@ -318,6 +331,9 @@ int tty_port_close_start(struct tty_port *port, struct tty_struct *tty, struct f | |||
318 | timeout = 2 * HZ; | 331 | timeout = 2 * HZ; |
319 | schedule_timeout_interruptible(timeout); | 332 | schedule_timeout_interruptible(timeout); |
320 | } | 333 | } |
334 | /* Don't call port->drop for the last reference. Callers will want | ||
335 | to drop the last active reference in ->shutdown() or the tty | ||
336 | shutdown path */ | ||
321 | return 1; | 337 | return 1; |
322 | } | 338 | } |
323 | EXPORT_SYMBOL(tty_port_close_start); | 339 | EXPORT_SYMBOL(tty_port_close_start); |
@@ -348,3 +364,14 @@ void tty_port_close_end(struct tty_port *port, struct tty_struct *tty) | |||
348 | spin_unlock_irqrestore(&port->lock, flags); | 364 | spin_unlock_irqrestore(&port->lock, flags); |
349 | } | 365 | } |
350 | EXPORT_SYMBOL(tty_port_close_end); | 366 | EXPORT_SYMBOL(tty_port_close_end); |
367 | |||
368 | void tty_port_close(struct tty_port *port, struct tty_struct *tty, | ||
369 | struct file *filp) | ||
370 | { | ||
371 | if (tty_port_close_start(port, tty, filp) == 0) | ||
372 | return; | ||
373 | tty_port_shutdown(port); | ||
374 | tty_port_close_end(port, tty); | ||
375 | tty_port_tty_set(port, NULL); | ||
376 | } | ||
377 | EXPORT_SYMBOL(tty_port_close); | ||
diff --git a/drivers/char/vt.c b/drivers/char/vt.c index 6aa88f50b039..0c80c68cd047 100644 --- a/drivers/char/vt.c +++ b/drivers/char/vt.c | |||
@@ -252,7 +252,6 @@ static void notify_update(struct vc_data *vc) | |||
252 | struct vt_notifier_param param = { .vc = vc }; | 252 | struct vt_notifier_param param = { .vc = vc }; |
253 | atomic_notifier_call_chain(&vt_notifier_list, VT_UPDATE, ¶m); | 253 | atomic_notifier_call_chain(&vt_notifier_list, VT_UPDATE, ¶m); |
254 | } | 254 | } |
255 | |||
256 | /* | 255 | /* |
257 | * Low-Level Functions | 256 | * Low-Level Functions |
258 | */ | 257 | */ |
@@ -935,6 +934,7 @@ static int vc_do_resize(struct tty_struct *tty, struct vc_data *vc, | |||
935 | 934 | ||
936 | if (CON_IS_VISIBLE(vc)) | 935 | if (CON_IS_VISIBLE(vc)) |
937 | update_screen(vc); | 936 | update_screen(vc); |
937 | vt_event_post(VT_EVENT_RESIZE, vc->vc_num, vc->vc_num); | ||
938 | return err; | 938 | return err; |
939 | } | 939 | } |
940 | 940 | ||
@@ -2129,11 +2129,7 @@ static int do_con_write(struct tty_struct *tty, const unsigned char *buf, int co | |||
2129 | currcons = vc->vc_num; | 2129 | currcons = vc->vc_num; |
2130 | if (!vc_cons_allocated(currcons)) { | 2130 | if (!vc_cons_allocated(currcons)) { |
2131 | /* could this happen? */ | 2131 | /* could this happen? */ |
2132 | static int error = 0; | 2132 | printk_once("con_write: tty %d not allocated\n", currcons+1); |
2133 | if (!error) { | ||
2134 | error = 1; | ||
2135 | printk("con_write: tty %d not allocated\n", currcons+1); | ||
2136 | } | ||
2137 | release_console_sem(); | 2133 | release_console_sem(); |
2138 | return 0; | 2134 | return 0; |
2139 | } | 2135 | } |
@@ -2910,6 +2906,9 @@ static const struct tty_operations con_ops = { | |||
2910 | .flush_chars = con_flush_chars, | 2906 | .flush_chars = con_flush_chars, |
2911 | .chars_in_buffer = con_chars_in_buffer, | 2907 | .chars_in_buffer = con_chars_in_buffer, |
2912 | .ioctl = vt_ioctl, | 2908 | .ioctl = vt_ioctl, |
2909 | #ifdef CONFIG_COMPAT | ||
2910 | .compat_ioctl = vt_compat_ioctl, | ||
2911 | #endif | ||
2913 | .stop = con_stop, | 2912 | .stop = con_stop, |
2914 | .start = con_start, | 2913 | .start = con_start, |
2915 | .throttle = con_throttle, | 2914 | .throttle = con_throttle, |
@@ -2955,7 +2954,6 @@ int __init vty_init(const struct file_operations *console_fops) | |||
2955 | } | 2954 | } |
2956 | 2955 | ||
2957 | #ifndef VT_SINGLE_DRIVER | 2956 | #ifndef VT_SINGLE_DRIVER |
2958 | #include <linux/device.h> | ||
2959 | 2957 | ||
2960 | static struct class *vtconsole_class; | 2958 | static struct class *vtconsole_class; |
2961 | 2959 | ||
@@ -3638,6 +3636,7 @@ void do_blank_screen(int entering_gfx) | |||
3638 | blank_state = blank_vesa_wait; | 3636 | blank_state = blank_vesa_wait; |
3639 | mod_timer(&console_timer, jiffies + vesa_off_interval); | 3637 | mod_timer(&console_timer, jiffies + vesa_off_interval); |
3640 | } | 3638 | } |
3639 | vt_event_post(VT_EVENT_BLANK, vc->vc_num, vc->vc_num); | ||
3641 | } | 3640 | } |
3642 | EXPORT_SYMBOL(do_blank_screen); | 3641 | EXPORT_SYMBOL(do_blank_screen); |
3643 | 3642 | ||
@@ -3682,6 +3681,7 @@ void do_unblank_screen(int leaving_gfx) | |||
3682 | console_blank_hook(0); | 3681 | console_blank_hook(0); |
3683 | set_palette(vc); | 3682 | set_palette(vc); |
3684 | set_cursor(vc); | 3683 | set_cursor(vc); |
3684 | vt_event_post(VT_EVENT_UNBLANK, vc->vc_num, vc->vc_num); | ||
3685 | } | 3685 | } |
3686 | EXPORT_SYMBOL(do_unblank_screen); | 3686 | EXPORT_SYMBOL(do_unblank_screen); |
3687 | 3687 | ||
diff --git a/drivers/char/vt_ioctl.c b/drivers/char/vt_ioctl.c index 95189f288f8c..29c651ab0d78 100644 --- a/drivers/char/vt_ioctl.c +++ b/drivers/char/vt_ioctl.c | |||
@@ -16,6 +16,8 @@ | |||
16 | #include <linux/tty.h> | 16 | #include <linux/tty.h> |
17 | #include <linux/timer.h> | 17 | #include <linux/timer.h> |
18 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
19 | #include <linux/compat.h> | ||
20 | #include <linux/module.h> | ||
19 | #include <linux/kd.h> | 21 | #include <linux/kd.h> |
20 | #include <linux/vt.h> | 22 | #include <linux/vt.h> |
21 | #include <linux/string.h> | 23 | #include <linux/string.h> |
@@ -62,6 +64,133 @@ extern struct tty_driver *console_driver; | |||
62 | static void complete_change_console(struct vc_data *vc); | 64 | static void complete_change_console(struct vc_data *vc); |
63 | 65 | ||
64 | /* | 66 | /* |
67 | * User space VT_EVENT handlers | ||
68 | */ | ||
69 | |||
70 | struct vt_event_wait { | ||
71 | struct list_head list; | ||
72 | struct vt_event event; | ||
73 | int done; | ||
74 | }; | ||
75 | |||
76 | static LIST_HEAD(vt_events); | ||
77 | static DEFINE_SPINLOCK(vt_event_lock); | ||
78 | static DECLARE_WAIT_QUEUE_HEAD(vt_event_waitqueue); | ||
79 | |||
80 | /** | ||
81 | * vt_event_post | ||
82 | * @event: the event that occurred | ||
83 | * @old: old console | ||
84 | * @new: new console | ||
85 | * | ||
86 | * Post an VT event to interested VT handlers | ||
87 | */ | ||
88 | |||
89 | void vt_event_post(unsigned int event, unsigned int old, unsigned int new) | ||
90 | { | ||
91 | struct list_head *pos, *head; | ||
92 | unsigned long flags; | ||
93 | int wake = 0; | ||
94 | |||
95 | spin_lock_irqsave(&vt_event_lock, flags); | ||
96 | head = &vt_events; | ||
97 | |||
98 | list_for_each(pos, head) { | ||
99 | struct vt_event_wait *ve = list_entry(pos, | ||
100 | struct vt_event_wait, list); | ||
101 | if (!(ve->event.event & event)) | ||
102 | continue; | ||
103 | ve->event.event = event; | ||
104 | /* kernel view is consoles 0..n-1, user space view is | ||
105 | console 1..n with 0 meaning current, so we must bias */ | ||
106 | ve->event.old = old + 1; | ||
107 | ve->event.new = new + 1; | ||
108 | wake = 1; | ||
109 | ve->done = 1; | ||
110 | } | ||
111 | spin_unlock_irqrestore(&vt_event_lock, flags); | ||
112 | if (wake) | ||
113 | wake_up_interruptible(&vt_event_waitqueue); | ||
114 | } | ||
115 | |||
116 | /** | ||
117 | * vt_event_wait - wait for an event | ||
118 | * @vw: our event | ||
119 | * | ||
120 | * Waits for an event to occur which completes our vt_event_wait | ||
121 | * structure. On return the structure has wv->done set to 1 for success | ||
122 | * or 0 if some event such as a signal ended the wait. | ||
123 | */ | ||
124 | |||
125 | static void vt_event_wait(struct vt_event_wait *vw) | ||
126 | { | ||
127 | unsigned long flags; | ||
128 | /* Prepare the event */ | ||
129 | INIT_LIST_HEAD(&vw->list); | ||
130 | vw->done = 0; | ||
131 | /* Queue our event */ | ||
132 | spin_lock_irqsave(&vt_event_lock, flags); | ||
133 | list_add(&vw->list, &vt_events); | ||
134 | spin_unlock_irqrestore(&vt_event_lock, flags); | ||
135 | /* Wait for it to pass */ | ||
136 | wait_event_interruptible(vt_event_waitqueue, vw->done); | ||
137 | /* Dequeue it */ | ||
138 | spin_lock_irqsave(&vt_event_lock, flags); | ||
139 | list_del(&vw->list); | ||
140 | spin_unlock_irqrestore(&vt_event_lock, flags); | ||
141 | } | ||
142 | |||
143 | /** | ||
144 | * vt_event_wait_ioctl - event ioctl handler | ||
145 | * @arg: argument to ioctl | ||
146 | * | ||
147 | * Implement the VT_WAITEVENT ioctl using the VT event interface | ||
148 | */ | ||
149 | |||
150 | static int vt_event_wait_ioctl(struct vt_event __user *event) | ||
151 | { | ||
152 | struct vt_event_wait vw; | ||
153 | |||
154 | if (copy_from_user(&vw.event, event, sizeof(struct vt_event))) | ||
155 | return -EFAULT; | ||
156 | /* Highest supported event for now */ | ||
157 | if (vw.event.event & ~VT_MAX_EVENT) | ||
158 | return -EINVAL; | ||
159 | |||
160 | vt_event_wait(&vw); | ||
161 | /* If it occurred report it */ | ||
162 | if (vw.done) { | ||
163 | if (copy_to_user(event, &vw.event, sizeof(struct vt_event))) | ||
164 | return -EFAULT; | ||
165 | return 0; | ||
166 | } | ||
167 | return -EINTR; | ||
168 | } | ||
169 | |||
170 | /** | ||
171 | * vt_waitactive - active console wait | ||
172 | * @event: event code | ||
173 | * @n: new console | ||
174 | * | ||
175 | * Helper for event waits. Used to implement the legacy | ||
176 | * event waiting ioctls in terms of events | ||
177 | */ | ||
178 | |||
179 | int vt_waitactive(int n) | ||
180 | { | ||
181 | struct vt_event_wait vw; | ||
182 | do { | ||
183 | if (n == fg_console + 1) | ||
184 | break; | ||
185 | vw.event.event = VT_EVENT_SWITCH; | ||
186 | vt_event_wait(&vw); | ||
187 | if (vw.done == 0) | ||
188 | return -EINTR; | ||
189 | } while (vw.event.new != n); | ||
190 | return 0; | ||
191 | } | ||
192 | |||
193 | /* | ||
65 | * these are the valid i/o ports we're allowed to change. they map all the | 194 | * these are the valid i/o ports we're allowed to change. they map all the |
66 | * video ports | 195 | * video ports |
67 | */ | 196 | */ |
@@ -360,6 +489,8 @@ do_unimap_ioctl(int cmd, struct unimapdesc __user *user_ud, int perm, struct vc_ | |||
360 | return 0; | 489 | return 0; |
361 | } | 490 | } |
362 | 491 | ||
492 | |||
493 | |||
363 | /* | 494 | /* |
364 | * We handle the console-specific ioctl's here. We allow the | 495 | * We handle the console-specific ioctl's here. We allow the |
365 | * capability to modify any console, not just the fg_console. | 496 | * capability to modify any console, not just the fg_console. |
@@ -842,6 +973,41 @@ int vt_ioctl(struct tty_struct *tty, struct file * file, | |||
842 | } | 973 | } |
843 | break; | 974 | break; |
844 | 975 | ||
976 | case VT_SETACTIVATE: | ||
977 | { | ||
978 | struct vt_setactivate vsa; | ||
979 | |||
980 | if (!perm) | ||
981 | goto eperm; | ||
982 | |||
983 | if (copy_from_user(&vsa, (struct vt_setactivate __user *)arg, | ||
984 | sizeof(struct vt_setactivate))) | ||
985 | return -EFAULT; | ||
986 | if (vsa.console == 0 || vsa.console > MAX_NR_CONSOLES) | ||
987 | ret = -ENXIO; | ||
988 | else { | ||
989 | vsa.console--; | ||
990 | acquire_console_sem(); | ||
991 | ret = vc_allocate(vsa.console); | ||
992 | if (ret == 0) { | ||
993 | struct vc_data *nvc; | ||
994 | /* This is safe providing we don't drop the | ||
995 | console sem between vc_allocate and | ||
996 | finishing referencing nvc */ | ||
997 | nvc = vc_cons[vsa.console].d; | ||
998 | nvc->vt_mode = vsa.mode; | ||
999 | nvc->vt_mode.frsig = 0; | ||
1000 | put_pid(nvc->vt_pid); | ||
1001 | nvc->vt_pid = get_pid(task_pid(current)); | ||
1002 | } | ||
1003 | release_console_sem(); | ||
1004 | if (ret) | ||
1005 | break; | ||
1006 | /* Commence switch and lock */ | ||
1007 | set_console(arg); | ||
1008 | } | ||
1009 | } | ||
1010 | |||
845 | /* | 1011 | /* |
846 | * wait until the specified VT has been activated | 1012 | * wait until the specified VT has been activated |
847 | */ | 1013 | */ |
@@ -851,7 +1017,7 @@ int vt_ioctl(struct tty_struct *tty, struct file * file, | |||
851 | if (arg == 0 || arg > MAX_NR_CONSOLES) | 1017 | if (arg == 0 || arg > MAX_NR_CONSOLES) |
852 | ret = -ENXIO; | 1018 | ret = -ENXIO; |
853 | else | 1019 | else |
854 | ret = vt_waitactive(arg - 1); | 1020 | ret = vt_waitactive(arg); |
855 | break; | 1021 | break; |
856 | 1022 | ||
857 | /* | 1023 | /* |
@@ -1159,6 +1325,9 @@ int vt_ioctl(struct tty_struct *tty, struct file * file, | |||
1159 | ret = put_user(vc->vc_hi_font_mask, | 1325 | ret = put_user(vc->vc_hi_font_mask, |
1160 | (unsigned short __user *)arg); | 1326 | (unsigned short __user *)arg); |
1161 | break; | 1327 | break; |
1328 | case VT_WAITEVENT: | ||
1329 | ret = vt_event_wait_ioctl((struct vt_event __user *)arg); | ||
1330 | break; | ||
1162 | default: | 1331 | default: |
1163 | ret = -ENOIOCTLCMD; | 1332 | ret = -ENOIOCTLCMD; |
1164 | } | 1333 | } |
@@ -1170,54 +1339,6 @@ eperm: | |||
1170 | goto out; | 1339 | goto out; |
1171 | } | 1340 | } |
1172 | 1341 | ||
1173 | /* | ||
1174 | * Sometimes we want to wait until a particular VT has been activated. We | ||
1175 | * do it in a very simple manner. Everybody waits on a single queue and | ||
1176 | * get woken up at once. Those that are satisfied go on with their business, | ||
1177 | * while those not ready go back to sleep. Seems overkill to add a wait | ||
1178 | * to each vt just for this - usually this does nothing! | ||
1179 | */ | ||
1180 | static DECLARE_WAIT_QUEUE_HEAD(vt_activate_queue); | ||
1181 | |||
1182 | /* | ||
1183 | * Sleeps until a vt is activated, or the task is interrupted. Returns | ||
1184 | * 0 if activation, -EINTR if interrupted by a signal handler. | ||
1185 | */ | ||
1186 | int vt_waitactive(int vt) | ||
1187 | { | ||
1188 | int retval; | ||
1189 | DECLARE_WAITQUEUE(wait, current); | ||
1190 | |||
1191 | add_wait_queue(&vt_activate_queue, &wait); | ||
1192 | for (;;) { | ||
1193 | retval = 0; | ||
1194 | |||
1195 | /* | ||
1196 | * Synchronize with redraw_screen(). By acquiring the console | ||
1197 | * semaphore we make sure that the console switch is completed | ||
1198 | * before we return. If we didn't wait for the semaphore, we | ||
1199 | * could return at a point where fg_console has already been | ||
1200 | * updated, but the console switch hasn't been completed. | ||
1201 | */ | ||
1202 | acquire_console_sem(); | ||
1203 | set_current_state(TASK_INTERRUPTIBLE); | ||
1204 | if (vt == fg_console) { | ||
1205 | release_console_sem(); | ||
1206 | break; | ||
1207 | } | ||
1208 | release_console_sem(); | ||
1209 | retval = -ERESTARTNOHAND; | ||
1210 | if (signal_pending(current)) | ||
1211 | break; | ||
1212 | schedule(); | ||
1213 | } | ||
1214 | remove_wait_queue(&vt_activate_queue, &wait); | ||
1215 | __set_current_state(TASK_RUNNING); | ||
1216 | return retval; | ||
1217 | } | ||
1218 | |||
1219 | #define vt_wake_waitactive() wake_up(&vt_activate_queue) | ||
1220 | |||
1221 | void reset_vc(struct vc_data *vc) | 1342 | void reset_vc(struct vc_data *vc) |
1222 | { | 1343 | { |
1223 | vc->vc_mode = KD_TEXT; | 1344 | vc->vc_mode = KD_TEXT; |
@@ -1256,12 +1377,216 @@ void vc_SAK(struct work_struct *work) | |||
1256 | release_console_sem(); | 1377 | release_console_sem(); |
1257 | } | 1378 | } |
1258 | 1379 | ||
1380 | #ifdef CONFIG_COMPAT | ||
1381 | |||
1382 | struct compat_consolefontdesc { | ||
1383 | unsigned short charcount; /* characters in font (256 or 512) */ | ||
1384 | unsigned short charheight; /* scan lines per character (1-32) */ | ||
1385 | compat_caddr_t chardata; /* font data in expanded form */ | ||
1386 | }; | ||
1387 | |||
1388 | static inline int | ||
1389 | compat_fontx_ioctl(int cmd, struct compat_consolefontdesc __user *user_cfd, | ||
1390 | int perm, struct console_font_op *op) | ||
1391 | { | ||
1392 | struct compat_consolefontdesc cfdarg; | ||
1393 | int i; | ||
1394 | |||
1395 | if (copy_from_user(&cfdarg, user_cfd, sizeof(struct compat_consolefontdesc))) | ||
1396 | return -EFAULT; | ||
1397 | |||
1398 | switch (cmd) { | ||
1399 | case PIO_FONTX: | ||
1400 | if (!perm) | ||
1401 | return -EPERM; | ||
1402 | op->op = KD_FONT_OP_SET; | ||
1403 | op->flags = KD_FONT_FLAG_OLD; | ||
1404 | op->width = 8; | ||
1405 | op->height = cfdarg.charheight; | ||
1406 | op->charcount = cfdarg.charcount; | ||
1407 | op->data = compat_ptr(cfdarg.chardata); | ||
1408 | return con_font_op(vc_cons[fg_console].d, op); | ||
1409 | case GIO_FONTX: | ||
1410 | op->op = KD_FONT_OP_GET; | ||
1411 | op->flags = KD_FONT_FLAG_OLD; | ||
1412 | op->width = 8; | ||
1413 | op->height = cfdarg.charheight; | ||
1414 | op->charcount = cfdarg.charcount; | ||
1415 | op->data = compat_ptr(cfdarg.chardata); | ||
1416 | i = con_font_op(vc_cons[fg_console].d, op); | ||
1417 | if (i) | ||
1418 | return i; | ||
1419 | cfdarg.charheight = op->height; | ||
1420 | cfdarg.charcount = op->charcount; | ||
1421 | if (copy_to_user(user_cfd, &cfdarg, sizeof(struct compat_consolefontdesc))) | ||
1422 | return -EFAULT; | ||
1423 | return 0; | ||
1424 | } | ||
1425 | return -EINVAL; | ||
1426 | } | ||
1427 | |||
1428 | struct compat_console_font_op { | ||
1429 | compat_uint_t op; /* operation code KD_FONT_OP_* */ | ||
1430 | compat_uint_t flags; /* KD_FONT_FLAG_* */ | ||
1431 | compat_uint_t width, height; /* font size */ | ||
1432 | compat_uint_t charcount; | ||
1433 | compat_caddr_t data; /* font data with height fixed to 32 */ | ||
1434 | }; | ||
1435 | |||
1436 | static inline int | ||
1437 | compat_kdfontop_ioctl(struct compat_console_font_op __user *fontop, | ||
1438 | int perm, struct console_font_op *op, struct vc_data *vc) | ||
1439 | { | ||
1440 | int i; | ||
1441 | |||
1442 | if (copy_from_user(op, fontop, sizeof(struct compat_console_font_op))) | ||
1443 | return -EFAULT; | ||
1444 | if (!perm && op->op != KD_FONT_OP_GET) | ||
1445 | return -EPERM; | ||
1446 | op->data = compat_ptr(((struct compat_console_font_op *)op)->data); | ||
1447 | op->flags |= KD_FONT_FLAG_OLD; | ||
1448 | i = con_font_op(vc, op); | ||
1449 | if (i) | ||
1450 | return i; | ||
1451 | ((struct compat_console_font_op *)op)->data = (unsigned long)op->data; | ||
1452 | if (copy_to_user(fontop, op, sizeof(struct compat_console_font_op))) | ||
1453 | return -EFAULT; | ||
1454 | return 0; | ||
1455 | } | ||
1456 | |||
1457 | struct compat_unimapdesc { | ||
1458 | unsigned short entry_ct; | ||
1459 | compat_caddr_t entries; | ||
1460 | }; | ||
1461 | |||
1462 | static inline int | ||
1463 | compat_unimap_ioctl(unsigned int cmd, struct compat_unimapdesc __user *user_ud, | ||
1464 | int perm, struct vc_data *vc) | ||
1465 | { | ||
1466 | struct compat_unimapdesc tmp; | ||
1467 | struct unipair __user *tmp_entries; | ||
1468 | |||
1469 | if (copy_from_user(&tmp, user_ud, sizeof tmp)) | ||
1470 | return -EFAULT; | ||
1471 | tmp_entries = compat_ptr(tmp.entries); | ||
1472 | if (tmp_entries) | ||
1473 | if (!access_ok(VERIFY_WRITE, tmp_entries, | ||
1474 | tmp.entry_ct*sizeof(struct unipair))) | ||
1475 | return -EFAULT; | ||
1476 | switch (cmd) { | ||
1477 | case PIO_UNIMAP: | ||
1478 | if (!perm) | ||
1479 | return -EPERM; | ||
1480 | return con_set_unimap(vc, tmp.entry_ct, tmp_entries); | ||
1481 | case GIO_UNIMAP: | ||
1482 | if (!perm && fg_console != vc->vc_num) | ||
1483 | return -EPERM; | ||
1484 | return con_get_unimap(vc, tmp.entry_ct, &(user_ud->entry_ct), tmp_entries); | ||
1485 | } | ||
1486 | return 0; | ||
1487 | } | ||
1488 | |||
1489 | long vt_compat_ioctl(struct tty_struct *tty, struct file * file, | ||
1490 | unsigned int cmd, unsigned long arg) | ||
1491 | { | ||
1492 | struct vc_data *vc = tty->driver_data; | ||
1493 | struct console_font_op op; /* used in multiple places here */ | ||
1494 | struct kbd_struct *kbd; | ||
1495 | unsigned int console; | ||
1496 | void __user *up = (void __user *)arg; | ||
1497 | int perm; | ||
1498 | int ret = 0; | ||
1499 | |||
1500 | console = vc->vc_num; | ||
1501 | |||
1502 | lock_kernel(); | ||
1503 | |||
1504 | if (!vc_cons_allocated(console)) { /* impossible? */ | ||
1505 | ret = -ENOIOCTLCMD; | ||
1506 | goto out; | ||
1507 | } | ||
1508 | |||
1509 | /* | ||
1510 | * To have permissions to do most of the vt ioctls, we either have | ||
1511 | * to be the owner of the tty, or have CAP_SYS_TTY_CONFIG. | ||
1512 | */ | ||
1513 | perm = 0; | ||
1514 | if (current->signal->tty == tty || capable(CAP_SYS_TTY_CONFIG)) | ||
1515 | perm = 1; | ||
1516 | |||
1517 | kbd = kbd_table + console; | ||
1518 | switch (cmd) { | ||
1519 | /* | ||
1520 | * these need special handlers for incompatible data structures | ||
1521 | */ | ||
1522 | case PIO_FONTX: | ||
1523 | case GIO_FONTX: | ||
1524 | ret = compat_fontx_ioctl(cmd, up, perm, &op); | ||
1525 | break; | ||
1526 | |||
1527 | case KDFONTOP: | ||
1528 | ret = compat_kdfontop_ioctl(up, perm, &op, vc); | ||
1529 | break; | ||
1530 | |||
1531 | case PIO_UNIMAP: | ||
1532 | case GIO_UNIMAP: | ||
1533 | ret = do_unimap_ioctl(cmd, up, perm, vc); | ||
1534 | break; | ||
1535 | |||
1536 | /* | ||
1537 | * all these treat 'arg' as an integer | ||
1538 | */ | ||
1539 | case KIOCSOUND: | ||
1540 | case KDMKTONE: | ||
1541 | #ifdef CONFIG_X86 | ||
1542 | case KDADDIO: | ||
1543 | case KDDELIO: | ||
1544 | #endif | ||
1545 | case KDSETMODE: | ||
1546 | case KDMAPDISP: | ||
1547 | case KDUNMAPDISP: | ||
1548 | case KDSKBMODE: | ||
1549 | case KDSKBMETA: | ||
1550 | case KDSKBLED: | ||
1551 | case KDSETLED: | ||
1552 | case KDSIGACCEPT: | ||
1553 | case VT_ACTIVATE: | ||
1554 | case VT_WAITACTIVE: | ||
1555 | case VT_RELDISP: | ||
1556 | case VT_DISALLOCATE: | ||
1557 | case VT_RESIZE: | ||
1558 | case VT_RESIZEX: | ||
1559 | goto fallback; | ||
1560 | |||
1561 | /* | ||
1562 | * the rest has a compatible data structure behind arg, | ||
1563 | * but we have to convert it to a proper 64 bit pointer. | ||
1564 | */ | ||
1565 | default: | ||
1566 | arg = (unsigned long)compat_ptr(arg); | ||
1567 | goto fallback; | ||
1568 | } | ||
1569 | out: | ||
1570 | unlock_kernel(); | ||
1571 | return ret; | ||
1572 | |||
1573 | fallback: | ||
1574 | unlock_kernel(); | ||
1575 | return vt_ioctl(tty, file, cmd, arg); | ||
1576 | } | ||
1577 | |||
1578 | |||
1579 | #endif /* CONFIG_COMPAT */ | ||
1580 | |||
1581 | |||
1259 | /* | 1582 | /* |
1260 | * Performs the back end of a vt switch | 1583 | * Performs the back end of a vt switch. Called under the console |
1584 | * semaphore. | ||
1261 | */ | 1585 | */ |
1262 | static void complete_change_console(struct vc_data *vc) | 1586 | static void complete_change_console(struct vc_data *vc) |
1263 | { | 1587 | { |
1264 | unsigned char old_vc_mode; | 1588 | unsigned char old_vc_mode; |
1589 | int old = fg_console; | ||
1265 | 1590 | ||
1266 | last_console = fg_console; | 1591 | last_console = fg_console; |
1267 | 1592 | ||
@@ -1325,7 +1650,7 @@ static void complete_change_console(struct vc_data *vc) | |||
1325 | /* | 1650 | /* |
1326 | * Wake anyone waiting for their VT to activate | 1651 | * Wake anyone waiting for their VT to activate |
1327 | */ | 1652 | */ |
1328 | vt_wake_waitactive(); | 1653 | vt_event_post(VT_EVENT_SWITCH, old, vc->vc_num); |
1329 | return; | 1654 | return; |
1330 | } | 1655 | } |
1331 | 1656 | ||
@@ -1398,3 +1723,58 @@ void change_console(struct vc_data *new_vc) | |||
1398 | 1723 | ||
1399 | complete_change_console(new_vc); | 1724 | complete_change_console(new_vc); |
1400 | } | 1725 | } |
1726 | |||
1727 | /* Perform a kernel triggered VT switch for suspend/resume */ | ||
1728 | |||
1729 | static int disable_vt_switch; | ||
1730 | |||
1731 | int vt_move_to_console(unsigned int vt, int alloc) | ||
1732 | { | ||
1733 | int prev; | ||
1734 | |||
1735 | acquire_console_sem(); | ||
1736 | /* Graphics mode - up to X */ | ||
1737 | if (disable_vt_switch) { | ||
1738 | release_console_sem(); | ||
1739 | return 0; | ||
1740 | } | ||
1741 | prev = fg_console; | ||
1742 | |||
1743 | if (alloc && vc_allocate(vt)) { | ||
1744 | /* we can't have a free VC for now. Too bad, | ||
1745 | * we don't want to mess the screen for now. */ | ||
1746 | release_console_sem(); | ||
1747 | return -ENOSPC; | ||
1748 | } | ||
1749 | |||
1750 | if (set_console(vt)) { | ||
1751 | /* | ||
1752 | * We're unable to switch to the SUSPEND_CONSOLE. | ||
1753 | * Let the calling function know so it can decide | ||
1754 | * what to do. | ||
1755 | */ | ||
1756 | release_console_sem(); | ||
1757 | return -EIO; | ||
1758 | } | ||
1759 | release_console_sem(); | ||
1760 | if (vt_waitactive(vt + 1)) { | ||
1761 | pr_debug("Suspend: Can't switch VCs."); | ||
1762 | return -EINTR; | ||
1763 | } | ||
1764 | return prev; | ||
1765 | } | ||
1766 | |||
1767 | /* | ||
1768 | * Normally during a suspend, we allocate a new console and switch to it. | ||
1769 | * When we resume, we switch back to the original console. This switch | ||
1770 | * can be slow, so on systems where the framebuffer can handle restoration | ||
1771 | * of video registers anyways, there's little point in doing the console | ||
1772 | * switch. This function allows you to disable it by passing it '0'. | ||
1773 | */ | ||
1774 | void pm_set_vt_switch(int do_switch) | ||
1775 | { | ||
1776 | acquire_console_sem(); | ||
1777 | disable_vt_switch = !do_switch; | ||
1778 | release_console_sem(); | ||
1779 | } | ||
1780 | EXPORT_SYMBOL(pm_set_vt_switch); | ||
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 2968ed6a9c49..3938c7817095 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -61,6 +61,8 @@ static DEFINE_SPINLOCK(cpufreq_driver_lock); | |||
61 | * are concerned with are online after they get the lock. | 61 | * are concerned with are online after they get the lock. |
62 | * - Governor routines that can be called in cpufreq hotplug path should not | 62 | * - Governor routines that can be called in cpufreq hotplug path should not |
63 | * take this sem as top level hotplug notifier handler takes this. | 63 | * take this sem as top level hotplug notifier handler takes this. |
64 | * - Lock should not be held across | ||
65 | * __cpufreq_governor(data, CPUFREQ_GOV_STOP); | ||
64 | */ | 66 | */ |
65 | static DEFINE_PER_CPU(int, policy_cpu); | 67 | static DEFINE_PER_CPU(int, policy_cpu); |
66 | static DEFINE_PER_CPU(struct rw_semaphore, cpu_policy_rwsem); | 68 | static DEFINE_PER_CPU(struct rw_semaphore, cpu_policy_rwsem); |
@@ -686,6 +688,9 @@ static struct attribute *default_attrs[] = { | |||
686 | NULL | 688 | NULL |
687 | }; | 689 | }; |
688 | 690 | ||
691 | struct kobject *cpufreq_global_kobject; | ||
692 | EXPORT_SYMBOL(cpufreq_global_kobject); | ||
693 | |||
689 | #define to_policy(k) container_of(k, struct cpufreq_policy, kobj) | 694 | #define to_policy(k) container_of(k, struct cpufreq_policy, kobj) |
690 | #define to_attr(a) container_of(a, struct freq_attr, attr) | 695 | #define to_attr(a) container_of(a, struct freq_attr, attr) |
691 | 696 | ||
@@ -756,92 +761,20 @@ static struct kobj_type ktype_cpufreq = { | |||
756 | .release = cpufreq_sysfs_release, | 761 | .release = cpufreq_sysfs_release, |
757 | }; | 762 | }; |
758 | 763 | ||
759 | 764 | /* | |
760 | /** | 765 | * Returns: |
761 | * cpufreq_add_dev - add a CPU device | 766 | * Negative: Failure |
762 | * | 767 | * 0: Success |
763 | * Adds the cpufreq interface for a CPU device. | 768 | * Positive: When we have a managed CPU and the sysfs got symlinked |
764 | * | ||
765 | * The Oracle says: try running cpufreq registration/unregistration concurrently | ||
766 | * with with cpu hotplugging and all hell will break loose. Tried to clean this | ||
767 | * mess up, but more thorough testing is needed. - Mathieu | ||
768 | */ | 769 | */ |
769 | static int cpufreq_add_dev(struct sys_device *sys_dev) | 770 | int cpufreq_add_dev_policy(unsigned int cpu, struct cpufreq_policy *policy, |
771 | struct sys_device *sys_dev) | ||
770 | { | 772 | { |
771 | unsigned int cpu = sys_dev->id; | ||
772 | int ret = 0; | 773 | int ret = 0; |
773 | struct cpufreq_policy new_policy; | 774 | #ifdef CONFIG_SMP |
774 | struct cpufreq_policy *policy; | ||
775 | struct freq_attr **drv_attr; | ||
776 | struct sys_device *cpu_sys_dev; | ||
777 | unsigned long flags; | 775 | unsigned long flags; |
778 | unsigned int j; | 776 | unsigned int j; |
779 | 777 | ||
780 | if (cpu_is_offline(cpu)) | ||
781 | return 0; | ||
782 | |||
783 | cpufreq_debug_disable_ratelimit(); | ||
784 | dprintk("adding CPU %u\n", cpu); | ||
785 | |||
786 | #ifdef CONFIG_SMP | ||
787 | /* check whether a different CPU already registered this | ||
788 | * CPU because it is in the same boat. */ | ||
789 | policy = cpufreq_cpu_get(cpu); | ||
790 | if (unlikely(policy)) { | ||
791 | cpufreq_cpu_put(policy); | ||
792 | cpufreq_debug_enable_ratelimit(); | ||
793 | return 0; | ||
794 | } | ||
795 | #endif | ||
796 | |||
797 | if (!try_module_get(cpufreq_driver->owner)) { | ||
798 | ret = -EINVAL; | ||
799 | goto module_out; | ||
800 | } | ||
801 | |||
802 | policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL); | ||
803 | if (!policy) { | ||
804 | ret = -ENOMEM; | ||
805 | goto nomem_out; | ||
806 | } | ||
807 | if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL)) { | ||
808 | ret = -ENOMEM; | ||
809 | goto err_free_policy; | ||
810 | } | ||
811 | if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL)) { | ||
812 | ret = -ENOMEM; | ||
813 | goto err_free_cpumask; | ||
814 | } | ||
815 | |||
816 | policy->cpu = cpu; | ||
817 | cpumask_copy(policy->cpus, cpumask_of(cpu)); | ||
818 | |||
819 | /* Initially set CPU itself as the policy_cpu */ | ||
820 | per_cpu(policy_cpu, cpu) = cpu; | ||
821 | ret = (lock_policy_rwsem_write(cpu) < 0); | ||
822 | WARN_ON(ret); | ||
823 | |||
824 | init_completion(&policy->kobj_unregister); | ||
825 | INIT_WORK(&policy->update, handle_update); | ||
826 | |||
827 | /* Set governor before ->init, so that driver could check it */ | ||
828 | policy->governor = CPUFREQ_DEFAULT_GOVERNOR; | ||
829 | /* call driver. From then on the cpufreq must be able | ||
830 | * to accept all calls to ->verify and ->setpolicy for this CPU | ||
831 | */ | ||
832 | ret = cpufreq_driver->init(policy); | ||
833 | if (ret) { | ||
834 | dprintk("initialization failed\n"); | ||
835 | goto err_unlock_policy; | ||
836 | } | ||
837 | policy->user_policy.min = policy->min; | ||
838 | policy->user_policy.max = policy->max; | ||
839 | |||
840 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, | ||
841 | CPUFREQ_START, policy); | ||
842 | |||
843 | #ifdef CONFIG_SMP | ||
844 | |||
845 | #ifdef CONFIG_HOTPLUG_CPU | 778 | #ifdef CONFIG_HOTPLUG_CPU |
846 | if (per_cpu(cpufreq_cpu_governor, cpu)) { | 779 | if (per_cpu(cpufreq_cpu_governor, cpu)) { |
847 | policy->governor = per_cpu(cpufreq_cpu_governor, cpu); | 780 | policy->governor = per_cpu(cpufreq_cpu_governor, cpu); |
@@ -872,9 +805,8 @@ static int cpufreq_add_dev(struct sys_device *sys_dev) | |||
872 | /* Should not go through policy unlock path */ | 805 | /* Should not go through policy unlock path */ |
873 | if (cpufreq_driver->exit) | 806 | if (cpufreq_driver->exit) |
874 | cpufreq_driver->exit(policy); | 807 | cpufreq_driver->exit(policy); |
875 | ret = -EBUSY; | ||
876 | cpufreq_cpu_put(managed_policy); | 808 | cpufreq_cpu_put(managed_policy); |
877 | goto err_free_cpumask; | 809 | return -EBUSY; |
878 | } | 810 | } |
879 | 811 | ||
880 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | 812 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
@@ -893,17 +825,62 @@ static int cpufreq_add_dev(struct sys_device *sys_dev) | |||
893 | * Call driver->exit() because only the cpu parent of | 825 | * Call driver->exit() because only the cpu parent of |
894 | * the kobj needed to call init(). | 826 | * the kobj needed to call init(). |
895 | */ | 827 | */ |
896 | goto out_driver_exit; /* call driver->exit() */ | 828 | if (cpufreq_driver->exit) |
829 | cpufreq_driver->exit(policy); | ||
830 | |||
831 | if (!ret) | ||
832 | return 1; | ||
833 | else | ||
834 | return ret; | ||
897 | } | 835 | } |
898 | } | 836 | } |
899 | #endif | 837 | #endif |
900 | memcpy(&new_policy, policy, sizeof(struct cpufreq_policy)); | 838 | return ret; |
839 | } | ||
840 | |||
841 | |||
842 | /* symlink affected CPUs */ | ||
843 | int cpufreq_add_dev_symlink(unsigned int cpu, struct cpufreq_policy *policy) | ||
844 | { | ||
845 | unsigned int j; | ||
846 | int ret = 0; | ||
847 | |||
848 | for_each_cpu(j, policy->cpus) { | ||
849 | struct cpufreq_policy *managed_policy; | ||
850 | struct sys_device *cpu_sys_dev; | ||
851 | |||
852 | if (j == cpu) | ||
853 | continue; | ||
854 | if (!cpu_online(j)) | ||
855 | continue; | ||
856 | |||
857 | dprintk("CPU %u already managed, adding link\n", j); | ||
858 | managed_policy = cpufreq_cpu_get(cpu); | ||
859 | cpu_sys_dev = get_cpu_sysdev(j); | ||
860 | ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj, | ||
861 | "cpufreq"); | ||
862 | if (ret) { | ||
863 | cpufreq_cpu_put(managed_policy); | ||
864 | return ret; | ||
865 | } | ||
866 | } | ||
867 | return ret; | ||
868 | } | ||
869 | |||
870 | int cpufreq_add_dev_interface(unsigned int cpu, struct cpufreq_policy *policy, | ||
871 | struct sys_device *sys_dev) | ||
872 | { | ||
873 | struct cpufreq_policy new_policy; | ||
874 | struct freq_attr **drv_attr; | ||
875 | unsigned long flags; | ||
876 | int ret = 0; | ||
877 | unsigned int j; | ||
901 | 878 | ||
902 | /* prepare interface data */ | 879 | /* prepare interface data */ |
903 | ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq, &sys_dev->kobj, | 880 | ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq, |
904 | "cpufreq"); | 881 | &sys_dev->kobj, "cpufreq"); |
905 | if (ret) | 882 | if (ret) |
906 | goto out_driver_exit; | 883 | return ret; |
907 | 884 | ||
908 | /* set up files for this cpu device */ | 885 | /* set up files for this cpu device */ |
909 | drv_attr = cpufreq_driver->attr; | 886 | drv_attr = cpufreq_driver->attr; |
@@ -926,35 +903,20 @@ static int cpufreq_add_dev(struct sys_device *sys_dev) | |||
926 | 903 | ||
927 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | 904 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
928 | for_each_cpu(j, policy->cpus) { | 905 | for_each_cpu(j, policy->cpus) { |
929 | if (!cpu_online(j)) | 906 | if (!cpu_online(j)) |
930 | continue; | 907 | continue; |
931 | per_cpu(cpufreq_cpu_data, j) = policy; | 908 | per_cpu(cpufreq_cpu_data, j) = policy; |
932 | per_cpu(policy_cpu, j) = policy->cpu; | 909 | per_cpu(policy_cpu, j) = policy->cpu; |
933 | } | 910 | } |
934 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | 911 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
935 | 912 | ||
936 | /* symlink affected CPUs */ | 913 | ret = cpufreq_add_dev_symlink(cpu, policy); |
937 | for_each_cpu(j, policy->cpus) { | 914 | if (ret) |
938 | struct cpufreq_policy *managed_policy; | 915 | goto err_out_kobj_put; |
939 | |||
940 | if (j == cpu) | ||
941 | continue; | ||
942 | if (!cpu_online(j)) | ||
943 | continue; | ||
944 | |||
945 | dprintk("CPU %u already managed, adding link\n", j); | ||
946 | managed_policy = cpufreq_cpu_get(cpu); | ||
947 | cpu_sys_dev = get_cpu_sysdev(j); | ||
948 | ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj, | ||
949 | "cpufreq"); | ||
950 | if (ret) { | ||
951 | cpufreq_cpu_put(managed_policy); | ||
952 | goto err_out_unregister; | ||
953 | } | ||
954 | } | ||
955 | 916 | ||
956 | policy->governor = NULL; /* to assure that the starting sequence is | 917 | memcpy(&new_policy, policy, sizeof(struct cpufreq_policy)); |
957 | * run in cpufreq_set_policy */ | 918 | /* assure that the starting sequence is run in __cpufreq_set_policy */ |
919 | policy->governor = NULL; | ||
958 | 920 | ||
959 | /* set default policy */ | 921 | /* set default policy */ |
960 | ret = __cpufreq_set_policy(policy, &new_policy); | 922 | ret = __cpufreq_set_policy(policy, &new_policy); |
@@ -963,8 +925,107 @@ static int cpufreq_add_dev(struct sys_device *sys_dev) | |||
963 | 925 | ||
964 | if (ret) { | 926 | if (ret) { |
965 | dprintk("setting policy failed\n"); | 927 | dprintk("setting policy failed\n"); |
966 | goto err_out_unregister; | 928 | if (cpufreq_driver->exit) |
929 | cpufreq_driver->exit(policy); | ||
930 | } | ||
931 | return ret; | ||
932 | |||
933 | err_out_kobj_put: | ||
934 | kobject_put(&policy->kobj); | ||
935 | wait_for_completion(&policy->kobj_unregister); | ||
936 | return ret; | ||
937 | } | ||
938 | |||
939 | |||
940 | /** | ||
941 | * cpufreq_add_dev - add a CPU device | ||
942 | * | ||
943 | * Adds the cpufreq interface for a CPU device. | ||
944 | * | ||
945 | * The Oracle says: try running cpufreq registration/unregistration concurrently | ||
946 | * with with cpu hotplugging and all hell will break loose. Tried to clean this | ||
947 | * mess up, but more thorough testing is needed. - Mathieu | ||
948 | */ | ||
949 | static int cpufreq_add_dev(struct sys_device *sys_dev) | ||
950 | { | ||
951 | unsigned int cpu = sys_dev->id; | ||
952 | int ret = 0; | ||
953 | struct cpufreq_policy *policy; | ||
954 | unsigned long flags; | ||
955 | unsigned int j; | ||
956 | |||
957 | if (cpu_is_offline(cpu)) | ||
958 | return 0; | ||
959 | |||
960 | cpufreq_debug_disable_ratelimit(); | ||
961 | dprintk("adding CPU %u\n", cpu); | ||
962 | |||
963 | #ifdef CONFIG_SMP | ||
964 | /* check whether a different CPU already registered this | ||
965 | * CPU because it is in the same boat. */ | ||
966 | policy = cpufreq_cpu_get(cpu); | ||
967 | if (unlikely(policy)) { | ||
968 | cpufreq_cpu_put(policy); | ||
969 | cpufreq_debug_enable_ratelimit(); | ||
970 | return 0; | ||
971 | } | ||
972 | #endif | ||
973 | |||
974 | if (!try_module_get(cpufreq_driver->owner)) { | ||
975 | ret = -EINVAL; | ||
976 | goto module_out; | ||
977 | } | ||
978 | |||
979 | ret = -ENOMEM; | ||
980 | policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL); | ||
981 | if (!policy) | ||
982 | goto nomem_out; | ||
983 | |||
984 | if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL)) | ||
985 | goto err_free_policy; | ||
986 | |||
987 | if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL)) | ||
988 | goto err_free_cpumask; | ||
989 | |||
990 | policy->cpu = cpu; | ||
991 | cpumask_copy(policy->cpus, cpumask_of(cpu)); | ||
992 | |||
993 | /* Initially set CPU itself as the policy_cpu */ | ||
994 | per_cpu(policy_cpu, cpu) = cpu; | ||
995 | ret = (lock_policy_rwsem_write(cpu) < 0); | ||
996 | WARN_ON(ret); | ||
997 | |||
998 | init_completion(&policy->kobj_unregister); | ||
999 | INIT_WORK(&policy->update, handle_update); | ||
1000 | |||
1001 | /* Set governor before ->init, so that driver could check it */ | ||
1002 | policy->governor = CPUFREQ_DEFAULT_GOVERNOR; | ||
1003 | /* call driver. From then on the cpufreq must be able | ||
1004 | * to accept all calls to ->verify and ->setpolicy for this CPU | ||
1005 | */ | ||
1006 | ret = cpufreq_driver->init(policy); | ||
1007 | if (ret) { | ||
1008 | dprintk("initialization failed\n"); | ||
1009 | goto err_unlock_policy; | ||
967 | } | 1010 | } |
1011 | policy->user_policy.min = policy->min; | ||
1012 | policy->user_policy.max = policy->max; | ||
1013 | |||
1014 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, | ||
1015 | CPUFREQ_START, policy); | ||
1016 | |||
1017 | ret = cpufreq_add_dev_policy(cpu, policy, sys_dev); | ||
1018 | if (ret) { | ||
1019 | if (ret > 0) | ||
1020 | /* This is a managed cpu, symlink created, | ||
1021 | exit with 0 */ | ||
1022 | ret = 0; | ||
1023 | goto err_unlock_policy; | ||
1024 | } | ||
1025 | |||
1026 | ret = cpufreq_add_dev_interface(cpu, policy, sys_dev); | ||
1027 | if (ret) | ||
1028 | goto err_out_unregister; | ||
968 | 1029 | ||
969 | unlock_policy_rwsem_write(cpu); | 1030 | unlock_policy_rwsem_write(cpu); |
970 | 1031 | ||
@@ -982,14 +1043,9 @@ err_out_unregister: | |||
982 | per_cpu(cpufreq_cpu_data, j) = NULL; | 1043 | per_cpu(cpufreq_cpu_data, j) = NULL; |
983 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | 1044 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
984 | 1045 | ||
985 | err_out_kobj_put: | ||
986 | kobject_put(&policy->kobj); | 1046 | kobject_put(&policy->kobj); |
987 | wait_for_completion(&policy->kobj_unregister); | 1047 | wait_for_completion(&policy->kobj_unregister); |
988 | 1048 | ||
989 | out_driver_exit: | ||
990 | if (cpufreq_driver->exit) | ||
991 | cpufreq_driver->exit(policy); | ||
992 | |||
993 | err_unlock_policy: | 1049 | err_unlock_policy: |
994 | unlock_policy_rwsem_write(cpu); | 1050 | unlock_policy_rwsem_write(cpu); |
995 | err_free_cpumask: | 1051 | err_free_cpumask: |
@@ -1653,8 +1709,17 @@ static int __cpufreq_set_policy(struct cpufreq_policy *data, | |||
1653 | dprintk("governor switch\n"); | 1709 | dprintk("governor switch\n"); |
1654 | 1710 | ||
1655 | /* end old governor */ | 1711 | /* end old governor */ |
1656 | if (data->governor) | 1712 | if (data->governor) { |
1713 | /* | ||
1714 | * Need to release the rwsem around governor | ||
1715 | * stop due to lock dependency between | ||
1716 | * cancel_delayed_work_sync and the read lock | ||
1717 | * taken in the delayed work handler. | ||
1718 | */ | ||
1719 | unlock_policy_rwsem_write(data->cpu); | ||
1657 | __cpufreq_governor(data, CPUFREQ_GOV_STOP); | 1720 | __cpufreq_governor(data, CPUFREQ_GOV_STOP); |
1721 | lock_policy_rwsem_write(data->cpu); | ||
1722 | } | ||
1658 | 1723 | ||
1659 | /* start new governor */ | 1724 | /* start new governor */ |
1660 | data->governor = policy->governor; | 1725 | data->governor = policy->governor; |
@@ -1884,7 +1949,11 @@ static int __init cpufreq_core_init(void) | |||
1884 | per_cpu(policy_cpu, cpu) = -1; | 1949 | per_cpu(policy_cpu, cpu) = -1; |
1885 | init_rwsem(&per_cpu(cpu_policy_rwsem, cpu)); | 1950 | init_rwsem(&per_cpu(cpu_policy_rwsem, cpu)); |
1886 | } | 1951 | } |
1952 | |||
1953 | cpufreq_global_kobject = kobject_create_and_add("cpufreq", | ||
1954 | &cpu_sysdev_class.kset.kobj); | ||
1955 | BUG_ON(!cpufreq_global_kobject); | ||
1956 | |||
1887 | return 0; | 1957 | return 0; |
1888 | } | 1958 | } |
1889 | |||
1890 | core_initcall(cpufreq_core_init); | 1959 | core_initcall(cpufreq_core_init); |
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c index d7a528c80de8..071699de50ee 100644 --- a/drivers/cpufreq/cpufreq_ondemand.c +++ b/drivers/cpufreq/cpufreq_ondemand.c | |||
@@ -55,6 +55,18 @@ static unsigned int min_sampling_rate; | |||
55 | #define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000) | 55 | #define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000) |
56 | 56 | ||
57 | static void do_dbs_timer(struct work_struct *work); | 57 | static void do_dbs_timer(struct work_struct *work); |
58 | static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | ||
59 | unsigned int event); | ||
60 | |||
61 | #ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND | ||
62 | static | ||
63 | #endif | ||
64 | struct cpufreq_governor cpufreq_gov_ondemand = { | ||
65 | .name = "ondemand", | ||
66 | .governor = cpufreq_governor_dbs, | ||
67 | .max_transition_latency = TRANSITION_LATENCY_LIMIT, | ||
68 | .owner = THIS_MODULE, | ||
69 | }; | ||
58 | 70 | ||
59 | /* Sampling types */ | 71 | /* Sampling types */ |
60 | enum {DBS_NORMAL_SAMPLE, DBS_SUB_SAMPLE}; | 72 | enum {DBS_NORMAL_SAMPLE, DBS_SUB_SAMPLE}; |
@@ -207,20 +219,23 @@ static void ondemand_powersave_bias_init(void) | |||
207 | } | 219 | } |
208 | 220 | ||
209 | /************************** sysfs interface ************************/ | 221 | /************************** sysfs interface ************************/ |
210 | static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf) | 222 | |
223 | static ssize_t show_sampling_rate_max(struct kobject *kobj, | ||
224 | struct attribute *attr, char *buf) | ||
211 | { | 225 | { |
212 | printk_once(KERN_INFO "CPUFREQ: ondemand sampling_rate_max " | 226 | printk_once(KERN_INFO "CPUFREQ: ondemand sampling_rate_max " |
213 | "sysfs file is deprecated - used by: %s\n", current->comm); | 227 | "sysfs file is deprecated - used by: %s\n", current->comm); |
214 | return sprintf(buf, "%u\n", -1U); | 228 | return sprintf(buf, "%u\n", -1U); |
215 | } | 229 | } |
216 | 230 | ||
217 | static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf) | 231 | static ssize_t show_sampling_rate_min(struct kobject *kobj, |
232 | struct attribute *attr, char *buf) | ||
218 | { | 233 | { |
219 | return sprintf(buf, "%u\n", min_sampling_rate); | 234 | return sprintf(buf, "%u\n", min_sampling_rate); |
220 | } | 235 | } |
221 | 236 | ||
222 | #define define_one_ro(_name) \ | 237 | #define define_one_ro(_name) \ |
223 | static struct freq_attr _name = \ | 238 | static struct global_attr _name = \ |
224 | __ATTR(_name, 0444, show_##_name, NULL) | 239 | __ATTR(_name, 0444, show_##_name, NULL) |
225 | 240 | ||
226 | define_one_ro(sampling_rate_max); | 241 | define_one_ro(sampling_rate_max); |
@@ -229,7 +244,7 @@ define_one_ro(sampling_rate_min); | |||
229 | /* cpufreq_ondemand Governor Tunables */ | 244 | /* cpufreq_ondemand Governor Tunables */ |
230 | #define show_one(file_name, object) \ | 245 | #define show_one(file_name, object) \ |
231 | static ssize_t show_##file_name \ | 246 | static ssize_t show_##file_name \ |
232 | (struct cpufreq_policy *unused, char *buf) \ | 247 | (struct kobject *kobj, struct attribute *attr, char *buf) \ |
233 | { \ | 248 | { \ |
234 | return sprintf(buf, "%u\n", dbs_tuners_ins.object); \ | 249 | return sprintf(buf, "%u\n", dbs_tuners_ins.object); \ |
235 | } | 250 | } |
@@ -238,8 +253,38 @@ show_one(up_threshold, up_threshold); | |||
238 | show_one(ignore_nice_load, ignore_nice); | 253 | show_one(ignore_nice_load, ignore_nice); |
239 | show_one(powersave_bias, powersave_bias); | 254 | show_one(powersave_bias, powersave_bias); |
240 | 255 | ||
241 | static ssize_t store_sampling_rate(struct cpufreq_policy *unused, | 256 | /*** delete after deprecation time ***/ |
242 | const char *buf, size_t count) | 257 | |
258 | #define DEPRECATION_MSG(file_name) \ | ||
259 | printk_once(KERN_INFO "CPUFREQ: Per core ondemand sysfs " \ | ||
260 | "interface is deprecated - " #file_name "\n"); | ||
261 | |||
262 | #define show_one_old(file_name) \ | ||
263 | static ssize_t show_##file_name##_old \ | ||
264 | (struct cpufreq_policy *unused, char *buf) \ | ||
265 | { \ | ||
266 | printk_once(KERN_INFO "CPUFREQ: Per core ondemand sysfs " \ | ||
267 | "interface is deprecated - " #file_name "\n"); \ | ||
268 | return show_##file_name(NULL, NULL, buf); \ | ||
269 | } | ||
270 | show_one_old(sampling_rate); | ||
271 | show_one_old(up_threshold); | ||
272 | show_one_old(ignore_nice_load); | ||
273 | show_one_old(powersave_bias); | ||
274 | show_one_old(sampling_rate_min); | ||
275 | show_one_old(sampling_rate_max); | ||
276 | |||
277 | #define define_one_ro_old(object, _name) \ | ||
278 | static struct freq_attr object = \ | ||
279 | __ATTR(_name, 0444, show_##_name##_old, NULL) | ||
280 | |||
281 | define_one_ro_old(sampling_rate_min_old, sampling_rate_min); | ||
282 | define_one_ro_old(sampling_rate_max_old, sampling_rate_max); | ||
283 | |||
284 | /*** delete after deprecation time ***/ | ||
285 | |||
286 | static ssize_t store_sampling_rate(struct kobject *a, struct attribute *b, | ||
287 | const char *buf, size_t count) | ||
243 | { | 288 | { |
244 | unsigned int input; | 289 | unsigned int input; |
245 | int ret; | 290 | int ret; |
@@ -254,8 +299,8 @@ static ssize_t store_sampling_rate(struct cpufreq_policy *unused, | |||
254 | return count; | 299 | return count; |
255 | } | 300 | } |
256 | 301 | ||
257 | static ssize_t store_up_threshold(struct cpufreq_policy *unused, | 302 | static ssize_t store_up_threshold(struct kobject *a, struct attribute *b, |
258 | const char *buf, size_t count) | 303 | const char *buf, size_t count) |
259 | { | 304 | { |
260 | unsigned int input; | 305 | unsigned int input; |
261 | int ret; | 306 | int ret; |
@@ -273,8 +318,8 @@ static ssize_t store_up_threshold(struct cpufreq_policy *unused, | |||
273 | return count; | 318 | return count; |
274 | } | 319 | } |
275 | 320 | ||
276 | static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy, | 321 | static ssize_t store_ignore_nice_load(struct kobject *a, struct attribute *b, |
277 | const char *buf, size_t count) | 322 | const char *buf, size_t count) |
278 | { | 323 | { |
279 | unsigned int input; | 324 | unsigned int input; |
280 | int ret; | 325 | int ret; |
@@ -310,8 +355,8 @@ static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy, | |||
310 | return count; | 355 | return count; |
311 | } | 356 | } |
312 | 357 | ||
313 | static ssize_t store_powersave_bias(struct cpufreq_policy *unused, | 358 | static ssize_t store_powersave_bias(struct kobject *a, struct attribute *b, |
314 | const char *buf, size_t count) | 359 | const char *buf, size_t count) |
315 | { | 360 | { |
316 | unsigned int input; | 361 | unsigned int input; |
317 | int ret; | 362 | int ret; |
@@ -332,7 +377,7 @@ static ssize_t store_powersave_bias(struct cpufreq_policy *unused, | |||
332 | } | 377 | } |
333 | 378 | ||
334 | #define define_one_rw(_name) \ | 379 | #define define_one_rw(_name) \ |
335 | static struct freq_attr _name = \ | 380 | static struct global_attr _name = \ |
336 | __ATTR(_name, 0644, show_##_name, store_##_name) | 381 | __ATTR(_name, 0644, show_##_name, store_##_name) |
337 | 382 | ||
338 | define_one_rw(sampling_rate); | 383 | define_one_rw(sampling_rate); |
@@ -355,6 +400,47 @@ static struct attribute_group dbs_attr_group = { | |||
355 | .name = "ondemand", | 400 | .name = "ondemand", |
356 | }; | 401 | }; |
357 | 402 | ||
403 | /*** delete after deprecation time ***/ | ||
404 | |||
405 | #define write_one_old(file_name) \ | ||
406 | static ssize_t store_##file_name##_old \ | ||
407 | (struct cpufreq_policy *unused, const char *buf, size_t count) \ | ||
408 | { \ | ||
409 | printk_once(KERN_INFO "CPUFREQ: Per core ondemand sysfs " \ | ||
410 | "interface is deprecated - " #file_name "\n"); \ | ||
411 | return store_##file_name(NULL, NULL, buf, count); \ | ||
412 | } | ||
413 | write_one_old(sampling_rate); | ||
414 | write_one_old(up_threshold); | ||
415 | write_one_old(ignore_nice_load); | ||
416 | write_one_old(powersave_bias); | ||
417 | |||
418 | #define define_one_rw_old(object, _name) \ | ||
419 | static struct freq_attr object = \ | ||
420 | __ATTR(_name, 0644, show_##_name##_old, store_##_name##_old) | ||
421 | |||
422 | define_one_rw_old(sampling_rate_old, sampling_rate); | ||
423 | define_one_rw_old(up_threshold_old, up_threshold); | ||
424 | define_one_rw_old(ignore_nice_load_old, ignore_nice_load); | ||
425 | define_one_rw_old(powersave_bias_old, powersave_bias); | ||
426 | |||
427 | static struct attribute *dbs_attributes_old[] = { | ||
428 | &sampling_rate_max_old.attr, | ||
429 | &sampling_rate_min_old.attr, | ||
430 | &sampling_rate_old.attr, | ||
431 | &up_threshold_old.attr, | ||
432 | &ignore_nice_load_old.attr, | ||
433 | &powersave_bias_old.attr, | ||
434 | NULL | ||
435 | }; | ||
436 | |||
437 | static struct attribute_group dbs_attr_group_old = { | ||
438 | .attrs = dbs_attributes_old, | ||
439 | .name = "ondemand", | ||
440 | }; | ||
441 | |||
442 | /*** delete after deprecation time ***/ | ||
443 | |||
358 | /************************** sysfs end ************************/ | 444 | /************************** sysfs end ************************/ |
359 | 445 | ||
360 | static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info) | 446 | static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info) |
@@ -545,7 +631,7 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
545 | 631 | ||
546 | mutex_lock(&dbs_mutex); | 632 | mutex_lock(&dbs_mutex); |
547 | 633 | ||
548 | rc = sysfs_create_group(&policy->kobj, &dbs_attr_group); | 634 | rc = sysfs_create_group(&policy->kobj, &dbs_attr_group_old); |
549 | if (rc) { | 635 | if (rc) { |
550 | mutex_unlock(&dbs_mutex); | 636 | mutex_unlock(&dbs_mutex); |
551 | return rc; | 637 | return rc; |
@@ -566,13 +652,20 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
566 | } | 652 | } |
567 | this_dbs_info->cpu = cpu; | 653 | this_dbs_info->cpu = cpu; |
568 | ondemand_powersave_bias_init_cpu(cpu); | 654 | ondemand_powersave_bias_init_cpu(cpu); |
569 | mutex_init(&this_dbs_info->timer_mutex); | ||
570 | /* | 655 | /* |
571 | * Start the timerschedule work, when this governor | 656 | * Start the timerschedule work, when this governor |
572 | * is used for first time | 657 | * is used for first time |
573 | */ | 658 | */ |
574 | if (dbs_enable == 1) { | 659 | if (dbs_enable == 1) { |
575 | unsigned int latency; | 660 | unsigned int latency; |
661 | |||
662 | rc = sysfs_create_group(cpufreq_global_kobject, | ||
663 | &dbs_attr_group); | ||
664 | if (rc) { | ||
665 | mutex_unlock(&dbs_mutex); | ||
666 | return rc; | ||
667 | } | ||
668 | |||
576 | /* policy latency is in nS. Convert it to uS first */ | 669 | /* policy latency is in nS. Convert it to uS first */ |
577 | latency = policy->cpuinfo.transition_latency / 1000; | 670 | latency = policy->cpuinfo.transition_latency / 1000; |
578 | if (latency == 0) | 671 | if (latency == 0) |
@@ -586,6 +679,7 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
586 | } | 679 | } |
587 | mutex_unlock(&dbs_mutex); | 680 | mutex_unlock(&dbs_mutex); |
588 | 681 | ||
682 | mutex_init(&this_dbs_info->timer_mutex); | ||
589 | dbs_timer_init(this_dbs_info); | 683 | dbs_timer_init(this_dbs_info); |
590 | break; | 684 | break; |
591 | 685 | ||
@@ -593,10 +687,13 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
593 | dbs_timer_exit(this_dbs_info); | 687 | dbs_timer_exit(this_dbs_info); |
594 | 688 | ||
595 | mutex_lock(&dbs_mutex); | 689 | mutex_lock(&dbs_mutex); |
596 | sysfs_remove_group(&policy->kobj, &dbs_attr_group); | 690 | sysfs_remove_group(&policy->kobj, &dbs_attr_group_old); |
597 | mutex_destroy(&this_dbs_info->timer_mutex); | 691 | mutex_destroy(&this_dbs_info->timer_mutex); |
598 | dbs_enable--; | 692 | dbs_enable--; |
599 | mutex_unlock(&dbs_mutex); | 693 | mutex_unlock(&dbs_mutex); |
694 | if (!dbs_enable) | ||
695 | sysfs_remove_group(cpufreq_global_kobject, | ||
696 | &dbs_attr_group); | ||
600 | 697 | ||
601 | break; | 698 | break; |
602 | 699 | ||
@@ -614,16 +711,6 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
614 | return 0; | 711 | return 0; |
615 | } | 712 | } |
616 | 713 | ||
617 | #ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND | ||
618 | static | ||
619 | #endif | ||
620 | struct cpufreq_governor cpufreq_gov_ondemand = { | ||
621 | .name = "ondemand", | ||
622 | .governor = cpufreq_governor_dbs, | ||
623 | .max_transition_latency = TRANSITION_LATENCY_LIMIT, | ||
624 | .owner = THIS_MODULE, | ||
625 | }; | ||
626 | |||
627 | static int __init cpufreq_gov_dbs_init(void) | 714 | static int __init cpufreq_gov_dbs_init(void) |
628 | { | 715 | { |
629 | int err; | 716 | int err; |
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 96dda81c9228..6b4c484a699a 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig | |||
@@ -155,6 +155,13 @@ config GPIO_TWL4030 | |||
155 | Say yes here to access the GPIO signals of various multi-function | 155 | Say yes here to access the GPIO signals of various multi-function |
156 | power management chips from Texas Instruments. | 156 | power management chips from Texas Instruments. |
157 | 157 | ||
158 | config GPIO_WM831X | ||
159 | tristate "WM831x GPIOs" | ||
160 | depends on MFD_WM831X | ||
161 | help | ||
162 | Say yes here to access the GPIO signals of WM831x power management | ||
163 | chips from Wolfson Microelectronics. | ||
164 | |||
158 | comment "PCI GPIO expanders:" | 165 | comment "PCI GPIO expanders:" |
159 | 166 | ||
160 | config GPIO_BT8XX | 167 | config GPIO_BT8XX |
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index 9244c6fcd8be..ea7c745f26a8 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile | |||
@@ -14,3 +14,4 @@ obj-$(CONFIG_GPIO_TWL4030) += twl4030-gpio.o | |||
14 | obj-$(CONFIG_GPIO_XILINX) += xilinx_gpio.o | 14 | obj-$(CONFIG_GPIO_XILINX) += xilinx_gpio.o |
15 | obj-$(CONFIG_GPIO_BT8XX) += bt8xxgpio.o | 15 | obj-$(CONFIG_GPIO_BT8XX) += bt8xxgpio.o |
16 | obj-$(CONFIG_GPIO_VR41XX) += vr41xx_giu.o | 16 | obj-$(CONFIG_GPIO_VR41XX) += vr41xx_giu.o |
17 | obj-$(CONFIG_GPIO_WM831X) += wm831x-gpio.o | ||
diff --git a/drivers/gpio/wm831x-gpio.c b/drivers/gpio/wm831x-gpio.c new file mode 100644 index 000000000000..f9c09a54ec7f --- /dev/null +++ b/drivers/gpio/wm831x-gpio.c | |||
@@ -0,0 +1,252 @@ | |||
1 | /* | ||
2 | * wm831x-gpio.c -- gpiolib support for Wolfson WM831x PMICs | ||
3 | * | ||
4 | * Copyright 2009 Wolfson Microelectronics PLC. | ||
5 | * | ||
6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/module.h> | ||
17 | #include <linux/gpio.h> | ||
18 | #include <linux/mfd/core.h> | ||
19 | #include <linux/platform_device.h> | ||
20 | #include <linux/seq_file.h> | ||
21 | |||
22 | #include <linux/mfd/wm831x/core.h> | ||
23 | #include <linux/mfd/wm831x/pdata.h> | ||
24 | #include <linux/mfd/wm831x/gpio.h> | ||
25 | |||
26 | #define WM831X_GPIO_MAX 16 | ||
27 | |||
28 | struct wm831x_gpio { | ||
29 | struct wm831x *wm831x; | ||
30 | struct gpio_chip gpio_chip; | ||
31 | }; | ||
32 | |||
33 | static inline struct wm831x_gpio *to_wm831x_gpio(struct gpio_chip *chip) | ||
34 | { | ||
35 | return container_of(chip, struct wm831x_gpio, gpio_chip); | ||
36 | } | ||
37 | |||
38 | static int wm831x_gpio_direction_in(struct gpio_chip *chip, unsigned offset) | ||
39 | { | ||
40 | struct wm831x_gpio *wm831x_gpio = to_wm831x_gpio(chip); | ||
41 | struct wm831x *wm831x = wm831x_gpio->wm831x; | ||
42 | |||
43 | return wm831x_set_bits(wm831x, WM831X_GPIO1_CONTROL + offset, | ||
44 | WM831X_GPN_DIR | WM831X_GPN_TRI, | ||
45 | WM831X_GPN_DIR); | ||
46 | } | ||
47 | |||
48 | static int wm831x_gpio_get(struct gpio_chip *chip, unsigned offset) | ||
49 | { | ||
50 | struct wm831x_gpio *wm831x_gpio = to_wm831x_gpio(chip); | ||
51 | struct wm831x *wm831x = wm831x_gpio->wm831x; | ||
52 | int ret; | ||
53 | |||
54 | ret = wm831x_reg_read(wm831x, WM831X_GPIO_LEVEL); | ||
55 | if (ret < 0) | ||
56 | return ret; | ||
57 | |||
58 | if (ret & 1 << offset) | ||
59 | return 1; | ||
60 | else | ||
61 | return 0; | ||
62 | } | ||
63 | |||
64 | static int wm831x_gpio_direction_out(struct gpio_chip *chip, | ||
65 | unsigned offset, int value) | ||
66 | { | ||
67 | struct wm831x_gpio *wm831x_gpio = to_wm831x_gpio(chip); | ||
68 | struct wm831x *wm831x = wm831x_gpio->wm831x; | ||
69 | |||
70 | return wm831x_set_bits(wm831x, WM831X_GPIO1_CONTROL + offset, | ||
71 | WM831X_GPN_DIR | WM831X_GPN_TRI, 0); | ||
72 | } | ||
73 | |||
74 | static void wm831x_gpio_set(struct gpio_chip *chip, unsigned offset, int value) | ||
75 | { | ||
76 | struct wm831x_gpio *wm831x_gpio = to_wm831x_gpio(chip); | ||
77 | struct wm831x *wm831x = wm831x_gpio->wm831x; | ||
78 | |||
79 | wm831x_set_bits(wm831x, WM831X_GPIO_LEVEL, 1 << offset, | ||
80 | value << offset); | ||
81 | } | ||
82 | |||
83 | #ifdef CONFIG_DEBUG_FS | ||
84 | static void wm831x_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip) | ||
85 | { | ||
86 | struct wm831x_gpio *wm831x_gpio = to_wm831x_gpio(chip); | ||
87 | struct wm831x *wm831x = wm831x_gpio->wm831x; | ||
88 | int i; | ||
89 | |||
90 | for (i = 0; i < chip->ngpio; i++) { | ||
91 | int gpio = i + chip->base; | ||
92 | int reg; | ||
93 | const char *label, *pull, *powerdomain; | ||
94 | |||
95 | /* We report the GPIO even if it's not requested since | ||
96 | * we're also reporting things like alternate | ||
97 | * functions which apply even when the GPIO is not in | ||
98 | * use as a GPIO. | ||
99 | */ | ||
100 | label = gpiochip_is_requested(chip, i); | ||
101 | if (!label) | ||
102 | label = "Unrequested"; | ||
103 | |||
104 | seq_printf(s, " gpio-%-3d (%-20.20s) ", gpio, label); | ||
105 | |||
106 | reg = wm831x_reg_read(wm831x, WM831X_GPIO1_CONTROL + i); | ||
107 | if (reg < 0) { | ||
108 | dev_err(wm831x->dev, | ||
109 | "GPIO control %d read failed: %d\n", | ||
110 | gpio, reg); | ||
111 | seq_printf(s, "\n"); | ||
112 | continue; | ||
113 | } | ||
114 | |||
115 | switch (reg & WM831X_GPN_PULL_MASK) { | ||
116 | case WM831X_GPIO_PULL_NONE: | ||
117 | pull = "nopull"; | ||
118 | break; | ||
119 | case WM831X_GPIO_PULL_DOWN: | ||
120 | pull = "pulldown"; | ||
121 | break; | ||
122 | case WM831X_GPIO_PULL_UP: | ||
123 | pull = "pullup"; | ||
124 | default: | ||
125 | pull = "INVALID PULL"; | ||
126 | break; | ||
127 | } | ||
128 | |||
129 | switch (i + 1) { | ||
130 | case 1 ... 3: | ||
131 | case 7 ... 9: | ||
132 | if (reg & WM831X_GPN_PWR_DOM) | ||
133 | powerdomain = "VPMIC"; | ||
134 | else | ||
135 | powerdomain = "DBVDD"; | ||
136 | break; | ||
137 | |||
138 | case 4 ... 6: | ||
139 | case 10 ... 12: | ||
140 | if (reg & WM831X_GPN_PWR_DOM) | ||
141 | powerdomain = "SYSVDD"; | ||
142 | else | ||
143 | powerdomain = "DBVDD"; | ||
144 | break; | ||
145 | |||
146 | case 13 ... 16: | ||
147 | powerdomain = "TPVDD"; | ||
148 | break; | ||
149 | |||
150 | default: | ||
151 | BUG(); | ||
152 | break; | ||
153 | } | ||
154 | |||
155 | seq_printf(s, " %s %s %s %s%s\n" | ||
156 | " %s%s (0x%4x)\n", | ||
157 | reg & WM831X_GPN_DIR ? "in" : "out", | ||
158 | wm831x_gpio_get(chip, i) ? "high" : "low", | ||
159 | pull, | ||
160 | powerdomain, | ||
161 | reg & WM831X_GPN_POL ? " inverted" : "", | ||
162 | reg & WM831X_GPN_OD ? "open-drain" : "CMOS", | ||
163 | reg & WM831X_GPN_TRI ? " tristated" : "", | ||
164 | reg); | ||
165 | } | ||
166 | } | ||
167 | #else | ||
168 | #define wm831x_gpio_dbg_show NULL | ||
169 | #endif | ||
170 | |||
171 | static struct gpio_chip template_chip = { | ||
172 | .label = "wm831x", | ||
173 | .owner = THIS_MODULE, | ||
174 | .direction_input = wm831x_gpio_direction_in, | ||
175 | .get = wm831x_gpio_get, | ||
176 | .direction_output = wm831x_gpio_direction_out, | ||
177 | .set = wm831x_gpio_set, | ||
178 | .dbg_show = wm831x_gpio_dbg_show, | ||
179 | .can_sleep = 1, | ||
180 | }; | ||
181 | |||
182 | static int __devinit wm831x_gpio_probe(struct platform_device *pdev) | ||
183 | { | ||
184 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
185 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | ||
186 | struct wm831x_gpio *wm831x_gpio; | ||
187 | int ret; | ||
188 | |||
189 | wm831x_gpio = kzalloc(sizeof(*wm831x_gpio), GFP_KERNEL); | ||
190 | if (wm831x_gpio == NULL) | ||
191 | return -ENOMEM; | ||
192 | |||
193 | wm831x_gpio->wm831x = wm831x; | ||
194 | wm831x_gpio->gpio_chip = template_chip; | ||
195 | wm831x_gpio->gpio_chip.ngpio = WM831X_GPIO_MAX; | ||
196 | wm831x_gpio->gpio_chip.dev = &pdev->dev; | ||
197 | if (pdata && pdata->gpio_base) | ||
198 | wm831x_gpio->gpio_chip.base = pdata->gpio_base; | ||
199 | else | ||
200 | wm831x_gpio->gpio_chip.base = -1; | ||
201 | |||
202 | ret = gpiochip_add(&wm831x_gpio->gpio_chip); | ||
203 | if (ret < 0) { | ||
204 | dev_err(&pdev->dev, "Could not register gpiochip, %d\n", | ||
205 | ret); | ||
206 | goto err; | ||
207 | } | ||
208 | |||
209 | platform_set_drvdata(pdev, wm831x_gpio); | ||
210 | |||
211 | return ret; | ||
212 | |||
213 | err: | ||
214 | kfree(wm831x_gpio); | ||
215 | return ret; | ||
216 | } | ||
217 | |||
218 | static int __devexit wm831x_gpio_remove(struct platform_device *pdev) | ||
219 | { | ||
220 | struct wm831x_gpio *wm831x_gpio = platform_get_drvdata(pdev); | ||
221 | int ret; | ||
222 | |||
223 | ret = gpiochip_remove(&wm831x_gpio->gpio_chip); | ||
224 | if (ret == 0) | ||
225 | kfree(wm831x_gpio); | ||
226 | |||
227 | return ret; | ||
228 | } | ||
229 | |||
230 | static struct platform_driver wm831x_gpio_driver = { | ||
231 | .driver.name = "wm831x-gpio", | ||
232 | .driver.owner = THIS_MODULE, | ||
233 | .probe = wm831x_gpio_probe, | ||
234 | .remove = __devexit_p(wm831x_gpio_remove), | ||
235 | }; | ||
236 | |||
237 | static int __init wm831x_gpio_init(void) | ||
238 | { | ||
239 | return platform_driver_register(&wm831x_gpio_driver); | ||
240 | } | ||
241 | subsys_initcall(wm831x_gpio_init); | ||
242 | |||
243 | static void __exit wm831x_gpio_exit(void) | ||
244 | { | ||
245 | platform_driver_unregister(&wm831x_gpio_driver); | ||
246 | } | ||
247 | module_exit(wm831x_gpio_exit); | ||
248 | |||
249 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); | ||
250 | MODULE_DESCRIPTION("GPIO interface for WM831x PMICs"); | ||
251 | MODULE_LICENSE("GPL"); | ||
252 | MODULE_ALIAS("platform:wm831x-gpio"); | ||
diff --git a/drivers/gpu/drm/drm_sysfs.c b/drivers/gpu/drm/drm_sysfs.c index f7a615b80c70..5301f226cb1c 100644 --- a/drivers/gpu/drm/drm_sysfs.c +++ b/drivers/gpu/drm/drm_sysfs.c | |||
@@ -76,7 +76,7 @@ static ssize_t version_show(struct class *dev, char *buf) | |||
76 | CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE); | 76 | CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE); |
77 | } | 77 | } |
78 | 78 | ||
79 | static char *drm_nodename(struct device *dev) | 79 | static char *drm_devnode(struct device *dev, mode_t *mode) |
80 | { | 80 | { |
81 | return kasprintf(GFP_KERNEL, "dri/%s", dev_name(dev)); | 81 | return kasprintf(GFP_KERNEL, "dri/%s", dev_name(dev)); |
82 | } | 82 | } |
@@ -112,7 +112,7 @@ struct class *drm_sysfs_create(struct module *owner, char *name) | |||
112 | if (err) | 112 | if (err) |
113 | goto err_out_class; | 113 | goto err_out_class; |
114 | 114 | ||
115 | class->nodename = drm_nodename; | 115 | class->devnode = drm_devnode; |
116 | 116 | ||
117 | return class; | 117 | return class; |
118 | 118 | ||
diff --git a/drivers/hid/usbhid/hiddev.c b/drivers/hid/usbhid/hiddev.c index 4d1dc0cf1401..8b6ee247bfe4 100644 --- a/drivers/hid/usbhid/hiddev.c +++ b/drivers/hid/usbhid/hiddev.c | |||
@@ -852,14 +852,14 @@ static const struct file_operations hiddev_fops = { | |||
852 | #endif | 852 | #endif |
853 | }; | 853 | }; |
854 | 854 | ||
855 | static char *hiddev_nodename(struct device *dev) | 855 | static char *hiddev_devnode(struct device *dev, mode_t *mode) |
856 | { | 856 | { |
857 | return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev)); | 857 | return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev)); |
858 | } | 858 | } |
859 | 859 | ||
860 | static struct usb_class_driver hiddev_class = { | 860 | static struct usb_class_driver hiddev_class = { |
861 | .name = "hiddev%d", | 861 | .name = "hiddev%d", |
862 | .nodename = hiddev_nodename, | 862 | .devnode = hiddev_devnode, |
863 | .fops = &hiddev_fops, | 863 | .fops = &hiddev_fops, |
864 | .minor_base = HIDDEV_MINOR_BASE, | 864 | .minor_base = HIDDEV_MINOR_BASE, |
865 | }; | 865 | }; |
diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig index 461abb1e273a..ed7711d11ae8 100644 --- a/drivers/hwmon/Kconfig +++ b/drivers/hwmon/Kconfig | |||
@@ -946,6 +946,27 @@ config SENSORS_W83627EHF | |||
946 | This driver can also be built as a module. If so, the module | 946 | This driver can also be built as a module. If so, the module |
947 | will be called w83627ehf. | 947 | will be called w83627ehf. |
948 | 948 | ||
949 | config SENSORS_WM831X | ||
950 | tristate "WM831x PMICs" | ||
951 | depends on MFD_WM831X | ||
952 | help | ||
953 | If you say yes here you get support for the hardware | ||
954 | monitoring functionality of the Wolfson Microelectronics | ||
955 | WM831x series of PMICs. | ||
956 | |||
957 | This driver can also be built as a module. If so, the module | ||
958 | will be called wm831x-hwmon. | ||
959 | |||
960 | config SENSORS_WM8350 | ||
961 | tristate "Wolfson Microelectronics WM835x" | ||
962 | depends on MFD_WM8350 | ||
963 | help | ||
964 | If you say yes here you get support for the hardware | ||
965 | monitoring features of the WM835x series of PMICs. | ||
966 | |||
967 | This driver can also be built as a module. If so, the module | ||
968 | will be called wm8350-hwmon. | ||
969 | |||
949 | config SENSORS_ULTRA45 | 970 | config SENSORS_ULTRA45 |
950 | tristate "Sun Ultra45 PIC16F747" | 971 | tristate "Sun Ultra45 PIC16F747" |
951 | depends on SPARC64 | 972 | depends on SPARC64 |
diff --git a/drivers/hwmon/Makefile b/drivers/hwmon/Makefile index 2e547881bc0a..bcf73a9bb619 100644 --- a/drivers/hwmon/Makefile +++ b/drivers/hwmon/Makefile | |||
@@ -93,6 +93,8 @@ obj-$(CONFIG_SENSORS_VT8231) += vt8231.o | |||
93 | obj-$(CONFIG_SENSORS_W83627EHF) += w83627ehf.o | 93 | obj-$(CONFIG_SENSORS_W83627EHF) += w83627ehf.o |
94 | obj-$(CONFIG_SENSORS_W83L785TS) += w83l785ts.o | 94 | obj-$(CONFIG_SENSORS_W83L785TS) += w83l785ts.o |
95 | obj-$(CONFIG_SENSORS_W83L786NG) += w83l786ng.o | 95 | obj-$(CONFIG_SENSORS_W83L786NG) += w83l786ng.o |
96 | obj-$(CONFIG_SENSORS_WM831X) += wm831x-hwmon.o | ||
97 | obj-$(CONFIG_SENSORS_WM8350) += wm8350-hwmon.o | ||
96 | 98 | ||
97 | ifeq ($(CONFIG_HWMON_DEBUG_CHIP),y) | 99 | ifeq ($(CONFIG_HWMON_DEBUG_CHIP),y) |
98 | EXTRA_CFLAGS += -DDEBUG | 100 | EXTRA_CFLAGS += -DDEBUG |
diff --git a/drivers/hwmon/wm831x-hwmon.c b/drivers/hwmon/wm831x-hwmon.c new file mode 100644 index 000000000000..c16e9e74c356 --- /dev/null +++ b/drivers/hwmon/wm831x-hwmon.c | |||
@@ -0,0 +1,226 @@ | |||
1 | /* | ||
2 | * drivers/hwmon/wm831x-hwmon.c - Wolfson Microelectronics WM831x PMIC | ||
3 | * hardware monitoring features. | ||
4 | * | ||
5 | * Copyright (C) 2009 Wolfson Microelectronics plc | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License v2 as published by the | ||
9 | * Free Software Foundation. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
14 | * more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License along with | ||
17 | * this program; if not, write to the Free Software Foundation, Inc., | ||
18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA | ||
19 | */ | ||
20 | |||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/module.h> | ||
23 | #include <linux/platform_device.h> | ||
24 | #include <linux/err.h> | ||
25 | #include <linux/hwmon.h> | ||
26 | #include <linux/hwmon-sysfs.h> | ||
27 | |||
28 | #include <linux/mfd/wm831x/core.h> | ||
29 | #include <linux/mfd/wm831x/auxadc.h> | ||
30 | |||
31 | struct wm831x_hwmon { | ||
32 | struct wm831x *wm831x; | ||
33 | struct device *classdev; | ||
34 | }; | ||
35 | |||
36 | static ssize_t show_name(struct device *dev, | ||
37 | struct device_attribute *attr, char *buf) | ||
38 | { | ||
39 | return sprintf(buf, "wm831x\n"); | ||
40 | } | ||
41 | |||
42 | static const char *input_names[] = { | ||
43 | [WM831X_AUX_SYSVDD] = "SYSVDD", | ||
44 | [WM831X_AUX_USB] = "USB", | ||
45 | [WM831X_AUX_BKUP_BATT] = "Backup battery", | ||
46 | [WM831X_AUX_BATT] = "Battery", | ||
47 | [WM831X_AUX_WALL] = "WALL", | ||
48 | [WM831X_AUX_CHIP_TEMP] = "PMIC", | ||
49 | [WM831X_AUX_BATT_TEMP] = "Battery", | ||
50 | }; | ||
51 | |||
52 | |||
53 | static ssize_t show_voltage(struct device *dev, | ||
54 | struct device_attribute *attr, char *buf) | ||
55 | { | ||
56 | struct wm831x_hwmon *hwmon = dev_get_drvdata(dev); | ||
57 | int channel = to_sensor_dev_attr(attr)->index; | ||
58 | int ret; | ||
59 | |||
60 | ret = wm831x_auxadc_read_uv(hwmon->wm831x, channel); | ||
61 | if (ret < 0) | ||
62 | return ret; | ||
63 | |||
64 | return sprintf(buf, "%d\n", DIV_ROUND_CLOSEST(ret, 1000)); | ||
65 | } | ||
66 | |||
67 | static ssize_t show_chip_temp(struct device *dev, | ||
68 | struct device_attribute *attr, char *buf) | ||
69 | { | ||
70 | struct wm831x_hwmon *hwmon = dev_get_drvdata(dev); | ||
71 | int channel = to_sensor_dev_attr(attr)->index; | ||
72 | int ret; | ||
73 | |||
74 | ret = wm831x_auxadc_read(hwmon->wm831x, channel); | ||
75 | if (ret < 0) | ||
76 | return ret; | ||
77 | |||
78 | /* Degrees celsius = (512.18-ret) / 1.0983 */ | ||
79 | ret = 512180 - (ret * 1000); | ||
80 | ret = DIV_ROUND_CLOSEST(ret * 10000, 10983); | ||
81 | |||
82 | return sprintf(buf, "%d\n", ret); | ||
83 | } | ||
84 | |||
85 | static ssize_t show_label(struct device *dev, | ||
86 | struct device_attribute *attr, char *buf) | ||
87 | { | ||
88 | int channel = to_sensor_dev_attr(attr)->index; | ||
89 | |||
90 | return sprintf(buf, "%s\n", input_names[channel]); | ||
91 | } | ||
92 | |||
93 | #define WM831X_VOLTAGE(id, name) \ | ||
94 | static SENSOR_DEVICE_ATTR(in##id##_input, S_IRUGO, show_voltage, \ | ||
95 | NULL, name) | ||
96 | |||
97 | #define WM831X_NAMED_VOLTAGE(id, name) \ | ||
98 | WM831X_VOLTAGE(id, name); \ | ||
99 | static SENSOR_DEVICE_ATTR(in##id##_label, S_IRUGO, show_label, \ | ||
100 | NULL, name) | ||
101 | |||
102 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); | ||
103 | |||
104 | WM831X_VOLTAGE(0, WM831X_AUX_AUX1); | ||
105 | WM831X_VOLTAGE(1, WM831X_AUX_AUX2); | ||
106 | WM831X_VOLTAGE(2, WM831X_AUX_AUX3); | ||
107 | WM831X_VOLTAGE(3, WM831X_AUX_AUX4); | ||
108 | |||
109 | WM831X_NAMED_VOLTAGE(4, WM831X_AUX_SYSVDD); | ||
110 | WM831X_NAMED_VOLTAGE(5, WM831X_AUX_USB); | ||
111 | WM831X_NAMED_VOLTAGE(6, WM831X_AUX_BATT); | ||
112 | WM831X_NAMED_VOLTAGE(7, WM831X_AUX_WALL); | ||
113 | WM831X_NAMED_VOLTAGE(8, WM831X_AUX_BKUP_BATT); | ||
114 | |||
115 | static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_chip_temp, NULL, | ||
116 | WM831X_AUX_CHIP_TEMP); | ||
117 | static SENSOR_DEVICE_ATTR(temp1_label, S_IRUGO, show_label, NULL, | ||
118 | WM831X_AUX_CHIP_TEMP); | ||
119 | /* Report as a voltage since conversion depends on external components | ||
120 | * and that's what the ABI wants. */ | ||
121 | static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_voltage, NULL, | ||
122 | WM831X_AUX_BATT_TEMP); | ||
123 | static SENSOR_DEVICE_ATTR(temp2_label, S_IRUGO, show_label, NULL, | ||
124 | WM831X_AUX_BATT_TEMP); | ||
125 | |||
126 | static struct attribute *wm831x_attributes[] = { | ||
127 | &dev_attr_name.attr, | ||
128 | |||
129 | &sensor_dev_attr_in0_input.dev_attr.attr, | ||
130 | &sensor_dev_attr_in1_input.dev_attr.attr, | ||
131 | &sensor_dev_attr_in2_input.dev_attr.attr, | ||
132 | &sensor_dev_attr_in3_input.dev_attr.attr, | ||
133 | |||
134 | &sensor_dev_attr_in4_input.dev_attr.attr, | ||
135 | &sensor_dev_attr_in4_label.dev_attr.attr, | ||
136 | &sensor_dev_attr_in5_input.dev_attr.attr, | ||
137 | &sensor_dev_attr_in5_label.dev_attr.attr, | ||
138 | &sensor_dev_attr_in6_input.dev_attr.attr, | ||
139 | &sensor_dev_attr_in6_label.dev_attr.attr, | ||
140 | &sensor_dev_attr_in7_input.dev_attr.attr, | ||
141 | &sensor_dev_attr_in7_label.dev_attr.attr, | ||
142 | &sensor_dev_attr_in8_input.dev_attr.attr, | ||
143 | &sensor_dev_attr_in8_label.dev_attr.attr, | ||
144 | |||
145 | &sensor_dev_attr_temp1_input.dev_attr.attr, | ||
146 | &sensor_dev_attr_temp1_label.dev_attr.attr, | ||
147 | &sensor_dev_attr_temp2_input.dev_attr.attr, | ||
148 | &sensor_dev_attr_temp2_label.dev_attr.attr, | ||
149 | |||
150 | NULL | ||
151 | }; | ||
152 | |||
153 | static const struct attribute_group wm831x_attr_group = { | ||
154 | .attrs = wm831x_attributes, | ||
155 | }; | ||
156 | |||
157 | static int __devinit wm831x_hwmon_probe(struct platform_device *pdev) | ||
158 | { | ||
159 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
160 | struct wm831x_hwmon *hwmon; | ||
161 | int ret; | ||
162 | |||
163 | hwmon = kzalloc(sizeof(struct wm831x_hwmon), GFP_KERNEL); | ||
164 | if (!hwmon) | ||
165 | return -ENOMEM; | ||
166 | |||
167 | hwmon->wm831x = wm831x; | ||
168 | |||
169 | ret = sysfs_create_group(&pdev->dev.kobj, &wm831x_attr_group); | ||
170 | if (ret) | ||
171 | goto err; | ||
172 | |||
173 | hwmon->classdev = hwmon_device_register(&pdev->dev); | ||
174 | if (IS_ERR(hwmon->classdev)) { | ||
175 | ret = PTR_ERR(hwmon->classdev); | ||
176 | goto err_sysfs; | ||
177 | } | ||
178 | |||
179 | platform_set_drvdata(pdev, hwmon); | ||
180 | |||
181 | return 0; | ||
182 | |||
183 | err_sysfs: | ||
184 | sysfs_remove_group(&pdev->dev.kobj, &wm831x_attr_group); | ||
185 | err: | ||
186 | kfree(hwmon); | ||
187 | return ret; | ||
188 | } | ||
189 | |||
190 | static int __devexit wm831x_hwmon_remove(struct platform_device *pdev) | ||
191 | { | ||
192 | struct wm831x_hwmon *hwmon = platform_get_drvdata(pdev); | ||
193 | |||
194 | hwmon_device_unregister(hwmon->classdev); | ||
195 | sysfs_remove_group(&pdev->dev.kobj, &wm831x_attr_group); | ||
196 | platform_set_drvdata(pdev, NULL); | ||
197 | kfree(hwmon); | ||
198 | |||
199 | return 0; | ||
200 | } | ||
201 | |||
202 | static struct platform_driver wm831x_hwmon_driver = { | ||
203 | .probe = wm831x_hwmon_probe, | ||
204 | .remove = __devexit_p(wm831x_hwmon_remove), | ||
205 | .driver = { | ||
206 | .name = "wm831x-hwmon", | ||
207 | .owner = THIS_MODULE, | ||
208 | }, | ||
209 | }; | ||
210 | |||
211 | static int __init wm831x_hwmon_init(void) | ||
212 | { | ||
213 | return platform_driver_register(&wm831x_hwmon_driver); | ||
214 | } | ||
215 | module_init(wm831x_hwmon_init); | ||
216 | |||
217 | static void __exit wm831x_hwmon_exit(void) | ||
218 | { | ||
219 | platform_driver_unregister(&wm831x_hwmon_driver); | ||
220 | } | ||
221 | module_exit(wm831x_hwmon_exit); | ||
222 | |||
223 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); | ||
224 | MODULE_DESCRIPTION("WM831x Hardware Monitoring"); | ||
225 | MODULE_LICENSE("GPL"); | ||
226 | MODULE_ALIAS("platform:wm831x-hwmon"); | ||
diff --git a/drivers/hwmon/wm8350-hwmon.c b/drivers/hwmon/wm8350-hwmon.c new file mode 100644 index 000000000000..13290595ca86 --- /dev/null +++ b/drivers/hwmon/wm8350-hwmon.c | |||
@@ -0,0 +1,151 @@ | |||
1 | /* | ||
2 | * drivers/hwmon/wm8350-hwmon.c - Wolfson Microelectronics WM8350 PMIC | ||
3 | * hardware monitoring features. | ||
4 | * | ||
5 | * Copyright (C) 2009 Wolfson Microelectronics plc | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License v2 as published by the | ||
9 | * Free Software Foundation. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
14 | * more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License along with | ||
17 | * this program; if not, write to the Free Software Foundation, Inc., | ||
18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA | ||
19 | */ | ||
20 | |||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/module.h> | ||
23 | #include <linux/err.h> | ||
24 | #include <linux/platform_device.h> | ||
25 | #include <linux/hwmon.h> | ||
26 | #include <linux/hwmon-sysfs.h> | ||
27 | |||
28 | #include <linux/mfd/wm8350/core.h> | ||
29 | #include <linux/mfd/wm8350/comparator.h> | ||
30 | |||
31 | static ssize_t show_name(struct device *dev, | ||
32 | struct device_attribute *attr, char *buf) | ||
33 | { | ||
34 | return sprintf(buf, "wm8350\n"); | ||
35 | } | ||
36 | |||
37 | static const char *input_names[] = { | ||
38 | [WM8350_AUXADC_USB] = "USB", | ||
39 | [WM8350_AUXADC_LINE] = "Line", | ||
40 | [WM8350_AUXADC_BATT] = "Battery", | ||
41 | }; | ||
42 | |||
43 | |||
44 | static ssize_t show_voltage(struct device *dev, | ||
45 | struct device_attribute *attr, char *buf) | ||
46 | { | ||
47 | struct wm8350 *wm8350 = dev_get_drvdata(dev); | ||
48 | int channel = to_sensor_dev_attr(attr)->index; | ||
49 | int val; | ||
50 | |||
51 | val = wm8350_read_auxadc(wm8350, channel, 0, 0) * WM8350_AUX_COEFF; | ||
52 | val = DIV_ROUND_CLOSEST(val, 1000); | ||
53 | |||
54 | return sprintf(buf, "%d\n", val); | ||
55 | } | ||
56 | |||
57 | static ssize_t show_label(struct device *dev, | ||
58 | struct device_attribute *attr, char *buf) | ||
59 | { | ||
60 | int channel = to_sensor_dev_attr(attr)->index; | ||
61 | |||
62 | return sprintf(buf, "%s\n", input_names[channel]); | ||
63 | } | ||
64 | |||
65 | #define WM8350_NAMED_VOLTAGE(id, name) \ | ||
66 | static SENSOR_DEVICE_ATTR(in##id##_input, S_IRUGO, show_voltage,\ | ||
67 | NULL, name); \ | ||
68 | static SENSOR_DEVICE_ATTR(in##id##_label, S_IRUGO, show_label, \ | ||
69 | NULL, name) | ||
70 | |||
71 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); | ||
72 | |||
73 | WM8350_NAMED_VOLTAGE(0, WM8350_AUXADC_USB); | ||
74 | WM8350_NAMED_VOLTAGE(1, WM8350_AUXADC_BATT); | ||
75 | WM8350_NAMED_VOLTAGE(2, WM8350_AUXADC_LINE); | ||
76 | |||
77 | static struct attribute *wm8350_attributes[] = { | ||
78 | &dev_attr_name.attr, | ||
79 | |||
80 | &sensor_dev_attr_in0_input.dev_attr.attr, | ||
81 | &sensor_dev_attr_in0_label.dev_attr.attr, | ||
82 | &sensor_dev_attr_in1_input.dev_attr.attr, | ||
83 | &sensor_dev_attr_in1_label.dev_attr.attr, | ||
84 | &sensor_dev_attr_in2_input.dev_attr.attr, | ||
85 | &sensor_dev_attr_in2_label.dev_attr.attr, | ||
86 | |||
87 | NULL, | ||
88 | }; | ||
89 | |||
90 | static const struct attribute_group wm8350_attr_group = { | ||
91 | .attrs = wm8350_attributes, | ||
92 | }; | ||
93 | |||
94 | static int __devinit wm8350_hwmon_probe(struct platform_device *pdev) | ||
95 | { | ||
96 | struct wm8350 *wm8350 = platform_get_drvdata(pdev); | ||
97 | int ret; | ||
98 | |||
99 | ret = sysfs_create_group(&pdev->dev.kobj, &wm8350_attr_group); | ||
100 | if (ret) | ||
101 | goto err; | ||
102 | |||
103 | wm8350->hwmon.classdev = hwmon_device_register(&pdev->dev); | ||
104 | if (IS_ERR(wm8350->hwmon.classdev)) { | ||
105 | ret = PTR_ERR(wm8350->hwmon.classdev); | ||
106 | goto err_group; | ||
107 | } | ||
108 | |||
109 | return 0; | ||
110 | |||
111 | err_group: | ||
112 | sysfs_remove_group(&pdev->dev.kobj, &wm8350_attr_group); | ||
113 | err: | ||
114 | return ret; | ||
115 | } | ||
116 | |||
117 | static int __devexit wm8350_hwmon_remove(struct platform_device *pdev) | ||
118 | { | ||
119 | struct wm8350 *wm8350 = platform_get_drvdata(pdev); | ||
120 | |||
121 | hwmon_device_unregister(wm8350->hwmon.classdev); | ||
122 | sysfs_remove_group(&pdev->dev.kobj, &wm8350_attr_group); | ||
123 | |||
124 | return 0; | ||
125 | } | ||
126 | |||
127 | static struct platform_driver wm8350_hwmon_driver = { | ||
128 | .probe = wm8350_hwmon_probe, | ||
129 | .remove = __devexit_p(wm8350_hwmon_remove), | ||
130 | .driver = { | ||
131 | .name = "wm8350-hwmon", | ||
132 | .owner = THIS_MODULE, | ||
133 | }, | ||
134 | }; | ||
135 | |||
136 | static int __init wm8350_hwmon_init(void) | ||
137 | { | ||
138 | return platform_driver_register(&wm8350_hwmon_driver); | ||
139 | } | ||
140 | module_init(wm8350_hwmon_init); | ||
141 | |||
142 | static void __exit wm8350_hwmon_exit(void) | ||
143 | { | ||
144 | platform_driver_unregister(&wm8350_hwmon_driver); | ||
145 | } | ||
146 | module_exit(wm8350_hwmon_exit); | ||
147 | |||
148 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); | ||
149 | MODULE_DESCRIPTION("WM8350 Hardware Monitoring"); | ||
150 | MODULE_LICENSE("GPL"); | ||
151 | MODULE_ALIAS("platform:wm8350-hwmon"); | ||
diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c index 0b486a63460d..4afba3ec2a61 100644 --- a/drivers/i2c/busses/i2c-imx.c +++ b/drivers/i2c/busses/i2c-imx.c | |||
@@ -609,13 +609,12 @@ static int __init i2c_adap_imx_init(void) | |||
609 | { | 609 | { |
610 | return platform_driver_probe(&i2c_imx_driver, i2c_imx_probe); | 610 | return platform_driver_probe(&i2c_imx_driver, i2c_imx_probe); |
611 | } | 611 | } |
612 | subsys_initcall(i2c_adap_imx_init); | ||
612 | 613 | ||
613 | static void __exit i2c_adap_imx_exit(void) | 614 | static void __exit i2c_adap_imx_exit(void) |
614 | { | 615 | { |
615 | platform_driver_unregister(&i2c_imx_driver); | 616 | platform_driver_unregister(&i2c_imx_driver); |
616 | } | 617 | } |
617 | |||
618 | module_init(i2c_adap_imx_init); | ||
619 | module_exit(i2c_adap_imx_exit); | 618 | module_exit(i2c_adap_imx_exit); |
620 | 619 | ||
621 | MODULE_LICENSE("GPL"); | 620 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/i2c/busses/i2c-mv64xxx.c b/drivers/i2c/busses/i2c-mv64xxx.c index c3869d94ad42..bbab0e166630 100644 --- a/drivers/i2c/busses/i2c-mv64xxx.c +++ b/drivers/i2c/busses/i2c-mv64xxx.c | |||
@@ -293,13 +293,13 @@ mv64xxx_i2c_do_action(struct mv64xxx_i2c_data *drv_data) | |||
293 | } | 293 | } |
294 | } | 294 | } |
295 | 295 | ||
296 | static int | 296 | static irqreturn_t |
297 | mv64xxx_i2c_intr(int irq, void *dev_id) | 297 | mv64xxx_i2c_intr(int irq, void *dev_id) |
298 | { | 298 | { |
299 | struct mv64xxx_i2c_data *drv_data = dev_id; | 299 | struct mv64xxx_i2c_data *drv_data = dev_id; |
300 | unsigned long flags; | 300 | unsigned long flags; |
301 | u32 status; | 301 | u32 status; |
302 | int rc = IRQ_NONE; | 302 | irqreturn_t rc = IRQ_NONE; |
303 | 303 | ||
304 | spin_lock_irqsave(&drv_data->lock, flags); | 304 | spin_lock_irqsave(&drv_data->lock, flags); |
305 | while (readl(drv_data->reg_base + MV64XXX_I2C_REG_CONTROL) & | 305 | while (readl(drv_data->reg_base + MV64XXX_I2C_REG_CONTROL) & |
diff --git a/drivers/i2c/busses/i2c-sh_mobile.c b/drivers/i2c/busses/i2c-sh_mobile.c index 820487d0d5c7..86a9d4e81472 100644 --- a/drivers/i2c/busses/i2c-sh_mobile.c +++ b/drivers/i2c/busses/i2c-sh_mobile.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <linux/interrupt.h> | 28 | #include <linux/interrupt.h> |
29 | #include <linux/i2c.h> | 29 | #include <linux/i2c.h> |
30 | #include <linux/err.h> | 30 | #include <linux/err.h> |
31 | #include <linux/pm_runtime.h> | ||
31 | #include <linux/clk.h> | 32 | #include <linux/clk.h> |
32 | #include <linux/io.h> | 33 | #include <linux/io.h> |
33 | 34 | ||
@@ -165,7 +166,8 @@ static void activate_ch(struct sh_mobile_i2c_data *pd) | |||
165 | u_int32_t denom; | 166 | u_int32_t denom; |
166 | u_int32_t tmp; | 167 | u_int32_t tmp; |
167 | 168 | ||
168 | /* Make sure the clock is enabled */ | 169 | /* Wake up device and enable clock */ |
170 | pm_runtime_get_sync(pd->dev); | ||
169 | clk_enable(pd->clk); | 171 | clk_enable(pd->clk); |
170 | 172 | ||
171 | /* Get clock rate after clock is enabled */ | 173 | /* Get clock rate after clock is enabled */ |
@@ -213,8 +215,9 @@ static void deactivate_ch(struct sh_mobile_i2c_data *pd) | |||
213 | /* Disable channel */ | 215 | /* Disable channel */ |
214 | iowrite8(ioread8(ICCR(pd)) & ~ICCR_ICE, ICCR(pd)); | 216 | iowrite8(ioread8(ICCR(pd)) & ~ICCR_ICE, ICCR(pd)); |
215 | 217 | ||
216 | /* Disable clock */ | 218 | /* Disable clock and mark device as idle */ |
217 | clk_disable(pd->clk); | 219 | clk_disable(pd->clk); |
220 | pm_runtime_put_sync(pd->dev); | ||
218 | } | 221 | } |
219 | 222 | ||
220 | static unsigned char i2c_op(struct sh_mobile_i2c_data *pd, | 223 | static unsigned char i2c_op(struct sh_mobile_i2c_data *pd, |
@@ -572,6 +575,19 @@ static int sh_mobile_i2c_probe(struct platform_device *dev) | |||
572 | goto err_irq; | 575 | goto err_irq; |
573 | } | 576 | } |
574 | 577 | ||
578 | /* Enable Runtime PM for this device. | ||
579 | * | ||
580 | * Also tell the Runtime PM core to ignore children | ||
581 | * for this device since it is valid for us to suspend | ||
582 | * this I2C master driver even though the slave devices | ||
583 | * on the I2C bus may not be suspended. | ||
584 | * | ||
585 | * The state of the I2C hardware bus is unaffected by | ||
586 | * the Runtime PM state. | ||
587 | */ | ||
588 | pm_suspend_ignore_children(&dev->dev, true); | ||
589 | pm_runtime_enable(&dev->dev); | ||
590 | |||
575 | /* setup the private data */ | 591 | /* setup the private data */ |
576 | adap = &pd->adap; | 592 | adap = &pd->adap; |
577 | i2c_set_adapdata(adap, pd); | 593 | i2c_set_adapdata(adap, pd); |
@@ -614,14 +630,33 @@ static int sh_mobile_i2c_remove(struct platform_device *dev) | |||
614 | iounmap(pd->reg); | 630 | iounmap(pd->reg); |
615 | sh_mobile_i2c_hook_irqs(dev, 0); | 631 | sh_mobile_i2c_hook_irqs(dev, 0); |
616 | clk_put(pd->clk); | 632 | clk_put(pd->clk); |
633 | pm_runtime_disable(&dev->dev); | ||
617 | kfree(pd); | 634 | kfree(pd); |
618 | return 0; | 635 | return 0; |
619 | } | 636 | } |
620 | 637 | ||
638 | static int sh_mobile_i2c_runtime_nop(struct device *dev) | ||
639 | { | ||
640 | /* Runtime PM callback shared between ->runtime_suspend() | ||
641 | * and ->runtime_resume(). Simply returns success. | ||
642 | * | ||
643 | * This driver re-initializes all registers after | ||
644 | * pm_runtime_get_sync() anyway so there is no need | ||
645 | * to save and restore registers here. | ||
646 | */ | ||
647 | return 0; | ||
648 | } | ||
649 | |||
650 | static struct dev_pm_ops sh_mobile_i2c_dev_pm_ops = { | ||
651 | .runtime_suspend = sh_mobile_i2c_runtime_nop, | ||
652 | .runtime_resume = sh_mobile_i2c_runtime_nop, | ||
653 | }; | ||
654 | |||
621 | static struct platform_driver sh_mobile_i2c_driver = { | 655 | static struct platform_driver sh_mobile_i2c_driver = { |
622 | .driver = { | 656 | .driver = { |
623 | .name = "i2c-sh_mobile", | 657 | .name = "i2c-sh_mobile", |
624 | .owner = THIS_MODULE, | 658 | .owner = THIS_MODULE, |
659 | .pm = &sh_mobile_i2c_dev_pm_ops, | ||
625 | }, | 660 | }, |
626 | .probe = sh_mobile_i2c_probe, | 661 | .probe = sh_mobile_i2c_probe, |
627 | .remove = sh_mobile_i2c_remove, | 662 | .remove = sh_mobile_i2c_remove, |
diff --git a/drivers/input/input.c b/drivers/input/input.c index 851791d955f3..556539d617a4 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c | |||
@@ -1265,14 +1265,14 @@ static struct device_type input_dev_type = { | |||
1265 | .uevent = input_dev_uevent, | 1265 | .uevent = input_dev_uevent, |
1266 | }; | 1266 | }; |
1267 | 1267 | ||
1268 | static char *input_nodename(struct device *dev) | 1268 | static char *input_devnode(struct device *dev, mode_t *mode) |
1269 | { | 1269 | { |
1270 | return kasprintf(GFP_KERNEL, "input/%s", dev_name(dev)); | 1270 | return kasprintf(GFP_KERNEL, "input/%s", dev_name(dev)); |
1271 | } | 1271 | } |
1272 | 1272 | ||
1273 | struct class input_class = { | 1273 | struct class input_class = { |
1274 | .name = "input", | 1274 | .name = "input", |
1275 | .nodename = input_nodename, | 1275 | .devnode = input_devnode, |
1276 | }; | 1276 | }; |
1277 | EXPORT_SYMBOL_GPL(input_class); | 1277 | EXPORT_SYMBOL_GPL(input_class); |
1278 | 1278 | ||
diff --git a/drivers/input/keyboard/omap-keypad.c b/drivers/input/keyboard/omap-keypad.c index 87ec7b18ac69..bba85add35a3 100644 --- a/drivers/input/keyboard/omap-keypad.c +++ b/drivers/input/keyboard/omap-keypad.c | |||
@@ -116,7 +116,7 @@ static irqreturn_t omap_kp_interrupt(int irq, void *dev_id) | |||
116 | } | 116 | } |
117 | } else | 117 | } else |
118 | /* disable keyboard interrupt and schedule for handling */ | 118 | /* disable keyboard interrupt and schedule for handling */ |
119 | omap_writew(1, OMAP_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); | 119 | omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); |
120 | 120 | ||
121 | tasklet_schedule(&kp_tasklet); | 121 | tasklet_schedule(&kp_tasklet); |
122 | 122 | ||
@@ -143,20 +143,20 @@ static void omap_kp_scan_keypad(struct omap_kp *omap_kp, unsigned char *state) | |||
143 | 143 | ||
144 | } else { | 144 | } else { |
145 | /* disable keyboard interrupt and schedule for handling */ | 145 | /* disable keyboard interrupt and schedule for handling */ |
146 | omap_writew(1, OMAP_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); | 146 | omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); |
147 | 147 | ||
148 | /* read the keypad status */ | 148 | /* read the keypad status */ |
149 | omap_writew(0xff, OMAP_MPUIO_BASE + OMAP_MPUIO_KBC); | 149 | omap_writew(0xff, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBC); |
150 | for (col = 0; col < omap_kp->cols; col++) { | 150 | for (col = 0; col < omap_kp->cols; col++) { |
151 | omap_writew(~(1 << col) & 0xff, | 151 | omap_writew(~(1 << col) & 0xff, |
152 | OMAP_MPUIO_BASE + OMAP_MPUIO_KBC); | 152 | OMAP1_MPUIO_BASE + OMAP_MPUIO_KBC); |
153 | 153 | ||
154 | udelay(omap_kp->delay); | 154 | udelay(omap_kp->delay); |
155 | 155 | ||
156 | state[col] = ~omap_readw(OMAP_MPUIO_BASE + | 156 | state[col] = ~omap_readw(OMAP1_MPUIO_BASE + |
157 | OMAP_MPUIO_KBR_LATCH) & 0xff; | 157 | OMAP_MPUIO_KBR_LATCH) & 0xff; |
158 | } | 158 | } |
159 | omap_writew(0x00, OMAP_MPUIO_BASE + OMAP_MPUIO_KBC); | 159 | omap_writew(0x00, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBC); |
160 | udelay(2); | 160 | udelay(2); |
161 | } | 161 | } |
162 | } | 162 | } |
@@ -234,7 +234,7 @@ static void omap_kp_tasklet(unsigned long data) | |||
234 | for (i = 0; i < omap_kp_data->rows; i++) | 234 | for (i = 0; i < omap_kp_data->rows; i++) |
235 | enable_irq(gpio_to_irq(row_gpios[i])); | 235 | enable_irq(gpio_to_irq(row_gpios[i])); |
236 | } else { | 236 | } else { |
237 | omap_writew(0, OMAP_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); | 237 | omap_writew(0, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); |
238 | kp_cur_group = -1; | 238 | kp_cur_group = -1; |
239 | } | 239 | } |
240 | } | 240 | } |
@@ -317,7 +317,7 @@ static int __devinit omap_kp_probe(struct platform_device *pdev) | |||
317 | 317 | ||
318 | /* Disable the interrupt for the MPUIO keyboard */ | 318 | /* Disable the interrupt for the MPUIO keyboard */ |
319 | if (!cpu_is_omap24xx()) | 319 | if (!cpu_is_omap24xx()) |
320 | omap_writew(1, OMAP_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); | 320 | omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); |
321 | 321 | ||
322 | keymap = pdata->keymap; | 322 | keymap = pdata->keymap; |
323 | 323 | ||
@@ -391,7 +391,7 @@ static int __devinit omap_kp_probe(struct platform_device *pdev) | |||
391 | } | 391 | } |
392 | 392 | ||
393 | if (pdata->dbounce) | 393 | if (pdata->dbounce) |
394 | omap_writew(0xff, OMAP_MPUIO_BASE + OMAP_MPUIO_GPIO_DEBOUNCING); | 394 | omap_writew(0xff, OMAP1_MPUIO_BASE + OMAP_MPUIO_GPIO_DEBOUNCING); |
395 | 395 | ||
396 | /* scan current status and enable interrupt */ | 396 | /* scan current status and enable interrupt */ |
397 | omap_kp_scan_keypad(omap_kp, keypad_state); | 397 | omap_kp_scan_keypad(omap_kp, keypad_state); |
@@ -402,7 +402,7 @@ static int __devinit omap_kp_probe(struct platform_device *pdev) | |||
402 | "omap-keypad", omap_kp) < 0) | 402 | "omap-keypad", omap_kp) < 0) |
403 | goto err4; | 403 | goto err4; |
404 | } | 404 | } |
405 | omap_writew(0, OMAP_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); | 405 | omap_writew(0, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); |
406 | } else { | 406 | } else { |
407 | for (irq_idx = 0; irq_idx < omap_kp->rows; irq_idx++) { | 407 | for (irq_idx = 0; irq_idx < omap_kp->rows; irq_idx++) { |
408 | if (request_irq(gpio_to_irq(row_gpios[irq_idx]), | 408 | if (request_irq(gpio_to_irq(row_gpios[irq_idx]), |
@@ -449,7 +449,7 @@ static int __devexit omap_kp_remove(struct platform_device *pdev) | |||
449 | free_irq(gpio_to_irq(row_gpios[i]), 0); | 449 | free_irq(gpio_to_irq(row_gpios[i]), 0); |
450 | } | 450 | } |
451 | } else { | 451 | } else { |
452 | omap_writew(1, OMAP_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); | 452 | omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); |
453 | free_irq(omap_kp->irq, 0); | 453 | free_irq(omap_kp->irq, 0); |
454 | } | 454 | } |
455 | 455 | ||
diff --git a/drivers/input/keyboard/sh_keysc.c b/drivers/input/keyboard/sh_keysc.c index 0714bf2c28fc..887af79b7bff 100644 --- a/drivers/input/keyboard/sh_keysc.c +++ b/drivers/input/keyboard/sh_keysc.c | |||
@@ -80,6 +80,9 @@ static irqreturn_t sh_keysc_isr(int irq, void *dev_id) | |||
80 | iowrite16(KYCR2_IRQ_LEVEL | (keyin_set << 8), | 80 | iowrite16(KYCR2_IRQ_LEVEL | (keyin_set << 8), |
81 | priv->iomem_base + KYCR2_OFFS); | 81 | priv->iomem_base + KYCR2_OFFS); |
82 | 82 | ||
83 | if (pdata->kycr2_delay) | ||
84 | udelay(pdata->kycr2_delay); | ||
85 | |||
83 | keys ^= ~0; | 86 | keys ^= ~0; |
84 | keys &= (1 << (sh_keysc_mode[pdata->mode].keyin * | 87 | keys &= (1 << (sh_keysc_mode[pdata->mode].keyin * |
85 | sh_keysc_mode[pdata->mode].keyout)) - 1; | 88 | sh_keysc_mode[pdata->mode].keyout)) - 1; |
diff --git a/drivers/input/misc/Kconfig b/drivers/input/misc/Kconfig index cbe21bc96b52..1a50be379cbc 100644 --- a/drivers/input/misc/Kconfig +++ b/drivers/input/misc/Kconfig | |||
@@ -279,4 +279,24 @@ config INPUT_BFIN_ROTARY | |||
279 | To compile this driver as a module, choose M here: the | 279 | To compile this driver as a module, choose M here: the |
280 | module will be called bfin-rotary. | 280 | module will be called bfin-rotary. |
281 | 281 | ||
282 | config INPUT_WM831X_ON | ||
283 | tristate "WM831X ON pin" | ||
284 | depends on MFD_WM831X | ||
285 | help | ||
286 | Support the ON pin of WM831X PMICs as an input device | ||
287 | reporting power button status. | ||
288 | |||
289 | To compile this driver as a module, choose M here: the module | ||
290 | will be called wm831x_on. | ||
291 | |||
292 | config INPUT_PCAP | ||
293 | tristate "Motorola EZX PCAP misc input events" | ||
294 | depends on EZX_PCAP | ||
295 | help | ||
296 | Say Y here if you want to use Power key and Headphone button | ||
297 | on Motorola EZX phones. | ||
298 | |||
299 | To compile this driver as a module, choose M here: the | ||
300 | module will be called pcap_keys. | ||
301 | |||
282 | endif | 302 | endif |
diff --git a/drivers/input/misc/Makefile b/drivers/input/misc/Makefile index 79c1e9a5ea31..bf4db626c313 100644 --- a/drivers/input/misc/Makefile +++ b/drivers/input/misc/Makefile | |||
@@ -16,6 +16,7 @@ obj-$(CONFIG_HP_SDC_RTC) += hp_sdc_rtc.o | |||
16 | obj-$(CONFIG_INPUT_IXP4XX_BEEPER) += ixp4xx-beeper.o | 16 | obj-$(CONFIG_INPUT_IXP4XX_BEEPER) += ixp4xx-beeper.o |
17 | obj-$(CONFIG_INPUT_KEYSPAN_REMOTE) += keyspan_remote.o | 17 | obj-$(CONFIG_INPUT_KEYSPAN_REMOTE) += keyspan_remote.o |
18 | obj-$(CONFIG_INPUT_M68K_BEEP) += m68kspkr.o | 18 | obj-$(CONFIG_INPUT_M68K_BEEP) += m68kspkr.o |
19 | obj-$(CONFIG_INPUT_PCAP) += pcap_keys.o | ||
19 | obj-$(CONFIG_INPUT_PCF50633_PMU) += pcf50633-input.o | 20 | obj-$(CONFIG_INPUT_PCF50633_PMU) += pcf50633-input.o |
20 | obj-$(CONFIG_INPUT_PCSPKR) += pcspkr.o | 21 | obj-$(CONFIG_INPUT_PCSPKR) += pcspkr.o |
21 | obj-$(CONFIG_INPUT_POWERMATE) += powermate.o | 22 | obj-$(CONFIG_INPUT_POWERMATE) += powermate.o |
@@ -26,4 +27,6 @@ obj-$(CONFIG_INPUT_SPARCSPKR) += sparcspkr.o | |||
26 | obj-$(CONFIG_INPUT_TWL4030_PWRBUTTON) += twl4030-pwrbutton.o | 27 | obj-$(CONFIG_INPUT_TWL4030_PWRBUTTON) += twl4030-pwrbutton.o |
27 | obj-$(CONFIG_INPUT_UINPUT) += uinput.o | 28 | obj-$(CONFIG_INPUT_UINPUT) += uinput.o |
28 | obj-$(CONFIG_INPUT_WISTRON_BTNS) += wistron_btns.o | 29 | obj-$(CONFIG_INPUT_WISTRON_BTNS) += wistron_btns.o |
30 | obj-$(CONFIG_INPUT_WM831X_ON) += wm831x-on.o | ||
29 | obj-$(CONFIG_INPUT_YEALINK) += yealink.o | 31 | obj-$(CONFIG_INPUT_YEALINK) += yealink.o |
32 | |||
diff --git a/drivers/input/misc/pcap_keys.c b/drivers/input/misc/pcap_keys.c new file mode 100644 index 000000000000..7ea969347ca9 --- /dev/null +++ b/drivers/input/misc/pcap_keys.c | |||
@@ -0,0 +1,144 @@ | |||
1 | /* | ||
2 | * Input driver for PCAP events: | ||
3 | * * Power key | ||
4 | * * Headphone button | ||
5 | * | ||
6 | * Copyright (c) 2008,2009 Ilya Petrov <ilya.muromec@gmail.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | * | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/interrupt.h> | ||
17 | #include <linux/platform_device.h> | ||
18 | #include <linux/input.h> | ||
19 | #include <linux/mfd/ezx-pcap.h> | ||
20 | |||
21 | struct pcap_keys { | ||
22 | struct pcap_chip *pcap; | ||
23 | struct input_dev *input; | ||
24 | }; | ||
25 | |||
26 | /* PCAP2 interrupts us on keypress */ | ||
27 | static irqreturn_t pcap_keys_handler(int irq, void *_pcap_keys) | ||
28 | { | ||
29 | struct pcap_keys *pcap_keys = _pcap_keys; | ||
30 | int pirq = irq_to_pcap(pcap_keys->pcap, irq); | ||
31 | u32 pstat; | ||
32 | |||
33 | ezx_pcap_read(pcap_keys->pcap, PCAP_REG_PSTAT, &pstat); | ||
34 | pstat &= 1 << pirq; | ||
35 | |||
36 | switch (pirq) { | ||
37 | case PCAP_IRQ_ONOFF: | ||
38 | input_report_key(pcap_keys->input, KEY_POWER, !pstat); | ||
39 | break; | ||
40 | case PCAP_IRQ_MIC: | ||
41 | input_report_key(pcap_keys->input, KEY_HP, !pstat); | ||
42 | break; | ||
43 | } | ||
44 | |||
45 | input_sync(pcap_keys->input); | ||
46 | |||
47 | return IRQ_HANDLED; | ||
48 | } | ||
49 | |||
50 | static int __devinit pcap_keys_probe(struct platform_device *pdev) | ||
51 | { | ||
52 | int err = -ENOMEM; | ||
53 | struct pcap_keys *pcap_keys; | ||
54 | struct input_dev *input_dev; | ||
55 | |||
56 | pcap_keys = kmalloc(sizeof(struct pcap_keys), GFP_KERNEL); | ||
57 | if (!pcap_keys) | ||
58 | return err; | ||
59 | |||
60 | pcap_keys->pcap = dev_get_drvdata(pdev->dev.parent); | ||
61 | |||
62 | input_dev = input_allocate_device(); | ||
63 | if (!input_dev) | ||
64 | goto fail; | ||
65 | |||
66 | pcap_keys->input = input_dev; | ||
67 | |||
68 | platform_set_drvdata(pdev, pcap_keys); | ||
69 | input_dev->name = pdev->name; | ||
70 | input_dev->phys = "pcap-keys/input0"; | ||
71 | input_dev->id.bustype = BUS_HOST; | ||
72 | input_dev->dev.parent = &pdev->dev; | ||
73 | |||
74 | __set_bit(EV_KEY, input_dev->evbit); | ||
75 | __set_bit(KEY_POWER, input_dev->keybit); | ||
76 | __set_bit(KEY_HP, input_dev->keybit); | ||
77 | |||
78 | err = input_register_device(input_dev); | ||
79 | if (err) | ||
80 | goto fail_allocate; | ||
81 | |||
82 | err = request_irq(pcap_to_irq(pcap_keys->pcap, PCAP_IRQ_ONOFF), | ||
83 | pcap_keys_handler, 0, "Power key", pcap_keys); | ||
84 | if (err) | ||
85 | goto fail_register; | ||
86 | |||
87 | err = request_irq(pcap_to_irq(pcap_keys->pcap, PCAP_IRQ_MIC), | ||
88 | pcap_keys_handler, 0, "Headphone button", pcap_keys); | ||
89 | if (err) | ||
90 | goto fail_pwrkey; | ||
91 | |||
92 | return 0; | ||
93 | |||
94 | fail_pwrkey: | ||
95 | free_irq(pcap_to_irq(pcap_keys->pcap, PCAP_IRQ_ONOFF), pcap_keys); | ||
96 | fail_register: | ||
97 | input_unregister_device(input_dev); | ||
98 | goto fail; | ||
99 | fail_allocate: | ||
100 | input_free_device(input_dev); | ||
101 | fail: | ||
102 | kfree(pcap_keys); | ||
103 | return err; | ||
104 | } | ||
105 | |||
106 | static int __devexit pcap_keys_remove(struct platform_device *pdev) | ||
107 | { | ||
108 | struct pcap_keys *pcap_keys = platform_get_drvdata(pdev); | ||
109 | |||
110 | free_irq(pcap_to_irq(pcap_keys->pcap, PCAP_IRQ_ONOFF), pcap_keys); | ||
111 | free_irq(pcap_to_irq(pcap_keys->pcap, PCAP_IRQ_MIC), pcap_keys); | ||
112 | |||
113 | input_unregister_device(pcap_keys->input); | ||
114 | kfree(pcap_keys); | ||
115 | |||
116 | return 0; | ||
117 | } | ||
118 | |||
119 | static struct platform_driver pcap_keys_device_driver = { | ||
120 | .probe = pcap_keys_probe, | ||
121 | .remove = __devexit_p(pcap_keys_remove), | ||
122 | .driver = { | ||
123 | .name = "pcap-keys", | ||
124 | .owner = THIS_MODULE, | ||
125 | } | ||
126 | }; | ||
127 | |||
128 | static int __init pcap_keys_init(void) | ||
129 | { | ||
130 | return platform_driver_register(&pcap_keys_device_driver); | ||
131 | }; | ||
132 | |||
133 | static void __exit pcap_keys_exit(void) | ||
134 | { | ||
135 | platform_driver_unregister(&pcap_keys_device_driver); | ||
136 | }; | ||
137 | |||
138 | module_init(pcap_keys_init); | ||
139 | module_exit(pcap_keys_exit); | ||
140 | |||
141 | MODULE_DESCRIPTION("Motorola PCAP2 input events driver"); | ||
142 | MODULE_AUTHOR("Ilya Petrov <ilya.muromec@gmail.com>"); | ||
143 | MODULE_LICENSE("GPL"); | ||
144 | MODULE_ALIAS("platform:pcap_keys"); | ||
diff --git a/drivers/input/misc/wm831x-on.c b/drivers/input/misc/wm831x-on.c new file mode 100644 index 000000000000..ba4f5dd7c60e --- /dev/null +++ b/drivers/input/misc/wm831x-on.c | |||
@@ -0,0 +1,163 @@ | |||
1 | /** | ||
2 | * wm831x-on.c - WM831X ON pin driver | ||
3 | * | ||
4 | * Copyright (C) 2009 Wolfson Microelectronics plc | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of the GNU General | ||
7 | * Public License. See the file "COPYING" in the main directory of this | ||
8 | * archive for more details. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this program; if not, write to the Free Software | ||
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
18 | */ | ||
19 | |||
20 | #include <linux/module.h> | ||
21 | #include <linux/init.h> | ||
22 | #include <linux/kernel.h> | ||
23 | #include <linux/errno.h> | ||
24 | #include <linux/input.h> | ||
25 | #include <linux/interrupt.h> | ||
26 | #include <linux/platform_device.h> | ||
27 | #include <linux/workqueue.h> | ||
28 | #include <linux/mfd/wm831x/core.h> | ||
29 | |||
30 | struct wm831x_on { | ||
31 | struct input_dev *dev; | ||
32 | struct delayed_work work; | ||
33 | struct wm831x *wm831x; | ||
34 | }; | ||
35 | |||
36 | /* | ||
37 | * The chip gives us an interrupt when the ON pin is asserted but we | ||
38 | * then need to poll to see when the pin is deasserted. | ||
39 | */ | ||
40 | static void wm831x_poll_on(struct work_struct *work) | ||
41 | { | ||
42 | struct wm831x_on *wm831x_on = container_of(work, struct wm831x_on, | ||
43 | work.work); | ||
44 | struct wm831x *wm831x = wm831x_on->wm831x; | ||
45 | int poll, ret; | ||
46 | |||
47 | ret = wm831x_reg_read(wm831x, WM831X_ON_PIN_CONTROL); | ||
48 | if (ret >= 0) { | ||
49 | poll = !(ret & WM831X_ON_PIN_STS); | ||
50 | |||
51 | input_report_key(wm831x_on->dev, KEY_POWER, poll); | ||
52 | input_sync(wm831x_on->dev); | ||
53 | } else { | ||
54 | dev_err(wm831x->dev, "Failed to read ON status: %d\n", ret); | ||
55 | poll = 1; | ||
56 | } | ||
57 | |||
58 | if (poll) | ||
59 | schedule_delayed_work(&wm831x_on->work, 100); | ||
60 | } | ||
61 | |||
62 | static irqreturn_t wm831x_on_irq(int irq, void *data) | ||
63 | { | ||
64 | struct wm831x_on *wm831x_on = data; | ||
65 | |||
66 | schedule_delayed_work(&wm831x_on->work, 0); | ||
67 | |||
68 | return IRQ_HANDLED; | ||
69 | } | ||
70 | |||
71 | static int __devinit wm831x_on_probe(struct platform_device *pdev) | ||
72 | { | ||
73 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
74 | struct wm831x_on *wm831x_on; | ||
75 | int irq = platform_get_irq(pdev, 0); | ||
76 | int ret; | ||
77 | |||
78 | wm831x_on = kzalloc(sizeof(struct wm831x_on), GFP_KERNEL); | ||
79 | if (!wm831x_on) { | ||
80 | dev_err(&pdev->dev, "Can't allocate data\n"); | ||
81 | return -ENOMEM; | ||
82 | } | ||
83 | |||
84 | wm831x_on->wm831x = wm831x; | ||
85 | INIT_DELAYED_WORK(&wm831x_on->work, wm831x_poll_on); | ||
86 | |||
87 | wm831x_on->dev = input_allocate_device(); | ||
88 | if (!wm831x_on->dev) { | ||
89 | dev_err(&pdev->dev, "Can't allocate input dev\n"); | ||
90 | ret = -ENOMEM; | ||
91 | goto err; | ||
92 | } | ||
93 | |||
94 | wm831x_on->dev->evbit[0] = BIT_MASK(EV_KEY); | ||
95 | wm831x_on->dev->keybit[BIT_WORD(KEY_POWER)] = BIT_MASK(KEY_POWER); | ||
96 | wm831x_on->dev->name = "wm831x_on"; | ||
97 | wm831x_on->dev->phys = "wm831x_on/input0"; | ||
98 | wm831x_on->dev->dev.parent = &pdev->dev; | ||
99 | |||
100 | ret = wm831x_request_irq(wm831x, irq, wm831x_on_irq, | ||
101 | IRQF_TRIGGER_RISING, "wm831x_on", wm831x_on); | ||
102 | if (ret < 0) { | ||
103 | dev_err(&pdev->dev, "Unable to request IRQ: %d\n", ret); | ||
104 | goto err_input_dev; | ||
105 | } | ||
106 | ret = input_register_device(wm831x_on->dev); | ||
107 | if (ret) { | ||
108 | dev_dbg(&pdev->dev, "Can't register input device: %d\n", ret); | ||
109 | goto err_irq; | ||
110 | } | ||
111 | |||
112 | platform_set_drvdata(pdev, wm831x_on); | ||
113 | |||
114 | return 0; | ||
115 | |||
116 | err_irq: | ||
117 | wm831x_free_irq(wm831x, irq, NULL); | ||
118 | err_input_dev: | ||
119 | input_free_device(wm831x_on->dev); | ||
120 | err: | ||
121 | kfree(wm831x_on); | ||
122 | return ret; | ||
123 | } | ||
124 | |||
125 | static int __devexit wm831x_on_remove(struct platform_device *pdev) | ||
126 | { | ||
127 | struct wm831x_on *wm831x_on = platform_get_drvdata(pdev); | ||
128 | int irq = platform_get_irq(pdev, 0); | ||
129 | |||
130 | wm831x_free_irq(wm831x_on->wm831x, irq, wm831x_on); | ||
131 | cancel_delayed_work_sync(&wm831x_on->work); | ||
132 | input_unregister_device(wm831x_on->dev); | ||
133 | kfree(wm831x_on); | ||
134 | |||
135 | return 0; | ||
136 | } | ||
137 | |||
138 | static struct platform_driver wm831x_on_driver = { | ||
139 | .probe = wm831x_on_probe, | ||
140 | .remove = __devexit_p(wm831x_on_remove), | ||
141 | .driver = { | ||
142 | .name = "wm831x-on", | ||
143 | .owner = THIS_MODULE, | ||
144 | }, | ||
145 | }; | ||
146 | |||
147 | static int __init wm831x_on_init(void) | ||
148 | { | ||
149 | return platform_driver_register(&wm831x_on_driver); | ||
150 | } | ||
151 | module_init(wm831x_on_init); | ||
152 | |||
153 | static void __exit wm831x_on_exit(void) | ||
154 | { | ||
155 | platform_driver_unregister(&wm831x_on_driver); | ||
156 | } | ||
157 | module_exit(wm831x_on_exit); | ||
158 | |||
159 | MODULE_ALIAS("platform:wm831x-on"); | ||
160 | MODULE_DESCRIPTION("WM831x ON pin"); | ||
161 | MODULE_LICENSE("GPL"); | ||
162 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); | ||
163 | |||
diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig index 87a1ae63bcc4..ab02d72afbf3 100644 --- a/drivers/input/touchscreen/Kconfig +++ b/drivers/input/touchscreen/Kconfig | |||
@@ -510,4 +510,13 @@ config TOUCHSCREEN_W90X900 | |||
510 | To compile this driver as a module, choose M here: the | 510 | To compile this driver as a module, choose M here: the |
511 | module will be called w90p910_ts. | 511 | module will be called w90p910_ts. |
512 | 512 | ||
513 | config TOUCHSCREEN_PCAP | ||
514 | tristate "Motorola PCAP touchscreen" | ||
515 | depends on EZX_PCAP | ||
516 | help | ||
517 | Say Y here if you have a Motorola EZX telephone and | ||
518 | want to enable support for the built-in touchscreen. | ||
519 | |||
520 | To compile this driver as a module, choose M here: the | ||
521 | module will be called pcap_ts. | ||
513 | endif | 522 | endif |
diff --git a/drivers/input/touchscreen/Makefile b/drivers/input/touchscreen/Makefile index 3e1c5e0b952f..4599bf7ad819 100644 --- a/drivers/input/touchscreen/Makefile +++ b/drivers/input/touchscreen/Makefile | |||
@@ -40,3 +40,4 @@ obj-$(CONFIG_TOUCHSCREEN_WM97XX_ATMEL) += atmel-wm97xx.o | |||
40 | obj-$(CONFIG_TOUCHSCREEN_WM97XX_MAINSTONE) += mainstone-wm97xx.o | 40 | obj-$(CONFIG_TOUCHSCREEN_WM97XX_MAINSTONE) += mainstone-wm97xx.o |
41 | obj-$(CONFIG_TOUCHSCREEN_WM97XX_ZYLONITE) += zylonite-wm97xx.o | 41 | obj-$(CONFIG_TOUCHSCREEN_WM97XX_ZYLONITE) += zylonite-wm97xx.o |
42 | obj-$(CONFIG_TOUCHSCREEN_W90X900) += w90p910_ts.o | 42 | obj-$(CONFIG_TOUCHSCREEN_W90X900) += w90p910_ts.o |
43 | obj-$(CONFIG_TOUCHSCREEN_PCAP) += pcap_ts.o | ||
diff --git a/drivers/input/touchscreen/pcap_ts.c b/drivers/input/touchscreen/pcap_ts.c new file mode 100644 index 000000000000..67fcd33595de --- /dev/null +++ b/drivers/input/touchscreen/pcap_ts.c | |||
@@ -0,0 +1,271 @@ | |||
1 | /* | ||
2 | * Driver for Motorola PCAP2 touchscreen as found in the EZX phone platform. | ||
3 | * | ||
4 | * Copyright (C) 2006 Harald Welte <laforge@openezx.org> | ||
5 | * Copyright (C) 2009 Daniel Ribeiro <drwyrm@gmail.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | */ | ||
12 | |||
13 | #include <linux/module.h> | ||
14 | #include <linux/init.h> | ||
15 | #include <linux/fs.h> | ||
16 | #include <linux/string.h> | ||
17 | #include <linux/pm.h> | ||
18 | #include <linux/timer.h> | ||
19 | #include <linux/interrupt.h> | ||
20 | #include <linux/platform_device.h> | ||
21 | #include <linux/input.h> | ||
22 | #include <linux/mfd/ezx-pcap.h> | ||
23 | |||
24 | struct pcap_ts { | ||
25 | struct pcap_chip *pcap; | ||
26 | struct input_dev *input; | ||
27 | struct delayed_work work; | ||
28 | u16 x, y; | ||
29 | u16 pressure; | ||
30 | u8 read_state; | ||
31 | }; | ||
32 | |||
33 | #define SAMPLE_DELAY 20 /* msecs */ | ||
34 | |||
35 | #define X_AXIS_MIN 0 | ||
36 | #define X_AXIS_MAX 1023 | ||
37 | #define Y_AXIS_MAX X_AXIS_MAX | ||
38 | #define Y_AXIS_MIN X_AXIS_MIN | ||
39 | #define PRESSURE_MAX X_AXIS_MAX | ||
40 | #define PRESSURE_MIN X_AXIS_MIN | ||
41 | |||
42 | static void pcap_ts_read_xy(void *data, u16 res[2]) | ||
43 | { | ||
44 | struct pcap_ts *pcap_ts = data; | ||
45 | |||
46 | switch (pcap_ts->read_state) { | ||
47 | case PCAP_ADC_TS_M_PRESSURE: | ||
48 | /* pressure reading is unreliable */ | ||
49 | if (res[0] > PRESSURE_MIN && res[0] < PRESSURE_MAX) | ||
50 | pcap_ts->pressure = res[0]; | ||
51 | pcap_ts->read_state = PCAP_ADC_TS_M_XY; | ||
52 | schedule_delayed_work(&pcap_ts->work, 0); | ||
53 | break; | ||
54 | case PCAP_ADC_TS_M_XY: | ||
55 | pcap_ts->y = res[0]; | ||
56 | pcap_ts->x = res[1]; | ||
57 | if (pcap_ts->x <= X_AXIS_MIN || pcap_ts->x >= X_AXIS_MAX || | ||
58 | pcap_ts->y <= Y_AXIS_MIN || pcap_ts->y >= Y_AXIS_MAX) { | ||
59 | /* pen has been released */ | ||
60 | input_report_abs(pcap_ts->input, ABS_PRESSURE, 0); | ||
61 | input_report_key(pcap_ts->input, BTN_TOUCH, 0); | ||
62 | |||
63 | pcap_ts->read_state = PCAP_ADC_TS_M_STANDBY; | ||
64 | schedule_delayed_work(&pcap_ts->work, 0); | ||
65 | } else { | ||
66 | /* pen is touching the screen */ | ||
67 | input_report_abs(pcap_ts->input, ABS_X, pcap_ts->x); | ||
68 | input_report_abs(pcap_ts->input, ABS_Y, pcap_ts->y); | ||
69 | input_report_key(pcap_ts->input, BTN_TOUCH, 1); | ||
70 | input_report_abs(pcap_ts->input, ABS_PRESSURE, | ||
71 | pcap_ts->pressure); | ||
72 | |||
73 | /* switch back to pressure read mode */ | ||
74 | pcap_ts->read_state = PCAP_ADC_TS_M_PRESSURE; | ||
75 | schedule_delayed_work(&pcap_ts->work, | ||
76 | msecs_to_jiffies(SAMPLE_DELAY)); | ||
77 | } | ||
78 | input_sync(pcap_ts->input); | ||
79 | break; | ||
80 | default: | ||
81 | dev_warn(&pcap_ts->input->dev, | ||
82 | "pcap_ts: Warning, unhandled read_state %d\n", | ||
83 | pcap_ts->read_state); | ||
84 | break; | ||
85 | } | ||
86 | } | ||
87 | |||
88 | static void pcap_ts_work(struct work_struct *work) | ||
89 | { | ||
90 | struct delayed_work *dw = container_of(work, struct delayed_work, work); | ||
91 | struct pcap_ts *pcap_ts = container_of(dw, struct pcap_ts, work); | ||
92 | u8 ch[2]; | ||
93 | |||
94 | pcap_set_ts_bits(pcap_ts->pcap, | ||
95 | pcap_ts->read_state << PCAP_ADC_TS_M_SHIFT); | ||
96 | |||
97 | if (pcap_ts->read_state == PCAP_ADC_TS_M_STANDBY) | ||
98 | return; | ||
99 | |||
100 | /* start adc conversion */ | ||
101 | ch[0] = PCAP_ADC_CH_TS_X1; | ||
102 | ch[1] = PCAP_ADC_CH_TS_Y1; | ||
103 | pcap_adc_async(pcap_ts->pcap, PCAP_ADC_BANK_1, 0, ch, | ||
104 | pcap_ts_read_xy, pcap_ts); | ||
105 | } | ||
106 | |||
107 | static irqreturn_t pcap_ts_event_touch(int pirq, void *data) | ||
108 | { | ||
109 | struct pcap_ts *pcap_ts = data; | ||
110 | |||
111 | if (pcap_ts->read_state == PCAP_ADC_TS_M_STANDBY) { | ||
112 | pcap_ts->read_state = PCAP_ADC_TS_M_PRESSURE; | ||
113 | schedule_delayed_work(&pcap_ts->work, 0); | ||
114 | } | ||
115 | return IRQ_HANDLED; | ||
116 | } | ||
117 | |||
118 | static int pcap_ts_open(struct input_dev *dev) | ||
119 | { | ||
120 | struct pcap_ts *pcap_ts = input_get_drvdata(dev); | ||
121 | |||
122 | pcap_ts->read_state = PCAP_ADC_TS_M_STANDBY; | ||
123 | schedule_delayed_work(&pcap_ts->work, 0); | ||
124 | |||
125 | return 0; | ||
126 | } | ||
127 | |||
128 | static void pcap_ts_close(struct input_dev *dev) | ||
129 | { | ||
130 | struct pcap_ts *pcap_ts = input_get_drvdata(dev); | ||
131 | |||
132 | cancel_delayed_work_sync(&pcap_ts->work); | ||
133 | |||
134 | pcap_ts->read_state = PCAP_ADC_TS_M_NONTS; | ||
135 | pcap_set_ts_bits(pcap_ts->pcap, | ||
136 | pcap_ts->read_state << PCAP_ADC_TS_M_SHIFT); | ||
137 | } | ||
138 | |||
139 | static int __devinit pcap_ts_probe(struct platform_device *pdev) | ||
140 | { | ||
141 | struct input_dev *input_dev; | ||
142 | struct pcap_ts *pcap_ts; | ||
143 | int err = -ENOMEM; | ||
144 | |||
145 | pcap_ts = kzalloc(sizeof(*pcap_ts), GFP_KERNEL); | ||
146 | if (!pcap_ts) | ||
147 | return err; | ||
148 | |||
149 | pcap_ts->pcap = dev_get_drvdata(pdev->dev.parent); | ||
150 | platform_set_drvdata(pdev, pcap_ts); | ||
151 | |||
152 | input_dev = input_allocate_device(); | ||
153 | if (!input_dev) | ||
154 | goto fail; | ||
155 | |||
156 | INIT_DELAYED_WORK(&pcap_ts->work, pcap_ts_work); | ||
157 | |||
158 | pcap_ts->read_state = PCAP_ADC_TS_M_NONTS; | ||
159 | pcap_set_ts_bits(pcap_ts->pcap, | ||
160 | pcap_ts->read_state << PCAP_ADC_TS_M_SHIFT); | ||
161 | |||
162 | pcap_ts->input = input_dev; | ||
163 | input_set_drvdata(input_dev, pcap_ts); | ||
164 | |||
165 | input_dev->name = "pcap-touchscreen"; | ||
166 | input_dev->phys = "pcap_ts/input0"; | ||
167 | input_dev->id.bustype = BUS_HOST; | ||
168 | input_dev->id.vendor = 0x0001; | ||
169 | input_dev->id.product = 0x0002; | ||
170 | input_dev->id.version = 0x0100; | ||
171 | input_dev->dev.parent = &pdev->dev; | ||
172 | input_dev->open = pcap_ts_open; | ||
173 | input_dev->close = pcap_ts_close; | ||
174 | |||
175 | input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); | ||
176 | input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH); | ||
177 | input_set_abs_params(input_dev, ABS_X, X_AXIS_MIN, X_AXIS_MAX, 0, 0); | ||
178 | input_set_abs_params(input_dev, ABS_Y, Y_AXIS_MIN, Y_AXIS_MAX, 0, 0); | ||
179 | input_set_abs_params(input_dev, ABS_PRESSURE, PRESSURE_MIN, | ||
180 | PRESSURE_MAX, 0, 0); | ||
181 | |||
182 | err = input_register_device(pcap_ts->input); | ||
183 | if (err) | ||
184 | goto fail_allocate; | ||
185 | |||
186 | err = request_irq(pcap_to_irq(pcap_ts->pcap, PCAP_IRQ_TS), | ||
187 | pcap_ts_event_touch, 0, "Touch Screen", pcap_ts); | ||
188 | if (err) | ||
189 | goto fail_register; | ||
190 | |||
191 | return 0; | ||
192 | |||
193 | fail_register: | ||
194 | input_unregister_device(input_dev); | ||
195 | goto fail; | ||
196 | fail_allocate: | ||
197 | input_free_device(input_dev); | ||
198 | fail: | ||
199 | kfree(pcap_ts); | ||
200 | |||
201 | return err; | ||
202 | } | ||
203 | |||
204 | static int __devexit pcap_ts_remove(struct platform_device *pdev) | ||
205 | { | ||
206 | struct pcap_ts *pcap_ts = platform_get_drvdata(pdev); | ||
207 | |||
208 | free_irq(pcap_to_irq(pcap_ts->pcap, PCAP_IRQ_TS), pcap_ts); | ||
209 | cancel_delayed_work_sync(&pcap_ts->work); | ||
210 | |||
211 | input_unregister_device(pcap_ts->input); | ||
212 | |||
213 | kfree(pcap_ts); | ||
214 | |||
215 | return 0; | ||
216 | } | ||
217 | |||
218 | #ifdef CONFIG_PM | ||
219 | static int pcap_ts_suspend(struct device *dev) | ||
220 | { | ||
221 | struct pcap_ts *pcap_ts = dev_get_drvdata(dev); | ||
222 | |||
223 | pcap_set_ts_bits(pcap_ts->pcap, PCAP_ADC_TS_REF_LOWPWR); | ||
224 | return 0; | ||
225 | } | ||
226 | |||
227 | static int pcap_ts_resume(struct device *dev) | ||
228 | { | ||
229 | struct pcap_ts *pcap_ts = dev_get_drvdata(dev); | ||
230 | |||
231 | pcap_set_ts_bits(pcap_ts->pcap, | ||
232 | pcap_ts->read_state << PCAP_ADC_TS_M_SHIFT); | ||
233 | return 0; | ||
234 | } | ||
235 | |||
236 | static struct dev_pm_ops pcap_ts_pm_ops = { | ||
237 | .suspend = pcap_ts_suspend, | ||
238 | .resume = pcap_ts_resume, | ||
239 | }; | ||
240 | #define PCAP_TS_PM_OPS (&pcap_ts_pm_ops) | ||
241 | #else | ||
242 | #define PCAP_TS_PM_OPS NULL | ||
243 | #endif | ||
244 | |||
245 | static struct platform_driver pcap_ts_driver = { | ||
246 | .probe = pcap_ts_probe, | ||
247 | .remove = __devexit_p(pcap_ts_remove), | ||
248 | .driver = { | ||
249 | .name = "pcap-ts", | ||
250 | .owner = THIS_MODULE, | ||
251 | .pm = PCAP_TS_PM_OPS, | ||
252 | }, | ||
253 | }; | ||
254 | |||
255 | static int __init pcap_ts_init(void) | ||
256 | { | ||
257 | return platform_driver_register(&pcap_ts_driver); | ||
258 | } | ||
259 | |||
260 | static void __exit pcap_ts_exit(void) | ||
261 | { | ||
262 | platform_driver_unregister(&pcap_ts_driver); | ||
263 | } | ||
264 | |||
265 | module_init(pcap_ts_init); | ||
266 | module_exit(pcap_ts_exit); | ||
267 | |||
268 | MODULE_DESCRIPTION("Motorola PCAP2 touchscreen driver"); | ||
269 | MODULE_AUTHOR("Daniel Ribeiro / Harald Welte"); | ||
270 | MODULE_LICENSE("GPL"); | ||
271 | MODULE_ALIAS("platform:pcap_ts"); | ||
diff --git a/drivers/isdn/gigaset/interface.c b/drivers/isdn/gigaset/interface.c index 8ff7e35c7069..f33ac27de643 100644 --- a/drivers/isdn/gigaset/interface.c +++ b/drivers/isdn/gigaset/interface.c | |||
@@ -408,33 +408,28 @@ static int if_write_room(struct tty_struct *tty) | |||
408 | return retval; | 408 | return retval; |
409 | } | 409 | } |
410 | 410 | ||
411 | /* FIXME: This function does not have error returns */ | ||
412 | |||
413 | static int if_chars_in_buffer(struct tty_struct *tty) | 411 | static int if_chars_in_buffer(struct tty_struct *tty) |
414 | { | 412 | { |
415 | struct cardstate *cs; | 413 | struct cardstate *cs; |
416 | int retval = -ENODEV; | 414 | int retval = 0; |
417 | 415 | ||
418 | cs = (struct cardstate *) tty->driver_data; | 416 | cs = (struct cardstate *) tty->driver_data; |
419 | if (!cs) { | 417 | if (!cs) { |
420 | pr_err("%s: no cardstate\n", __func__); | 418 | pr_err("%s: no cardstate\n", __func__); |
421 | return -ENODEV; | 419 | return 0; |
422 | } | 420 | } |
423 | 421 | ||
424 | gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__); | 422 | gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__); |
425 | 423 | ||
426 | if (mutex_lock_interruptible(&cs->mutex)) | 424 | mutex_lock(&cs->mutex); |
427 | return -ERESTARTSYS; // FIXME -EINTR? | ||
428 | 425 | ||
429 | if (!cs->connected) { | 426 | if (!cs->connected) |
430 | gig_dbg(DEBUG_IF, "not connected"); | 427 | gig_dbg(DEBUG_IF, "not connected"); |
431 | retval = -ENODEV; | 428 | else if (!cs->open_count) |
432 | } else if (!cs->open_count) | ||
433 | dev_warn(cs->dev, "%s: device not opened\n", __func__); | 429 | dev_warn(cs->dev, "%s: device not opened\n", __func__); |
434 | else if (cs->mstate != MS_LOCKED) { | 430 | else if (cs->mstate != MS_LOCKED) |
435 | dev_warn(cs->dev, "can't write to unlocked device\n"); | 431 | dev_warn(cs->dev, "can't write to unlocked device\n"); |
436 | retval = -EBUSY; | 432 | else |
437 | } else | ||
438 | retval = cs->ops->chars_in_buffer(cs); | 433 | retval = cs->ops->chars_in_buffer(cs); |
439 | 434 | ||
440 | mutex_unlock(&cs->mutex); | 435 | mutex_unlock(&cs->mutex); |
diff --git a/drivers/md/dm-ioctl.c b/drivers/md/dm-ioctl.c index 7f77f18fcafa..a67942931582 100644 --- a/drivers/md/dm-ioctl.c +++ b/drivers/md/dm-ioctl.c | |||
@@ -1532,7 +1532,7 @@ static const struct file_operations _ctl_fops = { | |||
1532 | static struct miscdevice _dm_misc = { | 1532 | static struct miscdevice _dm_misc = { |
1533 | .minor = MISC_DYNAMIC_MINOR, | 1533 | .minor = MISC_DYNAMIC_MINOR, |
1534 | .name = DM_NAME, | 1534 | .name = DM_NAME, |
1535 | .devnode = "mapper/control", | 1535 | .nodename = "mapper/control", |
1536 | .fops = &_ctl_fops | 1536 | .fops = &_ctl_fops |
1537 | }; | 1537 | }; |
1538 | 1538 | ||
diff --git a/drivers/media/dvb/dvb-core/dvbdev.c b/drivers/media/dvb/dvb-core/dvbdev.c index 479dd05762a5..94159b90f733 100644 --- a/drivers/media/dvb/dvb-core/dvbdev.c +++ b/drivers/media/dvb/dvb-core/dvbdev.c | |||
@@ -447,7 +447,7 @@ static int dvb_uevent(struct device *dev, struct kobj_uevent_env *env) | |||
447 | return 0; | 447 | return 0; |
448 | } | 448 | } |
449 | 449 | ||
450 | static char *dvb_nodename(struct device *dev) | 450 | static char *dvb_devnode(struct device *dev, mode_t *mode) |
451 | { | 451 | { |
452 | struct dvb_device *dvbdev = dev_get_drvdata(dev); | 452 | struct dvb_device *dvbdev = dev_get_drvdata(dev); |
453 | 453 | ||
@@ -478,7 +478,7 @@ static int __init init_dvbdev(void) | |||
478 | goto error; | 478 | goto error; |
479 | } | 479 | } |
480 | dvb_class->dev_uevent = dvb_uevent; | 480 | dvb_class->dev_uevent = dvb_uevent; |
481 | dvb_class->nodename = dvb_nodename; | 481 | dvb_class->devnode = dvb_devnode; |
482 | return 0; | 482 | return 0; |
483 | 483 | ||
484 | error: | 484 | error: |
diff --git a/drivers/media/video/sh_mobile_ceu_camera.c b/drivers/media/video/sh_mobile_ceu_camera.c index e86878deea71..61c47b824083 100644 --- a/drivers/media/video/sh_mobile_ceu_camera.c +++ b/drivers/media/video/sh_mobile_ceu_camera.c | |||
@@ -30,7 +30,7 @@ | |||
30 | #include <linux/device.h> | 30 | #include <linux/device.h> |
31 | #include <linux/platform_device.h> | 31 | #include <linux/platform_device.h> |
32 | #include <linux/videodev2.h> | 32 | #include <linux/videodev2.h> |
33 | #include <linux/clk.h> | 33 | #include <linux/pm_runtime.h> |
34 | 34 | ||
35 | #include <media/v4l2-common.h> | 35 | #include <media/v4l2-common.h> |
36 | #include <media/v4l2-dev.h> | 36 | #include <media/v4l2-dev.h> |
@@ -86,7 +86,6 @@ struct sh_mobile_ceu_dev { | |||
86 | 86 | ||
87 | unsigned int irq; | 87 | unsigned int irq; |
88 | void __iomem *base; | 88 | void __iomem *base; |
89 | struct clk *clk; | ||
90 | unsigned long video_limit; | 89 | unsigned long video_limit; |
91 | 90 | ||
92 | /* lock used to protect videobuf */ | 91 | /* lock used to protect videobuf */ |
@@ -361,7 +360,7 @@ static int sh_mobile_ceu_add_device(struct soc_camera_device *icd) | |||
361 | if (ret) | 360 | if (ret) |
362 | goto err; | 361 | goto err; |
363 | 362 | ||
364 | clk_enable(pcdev->clk); | 363 | pm_runtime_get_sync(ici->dev); |
365 | 364 | ||
366 | ceu_write(pcdev, CAPSR, 1 << 16); /* reset */ | 365 | ceu_write(pcdev, CAPSR, 1 << 16); /* reset */ |
367 | while (ceu_read(pcdev, CSTSR) & 1) | 366 | while (ceu_read(pcdev, CSTSR) & 1) |
@@ -395,7 +394,7 @@ static void sh_mobile_ceu_remove_device(struct soc_camera_device *icd) | |||
395 | } | 394 | } |
396 | spin_unlock_irqrestore(&pcdev->lock, flags); | 395 | spin_unlock_irqrestore(&pcdev->lock, flags); |
397 | 396 | ||
398 | clk_disable(pcdev->clk); | 397 | pm_runtime_put_sync(ici->dev); |
399 | 398 | ||
400 | icd->ops->release(icd); | 399 | icd->ops->release(icd); |
401 | 400 | ||
@@ -798,7 +797,6 @@ static int sh_mobile_ceu_probe(struct platform_device *pdev) | |||
798 | struct sh_mobile_ceu_dev *pcdev; | 797 | struct sh_mobile_ceu_dev *pcdev; |
799 | struct resource *res; | 798 | struct resource *res; |
800 | void __iomem *base; | 799 | void __iomem *base; |
801 | char clk_name[8]; | ||
802 | unsigned int irq; | 800 | unsigned int irq; |
803 | int err = 0; | 801 | int err = 0; |
804 | 802 | ||
@@ -862,13 +860,9 @@ static int sh_mobile_ceu_probe(struct platform_device *pdev) | |||
862 | goto exit_release_mem; | 860 | goto exit_release_mem; |
863 | } | 861 | } |
864 | 862 | ||
865 | snprintf(clk_name, sizeof(clk_name), "ceu%d", pdev->id); | 863 | pm_suspend_ignore_children(&pdev->dev, true); |
866 | pcdev->clk = clk_get(&pdev->dev, clk_name); | 864 | pm_runtime_enable(&pdev->dev); |
867 | if (IS_ERR(pcdev->clk)) { | 865 | pm_runtime_resume(&pdev->dev); |
868 | dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name); | ||
869 | err = PTR_ERR(pcdev->clk); | ||
870 | goto exit_free_irq; | ||
871 | } | ||
872 | 866 | ||
873 | pcdev->ici.priv = pcdev; | 867 | pcdev->ici.priv = pcdev; |
874 | pcdev->ici.dev = &pdev->dev; | 868 | pcdev->ici.dev = &pdev->dev; |
@@ -878,12 +872,10 @@ static int sh_mobile_ceu_probe(struct platform_device *pdev) | |||
878 | 872 | ||
879 | err = soc_camera_host_register(&pcdev->ici); | 873 | err = soc_camera_host_register(&pcdev->ici); |
880 | if (err) | 874 | if (err) |
881 | goto exit_free_clk; | 875 | goto exit_free_irq; |
882 | 876 | ||
883 | return 0; | 877 | return 0; |
884 | 878 | ||
885 | exit_free_clk: | ||
886 | clk_put(pcdev->clk); | ||
887 | exit_free_irq: | 879 | exit_free_irq: |
888 | free_irq(pcdev->irq, pcdev); | 880 | free_irq(pcdev->irq, pcdev); |
889 | exit_release_mem: | 881 | exit_release_mem: |
@@ -904,7 +896,6 @@ static int sh_mobile_ceu_remove(struct platform_device *pdev) | |||
904 | struct sh_mobile_ceu_dev, ici); | 896 | struct sh_mobile_ceu_dev, ici); |
905 | 897 | ||
906 | soc_camera_host_unregister(soc_host); | 898 | soc_camera_host_unregister(soc_host); |
907 | clk_put(pcdev->clk); | ||
908 | free_irq(pcdev->irq, pcdev); | 899 | free_irq(pcdev->irq, pcdev); |
909 | if (platform_get_resource(pdev, IORESOURCE_MEM, 1)) | 900 | if (platform_get_resource(pdev, IORESOURCE_MEM, 1)) |
910 | dma_release_declared_memory(&pdev->dev); | 901 | dma_release_declared_memory(&pdev->dev); |
@@ -913,9 +904,27 @@ static int sh_mobile_ceu_remove(struct platform_device *pdev) | |||
913 | return 0; | 904 | return 0; |
914 | } | 905 | } |
915 | 906 | ||
907 | static int sh_mobile_ceu_runtime_nop(struct device *dev) | ||
908 | { | ||
909 | /* Runtime PM callback shared between ->runtime_suspend() | ||
910 | * and ->runtime_resume(). Simply returns success. | ||
911 | * | ||
912 | * This driver re-initializes all registers after | ||
913 | * pm_runtime_get_sync() anyway so there is no need | ||
914 | * to save and restore registers here. | ||
915 | */ | ||
916 | return 0; | ||
917 | } | ||
918 | |||
919 | static struct dev_pm_ops sh_mobile_ceu_dev_pm_ops = { | ||
920 | .runtime_suspend = sh_mobile_ceu_runtime_nop, | ||
921 | .runtime_resume = sh_mobile_ceu_runtime_nop, | ||
922 | }; | ||
923 | |||
916 | static struct platform_driver sh_mobile_ceu_driver = { | 924 | static struct platform_driver sh_mobile_ceu_driver = { |
917 | .driver = { | 925 | .driver = { |
918 | .name = "sh_mobile_ceu", | 926 | .name = "sh_mobile_ceu", |
927 | .pm = &sh_mobile_ceu_dev_pm_ops, | ||
919 | }, | 928 | }, |
920 | .probe = sh_mobile_ceu_probe, | 929 | .probe = sh_mobile_ceu_probe, |
921 | .remove = sh_mobile_ceu_remove, | 930 | .remove = sh_mobile_ceu_remove, |
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 491ac0f800d2..570be139f9df 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig | |||
@@ -108,6 +108,19 @@ config TWL4030_CORE | |||
108 | high speed USB OTG transceiver, an audio codec (on most | 108 | high speed USB OTG transceiver, an audio codec (on most |
109 | versions) and many other features. | 109 | versions) and many other features. |
110 | 110 | ||
111 | config TWL4030_POWER | ||
112 | bool "Support power resources on TWL4030 family chips" | ||
113 | depends on TWL4030_CORE && ARM | ||
114 | help | ||
115 | Say yes here if you want to use the power resources on the | ||
116 | TWL4030 family chips. Most of these resources are regulators, | ||
117 | which have a separate driver; some are control signals, such | ||
118 | as clock request handshaking. | ||
119 | |||
120 | This driver uses board-specific data to initialize the resources | ||
121 | and load scripts controling which resources are switched off/on | ||
122 | or reset when a sleep, wakeup or warm reset event occurs. | ||
123 | |||
111 | config MFD_TMIO | 124 | config MFD_TMIO |
112 | bool | 125 | bool |
113 | default n | 126 | default n |
@@ -157,6 +170,16 @@ config MFD_WM8400 | |||
157 | the device, additional drivers must be enabled in order to use | 170 | the device, additional drivers must be enabled in order to use |
158 | the functionality of the device. | 171 | the functionality of the device. |
159 | 172 | ||
173 | config MFD_WM831X | ||
174 | tristate "Support Wolfson Microelectronics WM831x PMICs" | ||
175 | select MFD_CORE | ||
176 | depends on I2C | ||
177 | help | ||
178 | Support for the Wolfson Microelecronics WM831x PMICs. This | ||
179 | driver provides common support for accessing the device, | ||
180 | additional drivers must be enabled in order to use the | ||
181 | functionality of the device. | ||
182 | |||
160 | config MFD_WM8350 | 183 | config MFD_WM8350 |
161 | tristate | 184 | tristate |
162 | 185 | ||
@@ -228,6 +251,16 @@ config MFD_PCF50633 | |||
228 | facilities, and registers devices for the various functions | 251 | facilities, and registers devices for the various functions |
229 | so that function-specific drivers can bind to them. | 252 | so that function-specific drivers can bind to them. |
230 | 253 | ||
254 | config MFD_MC13783 | ||
255 | tristate "Support Freescale MC13783" | ||
256 | depends on SPI_MASTER | ||
257 | select MFD_CORE | ||
258 | help | ||
259 | Support for the Freescale (Atlas) MC13783 PMIC and audio CODEC. | ||
260 | This driver provides common support for accessing the device, | ||
261 | additional drivers must be enabled in order to use the | ||
262 | functionality of the device. | ||
263 | |||
231 | config PCF50633_ADC | 264 | config PCF50633_ADC |
232 | tristate "Support for NXP PCF50633 ADC" | 265 | tristate "Support for NXP PCF50633 ADC" |
233 | depends on MFD_PCF50633 | 266 | depends on MFD_PCF50633 |
@@ -256,6 +289,15 @@ config AB3100_CORE | |||
256 | LEDs, vibrator, system power and temperature, power management | 289 | LEDs, vibrator, system power and temperature, power management |
257 | and ALSA sound. | 290 | and ALSA sound. |
258 | 291 | ||
292 | config AB3100_OTP | ||
293 | tristate "ST-Ericsson AB3100 OTP functions" | ||
294 | depends on AB3100_CORE | ||
295 | default y if AB3100_CORE | ||
296 | help | ||
297 | Select this to enable the AB3100 Mixed Signal IC OTP (one-time | ||
298 | programmable memory) support. This exposes a sysfs file to read | ||
299 | out OTP values. | ||
300 | |||
259 | config EZX_PCAP | 301 | config EZX_PCAP |
260 | bool "PCAP Support" | 302 | bool "PCAP Support" |
261 | depends on GENERIC_HARDIRQS && SPI_MASTER | 303 | depends on GENERIC_HARDIRQS && SPI_MASTER |
diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile index 6f8a9a1af20b..f3b277b90d40 100644 --- a/drivers/mfd/Makefile +++ b/drivers/mfd/Makefile | |||
@@ -15,6 +15,8 @@ obj-$(CONFIG_MFD_TC6387XB) += tc6387xb.o | |||
15 | obj-$(CONFIG_MFD_TC6393XB) += tc6393xb.o | 15 | obj-$(CONFIG_MFD_TC6393XB) += tc6393xb.o |
16 | 16 | ||
17 | obj-$(CONFIG_MFD_WM8400) += wm8400-core.o | 17 | obj-$(CONFIG_MFD_WM8400) += wm8400-core.o |
18 | wm831x-objs := wm831x-core.o wm831x-irq.o wm831x-otp.o | ||
19 | obj-$(CONFIG_MFD_WM831X) += wm831x.o | ||
18 | wm8350-objs := wm8350-core.o wm8350-regmap.o wm8350-gpio.o | 20 | wm8350-objs := wm8350-core.o wm8350-regmap.o wm8350-gpio.o |
19 | obj-$(CONFIG_MFD_WM8350) += wm8350.o | 21 | obj-$(CONFIG_MFD_WM8350) += wm8350.o |
20 | obj-$(CONFIG_MFD_WM8350_I2C) += wm8350-i2c.o | 22 | obj-$(CONFIG_MFD_WM8350_I2C) += wm8350-i2c.o |
@@ -23,6 +25,9 @@ obj-$(CONFIG_TPS65010) += tps65010.o | |||
23 | obj-$(CONFIG_MENELAUS) += menelaus.o | 25 | obj-$(CONFIG_MENELAUS) += menelaus.o |
24 | 26 | ||
25 | obj-$(CONFIG_TWL4030_CORE) += twl4030-core.o twl4030-irq.o | 27 | obj-$(CONFIG_TWL4030_CORE) += twl4030-core.o twl4030-irq.o |
28 | obj-$(CONFIG_TWL4030_POWER) += twl4030-power.o | ||
29 | |||
30 | obj-$(CONFIG_MFD_MC13783) += mc13783-core.o | ||
26 | 31 | ||
27 | obj-$(CONFIG_MFD_CORE) += mfd-core.o | 32 | obj-$(CONFIG_MFD_CORE) += mfd-core.o |
28 | 33 | ||
@@ -44,3 +49,4 @@ obj-$(CONFIG_MFD_PCF50633) += pcf50633-core.o | |||
44 | obj-$(CONFIG_PCF50633_ADC) += pcf50633-adc.o | 49 | obj-$(CONFIG_PCF50633_ADC) += pcf50633-adc.o |
45 | obj-$(CONFIG_PCF50633_GPIO) += pcf50633-gpio.o | 50 | obj-$(CONFIG_PCF50633_GPIO) += pcf50633-gpio.o |
46 | obj-$(CONFIG_AB3100_CORE) += ab3100-core.o | 51 | obj-$(CONFIG_AB3100_CORE) += ab3100-core.o |
52 | obj-$(CONFIG_AB3100_OTP) += ab3100-otp.o | ||
diff --git a/drivers/mfd/ab3100-core.c b/drivers/mfd/ab3100-core.c index 13e7d7bfe85f..c533f86ff5ea 100644 --- a/drivers/mfd/ab3100-core.c +++ b/drivers/mfd/ab3100-core.c | |||
@@ -14,7 +14,6 @@ | |||
14 | #include <linux/platform_device.h> | 14 | #include <linux/platform_device.h> |
15 | #include <linux/device.h> | 15 | #include <linux/device.h> |
16 | #include <linux/interrupt.h> | 16 | #include <linux/interrupt.h> |
17 | #include <linux/workqueue.h> | ||
18 | #include <linux/debugfs.h> | 17 | #include <linux/debugfs.h> |
19 | #include <linux/seq_file.h> | 18 | #include <linux/seq_file.h> |
20 | #include <linux/uaccess.h> | 19 | #include <linux/uaccess.h> |
@@ -77,7 +76,7 @@ u8 ab3100_get_chip_type(struct ab3100 *ab3100) | |||
77 | } | 76 | } |
78 | EXPORT_SYMBOL(ab3100_get_chip_type); | 77 | EXPORT_SYMBOL(ab3100_get_chip_type); |
79 | 78 | ||
80 | int ab3100_set_register(struct ab3100 *ab3100, u8 reg, u8 regval) | 79 | int ab3100_set_register_interruptible(struct ab3100 *ab3100, u8 reg, u8 regval) |
81 | { | 80 | { |
82 | u8 regandval[2] = {reg, regval}; | 81 | u8 regandval[2] = {reg, regval}; |
83 | int err; | 82 | int err; |
@@ -107,9 +106,10 @@ int ab3100_set_register(struct ab3100 *ab3100, u8 reg, u8 regval) | |||
107 | err = 0; | 106 | err = 0; |
108 | } | 107 | } |
109 | mutex_unlock(&ab3100->access_mutex); | 108 | mutex_unlock(&ab3100->access_mutex); |
110 | return 0; | 109 | return err; |
111 | } | 110 | } |
112 | EXPORT_SYMBOL(ab3100_set_register); | 111 | EXPORT_SYMBOL(ab3100_set_register_interruptible); |
112 | |||
113 | 113 | ||
114 | /* | 114 | /* |
115 | * The test registers exist at an I2C bus address up one | 115 | * The test registers exist at an I2C bus address up one |
@@ -118,7 +118,7 @@ EXPORT_SYMBOL(ab3100_set_register); | |||
118 | * anyway. It's currently only used from this file so declare | 118 | * anyway. It's currently only used from this file so declare |
119 | * it static and do not export. | 119 | * it static and do not export. |
120 | */ | 120 | */ |
121 | static int ab3100_set_test_register(struct ab3100 *ab3100, | 121 | static int ab3100_set_test_register_interruptible(struct ab3100 *ab3100, |
122 | u8 reg, u8 regval) | 122 | u8 reg, u8 regval) |
123 | { | 123 | { |
124 | u8 regandval[2] = {reg, regval}; | 124 | u8 regandval[2] = {reg, regval}; |
@@ -148,7 +148,8 @@ static int ab3100_set_test_register(struct ab3100 *ab3100, | |||
148 | return err; | 148 | return err; |
149 | } | 149 | } |
150 | 150 | ||
151 | int ab3100_get_register(struct ab3100 *ab3100, u8 reg, u8 *regval) | 151 | |
152 | int ab3100_get_register_interruptible(struct ab3100 *ab3100, u8 reg, u8 *regval) | ||
152 | { | 153 | { |
153 | int err; | 154 | int err; |
154 | 155 | ||
@@ -202,9 +203,10 @@ int ab3100_get_register(struct ab3100 *ab3100, u8 reg, u8 *regval) | |||
202 | mutex_unlock(&ab3100->access_mutex); | 203 | mutex_unlock(&ab3100->access_mutex); |
203 | return err; | 204 | return err; |
204 | } | 205 | } |
205 | EXPORT_SYMBOL(ab3100_get_register); | 206 | EXPORT_SYMBOL(ab3100_get_register_interruptible); |
206 | 207 | ||
207 | int ab3100_get_register_page(struct ab3100 *ab3100, | 208 | |
209 | int ab3100_get_register_page_interruptible(struct ab3100 *ab3100, | ||
208 | u8 first_reg, u8 *regvals, u8 numregs) | 210 | u8 first_reg, u8 *regvals, u8 numregs) |
209 | { | 211 | { |
210 | int err; | 212 | int err; |
@@ -258,9 +260,10 @@ int ab3100_get_register_page(struct ab3100 *ab3100, | |||
258 | mutex_unlock(&ab3100->access_mutex); | 260 | mutex_unlock(&ab3100->access_mutex); |
259 | return err; | 261 | return err; |
260 | } | 262 | } |
261 | EXPORT_SYMBOL(ab3100_get_register_page); | 263 | EXPORT_SYMBOL(ab3100_get_register_page_interruptible); |
264 | |||
262 | 265 | ||
263 | int ab3100_mask_and_set_register(struct ab3100 *ab3100, | 266 | int ab3100_mask_and_set_register_interruptible(struct ab3100 *ab3100, |
264 | u8 reg, u8 andmask, u8 ormask) | 267 | u8 reg, u8 andmask, u8 ormask) |
265 | { | 268 | { |
266 | u8 regandval[2] = {reg, 0}; | 269 | u8 regandval[2] = {reg, 0}; |
@@ -328,7 +331,8 @@ int ab3100_mask_and_set_register(struct ab3100 *ab3100, | |||
328 | mutex_unlock(&ab3100->access_mutex); | 331 | mutex_unlock(&ab3100->access_mutex); |
329 | return err; | 332 | return err; |
330 | } | 333 | } |
331 | EXPORT_SYMBOL(ab3100_mask_and_set_register); | 334 | EXPORT_SYMBOL(ab3100_mask_and_set_register_interruptible); |
335 | |||
332 | 336 | ||
333 | /* | 337 | /* |
334 | * Register a simple callback for handling any AB3100 events. | 338 | * Register a simple callback for handling any AB3100 events. |
@@ -371,7 +375,7 @@ static void ab3100_work(struct work_struct *work) | |||
371 | u32 fatevent; | 375 | u32 fatevent; |
372 | int err; | 376 | int err; |
373 | 377 | ||
374 | err = ab3100_get_register_page(ab3100, AB3100_EVENTA1, | 378 | err = ab3100_get_register_page_interruptible(ab3100, AB3100_EVENTA1, |
375 | event_regs, 3); | 379 | event_regs, 3); |
376 | if (err) | 380 | if (err) |
377 | goto err_event_wq; | 381 | goto err_event_wq; |
@@ -417,7 +421,7 @@ static irqreturn_t ab3100_irq_handler(int irq, void *data) | |||
417 | * stuff and we will re-enable the interrupts once th | 421 | * stuff and we will re-enable the interrupts once th |
418 | * worker has finished. | 422 | * worker has finished. |
419 | */ | 423 | */ |
420 | disable_irq(ab3100->i2c_client->irq); | 424 | disable_irq_nosync(irq); |
421 | schedule_work(&ab3100->work); | 425 | schedule_work(&ab3100->work); |
422 | return IRQ_HANDLED; | 426 | return IRQ_HANDLED; |
423 | } | 427 | } |
@@ -435,7 +439,7 @@ static int ab3100_registers_print(struct seq_file *s, void *p) | |||
435 | seq_printf(s, "AB3100 registers:\n"); | 439 | seq_printf(s, "AB3100 registers:\n"); |
436 | 440 | ||
437 | for (reg = 0; reg < 0xff; reg++) { | 441 | for (reg = 0; reg < 0xff; reg++) { |
438 | ab3100_get_register(ab3100, reg, &value); | 442 | ab3100_get_register_interruptible(ab3100, reg, &value); |
439 | seq_printf(s, "[0x%x]: 0x%x\n", reg, value); | 443 | seq_printf(s, "[0x%x]: 0x%x\n", reg, value); |
440 | } | 444 | } |
441 | return 0; | 445 | return 0; |
@@ -465,14 +469,14 @@ static int ab3100_get_set_reg_open_file(struct inode *inode, struct file *file) | |||
465 | return 0; | 469 | return 0; |
466 | } | 470 | } |
467 | 471 | ||
468 | static int ab3100_get_set_reg(struct file *file, | 472 | static ssize_t ab3100_get_set_reg(struct file *file, |
469 | const char __user *user_buf, | 473 | const char __user *user_buf, |
470 | size_t count, loff_t *ppos) | 474 | size_t count, loff_t *ppos) |
471 | { | 475 | { |
472 | struct ab3100_get_set_reg_priv *priv = file->private_data; | 476 | struct ab3100_get_set_reg_priv *priv = file->private_data; |
473 | struct ab3100 *ab3100 = priv->ab3100; | 477 | struct ab3100 *ab3100 = priv->ab3100; |
474 | char buf[32]; | 478 | char buf[32]; |
475 | int buf_size; | 479 | ssize_t buf_size; |
476 | int regp; | 480 | int regp; |
477 | unsigned long user_reg; | 481 | unsigned long user_reg; |
478 | int err; | 482 | int err; |
@@ -515,7 +519,7 @@ static int ab3100_get_set_reg(struct file *file, | |||
515 | u8 reg = (u8) user_reg; | 519 | u8 reg = (u8) user_reg; |
516 | u8 regvalue; | 520 | u8 regvalue; |
517 | 521 | ||
518 | ab3100_get_register(ab3100, reg, ®value); | 522 | ab3100_get_register_interruptible(ab3100, reg, ®value); |
519 | 523 | ||
520 | dev_info(ab3100->dev, | 524 | dev_info(ab3100->dev, |
521 | "debug read AB3100 reg[0x%02x]: 0x%02x\n", | 525 | "debug read AB3100 reg[0x%02x]: 0x%02x\n", |
@@ -547,8 +551,8 @@ static int ab3100_get_set_reg(struct file *file, | |||
547 | return -EINVAL; | 551 | return -EINVAL; |
548 | 552 | ||
549 | value = (u8) user_value; | 553 | value = (u8) user_value; |
550 | ab3100_set_register(ab3100, reg, value); | 554 | ab3100_set_register_interruptible(ab3100, reg, value); |
551 | ab3100_get_register(ab3100, reg, ®value); | 555 | ab3100_get_register_interruptible(ab3100, reg, ®value); |
552 | 556 | ||
553 | dev_info(ab3100->dev, | 557 | dev_info(ab3100->dev, |
554 | "debug write reg[0x%02x] with 0x%02x, " | 558 | "debug write reg[0x%02x] with 0x%02x, " |
@@ -662,7 +666,7 @@ ab3100_init_settings[] = { | |||
662 | .setting = 0x01 | 666 | .setting = 0x01 |
663 | }, { | 667 | }, { |
664 | .abreg = AB3100_IMRB1, | 668 | .abreg = AB3100_IMRB1, |
665 | .setting = 0xFF | 669 | .setting = 0xBF |
666 | }, { | 670 | }, { |
667 | .abreg = AB3100_IMRB2, | 671 | .abreg = AB3100_IMRB2, |
668 | .setting = 0xFF | 672 | .setting = 0xFF |
@@ -696,7 +700,7 @@ static int __init ab3100_setup(struct ab3100 *ab3100) | |||
696 | int i; | 700 | int i; |
697 | 701 | ||
698 | for (i = 0; i < ARRAY_SIZE(ab3100_init_settings); i++) { | 702 | for (i = 0; i < ARRAY_SIZE(ab3100_init_settings); i++) { |
699 | err = ab3100_set_register(ab3100, | 703 | err = ab3100_set_register_interruptible(ab3100, |
700 | ab3100_init_settings[i].abreg, | 704 | ab3100_init_settings[i].abreg, |
701 | ab3100_init_settings[i].setting); | 705 | ab3100_init_settings[i].setting); |
702 | if (err) | 706 | if (err) |
@@ -705,14 +709,14 @@ static int __init ab3100_setup(struct ab3100 *ab3100) | |||
705 | 709 | ||
706 | /* | 710 | /* |
707 | * Special trick to make the AB3100 use the 32kHz clock (RTC) | 711 | * Special trick to make the AB3100 use the 32kHz clock (RTC) |
708 | * bit 3 in test registe 0x02 is a special, undocumented test | 712 | * bit 3 in test register 0x02 is a special, undocumented test |
709 | * register bit that only exist in AB3100 P1E | 713 | * register bit that only exist in AB3100 P1E |
710 | */ | 714 | */ |
711 | if (ab3100->chip_id == 0xc4) { | 715 | if (ab3100->chip_id == 0xc4) { |
712 | dev_warn(ab3100->dev, | 716 | dev_warn(ab3100->dev, |
713 | "AB3100 P1E variant detected, " | 717 | "AB3100 P1E variant detected, " |
714 | "forcing chip to 32KHz\n"); | 718 | "forcing chip to 32KHz\n"); |
715 | err = ab3100_set_test_register(ab3100, 0x02, 0x08); | 719 | err = ab3100_set_test_register_interruptible(ab3100, 0x02, 0x08); |
716 | } | 720 | } |
717 | 721 | ||
718 | exit_no_setup: | 722 | exit_no_setup: |
@@ -833,6 +837,8 @@ static int __init ab3100_probe(struct i2c_client *client, | |||
833 | const struct i2c_device_id *id) | 837 | const struct i2c_device_id *id) |
834 | { | 838 | { |
835 | struct ab3100 *ab3100; | 839 | struct ab3100 *ab3100; |
840 | struct ab3100_platform_data *ab3100_plf_data = | ||
841 | client->dev.platform_data; | ||
836 | int err; | 842 | int err; |
837 | int i; | 843 | int i; |
838 | 844 | ||
@@ -852,8 +858,8 @@ static int __init ab3100_probe(struct i2c_client *client, | |||
852 | i2c_set_clientdata(client, ab3100); | 858 | i2c_set_clientdata(client, ab3100); |
853 | 859 | ||
854 | /* Read chip ID register */ | 860 | /* Read chip ID register */ |
855 | err = ab3100_get_register(ab3100, AB3100_CID, | 861 | err = ab3100_get_register_interruptible(ab3100, AB3100_CID, |
856 | &ab3100->chip_id); | 862 | &ab3100->chip_id); |
857 | if (err) { | 863 | if (err) { |
858 | dev_err(&client->dev, | 864 | dev_err(&client->dev, |
859 | "could not communicate with the AB3100 analog " | 865 | "could not communicate with the AB3100 analog " |
@@ -916,6 +922,8 @@ static int __init ab3100_probe(struct i2c_client *client, | |||
916 | for (i = 0; i < ARRAY_SIZE(ab3100_platform_devs); i++) { | 922 | for (i = 0; i < ARRAY_SIZE(ab3100_platform_devs); i++) { |
917 | ab3100_platform_devs[i]->dev.parent = | 923 | ab3100_platform_devs[i]->dev.parent = |
918 | &client->dev; | 924 | &client->dev; |
925 | ab3100_platform_devs[i]->dev.platform_data = | ||
926 | ab3100_plf_data; | ||
919 | platform_set_drvdata(ab3100_platform_devs[i], ab3100); | 927 | platform_set_drvdata(ab3100_platform_devs[i], ab3100); |
920 | } | 928 | } |
921 | 929 | ||
diff --git a/drivers/mfd/ab3100-otp.c b/drivers/mfd/ab3100-otp.c new file mode 100644 index 000000000000..0499b2031a2c --- /dev/null +++ b/drivers/mfd/ab3100-otp.c | |||
@@ -0,0 +1,268 @@ | |||
1 | /* | ||
2 | * drivers/mfd/ab3100_otp.c | ||
3 | * | ||
4 | * Copyright (C) 2007-2009 ST-Ericsson AB | ||
5 | * License terms: GNU General Public License (GPL) version 2 | ||
6 | * Driver to read out OTP from the AB3100 Mixed-signal circuit | ||
7 | * Author: Linus Walleij <linus.walleij@stericsson.com> | ||
8 | */ | ||
9 | |||
10 | #include <linux/module.h> | ||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/platform_device.h> | ||
14 | #include <linux/mfd/ab3100.h> | ||
15 | #include <linux/debugfs.h> | ||
16 | |||
17 | /* The OTP registers */ | ||
18 | #define AB3100_OTP0 0xb0 | ||
19 | #define AB3100_OTP1 0xb1 | ||
20 | #define AB3100_OTP2 0xb2 | ||
21 | #define AB3100_OTP3 0xb3 | ||
22 | #define AB3100_OTP4 0xb4 | ||
23 | #define AB3100_OTP5 0xb5 | ||
24 | #define AB3100_OTP6 0xb6 | ||
25 | #define AB3100_OTP7 0xb7 | ||
26 | #define AB3100_OTPP 0xbf | ||
27 | |||
28 | /** | ||
29 | * struct ab3100_otp | ||
30 | * @dev containing device | ||
31 | * @ab3100 a pointer to the parent ab3100 device struct | ||
32 | * @locked whether the OTP is locked, after locking, no more bits | ||
33 | * can be changed but before locking it is still possible | ||
34 | * to change bits from 1->0. | ||
35 | * @freq clocking frequency for the OTP, this frequency is either | ||
36 | * 32768Hz or 1MHz/30 | ||
37 | * @paf product activation flag, indicates whether this is a real | ||
38 | * product (paf true) or a lab board etc (paf false) | ||
39 | * @imeich if this is set it is possible to override the | ||
40 | * IMEI number found in the tac, fac and svn fields with | ||
41 | * (secured) software | ||
42 | * @cid customer ID | ||
43 | * @tac type allocation code of the IMEI | ||
44 | * @fac final assembly code of the IMEI | ||
45 | * @svn software version number of the IMEI | ||
46 | * @debugfs a debugfs file used when dumping to file | ||
47 | */ | ||
48 | struct ab3100_otp { | ||
49 | struct device *dev; | ||
50 | struct ab3100 *ab3100; | ||
51 | bool locked; | ||
52 | u32 freq; | ||
53 | bool paf; | ||
54 | bool imeich; | ||
55 | u16 cid:14; | ||
56 | u32 tac:20; | ||
57 | u8 fac; | ||
58 | u32 svn:20; | ||
59 | struct dentry *debugfs; | ||
60 | }; | ||
61 | |||
62 | static int __init ab3100_otp_read(struct ab3100_otp *otp) | ||
63 | { | ||
64 | struct ab3100 *ab = otp->ab3100; | ||
65 | u8 otpval[8]; | ||
66 | u8 otpp; | ||
67 | int err; | ||
68 | |||
69 | err = ab3100_get_register_interruptible(ab, AB3100_OTPP, &otpp); | ||
70 | if (err) { | ||
71 | dev_err(otp->dev, "unable to read OTPP register\n"); | ||
72 | return err; | ||
73 | } | ||
74 | |||
75 | err = ab3100_get_register_page_interruptible(ab, AB3100_OTP0, | ||
76 | otpval, 8); | ||
77 | if (err) { | ||
78 | dev_err(otp->dev, "unable to read OTP register page\n"); | ||
79 | return err; | ||
80 | } | ||
81 | |||
82 | /* Cache OTP properties, they never change by nature */ | ||
83 | otp->locked = (otpp & 0x80); | ||
84 | otp->freq = (otpp & 0x40) ? 32768 : 34100; | ||
85 | otp->paf = (otpval[1] & 0x80); | ||
86 | otp->imeich = (otpval[1] & 0x40); | ||
87 | otp->cid = ((otpval[1] << 8) | otpval[0]) & 0x3fff; | ||
88 | otp->tac = ((otpval[4] & 0x0f) << 16) | (otpval[3] << 8) | otpval[2]; | ||
89 | otp->fac = ((otpval[5] & 0x0f) << 4) | (otpval[4] >> 4); | ||
90 | otp->svn = (otpval[7] << 12) | (otpval[6] << 4) | (otpval[5] >> 4); | ||
91 | return 0; | ||
92 | } | ||
93 | |||
94 | /* | ||
95 | * This is a simple debugfs human-readable file that dumps out | ||
96 | * the contents of the OTP. | ||
97 | */ | ||
98 | #ifdef CONFIG_DEBUGFS | ||
99 | static int show_otp(struct seq_file *s, void *v) | ||
100 | { | ||
101 | struct ab3100_otp *otp = s->private; | ||
102 | int err; | ||
103 | |||
104 | seq_printf(s, "OTP is %s\n", otp->locked ? "LOCKED" : "UNLOCKED"); | ||
105 | seq_printf(s, "OTP clock switch startup is %uHz\n", otp->freq); | ||
106 | seq_printf(s, "PAF is %s\n", otp->paf ? "SET" : "NOT SET"); | ||
107 | seq_printf(s, "IMEI is %s\n", otp->imeich ? | ||
108 | "CHANGEABLE" : "NOT CHANGEABLE"); | ||
109 | seq_printf(s, "CID: 0x%04x (decimal: %d)\n", otp->cid, otp->cid); | ||
110 | seq_printf(s, "IMEI: %u-%u-%u\n", otp->tac, otp->fac, otp->svn); | ||
111 | return 0; | ||
112 | } | ||
113 | |||
114 | static int ab3100_otp_open(struct inode *inode, struct file *file) | ||
115 | { | ||
116 | return single_open(file, ab3100_otp_show, inode->i_private); | ||
117 | } | ||
118 | |||
119 | static const struct file_operations ab3100_otp_operations = { | ||
120 | .open = ab3100_otp_open, | ||
121 | .read = seq_read, | ||
122 | .llseek = seq_lseek, | ||
123 | .release = single_release, | ||
124 | }; | ||
125 | |||
126 | static int __init ab3100_otp_init_debugfs(struct device *dev, | ||
127 | struct ab3100_otp *otp) | ||
128 | { | ||
129 | otp->debugfs = debugfs_create_file("ab3100_otp", S_IFREG | S_IRUGO, | ||
130 | NULL, otp, | ||
131 | &ab3100_otp_operations); | ||
132 | if (!otp->debugfs) { | ||
133 | dev_err(dev, "AB3100 debugfs OTP file registration failed!\n"); | ||
134 | return err; | ||
135 | } | ||
136 | } | ||
137 | |||
138 | static void __exit ab3100_otp_exit_debugfs(struct ab3100_otp *otp) | ||
139 | { | ||
140 | debugfs_remove_file(otp->debugfs); | ||
141 | } | ||
142 | #else | ||
143 | /* Compile this out if debugfs not selected */ | ||
144 | static inline int __init ab3100_otp_init_debugfs(struct device *dev, | ||
145 | struct ab3100_otp *otp) | ||
146 | { | ||
147 | return 0; | ||
148 | } | ||
149 | |||
150 | static inline void __exit ab3100_otp_exit_debugfs(struct ab3100_otp *otp) | ||
151 | { | ||
152 | } | ||
153 | #endif | ||
154 | |||
155 | #define SHOW_AB3100_ATTR(name) \ | ||
156 | static ssize_t ab3100_otp_##name##_show(struct device *dev, \ | ||
157 | struct device_attribute *attr, \ | ||
158 | char *buf) \ | ||
159 | {\ | ||
160 | struct ab3100_otp *otp = dev_get_drvdata(dev); \ | ||
161 | return sprintf(buf, "%u\n", otp->name); \ | ||
162 | } | ||
163 | |||
164 | SHOW_AB3100_ATTR(locked) | ||
165 | SHOW_AB3100_ATTR(freq) | ||
166 | SHOW_AB3100_ATTR(paf) | ||
167 | SHOW_AB3100_ATTR(imeich) | ||
168 | SHOW_AB3100_ATTR(cid) | ||
169 | SHOW_AB3100_ATTR(fac) | ||
170 | SHOW_AB3100_ATTR(tac) | ||
171 | SHOW_AB3100_ATTR(svn) | ||
172 | |||
173 | static struct device_attribute ab3100_otp_attrs[] = { | ||
174 | __ATTR(locked, S_IRUGO, ab3100_otp_locked_show, NULL), | ||
175 | __ATTR(freq, S_IRUGO, ab3100_otp_freq_show, NULL), | ||
176 | __ATTR(paf, S_IRUGO, ab3100_otp_paf_show, NULL), | ||
177 | __ATTR(imeich, S_IRUGO, ab3100_otp_imeich_show, NULL), | ||
178 | __ATTR(cid, S_IRUGO, ab3100_otp_cid_show, NULL), | ||
179 | __ATTR(fac, S_IRUGO, ab3100_otp_fac_show, NULL), | ||
180 | __ATTR(tac, S_IRUGO, ab3100_otp_tac_show, NULL), | ||
181 | __ATTR(svn, S_IRUGO, ab3100_otp_svn_show, NULL), | ||
182 | }; | ||
183 | |||
184 | static int __init ab3100_otp_probe(struct platform_device *pdev) | ||
185 | { | ||
186 | struct ab3100_otp *otp; | ||
187 | int err = 0; | ||
188 | int i; | ||
189 | |||
190 | otp = kzalloc(sizeof(struct ab3100_otp), GFP_KERNEL); | ||
191 | if (!otp) { | ||
192 | dev_err(&pdev->dev, "could not allocate AB3100 OTP device\n"); | ||
193 | return -ENOMEM; | ||
194 | } | ||
195 | otp->dev = &pdev->dev; | ||
196 | |||
197 | /* Replace platform data coming in with a local struct */ | ||
198 | otp->ab3100 = platform_get_drvdata(pdev); | ||
199 | platform_set_drvdata(pdev, otp); | ||
200 | |||
201 | err = ab3100_otp_read(otp); | ||
202 | if (err) | ||
203 | return err; | ||
204 | |||
205 | dev_info(&pdev->dev, "AB3100 OTP readout registered\n"); | ||
206 | |||
207 | /* sysfs entries */ | ||
208 | for (i = 0; i < ARRAY_SIZE(ab3100_otp_attrs); i++) { | ||
209 | err = device_create_file(&pdev->dev, | ||
210 | &ab3100_otp_attrs[i]); | ||
211 | if (err) | ||
212 | goto out_no_sysfs; | ||
213 | } | ||
214 | |||
215 | /* debugfs entries */ | ||
216 | err = ab3100_otp_init_debugfs(&pdev->dev, otp); | ||
217 | if (err) | ||
218 | goto out_no_debugfs; | ||
219 | |||
220 | return 0; | ||
221 | |||
222 | out_no_sysfs: | ||
223 | for (i = 0; i < ARRAY_SIZE(ab3100_otp_attrs); i++) | ||
224 | device_remove_file(&pdev->dev, | ||
225 | &ab3100_otp_attrs[i]); | ||
226 | out_no_debugfs: | ||
227 | kfree(otp); | ||
228 | return err; | ||
229 | } | ||
230 | |||
231 | static int __exit ab3100_otp_remove(struct platform_device *pdev) | ||
232 | { | ||
233 | struct ab3100_otp *otp = platform_get_drvdata(pdev); | ||
234 | int i; | ||
235 | |||
236 | for (i = 0; i < ARRAY_SIZE(ab3100_otp_attrs); i++) | ||
237 | device_remove_file(&pdev->dev, | ||
238 | &ab3100_otp_attrs[i]); | ||
239 | ab3100_otp_exit_debugfs(otp); | ||
240 | kfree(otp); | ||
241 | return 0; | ||
242 | } | ||
243 | |||
244 | static struct platform_driver ab3100_otp_driver = { | ||
245 | .driver = { | ||
246 | .name = "ab3100-otp", | ||
247 | .owner = THIS_MODULE, | ||
248 | }, | ||
249 | .remove = __exit_p(ab3100_otp_remove), | ||
250 | }; | ||
251 | |||
252 | static int __init ab3100_otp_init(void) | ||
253 | { | ||
254 | return platform_driver_probe(&ab3100_otp_driver, | ||
255 | ab3100_otp_probe); | ||
256 | } | ||
257 | |||
258 | static void __exit ab3100_otp_exit(void) | ||
259 | { | ||
260 | platform_driver_unregister(&ab3100_otp_driver); | ||
261 | } | ||
262 | |||
263 | module_init(ab3100_otp_init); | ||
264 | module_exit(ab3100_otp_exit); | ||
265 | |||
266 | MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>"); | ||
267 | MODULE_DESCRIPTION("AB3100 OTP Readout Driver"); | ||
268 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/mfd/dm355evm_msp.c b/drivers/mfd/dm355evm_msp.c index 5b6e58a3ba46..3d4a861976ca 100644 --- a/drivers/mfd/dm355evm_msp.c +++ b/drivers/mfd/dm355evm_msp.c | |||
@@ -107,8 +107,16 @@ static const u8 msp_gpios[] = { | |||
107 | MSP_GPIO(2, SWITCH1), MSP_GPIO(3, SWITCH1), | 107 | MSP_GPIO(2, SWITCH1), MSP_GPIO(3, SWITCH1), |
108 | MSP_GPIO(4, SWITCH1), | 108 | MSP_GPIO(4, SWITCH1), |
109 | /* switches on MMC/SD sockets */ | 109 | /* switches on MMC/SD sockets */ |
110 | MSP_GPIO(1, SDMMC), MSP_GPIO(2, SDMMC), /* mmc0 WP, nCD */ | 110 | /* |
111 | MSP_GPIO(3, SDMMC), MSP_GPIO(4, SDMMC), /* mmc1 WP, nCD */ | 111 | * Note: EVMDM355_ECP_VA4.pdf suggests that Bit 2 and 4 should be |
112 | * checked for card detection. However on the EVM bit 1 and 3 gives | ||
113 | * this status, for 0 and 1 instance respectively. The pdf also | ||
114 | * suggests that Bit 1 and 3 should be checked for write protection. | ||
115 | * However on the EVM bit 2 and 4 gives this status,for 0 and 1 | ||
116 | * instance respectively. | ||
117 | */ | ||
118 | MSP_GPIO(2, SDMMC), MSP_GPIO(1, SDMMC), /* mmc0 WP, nCD */ | ||
119 | MSP_GPIO(4, SDMMC), MSP_GPIO(3, SDMMC), /* mmc1 WP, nCD */ | ||
112 | }; | 120 | }; |
113 | 121 | ||
114 | #define MSP_GPIO_REG(offset) (msp_gpios[(offset)] >> 3) | 122 | #define MSP_GPIO_REG(offset) (msp_gpios[(offset)] >> 3) |
diff --git a/drivers/mfd/ezx-pcap.c b/drivers/mfd/ezx-pcap.c index c1de4afa89a6..016be4938e4c 100644 --- a/drivers/mfd/ezx-pcap.c +++ b/drivers/mfd/ezx-pcap.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/irq.h> | 17 | #include <linux/irq.h> |
18 | #include <linux/mfd/ezx-pcap.h> | 18 | #include <linux/mfd/ezx-pcap.h> |
19 | #include <linux/spi/spi.h> | 19 | #include <linux/spi/spi.h> |
20 | #include <linux/gpio.h> | ||
20 | 21 | ||
21 | #define PCAP_ADC_MAXQ 8 | 22 | #define PCAP_ADC_MAXQ 8 |
22 | struct pcap_adc_request { | 23 | struct pcap_adc_request { |
@@ -106,11 +107,35 @@ int ezx_pcap_read(struct pcap_chip *pcap, u8 reg_num, u32 *value) | |||
106 | } | 107 | } |
107 | EXPORT_SYMBOL_GPL(ezx_pcap_read); | 108 | EXPORT_SYMBOL_GPL(ezx_pcap_read); |
108 | 109 | ||
110 | int ezx_pcap_set_bits(struct pcap_chip *pcap, u8 reg_num, u32 mask, u32 val) | ||
111 | { | ||
112 | int ret; | ||
113 | u32 tmp = PCAP_REGISTER_READ_OP_BIT | | ||
114 | (reg_num << PCAP_REGISTER_ADDRESS_SHIFT); | ||
115 | |||
116 | mutex_lock(&pcap->io_mutex); | ||
117 | ret = ezx_pcap_putget(pcap, &tmp); | ||
118 | if (ret) | ||
119 | goto out_unlock; | ||
120 | |||
121 | tmp &= (PCAP_REGISTER_VALUE_MASK & ~mask); | ||
122 | tmp |= (val & mask) | PCAP_REGISTER_WRITE_OP_BIT | | ||
123 | (reg_num << PCAP_REGISTER_ADDRESS_SHIFT); | ||
124 | |||
125 | ret = ezx_pcap_putget(pcap, &tmp); | ||
126 | out_unlock: | ||
127 | mutex_unlock(&pcap->io_mutex); | ||
128 | |||
129 | return ret; | ||
130 | } | ||
131 | EXPORT_SYMBOL_GPL(ezx_pcap_set_bits); | ||
132 | |||
109 | /* IRQ */ | 133 | /* IRQ */ |
110 | static inline unsigned int irq2pcap(struct pcap_chip *pcap, int irq) | 134 | int irq_to_pcap(struct pcap_chip *pcap, int irq) |
111 | { | 135 | { |
112 | return 1 << (irq - pcap->irq_base); | 136 | return irq - pcap->irq_base; |
113 | } | 137 | } |
138 | EXPORT_SYMBOL_GPL(irq_to_pcap); | ||
114 | 139 | ||
115 | int pcap_to_irq(struct pcap_chip *pcap, int irq) | 140 | int pcap_to_irq(struct pcap_chip *pcap, int irq) |
116 | { | 141 | { |
@@ -122,7 +147,7 @@ static void pcap_mask_irq(unsigned int irq) | |||
122 | { | 147 | { |
123 | struct pcap_chip *pcap = get_irq_chip_data(irq); | 148 | struct pcap_chip *pcap = get_irq_chip_data(irq); |
124 | 149 | ||
125 | pcap->msr |= irq2pcap(pcap, irq); | 150 | pcap->msr |= 1 << irq_to_pcap(pcap, irq); |
126 | queue_work(pcap->workqueue, &pcap->msr_work); | 151 | queue_work(pcap->workqueue, &pcap->msr_work); |
127 | } | 152 | } |
128 | 153 | ||
@@ -130,7 +155,7 @@ static void pcap_unmask_irq(unsigned int irq) | |||
130 | { | 155 | { |
131 | struct pcap_chip *pcap = get_irq_chip_data(irq); | 156 | struct pcap_chip *pcap = get_irq_chip_data(irq); |
132 | 157 | ||
133 | pcap->msr &= ~irq2pcap(pcap, irq); | 158 | pcap->msr &= ~(1 << irq_to_pcap(pcap, irq)); |
134 | queue_work(pcap->workqueue, &pcap->msr_work); | 159 | queue_work(pcap->workqueue, &pcap->msr_work); |
135 | } | 160 | } |
136 | 161 | ||
@@ -154,34 +179,38 @@ static void pcap_isr_work(struct work_struct *work) | |||
154 | u32 msr, isr, int_sel, service; | 179 | u32 msr, isr, int_sel, service; |
155 | int irq; | 180 | int irq; |
156 | 181 | ||
157 | ezx_pcap_read(pcap, PCAP_REG_MSR, &msr); | 182 | do { |
158 | ezx_pcap_read(pcap, PCAP_REG_ISR, &isr); | 183 | ezx_pcap_read(pcap, PCAP_REG_MSR, &msr); |
184 | ezx_pcap_read(pcap, PCAP_REG_ISR, &isr); | ||
159 | 185 | ||
160 | /* We cant service/ack irqs that are assigned to port 2 */ | 186 | /* We cant service/ack irqs that are assigned to port 2 */ |
161 | if (!(pdata->config & PCAP_SECOND_PORT)) { | 187 | if (!(pdata->config & PCAP_SECOND_PORT)) { |
162 | ezx_pcap_read(pcap, PCAP_REG_INT_SEL, &int_sel); | 188 | ezx_pcap_read(pcap, PCAP_REG_INT_SEL, &int_sel); |
163 | isr &= ~int_sel; | 189 | isr &= ~int_sel; |
164 | } | 190 | } |
165 | ezx_pcap_write(pcap, PCAP_REG_ISR, isr); | ||
166 | 191 | ||
167 | local_irq_disable(); | 192 | ezx_pcap_write(pcap, PCAP_REG_MSR, isr | msr); |
168 | service = isr & ~msr; | 193 | ezx_pcap_write(pcap, PCAP_REG_ISR, isr); |
169 | 194 | ||
170 | for (irq = pcap->irq_base; service; service >>= 1, irq++) { | 195 | local_irq_disable(); |
171 | if (service & 1) { | 196 | service = isr & ~msr; |
172 | struct irq_desc *desc = irq_to_desc(irq); | 197 | for (irq = pcap->irq_base; service; service >>= 1, irq++) { |
198 | if (service & 1) { | ||
199 | struct irq_desc *desc = irq_to_desc(irq); | ||
173 | 200 | ||
174 | if (WARN(!desc, KERN_WARNING | 201 | if (WARN(!desc, KERN_WARNING |
175 | "Invalid PCAP IRQ %d\n", irq)) | 202 | "Invalid PCAP IRQ %d\n", irq)) |
176 | break; | 203 | break; |
177 | 204 | ||
178 | if (desc->status & IRQ_DISABLED) | 205 | if (desc->status & IRQ_DISABLED) |
179 | note_interrupt(irq, desc, IRQ_NONE); | 206 | note_interrupt(irq, desc, IRQ_NONE); |
180 | else | 207 | else |
181 | desc->handle_irq(irq, desc); | 208 | desc->handle_irq(irq, desc); |
209 | } | ||
182 | } | 210 | } |
183 | } | 211 | local_irq_enable(); |
184 | local_irq_enable(); | 212 | ezx_pcap_write(pcap, PCAP_REG_MSR, pcap->msr); |
213 | } while (gpio_get_value(irq_to_gpio(pcap->spi->irq))); | ||
185 | } | 214 | } |
186 | 215 | ||
187 | static void pcap_irq_handler(unsigned int irq, struct irq_desc *desc) | 216 | static void pcap_irq_handler(unsigned int irq, struct irq_desc *desc) |
@@ -194,6 +223,19 @@ static void pcap_irq_handler(unsigned int irq, struct irq_desc *desc) | |||
194 | } | 223 | } |
195 | 224 | ||
196 | /* ADC */ | 225 | /* ADC */ |
226 | void pcap_set_ts_bits(struct pcap_chip *pcap, u32 bits) | ||
227 | { | ||
228 | u32 tmp; | ||
229 | |||
230 | mutex_lock(&pcap->adc_mutex); | ||
231 | ezx_pcap_read(pcap, PCAP_REG_ADC, &tmp); | ||
232 | tmp &= ~(PCAP_ADC_TS_M_MASK | PCAP_ADC_TS_REF_LOWPWR); | ||
233 | tmp |= bits & (PCAP_ADC_TS_M_MASK | PCAP_ADC_TS_REF_LOWPWR); | ||
234 | ezx_pcap_write(pcap, PCAP_REG_ADC, tmp); | ||
235 | mutex_unlock(&pcap->adc_mutex); | ||
236 | } | ||
237 | EXPORT_SYMBOL_GPL(pcap_set_ts_bits); | ||
238 | |||
197 | static void pcap_disable_adc(struct pcap_chip *pcap) | 239 | static void pcap_disable_adc(struct pcap_chip *pcap) |
198 | { | 240 | { |
199 | u32 tmp; | 241 | u32 tmp; |
@@ -216,15 +258,16 @@ static void pcap_adc_trigger(struct pcap_chip *pcap) | |||
216 | mutex_unlock(&pcap->adc_mutex); | 258 | mutex_unlock(&pcap->adc_mutex); |
217 | return; | 259 | return; |
218 | } | 260 | } |
219 | mutex_unlock(&pcap->adc_mutex); | 261 | /* start conversion on requested bank, save TS_M bits */ |
220 | 262 | ezx_pcap_read(pcap, PCAP_REG_ADC, &tmp); | |
221 | /* start conversion on requested bank */ | 263 | tmp &= (PCAP_ADC_TS_M_MASK | PCAP_ADC_TS_REF_LOWPWR); |
222 | tmp = pcap->adc_queue[head]->flags | PCAP_ADC_ADEN; | 264 | tmp |= pcap->adc_queue[head]->flags | PCAP_ADC_ADEN; |
223 | 265 | ||
224 | if (pcap->adc_queue[head]->bank == PCAP_ADC_BANK_1) | 266 | if (pcap->adc_queue[head]->bank == PCAP_ADC_BANK_1) |
225 | tmp |= PCAP_ADC_AD_SEL1; | 267 | tmp |= PCAP_ADC_AD_SEL1; |
226 | 268 | ||
227 | ezx_pcap_write(pcap, PCAP_REG_ADC, tmp); | 269 | ezx_pcap_write(pcap, PCAP_REG_ADC, tmp); |
270 | mutex_unlock(&pcap->adc_mutex); | ||
228 | ezx_pcap_write(pcap, PCAP_REG_ADR, PCAP_ADR_ASC); | 271 | ezx_pcap_write(pcap, PCAP_REG_ADR, PCAP_ADR_ASC); |
229 | } | 272 | } |
230 | 273 | ||
@@ -499,7 +542,7 @@ static void __exit ezx_pcap_exit(void) | |||
499 | spi_unregister_driver(&ezxpcap_driver); | 542 | spi_unregister_driver(&ezxpcap_driver); |
500 | } | 543 | } |
501 | 544 | ||
502 | module_init(ezx_pcap_init); | 545 | subsys_initcall(ezx_pcap_init); |
503 | module_exit(ezx_pcap_exit); | 546 | module_exit(ezx_pcap_exit); |
504 | 547 | ||
505 | MODULE_LICENSE("GPL"); | 548 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/mfd/mc13783-core.c b/drivers/mfd/mc13783-core.c new file mode 100644 index 000000000000..e354d2912ef1 --- /dev/null +++ b/drivers/mfd/mc13783-core.c | |||
@@ -0,0 +1,427 @@ | |||
1 | /* | ||
2 | * Copyright 2009 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de> | ||
3 | * | ||
4 | * This code is in parts based on wm8350-core.c and pcf50633-core.c | ||
5 | * | ||
6 | * Initial development of this code was funded by | ||
7 | * Phytec Messtechnik GmbH, http://www.phytec.de | ||
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 as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software | ||
21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
22 | */ | ||
23 | |||
24 | #include <linux/mfd/mc13783-private.h> | ||
25 | #include <linux/platform_device.h> | ||
26 | #include <linux/mfd/mc13783.h> | ||
27 | #include <linux/completion.h> | ||
28 | #include <linux/interrupt.h> | ||
29 | #include <linux/mfd/core.h> | ||
30 | #include <linux/spi/spi.h> | ||
31 | #include <linux/uaccess.h> | ||
32 | #include <linux/kernel.h> | ||
33 | #include <linux/module.h> | ||
34 | #include <linux/init.h> | ||
35 | #include <linux/slab.h> | ||
36 | #include <linux/irq.h> | ||
37 | |||
38 | #define MC13783_MAX_REG_NUM 0x3f | ||
39 | #define MC13783_FRAME_MASK 0x00ffffff | ||
40 | #define MC13783_MAX_REG_NUM 0x3f | ||
41 | #define MC13783_REG_NUM_SHIFT 0x19 | ||
42 | #define MC13783_WRITE_BIT_SHIFT 31 | ||
43 | |||
44 | static inline int spi_rw(struct spi_device *spi, u8 * buf, size_t len) | ||
45 | { | ||
46 | struct spi_transfer t = { | ||
47 | .tx_buf = (const void *)buf, | ||
48 | .rx_buf = buf, | ||
49 | .len = len, | ||
50 | .cs_change = 0, | ||
51 | .delay_usecs = 0, | ||
52 | }; | ||
53 | struct spi_message m; | ||
54 | |||
55 | spi_message_init(&m); | ||
56 | spi_message_add_tail(&t, &m); | ||
57 | if (spi_sync(spi, &m) != 0 || m.status != 0) | ||
58 | return -EINVAL; | ||
59 | return len - m.actual_length; | ||
60 | } | ||
61 | |||
62 | static int mc13783_read(struct mc13783 *mc13783, int reg_num, u32 *reg_val) | ||
63 | { | ||
64 | unsigned int frame = 0; | ||
65 | int ret = 0; | ||
66 | |||
67 | if (reg_num > MC13783_MAX_REG_NUM) | ||
68 | return -EINVAL; | ||
69 | |||
70 | frame |= reg_num << MC13783_REG_NUM_SHIFT; | ||
71 | |||
72 | ret = spi_rw(mc13783->spi_device, (u8 *)&frame, 4); | ||
73 | |||
74 | *reg_val = frame & MC13783_FRAME_MASK; | ||
75 | |||
76 | return ret; | ||
77 | } | ||
78 | |||
79 | static int mc13783_write(struct mc13783 *mc13783, int reg_num, u32 reg_val) | ||
80 | { | ||
81 | unsigned int frame = 0; | ||
82 | |||
83 | if (reg_num > MC13783_MAX_REG_NUM) | ||
84 | return -EINVAL; | ||
85 | |||
86 | frame |= (1 << MC13783_WRITE_BIT_SHIFT); | ||
87 | frame |= reg_num << MC13783_REG_NUM_SHIFT; | ||
88 | frame |= reg_val & MC13783_FRAME_MASK; | ||
89 | |||
90 | return spi_rw(mc13783->spi_device, (u8 *)&frame, 4); | ||
91 | } | ||
92 | |||
93 | int mc13783_reg_read(struct mc13783 *mc13783, int reg_num, u32 *reg_val) | ||
94 | { | ||
95 | int ret; | ||
96 | |||
97 | mutex_lock(&mc13783->io_lock); | ||
98 | ret = mc13783_read(mc13783, reg_num, reg_val); | ||
99 | mutex_unlock(&mc13783->io_lock); | ||
100 | |||
101 | return ret; | ||
102 | } | ||
103 | EXPORT_SYMBOL_GPL(mc13783_reg_read); | ||
104 | |||
105 | int mc13783_reg_write(struct mc13783 *mc13783, int reg_num, u32 reg_val) | ||
106 | { | ||
107 | int ret; | ||
108 | |||
109 | mutex_lock(&mc13783->io_lock); | ||
110 | ret = mc13783_write(mc13783, reg_num, reg_val); | ||
111 | mutex_unlock(&mc13783->io_lock); | ||
112 | |||
113 | return ret; | ||
114 | } | ||
115 | EXPORT_SYMBOL_GPL(mc13783_reg_write); | ||
116 | |||
117 | /** | ||
118 | * mc13783_set_bits - Bitmask write | ||
119 | * | ||
120 | * @mc13783: Pointer to mc13783 control structure | ||
121 | * @reg: Register to access | ||
122 | * @mask: Mask of bits to change | ||
123 | * @val: Value to set for masked bits | ||
124 | */ | ||
125 | int mc13783_set_bits(struct mc13783 *mc13783, int reg, u32 mask, u32 val) | ||
126 | { | ||
127 | u32 tmp; | ||
128 | int ret; | ||
129 | |||
130 | mutex_lock(&mc13783->io_lock); | ||
131 | |||
132 | ret = mc13783_read(mc13783, reg, &tmp); | ||
133 | tmp = (tmp & ~mask) | val; | ||
134 | if (ret == 0) | ||
135 | ret = mc13783_write(mc13783, reg, tmp); | ||
136 | |||
137 | mutex_unlock(&mc13783->io_lock); | ||
138 | |||
139 | return ret; | ||
140 | } | ||
141 | EXPORT_SYMBOL_GPL(mc13783_set_bits); | ||
142 | |||
143 | int mc13783_register_irq(struct mc13783 *mc13783, int irq, | ||
144 | void (*handler) (int, void *), void *data) | ||
145 | { | ||
146 | if (irq < 0 || irq > MC13783_NUM_IRQ || !handler) | ||
147 | return -EINVAL; | ||
148 | |||
149 | if (WARN_ON(mc13783->irq_handler[irq].handler)) | ||
150 | return -EBUSY; | ||
151 | |||
152 | mutex_lock(&mc13783->io_lock); | ||
153 | mc13783->irq_handler[irq].handler = handler; | ||
154 | mc13783->irq_handler[irq].data = data; | ||
155 | mutex_unlock(&mc13783->io_lock); | ||
156 | |||
157 | return 0; | ||
158 | } | ||
159 | EXPORT_SYMBOL_GPL(mc13783_register_irq); | ||
160 | |||
161 | int mc13783_free_irq(struct mc13783 *mc13783, int irq) | ||
162 | { | ||
163 | if (irq < 0 || irq > MC13783_NUM_IRQ) | ||
164 | return -EINVAL; | ||
165 | |||
166 | mutex_lock(&mc13783->io_lock); | ||
167 | mc13783->irq_handler[irq].handler = NULL; | ||
168 | mutex_unlock(&mc13783->io_lock); | ||
169 | |||
170 | return 0; | ||
171 | } | ||
172 | EXPORT_SYMBOL_GPL(mc13783_free_irq); | ||
173 | |||
174 | static void mc13783_irq_work(struct work_struct *work) | ||
175 | { | ||
176 | struct mc13783 *mc13783 = container_of(work, struct mc13783, work); | ||
177 | int i; | ||
178 | unsigned int adc_sts; | ||
179 | |||
180 | /* check if the adc has finished any completion */ | ||
181 | mc13783_reg_read(mc13783, MC13783_REG_INTERRUPT_STATUS_0, &adc_sts); | ||
182 | mc13783_reg_write(mc13783, MC13783_REG_INTERRUPT_STATUS_0, | ||
183 | adc_sts & MC13783_INT_STAT_ADCDONEI); | ||
184 | |||
185 | if (adc_sts & MC13783_INT_STAT_ADCDONEI) | ||
186 | complete_all(&mc13783->adc_done); | ||
187 | |||
188 | for (i = 0; i < MC13783_NUM_IRQ; i++) | ||
189 | if (mc13783->irq_handler[i].handler) | ||
190 | mc13783->irq_handler[i].handler(i, | ||
191 | mc13783->irq_handler[i].data); | ||
192 | enable_irq(mc13783->irq); | ||
193 | } | ||
194 | |||
195 | static irqreturn_t mc13783_interrupt(int irq, void *dev_id) | ||
196 | { | ||
197 | struct mc13783 *mc13783 = dev_id; | ||
198 | |||
199 | disable_irq_nosync(irq); | ||
200 | |||
201 | schedule_work(&mc13783->work); | ||
202 | return IRQ_HANDLED; | ||
203 | } | ||
204 | |||
205 | /* set adc to ts interrupt mode, which generates touchscreen wakeup interrupt */ | ||
206 | static inline void mc13783_adc_set_ts_irq_mode(struct mc13783 *mc13783) | ||
207 | { | ||
208 | unsigned int reg_adc0, reg_adc1; | ||
209 | |||
210 | reg_adc0 = MC13783_ADC0_ADREFEN | MC13783_ADC0_ADREFMODE | ||
211 | | MC13783_ADC0_TSMOD0; | ||
212 | reg_adc1 = MC13783_ADC1_ADEN | MC13783_ADC1_ADTRIGIGN; | ||
213 | |||
214 | mc13783_reg_write(mc13783, MC13783_REG_ADC_0, reg_adc0); | ||
215 | mc13783_reg_write(mc13783, MC13783_REG_ADC_1, reg_adc1); | ||
216 | } | ||
217 | |||
218 | int mc13783_adc_do_conversion(struct mc13783 *mc13783, unsigned int mode, | ||
219 | unsigned int channel, unsigned int *sample) | ||
220 | { | ||
221 | unsigned int reg_adc0, reg_adc1; | ||
222 | int i; | ||
223 | |||
224 | mutex_lock(&mc13783->adc_conv_lock); | ||
225 | |||
226 | /* set up auto incrementing anyway to make quick read */ | ||
227 | reg_adc0 = MC13783_ADC0_ADINC1 | MC13783_ADC0_ADINC2; | ||
228 | /* enable the adc, ignore external triggering and set ASC to trigger | ||
229 | * conversion */ | ||
230 | reg_adc1 = MC13783_ADC1_ADEN | MC13783_ADC1_ADTRIGIGN | ||
231 | | MC13783_ADC1_ASC; | ||
232 | |||
233 | /* setup channel number */ | ||
234 | if (channel > 7) | ||
235 | reg_adc1 |= MC13783_ADC1_ADSEL; | ||
236 | |||
237 | switch (mode) { | ||
238 | case MC13783_ADC_MODE_TS: | ||
239 | /* enables touch screen reference mode and set touchscreen mode | ||
240 | * to position mode */ | ||
241 | reg_adc0 |= MC13783_ADC0_ADREFEN | MC13783_ADC0_ADREFMODE | ||
242 | | MC13783_ADC0_TSMOD0 | MC13783_ADC0_TSMOD1; | ||
243 | reg_adc1 |= 4 << MC13783_ADC1_CHAN1_SHIFT; | ||
244 | break; | ||
245 | case MC13783_ADC_MODE_SINGLE_CHAN: | ||
246 | reg_adc1 |= (channel & 0x7) << MC13783_ADC1_CHAN0_SHIFT; | ||
247 | reg_adc1 |= MC13783_ADC1_RAND; | ||
248 | break; | ||
249 | case MC13783_ADC_MODE_MULT_CHAN: | ||
250 | reg_adc1 |= 4 << MC13783_ADC1_CHAN1_SHIFT; | ||
251 | break; | ||
252 | default: | ||
253 | return -EINVAL; | ||
254 | } | ||
255 | |||
256 | mc13783_reg_write(mc13783, MC13783_REG_ADC_0, reg_adc0); | ||
257 | mc13783_reg_write(mc13783, MC13783_REG_ADC_1, reg_adc1); | ||
258 | |||
259 | wait_for_completion_interruptible(&mc13783->adc_done); | ||
260 | |||
261 | for (i = 0; i < 4; i++) | ||
262 | mc13783_reg_read(mc13783, MC13783_REG_ADC_2, &sample[i]); | ||
263 | |||
264 | if (mc13783->ts_active) | ||
265 | mc13783_adc_set_ts_irq_mode(mc13783); | ||
266 | |||
267 | mutex_unlock(&mc13783->adc_conv_lock); | ||
268 | |||
269 | return 0; | ||
270 | } | ||
271 | EXPORT_SYMBOL_GPL(mc13783_adc_do_conversion); | ||
272 | |||
273 | void mc13783_adc_set_ts_status(struct mc13783 *mc13783, unsigned int status) | ||
274 | { | ||
275 | mc13783->ts_active = status; | ||
276 | } | ||
277 | EXPORT_SYMBOL_GPL(mc13783_adc_set_ts_status); | ||
278 | |||
279 | static int mc13783_check_revision(struct mc13783 *mc13783) | ||
280 | { | ||
281 | u32 rev_id, rev1, rev2, finid, icid; | ||
282 | |||
283 | mc13783_read(mc13783, MC13783_REG_REVISION, &rev_id); | ||
284 | |||
285 | rev1 = (rev_id & 0x018) >> 3; | ||
286 | rev2 = (rev_id & 0x007); | ||
287 | icid = (rev_id & 0x01C0) >> 6; | ||
288 | finid = (rev_id & 0x01E00) >> 9; | ||
289 | |||
290 | /* Ver 0.2 is actually 3.2a. Report as 3.2 */ | ||
291 | if ((rev1 == 0) && (rev2 == 2)) | ||
292 | rev1 = 3; | ||
293 | |||
294 | if (rev1 == 0 || icid != 2) { | ||
295 | dev_err(mc13783->dev, "No MC13783 detected.\n"); | ||
296 | return -ENODEV; | ||
297 | } | ||
298 | |||
299 | mc13783->revision = ((rev1 * 10) + rev2); | ||
300 | dev_info(mc13783->dev, "MC13783 Rev %d.%d FinVer %x detected\n", rev1, | ||
301 | rev2, finid); | ||
302 | |||
303 | return 0; | ||
304 | } | ||
305 | |||
306 | /* | ||
307 | * Register a client device. This is non-fatal since there is no need to | ||
308 | * fail the entire device init due to a single platform device failing. | ||
309 | */ | ||
310 | static void mc13783_client_dev_register(struct mc13783 *mc13783, | ||
311 | const char *name) | ||
312 | { | ||
313 | struct mfd_cell cell = {}; | ||
314 | |||
315 | cell.name = name; | ||
316 | |||
317 | mfd_add_devices(mc13783->dev, -1, &cell, 1, NULL, 0); | ||
318 | } | ||
319 | |||
320 | static int __devinit mc13783_probe(struct spi_device *spi) | ||
321 | { | ||
322 | struct mc13783 *mc13783; | ||
323 | struct mc13783_platform_data *pdata = spi->dev.platform_data; | ||
324 | int ret; | ||
325 | |||
326 | mc13783 = kzalloc(sizeof(struct mc13783), GFP_KERNEL); | ||
327 | if (!mc13783) | ||
328 | return -ENOMEM; | ||
329 | |||
330 | dev_set_drvdata(&spi->dev, mc13783); | ||
331 | spi->mode = SPI_MODE_0 | SPI_CS_HIGH; | ||
332 | spi->bits_per_word = 32; | ||
333 | spi_setup(spi); | ||
334 | |||
335 | mc13783->spi_device = spi; | ||
336 | mc13783->dev = &spi->dev; | ||
337 | mc13783->irq = spi->irq; | ||
338 | |||
339 | INIT_WORK(&mc13783->work, mc13783_irq_work); | ||
340 | mutex_init(&mc13783->io_lock); | ||
341 | mutex_init(&mc13783->adc_conv_lock); | ||
342 | init_completion(&mc13783->adc_done); | ||
343 | |||
344 | if (pdata) { | ||
345 | mc13783->flags = pdata->flags; | ||
346 | mc13783->regulators = pdata->regulators; | ||
347 | mc13783->num_regulators = pdata->num_regulators; | ||
348 | } | ||
349 | |||
350 | if (mc13783_check_revision(mc13783)) { | ||
351 | ret = -ENODEV; | ||
352 | goto err_out; | ||
353 | } | ||
354 | |||
355 | /* clear and mask all interrupts */ | ||
356 | mc13783_reg_write(mc13783, MC13783_REG_INTERRUPT_STATUS_0, 0x00ffffff); | ||
357 | mc13783_reg_write(mc13783, MC13783_REG_INTERRUPT_MASK_0, 0x00ffffff); | ||
358 | mc13783_reg_write(mc13783, MC13783_REG_INTERRUPT_STATUS_1, 0x00ffffff); | ||
359 | mc13783_reg_write(mc13783, MC13783_REG_INTERRUPT_MASK_1, 0x00ffffff); | ||
360 | |||
361 | /* unmask adcdone interrupts */ | ||
362 | mc13783_set_bits(mc13783, MC13783_REG_INTERRUPT_MASK_0, | ||
363 | MC13783_INT_MASK_ADCDONEM, 0); | ||
364 | |||
365 | ret = request_irq(mc13783->irq, mc13783_interrupt, | ||
366 | IRQF_DISABLED | IRQF_TRIGGER_HIGH, "mc13783", | ||
367 | mc13783); | ||
368 | if (ret) | ||
369 | goto err_out; | ||
370 | |||
371 | if (mc13783->flags & MC13783_USE_CODEC) | ||
372 | mc13783_client_dev_register(mc13783, "mc13783-codec"); | ||
373 | if (mc13783->flags & MC13783_USE_ADC) | ||
374 | mc13783_client_dev_register(mc13783, "mc13783-adc"); | ||
375 | if (mc13783->flags & MC13783_USE_RTC) | ||
376 | mc13783_client_dev_register(mc13783, "mc13783-rtc"); | ||
377 | if (mc13783->flags & MC13783_USE_REGULATOR) | ||
378 | mc13783_client_dev_register(mc13783, "mc13783-regulator"); | ||
379 | if (mc13783->flags & MC13783_USE_TOUCHSCREEN) | ||
380 | mc13783_client_dev_register(mc13783, "mc13783-ts"); | ||
381 | |||
382 | return 0; | ||
383 | |||
384 | err_out: | ||
385 | kfree(mc13783); | ||
386 | return ret; | ||
387 | } | ||
388 | |||
389 | static int __devexit mc13783_remove(struct spi_device *spi) | ||
390 | { | ||
391 | struct mc13783 *mc13783; | ||
392 | |||
393 | mc13783 = dev_get_drvdata(&spi->dev); | ||
394 | |||
395 | free_irq(mc13783->irq, mc13783); | ||
396 | |||
397 | mfd_remove_devices(&spi->dev); | ||
398 | |||
399 | return 0; | ||
400 | } | ||
401 | |||
402 | static struct spi_driver pmic_driver = { | ||
403 | .driver = { | ||
404 | .name = "mc13783", | ||
405 | .bus = &spi_bus_type, | ||
406 | .owner = THIS_MODULE, | ||
407 | }, | ||
408 | .probe = mc13783_probe, | ||
409 | .remove = __devexit_p(mc13783_remove), | ||
410 | }; | ||
411 | |||
412 | static int __init pmic_init(void) | ||
413 | { | ||
414 | return spi_register_driver(&pmic_driver); | ||
415 | } | ||
416 | subsys_initcall(pmic_init); | ||
417 | |||
418 | static void __exit pmic_exit(void) | ||
419 | { | ||
420 | spi_unregister_driver(&pmic_driver); | ||
421 | } | ||
422 | module_exit(pmic_exit); | ||
423 | |||
424 | MODULE_DESCRIPTION("Core/Protocol driver for Freescale MC13783 PMIC"); | ||
425 | MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>"); | ||
426 | MODULE_LICENSE("GPL"); | ||
427 | |||
diff --git a/drivers/mfd/mfd-core.c b/drivers/mfd/mfd-core.c index 54ddf3772e0c..ae15e495e20e 100644 --- a/drivers/mfd/mfd-core.c +++ b/drivers/mfd/mfd-core.c | |||
@@ -25,7 +25,7 @@ static int mfd_add_device(struct device *parent, int id, | |||
25 | int ret = -ENOMEM; | 25 | int ret = -ENOMEM; |
26 | int r; | 26 | int r; |
27 | 27 | ||
28 | pdev = platform_device_alloc(cell->name, id); | 28 | pdev = platform_device_alloc(cell->name, id + cell->id); |
29 | if (!pdev) | 29 | if (!pdev) |
30 | goto fail_alloc; | 30 | goto fail_alloc; |
31 | 31 | ||
diff --git a/drivers/mfd/pcf50633-adc.c b/drivers/mfd/pcf50633-adc.c index c2d05becfa97..3d31e97d6a45 100644 --- a/drivers/mfd/pcf50633-adc.c +++ b/drivers/mfd/pcf50633-adc.c | |||
@@ -73,15 +73,10 @@ static void trigger_next_adc_job_if_any(struct pcf50633 *pcf) | |||
73 | struct pcf50633_adc *adc = __to_adc(pcf); | 73 | struct pcf50633_adc *adc = __to_adc(pcf); |
74 | int head; | 74 | int head; |
75 | 75 | ||
76 | mutex_lock(&adc->queue_mutex); | ||
77 | |||
78 | head = adc->queue_head; | 76 | head = adc->queue_head; |
79 | 77 | ||
80 | if (!adc->queue[head]) { | 78 | if (!adc->queue[head]) |
81 | mutex_unlock(&adc->queue_mutex); | ||
82 | return; | 79 | return; |
83 | } | ||
84 | mutex_unlock(&adc->queue_mutex); | ||
85 | 80 | ||
86 | adc_setup(pcf, adc->queue[head]->mux, adc->queue[head]->avg); | 81 | adc_setup(pcf, adc->queue[head]->mux, adc->queue[head]->avg); |
87 | } | 82 | } |
@@ -99,16 +94,17 @@ adc_enqueue_request(struct pcf50633 *pcf, struct pcf50633_adc_request *req) | |||
99 | 94 | ||
100 | if (adc->queue[tail]) { | 95 | if (adc->queue[tail]) { |
101 | mutex_unlock(&adc->queue_mutex); | 96 | mutex_unlock(&adc->queue_mutex); |
97 | dev_err(pcf->dev, "ADC queue is full, dropping request\n"); | ||
102 | return -EBUSY; | 98 | return -EBUSY; |
103 | } | 99 | } |
104 | 100 | ||
105 | adc->queue[tail] = req; | 101 | adc->queue[tail] = req; |
102 | if (head == tail) | ||
103 | trigger_next_adc_job_if_any(pcf); | ||
106 | adc->queue_tail = (tail + 1) & (PCF50633_MAX_ADC_FIFO_DEPTH - 1); | 104 | adc->queue_tail = (tail + 1) & (PCF50633_MAX_ADC_FIFO_DEPTH - 1); |
107 | 105 | ||
108 | mutex_unlock(&adc->queue_mutex); | 106 | mutex_unlock(&adc->queue_mutex); |
109 | 107 | ||
110 | trigger_next_adc_job_if_any(pcf); | ||
111 | |||
112 | return 0; | 108 | return 0; |
113 | } | 109 | } |
114 | 110 | ||
@@ -124,6 +120,7 @@ pcf50633_adc_sync_read_callback(struct pcf50633 *pcf, void *param, int result) | |||
124 | int pcf50633_adc_sync_read(struct pcf50633 *pcf, int mux, int avg) | 120 | int pcf50633_adc_sync_read(struct pcf50633 *pcf, int mux, int avg) |
125 | { | 121 | { |
126 | struct pcf50633_adc_request *req; | 122 | struct pcf50633_adc_request *req; |
123 | int err; | ||
127 | 124 | ||
128 | /* req is freed when the result is ready, in interrupt handler */ | 125 | /* req is freed when the result is ready, in interrupt handler */ |
129 | req = kzalloc(sizeof(*req), GFP_KERNEL); | 126 | req = kzalloc(sizeof(*req), GFP_KERNEL); |
@@ -136,9 +133,13 @@ int pcf50633_adc_sync_read(struct pcf50633 *pcf, int mux, int avg) | |||
136 | req->callback_param = req; | 133 | req->callback_param = req; |
137 | 134 | ||
138 | init_completion(&req->completion); | 135 | init_completion(&req->completion); |
139 | adc_enqueue_request(pcf, req); | 136 | err = adc_enqueue_request(pcf, req); |
137 | if (err) | ||
138 | return err; | ||
139 | |||
140 | wait_for_completion(&req->completion); | 140 | wait_for_completion(&req->completion); |
141 | 141 | ||
142 | /* FIXME by this time req might be already freed */ | ||
142 | return req->result; | 143 | return req->result; |
143 | } | 144 | } |
144 | EXPORT_SYMBOL_GPL(pcf50633_adc_sync_read); | 145 | EXPORT_SYMBOL_GPL(pcf50633_adc_sync_read); |
@@ -159,9 +160,7 @@ int pcf50633_adc_async_read(struct pcf50633 *pcf, int mux, int avg, | |||
159 | req->callback = callback; | 160 | req->callback = callback; |
160 | req->callback_param = callback_param; | 161 | req->callback_param = callback_param; |
161 | 162 | ||
162 | adc_enqueue_request(pcf, req); | 163 | return adc_enqueue_request(pcf, req); |
163 | |||
164 | return 0; | ||
165 | } | 164 | } |
166 | EXPORT_SYMBOL_GPL(pcf50633_adc_async_read); | 165 | EXPORT_SYMBOL_GPL(pcf50633_adc_async_read); |
167 | 166 | ||
@@ -184,7 +183,7 @@ static void pcf50633_adc_irq(int irq, void *data) | |||
184 | struct pcf50633_adc *adc = data; | 183 | struct pcf50633_adc *adc = data; |
185 | struct pcf50633 *pcf = adc->pcf; | 184 | struct pcf50633 *pcf = adc->pcf; |
186 | struct pcf50633_adc_request *req; | 185 | struct pcf50633_adc_request *req; |
187 | int head; | 186 | int head, res; |
188 | 187 | ||
189 | mutex_lock(&adc->queue_mutex); | 188 | mutex_lock(&adc->queue_mutex); |
190 | head = adc->queue_head; | 189 | head = adc->queue_head; |
@@ -199,12 +198,13 @@ static void pcf50633_adc_irq(int irq, void *data) | |||
199 | adc->queue_head = (head + 1) & | 198 | adc->queue_head = (head + 1) & |
200 | (PCF50633_MAX_ADC_FIFO_DEPTH - 1); | 199 | (PCF50633_MAX_ADC_FIFO_DEPTH - 1); |
201 | 200 | ||
201 | res = adc_result(pcf); | ||
202 | trigger_next_adc_job_if_any(pcf); | ||
203 | |||
202 | mutex_unlock(&adc->queue_mutex); | 204 | mutex_unlock(&adc->queue_mutex); |
203 | 205 | ||
204 | req->callback(pcf, req->callback_param, adc_result(pcf)); | 206 | req->callback(pcf, req->callback_param, res); |
205 | kfree(req); | 207 | kfree(req); |
206 | |||
207 | trigger_next_adc_job_if_any(pcf); | ||
208 | } | 208 | } |
209 | 209 | ||
210 | static int __devinit pcf50633_adc_probe(struct platform_device *pdev) | 210 | static int __devinit pcf50633_adc_probe(struct platform_device *pdev) |
diff --git a/drivers/mfd/pcf50633-core.c b/drivers/mfd/pcf50633-core.c index 8d3c38bf9714..d26d7747175e 100644 --- a/drivers/mfd/pcf50633-core.c +++ b/drivers/mfd/pcf50633-core.c | |||
@@ -444,7 +444,7 @@ static irqreturn_t pcf50633_irq(int irq, void *data) | |||
444 | 444 | ||
445 | get_device(pcf->dev); | 445 | get_device(pcf->dev); |
446 | disable_irq_nosync(pcf->irq); | 446 | disable_irq_nosync(pcf->irq); |
447 | schedule_work(&pcf->irq_work); | 447 | queue_work(pcf->work_queue, &pcf->irq_work); |
448 | 448 | ||
449 | return IRQ_HANDLED; | 449 | return IRQ_HANDLED; |
450 | } | 450 | } |
@@ -575,6 +575,7 @@ static int __devinit pcf50633_probe(struct i2c_client *client, | |||
575 | pcf->dev = &client->dev; | 575 | pcf->dev = &client->dev; |
576 | pcf->i2c_client = client; | 576 | pcf->i2c_client = client; |
577 | pcf->irq = client->irq; | 577 | pcf->irq = client->irq; |
578 | pcf->work_queue = create_singlethread_workqueue("pcf50633"); | ||
578 | 579 | ||
579 | INIT_WORK(&pcf->irq_work, pcf50633_irq_worker); | 580 | INIT_WORK(&pcf->irq_work, pcf50633_irq_worker); |
580 | 581 | ||
@@ -651,6 +652,7 @@ static int __devinit pcf50633_probe(struct i2c_client *client, | |||
651 | return 0; | 652 | return 0; |
652 | 653 | ||
653 | err: | 654 | err: |
655 | destroy_workqueue(pcf->work_queue); | ||
654 | kfree(pcf); | 656 | kfree(pcf); |
655 | return ret; | 657 | return ret; |
656 | } | 658 | } |
@@ -661,6 +663,7 @@ static int __devexit pcf50633_remove(struct i2c_client *client) | |||
661 | int i; | 663 | int i; |
662 | 664 | ||
663 | free_irq(pcf->irq, pcf); | 665 | free_irq(pcf->irq, pcf); |
666 | destroy_workqueue(pcf->work_queue); | ||
664 | 667 | ||
665 | platform_device_unregister(pcf->input_pdev); | 668 | platform_device_unregister(pcf->input_pdev); |
666 | platform_device_unregister(pcf->rtc_pdev); | 669 | platform_device_unregister(pcf->rtc_pdev); |
diff --git a/drivers/mfd/twl4030-core.c b/drivers/mfd/twl4030-core.c index ca54996ffd0e..e424cf6d8e9e 100644 --- a/drivers/mfd/twl4030-core.c +++ b/drivers/mfd/twl4030-core.c | |||
@@ -89,6 +89,12 @@ | |||
89 | #define twl_has_madc() false | 89 | #define twl_has_madc() false |
90 | #endif | 90 | #endif |
91 | 91 | ||
92 | #ifdef CONFIG_TWL4030_POWER | ||
93 | #define twl_has_power() true | ||
94 | #else | ||
95 | #define twl_has_power() false | ||
96 | #endif | ||
97 | |||
92 | #if defined(CONFIG_RTC_DRV_TWL4030) || defined(CONFIG_RTC_DRV_TWL4030_MODULE) | 98 | #if defined(CONFIG_RTC_DRV_TWL4030) || defined(CONFIG_RTC_DRV_TWL4030_MODULE) |
93 | #define twl_has_rtc() true | 99 | #define twl_has_rtc() true |
94 | #else | 100 | #else |
@@ -115,6 +121,12 @@ | |||
115 | 121 | ||
116 | #define TWL4030_NUM_SLAVES 4 | 122 | #define TWL4030_NUM_SLAVES 4 |
117 | 123 | ||
124 | #if defined(CONFIG_INPUT_TWL4030_PWRBUTTON) \ | ||
125 | || defined(CONFIG_INPUT_TWL4030_PWBUTTON_MODULE) | ||
126 | #define twl_has_pwrbutton() true | ||
127 | #else | ||
128 | #define twl_has_pwrbutton() false | ||
129 | #endif | ||
118 | 130 | ||
119 | /* Base Address defns for twl4030_map[] */ | 131 | /* Base Address defns for twl4030_map[] */ |
120 | 132 | ||
@@ -538,6 +550,13 @@ add_children(struct twl4030_platform_data *pdata, unsigned long features) | |||
538 | return PTR_ERR(child); | 550 | return PTR_ERR(child); |
539 | } | 551 | } |
540 | 552 | ||
553 | if (twl_has_pwrbutton()) { | ||
554 | child = add_child(1, "twl4030_pwrbutton", | ||
555 | NULL, 0, true, pdata->irq_base + 8 + 0, 0); | ||
556 | if (IS_ERR(child)) | ||
557 | return PTR_ERR(child); | ||
558 | } | ||
559 | |||
541 | if (twl_has_regulator()) { | 560 | if (twl_has_regulator()) { |
542 | /* | 561 | /* |
543 | child = add_regulator(TWL4030_REG_VPLL1, pdata->vpll1); | 562 | child = add_regulator(TWL4030_REG_VPLL1, pdata->vpll1); |
@@ -788,6 +807,10 @@ twl4030_probe(struct i2c_client *client, const struct i2c_device_id *id) | |||
788 | /* setup clock framework */ | 807 | /* setup clock framework */ |
789 | clocks_init(&client->dev); | 808 | clocks_init(&client->dev); |
790 | 809 | ||
810 | /* load power event scripts */ | ||
811 | if (twl_has_power() && pdata->power) | ||
812 | twl4030_power_init(pdata->power); | ||
813 | |||
791 | /* Maybe init the T2 Interrupt subsystem */ | 814 | /* Maybe init the T2 Interrupt subsystem */ |
792 | if (client->irq | 815 | if (client->irq |
793 | && pdata->irq_base | 816 | && pdata->irq_base |
diff --git a/drivers/mfd/twl4030-irq.c b/drivers/mfd/twl4030-irq.c index 7d430835655f..fb194fe244c1 100644 --- a/drivers/mfd/twl4030-irq.c +++ b/drivers/mfd/twl4030-irq.c | |||
@@ -424,7 +424,7 @@ static void twl4030_sih_do_edge(struct work_struct *work) | |||
424 | /* see what work we have */ | 424 | /* see what work we have */ |
425 | spin_lock_irq(&sih_agent_lock); | 425 | spin_lock_irq(&sih_agent_lock); |
426 | edge_change = agent->edge_change; | 426 | edge_change = agent->edge_change; |
427 | agent->edge_change = 0;; | 427 | agent->edge_change = 0; |
428 | sih = edge_change ? agent->sih : NULL; | 428 | sih = edge_change ? agent->sih : NULL; |
429 | spin_unlock_irq(&sih_agent_lock); | 429 | spin_unlock_irq(&sih_agent_lock); |
430 | if (!sih) | 430 | if (!sih) |
diff --git a/drivers/mfd/twl4030-power.c b/drivers/mfd/twl4030-power.c new file mode 100644 index 000000000000..d423e0c4176b --- /dev/null +++ b/drivers/mfd/twl4030-power.c | |||
@@ -0,0 +1,472 @@ | |||
1 | /* | ||
2 | * linux/drivers/i2c/chips/twl4030-power.c | ||
3 | * | ||
4 | * Handle TWL4030 Power initialization | ||
5 | * | ||
6 | * Copyright (C) 2008 Nokia Corporation | ||
7 | * Copyright (C) 2006 Texas Instruments, Inc | ||
8 | * | ||
9 | * Written by Kalle Jokiniemi | ||
10 | * Peter De Schrijver <peter.de-schrijver@nokia.com> | ||
11 | * Several fixes by Amit Kucheria <amit.kucheria@verdurent.com> | ||
12 | * | ||
13 | * This file is subject to the terms and conditions of the GNU General | ||
14 | * Public License. See the file "COPYING" in the main directory of this | ||
15 | * archive for more details. | ||
16 | * | ||
17 | * This program is distributed in the hope that it will be useful, | ||
18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
20 | * GNU General Public License for more details. | ||
21 | * | ||
22 | * You should have received a copy of the GNU General Public License | ||
23 | * along with this program; if not, write to the Free Software | ||
24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
25 | */ | ||
26 | |||
27 | #include <linux/module.h> | ||
28 | #include <linux/pm.h> | ||
29 | #include <linux/i2c/twl4030.h> | ||
30 | #include <linux/platform_device.h> | ||
31 | |||
32 | #include <asm/mach-types.h> | ||
33 | |||
34 | static u8 twl4030_start_script_address = 0x2b; | ||
35 | |||
36 | #define PWR_P1_SW_EVENTS 0x10 | ||
37 | #define PWR_DEVOFF (1<<0) | ||
38 | |||
39 | #define PHY_TO_OFF_PM_MASTER(p) (p - 0x36) | ||
40 | #define PHY_TO_OFF_PM_RECEIVER(p) (p - 0x5b) | ||
41 | |||
42 | /* resource - hfclk */ | ||
43 | #define R_HFCLKOUT_DEV_GRP PHY_TO_OFF_PM_RECEIVER(0xe6) | ||
44 | |||
45 | /* PM events */ | ||
46 | #define R_P1_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x46) | ||
47 | #define R_P2_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x47) | ||
48 | #define R_P3_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x48) | ||
49 | #define R_CFG_P1_TRANSITION PHY_TO_OFF_PM_MASTER(0x36) | ||
50 | #define R_CFG_P2_TRANSITION PHY_TO_OFF_PM_MASTER(0x37) | ||
51 | #define R_CFG_P3_TRANSITION PHY_TO_OFF_PM_MASTER(0x38) | ||
52 | |||
53 | #define LVL_WAKEUP 0x08 | ||
54 | |||
55 | #define ENABLE_WARMRESET (1<<4) | ||
56 | |||
57 | #define END_OF_SCRIPT 0x3f | ||
58 | |||
59 | #define R_SEQ_ADD_A2S PHY_TO_OFF_PM_MASTER(0x55) | ||
60 | #define R_SEQ_ADD_S2A12 PHY_TO_OFF_PM_MASTER(0x56) | ||
61 | #define R_SEQ_ADD_S2A3 PHY_TO_OFF_PM_MASTER(0x57) | ||
62 | #define R_SEQ_ADD_WARM PHY_TO_OFF_PM_MASTER(0x58) | ||
63 | #define R_MEMORY_ADDRESS PHY_TO_OFF_PM_MASTER(0x59) | ||
64 | #define R_MEMORY_DATA PHY_TO_OFF_PM_MASTER(0x5a) | ||
65 | |||
66 | #define R_PROTECT_KEY 0x0E | ||
67 | #define R_KEY_1 0xC0 | ||
68 | #define R_KEY_2 0x0C | ||
69 | |||
70 | /* resource configuration registers */ | ||
71 | |||
72 | #define DEVGROUP_OFFSET 0 | ||
73 | #define TYPE_OFFSET 1 | ||
74 | |||
75 | /* Bit positions */ | ||
76 | #define DEVGROUP_SHIFT 5 | ||
77 | #define DEVGROUP_MASK (7 << DEVGROUP_SHIFT) | ||
78 | #define TYPE_SHIFT 0 | ||
79 | #define TYPE_MASK (7 << TYPE_SHIFT) | ||
80 | #define TYPE2_SHIFT 3 | ||
81 | #define TYPE2_MASK (3 << TYPE2_SHIFT) | ||
82 | |||
83 | static u8 res_config_addrs[] = { | ||
84 | [RES_VAUX1] = 0x17, | ||
85 | [RES_VAUX2] = 0x1b, | ||
86 | [RES_VAUX3] = 0x1f, | ||
87 | [RES_VAUX4] = 0x23, | ||
88 | [RES_VMMC1] = 0x27, | ||
89 | [RES_VMMC2] = 0x2b, | ||
90 | [RES_VPLL1] = 0x2f, | ||
91 | [RES_VPLL2] = 0x33, | ||
92 | [RES_VSIM] = 0x37, | ||
93 | [RES_VDAC] = 0x3b, | ||
94 | [RES_VINTANA1] = 0x3f, | ||
95 | [RES_VINTANA2] = 0x43, | ||
96 | [RES_VINTDIG] = 0x47, | ||
97 | [RES_VIO] = 0x4b, | ||
98 | [RES_VDD1] = 0x55, | ||
99 | [RES_VDD2] = 0x63, | ||
100 | [RES_VUSB_1V5] = 0x71, | ||
101 | [RES_VUSB_1V8] = 0x74, | ||
102 | [RES_VUSB_3V1] = 0x77, | ||
103 | [RES_VUSBCP] = 0x7a, | ||
104 | [RES_REGEN] = 0x7f, | ||
105 | [RES_NRES_PWRON] = 0x82, | ||
106 | [RES_CLKEN] = 0x85, | ||
107 | [RES_SYSEN] = 0x88, | ||
108 | [RES_HFCLKOUT] = 0x8b, | ||
109 | [RES_32KCLKOUT] = 0x8e, | ||
110 | [RES_RESET] = 0x91, | ||
111 | [RES_Main_Ref] = 0x94, | ||
112 | }; | ||
113 | |||
114 | static int __init twl4030_write_script_byte(u8 address, u8 byte) | ||
115 | { | ||
116 | int err; | ||
117 | |||
118 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address, | ||
119 | R_MEMORY_ADDRESS); | ||
120 | if (err) | ||
121 | goto out; | ||
122 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, byte, | ||
123 | R_MEMORY_DATA); | ||
124 | out: | ||
125 | return err; | ||
126 | } | ||
127 | |||
128 | static int __init twl4030_write_script_ins(u8 address, u16 pmb_message, | ||
129 | u8 delay, u8 next) | ||
130 | { | ||
131 | int err; | ||
132 | |||
133 | address *= 4; | ||
134 | err = twl4030_write_script_byte(address++, pmb_message >> 8); | ||
135 | if (err) | ||
136 | goto out; | ||
137 | err = twl4030_write_script_byte(address++, pmb_message & 0xff); | ||
138 | if (err) | ||
139 | goto out; | ||
140 | err = twl4030_write_script_byte(address++, delay); | ||
141 | if (err) | ||
142 | goto out; | ||
143 | err = twl4030_write_script_byte(address++, next); | ||
144 | out: | ||
145 | return err; | ||
146 | } | ||
147 | |||
148 | static int __init twl4030_write_script(u8 address, struct twl4030_ins *script, | ||
149 | int len) | ||
150 | { | ||
151 | int err; | ||
152 | |||
153 | for (; len; len--, address++, script++) { | ||
154 | if (len == 1) { | ||
155 | err = twl4030_write_script_ins(address, | ||
156 | script->pmb_message, | ||
157 | script->delay, | ||
158 | END_OF_SCRIPT); | ||
159 | if (err) | ||
160 | break; | ||
161 | } else { | ||
162 | err = twl4030_write_script_ins(address, | ||
163 | script->pmb_message, | ||
164 | script->delay, | ||
165 | address + 1); | ||
166 | if (err) | ||
167 | break; | ||
168 | } | ||
169 | } | ||
170 | return err; | ||
171 | } | ||
172 | |||
173 | static int __init twl4030_config_wakeup3_sequence(u8 address) | ||
174 | { | ||
175 | int err; | ||
176 | u8 data; | ||
177 | |||
178 | /* Set SLEEP to ACTIVE SEQ address for P3 */ | ||
179 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address, | ||
180 | R_SEQ_ADD_S2A3); | ||
181 | if (err) | ||
182 | goto out; | ||
183 | |||
184 | /* P3 LVL_WAKEUP should be on LEVEL */ | ||
185 | err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data, | ||
186 | R_P3_SW_EVENTS); | ||
187 | if (err) | ||
188 | goto out; | ||
189 | data |= LVL_WAKEUP; | ||
190 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data, | ||
191 | R_P3_SW_EVENTS); | ||
192 | out: | ||
193 | if (err) | ||
194 | pr_err("TWL4030 wakeup sequence for P3 config error\n"); | ||
195 | return err; | ||
196 | } | ||
197 | |||
198 | static int __init twl4030_config_wakeup12_sequence(u8 address) | ||
199 | { | ||
200 | int err = 0; | ||
201 | u8 data; | ||
202 | |||
203 | /* Set SLEEP to ACTIVE SEQ address for P1 and P2 */ | ||
204 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address, | ||
205 | R_SEQ_ADD_S2A12); | ||
206 | if (err) | ||
207 | goto out; | ||
208 | |||
209 | /* P1/P2 LVL_WAKEUP should be on LEVEL */ | ||
210 | err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data, | ||
211 | R_P1_SW_EVENTS); | ||
212 | if (err) | ||
213 | goto out; | ||
214 | |||
215 | data |= LVL_WAKEUP; | ||
216 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data, | ||
217 | R_P1_SW_EVENTS); | ||
218 | if (err) | ||
219 | goto out; | ||
220 | |||
221 | err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data, | ||
222 | R_P2_SW_EVENTS); | ||
223 | if (err) | ||
224 | goto out; | ||
225 | |||
226 | data |= LVL_WAKEUP; | ||
227 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data, | ||
228 | R_P2_SW_EVENTS); | ||
229 | if (err) | ||
230 | goto out; | ||
231 | |||
232 | if (machine_is_omap_3430sdp() || machine_is_omap_ldp()) { | ||
233 | /* Disabling AC charger effect on sleep-active transitions */ | ||
234 | err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data, | ||
235 | R_CFG_P1_TRANSITION); | ||
236 | if (err) | ||
237 | goto out; | ||
238 | data &= ~(1<<1); | ||
239 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data , | ||
240 | R_CFG_P1_TRANSITION); | ||
241 | if (err) | ||
242 | goto out; | ||
243 | } | ||
244 | |||
245 | out: | ||
246 | if (err) | ||
247 | pr_err("TWL4030 wakeup sequence for P1 and P2" \ | ||
248 | "config error\n"); | ||
249 | return err; | ||
250 | } | ||
251 | |||
252 | static int __init twl4030_config_sleep_sequence(u8 address) | ||
253 | { | ||
254 | int err; | ||
255 | |||
256 | /* Set ACTIVE to SLEEP SEQ address in T2 memory*/ | ||
257 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address, | ||
258 | R_SEQ_ADD_A2S); | ||
259 | |||
260 | if (err) | ||
261 | pr_err("TWL4030 sleep sequence config error\n"); | ||
262 | |||
263 | return err; | ||
264 | } | ||
265 | |||
266 | static int __init twl4030_config_warmreset_sequence(u8 address) | ||
267 | { | ||
268 | int err; | ||
269 | u8 rd_data; | ||
270 | |||
271 | /* Set WARM RESET SEQ address for P1 */ | ||
272 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address, | ||
273 | R_SEQ_ADD_WARM); | ||
274 | if (err) | ||
275 | goto out; | ||
276 | |||
277 | /* P1/P2/P3 enable WARMRESET */ | ||
278 | err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &rd_data, | ||
279 | R_P1_SW_EVENTS); | ||
280 | if (err) | ||
281 | goto out; | ||
282 | |||
283 | rd_data |= ENABLE_WARMRESET; | ||
284 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, rd_data, | ||
285 | R_P1_SW_EVENTS); | ||
286 | if (err) | ||
287 | goto out; | ||
288 | |||
289 | err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &rd_data, | ||
290 | R_P2_SW_EVENTS); | ||
291 | if (err) | ||
292 | goto out; | ||
293 | |||
294 | rd_data |= ENABLE_WARMRESET; | ||
295 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, rd_data, | ||
296 | R_P2_SW_EVENTS); | ||
297 | if (err) | ||
298 | goto out; | ||
299 | |||
300 | err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &rd_data, | ||
301 | R_P3_SW_EVENTS); | ||
302 | if (err) | ||
303 | goto out; | ||
304 | |||
305 | rd_data |= ENABLE_WARMRESET; | ||
306 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, rd_data, | ||
307 | R_P3_SW_EVENTS); | ||
308 | out: | ||
309 | if (err) | ||
310 | pr_err("TWL4030 warmreset seq config error\n"); | ||
311 | return err; | ||
312 | } | ||
313 | |||
314 | static int __init twl4030_configure_resource(struct twl4030_resconfig *rconfig) | ||
315 | { | ||
316 | int rconfig_addr; | ||
317 | int err; | ||
318 | u8 type; | ||
319 | u8 grp; | ||
320 | |||
321 | if (rconfig->resource > TOTAL_RESOURCES) { | ||
322 | pr_err("TWL4030 Resource %d does not exist\n", | ||
323 | rconfig->resource); | ||
324 | return -EINVAL; | ||
325 | } | ||
326 | |||
327 | rconfig_addr = res_config_addrs[rconfig->resource]; | ||
328 | |||
329 | /* Set resource group */ | ||
330 | err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_RECEIVER, &grp, | ||
331 | rconfig_addr + DEVGROUP_OFFSET); | ||
332 | if (err) { | ||
333 | pr_err("TWL4030 Resource %d group could not be read\n", | ||
334 | rconfig->resource); | ||
335 | return err; | ||
336 | } | ||
337 | |||
338 | if (rconfig->devgroup >= 0) { | ||
339 | grp &= ~DEVGROUP_MASK; | ||
340 | grp |= rconfig->devgroup << DEVGROUP_SHIFT; | ||
341 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, | ||
342 | grp, rconfig_addr + DEVGROUP_OFFSET); | ||
343 | if (err < 0) { | ||
344 | pr_err("TWL4030 failed to program devgroup\n"); | ||
345 | return err; | ||
346 | } | ||
347 | } | ||
348 | |||
349 | /* Set resource types */ | ||
350 | err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_RECEIVER, &type, | ||
351 | rconfig_addr + TYPE_OFFSET); | ||
352 | if (err < 0) { | ||
353 | pr_err("TWL4030 Resource %d type could not be read\n", | ||
354 | rconfig->resource); | ||
355 | return err; | ||
356 | } | ||
357 | |||
358 | if (rconfig->type >= 0) { | ||
359 | type &= ~TYPE_MASK; | ||
360 | type |= rconfig->type << TYPE_SHIFT; | ||
361 | } | ||
362 | |||
363 | if (rconfig->type2 >= 0) { | ||
364 | type &= ~TYPE2_MASK; | ||
365 | type |= rconfig->type2 << TYPE2_SHIFT; | ||
366 | } | ||
367 | |||
368 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, | ||
369 | type, rconfig_addr + TYPE_OFFSET); | ||
370 | if (err < 0) { | ||
371 | pr_err("TWL4030 failed to program resource type\n"); | ||
372 | return err; | ||
373 | } | ||
374 | |||
375 | return 0; | ||
376 | } | ||
377 | |||
378 | static int __init load_twl4030_script(struct twl4030_script *tscript, | ||
379 | u8 address) | ||
380 | { | ||
381 | int err; | ||
382 | static int order; | ||
383 | |||
384 | /* Make sure the script isn't going beyond last valid address (0x3f) */ | ||
385 | if ((address + tscript->size) > END_OF_SCRIPT) { | ||
386 | pr_err("TWL4030 scripts too big error\n"); | ||
387 | return -EINVAL; | ||
388 | } | ||
389 | |||
390 | err = twl4030_write_script(address, tscript->script, tscript->size); | ||
391 | if (err) | ||
392 | goto out; | ||
393 | |||
394 | if (tscript->flags & TWL4030_WRST_SCRIPT) { | ||
395 | err = twl4030_config_warmreset_sequence(address); | ||
396 | if (err) | ||
397 | goto out; | ||
398 | } | ||
399 | if (tscript->flags & TWL4030_WAKEUP12_SCRIPT) { | ||
400 | err = twl4030_config_wakeup12_sequence(address); | ||
401 | if (err) | ||
402 | goto out; | ||
403 | order = 1; | ||
404 | } | ||
405 | if (tscript->flags & TWL4030_WAKEUP3_SCRIPT) { | ||
406 | err = twl4030_config_wakeup3_sequence(address); | ||
407 | if (err) | ||
408 | goto out; | ||
409 | } | ||
410 | if (tscript->flags & TWL4030_SLEEP_SCRIPT) | ||
411 | if (order) | ||
412 | pr_warning("TWL4030: Bad order of scripts (sleep "\ | ||
413 | "script before wakeup) Leads to boot"\ | ||
414 | "failure on some boards\n"); | ||
415 | err = twl4030_config_sleep_sequence(address); | ||
416 | out: | ||
417 | return err; | ||
418 | } | ||
419 | |||
420 | void __init twl4030_power_init(struct twl4030_power_data *twl4030_scripts) | ||
421 | { | ||
422 | int err = 0; | ||
423 | int i; | ||
424 | struct twl4030_resconfig *resconfig; | ||
425 | u8 address = twl4030_start_script_address; | ||
426 | |||
427 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, R_KEY_1, | ||
428 | R_PROTECT_KEY); | ||
429 | if (err) | ||
430 | goto unlock; | ||
431 | |||
432 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, R_KEY_2, | ||
433 | R_PROTECT_KEY); | ||
434 | if (err) | ||
435 | goto unlock; | ||
436 | |||
437 | for (i = 0; i < twl4030_scripts->num; i++) { | ||
438 | err = load_twl4030_script(twl4030_scripts->scripts[i], address); | ||
439 | if (err) | ||
440 | goto load; | ||
441 | address += twl4030_scripts->scripts[i]->size; | ||
442 | } | ||
443 | |||
444 | resconfig = twl4030_scripts->resource_config; | ||
445 | if (resconfig) { | ||
446 | while (resconfig->resource) { | ||
447 | err = twl4030_configure_resource(resconfig); | ||
448 | if (err) | ||
449 | goto resource; | ||
450 | resconfig++; | ||
451 | |||
452 | } | ||
453 | } | ||
454 | |||
455 | err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, 0, R_PROTECT_KEY); | ||
456 | if (err) | ||
457 | pr_err("TWL4030 Unable to relock registers\n"); | ||
458 | return; | ||
459 | |||
460 | unlock: | ||
461 | if (err) | ||
462 | pr_err("TWL4030 Unable to unlock registers\n"); | ||
463 | return; | ||
464 | load: | ||
465 | if (err) | ||
466 | pr_err("TWL4030 failed to load scripts\n"); | ||
467 | return; | ||
468 | resource: | ||
469 | if (err) | ||
470 | pr_err("TWL4030 failed to configure resource\n"); | ||
471 | return; | ||
472 | } | ||
diff --git a/drivers/mfd/wm831x-core.c b/drivers/mfd/wm831x-core.c new file mode 100644 index 000000000000..49b7885c2702 --- /dev/null +++ b/drivers/mfd/wm831x-core.c | |||
@@ -0,0 +1,1549 @@ | |||
1 | /* | ||
2 | * wm831x-core.c -- Device access for Wolfson WM831x PMICs | ||
3 | * | ||
4 | * Copyright 2009 Wolfson Microelectronics PLC. | ||
5 | * | ||
6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/module.h> | ||
17 | #include <linux/i2c.h> | ||
18 | #include <linux/bcd.h> | ||
19 | #include <linux/delay.h> | ||
20 | #include <linux/mfd/core.h> | ||
21 | |||
22 | #include <linux/mfd/wm831x/core.h> | ||
23 | #include <linux/mfd/wm831x/pdata.h> | ||
24 | #include <linux/mfd/wm831x/irq.h> | ||
25 | #include <linux/mfd/wm831x/auxadc.h> | ||
26 | #include <linux/mfd/wm831x/otp.h> | ||
27 | #include <linux/mfd/wm831x/regulator.h> | ||
28 | |||
29 | /* Current settings - values are 2*2^(reg_val/4) microamps. These are | ||
30 | * exported since they are used by multiple drivers. | ||
31 | */ | ||
32 | int wm831x_isinkv_values[WM831X_ISINK_MAX_ISEL] = { | ||
33 | 2, | ||
34 | 2, | ||
35 | 3, | ||
36 | 3, | ||
37 | 4, | ||
38 | 5, | ||
39 | 6, | ||
40 | 7, | ||
41 | 8, | ||
42 | 10, | ||
43 | 11, | ||
44 | 13, | ||
45 | 16, | ||
46 | 19, | ||
47 | 23, | ||
48 | 27, | ||
49 | 32, | ||
50 | 38, | ||
51 | 45, | ||
52 | 54, | ||
53 | 64, | ||
54 | 76, | ||
55 | 91, | ||
56 | 108, | ||
57 | 128, | ||
58 | 152, | ||
59 | 181, | ||
60 | 215, | ||
61 | 256, | ||
62 | 304, | ||
63 | 362, | ||
64 | 431, | ||
65 | 512, | ||
66 | 609, | ||
67 | 724, | ||
68 | 861, | ||
69 | 1024, | ||
70 | 1218, | ||
71 | 1448, | ||
72 | 1722, | ||
73 | 2048, | ||
74 | 2435, | ||
75 | 2896, | ||
76 | 3444, | ||
77 | 4096, | ||
78 | 4871, | ||
79 | 5793, | ||
80 | 6889, | ||
81 | 8192, | ||
82 | 9742, | ||
83 | 11585, | ||
84 | 13777, | ||
85 | 16384, | ||
86 | 19484, | ||
87 | 23170, | ||
88 | 27554, | ||
89 | }; | ||
90 | EXPORT_SYMBOL_GPL(wm831x_isinkv_values); | ||
91 | |||
92 | enum wm831x_parent { | ||
93 | WM8310 = 0, | ||
94 | WM8311 = 1, | ||
95 | WM8312 = 2, | ||
96 | }; | ||
97 | |||
98 | static int wm831x_reg_locked(struct wm831x *wm831x, unsigned short reg) | ||
99 | { | ||
100 | if (!wm831x->locked) | ||
101 | return 0; | ||
102 | |||
103 | switch (reg) { | ||
104 | case WM831X_WATCHDOG: | ||
105 | case WM831X_DC4_CONTROL: | ||
106 | case WM831X_ON_PIN_CONTROL: | ||
107 | case WM831X_BACKUP_CHARGER_CONTROL: | ||
108 | case WM831X_CHARGER_CONTROL_1: | ||
109 | case WM831X_CHARGER_CONTROL_2: | ||
110 | return 1; | ||
111 | |||
112 | default: | ||
113 | return 0; | ||
114 | } | ||
115 | } | ||
116 | |||
117 | /** | ||
118 | * wm831x_reg_unlock: Unlock user keyed registers | ||
119 | * | ||
120 | * The WM831x has a user key preventing writes to particularly | ||
121 | * critical registers. This function locks those registers, | ||
122 | * allowing writes to them. | ||
123 | */ | ||
124 | void wm831x_reg_lock(struct wm831x *wm831x) | ||
125 | { | ||
126 | int ret; | ||
127 | |||
128 | ret = wm831x_reg_write(wm831x, WM831X_SECURITY_KEY, 0); | ||
129 | if (ret == 0) { | ||
130 | dev_vdbg(wm831x->dev, "Registers locked\n"); | ||
131 | |||
132 | mutex_lock(&wm831x->io_lock); | ||
133 | WARN_ON(wm831x->locked); | ||
134 | wm831x->locked = 1; | ||
135 | mutex_unlock(&wm831x->io_lock); | ||
136 | } else { | ||
137 | dev_err(wm831x->dev, "Failed to lock registers: %d\n", ret); | ||
138 | } | ||
139 | |||
140 | } | ||
141 | EXPORT_SYMBOL_GPL(wm831x_reg_lock); | ||
142 | |||
143 | /** | ||
144 | * wm831x_reg_unlock: Unlock user keyed registers | ||
145 | * | ||
146 | * The WM831x has a user key preventing writes to particularly | ||
147 | * critical registers. This function locks those registers, | ||
148 | * preventing spurious writes. | ||
149 | */ | ||
150 | int wm831x_reg_unlock(struct wm831x *wm831x) | ||
151 | { | ||
152 | int ret; | ||
153 | |||
154 | /* 0x9716 is the value required to unlock the registers */ | ||
155 | ret = wm831x_reg_write(wm831x, WM831X_SECURITY_KEY, 0x9716); | ||
156 | if (ret == 0) { | ||
157 | dev_vdbg(wm831x->dev, "Registers unlocked\n"); | ||
158 | |||
159 | mutex_lock(&wm831x->io_lock); | ||
160 | WARN_ON(!wm831x->locked); | ||
161 | wm831x->locked = 0; | ||
162 | mutex_unlock(&wm831x->io_lock); | ||
163 | } | ||
164 | |||
165 | return ret; | ||
166 | } | ||
167 | EXPORT_SYMBOL_GPL(wm831x_reg_unlock); | ||
168 | |||
169 | static int wm831x_read(struct wm831x *wm831x, unsigned short reg, | ||
170 | int bytes, void *dest) | ||
171 | { | ||
172 | int ret, i; | ||
173 | u16 *buf = dest; | ||
174 | |||
175 | BUG_ON(bytes % 2); | ||
176 | BUG_ON(bytes <= 0); | ||
177 | |||
178 | ret = wm831x->read_dev(wm831x, reg, bytes, dest); | ||
179 | if (ret < 0) | ||
180 | return ret; | ||
181 | |||
182 | for (i = 0; i < bytes / 2; i++) { | ||
183 | buf[i] = be16_to_cpu(buf[i]); | ||
184 | |||
185 | dev_vdbg(wm831x->dev, "Read %04x from R%d(0x%x)\n", | ||
186 | buf[i], reg + i, reg + i); | ||
187 | } | ||
188 | |||
189 | return 0; | ||
190 | } | ||
191 | |||
192 | /** | ||
193 | * wm831x_reg_read: Read a single WM831x register. | ||
194 | * | ||
195 | * @wm831x: Device to read from. | ||
196 | * @reg: Register to read. | ||
197 | */ | ||
198 | int wm831x_reg_read(struct wm831x *wm831x, unsigned short reg) | ||
199 | { | ||
200 | unsigned short val; | ||
201 | int ret; | ||
202 | |||
203 | mutex_lock(&wm831x->io_lock); | ||
204 | |||
205 | ret = wm831x_read(wm831x, reg, 2, &val); | ||
206 | |||
207 | mutex_unlock(&wm831x->io_lock); | ||
208 | |||
209 | if (ret < 0) | ||
210 | return ret; | ||
211 | else | ||
212 | return val; | ||
213 | } | ||
214 | EXPORT_SYMBOL_GPL(wm831x_reg_read); | ||
215 | |||
216 | /** | ||
217 | * wm831x_bulk_read: Read multiple WM831x registers | ||
218 | * | ||
219 | * @wm831x: Device to read from | ||
220 | * @reg: First register | ||
221 | * @count: Number of registers | ||
222 | * @buf: Buffer to fill. | ||
223 | */ | ||
224 | int wm831x_bulk_read(struct wm831x *wm831x, unsigned short reg, | ||
225 | int count, u16 *buf) | ||
226 | { | ||
227 | int ret; | ||
228 | |||
229 | mutex_lock(&wm831x->io_lock); | ||
230 | |||
231 | ret = wm831x_read(wm831x, reg, count * 2, buf); | ||
232 | |||
233 | mutex_unlock(&wm831x->io_lock); | ||
234 | |||
235 | return ret; | ||
236 | } | ||
237 | EXPORT_SYMBOL_GPL(wm831x_bulk_read); | ||
238 | |||
239 | static int wm831x_write(struct wm831x *wm831x, unsigned short reg, | ||
240 | int bytes, void *src) | ||
241 | { | ||
242 | u16 *buf = src; | ||
243 | int i; | ||
244 | |||
245 | BUG_ON(bytes % 2); | ||
246 | BUG_ON(bytes <= 0); | ||
247 | |||
248 | for (i = 0; i < bytes / 2; i++) { | ||
249 | if (wm831x_reg_locked(wm831x, reg)) | ||
250 | return -EPERM; | ||
251 | |||
252 | dev_vdbg(wm831x->dev, "Write %04x to R%d(0x%x)\n", | ||
253 | buf[i], reg + i, reg + i); | ||
254 | |||
255 | buf[i] = cpu_to_be16(buf[i]); | ||
256 | } | ||
257 | |||
258 | return wm831x->write_dev(wm831x, reg, bytes, src); | ||
259 | } | ||
260 | |||
261 | /** | ||
262 | * wm831x_reg_write: Write a single WM831x register. | ||
263 | * | ||
264 | * @wm831x: Device to write to. | ||
265 | * @reg: Register to write to. | ||
266 | * @val: Value to write. | ||
267 | */ | ||
268 | int wm831x_reg_write(struct wm831x *wm831x, unsigned short reg, | ||
269 | unsigned short val) | ||
270 | { | ||
271 | int ret; | ||
272 | |||
273 | mutex_lock(&wm831x->io_lock); | ||
274 | |||
275 | ret = wm831x_write(wm831x, reg, 2, &val); | ||
276 | |||
277 | mutex_unlock(&wm831x->io_lock); | ||
278 | |||
279 | return ret; | ||
280 | } | ||
281 | EXPORT_SYMBOL_GPL(wm831x_reg_write); | ||
282 | |||
283 | /** | ||
284 | * wm831x_set_bits: Set the value of a bitfield in a WM831x register | ||
285 | * | ||
286 | * @wm831x: Device to write to. | ||
287 | * @reg: Register to write to. | ||
288 | * @mask: Mask of bits to set. | ||
289 | * @val: Value to set (unshifted) | ||
290 | */ | ||
291 | int wm831x_set_bits(struct wm831x *wm831x, unsigned short reg, | ||
292 | unsigned short mask, unsigned short val) | ||
293 | { | ||
294 | int ret; | ||
295 | u16 r; | ||
296 | |||
297 | mutex_lock(&wm831x->io_lock); | ||
298 | |||
299 | ret = wm831x_read(wm831x, reg, 2, &r); | ||
300 | if (ret < 0) | ||
301 | goto out; | ||
302 | |||
303 | r &= ~mask; | ||
304 | r |= val; | ||
305 | |||
306 | ret = wm831x_write(wm831x, reg, 2, &r); | ||
307 | |||
308 | out: | ||
309 | mutex_unlock(&wm831x->io_lock); | ||
310 | |||
311 | return ret; | ||
312 | } | ||
313 | EXPORT_SYMBOL_GPL(wm831x_set_bits); | ||
314 | |||
315 | /** | ||
316 | * wm831x_auxadc_read: Read a value from the WM831x AUXADC | ||
317 | * | ||
318 | * @wm831x: Device to read from. | ||
319 | * @input: AUXADC input to read. | ||
320 | */ | ||
321 | int wm831x_auxadc_read(struct wm831x *wm831x, enum wm831x_auxadc input) | ||
322 | { | ||
323 | int tries = 10; | ||
324 | int ret, src; | ||
325 | |||
326 | mutex_lock(&wm831x->auxadc_lock); | ||
327 | |||
328 | ret = wm831x_set_bits(wm831x, WM831X_AUXADC_CONTROL, | ||
329 | WM831X_AUX_ENA, WM831X_AUX_ENA); | ||
330 | if (ret < 0) { | ||
331 | dev_err(wm831x->dev, "Failed to enable AUXADC: %d\n", ret); | ||
332 | goto out; | ||
333 | } | ||
334 | |||
335 | /* We force a single source at present */ | ||
336 | src = input; | ||
337 | ret = wm831x_reg_write(wm831x, WM831X_AUXADC_SOURCE, | ||
338 | 1 << src); | ||
339 | if (ret < 0) { | ||
340 | dev_err(wm831x->dev, "Failed to set AUXADC source: %d\n", ret); | ||
341 | goto out; | ||
342 | } | ||
343 | |||
344 | ret = wm831x_set_bits(wm831x, WM831X_AUXADC_CONTROL, | ||
345 | WM831X_AUX_CVT_ENA, WM831X_AUX_CVT_ENA); | ||
346 | if (ret < 0) { | ||
347 | dev_err(wm831x->dev, "Failed to start AUXADC: %d\n", ret); | ||
348 | goto disable; | ||
349 | } | ||
350 | |||
351 | do { | ||
352 | msleep(1); | ||
353 | |||
354 | ret = wm831x_reg_read(wm831x, WM831X_AUXADC_CONTROL); | ||
355 | if (ret < 0) | ||
356 | ret = WM831X_AUX_CVT_ENA; | ||
357 | } while ((ret & WM831X_AUX_CVT_ENA) && --tries); | ||
358 | |||
359 | if (ret & WM831X_AUX_CVT_ENA) { | ||
360 | dev_err(wm831x->dev, "Timed out reading AUXADC\n"); | ||
361 | ret = -EBUSY; | ||
362 | goto disable; | ||
363 | } | ||
364 | |||
365 | ret = wm831x_reg_read(wm831x, WM831X_AUXADC_DATA); | ||
366 | if (ret < 0) { | ||
367 | dev_err(wm831x->dev, "Failed to read AUXADC data: %d\n", ret); | ||
368 | } else { | ||
369 | src = ((ret & WM831X_AUX_DATA_SRC_MASK) | ||
370 | >> WM831X_AUX_DATA_SRC_SHIFT) - 1; | ||
371 | |||
372 | if (src == 14) | ||
373 | src = WM831X_AUX_CAL; | ||
374 | |||
375 | if (src != input) { | ||
376 | dev_err(wm831x->dev, "Data from source %d not %d\n", | ||
377 | src, input); | ||
378 | ret = -EINVAL; | ||
379 | } else { | ||
380 | ret &= WM831X_AUX_DATA_MASK; | ||
381 | } | ||
382 | } | ||
383 | |||
384 | disable: | ||
385 | wm831x_set_bits(wm831x, WM831X_AUXADC_CONTROL, WM831X_AUX_ENA, 0); | ||
386 | out: | ||
387 | mutex_unlock(&wm831x->auxadc_lock); | ||
388 | return ret; | ||
389 | } | ||
390 | EXPORT_SYMBOL_GPL(wm831x_auxadc_read); | ||
391 | |||
392 | /** | ||
393 | * wm831x_auxadc_read_uv: Read a voltage from the WM831x AUXADC | ||
394 | * | ||
395 | * @wm831x: Device to read from. | ||
396 | * @input: AUXADC input to read. | ||
397 | */ | ||
398 | int wm831x_auxadc_read_uv(struct wm831x *wm831x, enum wm831x_auxadc input) | ||
399 | { | ||
400 | int ret; | ||
401 | |||
402 | ret = wm831x_auxadc_read(wm831x, input); | ||
403 | if (ret < 0) | ||
404 | return ret; | ||
405 | |||
406 | ret *= 1465; | ||
407 | |||
408 | return ret; | ||
409 | } | ||
410 | EXPORT_SYMBOL_GPL(wm831x_auxadc_read_uv); | ||
411 | |||
412 | static struct resource wm831x_dcdc1_resources[] = { | ||
413 | { | ||
414 | .start = WM831X_DC1_CONTROL_1, | ||
415 | .end = WM831X_DC1_DVS_CONTROL, | ||
416 | .flags = IORESOURCE_IO, | ||
417 | }, | ||
418 | { | ||
419 | .name = "UV", | ||
420 | .start = WM831X_IRQ_UV_DC1, | ||
421 | .end = WM831X_IRQ_UV_DC1, | ||
422 | .flags = IORESOURCE_IRQ, | ||
423 | }, | ||
424 | { | ||
425 | .name = "HC", | ||
426 | .start = WM831X_IRQ_HC_DC1, | ||
427 | .end = WM831X_IRQ_HC_DC1, | ||
428 | .flags = IORESOURCE_IRQ, | ||
429 | }, | ||
430 | }; | ||
431 | |||
432 | |||
433 | static struct resource wm831x_dcdc2_resources[] = { | ||
434 | { | ||
435 | .start = WM831X_DC2_CONTROL_1, | ||
436 | .end = WM831X_DC2_DVS_CONTROL, | ||
437 | .flags = IORESOURCE_IO, | ||
438 | }, | ||
439 | { | ||
440 | .name = "UV", | ||
441 | .start = WM831X_IRQ_UV_DC2, | ||
442 | .end = WM831X_IRQ_UV_DC2, | ||
443 | .flags = IORESOURCE_IRQ, | ||
444 | }, | ||
445 | { | ||
446 | .name = "HC", | ||
447 | .start = WM831X_IRQ_HC_DC2, | ||
448 | .end = WM831X_IRQ_HC_DC2, | ||
449 | .flags = IORESOURCE_IRQ, | ||
450 | }, | ||
451 | }; | ||
452 | |||
453 | static struct resource wm831x_dcdc3_resources[] = { | ||
454 | { | ||
455 | .start = WM831X_DC3_CONTROL_1, | ||
456 | .end = WM831X_DC3_SLEEP_CONTROL, | ||
457 | .flags = IORESOURCE_IO, | ||
458 | }, | ||
459 | { | ||
460 | .name = "UV", | ||
461 | .start = WM831X_IRQ_UV_DC3, | ||
462 | .end = WM831X_IRQ_UV_DC3, | ||
463 | .flags = IORESOURCE_IRQ, | ||
464 | }, | ||
465 | }; | ||
466 | |||
467 | static struct resource wm831x_dcdc4_resources[] = { | ||
468 | { | ||
469 | .start = WM831X_DC4_CONTROL, | ||
470 | .end = WM831X_DC4_SLEEP_CONTROL, | ||
471 | .flags = IORESOURCE_IO, | ||
472 | }, | ||
473 | { | ||
474 | .name = "UV", | ||
475 | .start = WM831X_IRQ_UV_DC4, | ||
476 | .end = WM831X_IRQ_UV_DC4, | ||
477 | .flags = IORESOURCE_IRQ, | ||
478 | }, | ||
479 | }; | ||
480 | |||
481 | static struct resource wm831x_gpio_resources[] = { | ||
482 | { | ||
483 | .start = WM831X_IRQ_GPIO_1, | ||
484 | .end = WM831X_IRQ_GPIO_16, | ||
485 | .flags = IORESOURCE_IRQ, | ||
486 | }, | ||
487 | }; | ||
488 | |||
489 | static struct resource wm831x_isink1_resources[] = { | ||
490 | { | ||
491 | .start = WM831X_CURRENT_SINK_1, | ||
492 | .end = WM831X_CURRENT_SINK_1, | ||
493 | .flags = IORESOURCE_IO, | ||
494 | }, | ||
495 | { | ||
496 | .start = WM831X_IRQ_CS1, | ||
497 | .end = WM831X_IRQ_CS1, | ||
498 | .flags = IORESOURCE_IRQ, | ||
499 | }, | ||
500 | }; | ||
501 | |||
502 | static struct resource wm831x_isink2_resources[] = { | ||
503 | { | ||
504 | .start = WM831X_CURRENT_SINK_2, | ||
505 | .end = WM831X_CURRENT_SINK_2, | ||
506 | .flags = IORESOURCE_IO, | ||
507 | }, | ||
508 | { | ||
509 | .start = WM831X_IRQ_CS2, | ||
510 | .end = WM831X_IRQ_CS2, | ||
511 | .flags = IORESOURCE_IRQ, | ||
512 | }, | ||
513 | }; | ||
514 | |||
515 | static struct resource wm831x_ldo1_resources[] = { | ||
516 | { | ||
517 | .start = WM831X_LDO1_CONTROL, | ||
518 | .end = WM831X_LDO1_SLEEP_CONTROL, | ||
519 | .flags = IORESOURCE_IO, | ||
520 | }, | ||
521 | { | ||
522 | .name = "UV", | ||
523 | .start = WM831X_IRQ_UV_LDO1, | ||
524 | .end = WM831X_IRQ_UV_LDO1, | ||
525 | .flags = IORESOURCE_IRQ, | ||
526 | }, | ||
527 | }; | ||
528 | |||
529 | static struct resource wm831x_ldo2_resources[] = { | ||
530 | { | ||
531 | .start = WM831X_LDO2_CONTROL, | ||
532 | .end = WM831X_LDO2_SLEEP_CONTROL, | ||
533 | .flags = IORESOURCE_IO, | ||
534 | }, | ||
535 | { | ||
536 | .name = "UV", | ||
537 | .start = WM831X_IRQ_UV_LDO2, | ||
538 | .end = WM831X_IRQ_UV_LDO2, | ||
539 | .flags = IORESOURCE_IRQ, | ||
540 | }, | ||
541 | }; | ||
542 | |||
543 | static struct resource wm831x_ldo3_resources[] = { | ||
544 | { | ||
545 | .start = WM831X_LDO3_CONTROL, | ||
546 | .end = WM831X_LDO3_SLEEP_CONTROL, | ||
547 | .flags = IORESOURCE_IO, | ||
548 | }, | ||
549 | { | ||
550 | .name = "UV", | ||
551 | .start = WM831X_IRQ_UV_LDO3, | ||
552 | .end = WM831X_IRQ_UV_LDO3, | ||
553 | .flags = IORESOURCE_IRQ, | ||
554 | }, | ||
555 | }; | ||
556 | |||
557 | static struct resource wm831x_ldo4_resources[] = { | ||
558 | { | ||
559 | .start = WM831X_LDO4_CONTROL, | ||
560 | .end = WM831X_LDO4_SLEEP_CONTROL, | ||
561 | .flags = IORESOURCE_IO, | ||
562 | }, | ||
563 | { | ||
564 | .name = "UV", | ||
565 | .start = WM831X_IRQ_UV_LDO4, | ||
566 | .end = WM831X_IRQ_UV_LDO4, | ||
567 | .flags = IORESOURCE_IRQ, | ||
568 | }, | ||
569 | }; | ||
570 | |||
571 | static struct resource wm831x_ldo5_resources[] = { | ||
572 | { | ||
573 | .start = WM831X_LDO5_CONTROL, | ||
574 | .end = WM831X_LDO5_SLEEP_CONTROL, | ||
575 | .flags = IORESOURCE_IO, | ||
576 | }, | ||
577 | { | ||
578 | .name = "UV", | ||
579 | .start = WM831X_IRQ_UV_LDO5, | ||
580 | .end = WM831X_IRQ_UV_LDO5, | ||
581 | .flags = IORESOURCE_IRQ, | ||
582 | }, | ||
583 | }; | ||
584 | |||
585 | static struct resource wm831x_ldo6_resources[] = { | ||
586 | { | ||
587 | .start = WM831X_LDO6_CONTROL, | ||
588 | .end = WM831X_LDO6_SLEEP_CONTROL, | ||
589 | .flags = IORESOURCE_IO, | ||
590 | }, | ||
591 | { | ||
592 | .name = "UV", | ||
593 | .start = WM831X_IRQ_UV_LDO6, | ||
594 | .end = WM831X_IRQ_UV_LDO6, | ||
595 | .flags = IORESOURCE_IRQ, | ||
596 | }, | ||
597 | }; | ||
598 | |||
599 | static struct resource wm831x_ldo7_resources[] = { | ||
600 | { | ||
601 | .start = WM831X_LDO7_CONTROL, | ||
602 | .end = WM831X_LDO7_SLEEP_CONTROL, | ||
603 | .flags = IORESOURCE_IO, | ||
604 | }, | ||
605 | { | ||
606 | .name = "UV", | ||
607 | .start = WM831X_IRQ_UV_LDO7, | ||
608 | .end = WM831X_IRQ_UV_LDO7, | ||
609 | .flags = IORESOURCE_IRQ, | ||
610 | }, | ||
611 | }; | ||
612 | |||
613 | static struct resource wm831x_ldo8_resources[] = { | ||
614 | { | ||
615 | .start = WM831X_LDO8_CONTROL, | ||
616 | .end = WM831X_LDO8_SLEEP_CONTROL, | ||
617 | .flags = IORESOURCE_IO, | ||
618 | }, | ||
619 | { | ||
620 | .name = "UV", | ||
621 | .start = WM831X_IRQ_UV_LDO8, | ||
622 | .end = WM831X_IRQ_UV_LDO8, | ||
623 | .flags = IORESOURCE_IRQ, | ||
624 | }, | ||
625 | }; | ||
626 | |||
627 | static struct resource wm831x_ldo9_resources[] = { | ||
628 | { | ||
629 | .start = WM831X_LDO9_CONTROL, | ||
630 | .end = WM831X_LDO9_SLEEP_CONTROL, | ||
631 | .flags = IORESOURCE_IO, | ||
632 | }, | ||
633 | { | ||
634 | .name = "UV", | ||
635 | .start = WM831X_IRQ_UV_LDO9, | ||
636 | .end = WM831X_IRQ_UV_LDO9, | ||
637 | .flags = IORESOURCE_IRQ, | ||
638 | }, | ||
639 | }; | ||
640 | |||
641 | static struct resource wm831x_ldo10_resources[] = { | ||
642 | { | ||
643 | .start = WM831X_LDO10_CONTROL, | ||
644 | .end = WM831X_LDO10_SLEEP_CONTROL, | ||
645 | .flags = IORESOURCE_IO, | ||
646 | }, | ||
647 | { | ||
648 | .name = "UV", | ||
649 | .start = WM831X_IRQ_UV_LDO10, | ||
650 | .end = WM831X_IRQ_UV_LDO10, | ||
651 | .flags = IORESOURCE_IRQ, | ||
652 | }, | ||
653 | }; | ||
654 | |||
655 | static struct resource wm831x_ldo11_resources[] = { | ||
656 | { | ||
657 | .start = WM831X_LDO11_ON_CONTROL, | ||
658 | .end = WM831X_LDO11_SLEEP_CONTROL, | ||
659 | .flags = IORESOURCE_IO, | ||
660 | }, | ||
661 | }; | ||
662 | |||
663 | static struct resource wm831x_on_resources[] = { | ||
664 | { | ||
665 | .start = WM831X_IRQ_ON, | ||
666 | .end = WM831X_IRQ_ON, | ||
667 | .flags = IORESOURCE_IRQ, | ||
668 | }, | ||
669 | }; | ||
670 | |||
671 | |||
672 | static struct resource wm831x_power_resources[] = { | ||
673 | { | ||
674 | .name = "SYSLO", | ||
675 | .start = WM831X_IRQ_PPM_SYSLO, | ||
676 | .end = WM831X_IRQ_PPM_SYSLO, | ||
677 | .flags = IORESOURCE_IRQ, | ||
678 | }, | ||
679 | { | ||
680 | .name = "PWR SRC", | ||
681 | .start = WM831X_IRQ_PPM_PWR_SRC, | ||
682 | .end = WM831X_IRQ_PPM_PWR_SRC, | ||
683 | .flags = IORESOURCE_IRQ, | ||
684 | }, | ||
685 | { | ||
686 | .name = "USB CURR", | ||
687 | .start = WM831X_IRQ_PPM_USB_CURR, | ||
688 | .end = WM831X_IRQ_PPM_USB_CURR, | ||
689 | .flags = IORESOURCE_IRQ, | ||
690 | }, | ||
691 | { | ||
692 | .name = "BATT HOT", | ||
693 | .start = WM831X_IRQ_CHG_BATT_HOT, | ||
694 | .end = WM831X_IRQ_CHG_BATT_HOT, | ||
695 | .flags = IORESOURCE_IRQ, | ||
696 | }, | ||
697 | { | ||
698 | .name = "BATT COLD", | ||
699 | .start = WM831X_IRQ_CHG_BATT_COLD, | ||
700 | .end = WM831X_IRQ_CHG_BATT_COLD, | ||
701 | .flags = IORESOURCE_IRQ, | ||
702 | }, | ||
703 | { | ||
704 | .name = "BATT FAIL", | ||
705 | .start = WM831X_IRQ_CHG_BATT_FAIL, | ||
706 | .end = WM831X_IRQ_CHG_BATT_FAIL, | ||
707 | .flags = IORESOURCE_IRQ, | ||
708 | }, | ||
709 | { | ||
710 | .name = "OV", | ||
711 | .start = WM831X_IRQ_CHG_OV, | ||
712 | .end = WM831X_IRQ_CHG_OV, | ||
713 | .flags = IORESOURCE_IRQ, | ||
714 | }, | ||
715 | { | ||
716 | .name = "END", | ||
717 | .start = WM831X_IRQ_CHG_END, | ||
718 | .end = WM831X_IRQ_CHG_END, | ||
719 | .flags = IORESOURCE_IRQ, | ||
720 | }, | ||
721 | { | ||
722 | .name = "TO", | ||
723 | .start = WM831X_IRQ_CHG_TO, | ||
724 | .end = WM831X_IRQ_CHG_TO, | ||
725 | .flags = IORESOURCE_IRQ, | ||
726 | }, | ||
727 | { | ||
728 | .name = "MODE", | ||
729 | .start = WM831X_IRQ_CHG_MODE, | ||
730 | .end = WM831X_IRQ_CHG_MODE, | ||
731 | .flags = IORESOURCE_IRQ, | ||
732 | }, | ||
733 | { | ||
734 | .name = "START", | ||
735 | .start = WM831X_IRQ_CHG_START, | ||
736 | .end = WM831X_IRQ_CHG_START, | ||
737 | .flags = IORESOURCE_IRQ, | ||
738 | }, | ||
739 | }; | ||
740 | |||
741 | static struct resource wm831x_rtc_resources[] = { | ||
742 | { | ||
743 | .name = "PER", | ||
744 | .start = WM831X_IRQ_RTC_PER, | ||
745 | .end = WM831X_IRQ_RTC_PER, | ||
746 | .flags = IORESOURCE_IRQ, | ||
747 | }, | ||
748 | { | ||
749 | .name = "ALM", | ||
750 | .start = WM831X_IRQ_RTC_ALM, | ||
751 | .end = WM831X_IRQ_RTC_ALM, | ||
752 | .flags = IORESOURCE_IRQ, | ||
753 | }, | ||
754 | }; | ||
755 | |||
756 | static struct resource wm831x_status1_resources[] = { | ||
757 | { | ||
758 | .start = WM831X_STATUS_LED_1, | ||
759 | .end = WM831X_STATUS_LED_1, | ||
760 | .flags = IORESOURCE_IO, | ||
761 | }, | ||
762 | }; | ||
763 | |||
764 | static struct resource wm831x_status2_resources[] = { | ||
765 | { | ||
766 | .start = WM831X_STATUS_LED_2, | ||
767 | .end = WM831X_STATUS_LED_2, | ||
768 | .flags = IORESOURCE_IO, | ||
769 | }, | ||
770 | }; | ||
771 | |||
772 | static struct resource wm831x_touch_resources[] = { | ||
773 | { | ||
774 | .name = "TCHPD", | ||
775 | .start = WM831X_IRQ_TCHPD, | ||
776 | .end = WM831X_IRQ_TCHPD, | ||
777 | .flags = IORESOURCE_IRQ, | ||
778 | }, | ||
779 | { | ||
780 | .name = "TCHDATA", | ||
781 | .start = WM831X_IRQ_TCHDATA, | ||
782 | .end = WM831X_IRQ_TCHDATA, | ||
783 | .flags = IORESOURCE_IRQ, | ||
784 | }, | ||
785 | }; | ||
786 | |||
787 | static struct resource wm831x_wdt_resources[] = { | ||
788 | { | ||
789 | .start = WM831X_IRQ_WDOG_TO, | ||
790 | .end = WM831X_IRQ_WDOG_TO, | ||
791 | .flags = IORESOURCE_IRQ, | ||
792 | }, | ||
793 | }; | ||
794 | |||
795 | static struct mfd_cell wm8310_devs[] = { | ||
796 | { | ||
797 | .name = "wm831x-buckv", | ||
798 | .id = 1, | ||
799 | .num_resources = ARRAY_SIZE(wm831x_dcdc1_resources), | ||
800 | .resources = wm831x_dcdc1_resources, | ||
801 | }, | ||
802 | { | ||
803 | .name = "wm831x-buckv", | ||
804 | .id = 2, | ||
805 | .num_resources = ARRAY_SIZE(wm831x_dcdc2_resources), | ||
806 | .resources = wm831x_dcdc2_resources, | ||
807 | }, | ||
808 | { | ||
809 | .name = "wm831x-buckp", | ||
810 | .id = 3, | ||
811 | .num_resources = ARRAY_SIZE(wm831x_dcdc3_resources), | ||
812 | .resources = wm831x_dcdc3_resources, | ||
813 | }, | ||
814 | { | ||
815 | .name = "wm831x-boostp", | ||
816 | .id = 4, | ||
817 | .num_resources = ARRAY_SIZE(wm831x_dcdc4_resources), | ||
818 | .resources = wm831x_dcdc4_resources, | ||
819 | }, | ||
820 | { | ||
821 | .name = "wm831x-epe", | ||
822 | .id = 1, | ||
823 | }, | ||
824 | { | ||
825 | .name = "wm831x-epe", | ||
826 | .id = 2, | ||
827 | }, | ||
828 | { | ||
829 | .name = "wm831x-gpio", | ||
830 | .num_resources = ARRAY_SIZE(wm831x_gpio_resources), | ||
831 | .resources = wm831x_gpio_resources, | ||
832 | }, | ||
833 | { | ||
834 | .name = "wm831x-hwmon", | ||
835 | }, | ||
836 | { | ||
837 | .name = "wm831x-isink", | ||
838 | .id = 1, | ||
839 | .num_resources = ARRAY_SIZE(wm831x_isink1_resources), | ||
840 | .resources = wm831x_isink1_resources, | ||
841 | }, | ||
842 | { | ||
843 | .name = "wm831x-isink", | ||
844 | .id = 2, | ||
845 | .num_resources = ARRAY_SIZE(wm831x_isink2_resources), | ||
846 | .resources = wm831x_isink2_resources, | ||
847 | }, | ||
848 | { | ||
849 | .name = "wm831x-ldo", | ||
850 | .id = 1, | ||
851 | .num_resources = ARRAY_SIZE(wm831x_ldo1_resources), | ||
852 | .resources = wm831x_ldo1_resources, | ||
853 | }, | ||
854 | { | ||
855 | .name = "wm831x-ldo", | ||
856 | .id = 2, | ||
857 | .num_resources = ARRAY_SIZE(wm831x_ldo2_resources), | ||
858 | .resources = wm831x_ldo2_resources, | ||
859 | }, | ||
860 | { | ||
861 | .name = "wm831x-ldo", | ||
862 | .id = 3, | ||
863 | .num_resources = ARRAY_SIZE(wm831x_ldo3_resources), | ||
864 | .resources = wm831x_ldo3_resources, | ||
865 | }, | ||
866 | { | ||
867 | .name = "wm831x-ldo", | ||
868 | .id = 4, | ||
869 | .num_resources = ARRAY_SIZE(wm831x_ldo4_resources), | ||
870 | .resources = wm831x_ldo4_resources, | ||
871 | }, | ||
872 | { | ||
873 | .name = "wm831x-ldo", | ||
874 | .id = 5, | ||
875 | .num_resources = ARRAY_SIZE(wm831x_ldo5_resources), | ||
876 | .resources = wm831x_ldo5_resources, | ||
877 | }, | ||
878 | { | ||
879 | .name = "wm831x-ldo", | ||
880 | .id = 6, | ||
881 | .num_resources = ARRAY_SIZE(wm831x_ldo6_resources), | ||
882 | .resources = wm831x_ldo6_resources, | ||
883 | }, | ||
884 | { | ||
885 | .name = "wm831x-aldo", | ||
886 | .id = 7, | ||
887 | .num_resources = ARRAY_SIZE(wm831x_ldo7_resources), | ||
888 | .resources = wm831x_ldo7_resources, | ||
889 | }, | ||
890 | { | ||
891 | .name = "wm831x-aldo", | ||
892 | .id = 8, | ||
893 | .num_resources = ARRAY_SIZE(wm831x_ldo8_resources), | ||
894 | .resources = wm831x_ldo8_resources, | ||
895 | }, | ||
896 | { | ||
897 | .name = "wm831x-aldo", | ||
898 | .id = 9, | ||
899 | .num_resources = ARRAY_SIZE(wm831x_ldo9_resources), | ||
900 | .resources = wm831x_ldo9_resources, | ||
901 | }, | ||
902 | { | ||
903 | .name = "wm831x-aldo", | ||
904 | .id = 10, | ||
905 | .num_resources = ARRAY_SIZE(wm831x_ldo10_resources), | ||
906 | .resources = wm831x_ldo10_resources, | ||
907 | }, | ||
908 | { | ||
909 | .name = "wm831x-alive-ldo", | ||
910 | .id = 11, | ||
911 | .num_resources = ARRAY_SIZE(wm831x_ldo11_resources), | ||
912 | .resources = wm831x_ldo11_resources, | ||
913 | }, | ||
914 | { | ||
915 | .name = "wm831x-on", | ||
916 | .num_resources = ARRAY_SIZE(wm831x_on_resources), | ||
917 | .resources = wm831x_on_resources, | ||
918 | }, | ||
919 | { | ||
920 | .name = "wm831x-power", | ||
921 | .num_resources = ARRAY_SIZE(wm831x_power_resources), | ||
922 | .resources = wm831x_power_resources, | ||
923 | }, | ||
924 | { | ||
925 | .name = "wm831x-rtc", | ||
926 | .num_resources = ARRAY_SIZE(wm831x_rtc_resources), | ||
927 | .resources = wm831x_rtc_resources, | ||
928 | }, | ||
929 | { | ||
930 | .name = "wm831x-status", | ||
931 | .id = 1, | ||
932 | .num_resources = ARRAY_SIZE(wm831x_status1_resources), | ||
933 | .resources = wm831x_status1_resources, | ||
934 | }, | ||
935 | { | ||
936 | .name = "wm831x-status", | ||
937 | .id = 2, | ||
938 | .num_resources = ARRAY_SIZE(wm831x_status2_resources), | ||
939 | .resources = wm831x_status2_resources, | ||
940 | }, | ||
941 | { | ||
942 | .name = "wm831x-watchdog", | ||
943 | .num_resources = ARRAY_SIZE(wm831x_wdt_resources), | ||
944 | .resources = wm831x_wdt_resources, | ||
945 | }, | ||
946 | }; | ||
947 | |||
948 | static struct mfd_cell wm8311_devs[] = { | ||
949 | { | ||
950 | .name = "wm831x-buckv", | ||
951 | .id = 1, | ||
952 | .num_resources = ARRAY_SIZE(wm831x_dcdc1_resources), | ||
953 | .resources = wm831x_dcdc1_resources, | ||
954 | }, | ||
955 | { | ||
956 | .name = "wm831x-buckv", | ||
957 | .id = 2, | ||
958 | .num_resources = ARRAY_SIZE(wm831x_dcdc2_resources), | ||
959 | .resources = wm831x_dcdc2_resources, | ||
960 | }, | ||
961 | { | ||
962 | .name = "wm831x-buckp", | ||
963 | .id = 3, | ||
964 | .num_resources = ARRAY_SIZE(wm831x_dcdc3_resources), | ||
965 | .resources = wm831x_dcdc3_resources, | ||
966 | }, | ||
967 | { | ||
968 | .name = "wm831x-boostp", | ||
969 | .id = 4, | ||
970 | .num_resources = ARRAY_SIZE(wm831x_dcdc4_resources), | ||
971 | .resources = wm831x_dcdc4_resources, | ||
972 | }, | ||
973 | { | ||
974 | .name = "wm831x-epe", | ||
975 | .id = 1, | ||
976 | }, | ||
977 | { | ||
978 | .name = "wm831x-epe", | ||
979 | .id = 2, | ||
980 | }, | ||
981 | { | ||
982 | .name = "wm831x-gpio", | ||
983 | .num_resources = ARRAY_SIZE(wm831x_gpio_resources), | ||
984 | .resources = wm831x_gpio_resources, | ||
985 | }, | ||
986 | { | ||
987 | .name = "wm831x-hwmon", | ||
988 | }, | ||
989 | { | ||
990 | .name = "wm831x-isink", | ||
991 | .id = 1, | ||
992 | .num_resources = ARRAY_SIZE(wm831x_isink1_resources), | ||
993 | .resources = wm831x_isink1_resources, | ||
994 | }, | ||
995 | { | ||
996 | .name = "wm831x-isink", | ||
997 | .id = 2, | ||
998 | .num_resources = ARRAY_SIZE(wm831x_isink2_resources), | ||
999 | .resources = wm831x_isink2_resources, | ||
1000 | }, | ||
1001 | { | ||
1002 | .name = "wm831x-ldo", | ||
1003 | .id = 1, | ||
1004 | .num_resources = ARRAY_SIZE(wm831x_ldo1_resources), | ||
1005 | .resources = wm831x_ldo1_resources, | ||
1006 | }, | ||
1007 | { | ||
1008 | .name = "wm831x-ldo", | ||
1009 | .id = 2, | ||
1010 | .num_resources = ARRAY_SIZE(wm831x_ldo2_resources), | ||
1011 | .resources = wm831x_ldo2_resources, | ||
1012 | }, | ||
1013 | { | ||
1014 | .name = "wm831x-ldo", | ||
1015 | .id = 3, | ||
1016 | .num_resources = ARRAY_SIZE(wm831x_ldo3_resources), | ||
1017 | .resources = wm831x_ldo3_resources, | ||
1018 | }, | ||
1019 | { | ||
1020 | .name = "wm831x-ldo", | ||
1021 | .id = 4, | ||
1022 | .num_resources = ARRAY_SIZE(wm831x_ldo4_resources), | ||
1023 | .resources = wm831x_ldo4_resources, | ||
1024 | }, | ||
1025 | { | ||
1026 | .name = "wm831x-ldo", | ||
1027 | .id = 5, | ||
1028 | .num_resources = ARRAY_SIZE(wm831x_ldo5_resources), | ||
1029 | .resources = wm831x_ldo5_resources, | ||
1030 | }, | ||
1031 | { | ||
1032 | .name = "wm831x-aldo", | ||
1033 | .id = 7, | ||
1034 | .num_resources = ARRAY_SIZE(wm831x_ldo7_resources), | ||
1035 | .resources = wm831x_ldo7_resources, | ||
1036 | }, | ||
1037 | { | ||
1038 | .name = "wm831x-alive-ldo", | ||
1039 | .id = 11, | ||
1040 | .num_resources = ARRAY_SIZE(wm831x_ldo11_resources), | ||
1041 | .resources = wm831x_ldo11_resources, | ||
1042 | }, | ||
1043 | { | ||
1044 | .name = "wm831x-on", | ||
1045 | .num_resources = ARRAY_SIZE(wm831x_on_resources), | ||
1046 | .resources = wm831x_on_resources, | ||
1047 | }, | ||
1048 | { | ||
1049 | .name = "wm831x-power", | ||
1050 | .num_resources = ARRAY_SIZE(wm831x_power_resources), | ||
1051 | .resources = wm831x_power_resources, | ||
1052 | }, | ||
1053 | { | ||
1054 | .name = "wm831x-rtc", | ||
1055 | .num_resources = ARRAY_SIZE(wm831x_rtc_resources), | ||
1056 | .resources = wm831x_rtc_resources, | ||
1057 | }, | ||
1058 | { | ||
1059 | .name = "wm831x-status", | ||
1060 | .id = 1, | ||
1061 | .num_resources = ARRAY_SIZE(wm831x_status1_resources), | ||
1062 | .resources = wm831x_status1_resources, | ||
1063 | }, | ||
1064 | { | ||
1065 | .name = "wm831x-status", | ||
1066 | .id = 2, | ||
1067 | .num_resources = ARRAY_SIZE(wm831x_status2_resources), | ||
1068 | .resources = wm831x_status2_resources, | ||
1069 | }, | ||
1070 | { | ||
1071 | .name = "wm831x-touch", | ||
1072 | .num_resources = ARRAY_SIZE(wm831x_touch_resources), | ||
1073 | .resources = wm831x_touch_resources, | ||
1074 | }, | ||
1075 | { | ||
1076 | .name = "wm831x-watchdog", | ||
1077 | .num_resources = ARRAY_SIZE(wm831x_wdt_resources), | ||
1078 | .resources = wm831x_wdt_resources, | ||
1079 | }, | ||
1080 | }; | ||
1081 | |||
1082 | static struct mfd_cell wm8312_devs[] = { | ||
1083 | { | ||
1084 | .name = "wm831x-buckv", | ||
1085 | .id = 1, | ||
1086 | .num_resources = ARRAY_SIZE(wm831x_dcdc1_resources), | ||
1087 | .resources = wm831x_dcdc1_resources, | ||
1088 | }, | ||
1089 | { | ||
1090 | .name = "wm831x-buckv", | ||
1091 | .id = 2, | ||
1092 | .num_resources = ARRAY_SIZE(wm831x_dcdc2_resources), | ||
1093 | .resources = wm831x_dcdc2_resources, | ||
1094 | }, | ||
1095 | { | ||
1096 | .name = "wm831x-buckp", | ||
1097 | .id = 3, | ||
1098 | .num_resources = ARRAY_SIZE(wm831x_dcdc3_resources), | ||
1099 | .resources = wm831x_dcdc3_resources, | ||
1100 | }, | ||
1101 | { | ||
1102 | .name = "wm831x-boostp", | ||
1103 | .id = 4, | ||
1104 | .num_resources = ARRAY_SIZE(wm831x_dcdc4_resources), | ||
1105 | .resources = wm831x_dcdc4_resources, | ||
1106 | }, | ||
1107 | { | ||
1108 | .name = "wm831x-epe", | ||
1109 | .id = 1, | ||
1110 | }, | ||
1111 | { | ||
1112 | .name = "wm831x-epe", | ||
1113 | .id = 2, | ||
1114 | }, | ||
1115 | { | ||
1116 | .name = "wm831x-gpio", | ||
1117 | .num_resources = ARRAY_SIZE(wm831x_gpio_resources), | ||
1118 | .resources = wm831x_gpio_resources, | ||
1119 | }, | ||
1120 | { | ||
1121 | .name = "wm831x-hwmon", | ||
1122 | }, | ||
1123 | { | ||
1124 | .name = "wm831x-isink", | ||
1125 | .id = 1, | ||
1126 | .num_resources = ARRAY_SIZE(wm831x_isink1_resources), | ||
1127 | .resources = wm831x_isink1_resources, | ||
1128 | }, | ||
1129 | { | ||
1130 | .name = "wm831x-isink", | ||
1131 | .id = 2, | ||
1132 | .num_resources = ARRAY_SIZE(wm831x_isink2_resources), | ||
1133 | .resources = wm831x_isink2_resources, | ||
1134 | }, | ||
1135 | { | ||
1136 | .name = "wm831x-ldo", | ||
1137 | .id = 1, | ||
1138 | .num_resources = ARRAY_SIZE(wm831x_ldo1_resources), | ||
1139 | .resources = wm831x_ldo1_resources, | ||
1140 | }, | ||
1141 | { | ||
1142 | .name = "wm831x-ldo", | ||
1143 | .id = 2, | ||
1144 | .num_resources = ARRAY_SIZE(wm831x_ldo2_resources), | ||
1145 | .resources = wm831x_ldo2_resources, | ||
1146 | }, | ||
1147 | { | ||
1148 | .name = "wm831x-ldo", | ||
1149 | .id = 3, | ||
1150 | .num_resources = ARRAY_SIZE(wm831x_ldo3_resources), | ||
1151 | .resources = wm831x_ldo3_resources, | ||
1152 | }, | ||
1153 | { | ||
1154 | .name = "wm831x-ldo", | ||
1155 | .id = 4, | ||
1156 | .num_resources = ARRAY_SIZE(wm831x_ldo4_resources), | ||
1157 | .resources = wm831x_ldo4_resources, | ||
1158 | }, | ||
1159 | { | ||
1160 | .name = "wm831x-ldo", | ||
1161 | .id = 5, | ||
1162 | .num_resources = ARRAY_SIZE(wm831x_ldo5_resources), | ||
1163 | .resources = wm831x_ldo5_resources, | ||
1164 | }, | ||
1165 | { | ||
1166 | .name = "wm831x-ldo", | ||
1167 | .id = 6, | ||
1168 | .num_resources = ARRAY_SIZE(wm831x_ldo6_resources), | ||
1169 | .resources = wm831x_ldo6_resources, | ||
1170 | }, | ||
1171 | { | ||
1172 | .name = "wm831x-aldo", | ||
1173 | .id = 7, | ||
1174 | .num_resources = ARRAY_SIZE(wm831x_ldo7_resources), | ||
1175 | .resources = wm831x_ldo7_resources, | ||
1176 | }, | ||
1177 | { | ||
1178 | .name = "wm831x-aldo", | ||
1179 | .id = 8, | ||
1180 | .num_resources = ARRAY_SIZE(wm831x_ldo8_resources), | ||
1181 | .resources = wm831x_ldo8_resources, | ||
1182 | }, | ||
1183 | { | ||
1184 | .name = "wm831x-aldo", | ||
1185 | .id = 9, | ||
1186 | .num_resources = ARRAY_SIZE(wm831x_ldo9_resources), | ||
1187 | .resources = wm831x_ldo9_resources, | ||
1188 | }, | ||
1189 | { | ||
1190 | .name = "wm831x-aldo", | ||
1191 | .id = 10, | ||
1192 | .num_resources = ARRAY_SIZE(wm831x_ldo10_resources), | ||
1193 | .resources = wm831x_ldo10_resources, | ||
1194 | }, | ||
1195 | { | ||
1196 | .name = "wm831x-alive-ldo", | ||
1197 | .id = 11, | ||
1198 | .num_resources = ARRAY_SIZE(wm831x_ldo11_resources), | ||
1199 | .resources = wm831x_ldo11_resources, | ||
1200 | }, | ||
1201 | { | ||
1202 | .name = "wm831x-on", | ||
1203 | .num_resources = ARRAY_SIZE(wm831x_on_resources), | ||
1204 | .resources = wm831x_on_resources, | ||
1205 | }, | ||
1206 | { | ||
1207 | .name = "wm831x-power", | ||
1208 | .num_resources = ARRAY_SIZE(wm831x_power_resources), | ||
1209 | .resources = wm831x_power_resources, | ||
1210 | }, | ||
1211 | { | ||
1212 | .name = "wm831x-rtc", | ||
1213 | .num_resources = ARRAY_SIZE(wm831x_rtc_resources), | ||
1214 | .resources = wm831x_rtc_resources, | ||
1215 | }, | ||
1216 | { | ||
1217 | .name = "wm831x-status", | ||
1218 | .id = 1, | ||
1219 | .num_resources = ARRAY_SIZE(wm831x_status1_resources), | ||
1220 | .resources = wm831x_status1_resources, | ||
1221 | }, | ||
1222 | { | ||
1223 | .name = "wm831x-status", | ||
1224 | .id = 2, | ||
1225 | .num_resources = ARRAY_SIZE(wm831x_status2_resources), | ||
1226 | .resources = wm831x_status2_resources, | ||
1227 | }, | ||
1228 | { | ||
1229 | .name = "wm831x-touch", | ||
1230 | .num_resources = ARRAY_SIZE(wm831x_touch_resources), | ||
1231 | .resources = wm831x_touch_resources, | ||
1232 | }, | ||
1233 | { | ||
1234 | .name = "wm831x-watchdog", | ||
1235 | .num_resources = ARRAY_SIZE(wm831x_wdt_resources), | ||
1236 | .resources = wm831x_wdt_resources, | ||
1237 | }, | ||
1238 | }; | ||
1239 | |||
1240 | static struct mfd_cell backlight_devs[] = { | ||
1241 | { | ||
1242 | .name = "wm831x-backlight", | ||
1243 | }, | ||
1244 | }; | ||
1245 | |||
1246 | /* | ||
1247 | * Instantiate the generic non-control parts of the device. | ||
1248 | */ | ||
1249 | static int wm831x_device_init(struct wm831x *wm831x, unsigned long id, int irq) | ||
1250 | { | ||
1251 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | ||
1252 | int rev; | ||
1253 | enum wm831x_parent parent; | ||
1254 | int ret; | ||
1255 | |||
1256 | mutex_init(&wm831x->io_lock); | ||
1257 | mutex_init(&wm831x->key_lock); | ||
1258 | mutex_init(&wm831x->auxadc_lock); | ||
1259 | dev_set_drvdata(wm831x->dev, wm831x); | ||
1260 | |||
1261 | ret = wm831x_reg_read(wm831x, WM831X_PARENT_ID); | ||
1262 | if (ret < 0) { | ||
1263 | dev_err(wm831x->dev, "Failed to read parent ID: %d\n", ret); | ||
1264 | goto err; | ||
1265 | } | ||
1266 | if (ret != 0x6204) { | ||
1267 | dev_err(wm831x->dev, "Device is not a WM831x: ID %x\n", ret); | ||
1268 | ret = -EINVAL; | ||
1269 | goto err; | ||
1270 | } | ||
1271 | |||
1272 | ret = wm831x_reg_read(wm831x, WM831X_REVISION); | ||
1273 | if (ret < 0) { | ||
1274 | dev_err(wm831x->dev, "Failed to read revision: %d\n", ret); | ||
1275 | goto err; | ||
1276 | } | ||
1277 | rev = (ret & WM831X_PARENT_REV_MASK) >> WM831X_PARENT_REV_SHIFT; | ||
1278 | |||
1279 | ret = wm831x_reg_read(wm831x, WM831X_RESET_ID); | ||
1280 | if (ret < 0) { | ||
1281 | dev_err(wm831x->dev, "Failed to read device ID: %d\n", ret); | ||
1282 | goto err; | ||
1283 | } | ||
1284 | |||
1285 | switch (ret) { | ||
1286 | case 0x8310: | ||
1287 | parent = WM8310; | ||
1288 | switch (rev) { | ||
1289 | case 0: | ||
1290 | dev_info(wm831x->dev, "WM8310 revision %c\n", | ||
1291 | 'A' + rev); | ||
1292 | break; | ||
1293 | } | ||
1294 | break; | ||
1295 | |||
1296 | case 0x8311: | ||
1297 | parent = WM8311; | ||
1298 | switch (rev) { | ||
1299 | case 0: | ||
1300 | dev_info(wm831x->dev, "WM8311 revision %c\n", | ||
1301 | 'A' + rev); | ||
1302 | break; | ||
1303 | } | ||
1304 | break; | ||
1305 | |||
1306 | case 0x8312: | ||
1307 | parent = WM8312; | ||
1308 | switch (rev) { | ||
1309 | case 0: | ||
1310 | dev_info(wm831x->dev, "WM8312 revision %c\n", | ||
1311 | 'A' + rev); | ||
1312 | break; | ||
1313 | } | ||
1314 | break; | ||
1315 | |||
1316 | case 0: | ||
1317 | /* Some engineering samples do not have the ID set, | ||
1318 | * rely on the device being registered correctly. | ||
1319 | * This will need revisiting for future devices with | ||
1320 | * multiple dies. | ||
1321 | */ | ||
1322 | parent = id; | ||
1323 | switch (rev) { | ||
1324 | case 0: | ||
1325 | dev_info(wm831x->dev, "WM831%d ES revision %c\n", | ||
1326 | parent, 'A' + rev); | ||
1327 | break; | ||
1328 | } | ||
1329 | break; | ||
1330 | |||
1331 | default: | ||
1332 | dev_err(wm831x->dev, "Unknown WM831x device %04x\n", ret); | ||
1333 | ret = -EINVAL; | ||
1334 | goto err; | ||
1335 | } | ||
1336 | |||
1337 | /* This will need revisiting in future but is OK for all | ||
1338 | * current parts. | ||
1339 | */ | ||
1340 | if (parent != id) | ||
1341 | dev_warn(wm831x->dev, "Device was registered as a WM831%lu\n", | ||
1342 | id); | ||
1343 | |||
1344 | /* Bootstrap the user key */ | ||
1345 | ret = wm831x_reg_read(wm831x, WM831X_SECURITY_KEY); | ||
1346 | if (ret < 0) { | ||
1347 | dev_err(wm831x->dev, "Failed to read security key: %d\n", ret); | ||
1348 | goto err; | ||
1349 | } | ||
1350 | if (ret != 0) { | ||
1351 | dev_warn(wm831x->dev, "Security key had non-zero value %x\n", | ||
1352 | ret); | ||
1353 | wm831x_reg_write(wm831x, WM831X_SECURITY_KEY, 0); | ||
1354 | } | ||
1355 | wm831x->locked = 1; | ||
1356 | |||
1357 | if (pdata && pdata->pre_init) { | ||
1358 | ret = pdata->pre_init(wm831x); | ||
1359 | if (ret != 0) { | ||
1360 | dev_err(wm831x->dev, "pre_init() failed: %d\n", ret); | ||
1361 | goto err; | ||
1362 | } | ||
1363 | } | ||
1364 | |||
1365 | ret = wm831x_irq_init(wm831x, irq); | ||
1366 | if (ret != 0) | ||
1367 | goto err; | ||
1368 | |||
1369 | /* The core device is up, instantiate the subdevices. */ | ||
1370 | switch (parent) { | ||
1371 | case WM8310: | ||
1372 | ret = mfd_add_devices(wm831x->dev, -1, | ||
1373 | wm8310_devs, ARRAY_SIZE(wm8310_devs), | ||
1374 | NULL, 0); | ||
1375 | break; | ||
1376 | |||
1377 | case WM8311: | ||
1378 | ret = mfd_add_devices(wm831x->dev, -1, | ||
1379 | wm8311_devs, ARRAY_SIZE(wm8311_devs), | ||
1380 | NULL, 0); | ||
1381 | break; | ||
1382 | |||
1383 | case WM8312: | ||
1384 | ret = mfd_add_devices(wm831x->dev, -1, | ||
1385 | wm8312_devs, ARRAY_SIZE(wm8312_devs), | ||
1386 | NULL, 0); | ||
1387 | break; | ||
1388 | |||
1389 | default: | ||
1390 | /* If this happens the bus probe function is buggy */ | ||
1391 | BUG(); | ||
1392 | } | ||
1393 | |||
1394 | if (ret != 0) { | ||
1395 | dev_err(wm831x->dev, "Failed to add children\n"); | ||
1396 | goto err_irq; | ||
1397 | } | ||
1398 | |||
1399 | if (pdata && pdata->backlight) { | ||
1400 | /* Treat errors as non-critical */ | ||
1401 | ret = mfd_add_devices(wm831x->dev, -1, backlight_devs, | ||
1402 | ARRAY_SIZE(backlight_devs), NULL, 0); | ||
1403 | if (ret < 0) | ||
1404 | dev_err(wm831x->dev, "Failed to add backlight: %d\n", | ||
1405 | ret); | ||
1406 | } | ||
1407 | |||
1408 | wm831x_otp_init(wm831x); | ||
1409 | |||
1410 | if (pdata && pdata->post_init) { | ||
1411 | ret = pdata->post_init(wm831x); | ||
1412 | if (ret != 0) { | ||
1413 | dev_err(wm831x->dev, "post_init() failed: %d\n", ret); | ||
1414 | goto err_irq; | ||
1415 | } | ||
1416 | } | ||
1417 | |||
1418 | return 0; | ||
1419 | |||
1420 | err_irq: | ||
1421 | wm831x_irq_exit(wm831x); | ||
1422 | err: | ||
1423 | mfd_remove_devices(wm831x->dev); | ||
1424 | kfree(wm831x); | ||
1425 | return ret; | ||
1426 | } | ||
1427 | |||
1428 | static void wm831x_device_exit(struct wm831x *wm831x) | ||
1429 | { | ||
1430 | wm831x_otp_exit(wm831x); | ||
1431 | mfd_remove_devices(wm831x->dev); | ||
1432 | wm831x_irq_exit(wm831x); | ||
1433 | kfree(wm831x); | ||
1434 | } | ||
1435 | |||
1436 | static int wm831x_i2c_read_device(struct wm831x *wm831x, unsigned short reg, | ||
1437 | int bytes, void *dest) | ||
1438 | { | ||
1439 | struct i2c_client *i2c = wm831x->control_data; | ||
1440 | int ret; | ||
1441 | u16 r = cpu_to_be16(reg); | ||
1442 | |||
1443 | ret = i2c_master_send(i2c, (unsigned char *)&r, 2); | ||
1444 | if (ret < 0) | ||
1445 | return ret; | ||
1446 | if (ret != 2) | ||
1447 | return -EIO; | ||
1448 | |||
1449 | ret = i2c_master_recv(i2c, dest, bytes); | ||
1450 | if (ret < 0) | ||
1451 | return ret; | ||
1452 | if (ret != bytes) | ||
1453 | return -EIO; | ||
1454 | return 0; | ||
1455 | } | ||
1456 | |||
1457 | /* Currently we allocate the write buffer on the stack; this is OK for | ||
1458 | * small writes - if we need to do large writes this will need to be | ||
1459 | * revised. | ||
1460 | */ | ||
1461 | static int wm831x_i2c_write_device(struct wm831x *wm831x, unsigned short reg, | ||
1462 | int bytes, void *src) | ||
1463 | { | ||
1464 | struct i2c_client *i2c = wm831x->control_data; | ||
1465 | unsigned char msg[bytes + 2]; | ||
1466 | int ret; | ||
1467 | |||
1468 | reg = cpu_to_be16(reg); | ||
1469 | memcpy(&msg[0], ®, 2); | ||
1470 | memcpy(&msg[2], src, bytes); | ||
1471 | |||
1472 | ret = i2c_master_send(i2c, msg, bytes + 2); | ||
1473 | if (ret < 0) | ||
1474 | return ret; | ||
1475 | if (ret < bytes + 2) | ||
1476 | return -EIO; | ||
1477 | |||
1478 | return 0; | ||
1479 | } | ||
1480 | |||
1481 | static int wm831x_i2c_probe(struct i2c_client *i2c, | ||
1482 | const struct i2c_device_id *id) | ||
1483 | { | ||
1484 | struct wm831x *wm831x; | ||
1485 | |||
1486 | wm831x = kzalloc(sizeof(struct wm831x), GFP_KERNEL); | ||
1487 | if (wm831x == NULL) { | ||
1488 | kfree(i2c); | ||
1489 | return -ENOMEM; | ||
1490 | } | ||
1491 | |||
1492 | i2c_set_clientdata(i2c, wm831x); | ||
1493 | wm831x->dev = &i2c->dev; | ||
1494 | wm831x->control_data = i2c; | ||
1495 | wm831x->read_dev = wm831x_i2c_read_device; | ||
1496 | wm831x->write_dev = wm831x_i2c_write_device; | ||
1497 | |||
1498 | return wm831x_device_init(wm831x, id->driver_data, i2c->irq); | ||
1499 | } | ||
1500 | |||
1501 | static int wm831x_i2c_remove(struct i2c_client *i2c) | ||
1502 | { | ||
1503 | struct wm831x *wm831x = i2c_get_clientdata(i2c); | ||
1504 | |||
1505 | wm831x_device_exit(wm831x); | ||
1506 | |||
1507 | return 0; | ||
1508 | } | ||
1509 | |||
1510 | static const struct i2c_device_id wm831x_i2c_id[] = { | ||
1511 | { "wm8310", WM8310 }, | ||
1512 | { "wm8311", WM8311 }, | ||
1513 | { "wm8312", WM8312 }, | ||
1514 | { } | ||
1515 | }; | ||
1516 | MODULE_DEVICE_TABLE(i2c, wm831x_i2c_id); | ||
1517 | |||
1518 | |||
1519 | static struct i2c_driver wm831x_i2c_driver = { | ||
1520 | .driver = { | ||
1521 | .name = "wm831x", | ||
1522 | .owner = THIS_MODULE, | ||
1523 | }, | ||
1524 | .probe = wm831x_i2c_probe, | ||
1525 | .remove = wm831x_i2c_remove, | ||
1526 | .id_table = wm831x_i2c_id, | ||
1527 | }; | ||
1528 | |||
1529 | static int __init wm831x_i2c_init(void) | ||
1530 | { | ||
1531 | int ret; | ||
1532 | |||
1533 | ret = i2c_add_driver(&wm831x_i2c_driver); | ||
1534 | if (ret != 0) | ||
1535 | pr_err("Failed to register wm831x I2C driver: %d\n", ret); | ||
1536 | |||
1537 | return ret; | ||
1538 | } | ||
1539 | subsys_initcall(wm831x_i2c_init); | ||
1540 | |||
1541 | static void __exit wm831x_i2c_exit(void) | ||
1542 | { | ||
1543 | i2c_del_driver(&wm831x_i2c_driver); | ||
1544 | } | ||
1545 | module_exit(wm831x_i2c_exit); | ||
1546 | |||
1547 | MODULE_DESCRIPTION("I2C support for the WM831X AudioPlus PMIC"); | ||
1548 | MODULE_LICENSE("GPL"); | ||
1549 | MODULE_AUTHOR("Mark Brown"); | ||
diff --git a/drivers/mfd/wm831x-irq.c b/drivers/mfd/wm831x-irq.c new file mode 100644 index 000000000000..d3015dfb9134 --- /dev/null +++ b/drivers/mfd/wm831x-irq.c | |||
@@ -0,0 +1,559 @@ | |||
1 | /* | ||
2 | * wm831x-irq.c -- Interrupt controller support for Wolfson WM831x PMICs | ||
3 | * | ||
4 | * Copyright 2009 Wolfson Microelectronics PLC. | ||
5 | * | ||
6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/module.h> | ||
17 | #include <linux/i2c.h> | ||
18 | #include <linux/mfd/core.h> | ||
19 | #include <linux/interrupt.h> | ||
20 | |||
21 | #include <linux/mfd/wm831x/core.h> | ||
22 | #include <linux/mfd/wm831x/pdata.h> | ||
23 | #include <linux/mfd/wm831x/irq.h> | ||
24 | |||
25 | #include <linux/delay.h> | ||
26 | |||
27 | /* | ||
28 | * Since generic IRQs don't currently support interrupt controllers on | ||
29 | * interrupt driven buses we don't use genirq but instead provide an | ||
30 | * interface that looks very much like the standard ones. This leads | ||
31 | * to some bodges, including storing interrupt handler information in | ||
32 | * the static irq_data table we use to look up the data for individual | ||
33 | * interrupts, but hopefully won't last too long. | ||
34 | */ | ||
35 | |||
36 | struct wm831x_irq_data { | ||
37 | int primary; | ||
38 | int reg; | ||
39 | int mask; | ||
40 | irq_handler_t handler; | ||
41 | void *handler_data; | ||
42 | }; | ||
43 | |||
44 | static struct wm831x_irq_data wm831x_irqs[] = { | ||
45 | [WM831X_IRQ_TEMP_THW] = { | ||
46 | .primary = WM831X_TEMP_INT, | ||
47 | .reg = 1, | ||
48 | .mask = WM831X_TEMP_THW_EINT, | ||
49 | }, | ||
50 | [WM831X_IRQ_GPIO_1] = { | ||
51 | .primary = WM831X_GP_INT, | ||
52 | .reg = 5, | ||
53 | .mask = WM831X_GP1_EINT, | ||
54 | }, | ||
55 | [WM831X_IRQ_GPIO_2] = { | ||
56 | .primary = WM831X_GP_INT, | ||
57 | .reg = 5, | ||
58 | .mask = WM831X_GP2_EINT, | ||
59 | }, | ||
60 | [WM831X_IRQ_GPIO_3] = { | ||
61 | .primary = WM831X_GP_INT, | ||
62 | .reg = 5, | ||
63 | .mask = WM831X_GP3_EINT, | ||
64 | }, | ||
65 | [WM831X_IRQ_GPIO_4] = { | ||
66 | .primary = WM831X_GP_INT, | ||
67 | .reg = 5, | ||
68 | .mask = WM831X_GP4_EINT, | ||
69 | }, | ||
70 | [WM831X_IRQ_GPIO_5] = { | ||
71 | .primary = WM831X_GP_INT, | ||
72 | .reg = 5, | ||
73 | .mask = WM831X_GP5_EINT, | ||
74 | }, | ||
75 | [WM831X_IRQ_GPIO_6] = { | ||
76 | .primary = WM831X_GP_INT, | ||
77 | .reg = 5, | ||
78 | .mask = WM831X_GP6_EINT, | ||
79 | }, | ||
80 | [WM831X_IRQ_GPIO_7] = { | ||
81 | .primary = WM831X_GP_INT, | ||
82 | .reg = 5, | ||
83 | .mask = WM831X_GP7_EINT, | ||
84 | }, | ||
85 | [WM831X_IRQ_GPIO_8] = { | ||
86 | .primary = WM831X_GP_INT, | ||
87 | .reg = 5, | ||
88 | .mask = WM831X_GP8_EINT, | ||
89 | }, | ||
90 | [WM831X_IRQ_GPIO_9] = { | ||
91 | .primary = WM831X_GP_INT, | ||
92 | .reg = 5, | ||
93 | .mask = WM831X_GP9_EINT, | ||
94 | }, | ||
95 | [WM831X_IRQ_GPIO_10] = { | ||
96 | .primary = WM831X_GP_INT, | ||
97 | .reg = 5, | ||
98 | .mask = WM831X_GP10_EINT, | ||
99 | }, | ||
100 | [WM831X_IRQ_GPIO_11] = { | ||
101 | .primary = WM831X_GP_INT, | ||
102 | .reg = 5, | ||
103 | .mask = WM831X_GP11_EINT, | ||
104 | }, | ||
105 | [WM831X_IRQ_GPIO_12] = { | ||
106 | .primary = WM831X_GP_INT, | ||
107 | .reg = 5, | ||
108 | .mask = WM831X_GP12_EINT, | ||
109 | }, | ||
110 | [WM831X_IRQ_GPIO_13] = { | ||
111 | .primary = WM831X_GP_INT, | ||
112 | .reg = 5, | ||
113 | .mask = WM831X_GP13_EINT, | ||
114 | }, | ||
115 | [WM831X_IRQ_GPIO_14] = { | ||
116 | .primary = WM831X_GP_INT, | ||
117 | .reg = 5, | ||
118 | .mask = WM831X_GP14_EINT, | ||
119 | }, | ||
120 | [WM831X_IRQ_GPIO_15] = { | ||
121 | .primary = WM831X_GP_INT, | ||
122 | .reg = 5, | ||
123 | .mask = WM831X_GP15_EINT, | ||
124 | }, | ||
125 | [WM831X_IRQ_GPIO_16] = { | ||
126 | .primary = WM831X_GP_INT, | ||
127 | .reg = 5, | ||
128 | .mask = WM831X_GP16_EINT, | ||
129 | }, | ||
130 | [WM831X_IRQ_ON] = { | ||
131 | .primary = WM831X_ON_PIN_INT, | ||
132 | .reg = 1, | ||
133 | .mask = WM831X_ON_PIN_EINT, | ||
134 | }, | ||
135 | [WM831X_IRQ_PPM_SYSLO] = { | ||
136 | .primary = WM831X_PPM_INT, | ||
137 | .reg = 1, | ||
138 | .mask = WM831X_PPM_SYSLO_EINT, | ||
139 | }, | ||
140 | [WM831X_IRQ_PPM_PWR_SRC] = { | ||
141 | .primary = WM831X_PPM_INT, | ||
142 | .reg = 1, | ||
143 | .mask = WM831X_PPM_PWR_SRC_EINT, | ||
144 | }, | ||
145 | [WM831X_IRQ_PPM_USB_CURR] = { | ||
146 | .primary = WM831X_PPM_INT, | ||
147 | .reg = 1, | ||
148 | .mask = WM831X_PPM_USB_CURR_EINT, | ||
149 | }, | ||
150 | [WM831X_IRQ_WDOG_TO] = { | ||
151 | .primary = WM831X_WDOG_INT, | ||
152 | .reg = 1, | ||
153 | .mask = WM831X_WDOG_TO_EINT, | ||
154 | }, | ||
155 | [WM831X_IRQ_RTC_PER] = { | ||
156 | .primary = WM831X_RTC_INT, | ||
157 | .reg = 1, | ||
158 | .mask = WM831X_RTC_PER_EINT, | ||
159 | }, | ||
160 | [WM831X_IRQ_RTC_ALM] = { | ||
161 | .primary = WM831X_RTC_INT, | ||
162 | .reg = 1, | ||
163 | .mask = WM831X_RTC_ALM_EINT, | ||
164 | }, | ||
165 | [WM831X_IRQ_CHG_BATT_HOT] = { | ||
166 | .primary = WM831X_CHG_INT, | ||
167 | .reg = 2, | ||
168 | .mask = WM831X_CHG_BATT_HOT_EINT, | ||
169 | }, | ||
170 | [WM831X_IRQ_CHG_BATT_COLD] = { | ||
171 | .primary = WM831X_CHG_INT, | ||
172 | .reg = 2, | ||
173 | .mask = WM831X_CHG_BATT_COLD_EINT, | ||
174 | }, | ||
175 | [WM831X_IRQ_CHG_BATT_FAIL] = { | ||
176 | .primary = WM831X_CHG_INT, | ||
177 | .reg = 2, | ||
178 | .mask = WM831X_CHG_BATT_FAIL_EINT, | ||
179 | }, | ||
180 | [WM831X_IRQ_CHG_OV] = { | ||
181 | .primary = WM831X_CHG_INT, | ||
182 | .reg = 2, | ||
183 | .mask = WM831X_CHG_OV_EINT, | ||
184 | }, | ||
185 | [WM831X_IRQ_CHG_END] = { | ||
186 | .primary = WM831X_CHG_INT, | ||
187 | .reg = 2, | ||
188 | .mask = WM831X_CHG_END_EINT, | ||
189 | }, | ||
190 | [WM831X_IRQ_CHG_TO] = { | ||
191 | .primary = WM831X_CHG_INT, | ||
192 | .reg = 2, | ||
193 | .mask = WM831X_CHG_TO_EINT, | ||
194 | }, | ||
195 | [WM831X_IRQ_CHG_MODE] = { | ||
196 | .primary = WM831X_CHG_INT, | ||
197 | .reg = 2, | ||
198 | .mask = WM831X_CHG_MODE_EINT, | ||
199 | }, | ||
200 | [WM831X_IRQ_CHG_START] = { | ||
201 | .primary = WM831X_CHG_INT, | ||
202 | .reg = 2, | ||
203 | .mask = WM831X_CHG_START_EINT, | ||
204 | }, | ||
205 | [WM831X_IRQ_TCHDATA] = { | ||
206 | .primary = WM831X_TCHDATA_INT, | ||
207 | .reg = 1, | ||
208 | .mask = WM831X_TCHDATA_EINT, | ||
209 | }, | ||
210 | [WM831X_IRQ_TCHPD] = { | ||
211 | .primary = WM831X_TCHPD_INT, | ||
212 | .reg = 1, | ||
213 | .mask = WM831X_TCHPD_EINT, | ||
214 | }, | ||
215 | [WM831X_IRQ_AUXADC_DATA] = { | ||
216 | .primary = WM831X_AUXADC_INT, | ||
217 | .reg = 1, | ||
218 | .mask = WM831X_AUXADC_DATA_EINT, | ||
219 | }, | ||
220 | [WM831X_IRQ_AUXADC_DCOMP1] = { | ||
221 | .primary = WM831X_AUXADC_INT, | ||
222 | .reg = 1, | ||
223 | .mask = WM831X_AUXADC_DCOMP1_EINT, | ||
224 | }, | ||
225 | [WM831X_IRQ_AUXADC_DCOMP2] = { | ||
226 | .primary = WM831X_AUXADC_INT, | ||
227 | .reg = 1, | ||
228 | .mask = WM831X_AUXADC_DCOMP2_EINT, | ||
229 | }, | ||
230 | [WM831X_IRQ_AUXADC_DCOMP3] = { | ||
231 | .primary = WM831X_AUXADC_INT, | ||
232 | .reg = 1, | ||
233 | .mask = WM831X_AUXADC_DCOMP3_EINT, | ||
234 | }, | ||
235 | [WM831X_IRQ_AUXADC_DCOMP4] = { | ||
236 | .primary = WM831X_AUXADC_INT, | ||
237 | .reg = 1, | ||
238 | .mask = WM831X_AUXADC_DCOMP4_EINT, | ||
239 | }, | ||
240 | [WM831X_IRQ_CS1] = { | ||
241 | .primary = WM831X_CS_INT, | ||
242 | .reg = 2, | ||
243 | .mask = WM831X_CS1_EINT, | ||
244 | }, | ||
245 | [WM831X_IRQ_CS2] = { | ||
246 | .primary = WM831X_CS_INT, | ||
247 | .reg = 2, | ||
248 | .mask = WM831X_CS2_EINT, | ||
249 | }, | ||
250 | [WM831X_IRQ_HC_DC1] = { | ||
251 | .primary = WM831X_HC_INT, | ||
252 | .reg = 4, | ||
253 | .mask = WM831X_HC_DC1_EINT, | ||
254 | }, | ||
255 | [WM831X_IRQ_HC_DC2] = { | ||
256 | .primary = WM831X_HC_INT, | ||
257 | .reg = 4, | ||
258 | .mask = WM831X_HC_DC2_EINT, | ||
259 | }, | ||
260 | [WM831X_IRQ_UV_LDO1] = { | ||
261 | .primary = WM831X_UV_INT, | ||
262 | .reg = 3, | ||
263 | .mask = WM831X_UV_LDO1_EINT, | ||
264 | }, | ||
265 | [WM831X_IRQ_UV_LDO2] = { | ||
266 | .primary = WM831X_UV_INT, | ||
267 | .reg = 3, | ||
268 | .mask = WM831X_UV_LDO2_EINT, | ||
269 | }, | ||
270 | [WM831X_IRQ_UV_LDO3] = { | ||
271 | .primary = WM831X_UV_INT, | ||
272 | .reg = 3, | ||
273 | .mask = WM831X_UV_LDO3_EINT, | ||
274 | }, | ||
275 | [WM831X_IRQ_UV_LDO4] = { | ||
276 | .primary = WM831X_UV_INT, | ||
277 | .reg = 3, | ||
278 | .mask = WM831X_UV_LDO4_EINT, | ||
279 | }, | ||
280 | [WM831X_IRQ_UV_LDO5] = { | ||
281 | .primary = WM831X_UV_INT, | ||
282 | .reg = 3, | ||
283 | .mask = WM831X_UV_LDO5_EINT, | ||
284 | }, | ||
285 | [WM831X_IRQ_UV_LDO6] = { | ||
286 | .primary = WM831X_UV_INT, | ||
287 | .reg = 3, | ||
288 | .mask = WM831X_UV_LDO6_EINT, | ||
289 | }, | ||
290 | [WM831X_IRQ_UV_LDO7] = { | ||
291 | .primary = WM831X_UV_INT, | ||
292 | .reg = 3, | ||
293 | .mask = WM831X_UV_LDO7_EINT, | ||
294 | }, | ||
295 | [WM831X_IRQ_UV_LDO8] = { | ||
296 | .primary = WM831X_UV_INT, | ||
297 | .reg = 3, | ||
298 | .mask = WM831X_UV_LDO8_EINT, | ||
299 | }, | ||
300 | [WM831X_IRQ_UV_LDO9] = { | ||
301 | .primary = WM831X_UV_INT, | ||
302 | .reg = 3, | ||
303 | .mask = WM831X_UV_LDO9_EINT, | ||
304 | }, | ||
305 | [WM831X_IRQ_UV_LDO10] = { | ||
306 | .primary = WM831X_UV_INT, | ||
307 | .reg = 3, | ||
308 | .mask = WM831X_UV_LDO10_EINT, | ||
309 | }, | ||
310 | [WM831X_IRQ_UV_DC1] = { | ||
311 | .primary = WM831X_UV_INT, | ||
312 | .reg = 4, | ||
313 | .mask = WM831X_UV_DC1_EINT, | ||
314 | }, | ||
315 | [WM831X_IRQ_UV_DC2] = { | ||
316 | .primary = WM831X_UV_INT, | ||
317 | .reg = 4, | ||
318 | .mask = WM831X_UV_DC2_EINT, | ||
319 | }, | ||
320 | [WM831X_IRQ_UV_DC3] = { | ||
321 | .primary = WM831X_UV_INT, | ||
322 | .reg = 4, | ||
323 | .mask = WM831X_UV_DC3_EINT, | ||
324 | }, | ||
325 | [WM831X_IRQ_UV_DC4] = { | ||
326 | .primary = WM831X_UV_INT, | ||
327 | .reg = 4, | ||
328 | .mask = WM831X_UV_DC4_EINT, | ||
329 | }, | ||
330 | }; | ||
331 | |||
332 | static inline int irq_data_to_status_reg(struct wm831x_irq_data *irq_data) | ||
333 | { | ||
334 | return WM831X_INTERRUPT_STATUS_1 - 1 + irq_data->reg; | ||
335 | } | ||
336 | |||
337 | static inline int irq_data_to_mask_reg(struct wm831x_irq_data *irq_data) | ||
338 | { | ||
339 | return WM831X_INTERRUPT_STATUS_1_MASK - 1 + irq_data->reg; | ||
340 | } | ||
341 | |||
342 | static void __wm831x_enable_irq(struct wm831x *wm831x, int irq) | ||
343 | { | ||
344 | struct wm831x_irq_data *irq_data = &wm831x_irqs[irq]; | ||
345 | |||
346 | wm831x->irq_masks[irq_data->reg - 1] &= ~irq_data->mask; | ||
347 | wm831x_reg_write(wm831x, irq_data_to_mask_reg(irq_data), | ||
348 | wm831x->irq_masks[irq_data->reg - 1]); | ||
349 | } | ||
350 | |||
351 | void wm831x_enable_irq(struct wm831x *wm831x, int irq) | ||
352 | { | ||
353 | mutex_lock(&wm831x->irq_lock); | ||
354 | __wm831x_enable_irq(wm831x, irq); | ||
355 | mutex_unlock(&wm831x->irq_lock); | ||
356 | } | ||
357 | EXPORT_SYMBOL_GPL(wm831x_enable_irq); | ||
358 | |||
359 | static void __wm831x_disable_irq(struct wm831x *wm831x, int irq) | ||
360 | { | ||
361 | struct wm831x_irq_data *irq_data = &wm831x_irqs[irq]; | ||
362 | |||
363 | wm831x->irq_masks[irq_data->reg - 1] |= irq_data->mask; | ||
364 | wm831x_reg_write(wm831x, irq_data_to_mask_reg(irq_data), | ||
365 | wm831x->irq_masks[irq_data->reg - 1]); | ||
366 | } | ||
367 | |||
368 | void wm831x_disable_irq(struct wm831x *wm831x, int irq) | ||
369 | { | ||
370 | mutex_lock(&wm831x->irq_lock); | ||
371 | __wm831x_disable_irq(wm831x, irq); | ||
372 | mutex_unlock(&wm831x->irq_lock); | ||
373 | } | ||
374 | EXPORT_SYMBOL_GPL(wm831x_disable_irq); | ||
375 | |||
376 | int wm831x_request_irq(struct wm831x *wm831x, | ||
377 | unsigned int irq, irq_handler_t handler, | ||
378 | unsigned long flags, const char *name, | ||
379 | void *dev) | ||
380 | { | ||
381 | int ret = 0; | ||
382 | |||
383 | if (irq < 0 || irq >= WM831X_NUM_IRQS) | ||
384 | return -EINVAL; | ||
385 | |||
386 | mutex_lock(&wm831x->irq_lock); | ||
387 | |||
388 | if (wm831x_irqs[irq].handler) { | ||
389 | dev_err(wm831x->dev, "Already have handler for IRQ %d\n", irq); | ||
390 | ret = -EINVAL; | ||
391 | goto out; | ||
392 | } | ||
393 | |||
394 | wm831x_irqs[irq].handler = handler; | ||
395 | wm831x_irqs[irq].handler_data = dev; | ||
396 | |||
397 | __wm831x_enable_irq(wm831x, irq); | ||
398 | |||
399 | out: | ||
400 | mutex_unlock(&wm831x->irq_lock); | ||
401 | |||
402 | return ret; | ||
403 | } | ||
404 | EXPORT_SYMBOL_GPL(wm831x_request_irq); | ||
405 | |||
406 | void wm831x_free_irq(struct wm831x *wm831x, unsigned int irq, void *data) | ||
407 | { | ||
408 | if (irq < 0 || irq >= WM831X_NUM_IRQS) | ||
409 | return; | ||
410 | |||
411 | mutex_lock(&wm831x->irq_lock); | ||
412 | |||
413 | wm831x_irqs[irq].handler = NULL; | ||
414 | wm831x_irqs[irq].handler_data = NULL; | ||
415 | |||
416 | __wm831x_disable_irq(wm831x, irq); | ||
417 | |||
418 | mutex_unlock(&wm831x->irq_lock); | ||
419 | } | ||
420 | EXPORT_SYMBOL_GPL(wm831x_free_irq); | ||
421 | |||
422 | |||
423 | static void wm831x_handle_irq(struct wm831x *wm831x, int irq, int status) | ||
424 | { | ||
425 | struct wm831x_irq_data *irq_data = &wm831x_irqs[irq]; | ||
426 | |||
427 | if (irq_data->handler) { | ||
428 | irq_data->handler(irq, irq_data->handler_data); | ||
429 | wm831x_reg_write(wm831x, irq_data_to_status_reg(irq_data), | ||
430 | irq_data->mask); | ||
431 | } else { | ||
432 | dev_err(wm831x->dev, "Unhandled IRQ %d, masking\n", irq); | ||
433 | __wm831x_disable_irq(wm831x, irq); | ||
434 | } | ||
435 | } | ||
436 | |||
437 | /* Main interrupt handling occurs in a workqueue since we need | ||
438 | * interrupts enabled to interact with the chip. */ | ||
439 | static void wm831x_irq_worker(struct work_struct *work) | ||
440 | { | ||
441 | struct wm831x *wm831x = container_of(work, struct wm831x, irq_work); | ||
442 | unsigned int i; | ||
443 | int primary; | ||
444 | int status_regs[5]; | ||
445 | int read[5] = { 0 }; | ||
446 | int *status; | ||
447 | |||
448 | primary = wm831x_reg_read(wm831x, WM831X_SYSTEM_INTERRUPTS); | ||
449 | if (primary < 0) { | ||
450 | dev_err(wm831x->dev, "Failed to read system interrupt: %d\n", | ||
451 | primary); | ||
452 | goto out; | ||
453 | } | ||
454 | |||
455 | mutex_lock(&wm831x->irq_lock); | ||
456 | |||
457 | for (i = 0; i < ARRAY_SIZE(wm831x_irqs); i++) { | ||
458 | int offset = wm831x_irqs[i].reg - 1; | ||
459 | |||
460 | if (!(primary & wm831x_irqs[i].primary)) | ||
461 | continue; | ||
462 | |||
463 | status = &status_regs[offset]; | ||
464 | |||
465 | /* Hopefully there should only be one register to read | ||
466 | * each time otherwise we ought to do a block read. */ | ||
467 | if (!read[offset]) { | ||
468 | *status = wm831x_reg_read(wm831x, | ||
469 | irq_data_to_status_reg(&wm831x_irqs[i])); | ||
470 | if (*status < 0) { | ||
471 | dev_err(wm831x->dev, | ||
472 | "Failed to read IRQ status: %d\n", | ||
473 | *status); | ||
474 | goto out_lock; | ||
475 | } | ||
476 | |||
477 | /* Mask out the disabled IRQs */ | ||
478 | *status &= ~wm831x->irq_masks[offset]; | ||
479 | read[offset] = 1; | ||
480 | } | ||
481 | |||
482 | if (*status & wm831x_irqs[i].mask) | ||
483 | wm831x_handle_irq(wm831x, i, *status); | ||
484 | } | ||
485 | |||
486 | out_lock: | ||
487 | mutex_unlock(&wm831x->irq_lock); | ||
488 | out: | ||
489 | enable_irq(wm831x->irq); | ||
490 | } | ||
491 | |||
492 | |||
493 | static irqreturn_t wm831x_cpu_irq(int irq, void *data) | ||
494 | { | ||
495 | struct wm831x *wm831x = data; | ||
496 | |||
497 | /* Shut the interrupt to the CPU up and schedule the actual | ||
498 | * handler; we can't check that the IRQ is asserted. */ | ||
499 | disable_irq_nosync(irq); | ||
500 | |||
501 | queue_work(wm831x->irq_wq, &wm831x->irq_work); | ||
502 | |||
503 | return IRQ_HANDLED; | ||
504 | } | ||
505 | |||
506 | int wm831x_irq_init(struct wm831x *wm831x, int irq) | ||
507 | { | ||
508 | int i, ret; | ||
509 | |||
510 | if (!irq) { | ||
511 | dev_warn(wm831x->dev, | ||
512 | "No interrupt specified - functionality limited\n"); | ||
513 | return 0; | ||
514 | } | ||
515 | |||
516 | |||
517 | wm831x->irq_wq = create_singlethread_workqueue("wm831x-irq"); | ||
518 | if (!wm831x->irq_wq) { | ||
519 | dev_err(wm831x->dev, "Failed to allocate IRQ worker\n"); | ||
520 | return -ESRCH; | ||
521 | } | ||
522 | |||
523 | wm831x->irq = irq; | ||
524 | mutex_init(&wm831x->irq_lock); | ||
525 | INIT_WORK(&wm831x->irq_work, wm831x_irq_worker); | ||
526 | |||
527 | /* Mask the individual interrupt sources */ | ||
528 | for (i = 0; i < ARRAY_SIZE(wm831x->irq_masks); i++) { | ||
529 | wm831x->irq_masks[i] = 0xffff; | ||
530 | wm831x_reg_write(wm831x, WM831X_INTERRUPT_STATUS_1_MASK + i, | ||
531 | 0xffff); | ||
532 | } | ||
533 | |||
534 | /* Enable top level interrupts, we mask at secondary level */ | ||
535 | wm831x_reg_write(wm831x, WM831X_SYSTEM_INTERRUPTS_MASK, 0); | ||
536 | |||
537 | /* We're good to go. We set IRQF_SHARED since there's a | ||
538 | * chance the driver will interoperate with another driver but | ||
539 | * the need to disable the IRQ while handing via I2C/SPI means | ||
540 | * that this may break and performance will be impacted. If | ||
541 | * this does happen it's a hardware design issue and the only | ||
542 | * other alternative would be polling. | ||
543 | */ | ||
544 | ret = request_irq(irq, wm831x_cpu_irq, IRQF_TRIGGER_LOW | IRQF_SHARED, | ||
545 | "wm831x", wm831x); | ||
546 | if (ret != 0) { | ||
547 | dev_err(wm831x->dev, "Failed to request IRQ %d: %d\n", | ||
548 | irq, ret); | ||
549 | return ret; | ||
550 | } | ||
551 | |||
552 | return 0; | ||
553 | } | ||
554 | |||
555 | void wm831x_irq_exit(struct wm831x *wm831x) | ||
556 | { | ||
557 | if (wm831x->irq) | ||
558 | free_irq(wm831x->irq, wm831x); | ||
559 | } | ||
diff --git a/drivers/mfd/wm831x-otp.c b/drivers/mfd/wm831x-otp.c new file mode 100644 index 000000000000..f742745ff354 --- /dev/null +++ b/drivers/mfd/wm831x-otp.c | |||
@@ -0,0 +1,83 @@ | |||
1 | /* | ||
2 | * wm831x-otp.c -- OTP for Wolfson WM831x PMICs | ||
3 | * | ||
4 | * Copyright 2009 Wolfson Microelectronics PLC. | ||
5 | * | ||
6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/module.h> | ||
17 | #include <linux/i2c.h> | ||
18 | #include <linux/bcd.h> | ||
19 | #include <linux/delay.h> | ||
20 | #include <linux/mfd/core.h> | ||
21 | |||
22 | #include <linux/mfd/wm831x/core.h> | ||
23 | #include <linux/mfd/wm831x/otp.h> | ||
24 | |||
25 | /* In bytes */ | ||
26 | #define WM831X_UNIQUE_ID_LEN 16 | ||
27 | |||
28 | /* Read the unique ID from the chip into id */ | ||
29 | static int wm831x_unique_id_read(struct wm831x *wm831x, char *id) | ||
30 | { | ||
31 | int i, val; | ||
32 | |||
33 | for (i = 0; i < WM831X_UNIQUE_ID_LEN / 2; i++) { | ||
34 | val = wm831x_reg_read(wm831x, WM831X_UNIQUE_ID_1 + i); | ||
35 | if (val < 0) | ||
36 | return val; | ||
37 | |||
38 | id[i * 2] = (val >> 8) & 0xff; | ||
39 | id[(i * 2) + 1] = val & 0xff; | ||
40 | } | ||
41 | |||
42 | return 0; | ||
43 | } | ||
44 | |||
45 | static ssize_t wm831x_unique_id_show(struct device *dev, | ||
46 | struct device_attribute *attr, char *buf) | ||
47 | { | ||
48 | struct wm831x *wm831x = dev_get_drvdata(dev); | ||
49 | int i, rval; | ||
50 | char id[WM831X_UNIQUE_ID_LEN]; | ||
51 | ssize_t ret = 0; | ||
52 | |||
53 | rval = wm831x_unique_id_read(wm831x, id); | ||
54 | if (rval < 0) | ||
55 | return 0; | ||
56 | |||
57 | for (i = 0; i < WM831X_UNIQUE_ID_LEN; i++) | ||
58 | ret += sprintf(&buf[ret], "%02x", buf[i]); | ||
59 | |||
60 | ret += sprintf(&buf[ret], "\n"); | ||
61 | |||
62 | return ret; | ||
63 | } | ||
64 | |||
65 | static DEVICE_ATTR(unique_id, 0444, wm831x_unique_id_show, NULL); | ||
66 | |||
67 | int wm831x_otp_init(struct wm831x *wm831x) | ||
68 | { | ||
69 | int ret; | ||
70 | |||
71 | ret = device_create_file(wm831x->dev, &dev_attr_unique_id); | ||
72 | if (ret != 0) | ||
73 | dev_err(wm831x->dev, "Unique ID attribute not created: %d\n", | ||
74 | ret); | ||
75 | |||
76 | return ret; | ||
77 | } | ||
78 | |||
79 | void wm831x_otp_exit(struct wm831x *wm831x) | ||
80 | { | ||
81 | device_remove_file(wm831x->dev, &dev_attr_unique_id); | ||
82 | } | ||
83 | |||
diff --git a/drivers/mfd/wm8350-core.c b/drivers/mfd/wm8350-core.c index fe24079387c5..ba27c9dc1ad3 100644 --- a/drivers/mfd/wm8350-core.c +++ b/drivers/mfd/wm8350-core.c | |||
@@ -353,15 +353,15 @@ static void wm8350_irq_call_handler(struct wm8350 *wm8350, int irq) | |||
353 | } | 353 | } |
354 | 354 | ||
355 | /* | 355 | /* |
356 | * wm8350_irq_worker actually handles the interrupts. Since all | 356 | * This is a threaded IRQ handler so can access I2C/SPI. Since all |
357 | * interrupts are clear on read the IRQ line will be reasserted and | 357 | * interrupts are clear on read the IRQ line will be reasserted and |
358 | * the physical IRQ will be handled again if another interrupt is | 358 | * the physical IRQ will be handled again if another interrupt is |
359 | * asserted while we run - in the normal course of events this is a | 359 | * asserted while we run - in the normal course of events this is a |
360 | * rare occurrence so we save I2C/SPI reads. | 360 | * rare occurrence so we save I2C/SPI reads. |
361 | */ | 361 | */ |
362 | static void wm8350_irq_worker(struct work_struct *work) | 362 | static irqreturn_t wm8350_irq(int irq, void *data) |
363 | { | 363 | { |
364 | struct wm8350 *wm8350 = container_of(work, struct wm8350, irq_work); | 364 | struct wm8350 *wm8350 = data; |
365 | u16 level_one, status1, status2, comp; | 365 | u16 level_one, status1, status2, comp; |
366 | 366 | ||
367 | /* TODO: Use block reads to improve performance? */ | 367 | /* TODO: Use block reads to improve performance? */ |
@@ -552,16 +552,6 @@ static void wm8350_irq_worker(struct work_struct *work) | |||
552 | } | 552 | } |
553 | } | 553 | } |
554 | 554 | ||
555 | enable_irq(wm8350->chip_irq); | ||
556 | } | ||
557 | |||
558 | static irqreturn_t wm8350_irq(int irq, void *data) | ||
559 | { | ||
560 | struct wm8350 *wm8350 = data; | ||
561 | |||
562 | disable_irq_nosync(irq); | ||
563 | schedule_work(&wm8350->irq_work); | ||
564 | |||
565 | return IRQ_HANDLED; | 555 | return IRQ_HANDLED; |
566 | } | 556 | } |
567 | 557 | ||
@@ -1428,9 +1418,8 @@ int wm8350_device_init(struct wm8350 *wm8350, int irq, | |||
1428 | 1418 | ||
1429 | mutex_init(&wm8350->auxadc_mutex); | 1419 | mutex_init(&wm8350->auxadc_mutex); |
1430 | mutex_init(&wm8350->irq_mutex); | 1420 | mutex_init(&wm8350->irq_mutex); |
1431 | INIT_WORK(&wm8350->irq_work, wm8350_irq_worker); | ||
1432 | if (irq) { | 1421 | if (irq) { |
1433 | int flags = 0; | 1422 | int flags = IRQF_ONESHOT; |
1434 | 1423 | ||
1435 | if (pdata && pdata->irq_high) { | 1424 | if (pdata && pdata->irq_high) { |
1436 | flags |= IRQF_TRIGGER_HIGH; | 1425 | flags |= IRQF_TRIGGER_HIGH; |
@@ -1444,8 +1433,8 @@ int wm8350_device_init(struct wm8350 *wm8350, int irq, | |||
1444 | WM8350_IRQ_POL); | 1433 | WM8350_IRQ_POL); |
1445 | } | 1434 | } |
1446 | 1435 | ||
1447 | ret = request_irq(irq, wm8350_irq, flags, | 1436 | ret = request_threaded_irq(irq, NULL, wm8350_irq, flags, |
1448 | "wm8350", wm8350); | 1437 | "wm8350", wm8350); |
1449 | if (ret != 0) { | 1438 | if (ret != 0) { |
1450 | dev_err(wm8350->dev, "Failed to request IRQ: %d\n", | 1439 | dev_err(wm8350->dev, "Failed to request IRQ: %d\n", |
1451 | ret); | 1440 | ret); |
@@ -1472,6 +1461,8 @@ int wm8350_device_init(struct wm8350 *wm8350, int irq, | |||
1472 | &(wm8350->codec.pdev)); | 1461 | &(wm8350->codec.pdev)); |
1473 | wm8350_client_dev_register(wm8350, "wm8350-gpio", | 1462 | wm8350_client_dev_register(wm8350, "wm8350-gpio", |
1474 | &(wm8350->gpio.pdev)); | 1463 | &(wm8350->gpio.pdev)); |
1464 | wm8350_client_dev_register(wm8350, "wm8350-hwmon", | ||
1465 | &(wm8350->hwmon.pdev)); | ||
1475 | wm8350_client_dev_register(wm8350, "wm8350-power", | 1466 | wm8350_client_dev_register(wm8350, "wm8350-power", |
1476 | &(wm8350->power.pdev)); | 1467 | &(wm8350->power.pdev)); |
1477 | wm8350_client_dev_register(wm8350, "wm8350-rtc", &(wm8350->rtc.pdev)); | 1468 | wm8350_client_dev_register(wm8350, "wm8350-rtc", &(wm8350->rtc.pdev)); |
@@ -1498,11 +1489,11 @@ void wm8350_device_exit(struct wm8350 *wm8350) | |||
1498 | platform_device_unregister(wm8350->wdt.pdev); | 1489 | platform_device_unregister(wm8350->wdt.pdev); |
1499 | platform_device_unregister(wm8350->rtc.pdev); | 1490 | platform_device_unregister(wm8350->rtc.pdev); |
1500 | platform_device_unregister(wm8350->power.pdev); | 1491 | platform_device_unregister(wm8350->power.pdev); |
1492 | platform_device_unregister(wm8350->hwmon.pdev); | ||
1501 | platform_device_unregister(wm8350->gpio.pdev); | 1493 | platform_device_unregister(wm8350->gpio.pdev); |
1502 | platform_device_unregister(wm8350->codec.pdev); | 1494 | platform_device_unregister(wm8350->codec.pdev); |
1503 | 1495 | ||
1504 | free_irq(wm8350->chip_irq, wm8350); | 1496 | free_irq(wm8350->chip_irq, wm8350); |
1505 | flush_work(&wm8350->irq_work); | ||
1506 | kfree(wm8350->reg_cache); | 1497 | kfree(wm8350->reg_cache); |
1507 | } | 1498 | } |
1508 | EXPORT_SYMBOL_GPL(wm8350_device_exit); | 1499 | EXPORT_SYMBOL_GPL(wm8350_device_exit); |
diff --git a/drivers/misc/sgi-xp/xpc_sn2.c b/drivers/misc/sgi-xp/xpc_sn2.c index 915a3b495da5..8b70e03f939f 100644 --- a/drivers/misc/sgi-xp/xpc_sn2.c +++ b/drivers/misc/sgi-xp/xpc_sn2.c | |||
@@ -279,7 +279,7 @@ xpc_check_for_sent_chctl_flags_sn2(struct xpc_partition *part) | |||
279 | spin_unlock_irqrestore(&part->chctl_lock, irq_flags); | 279 | spin_unlock_irqrestore(&part->chctl_lock, irq_flags); |
280 | 280 | ||
281 | dev_dbg(xpc_chan, "received notify IRQ from partid=%d, chctl.all_flags=" | 281 | dev_dbg(xpc_chan, "received notify IRQ from partid=%d, chctl.all_flags=" |
282 | "0x%lx\n", XPC_PARTID(part), chctl.all_flags); | 282 | "0x%llx\n", XPC_PARTID(part), chctl.all_flags); |
283 | 283 | ||
284 | xpc_wakeup_channel_mgr(part); | 284 | xpc_wakeup_channel_mgr(part); |
285 | } | 285 | } |
@@ -615,7 +615,8 @@ xpc_get_partition_rsvd_page_pa_sn2(void *buf, u64 *cookie, unsigned long *rp_pa, | |||
615 | s64 status; | 615 | s64 status; |
616 | enum xp_retval ret; | 616 | enum xp_retval ret; |
617 | 617 | ||
618 | status = sn_partition_reserved_page_pa((u64)buf, cookie, rp_pa, len); | 618 | status = sn_partition_reserved_page_pa((u64)buf, cookie, |
619 | (u64 *)rp_pa, (u64 *)len); | ||
619 | if (status == SALRET_OK) | 620 | if (status == SALRET_OK) |
620 | ret = xpSuccess; | 621 | ret = xpSuccess; |
621 | else if (status == SALRET_MORE_PASSES) | 622 | else if (status == SALRET_MORE_PASSES) |
@@ -777,8 +778,8 @@ xpc_get_remote_heartbeat_sn2(struct xpc_partition *part) | |||
777 | if (ret != xpSuccess) | 778 | if (ret != xpSuccess) |
778 | return ret; | 779 | return ret; |
779 | 780 | ||
780 | dev_dbg(xpc_part, "partid=%d, heartbeat=%ld, last_heartbeat=%ld, " | 781 | dev_dbg(xpc_part, "partid=%d, heartbeat=%lld, last_heartbeat=%lld, " |
781 | "heartbeat_offline=%ld, HB_mask[0]=0x%lx\n", XPC_PARTID(part), | 782 | "heartbeat_offline=%lld, HB_mask[0]=0x%lx\n", XPC_PARTID(part), |
782 | remote_vars->heartbeat, part->last_heartbeat, | 783 | remote_vars->heartbeat, part->last_heartbeat, |
783 | remote_vars->heartbeat_offline, | 784 | remote_vars->heartbeat_offline, |
784 | remote_vars->heartbeating_to_mask[0]); | 785 | remote_vars->heartbeating_to_mask[0]); |
@@ -940,7 +941,7 @@ xpc_update_partition_info_sn2(struct xpc_partition *part, u8 remote_rp_version, | |||
940 | part_sn2->remote_vars_pa); | 941 | part_sn2->remote_vars_pa); |
941 | 942 | ||
942 | part->last_heartbeat = remote_vars->heartbeat - 1; | 943 | part->last_heartbeat = remote_vars->heartbeat - 1; |
943 | dev_dbg(xpc_part, " last_heartbeat = 0x%016lx\n", | 944 | dev_dbg(xpc_part, " last_heartbeat = 0x%016llx\n", |
944 | part->last_heartbeat); | 945 | part->last_heartbeat); |
945 | 946 | ||
946 | part_sn2->remote_vars_part_pa = remote_vars->vars_part_pa; | 947 | part_sn2->remote_vars_part_pa = remote_vars->vars_part_pa; |
@@ -1029,7 +1030,8 @@ xpc_identify_activate_IRQ_req_sn2(int nasid) | |||
1029 | part->activate_IRQ_rcvd++; | 1030 | part->activate_IRQ_rcvd++; |
1030 | 1031 | ||
1031 | dev_dbg(xpc_part, "partid for nasid %d is %d; IRQs = %d; HB = " | 1032 | dev_dbg(xpc_part, "partid for nasid %d is %d; IRQs = %d; HB = " |
1032 | "%ld:0x%lx\n", (int)nasid, (int)partid, part->activate_IRQ_rcvd, | 1033 | "%lld:0x%lx\n", (int)nasid, (int)partid, |
1034 | part->activate_IRQ_rcvd, | ||
1033 | remote_vars->heartbeat, remote_vars->heartbeating_to_mask[0]); | 1035 | remote_vars->heartbeat, remote_vars->heartbeating_to_mask[0]); |
1034 | 1036 | ||
1035 | if (xpc_partition_disengaged(part) && | 1037 | if (xpc_partition_disengaged(part) && |
@@ -1129,7 +1131,7 @@ xpc_identify_activate_IRQ_sender_sn2(void) | |||
1129 | do { | 1131 | do { |
1130 | n_IRQs_detected++; | 1132 | n_IRQs_detected++; |
1131 | nasid = (l * BITS_PER_LONG + b) * 2; | 1133 | nasid = (l * BITS_PER_LONG + b) * 2; |
1132 | dev_dbg(xpc_part, "interrupt from nasid %ld\n", nasid); | 1134 | dev_dbg(xpc_part, "interrupt from nasid %lld\n", nasid); |
1133 | xpc_identify_activate_IRQ_req_sn2(nasid); | 1135 | xpc_identify_activate_IRQ_req_sn2(nasid); |
1134 | 1136 | ||
1135 | b = find_next_bit(&nasid_mask_long, BITS_PER_LONG, | 1137 | b = find_next_bit(&nasid_mask_long, BITS_PER_LONG, |
@@ -1386,7 +1388,7 @@ xpc_pull_remote_vars_part_sn2(struct xpc_partition *part) | |||
1386 | 1388 | ||
1387 | if (pulled_entry->magic != 0) { | 1389 | if (pulled_entry->magic != 0) { |
1388 | dev_dbg(xpc_chan, "partition %d's XPC vars_part for " | 1390 | dev_dbg(xpc_chan, "partition %d's XPC vars_part for " |
1389 | "partition %d has bad magic value (=0x%lx)\n", | 1391 | "partition %d has bad magic value (=0x%llx)\n", |
1390 | partid, sn_partition_id, pulled_entry->magic); | 1392 | partid, sn_partition_id, pulled_entry->magic); |
1391 | return xpBadMagic; | 1393 | return xpBadMagic; |
1392 | } | 1394 | } |
@@ -1730,14 +1732,14 @@ xpc_notify_senders_sn2(struct xpc_channel *ch, enum xp_retval reason, s64 put) | |||
1730 | 1732 | ||
1731 | if (notify->func != NULL) { | 1733 | if (notify->func != NULL) { |
1732 | dev_dbg(xpc_chan, "notify->func() called, notify=0x%p " | 1734 | dev_dbg(xpc_chan, "notify->func() called, notify=0x%p " |
1733 | "msg_number=%ld partid=%d channel=%d\n", | 1735 | "msg_number=%lld partid=%d channel=%d\n", |
1734 | (void *)notify, get, ch->partid, ch->number); | 1736 | (void *)notify, get, ch->partid, ch->number); |
1735 | 1737 | ||
1736 | notify->func(reason, ch->partid, ch->number, | 1738 | notify->func(reason, ch->partid, ch->number, |
1737 | notify->key); | 1739 | notify->key); |
1738 | 1740 | ||
1739 | dev_dbg(xpc_chan, "notify->func() returned, notify=0x%p" | 1741 | dev_dbg(xpc_chan, "notify->func() returned, notify=0x%p" |
1740 | " msg_number=%ld partid=%d channel=%d\n", | 1742 | " msg_number=%lld partid=%d channel=%d\n", |
1741 | (void *)notify, get, ch->partid, ch->number); | 1743 | (void *)notify, get, ch->partid, ch->number); |
1742 | } | 1744 | } |
1743 | } | 1745 | } |
@@ -1858,7 +1860,7 @@ xpc_process_msg_chctl_flags_sn2(struct xpc_partition *part, int ch_number) | |||
1858 | 1860 | ||
1859 | ch_sn2->w_remote_GP.get = ch_sn2->remote_GP.get; | 1861 | ch_sn2->w_remote_GP.get = ch_sn2->remote_GP.get; |
1860 | 1862 | ||
1861 | dev_dbg(xpc_chan, "w_remote_GP.get changed to %ld, partid=%d, " | 1863 | dev_dbg(xpc_chan, "w_remote_GP.get changed to %lld, partid=%d, " |
1862 | "channel=%d\n", ch_sn2->w_remote_GP.get, ch->partid, | 1864 | "channel=%d\n", ch_sn2->w_remote_GP.get, ch->partid, |
1863 | ch->number); | 1865 | ch->number); |
1864 | 1866 | ||
@@ -1885,7 +1887,7 @@ xpc_process_msg_chctl_flags_sn2(struct xpc_partition *part, int ch_number) | |||
1885 | smp_wmb(); /* ensure flags have been cleared before bte_copy */ | 1887 | smp_wmb(); /* ensure flags have been cleared before bte_copy */ |
1886 | ch_sn2->w_remote_GP.put = ch_sn2->remote_GP.put; | 1888 | ch_sn2->w_remote_GP.put = ch_sn2->remote_GP.put; |
1887 | 1889 | ||
1888 | dev_dbg(xpc_chan, "w_remote_GP.put changed to %ld, partid=%d, " | 1890 | dev_dbg(xpc_chan, "w_remote_GP.put changed to %lld, partid=%d, " |
1889 | "channel=%d\n", ch_sn2->w_remote_GP.put, ch->partid, | 1891 | "channel=%d\n", ch_sn2->w_remote_GP.put, ch->partid, |
1890 | ch->number); | 1892 | ch->number); |
1891 | 1893 | ||
@@ -1943,7 +1945,7 @@ xpc_pull_remote_msg_sn2(struct xpc_channel *ch, s64 get) | |||
1943 | if (ret != xpSuccess) { | 1945 | if (ret != xpSuccess) { |
1944 | 1946 | ||
1945 | dev_dbg(xpc_chan, "failed to pull %d msgs starting with" | 1947 | dev_dbg(xpc_chan, "failed to pull %d msgs starting with" |
1946 | " msg %ld from partition %d, channel=%d, " | 1948 | " msg %lld from partition %d, channel=%d, " |
1947 | "ret=%d\n", nmsgs, ch_sn2->next_msg_to_pull, | 1949 | "ret=%d\n", nmsgs, ch_sn2->next_msg_to_pull, |
1948 | ch->partid, ch->number, ret); | 1950 | ch->partid, ch->number, ret); |
1949 | 1951 | ||
@@ -1995,7 +1997,7 @@ xpc_get_deliverable_payload_sn2(struct xpc_channel *ch) | |||
1995 | if (cmpxchg(&ch_sn2->w_local_GP.get, get, get + 1) == get) { | 1997 | if (cmpxchg(&ch_sn2->w_local_GP.get, get, get + 1) == get) { |
1996 | /* we got the entry referenced by get */ | 1998 | /* we got the entry referenced by get */ |
1997 | 1999 | ||
1998 | dev_dbg(xpc_chan, "w_local_GP.get changed to %ld, " | 2000 | dev_dbg(xpc_chan, "w_local_GP.get changed to %lld, " |
1999 | "partid=%d, channel=%d\n", get + 1, | 2001 | "partid=%d, channel=%d\n", get + 1, |
2000 | ch->partid, ch->number); | 2002 | ch->partid, ch->number); |
2001 | 2003 | ||
@@ -2062,7 +2064,7 @@ xpc_send_msgs_sn2(struct xpc_channel *ch, s64 initial_put) | |||
2062 | 2064 | ||
2063 | /* we just set the new value of local_GP->put */ | 2065 | /* we just set the new value of local_GP->put */ |
2064 | 2066 | ||
2065 | dev_dbg(xpc_chan, "local_GP->put changed to %ld, partid=%d, " | 2067 | dev_dbg(xpc_chan, "local_GP->put changed to %lld, partid=%d, " |
2066 | "channel=%d\n", put, ch->partid, ch->number); | 2068 | "channel=%d\n", put, ch->partid, ch->number); |
2067 | 2069 | ||
2068 | send_msgrequest = 1; | 2070 | send_msgrequest = 1; |
@@ -2147,8 +2149,8 @@ xpc_allocate_msg_sn2(struct xpc_channel *ch, u32 flags, | |||
2147 | DBUG_ON(msg->flags != 0); | 2149 | DBUG_ON(msg->flags != 0); |
2148 | msg->number = put; | 2150 | msg->number = put; |
2149 | 2151 | ||
2150 | dev_dbg(xpc_chan, "w_local_GP.put changed to %ld; msg=0x%p, " | 2152 | dev_dbg(xpc_chan, "w_local_GP.put changed to %lld; msg=0x%p, " |
2151 | "msg_number=%ld, partid=%d, channel=%d\n", put + 1, | 2153 | "msg_number=%lld, partid=%d, channel=%d\n", put + 1, |
2152 | (void *)msg, msg->number, ch->partid, ch->number); | 2154 | (void *)msg, msg->number, ch->partid, ch->number); |
2153 | 2155 | ||
2154 | *address_of_msg = msg; | 2156 | *address_of_msg = msg; |
@@ -2296,7 +2298,7 @@ xpc_acknowledge_msgs_sn2(struct xpc_channel *ch, s64 initial_get, u8 msg_flags) | |||
2296 | 2298 | ||
2297 | /* we just set the new value of local_GP->get */ | 2299 | /* we just set the new value of local_GP->get */ |
2298 | 2300 | ||
2299 | dev_dbg(xpc_chan, "local_GP->get changed to %ld, partid=%d, " | 2301 | dev_dbg(xpc_chan, "local_GP->get changed to %lld, partid=%d, " |
2300 | "channel=%d\n", get, ch->partid, ch->number); | 2302 | "channel=%d\n", get, ch->partid, ch->number); |
2301 | 2303 | ||
2302 | send_msgrequest = (msg_flags & XPC_M_SN2_INTERRUPT); | 2304 | send_msgrequest = (msg_flags & XPC_M_SN2_INTERRUPT); |
@@ -2323,7 +2325,7 @@ xpc_received_payload_sn2(struct xpc_channel *ch, void *payload) | |||
2323 | msg = container_of(payload, struct xpc_msg_sn2, payload); | 2325 | msg = container_of(payload, struct xpc_msg_sn2, payload); |
2324 | msg_number = msg->number; | 2326 | msg_number = msg->number; |
2325 | 2327 | ||
2326 | dev_dbg(xpc_chan, "msg=0x%p, msg_number=%ld, partid=%d, channel=%d\n", | 2328 | dev_dbg(xpc_chan, "msg=0x%p, msg_number=%lld, partid=%d, channel=%d\n", |
2327 | (void *)msg, msg_number, ch->partid, ch->number); | 2329 | (void *)msg, msg_number, ch->partid, ch->number); |
2328 | 2330 | ||
2329 | DBUG_ON((((u64)msg - (u64)ch->sn.sn2.remote_msgqueue) / ch->entry_size) != | 2331 | DBUG_ON((((u64)msg - (u64)ch->sn.sn2.remote_msgqueue) / ch->entry_size) != |
diff --git a/drivers/mtd/nand/ams-delta.c b/drivers/mtd/nand/ams-delta.c index 782994ead0e8..005b91f096f2 100644 --- a/drivers/mtd/nand/ams-delta.c +++ b/drivers/mtd/nand/ams-delta.c | |||
@@ -63,7 +63,7 @@ static void ams_delta_write_byte(struct mtd_info *mtd, u_char byte) | |||
63 | { | 63 | { |
64 | struct nand_chip *this = mtd->priv; | 64 | struct nand_chip *this = mtd->priv; |
65 | 65 | ||
66 | omap_writew(0, (OMAP_MPUIO_BASE + OMAP_MPUIO_IO_CNTL)); | 66 | omap_writew(0, (OMAP1_MPUIO_BASE + OMAP_MPUIO_IO_CNTL)); |
67 | omap_writew(byte, this->IO_ADDR_W); | 67 | omap_writew(byte, this->IO_ADDR_W); |
68 | ams_delta_latch2_write(AMS_DELTA_LATCH2_NAND_NWE, 0); | 68 | ams_delta_latch2_write(AMS_DELTA_LATCH2_NAND_NWE, 0); |
69 | ndelay(40); | 69 | ndelay(40); |
@@ -78,7 +78,7 @@ static u_char ams_delta_read_byte(struct mtd_info *mtd) | |||
78 | 78 | ||
79 | ams_delta_latch2_write(AMS_DELTA_LATCH2_NAND_NRE, 0); | 79 | ams_delta_latch2_write(AMS_DELTA_LATCH2_NAND_NRE, 0); |
80 | ndelay(40); | 80 | ndelay(40); |
81 | omap_writew(~0, (OMAP_MPUIO_BASE + OMAP_MPUIO_IO_CNTL)); | 81 | omap_writew(~0, (OMAP1_MPUIO_BASE + OMAP_MPUIO_IO_CNTL)); |
82 | res = omap_readw(this->IO_ADDR_R); | 82 | res = omap_readw(this->IO_ADDR_R); |
83 | ams_delta_latch2_write(AMS_DELTA_LATCH2_NAND_NRE, | 83 | ams_delta_latch2_write(AMS_DELTA_LATCH2_NAND_NRE, |
84 | AMS_DELTA_LATCH2_NAND_NRE); | 84 | AMS_DELTA_LATCH2_NAND_NRE); |
@@ -178,8 +178,8 @@ static int __init ams_delta_init(void) | |||
178 | ams_delta_mtd->priv = this; | 178 | ams_delta_mtd->priv = this; |
179 | 179 | ||
180 | /* Set address of NAND IO lines */ | 180 | /* Set address of NAND IO lines */ |
181 | this->IO_ADDR_R = (OMAP_MPUIO_BASE + OMAP_MPUIO_INPUT_LATCH); | 181 | this->IO_ADDR_R = (OMAP1_MPUIO_BASE + OMAP_MPUIO_INPUT_LATCH); |
182 | this->IO_ADDR_W = (OMAP_MPUIO_BASE + OMAP_MPUIO_OUTPUT); | 182 | this->IO_ADDR_W = (OMAP1_MPUIO_BASE + OMAP_MPUIO_OUTPUT); |
183 | this->read_byte = ams_delta_read_byte; | 183 | this->read_byte = ams_delta_read_byte; |
184 | this->write_buf = ams_delta_write_buf; | 184 | this->write_buf = ams_delta_write_buf; |
185 | this->read_buf = ams_delta_read_buf; | 185 | this->read_buf = ams_delta_read_buf; |
diff --git a/drivers/net/slip.c b/drivers/net/slip.c index 26f6ee93a064..e17c535a577e 100644 --- a/drivers/net/slip.c +++ b/drivers/net/slip.c | |||
@@ -616,6 +616,14 @@ static void sl_uninit(struct net_device *dev) | |||
616 | sl_free_bufs(sl); | 616 | sl_free_bufs(sl); |
617 | } | 617 | } |
618 | 618 | ||
619 | /* Hook the destructor so we can free slip devices at the right point in time */ | ||
620 | static void sl_free_netdev(struct net_device *dev) | ||
621 | { | ||
622 | int i = dev->base_addr; | ||
623 | free_netdev(dev); | ||
624 | slip_devs[i] = NULL; | ||
625 | } | ||
626 | |||
619 | static const struct net_device_ops sl_netdev_ops = { | 627 | static const struct net_device_ops sl_netdev_ops = { |
620 | .ndo_init = sl_init, | 628 | .ndo_init = sl_init, |
621 | .ndo_uninit = sl_uninit, | 629 | .ndo_uninit = sl_uninit, |
@@ -634,7 +642,7 @@ static const struct net_device_ops sl_netdev_ops = { | |||
634 | static void sl_setup(struct net_device *dev) | 642 | static void sl_setup(struct net_device *dev) |
635 | { | 643 | { |
636 | dev->netdev_ops = &sl_netdev_ops; | 644 | dev->netdev_ops = &sl_netdev_ops; |
637 | dev->destructor = free_netdev; | 645 | dev->destructor = sl_free_netdev; |
638 | 646 | ||
639 | dev->hard_header_len = 0; | 647 | dev->hard_header_len = 0; |
640 | dev->addr_len = 0; | 648 | dev->addr_len = 0; |
@@ -712,8 +720,6 @@ static void sl_sync(void) | |||
712 | static struct slip *sl_alloc(dev_t line) | 720 | static struct slip *sl_alloc(dev_t line) |
713 | { | 721 | { |
714 | int i; | 722 | int i; |
715 | int sel = -1; | ||
716 | int score = -1; | ||
717 | struct net_device *dev = NULL; | 723 | struct net_device *dev = NULL; |
718 | struct slip *sl; | 724 | struct slip *sl; |
719 | 725 | ||
@@ -724,55 +730,7 @@ static struct slip *sl_alloc(dev_t line) | |||
724 | dev = slip_devs[i]; | 730 | dev = slip_devs[i]; |
725 | if (dev == NULL) | 731 | if (dev == NULL) |
726 | break; | 732 | break; |
727 | |||
728 | sl = netdev_priv(dev); | ||
729 | if (sl->leased) { | ||
730 | if (sl->line != line) | ||
731 | continue; | ||
732 | if (sl->tty) | ||
733 | return NULL; | ||
734 | |||
735 | /* Clear ESCAPE & ERROR flags */ | ||
736 | sl->flags &= (1 << SLF_INUSE); | ||
737 | return sl; | ||
738 | } | ||
739 | |||
740 | if (sl->tty) | ||
741 | continue; | ||
742 | |||
743 | if (current->pid == sl->pid) { | ||
744 | if (sl->line == line && score < 3) { | ||
745 | sel = i; | ||
746 | score = 3; | ||
747 | continue; | ||
748 | } | ||
749 | if (score < 2) { | ||
750 | sel = i; | ||
751 | score = 2; | ||
752 | } | ||
753 | continue; | ||
754 | } | ||
755 | if (sl->line == line && score < 1) { | ||
756 | sel = i; | ||
757 | score = 1; | ||
758 | continue; | ||
759 | } | ||
760 | if (score < 0) { | ||
761 | sel = i; | ||
762 | score = 0; | ||
763 | } | ||
764 | } | ||
765 | |||
766 | if (sel >= 0) { | ||
767 | i = sel; | ||
768 | dev = slip_devs[i]; | ||
769 | if (score > 1) { | ||
770 | sl = netdev_priv(dev); | ||
771 | sl->flags &= (1 << SLF_INUSE); | ||
772 | return sl; | ||
773 | } | ||
774 | } | 733 | } |
775 | |||
776 | /* Sorry, too many, all slots in use */ | 734 | /* Sorry, too many, all slots in use */ |
777 | if (i >= slip_maxdev) | 735 | if (i >= slip_maxdev) |
778 | return NULL; | 736 | return NULL; |
@@ -909,30 +867,13 @@ err_exit: | |||
909 | } | 867 | } |
910 | 868 | ||
911 | /* | 869 | /* |
912 | |||
913 | FIXME: 1,2 are fixed 3 was never true anyway. | ||
914 | |||
915 | Let me to blame a bit. | ||
916 | 1. TTY module calls this funstion on soft interrupt. | ||
917 | 2. TTY module calls this function WITH MASKED INTERRUPTS! | ||
918 | 3. TTY module does not notify us about line discipline | ||
919 | shutdown, | ||
920 | |||
921 | Seems, now it is clean. The solution is to consider netdevice and | ||
922 | line discipline sides as two independent threads. | ||
923 | |||
924 | By-product (not desired): sl? does not feel hangups and remains open. | ||
925 | It is supposed, that user level program (dip, diald, slattach...) | ||
926 | will catch SIGHUP and make the rest of work. | ||
927 | |||
928 | I see no way to make more with current tty code. --ANK | ||
929 | */ | ||
930 | |||
931 | /* | ||
932 | * Close down a SLIP channel. | 870 | * Close down a SLIP channel. |
933 | * This means flushing out any pending queues, and then returning. This | 871 | * This means flushing out any pending queues, and then returning. This |
934 | * call is serialized against other ldisc functions. | 872 | * call is serialized against other ldisc functions. |
873 | * | ||
874 | * We also use this method fo a hangup event | ||
935 | */ | 875 | */ |
876 | |||
936 | static void slip_close(struct tty_struct *tty) | 877 | static void slip_close(struct tty_struct *tty) |
937 | { | 878 | { |
938 | struct slip *sl = tty->disc_data; | 879 | struct slip *sl = tty->disc_data; |
@@ -951,10 +892,16 @@ static void slip_close(struct tty_struct *tty) | |||
951 | del_timer_sync(&sl->keepalive_timer); | 892 | del_timer_sync(&sl->keepalive_timer); |
952 | del_timer_sync(&sl->outfill_timer); | 893 | del_timer_sync(&sl->outfill_timer); |
953 | #endif | 894 | #endif |
954 | 895 | /* Flush network side */ | |
955 | /* Count references from TTY module */ | 896 | unregister_netdev(sl->dev); |
897 | /* This will complete via sl_free_netdev */ | ||
956 | } | 898 | } |
957 | 899 | ||
900 | static int slip_hangup(struct tty_struct *tty) | ||
901 | { | ||
902 | slip_close(tty); | ||
903 | return 0; | ||
904 | } | ||
958 | /************************************************************************ | 905 | /************************************************************************ |
959 | * STANDARD SLIP ENCAPSULATION * | 906 | * STANDARD SLIP ENCAPSULATION * |
960 | ************************************************************************/ | 907 | ************************************************************************/ |
@@ -1311,6 +1258,7 @@ static struct tty_ldisc_ops sl_ldisc = { | |||
1311 | .name = "slip", | 1258 | .name = "slip", |
1312 | .open = slip_open, | 1259 | .open = slip_open, |
1313 | .close = slip_close, | 1260 | .close = slip_close, |
1261 | .hangup = slip_hangup, | ||
1314 | .ioctl = slip_ioctl, | 1262 | .ioctl = slip_ioctl, |
1315 | .receive_buf = slip_receive_buf, | 1263 | .receive_buf = slip_receive_buf, |
1316 | .write_wakeup = slip_write_wakeup, | 1264 | .write_wakeup = slip_write_wakeup, |
@@ -1384,6 +1332,8 @@ static void __exit slip_exit(void) | |||
1384 | } | 1332 | } |
1385 | } while (busy && time_before(jiffies, timeout)); | 1333 | } while (busy && time_before(jiffies, timeout)); |
1386 | 1334 | ||
1335 | /* FIXME: hangup is async so we should wait when doing this second | ||
1336 | phase */ | ||
1387 | 1337 | ||
1388 | for (i = 0; i < slip_maxdev; i++) { | 1338 | for (i = 0; i < slip_maxdev; i++) { |
1389 | dev = slip_devs[i]; | 1339 | dev = slip_devs[i]; |
diff --git a/drivers/net/tun.c b/drivers/net/tun.c index 3f5d28851aa2..d3ee1994b02f 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c | |||
@@ -1370,7 +1370,7 @@ static const struct file_operations tun_fops = { | |||
1370 | static struct miscdevice tun_miscdev = { | 1370 | static struct miscdevice tun_miscdev = { |
1371 | .minor = TUN_MINOR, | 1371 | .minor = TUN_MINOR, |
1372 | .name = "tun", | 1372 | .name = "tun", |
1373 | .devnode = "net/tun", | 1373 | .nodename = "net/tun", |
1374 | .fops = &tun_fops, | 1374 | .fops = &tun_fops, |
1375 | }; | 1375 | }; |
1376 | 1376 | ||
diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig index f4317798e47c..2dc42bbf6fe9 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig | |||
@@ -82,6 +82,13 @@ config REGULATOR_TWL4030 | |||
82 | This driver supports the voltage regulators provided by | 82 | This driver supports the voltage regulators provided by |
83 | this family of companion chips. | 83 | this family of companion chips. |
84 | 84 | ||
85 | config REGULATOR_WM831X | ||
86 | tristate "Wolfson Microelcronics WM831x PMIC regulators" | ||
87 | depends on MFD_WM831X | ||
88 | help | ||
89 | Support the voltage and current regulators of the WM831x series | ||
90 | of PMIC devices. | ||
91 | |||
85 | config REGULATOR_WM8350 | 92 | config REGULATOR_WM8350 |
86 | tristate "Wolfson Microelectroncis WM8350 AudioPlus PMIC" | 93 | tristate "Wolfson Microelectroncis WM8350 AudioPlus PMIC" |
87 | depends on MFD_WM8350 | 94 | depends on MFD_WM8350 |
@@ -117,4 +124,28 @@ config REGULATOR_LP3971 | |||
117 | Say Y here to support the voltage regulators and convertors | 124 | Say Y here to support the voltage regulators and convertors |
118 | on National Semiconductors LP3971 PMIC | 125 | on National Semiconductors LP3971 PMIC |
119 | 126 | ||
127 | config REGULATOR_PCAP | ||
128 | tristate "PCAP2 regulator driver" | ||
129 | depends on EZX_PCAP | ||
130 | help | ||
131 | This driver provides support for the voltage regulators of the | ||
132 | PCAP2 PMIC. | ||
133 | |||
134 | config REGULATOR_MC13783 | ||
135 | tristate "Support regulators on Freescale MC13783 PMIC" | ||
136 | depends on MFD_MC13783 | ||
137 | help | ||
138 | Say y here to support the regulators found on the Freescale MC13783 | ||
139 | PMIC. | ||
140 | |||
141 | config REGULATOR_AB3100 | ||
142 | tristate "ST-Ericsson AB3100 Regulator functions" | ||
143 | depends on AB3100_CORE | ||
144 | default y if AB3100_CORE | ||
145 | help | ||
146 | These regulators correspond to functionality in the | ||
147 | AB3100 analog baseband dealing with power regulators | ||
148 | for the system. | ||
149 | |||
120 | endif | 150 | endif |
151 | |||
diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile index 4d762c4cccfd..768b3316d6eb 100644 --- a/drivers/regulator/Makefile +++ b/drivers/regulator/Makefile | |||
@@ -12,9 +12,15 @@ obj-$(CONFIG_REGULATOR_BQ24022) += bq24022.o | |||
12 | obj-$(CONFIG_REGULATOR_LP3971) += lp3971.o | 12 | obj-$(CONFIG_REGULATOR_LP3971) += lp3971.o |
13 | obj-$(CONFIG_REGULATOR_MAX1586) += max1586.o | 13 | obj-$(CONFIG_REGULATOR_MAX1586) += max1586.o |
14 | obj-$(CONFIG_REGULATOR_TWL4030) += twl4030-regulator.o | 14 | obj-$(CONFIG_REGULATOR_TWL4030) += twl4030-regulator.o |
15 | obj-$(CONFIG_REGULATOR_WM831X) += wm831x-dcdc.o | ||
16 | obj-$(CONFIG_REGULATOR_WM831X) += wm831x-isink.o | ||
17 | obj-$(CONFIG_REGULATOR_WM831X) += wm831x-ldo.o | ||
15 | obj-$(CONFIG_REGULATOR_WM8350) += wm8350-regulator.o | 18 | obj-$(CONFIG_REGULATOR_WM8350) += wm8350-regulator.o |
16 | obj-$(CONFIG_REGULATOR_WM8400) += wm8400-regulator.o | 19 | obj-$(CONFIG_REGULATOR_WM8400) += wm8400-regulator.o |
17 | obj-$(CONFIG_REGULATOR_DA903X) += da903x.o | 20 | obj-$(CONFIG_REGULATOR_DA903X) += da903x.o |
18 | obj-$(CONFIG_REGULATOR_PCF50633) += pcf50633-regulator.o | 21 | obj-$(CONFIG_REGULATOR_PCF50633) += pcf50633-regulator.o |
22 | obj-$(CONFIG_REGULATOR_PCAP) += pcap-regulator.o | ||
23 | obj-$(CONFIG_REGULATOR_MC13783) += mc13783.o | ||
24 | obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o | ||
19 | 25 | ||
20 | ccflags-$(CONFIG_REGULATOR_DEBUG) += -DDEBUG | 26 | ccflags-$(CONFIG_REGULATOR_DEBUG) += -DDEBUG |
diff --git a/drivers/regulator/ab3100.c b/drivers/regulator/ab3100.c new file mode 100644 index 000000000000..49aeee823a25 --- /dev/null +++ b/drivers/regulator/ab3100.c | |||
@@ -0,0 +1,700 @@ | |||
1 | /* | ||
2 | * drivers/regulator/ab3100.c | ||
3 | * | ||
4 | * Copyright (C) 2008-2009 ST-Ericsson AB | ||
5 | * License terms: GNU General Public License (GPL) version 2 | ||
6 | * Low-level control of the AB3100 IC Low Dropout (LDO) | ||
7 | * regulators, external regulator and buck converter | ||
8 | * Author: Mattias Wallin <mattias.wallin@stericsson.com> | ||
9 | * Author: Linus Walleij <linus.walleij@stericsson.com> | ||
10 | */ | ||
11 | |||
12 | #include <linux/module.h> | ||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/init.h> | ||
15 | #include <linux/err.h> | ||
16 | #include <linux/delay.h> | ||
17 | #include <linux/platform_device.h> | ||
18 | #include <linux/regulator/driver.h> | ||
19 | #include <linux/mfd/ab3100.h> | ||
20 | |||
21 | /* LDO registers and some handy masking definitions for AB3100 */ | ||
22 | #define AB3100_LDO_A 0x40 | ||
23 | #define AB3100_LDO_C 0x41 | ||
24 | #define AB3100_LDO_D 0x42 | ||
25 | #define AB3100_LDO_E 0x43 | ||
26 | #define AB3100_LDO_E_SLEEP 0x44 | ||
27 | #define AB3100_LDO_F 0x45 | ||
28 | #define AB3100_LDO_G 0x46 | ||
29 | #define AB3100_LDO_H 0x47 | ||
30 | #define AB3100_LDO_H_SLEEP_MODE 0 | ||
31 | #define AB3100_LDO_H_SLEEP_EN 2 | ||
32 | #define AB3100_LDO_ON 4 | ||
33 | #define AB3100_LDO_H_VSEL_AC 5 | ||
34 | #define AB3100_LDO_K 0x48 | ||
35 | #define AB3100_LDO_EXT 0x49 | ||
36 | #define AB3100_BUCK 0x4A | ||
37 | #define AB3100_BUCK_SLEEP 0x4B | ||
38 | #define AB3100_REG_ON_MASK 0x10 | ||
39 | |||
40 | /** | ||
41 | * struct ab3100_regulator | ||
42 | * A struct passed around the individual regulator functions | ||
43 | * @platform_device: platform device holding this regulator | ||
44 | * @ab3100: handle to the AB3100 parent chip | ||
45 | * @plfdata: AB3100 platform data passed in at probe time | ||
46 | * @regreg: regulator register number in the AB3100 | ||
47 | * @fixed_voltage: a fixed voltage for this regulator, if this | ||
48 | * 0 the voltages array is used instead. | ||
49 | * @typ_voltages: an array of available typical voltages for | ||
50 | * this regulator | ||
51 | * @voltages_len: length of the array of available voltages | ||
52 | */ | ||
53 | struct ab3100_regulator { | ||
54 | struct regulator_dev *rdev; | ||
55 | struct ab3100 *ab3100; | ||
56 | struct ab3100_platform_data *plfdata; | ||
57 | u8 regreg; | ||
58 | int fixed_voltage; | ||
59 | int const *typ_voltages; | ||
60 | u8 voltages_len; | ||
61 | }; | ||
62 | |||
63 | /* The order in which registers are initialized */ | ||
64 | static const u8 ab3100_reg_init_order[AB3100_NUM_REGULATORS+2] = { | ||
65 | AB3100_LDO_A, | ||
66 | AB3100_LDO_C, | ||
67 | AB3100_LDO_E, | ||
68 | AB3100_LDO_E_SLEEP, | ||
69 | AB3100_LDO_F, | ||
70 | AB3100_LDO_G, | ||
71 | AB3100_LDO_H, | ||
72 | AB3100_LDO_K, | ||
73 | AB3100_LDO_EXT, | ||
74 | AB3100_BUCK, | ||
75 | AB3100_BUCK_SLEEP, | ||
76 | AB3100_LDO_D, | ||
77 | }; | ||
78 | |||
79 | /* Preset (hardware defined) voltages for these regulators */ | ||
80 | #define LDO_A_VOLTAGE 2750000 | ||
81 | #define LDO_C_VOLTAGE 2650000 | ||
82 | #define LDO_D_VOLTAGE 2650000 | ||
83 | |||
84 | static const int const ldo_e_buck_typ_voltages[] = { | ||
85 | 1800000, | ||
86 | 1400000, | ||
87 | 1300000, | ||
88 | 1200000, | ||
89 | 1100000, | ||
90 | 1050000, | ||
91 | 900000, | ||
92 | }; | ||
93 | |||
94 | static const int const ldo_f_typ_voltages[] = { | ||
95 | 1800000, | ||
96 | 1400000, | ||
97 | 1300000, | ||
98 | 1200000, | ||
99 | 1100000, | ||
100 | 1050000, | ||
101 | 2500000, | ||
102 | 2650000, | ||
103 | }; | ||
104 | |||
105 | static const int const ldo_g_typ_voltages[] = { | ||
106 | 2850000, | ||
107 | 2750000, | ||
108 | 1800000, | ||
109 | 1500000, | ||
110 | }; | ||
111 | |||
112 | static const int const ldo_h_typ_voltages[] = { | ||
113 | 2750000, | ||
114 | 1800000, | ||
115 | 1500000, | ||
116 | 1200000, | ||
117 | }; | ||
118 | |||
119 | static const int const ldo_k_typ_voltages[] = { | ||
120 | 2750000, | ||
121 | 1800000, | ||
122 | }; | ||
123 | |||
124 | |||
125 | /* The regulator devices */ | ||
126 | static struct ab3100_regulator | ||
127 | ab3100_regulators[AB3100_NUM_REGULATORS] = { | ||
128 | { | ||
129 | .regreg = AB3100_LDO_A, | ||
130 | .fixed_voltage = LDO_A_VOLTAGE, | ||
131 | }, | ||
132 | { | ||
133 | .regreg = AB3100_LDO_C, | ||
134 | .fixed_voltage = LDO_C_VOLTAGE, | ||
135 | }, | ||
136 | { | ||
137 | .regreg = AB3100_LDO_D, | ||
138 | .fixed_voltage = LDO_D_VOLTAGE, | ||
139 | }, | ||
140 | { | ||
141 | .regreg = AB3100_LDO_E, | ||
142 | .typ_voltages = ldo_e_buck_typ_voltages, | ||
143 | .voltages_len = ARRAY_SIZE(ldo_e_buck_typ_voltages), | ||
144 | }, | ||
145 | { | ||
146 | .regreg = AB3100_LDO_F, | ||
147 | .typ_voltages = ldo_f_typ_voltages, | ||
148 | .voltages_len = ARRAY_SIZE(ldo_f_typ_voltages), | ||
149 | }, | ||
150 | { | ||
151 | .regreg = AB3100_LDO_G, | ||
152 | .typ_voltages = ldo_g_typ_voltages, | ||
153 | .voltages_len = ARRAY_SIZE(ldo_g_typ_voltages), | ||
154 | }, | ||
155 | { | ||
156 | .regreg = AB3100_LDO_H, | ||
157 | .typ_voltages = ldo_h_typ_voltages, | ||
158 | .voltages_len = ARRAY_SIZE(ldo_h_typ_voltages), | ||
159 | }, | ||
160 | { | ||
161 | .regreg = AB3100_LDO_K, | ||
162 | .typ_voltages = ldo_k_typ_voltages, | ||
163 | .voltages_len = ARRAY_SIZE(ldo_k_typ_voltages), | ||
164 | }, | ||
165 | { | ||
166 | .regreg = AB3100_LDO_EXT, | ||
167 | /* No voltages for the external regulator */ | ||
168 | }, | ||
169 | { | ||
170 | .regreg = AB3100_BUCK, | ||
171 | .typ_voltages = ldo_e_buck_typ_voltages, | ||
172 | .voltages_len = ARRAY_SIZE(ldo_e_buck_typ_voltages), | ||
173 | }, | ||
174 | }; | ||
175 | |||
176 | /* | ||
177 | * General functions for enable, disable and is_enabled used for | ||
178 | * LDO: A,C,E,F,G,H,K,EXT and BUCK | ||
179 | */ | ||
180 | static int ab3100_enable_regulator(struct regulator_dev *reg) | ||
181 | { | ||
182 | struct ab3100_regulator *abreg = reg->reg_data; | ||
183 | int err; | ||
184 | u8 regval; | ||
185 | |||
186 | err = ab3100_get_register_interruptible(abreg->ab3100, abreg->regreg, | ||
187 | ®val); | ||
188 | if (err) { | ||
189 | dev_warn(®->dev, "failed to get regid %d value\n", | ||
190 | abreg->regreg); | ||
191 | return err; | ||
192 | } | ||
193 | |||
194 | /* The regulator is already on, no reason to go further */ | ||
195 | if (regval & AB3100_REG_ON_MASK) | ||
196 | return 0; | ||
197 | |||
198 | regval |= AB3100_REG_ON_MASK; | ||
199 | |||
200 | err = ab3100_set_register_interruptible(abreg->ab3100, abreg->regreg, | ||
201 | regval); | ||
202 | if (err) { | ||
203 | dev_warn(®->dev, "failed to set regid %d value\n", | ||
204 | abreg->regreg); | ||
205 | return err; | ||
206 | } | ||
207 | |||
208 | /* Per-regulator power on delay from spec */ | ||
209 | switch (abreg->regreg) { | ||
210 | case AB3100_LDO_A: /* Fallthrough */ | ||
211 | case AB3100_LDO_C: /* Fallthrough */ | ||
212 | case AB3100_LDO_D: /* Fallthrough */ | ||
213 | case AB3100_LDO_E: /* Fallthrough */ | ||
214 | case AB3100_LDO_H: /* Fallthrough */ | ||
215 | case AB3100_LDO_K: | ||
216 | udelay(200); | ||
217 | break; | ||
218 | case AB3100_LDO_F: | ||
219 | udelay(600); | ||
220 | break; | ||
221 | case AB3100_LDO_G: | ||
222 | udelay(400); | ||
223 | break; | ||
224 | case AB3100_BUCK: | ||
225 | mdelay(1); | ||
226 | break; | ||
227 | default: | ||
228 | break; | ||
229 | } | ||
230 | |||
231 | return 0; | ||
232 | } | ||
233 | |||
234 | static int ab3100_disable_regulator(struct regulator_dev *reg) | ||
235 | { | ||
236 | struct ab3100_regulator *abreg = reg->reg_data; | ||
237 | int err; | ||
238 | u8 regval; | ||
239 | |||
240 | /* | ||
241 | * LDO D is a special regulator. When it is disabled, the entire | ||
242 | * system is shut down. So this is handled specially. | ||
243 | */ | ||
244 | if (abreg->regreg == AB3100_LDO_D) { | ||
245 | int i; | ||
246 | |||
247 | dev_info(®->dev, "disabling LDO D - shut down system\n"); | ||
248 | /* | ||
249 | * Set regulators to default values, ignore any errors, | ||
250 | * we're going DOWN | ||
251 | */ | ||
252 | for (i = 0; i < ARRAY_SIZE(ab3100_reg_init_order); i++) { | ||
253 | (void) ab3100_set_register_interruptible(abreg->ab3100, | ||
254 | ab3100_reg_init_order[i], | ||
255 | abreg->plfdata->reg_initvals[i]); | ||
256 | } | ||
257 | |||
258 | /* Setting LDO D to 0x00 cuts the power to the SoC */ | ||
259 | return ab3100_set_register_interruptible(abreg->ab3100, | ||
260 | AB3100_LDO_D, 0x00U); | ||
261 | |||
262 | } | ||
263 | |||
264 | /* | ||
265 | * All other regulators are handled here | ||
266 | */ | ||
267 | err = ab3100_get_register_interruptible(abreg->ab3100, abreg->regreg, | ||
268 | ®val); | ||
269 | if (err) { | ||
270 | dev_err(®->dev, "unable to get register 0x%x\n", | ||
271 | abreg->regreg); | ||
272 | return err; | ||
273 | } | ||
274 | regval &= ~AB3100_REG_ON_MASK; | ||
275 | return ab3100_set_register_interruptible(abreg->ab3100, abreg->regreg, | ||
276 | regval); | ||
277 | } | ||
278 | |||
279 | static int ab3100_is_enabled_regulator(struct regulator_dev *reg) | ||
280 | { | ||
281 | struct ab3100_regulator *abreg = reg->reg_data; | ||
282 | u8 regval; | ||
283 | int err; | ||
284 | |||
285 | err = ab3100_get_register_interruptible(abreg->ab3100, abreg->regreg, | ||
286 | ®val); | ||
287 | if (err) { | ||
288 | dev_err(®->dev, "unable to get register 0x%x\n", | ||
289 | abreg->regreg); | ||
290 | return err; | ||
291 | } | ||
292 | |||
293 | return regval & AB3100_REG_ON_MASK; | ||
294 | } | ||
295 | |||
296 | static int ab3100_list_voltage_regulator(struct regulator_dev *reg, | ||
297 | unsigned selector) | ||
298 | { | ||
299 | struct ab3100_regulator *abreg = reg->reg_data; | ||
300 | |||
301 | if (selector > abreg->voltages_len) | ||
302 | return -EINVAL; | ||
303 | return abreg->typ_voltages[selector]; | ||
304 | } | ||
305 | |||
306 | static int ab3100_get_voltage_regulator(struct regulator_dev *reg) | ||
307 | { | ||
308 | struct ab3100_regulator *abreg = reg->reg_data; | ||
309 | u8 regval; | ||
310 | int err; | ||
311 | |||
312 | /* Return the voltage for fixed regulators immediately */ | ||
313 | if (abreg->fixed_voltage) | ||
314 | return abreg->fixed_voltage; | ||
315 | |||
316 | /* | ||
317 | * For variable types, read out setting and index into | ||
318 | * supplied voltage list. | ||
319 | */ | ||
320 | err = ab3100_get_register_interruptible(abreg->ab3100, | ||
321 | abreg->regreg, ®val); | ||
322 | if (err) { | ||
323 | dev_warn(®->dev, | ||
324 | "failed to get regulator value in register %02x\n", | ||
325 | abreg->regreg); | ||
326 | return err; | ||
327 | } | ||
328 | |||
329 | /* The 3 highest bits index voltages */ | ||
330 | regval &= 0xE0; | ||
331 | regval >>= 5; | ||
332 | |||
333 | if (regval > abreg->voltages_len) { | ||
334 | dev_err(®->dev, | ||
335 | "regulator register %02x contains an illegal voltage setting\n", | ||
336 | abreg->regreg); | ||
337 | return -EINVAL; | ||
338 | } | ||
339 | |||
340 | return abreg->typ_voltages[regval]; | ||
341 | } | ||
342 | |||
343 | static int ab3100_get_best_voltage_index(struct regulator_dev *reg, | ||
344 | int min_uV, int max_uV) | ||
345 | { | ||
346 | struct ab3100_regulator *abreg = reg->reg_data; | ||
347 | int i; | ||
348 | int bestmatch; | ||
349 | int bestindex; | ||
350 | |||
351 | /* | ||
352 | * Locate the minimum voltage fitting the criteria on | ||
353 | * this regulator. The switchable voltages are not | ||
354 | * in strict falling order so we need to check them | ||
355 | * all for the best match. | ||
356 | */ | ||
357 | bestmatch = INT_MAX; | ||
358 | bestindex = -1; | ||
359 | for (i = 0; i < abreg->voltages_len; i++) { | ||
360 | if (abreg->typ_voltages[i] <= max_uV && | ||
361 | abreg->typ_voltages[i] >= min_uV && | ||
362 | abreg->typ_voltages[i] < bestmatch) { | ||
363 | bestmatch = abreg->typ_voltages[i]; | ||
364 | bestindex = i; | ||
365 | } | ||
366 | } | ||
367 | |||
368 | if (bestindex < 0) { | ||
369 | dev_warn(®->dev, "requested %d<=x<=%d uV, out of range!\n", | ||
370 | min_uV, max_uV); | ||
371 | return -EINVAL; | ||
372 | } | ||
373 | return bestindex; | ||
374 | } | ||
375 | |||
376 | static int ab3100_set_voltage_regulator(struct regulator_dev *reg, | ||
377 | int min_uV, int max_uV) | ||
378 | { | ||
379 | struct ab3100_regulator *abreg = reg->reg_data; | ||
380 | u8 regval; | ||
381 | int err; | ||
382 | int bestindex; | ||
383 | |||
384 | bestindex = ab3100_get_best_voltage_index(reg, min_uV, max_uV); | ||
385 | if (bestindex < 0) | ||
386 | return bestindex; | ||
387 | |||
388 | err = ab3100_get_register_interruptible(abreg->ab3100, | ||
389 | abreg->regreg, ®val); | ||
390 | if (err) { | ||
391 | dev_warn(®->dev, | ||
392 | "failed to get regulator register %02x\n", | ||
393 | abreg->regreg); | ||
394 | return err; | ||
395 | } | ||
396 | |||
397 | /* The highest three bits control the variable regulators */ | ||
398 | regval &= ~0xE0; | ||
399 | regval |= (bestindex << 5); | ||
400 | |||
401 | err = ab3100_set_register_interruptible(abreg->ab3100, | ||
402 | abreg->regreg, regval); | ||
403 | if (err) | ||
404 | dev_warn(®->dev, "failed to set regulator register %02x\n", | ||
405 | abreg->regreg); | ||
406 | |||
407 | return err; | ||
408 | } | ||
409 | |||
410 | static int ab3100_set_suspend_voltage_regulator(struct regulator_dev *reg, | ||
411 | int uV) | ||
412 | { | ||
413 | struct ab3100_regulator *abreg = reg->reg_data; | ||
414 | u8 regval; | ||
415 | int err; | ||
416 | int bestindex; | ||
417 | u8 targetreg; | ||
418 | |||
419 | if (abreg->regreg == AB3100_LDO_E) | ||
420 | targetreg = AB3100_LDO_E_SLEEP; | ||
421 | else if (abreg->regreg == AB3100_BUCK) | ||
422 | targetreg = AB3100_BUCK_SLEEP; | ||
423 | else | ||
424 | return -EINVAL; | ||
425 | |||
426 | /* LDO E and BUCK have special suspend voltages you can set */ | ||
427 | bestindex = ab3100_get_best_voltage_index(reg, uV, uV); | ||
428 | |||
429 | err = ab3100_get_register_interruptible(abreg->ab3100, | ||
430 | targetreg, ®val); | ||
431 | if (err) { | ||
432 | dev_warn(®->dev, | ||
433 | "failed to get regulator register %02x\n", | ||
434 | targetreg); | ||
435 | return err; | ||
436 | } | ||
437 | |||
438 | /* The highest three bits control the variable regulators */ | ||
439 | regval &= ~0xE0; | ||
440 | regval |= (bestindex << 5); | ||
441 | |||
442 | err = ab3100_set_register_interruptible(abreg->ab3100, | ||
443 | targetreg, regval); | ||
444 | if (err) | ||
445 | dev_warn(®->dev, "failed to set regulator register %02x\n", | ||
446 | abreg->regreg); | ||
447 | |||
448 | return err; | ||
449 | } | ||
450 | |||
451 | /* | ||
452 | * The external regulator can just define a fixed voltage. | ||
453 | */ | ||
454 | static int ab3100_get_voltage_regulator_external(struct regulator_dev *reg) | ||
455 | { | ||
456 | struct ab3100_regulator *abreg = reg->reg_data; | ||
457 | |||
458 | return abreg->plfdata->external_voltage; | ||
459 | } | ||
460 | |||
461 | static struct regulator_ops regulator_ops_fixed = { | ||
462 | .enable = ab3100_enable_regulator, | ||
463 | .disable = ab3100_disable_regulator, | ||
464 | .is_enabled = ab3100_is_enabled_regulator, | ||
465 | .get_voltage = ab3100_get_voltage_regulator, | ||
466 | }; | ||
467 | |||
468 | static struct regulator_ops regulator_ops_variable = { | ||
469 | .enable = ab3100_enable_regulator, | ||
470 | .disable = ab3100_disable_regulator, | ||
471 | .is_enabled = ab3100_is_enabled_regulator, | ||
472 | .get_voltage = ab3100_get_voltage_regulator, | ||
473 | .set_voltage = ab3100_set_voltage_regulator, | ||
474 | .list_voltage = ab3100_list_voltage_regulator, | ||
475 | }; | ||
476 | |||
477 | static struct regulator_ops regulator_ops_variable_sleepable = { | ||
478 | .enable = ab3100_enable_regulator, | ||
479 | .disable = ab3100_disable_regulator, | ||
480 | .is_enabled = ab3100_is_enabled_regulator, | ||
481 | .get_voltage = ab3100_get_voltage_regulator, | ||
482 | .set_voltage = ab3100_set_voltage_regulator, | ||
483 | .set_suspend_voltage = ab3100_set_suspend_voltage_regulator, | ||
484 | .list_voltage = ab3100_list_voltage_regulator, | ||
485 | }; | ||
486 | |||
487 | /* | ||
488 | * LDO EXT is an external regulator so it is really | ||
489 | * not possible to set any voltage locally here, AB3100 | ||
490 | * is an on/off switch plain an simple. The external | ||
491 | * voltage is defined in the board set-up if any. | ||
492 | */ | ||
493 | static struct regulator_ops regulator_ops_external = { | ||
494 | .enable = ab3100_enable_regulator, | ||
495 | .disable = ab3100_disable_regulator, | ||
496 | .is_enabled = ab3100_is_enabled_regulator, | ||
497 | .get_voltage = ab3100_get_voltage_regulator_external, | ||
498 | }; | ||
499 | |||
500 | static struct regulator_desc | ||
501 | ab3100_regulator_desc[AB3100_NUM_REGULATORS] = { | ||
502 | { | ||
503 | .name = "LDO_A", | ||
504 | .id = AB3100_LDO_A, | ||
505 | .ops = ®ulator_ops_fixed, | ||
506 | .type = REGULATOR_VOLTAGE, | ||
507 | }, | ||
508 | { | ||
509 | .name = "LDO_C", | ||
510 | .id = AB3100_LDO_C, | ||
511 | .ops = ®ulator_ops_fixed, | ||
512 | .type = REGULATOR_VOLTAGE, | ||
513 | }, | ||
514 | { | ||
515 | .name = "LDO_D", | ||
516 | .id = AB3100_LDO_D, | ||
517 | .ops = ®ulator_ops_fixed, | ||
518 | .type = REGULATOR_VOLTAGE, | ||
519 | }, | ||
520 | { | ||
521 | .name = "LDO_E", | ||
522 | .id = AB3100_LDO_E, | ||
523 | .ops = ®ulator_ops_variable_sleepable, | ||
524 | .n_voltages = ARRAY_SIZE(ldo_e_buck_typ_voltages), | ||
525 | .type = REGULATOR_VOLTAGE, | ||
526 | }, | ||
527 | { | ||
528 | .name = "LDO_F", | ||
529 | .id = AB3100_LDO_F, | ||
530 | .ops = ®ulator_ops_variable, | ||
531 | .n_voltages = ARRAY_SIZE(ldo_f_typ_voltages), | ||
532 | .type = REGULATOR_VOLTAGE, | ||
533 | }, | ||
534 | { | ||
535 | .name = "LDO_G", | ||
536 | .id = AB3100_LDO_G, | ||
537 | .ops = ®ulator_ops_variable, | ||
538 | .n_voltages = ARRAY_SIZE(ldo_g_typ_voltages), | ||
539 | .type = REGULATOR_VOLTAGE, | ||
540 | }, | ||
541 | { | ||
542 | .name = "LDO_H", | ||
543 | .id = AB3100_LDO_H, | ||
544 | .ops = ®ulator_ops_variable, | ||
545 | .n_voltages = ARRAY_SIZE(ldo_h_typ_voltages), | ||
546 | .type = REGULATOR_VOLTAGE, | ||
547 | }, | ||
548 | { | ||
549 | .name = "LDO_K", | ||
550 | .id = AB3100_LDO_K, | ||
551 | .ops = ®ulator_ops_variable, | ||
552 | .n_voltages = ARRAY_SIZE(ldo_k_typ_voltages), | ||
553 | .type = REGULATOR_VOLTAGE, | ||
554 | }, | ||
555 | { | ||
556 | .name = "LDO_EXT", | ||
557 | .id = AB3100_LDO_EXT, | ||
558 | .ops = ®ulator_ops_external, | ||
559 | .type = REGULATOR_VOLTAGE, | ||
560 | }, | ||
561 | { | ||
562 | .name = "BUCK", | ||
563 | .id = AB3100_BUCK, | ||
564 | .ops = ®ulator_ops_variable_sleepable, | ||
565 | .n_voltages = ARRAY_SIZE(ldo_e_buck_typ_voltages), | ||
566 | .type = REGULATOR_VOLTAGE, | ||
567 | }, | ||
568 | }; | ||
569 | |||
570 | /* | ||
571 | * NOTE: the following functions are regulators pluralis - it is the | ||
572 | * binding to the AB3100 core driver and the parent platform device | ||
573 | * for all the different regulators. | ||
574 | */ | ||
575 | |||
576 | static int __init ab3100_regulators_probe(struct platform_device *pdev) | ||
577 | { | ||
578 | struct ab3100_platform_data *plfdata = pdev->dev.platform_data; | ||
579 | struct ab3100 *ab3100 = platform_get_drvdata(pdev); | ||
580 | int err = 0; | ||
581 | u8 data; | ||
582 | int i; | ||
583 | |||
584 | /* Check chip state */ | ||
585 | err = ab3100_get_register_interruptible(ab3100, | ||
586 | AB3100_LDO_D, &data); | ||
587 | if (err) { | ||
588 | dev_err(&pdev->dev, "could not read initial status of LDO_D\n"); | ||
589 | return err; | ||
590 | } | ||
591 | if (data & 0x10) | ||
592 | dev_notice(&pdev->dev, | ||
593 | "chip is already in active mode (Warm start)\n"); | ||
594 | else | ||
595 | dev_notice(&pdev->dev, | ||
596 | "chip is in inactive mode (Cold start)\n"); | ||
597 | |||
598 | /* Set up regulators */ | ||
599 | for (i = 0; i < ARRAY_SIZE(ab3100_reg_init_order); i++) { | ||
600 | err = ab3100_set_register_interruptible(ab3100, | ||
601 | ab3100_reg_init_order[i], | ||
602 | plfdata->reg_initvals[i]); | ||
603 | if (err) { | ||
604 | dev_err(&pdev->dev, "regulator initialization failed with error %d\n", | ||
605 | err); | ||
606 | return err; | ||
607 | } | ||
608 | } | ||
609 | |||
610 | if (err) { | ||
611 | dev_err(&pdev->dev, | ||
612 | "LDO D regulator initialization failed with error %d\n", | ||
613 | err); | ||
614 | return err; | ||
615 | } | ||
616 | |||
617 | /* Register the regulators */ | ||
618 | for (i = 0; i < AB3100_NUM_REGULATORS; i++) { | ||
619 | struct ab3100_regulator *reg = &ab3100_regulators[i]; | ||
620 | struct regulator_dev *rdev; | ||
621 | |||
622 | /* | ||
623 | * Initialize per-regulator struct. | ||
624 | * Inherit platform data, this comes down from the | ||
625 | * i2c boarddata, from the machine. So if you want to | ||
626 | * see what it looks like for a certain machine, go | ||
627 | * into the machine I2C setup. | ||
628 | */ | ||
629 | reg->ab3100 = ab3100; | ||
630 | reg->plfdata = plfdata; | ||
631 | |||
632 | /* | ||
633 | * Register the regulator, pass around | ||
634 | * the ab3100_regulator struct | ||
635 | */ | ||
636 | rdev = regulator_register(&ab3100_regulator_desc[i], | ||
637 | &pdev->dev, | ||
638 | &plfdata->reg_constraints[i], | ||
639 | reg); | ||
640 | |||
641 | if (IS_ERR(rdev)) { | ||
642 | err = PTR_ERR(rdev); | ||
643 | dev_err(&pdev->dev, | ||
644 | "%s: failed to register regulator %s err %d\n", | ||
645 | __func__, ab3100_regulator_desc[i].name, | ||
646 | err); | ||
647 | i--; | ||
648 | /* remove the already registered regulators */ | ||
649 | while (i > 0) { | ||
650 | regulator_unregister(ab3100_regulators[i].rdev); | ||
651 | i--; | ||
652 | } | ||
653 | return err; | ||
654 | } | ||
655 | |||
656 | /* Then set a pointer back to the registered regulator */ | ||
657 | reg->rdev = rdev; | ||
658 | } | ||
659 | |||
660 | return 0; | ||
661 | } | ||
662 | |||
663 | static int __exit ab3100_regulators_remove(struct platform_device *pdev) | ||
664 | { | ||
665 | int i; | ||
666 | |||
667 | for (i = 0; i < AB3100_NUM_REGULATORS; i++) { | ||
668 | struct ab3100_regulator *reg = &ab3100_regulators[i]; | ||
669 | |||
670 | regulator_unregister(reg->rdev); | ||
671 | } | ||
672 | return 0; | ||
673 | } | ||
674 | |||
675 | static struct platform_driver ab3100_regulators_driver = { | ||
676 | .driver = { | ||
677 | .name = "ab3100-regulators", | ||
678 | .owner = THIS_MODULE, | ||
679 | }, | ||
680 | .probe = ab3100_regulators_probe, | ||
681 | .remove = __exit_p(ab3100_regulators_remove), | ||
682 | }; | ||
683 | |||
684 | static __init int ab3100_regulators_init(void) | ||
685 | { | ||
686 | return platform_driver_register(&ab3100_regulators_driver); | ||
687 | } | ||
688 | |||
689 | static __exit void ab3100_regulators_exit(void) | ||
690 | { | ||
691 | platform_driver_register(&ab3100_regulators_driver); | ||
692 | } | ||
693 | |||
694 | subsys_initcall(ab3100_regulators_init); | ||
695 | module_exit(ab3100_regulators_exit); | ||
696 | |||
697 | MODULE_AUTHOR("Mattias Wallin <mattias.wallin@stericsson.com>"); | ||
698 | MODULE_DESCRIPTION("AB3100 Regulator driver"); | ||
699 | MODULE_LICENSE("GPL"); | ||
700 | MODULE_ALIAS("platform:ab3100-regulators"); | ||
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index 98c3a74e9949..91ba9bfaa706 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c | |||
@@ -1864,6 +1864,30 @@ int regulator_notifier_call_chain(struct regulator_dev *rdev, | |||
1864 | } | 1864 | } |
1865 | EXPORT_SYMBOL_GPL(regulator_notifier_call_chain); | 1865 | EXPORT_SYMBOL_GPL(regulator_notifier_call_chain); |
1866 | 1866 | ||
1867 | /** | ||
1868 | * regulator_mode_to_status - convert a regulator mode into a status | ||
1869 | * | ||
1870 | * @mode: Mode to convert | ||
1871 | * | ||
1872 | * Convert a regulator mode into a status. | ||
1873 | */ | ||
1874 | int regulator_mode_to_status(unsigned int mode) | ||
1875 | { | ||
1876 | switch (mode) { | ||
1877 | case REGULATOR_MODE_FAST: | ||
1878 | return REGULATOR_STATUS_FAST; | ||
1879 | case REGULATOR_MODE_NORMAL: | ||
1880 | return REGULATOR_STATUS_NORMAL; | ||
1881 | case REGULATOR_MODE_IDLE: | ||
1882 | return REGULATOR_STATUS_IDLE; | ||
1883 | case REGULATOR_STATUS_STANDBY: | ||
1884 | return REGULATOR_STATUS_STANDBY; | ||
1885 | default: | ||
1886 | return 0; | ||
1887 | } | ||
1888 | } | ||
1889 | EXPORT_SYMBOL_GPL(regulator_mode_to_status); | ||
1890 | |||
1867 | /* | 1891 | /* |
1868 | * To avoid cluttering sysfs (and memory) with useless state, only | 1892 | * To avoid cluttering sysfs (and memory) with useless state, only |
1869 | * create attributes that can be meaningfully displayed. | 1893 | * create attributes that can be meaningfully displayed. |
diff --git a/drivers/regulator/mc13783.c b/drivers/regulator/mc13783.c new file mode 100644 index 000000000000..710211f67449 --- /dev/null +++ b/drivers/regulator/mc13783.c | |||
@@ -0,0 +1,410 @@ | |||
1 | /* | ||
2 | * Regulator Driver for Freescale MC13783 PMIC | ||
3 | * | ||
4 | * Copyright (C) 2008 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de> | ||
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 | |||
11 | #include <linux/mfd/mc13783-private.h> | ||
12 | #include <linux/regulator/machine.h> | ||
13 | #include <linux/regulator/driver.h> | ||
14 | #include <linux/platform_device.h> | ||
15 | #include <linux/mfd/mc13783.h> | ||
16 | #include <linux/kernel.h> | ||
17 | #include <linux/init.h> | ||
18 | #include <linux/err.h> | ||
19 | |||
20 | struct mc13783_regulator { | ||
21 | struct regulator_desc desc; | ||
22 | int reg; | ||
23 | int enable_bit; | ||
24 | }; | ||
25 | |||
26 | static struct regulator_ops mc13783_regulator_ops; | ||
27 | |||
28 | static struct mc13783_regulator mc13783_regulators[] = { | ||
29 | [MC13783_SW_SW3] = { | ||
30 | .desc = { | ||
31 | .name = "SW_SW3", | ||
32 | .ops = &mc13783_regulator_ops, | ||
33 | .type = REGULATOR_VOLTAGE, | ||
34 | .id = MC13783_SW_SW3, | ||
35 | .owner = THIS_MODULE, | ||
36 | }, | ||
37 | .reg = MC13783_REG_SWITCHERS_5, | ||
38 | .enable_bit = MC13783_SWCTRL_SW3_EN, | ||
39 | }, | ||
40 | [MC13783_SW_PLL] = { | ||
41 | .desc = { | ||
42 | .name = "SW_PLL", | ||
43 | .ops = &mc13783_regulator_ops, | ||
44 | .type = REGULATOR_VOLTAGE, | ||
45 | .id = MC13783_SW_PLL, | ||
46 | .owner = THIS_MODULE, | ||
47 | }, | ||
48 | .reg = MC13783_REG_SWITCHERS_4, | ||
49 | .enable_bit = MC13783_SWCTRL_PLL_EN, | ||
50 | }, | ||
51 | [MC13783_REGU_VAUDIO] = { | ||
52 | .desc = { | ||
53 | .name = "REGU_VAUDIO", | ||
54 | .ops = &mc13783_regulator_ops, | ||
55 | .type = REGULATOR_VOLTAGE, | ||
56 | .id = MC13783_REGU_VAUDIO, | ||
57 | .owner = THIS_MODULE, | ||
58 | }, | ||
59 | .reg = MC13783_REG_REGULATOR_MODE_0, | ||
60 | .enable_bit = MC13783_REGCTRL_VAUDIO_EN, | ||
61 | }, | ||
62 | [MC13783_REGU_VIOHI] = { | ||
63 | .desc = { | ||
64 | .name = "REGU_VIOHI", | ||
65 | .ops = &mc13783_regulator_ops, | ||
66 | .type = REGULATOR_VOLTAGE, | ||
67 | .id = MC13783_REGU_VIOHI, | ||
68 | .owner = THIS_MODULE, | ||
69 | }, | ||
70 | .reg = MC13783_REG_REGULATOR_MODE_0, | ||
71 | .enable_bit = MC13783_REGCTRL_VIOHI_EN, | ||
72 | }, | ||
73 | [MC13783_REGU_VIOLO] = { | ||
74 | .desc = { | ||
75 | .name = "REGU_VIOLO", | ||
76 | .ops = &mc13783_regulator_ops, | ||
77 | .type = REGULATOR_VOLTAGE, | ||
78 | .id = MC13783_REGU_VIOLO, | ||
79 | .owner = THIS_MODULE, | ||
80 | }, | ||
81 | .reg = MC13783_REG_REGULATOR_MODE_0, | ||
82 | .enable_bit = MC13783_REGCTRL_VIOLO_EN, | ||
83 | }, | ||
84 | [MC13783_REGU_VDIG] = { | ||
85 | .desc = { | ||
86 | .name = "REGU_VDIG", | ||
87 | .ops = &mc13783_regulator_ops, | ||
88 | .type = REGULATOR_VOLTAGE, | ||
89 | .id = MC13783_REGU_VDIG, | ||
90 | .owner = THIS_MODULE, | ||
91 | }, | ||
92 | .reg = MC13783_REG_REGULATOR_MODE_0, | ||
93 | .enable_bit = MC13783_REGCTRL_VDIG_EN, | ||
94 | }, | ||
95 | [MC13783_REGU_VGEN] = { | ||
96 | .desc = { | ||
97 | .name = "REGU_VGEN", | ||
98 | .ops = &mc13783_regulator_ops, | ||
99 | .type = REGULATOR_VOLTAGE, | ||
100 | .id = MC13783_REGU_VGEN, | ||
101 | .owner = THIS_MODULE, | ||
102 | }, | ||
103 | .reg = MC13783_REG_REGULATOR_MODE_0, | ||
104 | .enable_bit = MC13783_REGCTRL_VGEN_EN, | ||
105 | }, | ||
106 | [MC13783_REGU_VRFDIG] = { | ||
107 | .desc = { | ||
108 | .name = "REGU_VRFDIG", | ||
109 | .ops = &mc13783_regulator_ops, | ||
110 | .type = REGULATOR_VOLTAGE, | ||
111 | .id = MC13783_REGU_VRFDIG, | ||
112 | .owner = THIS_MODULE, | ||
113 | }, | ||
114 | .reg = MC13783_REG_REGULATOR_MODE_0, | ||
115 | .enable_bit = MC13783_REGCTRL_VRFDIG_EN, | ||
116 | }, | ||
117 | [MC13783_REGU_VRFREF] = { | ||
118 | .desc = { | ||
119 | .name = "REGU_VRFREF", | ||
120 | .ops = &mc13783_regulator_ops, | ||
121 | .type = REGULATOR_VOLTAGE, | ||
122 | .id = MC13783_REGU_VRFREF, | ||
123 | .owner = THIS_MODULE, | ||
124 | }, | ||
125 | .reg = MC13783_REG_REGULATOR_MODE_0, | ||
126 | .enable_bit = MC13783_REGCTRL_VRFREF_EN, | ||
127 | }, | ||
128 | [MC13783_REGU_VRFCP] = { | ||
129 | .desc = { | ||
130 | .name = "REGU_VRFCP", | ||
131 | .ops = &mc13783_regulator_ops, | ||
132 | .type = REGULATOR_VOLTAGE, | ||
133 | .id = MC13783_REGU_VRFCP, | ||
134 | .owner = THIS_MODULE, | ||
135 | }, | ||
136 | .reg = MC13783_REG_REGULATOR_MODE_0, | ||
137 | .enable_bit = MC13783_REGCTRL_VRFCP_EN, | ||
138 | }, | ||
139 | [MC13783_REGU_VSIM] = { | ||
140 | .desc = { | ||
141 | .name = "REGU_VSIM", | ||
142 | .ops = &mc13783_regulator_ops, | ||
143 | .type = REGULATOR_VOLTAGE, | ||
144 | .id = MC13783_REGU_VSIM, | ||
145 | .owner = THIS_MODULE, | ||
146 | }, | ||
147 | .reg = MC13783_REG_REGULATOR_MODE_1, | ||
148 | .enable_bit = MC13783_REGCTRL_VSIM_EN, | ||
149 | }, | ||
150 | [MC13783_REGU_VESIM] = { | ||
151 | .desc = { | ||
152 | .name = "REGU_VESIM", | ||
153 | .ops = &mc13783_regulator_ops, | ||
154 | .type = REGULATOR_VOLTAGE, | ||
155 | .id = MC13783_REGU_VESIM, | ||
156 | .owner = THIS_MODULE, | ||
157 | }, | ||
158 | .reg = MC13783_REG_REGULATOR_MODE_1, | ||
159 | .enable_bit = MC13783_REGCTRL_VESIM_EN, | ||
160 | }, | ||
161 | [MC13783_REGU_VCAM] = { | ||
162 | .desc = { | ||
163 | .name = "REGU_VCAM", | ||
164 | .ops = &mc13783_regulator_ops, | ||
165 | .type = REGULATOR_VOLTAGE, | ||
166 | .id = MC13783_REGU_VCAM, | ||
167 | .owner = THIS_MODULE, | ||
168 | }, | ||
169 | .reg = MC13783_REG_REGULATOR_MODE_1, | ||
170 | .enable_bit = MC13783_REGCTRL_VCAM_EN, | ||
171 | }, | ||
172 | [MC13783_REGU_VRFBG] = { | ||
173 | .desc = { | ||
174 | .name = "REGU_VRFBG", | ||
175 | .ops = &mc13783_regulator_ops, | ||
176 | .type = REGULATOR_VOLTAGE, | ||
177 | .id = MC13783_REGU_VRFBG, | ||
178 | .owner = THIS_MODULE, | ||
179 | }, | ||
180 | .reg = MC13783_REG_REGULATOR_MODE_1, | ||
181 | .enable_bit = MC13783_REGCTRL_VRFBG_EN, | ||
182 | }, | ||
183 | [MC13783_REGU_VVIB] = { | ||
184 | .desc = { | ||
185 | .name = "REGU_VVIB", | ||
186 | .ops = &mc13783_regulator_ops, | ||
187 | .type = REGULATOR_VOLTAGE, | ||
188 | .id = MC13783_REGU_VVIB, | ||
189 | .owner = THIS_MODULE, | ||
190 | }, | ||
191 | .reg = MC13783_REG_REGULATOR_MODE_1, | ||
192 | .enable_bit = MC13783_REGCTRL_VVIB_EN, | ||
193 | }, | ||
194 | [MC13783_REGU_VRF1] = { | ||
195 | .desc = { | ||
196 | .name = "REGU_VRF1", | ||
197 | .ops = &mc13783_regulator_ops, | ||
198 | .type = REGULATOR_VOLTAGE, | ||
199 | .id = MC13783_REGU_VRF1, | ||
200 | .owner = THIS_MODULE, | ||
201 | }, | ||
202 | .reg = MC13783_REG_REGULATOR_MODE_1, | ||
203 | .enable_bit = MC13783_REGCTRL_VRF1_EN, | ||
204 | }, | ||
205 | [MC13783_REGU_VRF2] = { | ||
206 | .desc = { | ||
207 | .name = "REGU_VRF2", | ||
208 | .ops = &mc13783_regulator_ops, | ||
209 | .type = REGULATOR_VOLTAGE, | ||
210 | .id = MC13783_REGU_VRF2, | ||
211 | .owner = THIS_MODULE, | ||
212 | }, | ||
213 | .reg = MC13783_REG_REGULATOR_MODE_1, | ||
214 | .enable_bit = MC13783_REGCTRL_VRF2_EN, | ||
215 | }, | ||
216 | [MC13783_REGU_VMMC1] = { | ||
217 | .desc = { | ||
218 | .name = "REGU_VMMC1", | ||
219 | .ops = &mc13783_regulator_ops, | ||
220 | .type = REGULATOR_VOLTAGE, | ||
221 | .id = MC13783_REGU_VMMC1, | ||
222 | .owner = THIS_MODULE, | ||
223 | }, | ||
224 | .reg = MC13783_REG_REGULATOR_MODE_1, | ||
225 | .enable_bit = MC13783_REGCTRL_VMMC1_EN, | ||
226 | }, | ||
227 | [MC13783_REGU_VMMC2] = { | ||
228 | .desc = { | ||
229 | .name = "REGU_VMMC2", | ||
230 | .ops = &mc13783_regulator_ops, | ||
231 | .type = REGULATOR_VOLTAGE, | ||
232 | .id = MC13783_REGU_VMMC2, | ||
233 | .owner = THIS_MODULE, | ||
234 | }, | ||
235 | .reg = MC13783_REG_REGULATOR_MODE_1, | ||
236 | .enable_bit = MC13783_REGCTRL_VMMC2_EN, | ||
237 | }, | ||
238 | [MC13783_REGU_GPO1] = { | ||
239 | .desc = { | ||
240 | .name = "REGU_GPO1", | ||
241 | .ops = &mc13783_regulator_ops, | ||
242 | .type = REGULATOR_VOLTAGE, | ||
243 | .id = MC13783_REGU_GPO1, | ||
244 | .owner = THIS_MODULE, | ||
245 | }, | ||
246 | .reg = MC13783_REG_POWER_MISCELLANEOUS, | ||
247 | .enable_bit = MC13783_REGCTRL_GPO1_EN, | ||
248 | }, | ||
249 | [MC13783_REGU_GPO2] = { | ||
250 | .desc = { | ||
251 | .name = "REGU_GPO2", | ||
252 | .ops = &mc13783_regulator_ops, | ||
253 | .type = REGULATOR_VOLTAGE, | ||
254 | .id = MC13783_REGU_GPO2, | ||
255 | .owner = THIS_MODULE, | ||
256 | }, | ||
257 | .reg = MC13783_REG_POWER_MISCELLANEOUS, | ||
258 | .enable_bit = MC13783_REGCTRL_GPO2_EN, | ||
259 | }, | ||
260 | [MC13783_REGU_GPO3] = { | ||
261 | .desc = { | ||
262 | .name = "REGU_GPO3", | ||
263 | .ops = &mc13783_regulator_ops, | ||
264 | .type = REGULATOR_VOLTAGE, | ||
265 | .id = MC13783_REGU_GPO3, | ||
266 | .owner = THIS_MODULE, | ||
267 | }, | ||
268 | .reg = MC13783_REG_POWER_MISCELLANEOUS, | ||
269 | .enable_bit = MC13783_REGCTRL_GPO3_EN, | ||
270 | }, | ||
271 | [MC13783_REGU_GPO4] = { | ||
272 | .desc = { | ||
273 | .name = "REGU_GPO4", | ||
274 | .ops = &mc13783_regulator_ops, | ||
275 | .type = REGULATOR_VOLTAGE, | ||
276 | .id = MC13783_REGU_GPO4, | ||
277 | .owner = THIS_MODULE, | ||
278 | }, | ||
279 | .reg = MC13783_REG_POWER_MISCELLANEOUS, | ||
280 | .enable_bit = MC13783_REGCTRL_GPO4_EN, | ||
281 | }, | ||
282 | }; | ||
283 | |||
284 | struct mc13783_priv { | ||
285 | struct regulator_desc desc[ARRAY_SIZE(mc13783_regulators)]; | ||
286 | struct mc13783 *mc13783; | ||
287 | struct regulator_dev *regulators[0]; | ||
288 | }; | ||
289 | |||
290 | static int mc13783_enable(struct regulator_dev *rdev) | ||
291 | { | ||
292 | struct mc13783_priv *priv = rdev_get_drvdata(rdev); | ||
293 | int id = rdev_get_id(rdev); | ||
294 | |||
295 | dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id); | ||
296 | |||
297 | return mc13783_set_bits(priv->mc13783, mc13783_regulators[id].reg, | ||
298 | mc13783_regulators[id].enable_bit, | ||
299 | mc13783_regulators[id].enable_bit); | ||
300 | } | ||
301 | |||
302 | static int mc13783_disable(struct regulator_dev *rdev) | ||
303 | { | ||
304 | struct mc13783_priv *priv = rdev_get_drvdata(rdev); | ||
305 | int id = rdev_get_id(rdev); | ||
306 | |||
307 | dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id); | ||
308 | |||
309 | return mc13783_set_bits(priv->mc13783, mc13783_regulators[id].reg, | ||
310 | mc13783_regulators[id].enable_bit, 0); | ||
311 | } | ||
312 | |||
313 | static int mc13783_is_enabled(struct regulator_dev *rdev) | ||
314 | { | ||
315 | struct mc13783_priv *priv = rdev_get_drvdata(rdev); | ||
316 | int ret, id = rdev_get_id(rdev); | ||
317 | unsigned int val; | ||
318 | |||
319 | ret = mc13783_reg_read(priv->mc13783, mc13783_regulators[id].reg, &val); | ||
320 | if (ret) | ||
321 | return ret; | ||
322 | |||
323 | return (val & mc13783_regulators[id].enable_bit) != 0; | ||
324 | } | ||
325 | |||
326 | static struct regulator_ops mc13783_regulator_ops = { | ||
327 | .enable = mc13783_enable, | ||
328 | .disable = mc13783_disable, | ||
329 | .is_enabled = mc13783_is_enabled, | ||
330 | }; | ||
331 | |||
332 | static int __devinit mc13783_regulator_probe(struct platform_device *pdev) | ||
333 | { | ||
334 | struct mc13783_priv *priv; | ||
335 | struct mc13783 *mc13783 = dev_get_drvdata(pdev->dev.parent); | ||
336 | struct mc13783_regulator_init_data *init_data; | ||
337 | int i, ret; | ||
338 | |||
339 | dev_dbg(&pdev->dev, "mc13783_regulator_probe id %d\n", pdev->id); | ||
340 | |||
341 | priv = kzalloc(sizeof(*priv) + mc13783->num_regulators * sizeof(void *), | ||
342 | GFP_KERNEL); | ||
343 | if (!priv) | ||
344 | return -ENOMEM; | ||
345 | |||
346 | priv->mc13783 = mc13783; | ||
347 | |||
348 | for (i = 0; i < mc13783->num_regulators; i++) { | ||
349 | init_data = &mc13783->regulators[i]; | ||
350 | priv->regulators[i] = regulator_register( | ||
351 | &mc13783_regulators[init_data->id].desc, | ||
352 | &pdev->dev, init_data->init_data, priv); | ||
353 | |||
354 | if (IS_ERR(priv->regulators[i])) { | ||
355 | dev_err(&pdev->dev, "failed to register regulator %s\n", | ||
356 | mc13783_regulators[i].desc.name); | ||
357 | ret = PTR_ERR(priv->regulators[i]); | ||
358 | goto err; | ||
359 | } | ||
360 | } | ||
361 | |||
362 | platform_set_drvdata(pdev, priv); | ||
363 | |||
364 | return 0; | ||
365 | err: | ||
366 | while (--i >= 0) | ||
367 | regulator_unregister(priv->regulators[i]); | ||
368 | |||
369 | kfree(priv); | ||
370 | |||
371 | return ret; | ||
372 | } | ||
373 | |||
374 | static int __devexit mc13783_regulator_remove(struct platform_device *pdev) | ||
375 | { | ||
376 | struct mc13783_priv *priv = platform_get_drvdata(pdev); | ||
377 | struct mc13783 *mc13783 = priv->mc13783; | ||
378 | int i; | ||
379 | |||
380 | for (i = 0; i < mc13783->num_regulators; i++) | ||
381 | regulator_unregister(priv->regulators[i]); | ||
382 | |||
383 | return 0; | ||
384 | } | ||
385 | |||
386 | static struct platform_driver mc13783_regulator_driver = { | ||
387 | .driver = { | ||
388 | .name = "mc13783-regulator", | ||
389 | .owner = THIS_MODULE, | ||
390 | }, | ||
391 | .remove = __devexit_p(mc13783_regulator_remove), | ||
392 | }; | ||
393 | |||
394 | static int __init mc13783_regulator_init(void) | ||
395 | { | ||
396 | return platform_driver_probe(&mc13783_regulator_driver, | ||
397 | mc13783_regulator_probe); | ||
398 | } | ||
399 | subsys_initcall(mc13783_regulator_init); | ||
400 | |||
401 | static void __exit mc13783_regulator_exit(void) | ||
402 | { | ||
403 | platform_driver_unregister(&mc13783_regulator_driver); | ||
404 | } | ||
405 | module_exit(mc13783_regulator_exit); | ||
406 | |||
407 | MODULE_LICENSE("GPL"); | ||
408 | MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de"); | ||
409 | MODULE_DESCRIPTION("Regulator Driver for Freescale MC13783 PMIC"); | ||
410 | MODULE_ALIAS("platform:mc13783-regulator"); | ||
diff --git a/drivers/regulator/pcap-regulator.c b/drivers/regulator/pcap-regulator.c new file mode 100644 index 000000000000..33d7d899e030 --- /dev/null +++ b/drivers/regulator/pcap-regulator.c | |||
@@ -0,0 +1,318 @@ | |||
1 | /* | ||
2 | * PCAP2 Regulator Driver | ||
3 | * | ||
4 | * Copyright (c) 2009 Daniel Ribeiro <drwyrm@gmail.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the | ||
8 | * Free Software Foundation; either version 2 of the License, or (at your | ||
9 | * option) any later version. | ||
10 | */ | ||
11 | |||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/module.h> | ||
14 | #include <linux/init.h> | ||
15 | #include <linux/err.h> | ||
16 | #include <linux/platform_device.h> | ||
17 | #include <linux/regulator/driver.h> | ||
18 | #include <linux/regulator/machine.h> | ||
19 | #include <linux/mfd/ezx-pcap.h> | ||
20 | |||
21 | static const u16 V1_table[] = { | ||
22 | 2775, 1275, 1600, 1725, 1825, 1925, 2075, 2275, | ||
23 | }; | ||
24 | |||
25 | static const u16 V2_table[] = { | ||
26 | 2500, 2775, | ||
27 | }; | ||
28 | |||
29 | static const u16 V3_table[] = { | ||
30 | 1075, 1275, 1550, 1725, 1876, 1950, 2075, 2275, | ||
31 | }; | ||
32 | |||
33 | static const u16 V4_table[] = { | ||
34 | 1275, 1550, 1725, 1875, 1950, 2075, 2275, 2775, | ||
35 | }; | ||
36 | |||
37 | static const u16 V5_table[] = { | ||
38 | 1875, 2275, 2475, 2775, | ||
39 | }; | ||
40 | |||
41 | static const u16 V6_table[] = { | ||
42 | 2475, 2775, | ||
43 | }; | ||
44 | |||
45 | static const u16 V7_table[] = { | ||
46 | 1875, 2775, | ||
47 | }; | ||
48 | |||
49 | #define V8_table V4_table | ||
50 | |||
51 | static const u16 V9_table[] = { | ||
52 | 1575, 1875, 2475, 2775, | ||
53 | }; | ||
54 | |||
55 | static const u16 V10_table[] = { | ||
56 | 5000, | ||
57 | }; | ||
58 | |||
59 | static const u16 VAUX1_table[] = { | ||
60 | 1875, 2475, 2775, 3000, | ||
61 | }; | ||
62 | |||
63 | #define VAUX2_table VAUX1_table | ||
64 | |||
65 | static const u16 VAUX3_table[] = { | ||
66 | 1200, 1200, 1200, 1200, 1400, 1600, 1800, 2000, | ||
67 | 2200, 2400, 2600, 2800, 3000, 3200, 3400, 3600, | ||
68 | }; | ||
69 | |||
70 | static const u16 VAUX4_table[] = { | ||
71 | 1800, 1800, 3000, 5000, | ||
72 | }; | ||
73 | |||
74 | static const u16 VSIM_table[] = { | ||
75 | 1875, 3000, | ||
76 | }; | ||
77 | |||
78 | static const u16 VSIM2_table[] = { | ||
79 | 1875, | ||
80 | }; | ||
81 | |||
82 | static const u16 VVIB_table[] = { | ||
83 | 1300, 1800, 2000, 3000, | ||
84 | }; | ||
85 | |||
86 | static const u16 SW1_table[] = { | ||
87 | 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, | ||
88 | 1300, 1350, 1400, 1450, 1500, 1600, 1875, 2250, | ||
89 | }; | ||
90 | |||
91 | #define SW2_table SW1_table | ||
92 | |||
93 | static const u16 SW3_table[] = { | ||
94 | 4000, 4500, 5000, 5500, | ||
95 | }; | ||
96 | |||
97 | struct pcap_regulator { | ||
98 | const u8 reg; | ||
99 | const u8 en; | ||
100 | const u8 index; | ||
101 | const u8 stby; | ||
102 | const u8 lowpwr; | ||
103 | const u8 n_voltages; | ||
104 | const u16 *voltage_table; | ||
105 | }; | ||
106 | |||
107 | #define NA 0xff | ||
108 | |||
109 | #define VREG_INFO(_vreg, _reg, _en, _index, _stby, _lowpwr) \ | ||
110 | [_vreg] = { \ | ||
111 | .reg = _reg, \ | ||
112 | .en = _en, \ | ||
113 | .index = _index, \ | ||
114 | .stby = _stby, \ | ||
115 | .lowpwr = _lowpwr, \ | ||
116 | .n_voltages = ARRAY_SIZE(_vreg##_table), \ | ||
117 | .voltage_table = _vreg##_table, \ | ||
118 | } | ||
119 | |||
120 | static struct pcap_regulator vreg_table[] = { | ||
121 | VREG_INFO(V1, PCAP_REG_VREG1, 1, 2, 18, 0), | ||
122 | VREG_INFO(V2, PCAP_REG_VREG1, 5, 6, 19, 22), | ||
123 | VREG_INFO(V3, PCAP_REG_VREG1, 7, 8, 20, 23), | ||
124 | VREG_INFO(V4, PCAP_REG_VREG1, 11, 12, 21, 24), | ||
125 | /* V5 STBY and LOWPWR are on PCAP_REG_VREG2 */ | ||
126 | VREG_INFO(V5, PCAP_REG_VREG1, 15, 16, 12, 19), | ||
127 | |||
128 | VREG_INFO(V6, PCAP_REG_VREG2, 1, 2, 14, 20), | ||
129 | VREG_INFO(V7, PCAP_REG_VREG2, 3, 4, 15, 21), | ||
130 | VREG_INFO(V8, PCAP_REG_VREG2, 5, 6, 16, 22), | ||
131 | VREG_INFO(V9, PCAP_REG_VREG2, 9, 10, 17, 23), | ||
132 | VREG_INFO(V10, PCAP_REG_VREG2, 10, NA, 18, 24), | ||
133 | |||
134 | VREG_INFO(VAUX1, PCAP_REG_AUXVREG, 1, 2, 22, 23), | ||
135 | /* VAUX2 ... VSIM2 STBY and LOWPWR are on PCAP_REG_LOWPWR */ | ||
136 | VREG_INFO(VAUX2, PCAP_REG_AUXVREG, 4, 5, 0, 1), | ||
137 | VREG_INFO(VAUX3, PCAP_REG_AUXVREG, 7, 8, 2, 3), | ||
138 | VREG_INFO(VAUX4, PCAP_REG_AUXVREG, 12, 13, 4, 5), | ||
139 | VREG_INFO(VSIM, PCAP_REG_AUXVREG, 17, 18, NA, 6), | ||
140 | VREG_INFO(VSIM2, PCAP_REG_AUXVREG, 16, NA, NA, 7), | ||
141 | VREG_INFO(VVIB, PCAP_REG_AUXVREG, 19, 20, NA, NA), | ||
142 | |||
143 | VREG_INFO(SW1, PCAP_REG_SWCTRL, 1, 2, NA, NA), | ||
144 | VREG_INFO(SW2, PCAP_REG_SWCTRL, 6, 7, NA, NA), | ||
145 | /* SW3 STBY is on PCAP_REG_AUXVREG */ | ||
146 | VREG_INFO(SW3, PCAP_REG_SWCTRL, 11, 12, 24, NA), | ||
147 | |||
148 | /* SWxS used to control SWx voltage on standby */ | ||
149 | /* VREG_INFO(SW1S, PCAP_REG_LOWPWR, NA, 12, NA, NA), | ||
150 | VREG_INFO(SW2S, PCAP_REG_LOWPWR, NA, 20, NA, NA), */ | ||
151 | }; | ||
152 | |||
153 | static int pcap_regulator_set_voltage(struct regulator_dev *rdev, | ||
154 | int min_uV, int max_uV) | ||
155 | { | ||
156 | struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)]; | ||
157 | void *pcap = rdev_get_drvdata(rdev); | ||
158 | int uV; | ||
159 | u8 i; | ||
160 | |||
161 | /* the regulator doesn't support voltage switching */ | ||
162 | if (vreg->n_voltages == 1) | ||
163 | return -EINVAL; | ||
164 | |||
165 | for (i = 0; i < vreg->n_voltages; i++) { | ||
166 | /* For V1 the first is not the best match */ | ||
167 | if (i == 0 && rdev_get_id(rdev) == V1) | ||
168 | i = 1; | ||
169 | else if (i + 1 == vreg->n_voltages && rdev_get_id(rdev) == V1) | ||
170 | i = 0; | ||
171 | |||
172 | uV = vreg->voltage_table[i] * 1000; | ||
173 | if (min_uV <= uV && uV <= max_uV) | ||
174 | return ezx_pcap_set_bits(pcap, vreg->reg, | ||
175 | (vreg->n_voltages - 1) << vreg->index, | ||
176 | i << vreg->index); | ||
177 | |||
178 | if (i == 0 && rdev_get_id(rdev) == V1) | ||
179 | i = vreg->n_voltages - 1; | ||
180 | } | ||
181 | |||
182 | /* the requested voltage range is not supported by this regulator */ | ||
183 | return -EINVAL; | ||
184 | } | ||
185 | |||
186 | static int pcap_regulator_get_voltage(struct regulator_dev *rdev) | ||
187 | { | ||
188 | struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)]; | ||
189 | void *pcap = rdev_get_drvdata(rdev); | ||
190 | u32 tmp; | ||
191 | int mV; | ||
192 | |||
193 | if (vreg->n_voltages == 1) | ||
194 | return vreg->voltage_table[0] * 1000; | ||
195 | |||
196 | ezx_pcap_read(pcap, vreg->reg, &tmp); | ||
197 | tmp = ((tmp >> vreg->index) & (vreg->n_voltages - 1)); | ||
198 | mV = vreg->voltage_table[tmp]; | ||
199 | |||
200 | return mV * 1000; | ||
201 | } | ||
202 | |||
203 | static int pcap_regulator_enable(struct regulator_dev *rdev) | ||
204 | { | ||
205 | struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)]; | ||
206 | void *pcap = rdev_get_drvdata(rdev); | ||
207 | |||
208 | if (vreg->en == NA) | ||
209 | return -EINVAL; | ||
210 | |||
211 | return ezx_pcap_set_bits(pcap, vreg->reg, 1 << vreg->en, 1 << vreg->en); | ||
212 | } | ||
213 | |||
214 | static int pcap_regulator_disable(struct regulator_dev *rdev) | ||
215 | { | ||
216 | struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)]; | ||
217 | void *pcap = rdev_get_drvdata(rdev); | ||
218 | |||
219 | if (vreg->en == NA) | ||
220 | return -EINVAL; | ||
221 | |||
222 | return ezx_pcap_set_bits(pcap, vreg->reg, 1 << vreg->en, 0); | ||
223 | } | ||
224 | |||
225 | static int pcap_regulator_is_enabled(struct regulator_dev *rdev) | ||
226 | { | ||
227 | struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)]; | ||
228 | void *pcap = rdev_get_drvdata(rdev); | ||
229 | u32 tmp; | ||
230 | |||
231 | if (vreg->en == NA) | ||
232 | return -EINVAL; | ||
233 | |||
234 | ezx_pcap_read(pcap, vreg->reg, &tmp); | ||
235 | return (tmp >> vreg->en) & 1; | ||
236 | } | ||
237 | |||
238 | static int pcap_regulator_list_voltage(struct regulator_dev *rdev, | ||
239 | unsigned int index) | ||
240 | { | ||
241 | struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)]; | ||
242 | |||
243 | return vreg->voltage_table[index] * 1000; | ||
244 | } | ||
245 | |||
246 | static struct regulator_ops pcap_regulator_ops = { | ||
247 | .list_voltage = pcap_regulator_list_voltage, | ||
248 | .set_voltage = pcap_regulator_set_voltage, | ||
249 | .get_voltage = pcap_regulator_get_voltage, | ||
250 | .enable = pcap_regulator_enable, | ||
251 | .disable = pcap_regulator_disable, | ||
252 | .is_enabled = pcap_regulator_is_enabled, | ||
253 | }; | ||
254 | |||
255 | #define VREG(_vreg) \ | ||
256 | [_vreg] = { \ | ||
257 | .name = #_vreg, \ | ||
258 | .id = _vreg, \ | ||
259 | .n_voltages = ARRAY_SIZE(_vreg##_table), \ | ||
260 | .ops = &pcap_regulator_ops, \ | ||
261 | .type = REGULATOR_VOLTAGE, \ | ||
262 | .owner = THIS_MODULE, \ | ||
263 | } | ||
264 | |||
265 | static struct regulator_desc pcap_regulators[] = { | ||
266 | VREG(V1), VREG(V2), VREG(V3), VREG(V4), VREG(V5), VREG(V6), VREG(V7), | ||
267 | VREG(V8), VREG(V9), VREG(V10), VREG(VAUX1), VREG(VAUX2), VREG(VAUX3), | ||
268 | VREG(VAUX4), VREG(VSIM), VREG(VSIM2), VREG(VVIB), VREG(SW1), VREG(SW2), | ||
269 | }; | ||
270 | |||
271 | static int __devinit pcap_regulator_probe(struct platform_device *pdev) | ||
272 | { | ||
273 | struct regulator_dev *rdev; | ||
274 | void *pcap = dev_get_drvdata(pdev->dev.parent); | ||
275 | |||
276 | rdev = regulator_register(&pcap_regulators[pdev->id], &pdev->dev, | ||
277 | pdev->dev.platform_data, pcap); | ||
278 | if (IS_ERR(rdev)) | ||
279 | return PTR_ERR(rdev); | ||
280 | |||
281 | platform_set_drvdata(pdev, rdev); | ||
282 | |||
283 | return 0; | ||
284 | } | ||
285 | |||
286 | static int __devexit pcap_regulator_remove(struct platform_device *pdev) | ||
287 | { | ||
288 | struct regulator_dev *rdev = platform_get_drvdata(pdev); | ||
289 | |||
290 | regulator_unregister(rdev); | ||
291 | |||
292 | return 0; | ||
293 | } | ||
294 | |||
295 | static struct platform_driver pcap_regulator_driver = { | ||
296 | .driver = { | ||
297 | .name = "pcap-regulator", | ||
298 | }, | ||
299 | .probe = pcap_regulator_probe, | ||
300 | .remove = __devexit_p(pcap_regulator_remove), | ||
301 | }; | ||
302 | |||
303 | static int __init pcap_regulator_init(void) | ||
304 | { | ||
305 | return platform_driver_register(&pcap_regulator_driver); | ||
306 | } | ||
307 | |||
308 | static void __exit pcap_regulator_exit(void) | ||
309 | { | ||
310 | platform_driver_unregister(&pcap_regulator_driver); | ||
311 | } | ||
312 | |||
313 | subsys_initcall(pcap_regulator_init); | ||
314 | module_exit(pcap_regulator_exit); | ||
315 | |||
316 | MODULE_AUTHOR("Daniel Ribeiro <drwyrm@gmail.com>"); | ||
317 | MODULE_DESCRIPTION("PCAP2 Regulator Driver"); | ||
318 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/regulator/wm831x-dcdc.c b/drivers/regulator/wm831x-dcdc.c new file mode 100644 index 000000000000..2eefc1a0cf08 --- /dev/null +++ b/drivers/regulator/wm831x-dcdc.c | |||
@@ -0,0 +1,862 @@ | |||
1 | /* | ||
2 | * wm831x-dcdc.c -- DC-DC buck convertor driver for the WM831x series | ||
3 | * | ||
4 | * Copyright 2009 Wolfson Microelectronics PLC. | ||
5 | * | ||
6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/moduleparam.h> | ||
16 | #include <linux/init.h> | ||
17 | #include <linux/bitops.h> | ||
18 | #include <linux/err.h> | ||
19 | #include <linux/i2c.h> | ||
20 | #include <linux/platform_device.h> | ||
21 | #include <linux/regulator/driver.h> | ||
22 | |||
23 | #include <linux/mfd/wm831x/core.h> | ||
24 | #include <linux/mfd/wm831x/regulator.h> | ||
25 | #include <linux/mfd/wm831x/pdata.h> | ||
26 | |||
27 | #define WM831X_BUCKV_MAX_SELECTOR 0x68 | ||
28 | #define WM831X_BUCKP_MAX_SELECTOR 0x66 | ||
29 | |||
30 | #define WM831X_DCDC_MODE_FAST 0 | ||
31 | #define WM831X_DCDC_MODE_NORMAL 1 | ||
32 | #define WM831X_DCDC_MODE_IDLE 2 | ||
33 | #define WM831X_DCDC_MODE_STANDBY 3 | ||
34 | |||
35 | #define WM831X_DCDC_MAX_NAME 6 | ||
36 | |||
37 | /* Register offsets in control block */ | ||
38 | #define WM831X_DCDC_CONTROL_1 0 | ||
39 | #define WM831X_DCDC_CONTROL_2 1 | ||
40 | #define WM831X_DCDC_ON_CONFIG 2 | ||
41 | #define WM831X_DCDC_SLEEP_CONTROL 3 | ||
42 | |||
43 | /* | ||
44 | * Shared | ||
45 | */ | ||
46 | |||
47 | struct wm831x_dcdc { | ||
48 | char name[WM831X_DCDC_MAX_NAME]; | ||
49 | struct regulator_desc desc; | ||
50 | int base; | ||
51 | struct wm831x *wm831x; | ||
52 | struct regulator_dev *regulator; | ||
53 | }; | ||
54 | |||
55 | static int wm831x_dcdc_is_enabled(struct regulator_dev *rdev) | ||
56 | { | ||
57 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
58 | struct wm831x *wm831x = dcdc->wm831x; | ||
59 | int mask = 1 << rdev_get_id(rdev); | ||
60 | int reg; | ||
61 | |||
62 | reg = wm831x_reg_read(wm831x, WM831X_DCDC_ENABLE); | ||
63 | if (reg < 0) | ||
64 | return reg; | ||
65 | |||
66 | if (reg & mask) | ||
67 | return 1; | ||
68 | else | ||
69 | return 0; | ||
70 | } | ||
71 | |||
72 | static int wm831x_dcdc_enable(struct regulator_dev *rdev) | ||
73 | { | ||
74 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
75 | struct wm831x *wm831x = dcdc->wm831x; | ||
76 | int mask = 1 << rdev_get_id(rdev); | ||
77 | |||
78 | return wm831x_set_bits(wm831x, WM831X_DCDC_ENABLE, mask, mask); | ||
79 | } | ||
80 | |||
81 | static int wm831x_dcdc_disable(struct regulator_dev *rdev) | ||
82 | { | ||
83 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
84 | struct wm831x *wm831x = dcdc->wm831x; | ||
85 | int mask = 1 << rdev_get_id(rdev); | ||
86 | |||
87 | return wm831x_set_bits(wm831x, WM831X_DCDC_ENABLE, mask, 0); | ||
88 | } | ||
89 | |||
90 | static unsigned int wm831x_dcdc_get_mode(struct regulator_dev *rdev) | ||
91 | |||
92 | { | ||
93 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
94 | struct wm831x *wm831x = dcdc->wm831x; | ||
95 | u16 reg = dcdc->base + WM831X_DCDC_ON_CONFIG; | ||
96 | int val; | ||
97 | |||
98 | val = wm831x_reg_read(wm831x, reg); | ||
99 | if (val < 0) | ||
100 | return val; | ||
101 | |||
102 | val = (val & WM831X_DC1_ON_MODE_MASK) >> WM831X_DC1_ON_MODE_SHIFT; | ||
103 | |||
104 | switch (val) { | ||
105 | case WM831X_DCDC_MODE_FAST: | ||
106 | return REGULATOR_MODE_FAST; | ||
107 | case WM831X_DCDC_MODE_NORMAL: | ||
108 | return REGULATOR_MODE_NORMAL; | ||
109 | case WM831X_DCDC_MODE_STANDBY: | ||
110 | return REGULATOR_MODE_STANDBY; | ||
111 | case WM831X_DCDC_MODE_IDLE: | ||
112 | return REGULATOR_MODE_IDLE; | ||
113 | default: | ||
114 | BUG(); | ||
115 | } | ||
116 | } | ||
117 | |||
118 | static int wm831x_dcdc_set_mode_int(struct wm831x *wm831x, int reg, | ||
119 | unsigned int mode) | ||
120 | { | ||
121 | int val; | ||
122 | |||
123 | switch (mode) { | ||
124 | case REGULATOR_MODE_FAST: | ||
125 | val = WM831X_DCDC_MODE_FAST; | ||
126 | break; | ||
127 | case REGULATOR_MODE_NORMAL: | ||
128 | val = WM831X_DCDC_MODE_NORMAL; | ||
129 | break; | ||
130 | case REGULATOR_MODE_STANDBY: | ||
131 | val = WM831X_DCDC_MODE_STANDBY; | ||
132 | break; | ||
133 | case REGULATOR_MODE_IDLE: | ||
134 | val = WM831X_DCDC_MODE_IDLE; | ||
135 | break; | ||
136 | default: | ||
137 | return -EINVAL; | ||
138 | } | ||
139 | |||
140 | return wm831x_set_bits(wm831x, reg, WM831X_DC1_ON_MODE_MASK, | ||
141 | val << WM831X_DC1_ON_MODE_SHIFT); | ||
142 | } | ||
143 | |||
144 | static int wm831x_dcdc_set_mode(struct regulator_dev *rdev, unsigned int mode) | ||
145 | { | ||
146 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
147 | struct wm831x *wm831x = dcdc->wm831x; | ||
148 | u16 reg = dcdc->base + WM831X_DCDC_ON_CONFIG; | ||
149 | |||
150 | return wm831x_dcdc_set_mode_int(wm831x, reg, mode); | ||
151 | } | ||
152 | |||
153 | static int wm831x_dcdc_set_suspend_mode(struct regulator_dev *rdev, | ||
154 | unsigned int mode) | ||
155 | { | ||
156 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
157 | struct wm831x *wm831x = dcdc->wm831x; | ||
158 | u16 reg = dcdc->base + WM831X_DCDC_SLEEP_CONTROL; | ||
159 | |||
160 | return wm831x_dcdc_set_mode_int(wm831x, reg, mode); | ||
161 | } | ||
162 | |||
163 | static int wm831x_dcdc_get_status(struct regulator_dev *rdev) | ||
164 | { | ||
165 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
166 | struct wm831x *wm831x = dcdc->wm831x; | ||
167 | int ret; | ||
168 | |||
169 | /* First, check for errors */ | ||
170 | ret = wm831x_reg_read(wm831x, WM831X_DCDC_UV_STATUS); | ||
171 | if (ret < 0) | ||
172 | return ret; | ||
173 | |||
174 | if (ret & (1 << rdev_get_id(rdev))) { | ||
175 | dev_dbg(wm831x->dev, "DCDC%d under voltage\n", | ||
176 | rdev_get_id(rdev) + 1); | ||
177 | return REGULATOR_STATUS_ERROR; | ||
178 | } | ||
179 | |||
180 | /* DCDC1 and DCDC2 can additionally detect high voltage/current */ | ||
181 | if (rdev_get_id(rdev) < 2) { | ||
182 | if (ret & (WM831X_DC1_OV_STS << rdev_get_id(rdev))) { | ||
183 | dev_dbg(wm831x->dev, "DCDC%d over voltage\n", | ||
184 | rdev_get_id(rdev) + 1); | ||
185 | return REGULATOR_STATUS_ERROR; | ||
186 | } | ||
187 | |||
188 | if (ret & (WM831X_DC1_HC_STS << rdev_get_id(rdev))) { | ||
189 | dev_dbg(wm831x->dev, "DCDC%d over current\n", | ||
190 | rdev_get_id(rdev) + 1); | ||
191 | return REGULATOR_STATUS_ERROR; | ||
192 | } | ||
193 | } | ||
194 | |||
195 | /* Is the regulator on? */ | ||
196 | ret = wm831x_reg_read(wm831x, WM831X_DCDC_STATUS); | ||
197 | if (ret < 0) | ||
198 | return ret; | ||
199 | if (!(ret & (1 << rdev_get_id(rdev)))) | ||
200 | return REGULATOR_STATUS_OFF; | ||
201 | |||
202 | /* TODO: When we handle hardware control modes so we can report the | ||
203 | * current mode. */ | ||
204 | return REGULATOR_STATUS_ON; | ||
205 | } | ||
206 | |||
207 | static irqreturn_t wm831x_dcdc_uv_irq(int irq, void *data) | ||
208 | { | ||
209 | struct wm831x_dcdc *dcdc = data; | ||
210 | |||
211 | regulator_notifier_call_chain(dcdc->regulator, | ||
212 | REGULATOR_EVENT_UNDER_VOLTAGE, | ||
213 | NULL); | ||
214 | |||
215 | return IRQ_HANDLED; | ||
216 | } | ||
217 | |||
218 | static irqreturn_t wm831x_dcdc_oc_irq(int irq, void *data) | ||
219 | { | ||
220 | struct wm831x_dcdc *dcdc = data; | ||
221 | |||
222 | regulator_notifier_call_chain(dcdc->regulator, | ||
223 | REGULATOR_EVENT_OVER_CURRENT, | ||
224 | NULL); | ||
225 | |||
226 | return IRQ_HANDLED; | ||
227 | } | ||
228 | |||
229 | /* | ||
230 | * BUCKV specifics | ||
231 | */ | ||
232 | |||
233 | static int wm831x_buckv_list_voltage(struct regulator_dev *rdev, | ||
234 | unsigned selector) | ||
235 | { | ||
236 | if (selector <= 0x8) | ||
237 | return 600000; | ||
238 | if (selector <= WM831X_BUCKV_MAX_SELECTOR) | ||
239 | return 600000 + ((selector - 0x8) * 12500); | ||
240 | return -EINVAL; | ||
241 | } | ||
242 | |||
243 | static int wm831x_buckv_set_voltage_int(struct regulator_dev *rdev, int reg, | ||
244 | int min_uV, int max_uV) | ||
245 | { | ||
246 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
247 | struct wm831x *wm831x = dcdc->wm831x; | ||
248 | u16 vsel; | ||
249 | |||
250 | if (min_uV < 600000) | ||
251 | vsel = 0; | ||
252 | else if (min_uV <= 1800000) | ||
253 | vsel = ((min_uV - 600000) / 12500) + 8; | ||
254 | else | ||
255 | return -EINVAL; | ||
256 | |||
257 | if (wm831x_buckv_list_voltage(rdev, vsel) > max_uV) | ||
258 | return -EINVAL; | ||
259 | |||
260 | return wm831x_set_bits(wm831x, reg, WM831X_DC1_ON_VSEL_MASK, vsel); | ||
261 | } | ||
262 | |||
263 | static int wm831x_buckv_set_voltage(struct regulator_dev *rdev, | ||
264 | int min_uV, int max_uV) | ||
265 | { | ||
266 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
267 | u16 reg = dcdc->base + WM831X_DCDC_ON_CONFIG; | ||
268 | |||
269 | return wm831x_buckv_set_voltage_int(rdev, reg, min_uV, max_uV); | ||
270 | } | ||
271 | |||
272 | static int wm831x_buckv_set_suspend_voltage(struct regulator_dev *rdev, | ||
273 | int uV) | ||
274 | { | ||
275 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
276 | u16 reg = dcdc->base + WM831X_DCDC_SLEEP_CONTROL; | ||
277 | |||
278 | return wm831x_buckv_set_voltage_int(rdev, reg, uV, uV); | ||
279 | } | ||
280 | |||
281 | static int wm831x_buckv_get_voltage(struct regulator_dev *rdev) | ||
282 | { | ||
283 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
284 | struct wm831x *wm831x = dcdc->wm831x; | ||
285 | u16 reg = dcdc->base + WM831X_DCDC_ON_CONFIG; | ||
286 | int val; | ||
287 | |||
288 | val = wm831x_reg_read(wm831x, reg); | ||
289 | if (val < 0) | ||
290 | return val; | ||
291 | |||
292 | return wm831x_buckv_list_voltage(rdev, val & WM831X_DC1_ON_VSEL_MASK); | ||
293 | } | ||
294 | |||
295 | /* Current limit options */ | ||
296 | static u16 wm831x_dcdc_ilim[] = { | ||
297 | 125, 250, 375, 500, 625, 750, 875, 1000 | ||
298 | }; | ||
299 | |||
300 | static int wm831x_buckv_set_current_limit(struct regulator_dev *rdev, | ||
301 | int min_uA, int max_uA) | ||
302 | { | ||
303 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
304 | struct wm831x *wm831x = dcdc->wm831x; | ||
305 | u16 reg = dcdc->base + WM831X_DCDC_CONTROL_2; | ||
306 | int i; | ||
307 | |||
308 | for (i = 0; i < ARRAY_SIZE(wm831x_dcdc_ilim); i++) { | ||
309 | if (max_uA <= wm831x_dcdc_ilim[i]) | ||
310 | break; | ||
311 | } | ||
312 | if (i == ARRAY_SIZE(wm831x_dcdc_ilim)) | ||
313 | return -EINVAL; | ||
314 | |||
315 | return wm831x_set_bits(wm831x, reg, WM831X_DC1_HC_THR_MASK, i); | ||
316 | } | ||
317 | |||
318 | static int wm831x_buckv_get_current_limit(struct regulator_dev *rdev) | ||
319 | { | ||
320 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
321 | struct wm831x *wm831x = dcdc->wm831x; | ||
322 | u16 reg = dcdc->base + WM831X_DCDC_CONTROL_2; | ||
323 | int val; | ||
324 | |||
325 | val = wm831x_reg_read(wm831x, reg); | ||
326 | if (val < 0) | ||
327 | return val; | ||
328 | |||
329 | return wm831x_dcdc_ilim[val & WM831X_DC1_HC_THR_MASK]; | ||
330 | } | ||
331 | |||
332 | static struct regulator_ops wm831x_buckv_ops = { | ||
333 | .set_voltage = wm831x_buckv_set_voltage, | ||
334 | .get_voltage = wm831x_buckv_get_voltage, | ||
335 | .list_voltage = wm831x_buckv_list_voltage, | ||
336 | .set_suspend_voltage = wm831x_buckv_set_suspend_voltage, | ||
337 | .set_current_limit = wm831x_buckv_set_current_limit, | ||
338 | .get_current_limit = wm831x_buckv_get_current_limit, | ||
339 | |||
340 | .is_enabled = wm831x_dcdc_is_enabled, | ||
341 | .enable = wm831x_dcdc_enable, | ||
342 | .disable = wm831x_dcdc_disable, | ||
343 | .get_status = wm831x_dcdc_get_status, | ||
344 | .get_mode = wm831x_dcdc_get_mode, | ||
345 | .set_mode = wm831x_dcdc_set_mode, | ||
346 | .set_suspend_mode = wm831x_dcdc_set_suspend_mode, | ||
347 | }; | ||
348 | |||
349 | static __devinit int wm831x_buckv_probe(struct platform_device *pdev) | ||
350 | { | ||
351 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
352 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | ||
353 | int id = pdev->id % ARRAY_SIZE(pdata->dcdc); | ||
354 | struct wm831x_dcdc *dcdc; | ||
355 | struct resource *res; | ||
356 | int ret, irq; | ||
357 | |||
358 | dev_dbg(&pdev->dev, "Probing DCDC%d\n", id + 1); | ||
359 | |||
360 | if (pdata == NULL || pdata->dcdc[id] == NULL) | ||
361 | return -ENODEV; | ||
362 | |||
363 | dcdc = kzalloc(sizeof(struct wm831x_dcdc), GFP_KERNEL); | ||
364 | if (dcdc == NULL) { | ||
365 | dev_err(&pdev->dev, "Unable to allocate private data\n"); | ||
366 | return -ENOMEM; | ||
367 | } | ||
368 | |||
369 | dcdc->wm831x = wm831x; | ||
370 | |||
371 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | ||
372 | if (res == NULL) { | ||
373 | dev_err(&pdev->dev, "No I/O resource\n"); | ||
374 | ret = -EINVAL; | ||
375 | goto err; | ||
376 | } | ||
377 | dcdc->base = res->start; | ||
378 | |||
379 | snprintf(dcdc->name, sizeof(dcdc->name), "DCDC%d", id + 1); | ||
380 | dcdc->desc.name = dcdc->name; | ||
381 | dcdc->desc.id = id; | ||
382 | dcdc->desc.type = REGULATOR_VOLTAGE; | ||
383 | dcdc->desc.n_voltages = WM831X_BUCKV_MAX_SELECTOR + 1; | ||
384 | dcdc->desc.ops = &wm831x_buckv_ops; | ||
385 | dcdc->desc.owner = THIS_MODULE; | ||
386 | |||
387 | dcdc->regulator = regulator_register(&dcdc->desc, &pdev->dev, | ||
388 | pdata->dcdc[id], dcdc); | ||
389 | if (IS_ERR(dcdc->regulator)) { | ||
390 | ret = PTR_ERR(dcdc->regulator); | ||
391 | dev_err(wm831x->dev, "Failed to register DCDC%d: %d\n", | ||
392 | id + 1, ret); | ||
393 | goto err; | ||
394 | } | ||
395 | |||
396 | irq = platform_get_irq_byname(pdev, "UV"); | ||
397 | ret = wm831x_request_irq(wm831x, irq, wm831x_dcdc_uv_irq, | ||
398 | IRQF_TRIGGER_RISING, dcdc->name, | ||
399 | dcdc); | ||
400 | if (ret != 0) { | ||
401 | dev_err(&pdev->dev, "Failed to request UV IRQ %d: %d\n", | ||
402 | irq, ret); | ||
403 | goto err_regulator; | ||
404 | } | ||
405 | |||
406 | irq = platform_get_irq_byname(pdev, "HC"); | ||
407 | ret = wm831x_request_irq(wm831x, irq, wm831x_dcdc_oc_irq, | ||
408 | IRQF_TRIGGER_RISING, dcdc->name, | ||
409 | dcdc); | ||
410 | if (ret != 0) { | ||
411 | dev_err(&pdev->dev, "Failed to request HC IRQ %d: %d\n", | ||
412 | irq, ret); | ||
413 | goto err_uv; | ||
414 | } | ||
415 | |||
416 | platform_set_drvdata(pdev, dcdc); | ||
417 | |||
418 | return 0; | ||
419 | |||
420 | err_uv: | ||
421 | wm831x_free_irq(wm831x, platform_get_irq_byname(pdev, "UV"), dcdc); | ||
422 | err_regulator: | ||
423 | regulator_unregister(dcdc->regulator); | ||
424 | err: | ||
425 | kfree(dcdc); | ||
426 | return ret; | ||
427 | } | ||
428 | |||
429 | static __devexit int wm831x_buckv_remove(struct platform_device *pdev) | ||
430 | { | ||
431 | struct wm831x_dcdc *dcdc = platform_get_drvdata(pdev); | ||
432 | struct wm831x *wm831x = dcdc->wm831x; | ||
433 | |||
434 | wm831x_free_irq(wm831x, platform_get_irq_byname(pdev, "HC"), dcdc); | ||
435 | wm831x_free_irq(wm831x, platform_get_irq_byname(pdev, "UV"), dcdc); | ||
436 | regulator_unregister(dcdc->regulator); | ||
437 | kfree(dcdc); | ||
438 | |||
439 | return 0; | ||
440 | } | ||
441 | |||
442 | static struct platform_driver wm831x_buckv_driver = { | ||
443 | .probe = wm831x_buckv_probe, | ||
444 | .remove = __devexit_p(wm831x_buckv_remove), | ||
445 | .driver = { | ||
446 | .name = "wm831x-buckv", | ||
447 | }, | ||
448 | }; | ||
449 | |||
450 | /* | ||
451 | * BUCKP specifics | ||
452 | */ | ||
453 | |||
454 | static int wm831x_buckp_list_voltage(struct regulator_dev *rdev, | ||
455 | unsigned selector) | ||
456 | { | ||
457 | if (selector <= WM831X_BUCKP_MAX_SELECTOR) | ||
458 | return 850000 + (selector * 25000); | ||
459 | else | ||
460 | return -EINVAL; | ||
461 | } | ||
462 | |||
463 | static int wm831x_buckp_set_voltage_int(struct regulator_dev *rdev, int reg, | ||
464 | int min_uV, int max_uV) | ||
465 | { | ||
466 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
467 | struct wm831x *wm831x = dcdc->wm831x; | ||
468 | u16 vsel; | ||
469 | |||
470 | if (min_uV <= 34000000) | ||
471 | vsel = (min_uV - 850000) / 25000; | ||
472 | else | ||
473 | return -EINVAL; | ||
474 | |||
475 | if (wm831x_buckp_list_voltage(rdev, vsel) > max_uV) | ||
476 | return -EINVAL; | ||
477 | |||
478 | return wm831x_set_bits(wm831x, reg, WM831X_DC3_ON_VSEL_MASK, vsel); | ||
479 | } | ||
480 | |||
481 | static int wm831x_buckp_set_voltage(struct regulator_dev *rdev, | ||
482 | int min_uV, int max_uV) | ||
483 | { | ||
484 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
485 | u16 reg = dcdc->base + WM831X_DCDC_ON_CONFIG; | ||
486 | |||
487 | return wm831x_buckp_set_voltage_int(rdev, reg, min_uV, max_uV); | ||
488 | } | ||
489 | |||
490 | static int wm831x_buckp_set_suspend_voltage(struct regulator_dev *rdev, | ||
491 | int uV) | ||
492 | { | ||
493 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
494 | u16 reg = dcdc->base + WM831X_DCDC_SLEEP_CONTROL; | ||
495 | |||
496 | return wm831x_buckp_set_voltage_int(rdev, reg, uV, uV); | ||
497 | } | ||
498 | |||
499 | static int wm831x_buckp_get_voltage(struct regulator_dev *rdev) | ||
500 | { | ||
501 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
502 | struct wm831x *wm831x = dcdc->wm831x; | ||
503 | u16 reg = dcdc->base + WM831X_DCDC_ON_CONFIG; | ||
504 | int val; | ||
505 | |||
506 | val = wm831x_reg_read(wm831x, reg); | ||
507 | if (val < 0) | ||
508 | return val; | ||
509 | |||
510 | return wm831x_buckp_list_voltage(rdev, val & WM831X_DC3_ON_VSEL_MASK); | ||
511 | } | ||
512 | |||
513 | static struct regulator_ops wm831x_buckp_ops = { | ||
514 | .set_voltage = wm831x_buckp_set_voltage, | ||
515 | .get_voltage = wm831x_buckp_get_voltage, | ||
516 | .list_voltage = wm831x_buckp_list_voltage, | ||
517 | .set_suspend_voltage = wm831x_buckp_set_suspend_voltage, | ||
518 | |||
519 | .is_enabled = wm831x_dcdc_is_enabled, | ||
520 | .enable = wm831x_dcdc_enable, | ||
521 | .disable = wm831x_dcdc_disable, | ||
522 | .get_status = wm831x_dcdc_get_status, | ||
523 | .get_mode = wm831x_dcdc_get_mode, | ||
524 | .set_mode = wm831x_dcdc_set_mode, | ||
525 | .set_suspend_mode = wm831x_dcdc_set_suspend_mode, | ||
526 | }; | ||
527 | |||
528 | static __devinit int wm831x_buckp_probe(struct platform_device *pdev) | ||
529 | { | ||
530 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
531 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | ||
532 | int id = pdev->id % ARRAY_SIZE(pdata->dcdc); | ||
533 | struct wm831x_dcdc *dcdc; | ||
534 | struct resource *res; | ||
535 | int ret, irq; | ||
536 | |||
537 | dev_dbg(&pdev->dev, "Probing DCDC%d\n", id + 1); | ||
538 | |||
539 | if (pdata == NULL || pdata->dcdc[id] == NULL) | ||
540 | return -ENODEV; | ||
541 | |||
542 | dcdc = kzalloc(sizeof(struct wm831x_dcdc), GFP_KERNEL); | ||
543 | if (dcdc == NULL) { | ||
544 | dev_err(&pdev->dev, "Unable to allocate private data\n"); | ||
545 | return -ENOMEM; | ||
546 | } | ||
547 | |||
548 | dcdc->wm831x = wm831x; | ||
549 | |||
550 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | ||
551 | if (res == NULL) { | ||
552 | dev_err(&pdev->dev, "No I/O resource\n"); | ||
553 | ret = -EINVAL; | ||
554 | goto err; | ||
555 | } | ||
556 | dcdc->base = res->start; | ||
557 | |||
558 | snprintf(dcdc->name, sizeof(dcdc->name), "DCDC%d", id + 1); | ||
559 | dcdc->desc.name = dcdc->name; | ||
560 | dcdc->desc.id = id; | ||
561 | dcdc->desc.type = REGULATOR_VOLTAGE; | ||
562 | dcdc->desc.n_voltages = WM831X_BUCKP_MAX_SELECTOR + 1; | ||
563 | dcdc->desc.ops = &wm831x_buckp_ops; | ||
564 | dcdc->desc.owner = THIS_MODULE; | ||
565 | |||
566 | dcdc->regulator = regulator_register(&dcdc->desc, &pdev->dev, | ||
567 | pdata->dcdc[id], dcdc); | ||
568 | if (IS_ERR(dcdc->regulator)) { | ||
569 | ret = PTR_ERR(dcdc->regulator); | ||
570 | dev_err(wm831x->dev, "Failed to register DCDC%d: %d\n", | ||
571 | id + 1, ret); | ||
572 | goto err; | ||
573 | } | ||
574 | |||
575 | irq = platform_get_irq_byname(pdev, "UV"); | ||
576 | ret = wm831x_request_irq(wm831x, irq, wm831x_dcdc_uv_irq, | ||
577 | IRQF_TRIGGER_RISING, dcdc->name, | ||
578 | dcdc); | ||
579 | if (ret != 0) { | ||
580 | dev_err(&pdev->dev, "Failed to request UV IRQ %d: %d\n", | ||
581 | irq, ret); | ||
582 | goto err_regulator; | ||
583 | } | ||
584 | |||
585 | platform_set_drvdata(pdev, dcdc); | ||
586 | |||
587 | return 0; | ||
588 | |||
589 | err_regulator: | ||
590 | regulator_unregister(dcdc->regulator); | ||
591 | err: | ||
592 | kfree(dcdc); | ||
593 | return ret; | ||
594 | } | ||
595 | |||
596 | static __devexit int wm831x_buckp_remove(struct platform_device *pdev) | ||
597 | { | ||
598 | struct wm831x_dcdc *dcdc = platform_get_drvdata(pdev); | ||
599 | struct wm831x *wm831x = dcdc->wm831x; | ||
600 | |||
601 | wm831x_free_irq(wm831x, platform_get_irq_byname(pdev, "UV"), dcdc); | ||
602 | regulator_unregister(dcdc->regulator); | ||
603 | kfree(dcdc); | ||
604 | |||
605 | return 0; | ||
606 | } | ||
607 | |||
608 | static struct platform_driver wm831x_buckp_driver = { | ||
609 | .probe = wm831x_buckp_probe, | ||
610 | .remove = __devexit_p(wm831x_buckp_remove), | ||
611 | .driver = { | ||
612 | .name = "wm831x-buckp", | ||
613 | }, | ||
614 | }; | ||
615 | |||
616 | /* | ||
617 | * DCDC boost convertors | ||
618 | */ | ||
619 | |||
620 | static int wm831x_boostp_get_status(struct regulator_dev *rdev) | ||
621 | { | ||
622 | struct wm831x_dcdc *dcdc = rdev_get_drvdata(rdev); | ||
623 | struct wm831x *wm831x = dcdc->wm831x; | ||
624 | int ret; | ||
625 | |||
626 | /* First, check for errors */ | ||
627 | ret = wm831x_reg_read(wm831x, WM831X_DCDC_UV_STATUS); | ||
628 | if (ret < 0) | ||
629 | return ret; | ||
630 | |||
631 | if (ret & (1 << rdev_get_id(rdev))) { | ||
632 | dev_dbg(wm831x->dev, "DCDC%d under voltage\n", | ||
633 | rdev_get_id(rdev) + 1); | ||
634 | return REGULATOR_STATUS_ERROR; | ||
635 | } | ||
636 | |||
637 | /* Is the regulator on? */ | ||
638 | ret = wm831x_reg_read(wm831x, WM831X_DCDC_STATUS); | ||
639 | if (ret < 0) | ||
640 | return ret; | ||
641 | if (ret & (1 << rdev_get_id(rdev))) | ||
642 | return REGULATOR_STATUS_ON; | ||
643 | else | ||
644 | return REGULATOR_STATUS_OFF; | ||
645 | } | ||
646 | |||
647 | static struct regulator_ops wm831x_boostp_ops = { | ||
648 | .get_status = wm831x_boostp_get_status, | ||
649 | |||
650 | .is_enabled = wm831x_dcdc_is_enabled, | ||
651 | .enable = wm831x_dcdc_enable, | ||
652 | .disable = wm831x_dcdc_disable, | ||
653 | }; | ||
654 | |||
655 | static __devinit int wm831x_boostp_probe(struct platform_device *pdev) | ||
656 | { | ||
657 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
658 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | ||
659 | int id = pdev->id % ARRAY_SIZE(pdata->dcdc); | ||
660 | struct wm831x_dcdc *dcdc; | ||
661 | struct resource *res; | ||
662 | int ret, irq; | ||
663 | |||
664 | dev_dbg(&pdev->dev, "Probing DCDC%d\n", id + 1); | ||
665 | |||
666 | if (pdata == NULL || pdata->dcdc[id] == NULL) | ||
667 | return -ENODEV; | ||
668 | |||
669 | dcdc = kzalloc(sizeof(struct wm831x_dcdc), GFP_KERNEL); | ||
670 | if (dcdc == NULL) { | ||
671 | dev_err(&pdev->dev, "Unable to allocate private data\n"); | ||
672 | return -ENOMEM; | ||
673 | } | ||
674 | |||
675 | dcdc->wm831x = wm831x; | ||
676 | |||
677 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | ||
678 | if (res == NULL) { | ||
679 | dev_err(&pdev->dev, "No I/O resource\n"); | ||
680 | ret = -EINVAL; | ||
681 | goto err; | ||
682 | } | ||
683 | dcdc->base = res->start; | ||
684 | |||
685 | snprintf(dcdc->name, sizeof(dcdc->name), "DCDC%d", id + 1); | ||
686 | dcdc->desc.name = dcdc->name; | ||
687 | dcdc->desc.id = id; | ||
688 | dcdc->desc.type = REGULATOR_VOLTAGE; | ||
689 | dcdc->desc.ops = &wm831x_boostp_ops; | ||
690 | dcdc->desc.owner = THIS_MODULE; | ||
691 | |||
692 | dcdc->regulator = regulator_register(&dcdc->desc, &pdev->dev, | ||
693 | pdata->dcdc[id], dcdc); | ||
694 | if (IS_ERR(dcdc->regulator)) { | ||
695 | ret = PTR_ERR(dcdc->regulator); | ||
696 | dev_err(wm831x->dev, "Failed to register DCDC%d: %d\n", | ||
697 | id + 1, ret); | ||
698 | goto err; | ||
699 | } | ||
700 | |||
701 | irq = platform_get_irq_byname(pdev, "UV"); | ||
702 | ret = wm831x_request_irq(wm831x, irq, wm831x_dcdc_uv_irq, | ||
703 | IRQF_TRIGGER_RISING, dcdc->name, | ||
704 | dcdc); | ||
705 | if (ret != 0) { | ||
706 | dev_err(&pdev->dev, "Failed to request UV IRQ %d: %d\n", | ||
707 | irq, ret); | ||
708 | goto err_regulator; | ||
709 | } | ||
710 | |||
711 | platform_set_drvdata(pdev, dcdc); | ||
712 | |||
713 | return 0; | ||
714 | |||
715 | err_regulator: | ||
716 | regulator_unregister(dcdc->regulator); | ||
717 | err: | ||
718 | kfree(dcdc); | ||
719 | return ret; | ||
720 | } | ||
721 | |||
722 | static __devexit int wm831x_boostp_remove(struct platform_device *pdev) | ||
723 | { | ||
724 | struct wm831x_dcdc *dcdc = platform_get_drvdata(pdev); | ||
725 | struct wm831x *wm831x = dcdc->wm831x; | ||
726 | |||
727 | wm831x_free_irq(wm831x, platform_get_irq_byname(pdev, "UV"), dcdc); | ||
728 | regulator_unregister(dcdc->regulator); | ||
729 | kfree(dcdc); | ||
730 | |||
731 | return 0; | ||
732 | } | ||
733 | |||
734 | static struct platform_driver wm831x_boostp_driver = { | ||
735 | .probe = wm831x_boostp_probe, | ||
736 | .remove = __devexit_p(wm831x_boostp_remove), | ||
737 | .driver = { | ||
738 | .name = "wm831x-boostp", | ||
739 | }, | ||
740 | }; | ||
741 | |||
742 | /* | ||
743 | * External Power Enable | ||
744 | * | ||
745 | * These aren't actually DCDCs but look like them in hardware so share | ||
746 | * code. | ||
747 | */ | ||
748 | |||
749 | #define WM831X_EPE_BASE 6 | ||
750 | |||
751 | static struct regulator_ops wm831x_epe_ops = { | ||
752 | .is_enabled = wm831x_dcdc_is_enabled, | ||
753 | .enable = wm831x_dcdc_enable, | ||
754 | .disable = wm831x_dcdc_disable, | ||
755 | .get_status = wm831x_dcdc_get_status, | ||
756 | }; | ||
757 | |||
758 | static __devinit int wm831x_epe_probe(struct platform_device *pdev) | ||
759 | { | ||
760 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
761 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | ||
762 | int id = pdev->id % ARRAY_SIZE(pdata->epe); | ||
763 | struct wm831x_dcdc *dcdc; | ||
764 | int ret; | ||
765 | |||
766 | dev_dbg(&pdev->dev, "Probing EPE%d\n", id + 1); | ||
767 | |||
768 | if (pdata == NULL || pdata->epe[id] == NULL) | ||
769 | return -ENODEV; | ||
770 | |||
771 | dcdc = kzalloc(sizeof(struct wm831x_dcdc), GFP_KERNEL); | ||
772 | if (dcdc == NULL) { | ||
773 | dev_err(&pdev->dev, "Unable to allocate private data\n"); | ||
774 | return -ENOMEM; | ||
775 | } | ||
776 | |||
777 | dcdc->wm831x = wm831x; | ||
778 | |||
779 | /* For current parts this is correct; probably need to revisit | ||
780 | * in future. | ||
781 | */ | ||
782 | snprintf(dcdc->name, sizeof(dcdc->name), "EPE%d", id + 1); | ||
783 | dcdc->desc.name = dcdc->name; | ||
784 | dcdc->desc.id = id + WM831X_EPE_BASE; /* Offset in DCDC registers */ | ||
785 | dcdc->desc.ops = &wm831x_epe_ops; | ||
786 | dcdc->desc.type = REGULATOR_VOLTAGE; | ||
787 | dcdc->desc.owner = THIS_MODULE; | ||
788 | |||
789 | dcdc->regulator = regulator_register(&dcdc->desc, &pdev->dev, | ||
790 | pdata->epe[id], dcdc); | ||
791 | if (IS_ERR(dcdc->regulator)) { | ||
792 | ret = PTR_ERR(dcdc->regulator); | ||
793 | dev_err(wm831x->dev, "Failed to register EPE%d: %d\n", | ||
794 | id + 1, ret); | ||
795 | goto err; | ||
796 | } | ||
797 | |||
798 | platform_set_drvdata(pdev, dcdc); | ||
799 | |||
800 | return 0; | ||
801 | |||
802 | err: | ||
803 | kfree(dcdc); | ||
804 | return ret; | ||
805 | } | ||
806 | |||
807 | static __devexit int wm831x_epe_remove(struct platform_device *pdev) | ||
808 | { | ||
809 | struct wm831x_dcdc *dcdc = platform_get_drvdata(pdev); | ||
810 | |||
811 | regulator_unregister(dcdc->regulator); | ||
812 | kfree(dcdc); | ||
813 | |||
814 | return 0; | ||
815 | } | ||
816 | |||
817 | static struct platform_driver wm831x_epe_driver = { | ||
818 | .probe = wm831x_epe_probe, | ||
819 | .remove = __devexit_p(wm831x_epe_remove), | ||
820 | .driver = { | ||
821 | .name = "wm831x-epe", | ||
822 | }, | ||
823 | }; | ||
824 | |||
825 | static int __init wm831x_dcdc_init(void) | ||
826 | { | ||
827 | int ret; | ||
828 | ret = platform_driver_register(&wm831x_buckv_driver); | ||
829 | if (ret != 0) | ||
830 | pr_err("Failed to register WM831x BUCKV driver: %d\n", ret); | ||
831 | |||
832 | ret = platform_driver_register(&wm831x_buckp_driver); | ||
833 | if (ret != 0) | ||
834 | pr_err("Failed to register WM831x BUCKP driver: %d\n", ret); | ||
835 | |||
836 | ret = platform_driver_register(&wm831x_boostp_driver); | ||
837 | if (ret != 0) | ||
838 | pr_err("Failed to register WM831x BOOST driver: %d\n", ret); | ||
839 | |||
840 | ret = platform_driver_register(&wm831x_epe_driver); | ||
841 | if (ret != 0) | ||
842 | pr_err("Failed to register WM831x EPE driver: %d\n", ret); | ||
843 | |||
844 | return 0; | ||
845 | } | ||
846 | subsys_initcall(wm831x_dcdc_init); | ||
847 | |||
848 | static void __exit wm831x_dcdc_exit(void) | ||
849 | { | ||
850 | platform_driver_unregister(&wm831x_epe_driver); | ||
851 | platform_driver_unregister(&wm831x_boostp_driver); | ||
852 | platform_driver_unregister(&wm831x_buckp_driver); | ||
853 | platform_driver_unregister(&wm831x_buckv_driver); | ||
854 | } | ||
855 | module_exit(wm831x_dcdc_exit); | ||
856 | |||
857 | /* Module information */ | ||
858 | MODULE_AUTHOR("Mark Brown"); | ||
859 | MODULE_DESCRIPTION("WM831x DC-DC convertor driver"); | ||
860 | MODULE_LICENSE("GPL"); | ||
861 | MODULE_ALIAS("platform:wm831x-buckv"); | ||
862 | MODULE_ALIAS("platform:wm831x-buckp"); | ||
diff --git a/drivers/regulator/wm831x-isink.c b/drivers/regulator/wm831x-isink.c new file mode 100644 index 000000000000..1d8d9879d3a1 --- /dev/null +++ b/drivers/regulator/wm831x-isink.c | |||
@@ -0,0 +1,260 @@ | |||
1 | /* | ||
2 | * wm831x-isink.c -- Current sink driver for the WM831x series | ||
3 | * | ||
4 | * Copyright 2009 Wolfson Microelectronics PLC. | ||
5 | * | ||
6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/moduleparam.h> | ||
16 | #include <linux/init.h> | ||
17 | #include <linux/bitops.h> | ||
18 | #include <linux/err.h> | ||
19 | #include <linux/i2c.h> | ||
20 | #include <linux/platform_device.h> | ||
21 | #include <linux/regulator/driver.h> | ||
22 | |||
23 | #include <linux/mfd/wm831x/core.h> | ||
24 | #include <linux/mfd/wm831x/regulator.h> | ||
25 | #include <linux/mfd/wm831x/pdata.h> | ||
26 | |||
27 | #define WM831X_ISINK_MAX_NAME 7 | ||
28 | |||
29 | struct wm831x_isink { | ||
30 | char name[WM831X_ISINK_MAX_NAME]; | ||
31 | struct regulator_desc desc; | ||
32 | int reg; | ||
33 | struct wm831x *wm831x; | ||
34 | struct regulator_dev *regulator; | ||
35 | }; | ||
36 | |||
37 | static int wm831x_isink_enable(struct regulator_dev *rdev) | ||
38 | { | ||
39 | struct wm831x_isink *isink = rdev_get_drvdata(rdev); | ||
40 | struct wm831x *wm831x = isink->wm831x; | ||
41 | int ret; | ||
42 | |||
43 | /* We have a two stage enable: first start the ISINK... */ | ||
44 | ret = wm831x_set_bits(wm831x, isink->reg, WM831X_CS1_ENA, | ||
45 | WM831X_CS1_ENA); | ||
46 | if (ret != 0) | ||
47 | return ret; | ||
48 | |||
49 | /* ...then enable drive */ | ||
50 | ret = wm831x_set_bits(wm831x, isink->reg, WM831X_CS1_DRIVE, | ||
51 | WM831X_CS1_DRIVE); | ||
52 | if (ret != 0) | ||
53 | wm831x_set_bits(wm831x, isink->reg, WM831X_CS1_ENA, 0); | ||
54 | |||
55 | return ret; | ||
56 | |||
57 | } | ||
58 | |||
59 | static int wm831x_isink_disable(struct regulator_dev *rdev) | ||
60 | { | ||
61 | struct wm831x_isink *isink = rdev_get_drvdata(rdev); | ||
62 | struct wm831x *wm831x = isink->wm831x; | ||
63 | int ret; | ||
64 | |||
65 | ret = wm831x_set_bits(wm831x, isink->reg, WM831X_CS1_DRIVE, 0); | ||
66 | if (ret < 0) | ||
67 | return ret; | ||
68 | |||
69 | ret = wm831x_set_bits(wm831x, isink->reg, WM831X_CS1_ENA, 0); | ||
70 | if (ret < 0) | ||
71 | return ret; | ||
72 | |||
73 | return ret; | ||
74 | |||
75 | } | ||
76 | |||
77 | static int wm831x_isink_is_enabled(struct regulator_dev *rdev) | ||
78 | { | ||
79 | struct wm831x_isink *isink = rdev_get_drvdata(rdev); | ||
80 | struct wm831x *wm831x = isink->wm831x; | ||
81 | int ret; | ||
82 | |||
83 | ret = wm831x_reg_read(wm831x, isink->reg); | ||
84 | if (ret < 0) | ||
85 | return ret; | ||
86 | |||
87 | if ((ret & (WM831X_CS1_ENA | WM831X_CS1_DRIVE)) == | ||
88 | (WM831X_CS1_ENA | WM831X_CS1_DRIVE)) | ||
89 | return 1; | ||
90 | else | ||
91 | return 0; | ||
92 | } | ||
93 | |||
94 | static int wm831x_isink_set_current(struct regulator_dev *rdev, | ||
95 | int min_uA, int max_uA) | ||
96 | { | ||
97 | struct wm831x_isink *isink = rdev_get_drvdata(rdev); | ||
98 | struct wm831x *wm831x = isink->wm831x; | ||
99 | int ret, i; | ||
100 | |||
101 | for (i = 0; i < ARRAY_SIZE(wm831x_isinkv_values); i++) { | ||
102 | int val = wm831x_isinkv_values[i]; | ||
103 | if (min_uA >= val && val <= max_uA) { | ||
104 | ret = wm831x_set_bits(wm831x, isink->reg, | ||
105 | WM831X_CS1_ISEL_MASK, i); | ||
106 | return ret; | ||
107 | } | ||
108 | } | ||
109 | |||
110 | return -EINVAL; | ||
111 | } | ||
112 | |||
113 | static int wm831x_isink_get_current(struct regulator_dev *rdev) | ||
114 | { | ||
115 | struct wm831x_isink *isink = rdev_get_drvdata(rdev); | ||
116 | struct wm831x *wm831x = isink->wm831x; | ||
117 | int ret; | ||
118 | |||
119 | ret = wm831x_reg_read(wm831x, isink->reg); | ||
120 | if (ret < 0) | ||
121 | return ret; | ||
122 | |||
123 | ret &= WM831X_CS1_ISEL_MASK; | ||
124 | if (ret > WM831X_ISINK_MAX_ISEL) | ||
125 | ret = WM831X_ISINK_MAX_ISEL; | ||
126 | |||
127 | return wm831x_isinkv_values[ret]; | ||
128 | } | ||
129 | |||
130 | static struct regulator_ops wm831x_isink_ops = { | ||
131 | .is_enabled = wm831x_isink_is_enabled, | ||
132 | .enable = wm831x_isink_enable, | ||
133 | .disable = wm831x_isink_disable, | ||
134 | .set_current_limit = wm831x_isink_set_current, | ||
135 | .get_current_limit = wm831x_isink_get_current, | ||
136 | }; | ||
137 | |||
138 | static irqreturn_t wm831x_isink_irq(int irq, void *data) | ||
139 | { | ||
140 | struct wm831x_isink *isink = data; | ||
141 | |||
142 | regulator_notifier_call_chain(isink->regulator, | ||
143 | REGULATOR_EVENT_OVER_CURRENT, | ||
144 | NULL); | ||
145 | |||
146 | return IRQ_HANDLED; | ||
147 | } | ||
148 | |||
149 | |||
150 | static __devinit int wm831x_isink_probe(struct platform_device *pdev) | ||
151 | { | ||
152 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
153 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | ||
154 | struct wm831x_isink *isink; | ||
155 | int id = pdev->id % ARRAY_SIZE(pdata->isink); | ||
156 | struct resource *res; | ||
157 | int ret, irq; | ||
158 | |||
159 | dev_dbg(&pdev->dev, "Probing ISINK%d\n", id + 1); | ||
160 | |||
161 | if (pdata == NULL || pdata->isink[id] == NULL) | ||
162 | return -ENODEV; | ||
163 | |||
164 | isink = kzalloc(sizeof(struct wm831x_isink), GFP_KERNEL); | ||
165 | if (isink == NULL) { | ||
166 | dev_err(&pdev->dev, "Unable to allocate private data\n"); | ||
167 | return -ENOMEM; | ||
168 | } | ||
169 | |||
170 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | ||
171 | if (res == NULL) { | ||
172 | dev_err(&pdev->dev, "No I/O resource\n"); | ||
173 | ret = -EINVAL; | ||
174 | goto err; | ||
175 | } | ||
176 | isink->reg = res->start; | ||
177 | |||
178 | /* For current parts this is correct; probably need to revisit | ||
179 | * in future. | ||
180 | */ | ||
181 | snprintf(isink->name, sizeof(isink->name), "ISINK%d", id + 1); | ||
182 | isink->desc.name = isink->name; | ||
183 | isink->desc.id = id; | ||
184 | isink->desc.ops = &wm831x_isink_ops; | ||
185 | isink->desc.type = REGULATOR_CURRENT; | ||
186 | isink->desc.owner = THIS_MODULE; | ||
187 | |||
188 | isink->regulator = regulator_register(&isink->desc, &pdev->dev, | ||
189 | pdata->isink[id], isink); | ||
190 | if (IS_ERR(isink->regulator)) { | ||
191 | ret = PTR_ERR(isink->regulator); | ||
192 | dev_err(wm831x->dev, "Failed to register ISINK%d: %d\n", | ||
193 | id + 1, ret); | ||
194 | goto err; | ||
195 | } | ||
196 | |||
197 | irq = platform_get_irq(pdev, 0); | ||
198 | ret = wm831x_request_irq(wm831x, irq, wm831x_isink_irq, | ||
199 | IRQF_TRIGGER_RISING, isink->name, | ||
200 | isink); | ||
201 | if (ret != 0) { | ||
202 | dev_err(&pdev->dev, "Failed to request ISINK IRQ %d: %d\n", | ||
203 | irq, ret); | ||
204 | goto err_regulator; | ||
205 | } | ||
206 | |||
207 | platform_set_drvdata(pdev, isink); | ||
208 | |||
209 | return 0; | ||
210 | |||
211 | err_regulator: | ||
212 | regulator_unregister(isink->regulator); | ||
213 | err: | ||
214 | kfree(isink); | ||
215 | return ret; | ||
216 | } | ||
217 | |||
218 | static __devexit int wm831x_isink_remove(struct platform_device *pdev) | ||
219 | { | ||
220 | struct wm831x_isink *isink = platform_get_drvdata(pdev); | ||
221 | struct wm831x *wm831x = isink->wm831x; | ||
222 | |||
223 | wm831x_free_irq(wm831x, platform_get_irq(pdev, 0), isink); | ||
224 | |||
225 | regulator_unregister(isink->regulator); | ||
226 | kfree(isink); | ||
227 | |||
228 | return 0; | ||
229 | } | ||
230 | |||
231 | static struct platform_driver wm831x_isink_driver = { | ||
232 | .probe = wm831x_isink_probe, | ||
233 | .remove = __devexit_p(wm831x_isink_remove), | ||
234 | .driver = { | ||
235 | .name = "wm831x-isink", | ||
236 | }, | ||
237 | }; | ||
238 | |||
239 | static int __init wm831x_isink_init(void) | ||
240 | { | ||
241 | int ret; | ||
242 | ret = platform_driver_register(&wm831x_isink_driver); | ||
243 | if (ret != 0) | ||
244 | pr_err("Failed to register WM831x ISINK driver: %d\n", ret); | ||
245 | |||
246 | return ret; | ||
247 | } | ||
248 | subsys_initcall(wm831x_isink_init); | ||
249 | |||
250 | static void __exit wm831x_isink_exit(void) | ||
251 | { | ||
252 | platform_driver_unregister(&wm831x_isink_driver); | ||
253 | } | ||
254 | module_exit(wm831x_isink_exit); | ||
255 | |||
256 | /* Module information */ | ||
257 | MODULE_AUTHOR("Mark Brown"); | ||
258 | MODULE_DESCRIPTION("WM831x current sink driver"); | ||
259 | MODULE_LICENSE("GPL"); | ||
260 | MODULE_ALIAS("platform:wm831x-isink"); | ||
diff --git a/drivers/regulator/wm831x-ldo.c b/drivers/regulator/wm831x-ldo.c new file mode 100644 index 000000000000..bb61aede4801 --- /dev/null +++ b/drivers/regulator/wm831x-ldo.c | |||
@@ -0,0 +1,852 @@ | |||
1 | /* | ||
2 | * wm831x-ldo.c -- LDO driver for the WM831x series | ||
3 | * | ||
4 | * Copyright 2009 Wolfson Microelectronics PLC. | ||
5 | * | ||
6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/moduleparam.h> | ||
16 | #include <linux/init.h> | ||
17 | #include <linux/bitops.h> | ||
18 | #include <linux/err.h> | ||
19 | #include <linux/i2c.h> | ||
20 | #include <linux/platform_device.h> | ||
21 | #include <linux/regulator/driver.h> | ||
22 | |||
23 | #include <linux/mfd/wm831x/core.h> | ||
24 | #include <linux/mfd/wm831x/regulator.h> | ||
25 | #include <linux/mfd/wm831x/pdata.h> | ||
26 | |||
27 | #define WM831X_LDO_MAX_NAME 6 | ||
28 | |||
29 | #define WM831X_LDO_CONTROL 0 | ||
30 | #define WM831X_LDO_ON_CONTROL 1 | ||
31 | #define WM831X_LDO_SLEEP_CONTROL 2 | ||
32 | |||
33 | #define WM831X_ALIVE_LDO_ON_CONTROL 0 | ||
34 | #define WM831X_ALIVE_LDO_SLEEP_CONTROL 1 | ||
35 | |||
36 | struct wm831x_ldo { | ||
37 | char name[WM831X_LDO_MAX_NAME]; | ||
38 | struct regulator_desc desc; | ||
39 | int base; | ||
40 | struct wm831x *wm831x; | ||
41 | struct regulator_dev *regulator; | ||
42 | }; | ||
43 | |||
44 | /* | ||
45 | * Shared | ||
46 | */ | ||
47 | |||
48 | static int wm831x_ldo_is_enabled(struct regulator_dev *rdev) | ||
49 | { | ||
50 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
51 | struct wm831x *wm831x = ldo->wm831x; | ||
52 | int mask = 1 << rdev_get_id(rdev); | ||
53 | int reg; | ||
54 | |||
55 | reg = wm831x_reg_read(wm831x, WM831X_LDO_ENABLE); | ||
56 | if (reg < 0) | ||
57 | return reg; | ||
58 | |||
59 | if (reg & mask) | ||
60 | return 1; | ||
61 | else | ||
62 | return 0; | ||
63 | } | ||
64 | |||
65 | static int wm831x_ldo_enable(struct regulator_dev *rdev) | ||
66 | { | ||
67 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
68 | struct wm831x *wm831x = ldo->wm831x; | ||
69 | int mask = 1 << rdev_get_id(rdev); | ||
70 | |||
71 | return wm831x_set_bits(wm831x, WM831X_LDO_ENABLE, mask, mask); | ||
72 | } | ||
73 | |||
74 | static int wm831x_ldo_disable(struct regulator_dev *rdev) | ||
75 | { | ||
76 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
77 | struct wm831x *wm831x = ldo->wm831x; | ||
78 | int mask = 1 << rdev_get_id(rdev); | ||
79 | |||
80 | return wm831x_set_bits(wm831x, WM831X_LDO_ENABLE, mask, 0); | ||
81 | } | ||
82 | |||
83 | static irqreturn_t wm831x_ldo_uv_irq(int irq, void *data) | ||
84 | { | ||
85 | struct wm831x_ldo *ldo = data; | ||
86 | |||
87 | regulator_notifier_call_chain(ldo->regulator, | ||
88 | REGULATOR_EVENT_UNDER_VOLTAGE, | ||
89 | NULL); | ||
90 | |||
91 | return IRQ_HANDLED; | ||
92 | } | ||
93 | |||
94 | /* | ||
95 | * General purpose LDOs | ||
96 | */ | ||
97 | |||
98 | #define WM831X_GP_LDO_SELECTOR_LOW 0xe | ||
99 | #define WM831X_GP_LDO_MAX_SELECTOR 0x1f | ||
100 | |||
101 | static int wm831x_gp_ldo_list_voltage(struct regulator_dev *rdev, | ||
102 | unsigned int selector) | ||
103 | { | ||
104 | /* 0.9-1.6V in 50mV steps */ | ||
105 | if (selector <= WM831X_GP_LDO_SELECTOR_LOW) | ||
106 | return 900000 + (selector * 50000); | ||
107 | /* 1.7-3.3V in 50mV steps */ | ||
108 | if (selector <= WM831X_GP_LDO_MAX_SELECTOR) | ||
109 | return 1600000 + ((selector - WM831X_GP_LDO_SELECTOR_LOW) | ||
110 | * 100000); | ||
111 | return -EINVAL; | ||
112 | } | ||
113 | |||
114 | static int wm831x_gp_ldo_set_voltage_int(struct regulator_dev *rdev, int reg, | ||
115 | int min_uV, int max_uV) | ||
116 | { | ||
117 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
118 | struct wm831x *wm831x = ldo->wm831x; | ||
119 | int vsel, ret; | ||
120 | |||
121 | if (min_uV < 900000) | ||
122 | vsel = 0; | ||
123 | else if (min_uV < 1700000) | ||
124 | vsel = ((min_uV - 900000) / 50000); | ||
125 | else | ||
126 | vsel = ((min_uV - 1700000) / 100000) | ||
127 | + WM831X_GP_LDO_SELECTOR_LOW + 1; | ||
128 | |||
129 | ret = wm831x_gp_ldo_list_voltage(rdev, vsel); | ||
130 | if (ret < 0) | ||
131 | return ret; | ||
132 | if (ret < min_uV || ret > max_uV) | ||
133 | return -EINVAL; | ||
134 | |||
135 | return wm831x_set_bits(wm831x, reg, WM831X_LDO1_ON_VSEL_MASK, vsel); | ||
136 | } | ||
137 | |||
138 | static int wm831x_gp_ldo_set_voltage(struct regulator_dev *rdev, | ||
139 | int min_uV, int max_uV) | ||
140 | { | ||
141 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
142 | int reg = ldo->base + WM831X_LDO_ON_CONTROL; | ||
143 | |||
144 | return wm831x_gp_ldo_set_voltage_int(rdev, reg, min_uV, max_uV); | ||
145 | } | ||
146 | |||
147 | static int wm831x_gp_ldo_set_suspend_voltage(struct regulator_dev *rdev, | ||
148 | int uV) | ||
149 | { | ||
150 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
151 | int reg = ldo->base + WM831X_LDO_SLEEP_CONTROL; | ||
152 | |||
153 | return wm831x_gp_ldo_set_voltage_int(rdev, reg, uV, uV); | ||
154 | } | ||
155 | |||
156 | static int wm831x_gp_ldo_get_voltage(struct regulator_dev *rdev) | ||
157 | { | ||
158 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
159 | struct wm831x *wm831x = ldo->wm831x; | ||
160 | int reg = ldo->base + WM831X_LDO_ON_CONTROL; | ||
161 | int ret; | ||
162 | |||
163 | ret = wm831x_reg_read(wm831x, reg); | ||
164 | if (ret < 0) | ||
165 | return ret; | ||
166 | |||
167 | ret &= WM831X_LDO1_ON_VSEL_MASK; | ||
168 | |||
169 | return wm831x_gp_ldo_list_voltage(rdev, ret); | ||
170 | } | ||
171 | |||
172 | static unsigned int wm831x_gp_ldo_get_mode(struct regulator_dev *rdev) | ||
173 | { | ||
174 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
175 | struct wm831x *wm831x = ldo->wm831x; | ||
176 | int ctrl_reg = ldo->base + WM831X_LDO_CONTROL; | ||
177 | int on_reg = ldo->base + WM831X_LDO_ON_CONTROL; | ||
178 | unsigned int ret; | ||
179 | |||
180 | ret = wm831x_reg_read(wm831x, on_reg); | ||
181 | if (ret < 0) | ||
182 | return 0; | ||
183 | |||
184 | if (!(ret & WM831X_LDO1_ON_MODE)) | ||
185 | return REGULATOR_MODE_NORMAL; | ||
186 | |||
187 | ret = wm831x_reg_read(wm831x, ctrl_reg); | ||
188 | if (ret < 0) | ||
189 | return 0; | ||
190 | |||
191 | if (ret & WM831X_LDO1_LP_MODE) | ||
192 | return REGULATOR_MODE_STANDBY; | ||
193 | else | ||
194 | return REGULATOR_MODE_IDLE; | ||
195 | } | ||
196 | |||
197 | static int wm831x_gp_ldo_set_mode(struct regulator_dev *rdev, | ||
198 | unsigned int mode) | ||
199 | { | ||
200 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
201 | struct wm831x *wm831x = ldo->wm831x; | ||
202 | int ctrl_reg = ldo->base + WM831X_LDO_CONTROL; | ||
203 | int on_reg = ldo->base + WM831X_LDO_ON_CONTROL; | ||
204 | int ret; | ||
205 | |||
206 | |||
207 | switch (mode) { | ||
208 | case REGULATOR_MODE_NORMAL: | ||
209 | ret = wm831x_set_bits(wm831x, on_reg, | ||
210 | WM831X_LDO1_ON_MODE, 0); | ||
211 | if (ret < 0) | ||
212 | return ret; | ||
213 | break; | ||
214 | |||
215 | case REGULATOR_MODE_IDLE: | ||
216 | ret = wm831x_set_bits(wm831x, ctrl_reg, | ||
217 | WM831X_LDO1_LP_MODE, | ||
218 | WM831X_LDO1_LP_MODE); | ||
219 | if (ret < 0) | ||
220 | return ret; | ||
221 | |||
222 | ret = wm831x_set_bits(wm831x, on_reg, | ||
223 | WM831X_LDO1_ON_MODE, | ||
224 | WM831X_LDO1_ON_MODE); | ||
225 | if (ret < 0) | ||
226 | return ret; | ||
227 | |||
228 | case REGULATOR_MODE_STANDBY: | ||
229 | ret = wm831x_set_bits(wm831x, ctrl_reg, | ||
230 | WM831X_LDO1_LP_MODE, 0); | ||
231 | if (ret < 0) | ||
232 | return ret; | ||
233 | |||
234 | ret = wm831x_set_bits(wm831x, on_reg, | ||
235 | WM831X_LDO1_ON_MODE, | ||
236 | WM831X_LDO1_ON_MODE); | ||
237 | if (ret < 0) | ||
238 | return ret; | ||
239 | break; | ||
240 | |||
241 | default: | ||
242 | return -EINVAL; | ||
243 | } | ||
244 | |||
245 | return 0; | ||
246 | } | ||
247 | |||
248 | static int wm831x_gp_ldo_get_status(struct regulator_dev *rdev) | ||
249 | { | ||
250 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
251 | struct wm831x *wm831x = ldo->wm831x; | ||
252 | int mask = 1 << rdev_get_id(rdev); | ||
253 | int ret; | ||
254 | |||
255 | /* Is the regulator on? */ | ||
256 | ret = wm831x_reg_read(wm831x, WM831X_LDO_STATUS); | ||
257 | if (ret < 0) | ||
258 | return ret; | ||
259 | if (!(ret & mask)) | ||
260 | return REGULATOR_STATUS_OFF; | ||
261 | |||
262 | /* Is it reporting under voltage? */ | ||
263 | ret = wm831x_reg_read(wm831x, WM831X_LDO_UV_STATUS); | ||
264 | if (ret & mask) | ||
265 | return REGULATOR_STATUS_ERROR; | ||
266 | |||
267 | ret = wm831x_gp_ldo_get_mode(rdev); | ||
268 | if (ret < 0) | ||
269 | return ret; | ||
270 | else | ||
271 | return regulator_mode_to_status(ret); | ||
272 | } | ||
273 | |||
274 | static unsigned int wm831x_gp_ldo_get_optimum_mode(struct regulator_dev *rdev, | ||
275 | int input_uV, | ||
276 | int output_uV, int load_uA) | ||
277 | { | ||
278 | if (load_uA < 20000) | ||
279 | return REGULATOR_MODE_STANDBY; | ||
280 | if (load_uA < 50000) | ||
281 | return REGULATOR_MODE_IDLE; | ||
282 | return REGULATOR_MODE_NORMAL; | ||
283 | } | ||
284 | |||
285 | |||
286 | static struct regulator_ops wm831x_gp_ldo_ops = { | ||
287 | .list_voltage = wm831x_gp_ldo_list_voltage, | ||
288 | .get_voltage = wm831x_gp_ldo_get_voltage, | ||
289 | .set_voltage = wm831x_gp_ldo_set_voltage, | ||
290 | .set_suspend_voltage = wm831x_gp_ldo_set_suspend_voltage, | ||
291 | .get_mode = wm831x_gp_ldo_get_mode, | ||
292 | .set_mode = wm831x_gp_ldo_set_mode, | ||
293 | .get_status = wm831x_gp_ldo_get_status, | ||
294 | .get_optimum_mode = wm831x_gp_ldo_get_optimum_mode, | ||
295 | |||
296 | .is_enabled = wm831x_ldo_is_enabled, | ||
297 | .enable = wm831x_ldo_enable, | ||
298 | .disable = wm831x_ldo_disable, | ||
299 | }; | ||
300 | |||
301 | static __devinit int wm831x_gp_ldo_probe(struct platform_device *pdev) | ||
302 | { | ||
303 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
304 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | ||
305 | int id = pdev->id % ARRAY_SIZE(pdata->ldo); | ||
306 | struct wm831x_ldo *ldo; | ||
307 | struct resource *res; | ||
308 | int ret, irq; | ||
309 | |||
310 | dev_dbg(&pdev->dev, "Probing LDO%d\n", id + 1); | ||
311 | |||
312 | if (pdata == NULL || pdata->ldo[id] == NULL) | ||
313 | return -ENODEV; | ||
314 | |||
315 | ldo = kzalloc(sizeof(struct wm831x_ldo), GFP_KERNEL); | ||
316 | if (ldo == NULL) { | ||
317 | dev_err(&pdev->dev, "Unable to allocate private data\n"); | ||
318 | return -ENOMEM; | ||
319 | } | ||
320 | |||
321 | ldo->wm831x = wm831x; | ||
322 | |||
323 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | ||
324 | if (res == NULL) { | ||
325 | dev_err(&pdev->dev, "No I/O resource\n"); | ||
326 | ret = -EINVAL; | ||
327 | goto err; | ||
328 | } | ||
329 | ldo->base = res->start; | ||
330 | |||
331 | snprintf(ldo->name, sizeof(ldo->name), "LDO%d", id + 1); | ||
332 | ldo->desc.name = ldo->name; | ||
333 | ldo->desc.id = id; | ||
334 | ldo->desc.type = REGULATOR_VOLTAGE; | ||
335 | ldo->desc.n_voltages = WM831X_GP_LDO_MAX_SELECTOR + 1; | ||
336 | ldo->desc.ops = &wm831x_gp_ldo_ops; | ||
337 | ldo->desc.owner = THIS_MODULE; | ||
338 | |||
339 | ldo->regulator = regulator_register(&ldo->desc, &pdev->dev, | ||
340 | pdata->ldo[id], ldo); | ||
341 | if (IS_ERR(ldo->regulator)) { | ||
342 | ret = PTR_ERR(ldo->regulator); | ||
343 | dev_err(wm831x->dev, "Failed to register LDO%d: %d\n", | ||
344 | id + 1, ret); | ||
345 | goto err; | ||
346 | } | ||
347 | |||
348 | irq = platform_get_irq_byname(pdev, "UV"); | ||
349 | ret = wm831x_request_irq(wm831x, irq, wm831x_ldo_uv_irq, | ||
350 | IRQF_TRIGGER_RISING, ldo->name, | ||
351 | ldo); | ||
352 | if (ret != 0) { | ||
353 | dev_err(&pdev->dev, "Failed to request UV IRQ %d: %d\n", | ||
354 | irq, ret); | ||
355 | goto err_regulator; | ||
356 | } | ||
357 | |||
358 | platform_set_drvdata(pdev, ldo); | ||
359 | |||
360 | return 0; | ||
361 | |||
362 | err_regulator: | ||
363 | regulator_unregister(ldo->regulator); | ||
364 | err: | ||
365 | kfree(ldo); | ||
366 | return ret; | ||
367 | } | ||
368 | |||
369 | static __devexit int wm831x_gp_ldo_remove(struct platform_device *pdev) | ||
370 | { | ||
371 | struct wm831x_ldo *ldo = platform_get_drvdata(pdev); | ||
372 | struct wm831x *wm831x = ldo->wm831x; | ||
373 | |||
374 | wm831x_free_irq(wm831x, platform_get_irq_byname(pdev, "UV"), ldo); | ||
375 | regulator_unregister(ldo->regulator); | ||
376 | kfree(ldo); | ||
377 | |||
378 | return 0; | ||
379 | } | ||
380 | |||
381 | static struct platform_driver wm831x_gp_ldo_driver = { | ||
382 | .probe = wm831x_gp_ldo_probe, | ||
383 | .remove = __devexit_p(wm831x_gp_ldo_remove), | ||
384 | .driver = { | ||
385 | .name = "wm831x-ldo", | ||
386 | }, | ||
387 | }; | ||
388 | |||
389 | /* | ||
390 | * Analogue LDOs | ||
391 | */ | ||
392 | |||
393 | |||
394 | #define WM831X_ALDO_SELECTOR_LOW 0xc | ||
395 | #define WM831X_ALDO_MAX_SELECTOR 0x1f | ||
396 | |||
397 | static int wm831x_aldo_list_voltage(struct regulator_dev *rdev, | ||
398 | unsigned int selector) | ||
399 | { | ||
400 | /* 1-1.6V in 50mV steps */ | ||
401 | if (selector <= WM831X_ALDO_SELECTOR_LOW) | ||
402 | return 1000000 + (selector * 50000); | ||
403 | /* 1.7-3.5V in 50mV steps */ | ||
404 | if (selector <= WM831X_ALDO_MAX_SELECTOR) | ||
405 | return 1600000 + ((selector - WM831X_ALDO_SELECTOR_LOW) | ||
406 | * 100000); | ||
407 | return -EINVAL; | ||
408 | } | ||
409 | |||
410 | static int wm831x_aldo_set_voltage_int(struct regulator_dev *rdev, int reg, | ||
411 | int min_uV, int max_uV) | ||
412 | { | ||
413 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
414 | struct wm831x *wm831x = ldo->wm831x; | ||
415 | int vsel, ret; | ||
416 | |||
417 | if (min_uV < 1000000) | ||
418 | vsel = 0; | ||
419 | else if (min_uV < 1700000) | ||
420 | vsel = ((min_uV - 1000000) / 50000); | ||
421 | else | ||
422 | vsel = ((min_uV - 1700000) / 100000) | ||
423 | + WM831X_ALDO_SELECTOR_LOW + 1; | ||
424 | |||
425 | ret = wm831x_aldo_list_voltage(rdev, vsel); | ||
426 | if (ret < 0) | ||
427 | return ret; | ||
428 | if (ret < min_uV || ret > max_uV) | ||
429 | return -EINVAL; | ||
430 | |||
431 | return wm831x_set_bits(wm831x, reg, WM831X_LDO7_ON_VSEL_MASK, vsel); | ||
432 | } | ||
433 | |||
434 | static int wm831x_aldo_set_voltage(struct regulator_dev *rdev, | ||
435 | int min_uV, int max_uV) | ||
436 | { | ||
437 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
438 | int reg = ldo->base + WM831X_LDO_ON_CONTROL; | ||
439 | |||
440 | return wm831x_aldo_set_voltage_int(rdev, reg, min_uV, max_uV); | ||
441 | } | ||
442 | |||
443 | static int wm831x_aldo_set_suspend_voltage(struct regulator_dev *rdev, | ||
444 | int uV) | ||
445 | { | ||
446 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
447 | int reg = ldo->base + WM831X_LDO_SLEEP_CONTROL; | ||
448 | |||
449 | return wm831x_aldo_set_voltage_int(rdev, reg, uV, uV); | ||
450 | } | ||
451 | |||
452 | static int wm831x_aldo_get_voltage(struct regulator_dev *rdev) | ||
453 | { | ||
454 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
455 | struct wm831x *wm831x = ldo->wm831x; | ||
456 | int reg = ldo->base + WM831X_LDO_ON_CONTROL; | ||
457 | int ret; | ||
458 | |||
459 | ret = wm831x_reg_read(wm831x, reg); | ||
460 | if (ret < 0) | ||
461 | return ret; | ||
462 | |||
463 | ret &= WM831X_LDO7_ON_VSEL_MASK; | ||
464 | |||
465 | return wm831x_aldo_list_voltage(rdev, ret); | ||
466 | } | ||
467 | |||
468 | static unsigned int wm831x_aldo_get_mode(struct regulator_dev *rdev) | ||
469 | { | ||
470 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
471 | struct wm831x *wm831x = ldo->wm831x; | ||
472 | int on_reg = ldo->base + WM831X_LDO_ON_CONTROL; | ||
473 | unsigned int ret; | ||
474 | |||
475 | ret = wm831x_reg_read(wm831x, on_reg); | ||
476 | if (ret < 0) | ||
477 | return 0; | ||
478 | |||
479 | if (ret & WM831X_LDO7_ON_MODE) | ||
480 | return REGULATOR_MODE_IDLE; | ||
481 | else | ||
482 | return REGULATOR_MODE_NORMAL; | ||
483 | } | ||
484 | |||
485 | static int wm831x_aldo_set_mode(struct regulator_dev *rdev, | ||
486 | unsigned int mode) | ||
487 | { | ||
488 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
489 | struct wm831x *wm831x = ldo->wm831x; | ||
490 | int ctrl_reg = ldo->base + WM831X_LDO_CONTROL; | ||
491 | int on_reg = ldo->base + WM831X_LDO_ON_CONTROL; | ||
492 | int ret; | ||
493 | |||
494 | |||
495 | switch (mode) { | ||
496 | case REGULATOR_MODE_NORMAL: | ||
497 | ret = wm831x_set_bits(wm831x, on_reg, | ||
498 | WM831X_LDO7_ON_MODE, 0); | ||
499 | if (ret < 0) | ||
500 | return ret; | ||
501 | break; | ||
502 | |||
503 | case REGULATOR_MODE_IDLE: | ||
504 | ret = wm831x_set_bits(wm831x, ctrl_reg, | ||
505 | WM831X_LDO7_ON_MODE, | ||
506 | WM831X_LDO7_ON_MODE); | ||
507 | if (ret < 0) | ||
508 | return ret; | ||
509 | break; | ||
510 | |||
511 | default: | ||
512 | return -EINVAL; | ||
513 | } | ||
514 | |||
515 | return 0; | ||
516 | } | ||
517 | |||
518 | static int wm831x_aldo_get_status(struct regulator_dev *rdev) | ||
519 | { | ||
520 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
521 | struct wm831x *wm831x = ldo->wm831x; | ||
522 | int mask = 1 << rdev_get_id(rdev); | ||
523 | int ret; | ||
524 | |||
525 | /* Is the regulator on? */ | ||
526 | ret = wm831x_reg_read(wm831x, WM831X_LDO_STATUS); | ||
527 | if (ret < 0) | ||
528 | return ret; | ||
529 | if (!(ret & mask)) | ||
530 | return REGULATOR_STATUS_OFF; | ||
531 | |||
532 | /* Is it reporting under voltage? */ | ||
533 | ret = wm831x_reg_read(wm831x, WM831X_LDO_UV_STATUS); | ||
534 | if (ret & mask) | ||
535 | return REGULATOR_STATUS_ERROR; | ||
536 | |||
537 | ret = wm831x_aldo_get_mode(rdev); | ||
538 | if (ret < 0) | ||
539 | return ret; | ||
540 | else | ||
541 | return regulator_mode_to_status(ret); | ||
542 | } | ||
543 | |||
544 | static struct regulator_ops wm831x_aldo_ops = { | ||
545 | .list_voltage = wm831x_aldo_list_voltage, | ||
546 | .get_voltage = wm831x_aldo_get_voltage, | ||
547 | .set_voltage = wm831x_aldo_set_voltage, | ||
548 | .set_suspend_voltage = wm831x_aldo_set_suspend_voltage, | ||
549 | .get_mode = wm831x_aldo_get_mode, | ||
550 | .set_mode = wm831x_aldo_set_mode, | ||
551 | .get_status = wm831x_aldo_get_status, | ||
552 | |||
553 | .is_enabled = wm831x_ldo_is_enabled, | ||
554 | .enable = wm831x_ldo_enable, | ||
555 | .disable = wm831x_ldo_disable, | ||
556 | }; | ||
557 | |||
558 | static __devinit int wm831x_aldo_probe(struct platform_device *pdev) | ||
559 | { | ||
560 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
561 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | ||
562 | int id = pdev->id % ARRAY_SIZE(pdata->ldo); | ||
563 | struct wm831x_ldo *ldo; | ||
564 | struct resource *res; | ||
565 | int ret, irq; | ||
566 | |||
567 | dev_dbg(&pdev->dev, "Probing LDO%d\n", id + 1); | ||
568 | |||
569 | if (pdata == NULL || pdata->ldo[id] == NULL) | ||
570 | return -ENODEV; | ||
571 | |||
572 | ldo = kzalloc(sizeof(struct wm831x_ldo), GFP_KERNEL); | ||
573 | if (ldo == NULL) { | ||
574 | dev_err(&pdev->dev, "Unable to allocate private data\n"); | ||
575 | return -ENOMEM; | ||
576 | } | ||
577 | |||
578 | ldo->wm831x = wm831x; | ||
579 | |||
580 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | ||
581 | if (res == NULL) { | ||
582 | dev_err(&pdev->dev, "No I/O resource\n"); | ||
583 | ret = -EINVAL; | ||
584 | goto err; | ||
585 | } | ||
586 | ldo->base = res->start; | ||
587 | |||
588 | snprintf(ldo->name, sizeof(ldo->name), "LDO%d", id + 1); | ||
589 | ldo->desc.name = ldo->name; | ||
590 | ldo->desc.id = id; | ||
591 | ldo->desc.type = REGULATOR_VOLTAGE; | ||
592 | ldo->desc.n_voltages = WM831X_ALDO_MAX_SELECTOR + 1; | ||
593 | ldo->desc.ops = &wm831x_aldo_ops; | ||
594 | ldo->desc.owner = THIS_MODULE; | ||
595 | |||
596 | ldo->regulator = regulator_register(&ldo->desc, &pdev->dev, | ||
597 | pdata->ldo[id], ldo); | ||
598 | if (IS_ERR(ldo->regulator)) { | ||
599 | ret = PTR_ERR(ldo->regulator); | ||
600 | dev_err(wm831x->dev, "Failed to register LDO%d: %d\n", | ||
601 | id + 1, ret); | ||
602 | goto err; | ||
603 | } | ||
604 | |||
605 | irq = platform_get_irq_byname(pdev, "UV"); | ||
606 | ret = wm831x_request_irq(wm831x, irq, wm831x_ldo_uv_irq, | ||
607 | IRQF_TRIGGER_RISING, ldo->name, | ||
608 | ldo); | ||
609 | if (ret != 0) { | ||
610 | dev_err(&pdev->dev, "Failed to request UV IRQ %d: %d\n", | ||
611 | irq, ret); | ||
612 | goto err_regulator; | ||
613 | } | ||
614 | |||
615 | platform_set_drvdata(pdev, ldo); | ||
616 | |||
617 | return 0; | ||
618 | |||
619 | err_regulator: | ||
620 | regulator_unregister(ldo->regulator); | ||
621 | err: | ||
622 | kfree(ldo); | ||
623 | return ret; | ||
624 | } | ||
625 | |||
626 | static __devexit int wm831x_aldo_remove(struct platform_device *pdev) | ||
627 | { | ||
628 | struct wm831x_ldo *ldo = platform_get_drvdata(pdev); | ||
629 | struct wm831x *wm831x = ldo->wm831x; | ||
630 | |||
631 | wm831x_free_irq(wm831x, platform_get_irq_byname(pdev, "UV"), ldo); | ||
632 | regulator_unregister(ldo->regulator); | ||
633 | kfree(ldo); | ||
634 | |||
635 | return 0; | ||
636 | } | ||
637 | |||
638 | static struct platform_driver wm831x_aldo_driver = { | ||
639 | .probe = wm831x_aldo_probe, | ||
640 | .remove = __devexit_p(wm831x_aldo_remove), | ||
641 | .driver = { | ||
642 | .name = "wm831x-aldo", | ||
643 | }, | ||
644 | }; | ||
645 | |||
646 | /* | ||
647 | * Alive LDO | ||
648 | */ | ||
649 | |||
650 | #define WM831X_ALIVE_LDO_MAX_SELECTOR 0xf | ||
651 | |||
652 | static int wm831x_alive_ldo_list_voltage(struct regulator_dev *rdev, | ||
653 | unsigned int selector) | ||
654 | { | ||
655 | /* 0.8-1.55V in 50mV steps */ | ||
656 | if (selector <= WM831X_ALIVE_LDO_MAX_SELECTOR) | ||
657 | return 800000 + (selector * 50000); | ||
658 | return -EINVAL; | ||
659 | } | ||
660 | |||
661 | static int wm831x_alive_ldo_set_voltage_int(struct regulator_dev *rdev, | ||
662 | int reg, | ||
663 | int min_uV, int max_uV) | ||
664 | { | ||
665 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
666 | struct wm831x *wm831x = ldo->wm831x; | ||
667 | int vsel, ret; | ||
668 | |||
669 | vsel = (min_uV - 800000) / 50000; | ||
670 | |||
671 | ret = wm831x_alive_ldo_list_voltage(rdev, vsel); | ||
672 | if (ret < 0) | ||
673 | return ret; | ||
674 | if (ret < min_uV || ret > max_uV) | ||
675 | return -EINVAL; | ||
676 | |||
677 | return wm831x_set_bits(wm831x, reg, WM831X_LDO11_ON_VSEL_MASK, vsel); | ||
678 | } | ||
679 | |||
680 | static int wm831x_alive_ldo_set_voltage(struct regulator_dev *rdev, | ||
681 | int min_uV, int max_uV) | ||
682 | { | ||
683 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
684 | int reg = ldo->base + WM831X_ALIVE_LDO_ON_CONTROL; | ||
685 | |||
686 | return wm831x_alive_ldo_set_voltage_int(rdev, reg, min_uV, max_uV); | ||
687 | } | ||
688 | |||
689 | static int wm831x_alive_ldo_set_suspend_voltage(struct regulator_dev *rdev, | ||
690 | int uV) | ||
691 | { | ||
692 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
693 | int reg = ldo->base + WM831X_ALIVE_LDO_SLEEP_CONTROL; | ||
694 | |||
695 | return wm831x_alive_ldo_set_voltage_int(rdev, reg, uV, uV); | ||
696 | } | ||
697 | |||
698 | static int wm831x_alive_ldo_get_voltage(struct regulator_dev *rdev) | ||
699 | { | ||
700 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
701 | struct wm831x *wm831x = ldo->wm831x; | ||
702 | int reg = ldo->base + WM831X_ALIVE_LDO_ON_CONTROL; | ||
703 | int ret; | ||
704 | |||
705 | ret = wm831x_reg_read(wm831x, reg); | ||
706 | if (ret < 0) | ||
707 | return ret; | ||
708 | |||
709 | ret &= WM831X_LDO11_ON_VSEL_MASK; | ||
710 | |||
711 | return wm831x_alive_ldo_list_voltage(rdev, ret); | ||
712 | } | ||
713 | |||
714 | static int wm831x_alive_ldo_get_status(struct regulator_dev *rdev) | ||
715 | { | ||
716 | struct wm831x_ldo *ldo = rdev_get_drvdata(rdev); | ||
717 | struct wm831x *wm831x = ldo->wm831x; | ||
718 | int mask = 1 << rdev_get_id(rdev); | ||
719 | int ret; | ||
720 | |||
721 | /* Is the regulator on? */ | ||
722 | ret = wm831x_reg_read(wm831x, WM831X_LDO_STATUS); | ||
723 | if (ret < 0) | ||
724 | return ret; | ||
725 | if (ret & mask) | ||
726 | return REGULATOR_STATUS_ON; | ||
727 | else | ||
728 | return REGULATOR_STATUS_OFF; | ||
729 | } | ||
730 | |||
731 | static struct regulator_ops wm831x_alive_ldo_ops = { | ||
732 | .list_voltage = wm831x_alive_ldo_list_voltage, | ||
733 | .get_voltage = wm831x_alive_ldo_get_voltage, | ||
734 | .set_voltage = wm831x_alive_ldo_set_voltage, | ||
735 | .set_suspend_voltage = wm831x_alive_ldo_set_suspend_voltage, | ||
736 | .get_status = wm831x_alive_ldo_get_status, | ||
737 | |||
738 | .is_enabled = wm831x_ldo_is_enabled, | ||
739 | .enable = wm831x_ldo_enable, | ||
740 | .disable = wm831x_ldo_disable, | ||
741 | }; | ||
742 | |||
743 | static __devinit int wm831x_alive_ldo_probe(struct platform_device *pdev) | ||
744 | { | ||
745 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
746 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | ||
747 | int id = pdev->id % ARRAY_SIZE(pdata->ldo); | ||
748 | struct wm831x_ldo *ldo; | ||
749 | struct resource *res; | ||
750 | int ret; | ||
751 | |||
752 | dev_dbg(&pdev->dev, "Probing LDO%d\n", id + 1); | ||
753 | |||
754 | if (pdata == NULL || pdata->ldo[id] == NULL) | ||
755 | return -ENODEV; | ||
756 | |||
757 | ldo = kzalloc(sizeof(struct wm831x_ldo), GFP_KERNEL); | ||
758 | if (ldo == NULL) { | ||
759 | dev_err(&pdev->dev, "Unable to allocate private data\n"); | ||
760 | return -ENOMEM; | ||
761 | } | ||
762 | |||
763 | ldo->wm831x = wm831x; | ||
764 | |||
765 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | ||
766 | if (res == NULL) { | ||
767 | dev_err(&pdev->dev, "No I/O resource\n"); | ||
768 | ret = -EINVAL; | ||
769 | goto err; | ||
770 | } | ||
771 | ldo->base = res->start; | ||
772 | |||
773 | snprintf(ldo->name, sizeof(ldo->name), "LDO%d", id + 1); | ||
774 | ldo->desc.name = ldo->name; | ||
775 | ldo->desc.id = id; | ||
776 | ldo->desc.type = REGULATOR_VOLTAGE; | ||
777 | ldo->desc.n_voltages = WM831X_ALIVE_LDO_MAX_SELECTOR + 1; | ||
778 | ldo->desc.ops = &wm831x_alive_ldo_ops; | ||
779 | ldo->desc.owner = THIS_MODULE; | ||
780 | |||
781 | ldo->regulator = regulator_register(&ldo->desc, &pdev->dev, | ||
782 | pdata->ldo[id], ldo); | ||
783 | if (IS_ERR(ldo->regulator)) { | ||
784 | ret = PTR_ERR(ldo->regulator); | ||
785 | dev_err(wm831x->dev, "Failed to register LDO%d: %d\n", | ||
786 | id + 1, ret); | ||
787 | goto err; | ||
788 | } | ||
789 | |||
790 | platform_set_drvdata(pdev, ldo); | ||
791 | |||
792 | return 0; | ||
793 | |||
794 | err: | ||
795 | kfree(ldo); | ||
796 | return ret; | ||
797 | } | ||
798 | |||
799 | static __devexit int wm831x_alive_ldo_remove(struct platform_device *pdev) | ||
800 | { | ||
801 | struct wm831x_ldo *ldo = platform_get_drvdata(pdev); | ||
802 | |||
803 | regulator_unregister(ldo->regulator); | ||
804 | kfree(ldo); | ||
805 | |||
806 | return 0; | ||
807 | } | ||
808 | |||
809 | static struct platform_driver wm831x_alive_ldo_driver = { | ||
810 | .probe = wm831x_alive_ldo_probe, | ||
811 | .remove = __devexit_p(wm831x_alive_ldo_remove), | ||
812 | .driver = { | ||
813 | .name = "wm831x-alive-ldo", | ||
814 | }, | ||
815 | }; | ||
816 | |||
817 | static int __init wm831x_ldo_init(void) | ||
818 | { | ||
819 | int ret; | ||
820 | |||
821 | ret = platform_driver_register(&wm831x_gp_ldo_driver); | ||
822 | if (ret != 0) | ||
823 | pr_err("Failed to register WM831x GP LDO driver: %d\n", ret); | ||
824 | |||
825 | ret = platform_driver_register(&wm831x_aldo_driver); | ||
826 | if (ret != 0) | ||
827 | pr_err("Failed to register WM831x ALDO driver: %d\n", ret); | ||
828 | |||
829 | ret = platform_driver_register(&wm831x_alive_ldo_driver); | ||
830 | if (ret != 0) | ||
831 | pr_err("Failed to register WM831x alive LDO driver: %d\n", | ||
832 | ret); | ||
833 | |||
834 | return 0; | ||
835 | } | ||
836 | subsys_initcall(wm831x_ldo_init); | ||
837 | |||
838 | static void __exit wm831x_ldo_exit(void) | ||
839 | { | ||
840 | platform_driver_unregister(&wm831x_alive_ldo_driver); | ||
841 | platform_driver_unregister(&wm831x_aldo_driver); | ||
842 | platform_driver_unregister(&wm831x_gp_ldo_driver); | ||
843 | } | ||
844 | module_exit(wm831x_ldo_exit); | ||
845 | |||
846 | /* Module information */ | ||
847 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); | ||
848 | MODULE_DESCRIPTION("WM831x LDO driver"); | ||
849 | MODULE_LICENSE("GPL"); | ||
850 | MODULE_ALIAS("platform:wm831x-ldo"); | ||
851 | MODULE_ALIAS("platform:wm831x-aldo"); | ||
852 | MODULE_ALIAS("platform:wm831x-aliveldo"); | ||
diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig index 81adbdbd5042..73771b09fbd3 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig | |||
@@ -518,6 +518,16 @@ config RTC_DRV_V3020 | |||
518 | This driver can also be built as a module. If so, the module | 518 | This driver can also be built as a module. If so, the module |
519 | will be called rtc-v3020. | 519 | will be called rtc-v3020. |
520 | 520 | ||
521 | config RTC_DRV_WM831X | ||
522 | tristate "Wolfson Microelectronics WM831x RTC" | ||
523 | depends on MFD_WM831X | ||
524 | help | ||
525 | If you say yes here you will get support for the RTC subsystem | ||
526 | of the Wolfson Microelectronics WM831X series PMICs. | ||
527 | |||
528 | This driver can also be built as a module. If so, the module | ||
529 | will be called "rtc-wm831x". | ||
530 | |||
521 | config RTC_DRV_WM8350 | 531 | config RTC_DRV_WM8350 |
522 | tristate "Wolfson Microelectronics WM8350 RTC" | 532 | tristate "Wolfson Microelectronics WM8350 RTC" |
523 | depends on MFD_WM8350 | 533 | depends on MFD_WM8350 |
@@ -535,6 +545,15 @@ config RTC_DRV_PCF50633 | |||
535 | If you say yes here you get support for the RTC subsystem of the | 545 | If you say yes here you get support for the RTC subsystem of the |
536 | NXP PCF50633 used in embedded systems. | 546 | NXP PCF50633 used in embedded systems. |
537 | 547 | ||
548 | config RTC_DRV_AB3100 | ||
549 | tristate "ST-Ericsson AB3100 RTC" | ||
550 | depends on AB3100_CORE | ||
551 | default y if AB3100_CORE | ||
552 | help | ||
553 | Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC | ||
554 | support. This chip contains a battery- and capacitor-backed RTC. | ||
555 | |||
556 | |||
538 | comment "on-CPU RTC drivers" | 557 | comment "on-CPU RTC drivers" |
539 | 558 | ||
540 | config RTC_DRV_OMAP | 559 | config RTC_DRV_OMAP |
diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile index 3c0f2b2ac927..5e152ffe5058 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile | |||
@@ -17,6 +17,7 @@ rtc-core-$(CONFIG_RTC_INTF_SYSFS) += rtc-sysfs.o | |||
17 | 17 | ||
18 | # Keep the list ordered. | 18 | # Keep the list ordered. |
19 | 19 | ||
20 | obj-$(CONFIG_RTC_DRV_AB3100) += rtc-ab3100.o | ||
20 | obj-$(CONFIG_RTC_DRV_AT32AP700X)+= rtc-at32ap700x.o | 21 | obj-$(CONFIG_RTC_DRV_AT32AP700X)+= rtc-at32ap700x.o |
21 | obj-$(CONFIG_RTC_DRV_AT91RM9200)+= rtc-at91rm9200.o | 22 | obj-$(CONFIG_RTC_DRV_AT91RM9200)+= rtc-at91rm9200.o |
22 | obj-$(CONFIG_RTC_DRV_AT91SAM9) += rtc-at91sam9.o | 23 | obj-$(CONFIG_RTC_DRV_AT91SAM9) += rtc-at91sam9.o |
@@ -74,6 +75,7 @@ obj-$(CONFIG_RTC_DRV_TWL4030) += rtc-twl4030.o | |||
74 | obj-$(CONFIG_RTC_DRV_TX4939) += rtc-tx4939.o | 75 | obj-$(CONFIG_RTC_DRV_TX4939) += rtc-tx4939.o |
75 | obj-$(CONFIG_RTC_DRV_V3020) += rtc-v3020.o | 76 | obj-$(CONFIG_RTC_DRV_V3020) += rtc-v3020.o |
76 | obj-$(CONFIG_RTC_DRV_VR41XX) += rtc-vr41xx.o | 77 | obj-$(CONFIG_RTC_DRV_VR41XX) += rtc-vr41xx.o |
78 | obj-$(CONFIG_RTC_DRV_WM831X) += rtc-wm831x.o | ||
77 | obj-$(CONFIG_RTC_DRV_WM8350) += rtc-wm8350.o | 79 | obj-$(CONFIG_RTC_DRV_WM8350) += rtc-wm8350.o |
78 | obj-$(CONFIG_RTC_DRV_X1205) += rtc-x1205.o | 80 | obj-$(CONFIG_RTC_DRV_X1205) += rtc-x1205.o |
79 | obj-$(CONFIG_RTC_DRV_PCF50633) += rtc-pcf50633.o | 81 | obj-$(CONFIG_RTC_DRV_PCF50633) += rtc-pcf50633.o |
diff --git a/drivers/rtc/rtc-ab3100.c b/drivers/rtc/rtc-ab3100.c new file mode 100644 index 000000000000..4704aac2b5af --- /dev/null +++ b/drivers/rtc/rtc-ab3100.c | |||
@@ -0,0 +1,281 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2009 ST-Ericsson AB | ||
3 | * License terms: GNU General Public License (GPL) version 2 | ||
4 | * RTC clock driver for the AB3100 Analog Baseband Chip | ||
5 | * Author: Linus Walleij <linus.walleij@stericsson.com> | ||
6 | */ | ||
7 | #include <linux/module.h> | ||
8 | #include <linux/kernel.h> | ||
9 | #include <linux/init.h> | ||
10 | #include <linux/platform_device.h> | ||
11 | #include <linux/rtc.h> | ||
12 | #include <linux/mfd/ab3100.h> | ||
13 | |||
14 | /* Clock rate in Hz */ | ||
15 | #define AB3100_RTC_CLOCK_RATE 32768 | ||
16 | |||
17 | /* | ||
18 | * The AB3100 RTC registers. These are the same for | ||
19 | * AB3000 and AB3100. | ||
20 | * Control register: | ||
21 | * Bit 0: RTC Monitor cleared=0, active=1, if you set it | ||
22 | * to 1 it remains active until RTC power is lost. | ||
23 | * Bit 1: 32 kHz Oscillator, 0 = on, 1 = bypass | ||
24 | * Bit 2: Alarm on, 0 = off, 1 = on | ||
25 | * Bit 3: 32 kHz buffer disabling, 0 = enabled, 1 = disabled | ||
26 | */ | ||
27 | #define AB3100_RTC 0x53 | ||
28 | /* default setting, buffer disabled, alarm on */ | ||
29 | #define RTC_SETTING 0x30 | ||
30 | /* Alarm when AL0-AL3 == TI0-TI3 */ | ||
31 | #define AB3100_AL0 0x56 | ||
32 | #define AB3100_AL1 0x57 | ||
33 | #define AB3100_AL2 0x58 | ||
34 | #define AB3100_AL3 0x59 | ||
35 | /* This 48-bit register that counts up at 32768 Hz */ | ||
36 | #define AB3100_TI0 0x5a | ||
37 | #define AB3100_TI1 0x5b | ||
38 | #define AB3100_TI2 0x5c | ||
39 | #define AB3100_TI3 0x5d | ||
40 | #define AB3100_TI4 0x5e | ||
41 | #define AB3100_TI5 0x5f | ||
42 | |||
43 | /* | ||
44 | * RTC clock functions and device struct declaration | ||
45 | */ | ||
46 | static int ab3100_rtc_set_mmss(struct device *dev, unsigned long secs) | ||
47 | { | ||
48 | struct ab3100 *ab3100_data = dev_get_drvdata(dev); | ||
49 | u8 regs[] = {AB3100_TI0, AB3100_TI1, AB3100_TI2, | ||
50 | AB3100_TI3, AB3100_TI4, AB3100_TI5}; | ||
51 | unsigned char buf[6]; | ||
52 | u64 fat_time = (u64) secs * AB3100_RTC_CLOCK_RATE * 2; | ||
53 | int err = 0; | ||
54 | int i; | ||
55 | |||
56 | buf[0] = (fat_time) & 0xFF; | ||
57 | buf[1] = (fat_time >> 8) & 0xFF; | ||
58 | buf[2] = (fat_time >> 16) & 0xFF; | ||
59 | buf[3] = (fat_time >> 24) & 0xFF; | ||
60 | buf[4] = (fat_time >> 32) & 0xFF; | ||
61 | buf[5] = (fat_time >> 40) & 0xFF; | ||
62 | |||
63 | for (i = 0; i < 6; i++) { | ||
64 | err = ab3100_set_register_interruptible(ab3100_data, | ||
65 | regs[i], buf[i]); | ||
66 | if (err) | ||
67 | return err; | ||
68 | } | ||
69 | |||
70 | /* Set the flag to mark that the clock is now set */ | ||
71 | return ab3100_mask_and_set_register_interruptible(ab3100_data, | ||
72 | AB3100_RTC, | ||
73 | 0xFE, 0x01); | ||
74 | |||
75 | } | ||
76 | |||
77 | static int ab3100_rtc_read_time(struct device *dev, struct rtc_time *tm) | ||
78 | { | ||
79 | struct ab3100 *ab3100_data = dev_get_drvdata(dev); | ||
80 | unsigned long time; | ||
81 | u8 rtcval; | ||
82 | int err; | ||
83 | |||
84 | err = ab3100_get_register_interruptible(ab3100_data, | ||
85 | AB3100_RTC, &rtcval); | ||
86 | if (err) | ||
87 | return err; | ||
88 | |||
89 | if (!(rtcval & 0x01)) { | ||
90 | dev_info(dev, "clock not set (lost power)"); | ||
91 | return -EINVAL; | ||
92 | } else { | ||
93 | u64 fat_time; | ||
94 | u8 buf[6]; | ||
95 | |||
96 | /* Read out time registers */ | ||
97 | err = ab3100_get_register_page_interruptible(ab3100_data, | ||
98 | AB3100_TI0, | ||
99 | buf, 6); | ||
100 | if (err != 0) | ||
101 | return err; | ||
102 | |||
103 | fat_time = ((u64) buf[5] << 40) | ((u64) buf[4] << 32) | | ||
104 | ((u64) buf[3] << 24) | ((u64) buf[2] << 16) | | ||
105 | ((u64) buf[1] << 8) | (u64) buf[0]; | ||
106 | time = (unsigned long) (fat_time / | ||
107 | (u64) (AB3100_RTC_CLOCK_RATE * 2)); | ||
108 | } | ||
109 | |||
110 | rtc_time_to_tm(time, tm); | ||
111 | |||
112 | return rtc_valid_tm(tm); | ||
113 | } | ||
114 | |||
115 | static int ab3100_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm) | ||
116 | { | ||
117 | struct ab3100 *ab3100_data = dev_get_drvdata(dev); | ||
118 | unsigned long time; | ||
119 | u64 fat_time; | ||
120 | u8 buf[6]; | ||
121 | u8 rtcval; | ||
122 | int err; | ||
123 | |||
124 | /* Figure out if alarm is enabled or not */ | ||
125 | err = ab3100_get_register_interruptible(ab3100_data, | ||
126 | AB3100_RTC, &rtcval); | ||
127 | if (err) | ||
128 | return err; | ||
129 | if (rtcval & 0x04) | ||
130 | alarm->enabled = 1; | ||
131 | else | ||
132 | alarm->enabled = 0; | ||
133 | /* No idea how this could be represented */ | ||
134 | alarm->pending = 0; | ||
135 | /* Read out alarm registers, only 4 bytes */ | ||
136 | err = ab3100_get_register_page_interruptible(ab3100_data, | ||
137 | AB3100_AL0, buf, 4); | ||
138 | if (err) | ||
139 | return err; | ||
140 | fat_time = ((u64) buf[3] << 40) | ((u64) buf[2] << 32) | | ||
141 | ((u64) buf[1] << 24) | ((u64) buf[0] << 16); | ||
142 | time = (unsigned long) (fat_time / (u64) (AB3100_RTC_CLOCK_RATE * 2)); | ||
143 | |||
144 | rtc_time_to_tm(time, &alarm->time); | ||
145 | |||
146 | return rtc_valid_tm(&alarm->time); | ||
147 | } | ||
148 | |||
149 | static int ab3100_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alarm) | ||
150 | { | ||
151 | struct ab3100 *ab3100_data = dev_get_drvdata(dev); | ||
152 | u8 regs[] = {AB3100_AL0, AB3100_AL1, AB3100_AL2, AB3100_AL3}; | ||
153 | unsigned char buf[4]; | ||
154 | unsigned long secs; | ||
155 | u64 fat_time; | ||
156 | int err; | ||
157 | int i; | ||
158 | |||
159 | rtc_tm_to_time(&alarm->time, &secs); | ||
160 | fat_time = (u64) secs * AB3100_RTC_CLOCK_RATE * 2; | ||
161 | buf[0] = (fat_time >> 16) & 0xFF; | ||
162 | buf[1] = (fat_time >> 24) & 0xFF; | ||
163 | buf[2] = (fat_time >> 32) & 0xFF; | ||
164 | buf[3] = (fat_time >> 40) & 0xFF; | ||
165 | |||
166 | /* Set the alarm */ | ||
167 | for (i = 0; i < 4; i++) { | ||
168 | err = ab3100_set_register_interruptible(ab3100_data, | ||
169 | regs[i], buf[i]); | ||
170 | if (err) | ||
171 | return err; | ||
172 | } | ||
173 | /* Then enable the alarm */ | ||
174 | return ab3100_mask_and_set_register_interruptible(ab3100_data, | ||
175 | AB3100_RTC, ~(1 << 2), | ||
176 | alarm->enabled << 2); | ||
177 | } | ||
178 | |||
179 | static int ab3100_rtc_irq_enable(struct device *dev, unsigned int enabled) | ||
180 | { | ||
181 | struct ab3100 *ab3100_data = dev_get_drvdata(dev); | ||
182 | |||
183 | /* | ||
184 | * It's not possible to enable/disable the alarm IRQ for this RTC. | ||
185 | * It does not actually trigger any IRQ: instead its only function is | ||
186 | * to power up the system, if it wasn't on. This will manifest as | ||
187 | * a "power up cause" in the AB3100 power driver (battery charging etc) | ||
188 | * and need to be handled there instead. | ||
189 | */ | ||
190 | if (enabled) | ||
191 | return ab3100_mask_and_set_register_interruptible(ab3100_data, | ||
192 | AB3100_RTC, ~(1 << 2), | ||
193 | 1 << 2); | ||
194 | else | ||
195 | return ab3100_mask_and_set_register_interruptible(ab3100_data, | ||
196 | AB3100_RTC, ~(1 << 2), | ||
197 | 0); | ||
198 | } | ||
199 | |||
200 | static const struct rtc_class_ops ab3100_rtc_ops = { | ||
201 | .read_time = ab3100_rtc_read_time, | ||
202 | .set_mmss = ab3100_rtc_set_mmss, | ||
203 | .read_alarm = ab3100_rtc_read_alarm, | ||
204 | .set_alarm = ab3100_rtc_set_alarm, | ||
205 | .alarm_irq_enable = ab3100_rtc_irq_enable, | ||
206 | }; | ||
207 | |||
208 | static int __init ab3100_rtc_probe(struct platform_device *pdev) | ||
209 | { | ||
210 | int err; | ||
211 | u8 regval; | ||
212 | struct rtc_device *rtc; | ||
213 | struct ab3100 *ab3100_data = platform_get_drvdata(pdev); | ||
214 | |||
215 | /* The first RTC register needs special treatment */ | ||
216 | err = ab3100_get_register_interruptible(ab3100_data, | ||
217 | AB3100_RTC, ®val); | ||
218 | if (err) { | ||
219 | dev_err(&pdev->dev, "unable to read RTC register\n"); | ||
220 | return -ENODEV; | ||
221 | } | ||
222 | |||
223 | if ((regval & 0xFE) != RTC_SETTING) { | ||
224 | dev_warn(&pdev->dev, "not default value in RTC reg 0x%x\n", | ||
225 | regval); | ||
226 | } | ||
227 | |||
228 | if ((regval & 1) == 0) { | ||
229 | /* | ||
230 | * Set bit to detect power loss. | ||
231 | * This bit remains until RTC power is lost. | ||
232 | */ | ||
233 | regval = 1 | RTC_SETTING; | ||
234 | err = ab3100_set_register_interruptible(ab3100_data, | ||
235 | AB3100_RTC, regval); | ||
236 | /* Ignore any error on this write */ | ||
237 | } | ||
238 | |||
239 | rtc = rtc_device_register("ab3100-rtc", &pdev->dev, &ab3100_rtc_ops, | ||
240 | THIS_MODULE); | ||
241 | if (IS_ERR(rtc)) { | ||
242 | err = PTR_ERR(rtc); | ||
243 | return err; | ||
244 | } | ||
245 | |||
246 | return 0; | ||
247 | } | ||
248 | |||
249 | static int __exit ab3100_rtc_remove(struct platform_device *pdev) | ||
250 | { | ||
251 | struct rtc_device *rtc = platform_get_drvdata(pdev); | ||
252 | |||
253 | rtc_device_unregister(rtc); | ||
254 | return 0; | ||
255 | } | ||
256 | |||
257 | static struct platform_driver ab3100_rtc_driver = { | ||
258 | .driver = { | ||
259 | .name = "ab3100-rtc", | ||
260 | .owner = THIS_MODULE, | ||
261 | }, | ||
262 | .remove = __exit_p(ab3100_rtc_remove), | ||
263 | }; | ||
264 | |||
265 | static int __init ab3100_rtc_init(void) | ||
266 | { | ||
267 | return platform_driver_probe(&ab3100_rtc_driver, | ||
268 | ab3100_rtc_probe); | ||
269 | } | ||
270 | |||
271 | static void __exit ab3100_rtc_exit(void) | ||
272 | { | ||
273 | platform_driver_unregister(&ab3100_rtc_driver); | ||
274 | } | ||
275 | |||
276 | module_init(ab3100_rtc_init); | ||
277 | module_exit(ab3100_rtc_exit); | ||
278 | |||
279 | MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>"); | ||
280 | MODULE_DESCRIPTION("AB3100 RTC Driver"); | ||
281 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/rtc/rtc-ds1302.c b/drivers/rtc/rtc-ds1302.c index 184556620778..d490628b64da 100644 --- a/drivers/rtc/rtc-ds1302.c +++ b/drivers/rtc/rtc-ds1302.c | |||
@@ -1,26 +1,25 @@ | |||
1 | /* | 1 | /* |
2 | * Dallas DS1302 RTC Support | 2 | * Dallas DS1302 RTC Support |
3 | * | 3 | * |
4 | * Copyright (C) 2002 David McCullough | 4 | * Copyright (C) 2002 David McCullough |
5 | * Copyright (C) 2003 - 2007 Paul Mundt | 5 | * Copyright (C) 2003 - 2007 Paul Mundt |
6 | * | 6 | * |
7 | * This file is subject to the terms and conditions of the GNU General Public | 7 | * This file is subject to the terms and conditions of the GNU General Public |
8 | * License version 2. See the file "COPYING" in the main directory of | 8 | * License version 2. See the file "COPYING" in the main directory of |
9 | * this archive for more details. | 9 | * this archive for more details. |
10 | */ | 10 | */ |
11 | |||
11 | #include <linux/init.h> | 12 | #include <linux/init.h> |
12 | #include <linux/module.h> | 13 | #include <linux/module.h> |
13 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
14 | #include <linux/platform_device.h> | 15 | #include <linux/platform_device.h> |
15 | #include <linux/time.h> | ||
16 | #include <linux/rtc.h> | 16 | #include <linux/rtc.h> |
17 | #include <linux/spinlock.h> | ||
18 | #include <linux/io.h> | 17 | #include <linux/io.h> |
19 | #include <linux/bcd.h> | 18 | #include <linux/bcd.h> |
20 | #include <asm/rtc.h> | 19 | #include <asm/rtc.h> |
21 | 20 | ||
22 | #define DRV_NAME "rtc-ds1302" | 21 | #define DRV_NAME "rtc-ds1302" |
23 | #define DRV_VERSION "0.1.0" | 22 | #define DRV_VERSION "0.1.1" |
24 | 23 | ||
25 | #define RTC_CMD_READ 0x81 /* Read command */ | 24 | #define RTC_CMD_READ 0x81 /* Read command */ |
26 | #define RTC_CMD_WRITE 0x80 /* Write command */ | 25 | #define RTC_CMD_WRITE 0x80 /* Write command */ |
@@ -47,11 +46,6 @@ | |||
47 | #error "Add support for your platform" | 46 | #error "Add support for your platform" |
48 | #endif | 47 | #endif |
49 | 48 | ||
50 | struct ds1302_rtc { | ||
51 | struct rtc_device *rtc_dev; | ||
52 | spinlock_t lock; | ||
53 | }; | ||
54 | |||
55 | static void ds1302_sendbits(unsigned int val) | 49 | static void ds1302_sendbits(unsigned int val) |
56 | { | 50 | { |
57 | int i; | 51 | int i; |
@@ -103,10 +97,6 @@ static void ds1302_writebyte(unsigned int addr, unsigned int val) | |||
103 | 97 | ||
104 | static int ds1302_rtc_read_time(struct device *dev, struct rtc_time *tm) | 98 | static int ds1302_rtc_read_time(struct device *dev, struct rtc_time *tm) |
105 | { | 99 | { |
106 | struct ds1302_rtc *rtc = dev_get_drvdata(dev); | ||
107 | |||
108 | spin_lock_irq(&rtc->lock); | ||
109 | |||
110 | tm->tm_sec = bcd2bin(ds1302_readbyte(RTC_ADDR_SEC)); | 100 | tm->tm_sec = bcd2bin(ds1302_readbyte(RTC_ADDR_SEC)); |
111 | tm->tm_min = bcd2bin(ds1302_readbyte(RTC_ADDR_MIN)); | 101 | tm->tm_min = bcd2bin(ds1302_readbyte(RTC_ADDR_MIN)); |
112 | tm->tm_hour = bcd2bin(ds1302_readbyte(RTC_ADDR_HOUR)); | 102 | tm->tm_hour = bcd2bin(ds1302_readbyte(RTC_ADDR_HOUR)); |
@@ -118,26 +108,17 @@ static int ds1302_rtc_read_time(struct device *dev, struct rtc_time *tm) | |||
118 | if (tm->tm_year < 70) | 108 | if (tm->tm_year < 70) |
119 | tm->tm_year += 100; | 109 | tm->tm_year += 100; |
120 | 110 | ||
121 | spin_unlock_irq(&rtc->lock); | ||
122 | |||
123 | dev_dbg(dev, "%s: tm is secs=%d, mins=%d, hours=%d, " | 111 | dev_dbg(dev, "%s: tm is secs=%d, mins=%d, hours=%d, " |
124 | "mday=%d, mon=%d, year=%d, wday=%d\n", | 112 | "mday=%d, mon=%d, year=%d, wday=%d\n", |
125 | __func__, | 113 | __func__, |
126 | tm->tm_sec, tm->tm_min, tm->tm_hour, | 114 | tm->tm_sec, tm->tm_min, tm->tm_hour, |
127 | tm->tm_mday, tm->tm_mon + 1, tm->tm_year, tm->tm_wday); | 115 | tm->tm_mday, tm->tm_mon + 1, tm->tm_year, tm->tm_wday); |
128 | 116 | ||
129 | if (rtc_valid_tm(tm) < 0) | 117 | return rtc_valid_tm(tm); |
130 | dev_err(dev, "invalid date\n"); | ||
131 | |||
132 | return 0; | ||
133 | } | 118 | } |
134 | 119 | ||
135 | static int ds1302_rtc_set_time(struct device *dev, struct rtc_time *tm) | 120 | static int ds1302_rtc_set_time(struct device *dev, struct rtc_time *tm) |
136 | { | 121 | { |
137 | struct ds1302_rtc *rtc = dev_get_drvdata(dev); | ||
138 | |||
139 | spin_lock_irq(&rtc->lock); | ||
140 | |||
141 | /* Stop RTC */ | 122 | /* Stop RTC */ |
142 | ds1302_writebyte(RTC_ADDR_SEC, ds1302_readbyte(RTC_ADDR_SEC) | 0x80); | 123 | ds1302_writebyte(RTC_ADDR_SEC, ds1302_readbyte(RTC_ADDR_SEC) | 0x80); |
143 | 124 | ||
@@ -152,8 +133,6 @@ static int ds1302_rtc_set_time(struct device *dev, struct rtc_time *tm) | |||
152 | /* Start RTC */ | 133 | /* Start RTC */ |
153 | ds1302_writebyte(RTC_ADDR_SEC, ds1302_readbyte(RTC_ADDR_SEC) & ~0x80); | 134 | ds1302_writebyte(RTC_ADDR_SEC, ds1302_readbyte(RTC_ADDR_SEC) & ~0x80); |
154 | 135 | ||
155 | spin_unlock_irq(&rtc->lock); | ||
156 | |||
157 | return 0; | 136 | return 0; |
158 | } | 137 | } |
159 | 138 | ||
@@ -170,9 +149,7 @@ static int ds1302_rtc_ioctl(struct device *dev, unsigned int cmd, | |||
170 | if (copy_from_user(&tcs_val, (int __user *)arg, sizeof(int))) | 149 | if (copy_from_user(&tcs_val, (int __user *)arg, sizeof(int))) |
171 | return -EFAULT; | 150 | return -EFAULT; |
172 | 151 | ||
173 | spin_lock_irq(&rtc->lock); | ||
174 | ds1302_writebyte(RTC_ADDR_TCR, (0xa0 | tcs_val * 0xf)); | 152 | ds1302_writebyte(RTC_ADDR_TCR, (0xa0 | tcs_val * 0xf)); |
175 | spin_unlock_irq(&rtc->lock); | ||
176 | return 0; | 153 | return 0; |
177 | } | 154 | } |
178 | #endif | 155 | #endif |
@@ -187,10 +164,9 @@ static struct rtc_class_ops ds1302_rtc_ops = { | |||
187 | .ioctl = ds1302_rtc_ioctl, | 164 | .ioctl = ds1302_rtc_ioctl, |
188 | }; | 165 | }; |
189 | 166 | ||
190 | static int __devinit ds1302_rtc_probe(struct platform_device *pdev) | 167 | static int __init ds1302_rtc_probe(struct platform_device *pdev) |
191 | { | 168 | { |
192 | struct ds1302_rtc *rtc; | 169 | struct rtc_device *rtc; |
193 | int ret; | ||
194 | 170 | ||
195 | /* Reset */ | 171 | /* Reset */ |
196 | set_dp(get_dp() & ~(RTC_RESET | RTC_IODATA | RTC_SCLK)); | 172 | set_dp(get_dp() & ~(RTC_RESET | RTC_IODATA | RTC_SCLK)); |
@@ -200,37 +176,23 @@ static int __devinit ds1302_rtc_probe(struct platform_device *pdev) | |||
200 | if (ds1302_readbyte(RTC_ADDR_RAM0) != 0x42) | 176 | if (ds1302_readbyte(RTC_ADDR_RAM0) != 0x42) |
201 | return -ENODEV; | 177 | return -ENODEV; |
202 | 178 | ||
203 | rtc = kzalloc(sizeof(struct ds1302_rtc), GFP_KERNEL); | 179 | rtc = rtc_device_register("ds1302", &pdev->dev, |
204 | if (unlikely(!rtc)) | ||
205 | return -ENOMEM; | ||
206 | |||
207 | spin_lock_init(&rtc->lock); | ||
208 | rtc->rtc_dev = rtc_device_register("ds1302", &pdev->dev, | ||
209 | &ds1302_rtc_ops, THIS_MODULE); | 180 | &ds1302_rtc_ops, THIS_MODULE); |
210 | if (IS_ERR(rtc->rtc_dev)) { | 181 | if (IS_ERR(rtc)) |
211 | ret = PTR_ERR(rtc->rtc_dev); | 182 | return PTR_ERR(rtc); |
212 | goto out; | ||
213 | } | ||
214 | 183 | ||
215 | platform_set_drvdata(pdev, rtc); | 184 | platform_set_drvdata(pdev, rtc); |
216 | 185 | ||
217 | return 0; | 186 | return 0; |
218 | out: | ||
219 | kfree(rtc); | ||
220 | return ret; | ||
221 | } | 187 | } |
222 | 188 | ||
223 | static int __devexit ds1302_rtc_remove(struct platform_device *pdev) | 189 | static int __devexit ds1302_rtc_remove(struct platform_device *pdev) |
224 | { | 190 | { |
225 | struct ds1302_rtc *rtc = platform_get_drvdata(pdev); | 191 | struct rtc_device *rtc = platform_get_drvdata(pdev); |
226 | |||
227 | if (likely(rtc->rtc_dev)) | ||
228 | rtc_device_unregister(rtc->rtc_dev); | ||
229 | 192 | ||
193 | rtc_device_unregister(rtc); | ||
230 | platform_set_drvdata(pdev, NULL); | 194 | platform_set_drvdata(pdev, NULL); |
231 | 195 | ||
232 | kfree(rtc); | ||
233 | |||
234 | return 0; | 196 | return 0; |
235 | } | 197 | } |
236 | 198 | ||
@@ -239,13 +201,12 @@ static struct platform_driver ds1302_platform_driver = { | |||
239 | .name = DRV_NAME, | 201 | .name = DRV_NAME, |
240 | .owner = THIS_MODULE, | 202 | .owner = THIS_MODULE, |
241 | }, | 203 | }, |
242 | .probe = ds1302_rtc_probe, | 204 | .remove = __exit_p(ds1302_rtc_remove), |
243 | .remove = __devexit_p(ds1302_rtc_remove), | ||
244 | }; | 205 | }; |
245 | 206 | ||
246 | static int __init ds1302_rtc_init(void) | 207 | static int __init ds1302_rtc_init(void) |
247 | { | 208 | { |
248 | return platform_driver_register(&ds1302_platform_driver); | 209 | return platform_driver_probe(&ds1302_platform_driver, ds1302_rtc_probe); |
249 | } | 210 | } |
250 | 211 | ||
251 | static void __exit ds1302_rtc_exit(void) | 212 | static void __exit ds1302_rtc_exit(void) |
diff --git a/drivers/rtc/rtc-sh.c b/drivers/rtc/rtc-sh.c index d7310adb7152..e6ed5404bca0 100644 --- a/drivers/rtc/rtc-sh.c +++ b/drivers/rtc/rtc-sh.c | |||
@@ -29,7 +29,7 @@ | |||
29 | #include <asm/rtc.h> | 29 | #include <asm/rtc.h> |
30 | 30 | ||
31 | #define DRV_NAME "sh-rtc" | 31 | #define DRV_NAME "sh-rtc" |
32 | #define DRV_VERSION "0.2.2" | 32 | #define DRV_VERSION "0.2.3" |
33 | 33 | ||
34 | #define RTC_REG(r) ((r) * rtc_reg_size) | 34 | #define RTC_REG(r) ((r) * rtc_reg_size) |
35 | 35 | ||
@@ -215,7 +215,7 @@ static irqreturn_t sh_rtc_shared(int irq, void *dev_id) | |||
215 | return IRQ_RETVAL(ret); | 215 | return IRQ_RETVAL(ret); |
216 | } | 216 | } |
217 | 217 | ||
218 | static inline void sh_rtc_setpie(struct device *dev, unsigned int enable) | 218 | static int sh_rtc_irq_set_state(struct device *dev, int enable) |
219 | { | 219 | { |
220 | struct sh_rtc *rtc = dev_get_drvdata(dev); | 220 | struct sh_rtc *rtc = dev_get_drvdata(dev); |
221 | unsigned int tmp; | 221 | unsigned int tmp; |
@@ -225,17 +225,22 @@ static inline void sh_rtc_setpie(struct device *dev, unsigned int enable) | |||
225 | tmp = readb(rtc->regbase + RCR2); | 225 | tmp = readb(rtc->regbase + RCR2); |
226 | 226 | ||
227 | if (enable) { | 227 | if (enable) { |
228 | rtc->periodic_freq |= PF_KOU; | ||
228 | tmp &= ~RCR2_PEF; /* Clear PES bit */ | 229 | tmp &= ~RCR2_PEF; /* Clear PES bit */ |
229 | tmp |= (rtc->periodic_freq & ~PF_HP); /* Set PES2-0 */ | 230 | tmp |= (rtc->periodic_freq & ~PF_HP); /* Set PES2-0 */ |
230 | } else | 231 | } else { |
232 | rtc->periodic_freq &= ~PF_KOU; | ||
231 | tmp &= ~(RCR2_PESMASK | RCR2_PEF); | 233 | tmp &= ~(RCR2_PESMASK | RCR2_PEF); |
234 | } | ||
232 | 235 | ||
233 | writeb(tmp, rtc->regbase + RCR2); | 236 | writeb(tmp, rtc->regbase + RCR2); |
234 | 237 | ||
235 | spin_unlock_irq(&rtc->lock); | 238 | spin_unlock_irq(&rtc->lock); |
239 | |||
240 | return 0; | ||
236 | } | 241 | } |
237 | 242 | ||
238 | static inline int sh_rtc_setfreq(struct device *dev, unsigned int freq) | 243 | static int sh_rtc_irq_set_freq(struct device *dev, int freq) |
239 | { | 244 | { |
240 | struct sh_rtc *rtc = dev_get_drvdata(dev); | 245 | struct sh_rtc *rtc = dev_get_drvdata(dev); |
241 | int tmp, ret = 0; | 246 | int tmp, ret = 0; |
@@ -278,10 +283,8 @@ static inline int sh_rtc_setfreq(struct device *dev, unsigned int freq) | |||
278 | ret = -ENOTSUPP; | 283 | ret = -ENOTSUPP; |
279 | } | 284 | } |
280 | 285 | ||
281 | if (ret == 0) { | 286 | if (ret == 0) |
282 | rtc->periodic_freq |= tmp; | 287 | rtc->periodic_freq |= tmp; |
283 | rtc->rtc_dev->irq_freq = freq; | ||
284 | } | ||
285 | 288 | ||
286 | spin_unlock_irq(&rtc->lock); | 289 | spin_unlock_irq(&rtc->lock); |
287 | return ret; | 290 | return ret; |
@@ -346,10 +349,6 @@ static int sh_rtc_ioctl(struct device *dev, unsigned int cmd, unsigned long arg) | |||
346 | unsigned int ret = 0; | 349 | unsigned int ret = 0; |
347 | 350 | ||
348 | switch (cmd) { | 351 | switch (cmd) { |
349 | case RTC_PIE_OFF: | ||
350 | case RTC_PIE_ON: | ||
351 | sh_rtc_setpie(dev, cmd == RTC_PIE_ON); | ||
352 | break; | ||
353 | case RTC_AIE_OFF: | 352 | case RTC_AIE_OFF: |
354 | case RTC_AIE_ON: | 353 | case RTC_AIE_ON: |
355 | sh_rtc_setaie(dev, cmd == RTC_AIE_ON); | 354 | sh_rtc_setaie(dev, cmd == RTC_AIE_ON); |
@@ -362,13 +361,6 @@ static int sh_rtc_ioctl(struct device *dev, unsigned int cmd, unsigned long arg) | |||
362 | rtc->periodic_freq |= PF_OXS; | 361 | rtc->periodic_freq |= PF_OXS; |
363 | sh_rtc_setcie(dev, 1); | 362 | sh_rtc_setcie(dev, 1); |
364 | break; | 363 | break; |
365 | case RTC_IRQP_READ: | ||
366 | ret = put_user(rtc->rtc_dev->irq_freq, | ||
367 | (unsigned long __user *)arg); | ||
368 | break; | ||
369 | case RTC_IRQP_SET: | ||
370 | ret = sh_rtc_setfreq(dev, arg); | ||
371 | break; | ||
372 | default: | 364 | default: |
373 | ret = -ENOIOCTLCMD; | 365 | ret = -ENOIOCTLCMD; |
374 | } | 366 | } |
@@ -602,28 +594,6 @@ static int sh_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *wkalrm) | |||
602 | return 0; | 594 | return 0; |
603 | } | 595 | } |
604 | 596 | ||
605 | static int sh_rtc_irq_set_state(struct device *dev, int enabled) | ||
606 | { | ||
607 | struct platform_device *pdev = to_platform_device(dev); | ||
608 | struct sh_rtc *rtc = platform_get_drvdata(pdev); | ||
609 | |||
610 | if (enabled) { | ||
611 | rtc->periodic_freq |= PF_KOU; | ||
612 | return sh_rtc_ioctl(dev, RTC_PIE_ON, 0); | ||
613 | } else { | ||
614 | rtc->periodic_freq &= ~PF_KOU; | ||
615 | return sh_rtc_ioctl(dev, RTC_PIE_OFF, 0); | ||
616 | } | ||
617 | } | ||
618 | |||
619 | static int sh_rtc_irq_set_freq(struct device *dev, int freq) | ||
620 | { | ||
621 | if (!is_power_of_2(freq)) | ||
622 | return -EINVAL; | ||
623 | |||
624 | return sh_rtc_ioctl(dev, RTC_IRQP_SET, freq); | ||
625 | } | ||
626 | |||
627 | static struct rtc_class_ops sh_rtc_ops = { | 597 | static struct rtc_class_ops sh_rtc_ops = { |
628 | .ioctl = sh_rtc_ioctl, | 598 | .ioctl = sh_rtc_ioctl, |
629 | .read_time = sh_rtc_read_time, | 599 | .read_time = sh_rtc_read_time, |
@@ -635,7 +605,7 @@ static struct rtc_class_ops sh_rtc_ops = { | |||
635 | .proc = sh_rtc_proc, | 605 | .proc = sh_rtc_proc, |
636 | }; | 606 | }; |
637 | 607 | ||
638 | static int __devinit sh_rtc_probe(struct platform_device *pdev) | 608 | static int __init sh_rtc_probe(struct platform_device *pdev) |
639 | { | 609 | { |
640 | struct sh_rtc *rtc; | 610 | struct sh_rtc *rtc; |
641 | struct resource *res; | 611 | struct resource *res; |
@@ -702,13 +672,6 @@ static int __devinit sh_rtc_probe(struct platform_device *pdev) | |||
702 | 672 | ||
703 | clk_enable(rtc->clk); | 673 | clk_enable(rtc->clk); |
704 | 674 | ||
705 | rtc->rtc_dev = rtc_device_register("sh", &pdev->dev, | ||
706 | &sh_rtc_ops, THIS_MODULE); | ||
707 | if (IS_ERR(rtc->rtc_dev)) { | ||
708 | ret = PTR_ERR(rtc->rtc_dev); | ||
709 | goto err_unmap; | ||
710 | } | ||
711 | |||
712 | rtc->capabilities = RTC_DEF_CAPABILITIES; | 675 | rtc->capabilities = RTC_DEF_CAPABILITIES; |
713 | if (pdev->dev.platform_data) { | 676 | if (pdev->dev.platform_data) { |
714 | struct sh_rtc_platform_info *pinfo = pdev->dev.platform_data; | 677 | struct sh_rtc_platform_info *pinfo = pdev->dev.platform_data; |
@@ -720,10 +683,6 @@ static int __devinit sh_rtc_probe(struct platform_device *pdev) | |||
720 | rtc->capabilities |= pinfo->capabilities; | 683 | rtc->capabilities |= pinfo->capabilities; |
721 | } | 684 | } |
722 | 685 | ||
723 | rtc->rtc_dev->max_user_freq = 256; | ||
724 | |||
725 | platform_set_drvdata(pdev, rtc); | ||
726 | |||
727 | if (rtc->carry_irq <= 0) { | 686 | if (rtc->carry_irq <= 0) { |
728 | /* register shared periodic/carry/alarm irq */ | 687 | /* register shared periodic/carry/alarm irq */ |
729 | ret = request_irq(rtc->periodic_irq, sh_rtc_shared, | 688 | ret = request_irq(rtc->periodic_irq, sh_rtc_shared, |
@@ -767,13 +726,26 @@ static int __devinit sh_rtc_probe(struct platform_device *pdev) | |||
767 | } | 726 | } |
768 | } | 727 | } |
769 | 728 | ||
729 | platform_set_drvdata(pdev, rtc); | ||
730 | |||
770 | /* everything disabled by default */ | 731 | /* everything disabled by default */ |
771 | rtc->periodic_freq = 0; | 732 | sh_rtc_irq_set_freq(&pdev->dev, 0); |
772 | rtc->rtc_dev->irq_freq = 0; | 733 | sh_rtc_irq_set_state(&pdev->dev, 0); |
773 | sh_rtc_setpie(&pdev->dev, 0); | ||
774 | sh_rtc_setaie(&pdev->dev, 0); | 734 | sh_rtc_setaie(&pdev->dev, 0); |
775 | sh_rtc_setcie(&pdev->dev, 0); | 735 | sh_rtc_setcie(&pdev->dev, 0); |
776 | 736 | ||
737 | rtc->rtc_dev = rtc_device_register("sh", &pdev->dev, | ||
738 | &sh_rtc_ops, THIS_MODULE); | ||
739 | if (IS_ERR(rtc->rtc_dev)) { | ||
740 | ret = PTR_ERR(rtc->rtc_dev); | ||
741 | free_irq(rtc->periodic_irq, rtc); | ||
742 | free_irq(rtc->carry_irq, rtc); | ||
743 | free_irq(rtc->alarm_irq, rtc); | ||
744 | goto err_unmap; | ||
745 | } | ||
746 | |||
747 | rtc->rtc_dev->max_user_freq = 256; | ||
748 | |||
777 | /* reset rtc to epoch 0 if time is invalid */ | 749 | /* reset rtc to epoch 0 if time is invalid */ |
778 | if (rtc_read_time(rtc->rtc_dev, &r) < 0) { | 750 | if (rtc_read_time(rtc->rtc_dev, &r) < 0) { |
779 | rtc_time_to_tm(0, &r); | 751 | rtc_time_to_tm(0, &r); |
@@ -795,14 +767,13 @@ err_badres: | |||
795 | return ret; | 767 | return ret; |
796 | } | 768 | } |
797 | 769 | ||
798 | static int __devexit sh_rtc_remove(struct platform_device *pdev) | 770 | static int __exit sh_rtc_remove(struct platform_device *pdev) |
799 | { | 771 | { |
800 | struct sh_rtc *rtc = platform_get_drvdata(pdev); | 772 | struct sh_rtc *rtc = platform_get_drvdata(pdev); |
801 | 773 | ||
802 | if (likely(rtc->rtc_dev)) | 774 | rtc_device_unregister(rtc->rtc_dev); |
803 | rtc_device_unregister(rtc->rtc_dev); | 775 | sh_rtc_irq_set_state(&pdev->dev, 0); |
804 | 776 | ||
805 | sh_rtc_setpie(&pdev->dev, 0); | ||
806 | sh_rtc_setaie(&pdev->dev, 0); | 777 | sh_rtc_setaie(&pdev->dev, 0); |
807 | sh_rtc_setcie(&pdev->dev, 0); | 778 | sh_rtc_setcie(&pdev->dev, 0); |
808 | 779 | ||
@@ -813,9 +784,8 @@ static int __devexit sh_rtc_remove(struct platform_device *pdev) | |||
813 | free_irq(rtc->alarm_irq, rtc); | 784 | free_irq(rtc->alarm_irq, rtc); |
814 | } | 785 | } |
815 | 786 | ||
816 | release_resource(rtc->res); | ||
817 | |||
818 | iounmap(rtc->regbase); | 787 | iounmap(rtc->regbase); |
788 | release_resource(rtc->res); | ||
819 | 789 | ||
820 | clk_disable(rtc->clk); | 790 | clk_disable(rtc->clk); |
821 | clk_put(rtc->clk); | 791 | clk_put(rtc->clk); |
@@ -867,13 +837,12 @@ static struct platform_driver sh_rtc_platform_driver = { | |||
867 | .owner = THIS_MODULE, | 837 | .owner = THIS_MODULE, |
868 | .pm = &sh_rtc_dev_pm_ops, | 838 | .pm = &sh_rtc_dev_pm_ops, |
869 | }, | 839 | }, |
870 | .probe = sh_rtc_probe, | 840 | .remove = __exit_p(sh_rtc_remove), |
871 | .remove = __devexit_p(sh_rtc_remove), | ||
872 | }; | 841 | }; |
873 | 842 | ||
874 | static int __init sh_rtc_init(void) | 843 | static int __init sh_rtc_init(void) |
875 | { | 844 | { |
876 | return platform_driver_register(&sh_rtc_platform_driver); | 845 | return platform_driver_probe(&sh_rtc_platform_driver, sh_rtc_probe); |
877 | } | 846 | } |
878 | 847 | ||
879 | static void __exit sh_rtc_exit(void) | 848 | static void __exit sh_rtc_exit(void) |
diff --git a/drivers/rtc/rtc-wm831x.c b/drivers/rtc/rtc-wm831x.c new file mode 100644 index 000000000000..79795cdf6ed8 --- /dev/null +++ b/drivers/rtc/rtc-wm831x.c | |||
@@ -0,0 +1,523 @@ | |||
1 | /* | ||
2 | * Real Time Clock driver for Wolfson Microelectronics WM831x | ||
3 | * | ||
4 | * Copyright (C) 2009 Wolfson Microelectronics PLC. | ||
5 | * | ||
6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | #include <linux/module.h> | ||
16 | #include <linux/kernel.h> | ||
17 | #include <linux/time.h> | ||
18 | #include <linux/rtc.h> | ||
19 | #include <linux/bcd.h> | ||
20 | #include <linux/interrupt.h> | ||
21 | #include <linux/ioctl.h> | ||
22 | #include <linux/completion.h> | ||
23 | #include <linux/mfd/wm831x/core.h> | ||
24 | #include <linux/delay.h> | ||
25 | #include <linux/platform_device.h> | ||
26 | |||
27 | |||
28 | /* | ||
29 | * R16416 (0x4020) - RTC Write Counter | ||
30 | */ | ||
31 | #define WM831X_RTC_WR_CNT_MASK 0xFFFF /* RTC_WR_CNT - [15:0] */ | ||
32 | #define WM831X_RTC_WR_CNT_SHIFT 0 /* RTC_WR_CNT - [15:0] */ | ||
33 | #define WM831X_RTC_WR_CNT_WIDTH 16 /* RTC_WR_CNT - [15:0] */ | ||
34 | |||
35 | /* | ||
36 | * R16417 (0x4021) - RTC Time 1 | ||
37 | */ | ||
38 | #define WM831X_RTC_TIME_MASK 0xFFFF /* RTC_TIME - [15:0] */ | ||
39 | #define WM831X_RTC_TIME_SHIFT 0 /* RTC_TIME - [15:0] */ | ||
40 | #define WM831X_RTC_TIME_WIDTH 16 /* RTC_TIME - [15:0] */ | ||
41 | |||
42 | /* | ||
43 | * R16418 (0x4022) - RTC Time 2 | ||
44 | */ | ||
45 | #define WM831X_RTC_TIME_MASK 0xFFFF /* RTC_TIME - [15:0] */ | ||
46 | #define WM831X_RTC_TIME_SHIFT 0 /* RTC_TIME - [15:0] */ | ||
47 | #define WM831X_RTC_TIME_WIDTH 16 /* RTC_TIME - [15:0] */ | ||
48 | |||
49 | /* | ||
50 | * R16419 (0x4023) - RTC Alarm 1 | ||
51 | */ | ||
52 | #define WM831X_RTC_ALM_MASK 0xFFFF /* RTC_ALM - [15:0] */ | ||
53 | #define WM831X_RTC_ALM_SHIFT 0 /* RTC_ALM - [15:0] */ | ||
54 | #define WM831X_RTC_ALM_WIDTH 16 /* RTC_ALM - [15:0] */ | ||
55 | |||
56 | /* | ||
57 | * R16420 (0x4024) - RTC Alarm 2 | ||
58 | */ | ||
59 | #define WM831X_RTC_ALM_MASK 0xFFFF /* RTC_ALM - [15:0] */ | ||
60 | #define WM831X_RTC_ALM_SHIFT 0 /* RTC_ALM - [15:0] */ | ||
61 | #define WM831X_RTC_ALM_WIDTH 16 /* RTC_ALM - [15:0] */ | ||
62 | |||
63 | /* | ||
64 | * R16421 (0x4025) - RTC Control | ||
65 | */ | ||
66 | #define WM831X_RTC_VALID 0x8000 /* RTC_VALID */ | ||
67 | #define WM831X_RTC_VALID_MASK 0x8000 /* RTC_VALID */ | ||
68 | #define WM831X_RTC_VALID_SHIFT 15 /* RTC_VALID */ | ||
69 | #define WM831X_RTC_VALID_WIDTH 1 /* RTC_VALID */ | ||
70 | #define WM831X_RTC_SYNC_BUSY 0x4000 /* RTC_SYNC_BUSY */ | ||
71 | #define WM831X_RTC_SYNC_BUSY_MASK 0x4000 /* RTC_SYNC_BUSY */ | ||
72 | #define WM831X_RTC_SYNC_BUSY_SHIFT 14 /* RTC_SYNC_BUSY */ | ||
73 | #define WM831X_RTC_SYNC_BUSY_WIDTH 1 /* RTC_SYNC_BUSY */ | ||
74 | #define WM831X_RTC_ALM_ENA 0x0400 /* RTC_ALM_ENA */ | ||
75 | #define WM831X_RTC_ALM_ENA_MASK 0x0400 /* RTC_ALM_ENA */ | ||
76 | #define WM831X_RTC_ALM_ENA_SHIFT 10 /* RTC_ALM_ENA */ | ||
77 | #define WM831X_RTC_ALM_ENA_WIDTH 1 /* RTC_ALM_ENA */ | ||
78 | #define WM831X_RTC_PINT_FREQ_MASK 0x0070 /* RTC_PINT_FREQ - [6:4] */ | ||
79 | #define WM831X_RTC_PINT_FREQ_SHIFT 4 /* RTC_PINT_FREQ - [6:4] */ | ||
80 | #define WM831X_RTC_PINT_FREQ_WIDTH 3 /* RTC_PINT_FREQ - [6:4] */ | ||
81 | |||
82 | /* | ||
83 | * R16422 (0x4026) - RTC Trim | ||
84 | */ | ||
85 | #define WM831X_RTC_TRIM_MASK 0x03FF /* RTC_TRIM - [9:0] */ | ||
86 | #define WM831X_RTC_TRIM_SHIFT 0 /* RTC_TRIM - [9:0] */ | ||
87 | #define WM831X_RTC_TRIM_WIDTH 10 /* RTC_TRIM - [9:0] */ | ||
88 | |||
89 | #define WM831X_SET_TIME_RETRIES 5 | ||
90 | #define WM831X_GET_TIME_RETRIES 5 | ||
91 | |||
92 | struct wm831x_rtc { | ||
93 | struct wm831x *wm831x; | ||
94 | struct rtc_device *rtc; | ||
95 | unsigned int alarm_enabled:1; | ||
96 | }; | ||
97 | |||
98 | /* | ||
99 | * Read current time and date in RTC | ||
100 | */ | ||
101 | static int wm831x_rtc_readtime(struct device *dev, struct rtc_time *tm) | ||
102 | { | ||
103 | struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev); | ||
104 | struct wm831x *wm831x = wm831x_rtc->wm831x; | ||
105 | u16 time1[2], time2[2]; | ||
106 | int ret; | ||
107 | int count = 0; | ||
108 | |||
109 | /* Has the RTC been programmed? */ | ||
110 | ret = wm831x_reg_read(wm831x, WM831X_RTC_CONTROL); | ||
111 | if (ret < 0) { | ||
112 | dev_err(dev, "Failed to read RTC control: %d\n", ret); | ||
113 | return ret; | ||
114 | } | ||
115 | if (!(ret & WM831X_RTC_VALID)) { | ||
116 | dev_dbg(dev, "RTC not yet configured\n"); | ||
117 | return -EINVAL; | ||
118 | } | ||
119 | |||
120 | /* Read twice to make sure we don't read a corrupt, partially | ||
121 | * incremented, value. | ||
122 | */ | ||
123 | do { | ||
124 | ret = wm831x_bulk_read(wm831x, WM831X_RTC_TIME_1, | ||
125 | 2, time1); | ||
126 | if (ret != 0) | ||
127 | continue; | ||
128 | |||
129 | ret = wm831x_bulk_read(wm831x, WM831X_RTC_TIME_1, | ||
130 | 2, time2); | ||
131 | if (ret != 0) | ||
132 | continue; | ||
133 | |||
134 | if (memcmp(time1, time2, sizeof(time1)) == 0) { | ||
135 | u32 time = (time1[0] << 16) | time1[1]; | ||
136 | |||
137 | rtc_time_to_tm(time, tm); | ||
138 | return rtc_valid_tm(tm); | ||
139 | } | ||
140 | |||
141 | } while (++count < WM831X_GET_TIME_RETRIES); | ||
142 | |||
143 | dev_err(dev, "Timed out reading current time\n"); | ||
144 | |||
145 | return -EIO; | ||
146 | } | ||
147 | |||
148 | /* | ||
149 | * Set current time and date in RTC | ||
150 | */ | ||
151 | static int wm831x_rtc_set_mmss(struct device *dev, unsigned long time) | ||
152 | { | ||
153 | struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev); | ||
154 | struct wm831x *wm831x = wm831x_rtc->wm831x; | ||
155 | struct rtc_time new_tm; | ||
156 | unsigned long new_time; | ||
157 | int ret; | ||
158 | int count = 0; | ||
159 | |||
160 | ret = wm831x_reg_write(wm831x, WM831X_RTC_TIME_1, | ||
161 | (time >> 16) & 0xffff); | ||
162 | if (ret < 0) { | ||
163 | dev_err(dev, "Failed to write TIME_1: %d\n", ret); | ||
164 | return ret; | ||
165 | } | ||
166 | |||
167 | ret = wm831x_reg_write(wm831x, WM831X_RTC_TIME_2, time & 0xffff); | ||
168 | if (ret < 0) { | ||
169 | dev_err(dev, "Failed to write TIME_2: %d\n", ret); | ||
170 | return ret; | ||
171 | } | ||
172 | |||
173 | /* Wait for the update to complete - should happen first time | ||
174 | * round but be conservative. | ||
175 | */ | ||
176 | do { | ||
177 | msleep(1); | ||
178 | |||
179 | ret = wm831x_reg_read(wm831x, WM831X_RTC_CONTROL); | ||
180 | if (ret < 0) | ||
181 | ret = WM831X_RTC_SYNC_BUSY; | ||
182 | } while (!(ret & WM831X_RTC_SYNC_BUSY) && | ||
183 | ++count < WM831X_SET_TIME_RETRIES); | ||
184 | |||
185 | if (ret & WM831X_RTC_SYNC_BUSY) { | ||
186 | dev_err(dev, "Timed out writing RTC update\n"); | ||
187 | return -EIO; | ||
188 | } | ||
189 | |||
190 | /* Check that the update was accepted; security features may | ||
191 | * have caused the update to be ignored. | ||
192 | */ | ||
193 | ret = wm831x_rtc_readtime(dev, &new_tm); | ||
194 | if (ret < 0) | ||
195 | return ret; | ||
196 | |||
197 | ret = rtc_tm_to_time(&new_tm, &new_time); | ||
198 | if (ret < 0) { | ||
199 | dev_err(dev, "Failed to convert time: %d\n", ret); | ||
200 | return ret; | ||
201 | } | ||
202 | |||
203 | /* Allow a second of change in case of tick */ | ||
204 | if (new_time - time > 1) { | ||
205 | dev_err(dev, "RTC update not permitted by hardware\n"); | ||
206 | return -EPERM; | ||
207 | } | ||
208 | |||
209 | return 0; | ||
210 | } | ||
211 | |||
212 | /* | ||
213 | * Read alarm time and date in RTC | ||
214 | */ | ||
215 | static int wm831x_rtc_readalarm(struct device *dev, struct rtc_wkalrm *alrm) | ||
216 | { | ||
217 | struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev); | ||
218 | int ret; | ||
219 | u16 data[2]; | ||
220 | u32 time; | ||
221 | |||
222 | ret = wm831x_bulk_read(wm831x_rtc->wm831x, WM831X_RTC_ALARM_1, | ||
223 | 2, data); | ||
224 | if (ret != 0) { | ||
225 | dev_err(dev, "Failed to read alarm time: %d\n", ret); | ||
226 | return ret; | ||
227 | } | ||
228 | |||
229 | time = (data[0] << 16) | data[1]; | ||
230 | |||
231 | rtc_time_to_tm(time, &alrm->time); | ||
232 | |||
233 | ret = wm831x_reg_read(wm831x_rtc->wm831x, WM831X_RTC_CONTROL); | ||
234 | if (ret < 0) { | ||
235 | dev_err(dev, "Failed to read RTC control: %d\n", ret); | ||
236 | return ret; | ||
237 | } | ||
238 | |||
239 | if (ret & WM831X_RTC_ALM_ENA) | ||
240 | alrm->enabled = 1; | ||
241 | else | ||
242 | alrm->enabled = 0; | ||
243 | |||
244 | return 0; | ||
245 | } | ||
246 | |||
247 | static int wm831x_rtc_stop_alarm(struct wm831x_rtc *wm831x_rtc) | ||
248 | { | ||
249 | wm831x_rtc->alarm_enabled = 0; | ||
250 | |||
251 | return wm831x_set_bits(wm831x_rtc->wm831x, WM831X_RTC_CONTROL, | ||
252 | WM831X_RTC_ALM_ENA, 0); | ||
253 | } | ||
254 | |||
255 | static int wm831x_rtc_start_alarm(struct wm831x_rtc *wm831x_rtc) | ||
256 | { | ||
257 | wm831x_rtc->alarm_enabled = 1; | ||
258 | |||
259 | return wm831x_set_bits(wm831x_rtc->wm831x, WM831X_RTC_CONTROL, | ||
260 | WM831X_RTC_ALM_ENA, WM831X_RTC_ALM_ENA); | ||
261 | } | ||
262 | |||
263 | static int wm831x_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm) | ||
264 | { | ||
265 | struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev); | ||
266 | struct wm831x *wm831x = wm831x_rtc->wm831x; | ||
267 | int ret; | ||
268 | unsigned long time; | ||
269 | |||
270 | ret = rtc_tm_to_time(&alrm->time, &time); | ||
271 | if (ret < 0) { | ||
272 | dev_err(dev, "Failed to convert time: %d\n", ret); | ||
273 | return ret; | ||
274 | } | ||
275 | |||
276 | ret = wm831x_rtc_stop_alarm(wm831x_rtc); | ||
277 | if (ret < 0) { | ||
278 | dev_err(dev, "Failed to stop alarm: %d\n", ret); | ||
279 | return ret; | ||
280 | } | ||
281 | |||
282 | ret = wm831x_reg_write(wm831x, WM831X_RTC_ALARM_1, | ||
283 | (time >> 16) & 0xffff); | ||
284 | if (ret < 0) { | ||
285 | dev_err(dev, "Failed to write ALARM_1: %d\n", ret); | ||
286 | return ret; | ||
287 | } | ||
288 | |||
289 | ret = wm831x_reg_write(wm831x, WM831X_RTC_ALARM_2, time & 0xffff); | ||
290 | if (ret < 0) { | ||
291 | dev_err(dev, "Failed to write ALARM_2: %d\n", ret); | ||
292 | return ret; | ||
293 | } | ||
294 | |||
295 | if (alrm->enabled) { | ||
296 | ret = wm831x_rtc_start_alarm(wm831x_rtc); | ||
297 | if (ret < 0) { | ||
298 | dev_err(dev, "Failed to start alarm: %d\n", ret); | ||
299 | return ret; | ||
300 | } | ||
301 | } | ||
302 | |||
303 | return 0; | ||
304 | } | ||
305 | |||
306 | static int wm831x_rtc_alarm_irq_enable(struct device *dev, | ||
307 | unsigned int enabled) | ||
308 | { | ||
309 | struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev); | ||
310 | |||
311 | if (enabled) | ||
312 | return wm831x_rtc_start_alarm(wm831x_rtc); | ||
313 | else | ||
314 | return wm831x_rtc_stop_alarm(wm831x_rtc); | ||
315 | } | ||
316 | |||
317 | static int wm831x_rtc_update_irq_enable(struct device *dev, | ||
318 | unsigned int enabled) | ||
319 | { | ||
320 | struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev); | ||
321 | int val; | ||
322 | |||
323 | if (enabled) | ||
324 | val = 1 << WM831X_RTC_PINT_FREQ_SHIFT; | ||
325 | else | ||
326 | val = 0; | ||
327 | |||
328 | return wm831x_set_bits(wm831x_rtc->wm831x, WM831X_RTC_CONTROL, | ||
329 | WM831X_RTC_PINT_FREQ_MASK, val); | ||
330 | } | ||
331 | |||
332 | static irqreturn_t wm831x_alm_irq(int irq, void *data) | ||
333 | { | ||
334 | struct wm831x_rtc *wm831x_rtc = data; | ||
335 | |||
336 | rtc_update_irq(wm831x_rtc->rtc, 1, RTC_IRQF | RTC_AF); | ||
337 | |||
338 | return IRQ_HANDLED; | ||
339 | } | ||
340 | |||
341 | static irqreturn_t wm831x_per_irq(int irq, void *data) | ||
342 | { | ||
343 | struct wm831x_rtc *wm831x_rtc = data; | ||
344 | |||
345 | rtc_update_irq(wm831x_rtc->rtc, 1, RTC_IRQF | RTC_UF); | ||
346 | |||
347 | return IRQ_HANDLED; | ||
348 | } | ||
349 | |||
350 | static const struct rtc_class_ops wm831x_rtc_ops = { | ||
351 | .read_time = wm831x_rtc_readtime, | ||
352 | .set_mmss = wm831x_rtc_set_mmss, | ||
353 | .read_alarm = wm831x_rtc_readalarm, | ||
354 | .set_alarm = wm831x_rtc_setalarm, | ||
355 | .alarm_irq_enable = wm831x_rtc_alarm_irq_enable, | ||
356 | .update_irq_enable = wm831x_rtc_update_irq_enable, | ||
357 | }; | ||
358 | |||
359 | #ifdef CONFIG_PM | ||
360 | /* Turn off the alarm if it should not be a wake source. */ | ||
361 | static int wm831x_rtc_suspend(struct device *dev) | ||
362 | { | ||
363 | struct platform_device *pdev = to_platform_device(dev); | ||
364 | struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(&pdev->dev); | ||
365 | int ret, enable; | ||
366 | |||
367 | if (wm831x_rtc->alarm_enabled && device_may_wakeup(&pdev->dev)) | ||
368 | enable = WM831X_RTC_ALM_ENA; | ||
369 | else | ||
370 | enable = 0; | ||
371 | |||
372 | ret = wm831x_set_bits(wm831x_rtc->wm831x, WM831X_RTC_CONTROL, | ||
373 | WM831X_RTC_ALM_ENA, enable); | ||
374 | if (ret != 0) | ||
375 | dev_err(&pdev->dev, "Failed to update RTC alarm: %d\n", ret); | ||
376 | |||
377 | return 0; | ||
378 | } | ||
379 | |||
380 | /* Enable the alarm if it should be enabled (in case it was disabled to | ||
381 | * prevent use as a wake source). | ||
382 | */ | ||
383 | static int wm831x_rtc_resume(struct device *dev) | ||
384 | { | ||
385 | struct platform_device *pdev = to_platform_device(dev); | ||
386 | struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(&pdev->dev); | ||
387 | int ret; | ||
388 | |||
389 | if (wm831x_rtc->alarm_enabled) { | ||
390 | ret = wm831x_rtc_start_alarm(wm831x_rtc); | ||
391 | if (ret != 0) | ||
392 | dev_err(&pdev->dev, | ||
393 | "Failed to restart RTC alarm: %d\n", ret); | ||
394 | } | ||
395 | |||
396 | return 0; | ||
397 | } | ||
398 | |||
399 | /* Unconditionally disable the alarm */ | ||
400 | static int wm831x_rtc_freeze(struct device *dev) | ||
401 | { | ||
402 | struct platform_device *pdev = to_platform_device(dev); | ||
403 | struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(&pdev->dev); | ||
404 | int ret; | ||
405 | |||
406 | ret = wm831x_set_bits(wm831x_rtc->wm831x, WM831X_RTC_CONTROL, | ||
407 | WM831X_RTC_ALM_ENA, 0); | ||
408 | if (ret != 0) | ||
409 | dev_err(&pdev->dev, "Failed to stop RTC alarm: %d\n", ret); | ||
410 | |||
411 | return 0; | ||
412 | } | ||
413 | #else | ||
414 | #define wm831x_rtc_suspend NULL | ||
415 | #define wm831x_rtc_resume NULL | ||
416 | #define wm831x_rtc_freeze NULL | ||
417 | #endif | ||
418 | |||
419 | static int wm831x_rtc_probe(struct platform_device *pdev) | ||
420 | { | ||
421 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | ||
422 | struct wm831x_rtc *wm831x_rtc; | ||
423 | int per_irq = platform_get_irq_byname(pdev, "PER"); | ||
424 | int alm_irq = platform_get_irq_byname(pdev, "ALM"); | ||
425 | int ret = 0; | ||
426 | |||
427 | wm831x_rtc = kzalloc(sizeof(*wm831x_rtc), GFP_KERNEL); | ||
428 | if (wm831x_rtc == NULL) | ||
429 | return -ENOMEM; | ||
430 | |||
431 | platform_set_drvdata(pdev, wm831x_rtc); | ||
432 | wm831x_rtc->wm831x = wm831x; | ||
433 | |||
434 | ret = wm831x_reg_read(wm831x, WM831X_RTC_CONTROL); | ||
435 | if (ret < 0) { | ||
436 | dev_err(&pdev->dev, "Failed to read RTC control: %d\n", ret); | ||
437 | goto err; | ||
438 | } | ||
439 | if (ret & WM831X_RTC_ALM_ENA) | ||
440 | wm831x_rtc->alarm_enabled = 1; | ||
441 | |||
442 | device_init_wakeup(&pdev->dev, 1); | ||
443 | |||
444 | wm831x_rtc->rtc = rtc_device_register("wm831x", &pdev->dev, | ||
445 | &wm831x_rtc_ops, THIS_MODULE); | ||
446 | if (IS_ERR(wm831x_rtc->rtc)) { | ||
447 | ret = PTR_ERR(wm831x_rtc->rtc); | ||
448 | goto err; | ||
449 | } | ||
450 | |||
451 | ret = wm831x_request_irq(wm831x, per_irq, wm831x_per_irq, | ||
452 | IRQF_TRIGGER_RISING, "wm831x_rtc_per", | ||
453 | wm831x_rtc); | ||
454 | if (ret != 0) { | ||
455 | dev_err(&pdev->dev, "Failed to request periodic IRQ %d: %d\n", | ||
456 | per_irq, ret); | ||
457 | } | ||
458 | |||
459 | ret = wm831x_request_irq(wm831x, alm_irq, wm831x_alm_irq, | ||
460 | IRQF_TRIGGER_RISING, "wm831x_rtc_alm", | ||
461 | wm831x_rtc); | ||
462 | if (ret != 0) { | ||
463 | dev_err(&pdev->dev, "Failed to request alarm IRQ %d: %d\n", | ||
464 | alm_irq, ret); | ||
465 | } | ||
466 | |||
467 | return 0; | ||
468 | |||
469 | err: | ||
470 | kfree(wm831x_rtc); | ||
471 | return ret; | ||
472 | } | ||
473 | |||
474 | static int __devexit wm831x_rtc_remove(struct platform_device *pdev) | ||
475 | { | ||
476 | struct wm831x_rtc *wm831x_rtc = platform_get_drvdata(pdev); | ||
477 | int per_irq = platform_get_irq_byname(pdev, "PER"); | ||
478 | int alm_irq = platform_get_irq_byname(pdev, "ALM"); | ||
479 | |||
480 | wm831x_free_irq(wm831x_rtc->wm831x, alm_irq, wm831x_rtc); | ||
481 | wm831x_free_irq(wm831x_rtc->wm831x, per_irq, wm831x_rtc); | ||
482 | rtc_device_unregister(wm831x_rtc->rtc); | ||
483 | kfree(wm831x_rtc); | ||
484 | |||
485 | return 0; | ||
486 | } | ||
487 | |||
488 | static struct dev_pm_ops wm831x_rtc_pm_ops = { | ||
489 | .suspend = wm831x_rtc_suspend, | ||
490 | .resume = wm831x_rtc_resume, | ||
491 | |||
492 | .freeze = wm831x_rtc_freeze, | ||
493 | .thaw = wm831x_rtc_resume, | ||
494 | .restore = wm831x_rtc_resume, | ||
495 | |||
496 | .poweroff = wm831x_rtc_suspend, | ||
497 | }; | ||
498 | |||
499 | static struct platform_driver wm831x_rtc_driver = { | ||
500 | .probe = wm831x_rtc_probe, | ||
501 | .remove = __devexit_p(wm831x_rtc_remove), | ||
502 | .driver = { | ||
503 | .name = "wm831x-rtc", | ||
504 | .pm = &wm831x_rtc_pm_ops, | ||
505 | }, | ||
506 | }; | ||
507 | |||
508 | static int __init wm831x_rtc_init(void) | ||
509 | { | ||
510 | return platform_driver_register(&wm831x_rtc_driver); | ||
511 | } | ||
512 | module_init(wm831x_rtc_init); | ||
513 | |||
514 | static void __exit wm831x_rtc_exit(void) | ||
515 | { | ||
516 | platform_driver_unregister(&wm831x_rtc_driver); | ||
517 | } | ||
518 | module_exit(wm831x_rtc_exit); | ||
519 | |||
520 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); | ||
521 | MODULE_DESCRIPTION("RTC driver for the WM831x series PMICs"); | ||
522 | MODULE_LICENSE("GPL"); | ||
523 | MODULE_ALIAS("platform:wm831x-rtc"); | ||
diff --git a/drivers/scsi/fcoe/libfcoe.c b/drivers/scsi/fcoe/libfcoe.c index 62a4c2026072..11ae5c94608b 100644 --- a/drivers/scsi/fcoe/libfcoe.c +++ b/drivers/scsi/fcoe/libfcoe.c | |||
@@ -29,7 +29,6 @@ | |||
29 | #include <linux/ethtool.h> | 29 | #include <linux/ethtool.h> |
30 | #include <linux/if_ether.h> | 30 | #include <linux/if_ether.h> |
31 | #include <linux/if_vlan.h> | 31 | #include <linux/if_vlan.h> |
32 | #include <linux/netdevice.h> | ||
33 | #include <linux/errno.h> | 32 | #include <linux/errno.h> |
34 | #include <linux/bitops.h> | 33 | #include <linux/bitops.h> |
35 | #include <net/rtnetlink.h> | 34 | #include <net/rtnetlink.h> |
diff --git a/drivers/scsi/ibmvscsi/ibmvscsi.c b/drivers/scsi/ibmvscsi/ibmvscsi.c index 9928704e235f..d9b0e9d31983 100644 --- a/drivers/scsi/ibmvscsi/ibmvscsi.c +++ b/drivers/scsi/ibmvscsi/ibmvscsi.c | |||
@@ -73,7 +73,6 @@ | |||
73 | #include <linux/of.h> | 73 | #include <linux/of.h> |
74 | #include <asm/firmware.h> | 74 | #include <asm/firmware.h> |
75 | #include <asm/vio.h> | 75 | #include <asm/vio.h> |
76 | #include <asm/firmware.h> | ||
77 | #include <scsi/scsi.h> | 76 | #include <scsi/scsi.h> |
78 | #include <scsi/scsi_cmnd.h> | 77 | #include <scsi/scsi_cmnd.h> |
79 | #include <scsi/scsi_host.h> | 78 | #include <scsi/scsi_host.h> |
diff --git a/drivers/serial/21285.c b/drivers/serial/21285.c index cb6d85d7ff43..1e3d19397a59 100644 --- a/drivers/serial/21285.c +++ b/drivers/serial/21285.c | |||
@@ -86,7 +86,7 @@ static void serial21285_enable_ms(struct uart_port *port) | |||
86 | static irqreturn_t serial21285_rx_chars(int irq, void *dev_id) | 86 | static irqreturn_t serial21285_rx_chars(int irq, void *dev_id) |
87 | { | 87 | { |
88 | struct uart_port *port = dev_id; | 88 | struct uart_port *port = dev_id; |
89 | struct tty_struct *tty = port->info->port.tty; | 89 | struct tty_struct *tty = port->state->port.tty; |
90 | unsigned int status, ch, flag, rxs, max_count = 256; | 90 | unsigned int status, ch, flag, rxs, max_count = 256; |
91 | 91 | ||
92 | status = *CSR_UARTFLG; | 92 | status = *CSR_UARTFLG; |
@@ -124,7 +124,7 @@ static irqreturn_t serial21285_rx_chars(int irq, void *dev_id) | |||
124 | static irqreturn_t serial21285_tx_chars(int irq, void *dev_id) | 124 | static irqreturn_t serial21285_tx_chars(int irq, void *dev_id) |
125 | { | 125 | { |
126 | struct uart_port *port = dev_id; | 126 | struct uart_port *port = dev_id; |
127 | struct circ_buf *xmit = &port->info->xmit; | 127 | struct circ_buf *xmit = &port->state->xmit; |
128 | int count = 256; | 128 | int count = 256; |
129 | 129 | ||
130 | if (port->x_char) { | 130 | if (port->x_char) { |
@@ -235,8 +235,8 @@ serial21285_set_termios(struct uart_port *port, struct ktermios *termios, | |||
235 | baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16); | 235 | baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16); |
236 | quot = uart_get_divisor(port, baud); | 236 | quot = uart_get_divisor(port, baud); |
237 | 237 | ||
238 | if (port->info && port->info->port.tty) { | 238 | if (port->state && port->state->port.tty) { |
239 | struct tty_struct *tty = port->info->port.tty; | 239 | struct tty_struct *tty = port->state->port.tty; |
240 | unsigned int b = port->uartclk / (16 * quot); | 240 | unsigned int b = port->uartclk / (16 * quot); |
241 | tty_encode_baud_rate(tty, b, b); | 241 | tty_encode_baud_rate(tty, b, b); |
242 | } | 242 | } |
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c index fb867a9f55e9..2209620d2349 100644 --- a/drivers/serial/8250.c +++ b/drivers/serial/8250.c | |||
@@ -1382,7 +1382,7 @@ static void serial8250_enable_ms(struct uart_port *port) | |||
1382 | static void | 1382 | static void |
1383 | receive_chars(struct uart_8250_port *up, unsigned int *status) | 1383 | receive_chars(struct uart_8250_port *up, unsigned int *status) |
1384 | { | 1384 | { |
1385 | struct tty_struct *tty = up->port.info->port.tty; | 1385 | struct tty_struct *tty = up->port.state->port.tty; |
1386 | unsigned char ch, lsr = *status; | 1386 | unsigned char ch, lsr = *status; |
1387 | int max_count = 256; | 1387 | int max_count = 256; |
1388 | char flag; | 1388 | char flag; |
@@ -1457,7 +1457,7 @@ ignore_char: | |||
1457 | 1457 | ||
1458 | static void transmit_chars(struct uart_8250_port *up) | 1458 | static void transmit_chars(struct uart_8250_port *up) |
1459 | { | 1459 | { |
1460 | struct circ_buf *xmit = &up->port.info->xmit; | 1460 | struct circ_buf *xmit = &up->port.state->xmit; |
1461 | int count; | 1461 | int count; |
1462 | 1462 | ||
1463 | if (up->port.x_char) { | 1463 | if (up->port.x_char) { |
@@ -1500,7 +1500,7 @@ static unsigned int check_modem_status(struct uart_8250_port *up) | |||
1500 | status |= up->msr_saved_flags; | 1500 | status |= up->msr_saved_flags; |
1501 | up->msr_saved_flags = 0; | 1501 | up->msr_saved_flags = 0; |
1502 | if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI && | 1502 | if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI && |
1503 | up->port.info != NULL) { | 1503 | up->port.state != NULL) { |
1504 | if (status & UART_MSR_TERI) | 1504 | if (status & UART_MSR_TERI) |
1505 | up->port.icount.rng++; | 1505 | up->port.icount.rng++; |
1506 | if (status & UART_MSR_DDSR) | 1506 | if (status & UART_MSR_DDSR) |
@@ -1510,7 +1510,7 @@ static unsigned int check_modem_status(struct uart_8250_port *up) | |||
1510 | if (status & UART_MSR_DCTS) | 1510 | if (status & UART_MSR_DCTS) |
1511 | uart_handle_cts_change(&up->port, status & UART_MSR_CTS); | 1511 | uart_handle_cts_change(&up->port, status & UART_MSR_CTS); |
1512 | 1512 | ||
1513 | wake_up_interruptible(&up->port.info->delta_msr_wait); | 1513 | wake_up_interruptible(&up->port.state->port.delta_msr_wait); |
1514 | } | 1514 | } |
1515 | 1515 | ||
1516 | return status; | 1516 | return status; |
@@ -1677,7 +1677,7 @@ static int serial_link_irq_chain(struct uart_8250_port *up) | |||
1677 | INIT_LIST_HEAD(&up->list); | 1677 | INIT_LIST_HEAD(&up->list); |
1678 | i->head = &up->list; | 1678 | i->head = &up->list; |
1679 | spin_unlock_irq(&i->lock); | 1679 | spin_unlock_irq(&i->lock); |
1680 | 1680 | irq_flags |= up->port.irqflags; | |
1681 | ret = request_irq(up->port.irq, serial8250_interrupt, | 1681 | ret = request_irq(up->port.irq, serial8250_interrupt, |
1682 | irq_flags, "serial", i); | 1682 | irq_flags, "serial", i); |
1683 | if (ret < 0) | 1683 | if (ret < 0) |
@@ -1764,7 +1764,7 @@ static void serial8250_backup_timeout(unsigned long data) | |||
1764 | up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS; | 1764 | up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS; |
1765 | spin_unlock_irqrestore(&up->port.lock, flags); | 1765 | spin_unlock_irqrestore(&up->port.lock, flags); |
1766 | if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) && | 1766 | if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) && |
1767 | (!uart_circ_empty(&up->port.info->xmit) || up->port.x_char) && | 1767 | (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) && |
1768 | (lsr & UART_LSR_THRE)) { | 1768 | (lsr & UART_LSR_THRE)) { |
1769 | iir &= ~(UART_IIR_ID | UART_IIR_NO_INT); | 1769 | iir &= ~(UART_IIR_ID | UART_IIR_NO_INT); |
1770 | iir |= UART_IIR_THRI; | 1770 | iir |= UART_IIR_THRI; |
@@ -2026,7 +2026,7 @@ static int serial8250_startup(struct uart_port *port) | |||
2026 | * allow register changes to become visible. | 2026 | * allow register changes to become visible. |
2027 | */ | 2027 | */ |
2028 | spin_lock_irqsave(&up->port.lock, flags); | 2028 | spin_lock_irqsave(&up->port.lock, flags); |
2029 | if (up->port.flags & UPF_SHARE_IRQ) | 2029 | if (up->port.irqflags & IRQF_SHARED) |
2030 | disable_irq_nosync(up->port.irq); | 2030 | disable_irq_nosync(up->port.irq); |
2031 | 2031 | ||
2032 | wait_for_xmitr(up, UART_LSR_THRE); | 2032 | wait_for_xmitr(up, UART_LSR_THRE); |
@@ -2039,7 +2039,7 @@ static int serial8250_startup(struct uart_port *port) | |||
2039 | iir = serial_in(up, UART_IIR); | 2039 | iir = serial_in(up, UART_IIR); |
2040 | serial_out(up, UART_IER, 0); | 2040 | serial_out(up, UART_IER, 0); |
2041 | 2041 | ||
2042 | if (up->port.flags & UPF_SHARE_IRQ) | 2042 | if (up->port.irqflags & IRQF_SHARED) |
2043 | enable_irq(up->port.irq); | 2043 | enable_irq(up->port.irq); |
2044 | spin_unlock_irqrestore(&up->port.lock, flags); | 2044 | spin_unlock_irqrestore(&up->port.lock, flags); |
2045 | 2045 | ||
@@ -2272,7 +2272,9 @@ serial8250_set_termios(struct uart_port *port, struct ktermios *termios, | |||
2272 | /* | 2272 | /* |
2273 | * Ask the core to calculate the divisor for us. | 2273 | * Ask the core to calculate the divisor for us. |
2274 | */ | 2274 | */ |
2275 | baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16); | 2275 | baud = uart_get_baud_rate(port, termios, old, |
2276 | port->uartclk / 16 / 0xffff, | ||
2277 | port->uartclk / 16); | ||
2276 | quot = serial8250_get_divisor(port, baud); | 2278 | quot = serial8250_get_divisor(port, baud); |
2277 | 2279 | ||
2278 | /* | 2280 | /* |
@@ -2671,6 +2673,7 @@ static void __init serial8250_isa_init_ports(void) | |||
2671 | i++, up++) { | 2673 | i++, up++) { |
2672 | up->port.iobase = old_serial_port[i].port; | 2674 | up->port.iobase = old_serial_port[i].port; |
2673 | up->port.irq = irq_canonicalize(old_serial_port[i].irq); | 2675 | up->port.irq = irq_canonicalize(old_serial_port[i].irq); |
2676 | up->port.irqflags = old_serial_port[i].irqflags; | ||
2674 | up->port.uartclk = old_serial_port[i].baud_base * 16; | 2677 | up->port.uartclk = old_serial_port[i].baud_base * 16; |
2675 | up->port.flags = old_serial_port[i].flags; | 2678 | up->port.flags = old_serial_port[i].flags; |
2676 | up->port.hub6 = old_serial_port[i].hub6; | 2679 | up->port.hub6 = old_serial_port[i].hub6; |
@@ -2679,7 +2682,7 @@ static void __init serial8250_isa_init_ports(void) | |||
2679 | up->port.regshift = old_serial_port[i].iomem_reg_shift; | 2682 | up->port.regshift = old_serial_port[i].iomem_reg_shift; |
2680 | set_io_from_upio(&up->port); | 2683 | set_io_from_upio(&up->port); |
2681 | if (share_irqs) | 2684 | if (share_irqs) |
2682 | up->port.flags |= UPF_SHARE_IRQ; | 2685 | up->port.irqflags |= IRQF_SHARED; |
2683 | } | 2686 | } |
2684 | } | 2687 | } |
2685 | 2688 | ||
@@ -2869,6 +2872,7 @@ int __init early_serial_setup(struct uart_port *port) | |||
2869 | p->iobase = port->iobase; | 2872 | p->iobase = port->iobase; |
2870 | p->membase = port->membase; | 2873 | p->membase = port->membase; |
2871 | p->irq = port->irq; | 2874 | p->irq = port->irq; |
2875 | p->irqflags = port->irqflags; | ||
2872 | p->uartclk = port->uartclk; | 2876 | p->uartclk = port->uartclk; |
2873 | p->fifosize = port->fifosize; | 2877 | p->fifosize = port->fifosize; |
2874 | p->regshift = port->regshift; | 2878 | p->regshift = port->regshift; |
@@ -2942,6 +2946,7 @@ static int __devinit serial8250_probe(struct platform_device *dev) | |||
2942 | port.iobase = p->iobase; | 2946 | port.iobase = p->iobase; |
2943 | port.membase = p->membase; | 2947 | port.membase = p->membase; |
2944 | port.irq = p->irq; | 2948 | port.irq = p->irq; |
2949 | port.irqflags = p->irqflags; | ||
2945 | port.uartclk = p->uartclk; | 2950 | port.uartclk = p->uartclk; |
2946 | port.regshift = p->regshift; | 2951 | port.regshift = p->regshift; |
2947 | port.iotype = p->iotype; | 2952 | port.iotype = p->iotype; |
@@ -2954,7 +2959,7 @@ static int __devinit serial8250_probe(struct platform_device *dev) | |||
2954 | port.serial_out = p->serial_out; | 2959 | port.serial_out = p->serial_out; |
2955 | port.dev = &dev->dev; | 2960 | port.dev = &dev->dev; |
2956 | if (share_irqs) | 2961 | if (share_irqs) |
2957 | port.flags |= UPF_SHARE_IRQ; | 2962 | port.irqflags |= IRQF_SHARED; |
2958 | ret = serial8250_register_port(&port); | 2963 | ret = serial8250_register_port(&port); |
2959 | if (ret < 0) { | 2964 | if (ret < 0) { |
2960 | dev_err(&dev->dev, "unable to register port at index %d " | 2965 | dev_err(&dev->dev, "unable to register port at index %d " |
@@ -3096,6 +3101,7 @@ int serial8250_register_port(struct uart_port *port) | |||
3096 | uart->port.iobase = port->iobase; | 3101 | uart->port.iobase = port->iobase; |
3097 | uart->port.membase = port->membase; | 3102 | uart->port.membase = port->membase; |
3098 | uart->port.irq = port->irq; | 3103 | uart->port.irq = port->irq; |
3104 | uart->port.irqflags = port->irqflags; | ||
3099 | uart->port.uartclk = port->uartclk; | 3105 | uart->port.uartclk = port->uartclk; |
3100 | uart->port.fifosize = port->fifosize; | 3106 | uart->port.fifosize = port->fifosize; |
3101 | uart->port.regshift = port->regshift; | 3107 | uart->port.regshift = port->regshift; |
diff --git a/drivers/serial/8250.h b/drivers/serial/8250.h index 520260326f3d..6e19ea3e48d5 100644 --- a/drivers/serial/8250.h +++ b/drivers/serial/8250.h | |||
@@ -25,6 +25,7 @@ struct old_serial_port { | |||
25 | unsigned char io_type; | 25 | unsigned char io_type; |
26 | unsigned char *iomem_base; | 26 | unsigned char *iomem_base; |
27 | unsigned short iomem_reg_shift; | 27 | unsigned short iomem_reg_shift; |
28 | unsigned long irqflags; | ||
28 | }; | 29 | }; |
29 | 30 | ||
30 | /* | 31 | /* |
diff --git a/drivers/serial/amba-pl010.c b/drivers/serial/amba-pl010.c index 58a4879c7e48..429a8ae86933 100644 --- a/drivers/serial/amba-pl010.c +++ b/drivers/serial/amba-pl010.c | |||
@@ -117,7 +117,7 @@ static void pl010_enable_ms(struct uart_port *port) | |||
117 | 117 | ||
118 | static void pl010_rx_chars(struct uart_amba_port *uap) | 118 | static void pl010_rx_chars(struct uart_amba_port *uap) |
119 | { | 119 | { |
120 | struct tty_struct *tty = uap->port.info->port.tty; | 120 | struct tty_struct *tty = uap->port.state->port.tty; |
121 | unsigned int status, ch, flag, rsr, max_count = 256; | 121 | unsigned int status, ch, flag, rsr, max_count = 256; |
122 | 122 | ||
123 | status = readb(uap->port.membase + UART01x_FR); | 123 | status = readb(uap->port.membase + UART01x_FR); |
@@ -172,7 +172,7 @@ static void pl010_rx_chars(struct uart_amba_port *uap) | |||
172 | 172 | ||
173 | static void pl010_tx_chars(struct uart_amba_port *uap) | 173 | static void pl010_tx_chars(struct uart_amba_port *uap) |
174 | { | 174 | { |
175 | struct circ_buf *xmit = &uap->port.info->xmit; | 175 | struct circ_buf *xmit = &uap->port.state->xmit; |
176 | int count; | 176 | int count; |
177 | 177 | ||
178 | if (uap->port.x_char) { | 178 | if (uap->port.x_char) { |
@@ -225,7 +225,7 @@ static void pl010_modem_status(struct uart_amba_port *uap) | |||
225 | if (delta & UART01x_FR_CTS) | 225 | if (delta & UART01x_FR_CTS) |
226 | uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS); | 226 | uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS); |
227 | 227 | ||
228 | wake_up_interruptible(&uap->port.info->delta_msr_wait); | 228 | wake_up_interruptible(&uap->port.state->port.delta_msr_wait); |
229 | } | 229 | } |
230 | 230 | ||
231 | static irqreturn_t pl010_int(int irq, void *dev_id) | 231 | static irqreturn_t pl010_int(int irq, void *dev_id) |
diff --git a/drivers/serial/amba-pl011.c b/drivers/serial/amba-pl011.c index 72ba0c6d3551..ef7adc8135dd 100644 --- a/drivers/serial/amba-pl011.c +++ b/drivers/serial/amba-pl011.c | |||
@@ -124,7 +124,7 @@ static void pl011_enable_ms(struct uart_port *port) | |||
124 | 124 | ||
125 | static void pl011_rx_chars(struct uart_amba_port *uap) | 125 | static void pl011_rx_chars(struct uart_amba_port *uap) |
126 | { | 126 | { |
127 | struct tty_struct *tty = uap->port.info->port.tty; | 127 | struct tty_struct *tty = uap->port.state->port.tty; |
128 | unsigned int status, ch, flag, max_count = 256; | 128 | unsigned int status, ch, flag, max_count = 256; |
129 | 129 | ||
130 | status = readw(uap->port.membase + UART01x_FR); | 130 | status = readw(uap->port.membase + UART01x_FR); |
@@ -175,7 +175,7 @@ static void pl011_rx_chars(struct uart_amba_port *uap) | |||
175 | 175 | ||
176 | static void pl011_tx_chars(struct uart_amba_port *uap) | 176 | static void pl011_tx_chars(struct uart_amba_port *uap) |
177 | { | 177 | { |
178 | struct circ_buf *xmit = &uap->port.info->xmit; | 178 | struct circ_buf *xmit = &uap->port.state->xmit; |
179 | int count; | 179 | int count; |
180 | 180 | ||
181 | if (uap->port.x_char) { | 181 | if (uap->port.x_char) { |
@@ -226,7 +226,7 @@ static void pl011_modem_status(struct uart_amba_port *uap) | |||
226 | if (delta & UART01x_FR_CTS) | 226 | if (delta & UART01x_FR_CTS) |
227 | uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS); | 227 | uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS); |
228 | 228 | ||
229 | wake_up_interruptible(&uap->port.info->delta_msr_wait); | 229 | wake_up_interruptible(&uap->port.state->port.delta_msr_wait); |
230 | } | 230 | } |
231 | 231 | ||
232 | static irqreturn_t pl011_int(int irq, void *dev_id) | 232 | static irqreturn_t pl011_int(int irq, void *dev_id) |
diff --git a/drivers/serial/atmel_serial.c b/drivers/serial/atmel_serial.c index 607d43a31048..3551c5cb7094 100644 --- a/drivers/serial/atmel_serial.c +++ b/drivers/serial/atmel_serial.c | |||
@@ -427,7 +427,7 @@ static void atmel_rx_chars(struct uart_port *port) | |||
427 | */ | 427 | */ |
428 | static void atmel_tx_chars(struct uart_port *port) | 428 | static void atmel_tx_chars(struct uart_port *port) |
429 | { | 429 | { |
430 | struct circ_buf *xmit = &port->info->xmit; | 430 | struct circ_buf *xmit = &port->state->xmit; |
431 | 431 | ||
432 | if (port->x_char && UART_GET_CSR(port) & ATMEL_US_TXRDY) { | 432 | if (port->x_char && UART_GET_CSR(port) & ATMEL_US_TXRDY) { |
433 | UART_PUT_CHAR(port, port->x_char); | 433 | UART_PUT_CHAR(port, port->x_char); |
@@ -560,7 +560,7 @@ static irqreturn_t atmel_interrupt(int irq, void *dev_id) | |||
560 | static void atmel_tx_dma(struct uart_port *port) | 560 | static void atmel_tx_dma(struct uart_port *port) |
561 | { | 561 | { |
562 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); | 562 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); |
563 | struct circ_buf *xmit = &port->info->xmit; | 563 | struct circ_buf *xmit = &port->state->xmit; |
564 | struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx; | 564 | struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx; |
565 | int count; | 565 | int count; |
566 | 566 | ||
@@ -663,14 +663,14 @@ static void atmel_rx_from_ring(struct uart_port *port) | |||
663 | * uart_start(), which takes the lock. | 663 | * uart_start(), which takes the lock. |
664 | */ | 664 | */ |
665 | spin_unlock(&port->lock); | 665 | spin_unlock(&port->lock); |
666 | tty_flip_buffer_push(port->info->port.tty); | 666 | tty_flip_buffer_push(port->state->port.tty); |
667 | spin_lock(&port->lock); | 667 | spin_lock(&port->lock); |
668 | } | 668 | } |
669 | 669 | ||
670 | static void atmel_rx_from_dma(struct uart_port *port) | 670 | static void atmel_rx_from_dma(struct uart_port *port) |
671 | { | 671 | { |
672 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); | 672 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); |
673 | struct tty_struct *tty = port->info->port.tty; | 673 | struct tty_struct *tty = port->state->port.tty; |
674 | struct atmel_dma_buffer *pdc; | 674 | struct atmel_dma_buffer *pdc; |
675 | int rx_idx = atmel_port->pdc_rx_idx; | 675 | int rx_idx = atmel_port->pdc_rx_idx; |
676 | unsigned int head; | 676 | unsigned int head; |
@@ -776,7 +776,7 @@ static void atmel_tasklet_func(unsigned long data) | |||
776 | if (status_change & ATMEL_US_CTS) | 776 | if (status_change & ATMEL_US_CTS) |
777 | uart_handle_cts_change(port, !(status & ATMEL_US_CTS)); | 777 | uart_handle_cts_change(port, !(status & ATMEL_US_CTS)); |
778 | 778 | ||
779 | wake_up_interruptible(&port->info->delta_msr_wait); | 779 | wake_up_interruptible(&port->state->port.delta_msr_wait); |
780 | 780 | ||
781 | atmel_port->irq_status_prev = status; | 781 | atmel_port->irq_status_prev = status; |
782 | } | 782 | } |
@@ -795,7 +795,7 @@ static void atmel_tasklet_func(unsigned long data) | |||
795 | static int atmel_startup(struct uart_port *port) | 795 | static int atmel_startup(struct uart_port *port) |
796 | { | 796 | { |
797 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); | 797 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); |
798 | struct tty_struct *tty = port->info->port.tty; | 798 | struct tty_struct *tty = port->state->port.tty; |
799 | int retval; | 799 | int retval; |
800 | 800 | ||
801 | /* | 801 | /* |
@@ -854,7 +854,7 @@ static int atmel_startup(struct uart_port *port) | |||
854 | } | 854 | } |
855 | if (atmel_use_dma_tx(port)) { | 855 | if (atmel_use_dma_tx(port)) { |
856 | struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx; | 856 | struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx; |
857 | struct circ_buf *xmit = &port->info->xmit; | 857 | struct circ_buf *xmit = &port->state->xmit; |
858 | 858 | ||
859 | pdc->buf = xmit->buf; | 859 | pdc->buf = xmit->buf; |
860 | pdc->dma_addr = dma_map_single(port->dev, | 860 | pdc->dma_addr = dma_map_single(port->dev, |
diff --git a/drivers/serial/bfin_5xx.c b/drivers/serial/bfin_5xx.c index b4a7650af696..50abb7e557f4 100644 --- a/drivers/serial/bfin_5xx.c +++ b/drivers/serial/bfin_5xx.c | |||
@@ -42,6 +42,10 @@ | |||
42 | # undef CONFIG_EARLY_PRINTK | 42 | # undef CONFIG_EARLY_PRINTK |
43 | #endif | 43 | #endif |
44 | 44 | ||
45 | #ifdef CONFIG_SERIAL_BFIN_MODULE | ||
46 | # undef CONFIG_EARLY_PRINTK | ||
47 | #endif | ||
48 | |||
45 | /* UART name and device definitions */ | 49 | /* UART name and device definitions */ |
46 | #define BFIN_SERIAL_NAME "ttyBF" | 50 | #define BFIN_SERIAL_NAME "ttyBF" |
47 | #define BFIN_SERIAL_MAJOR 204 | 51 | #define BFIN_SERIAL_MAJOR 204 |
@@ -140,7 +144,7 @@ static void bfin_serial_stop_tx(struct uart_port *port) | |||
140 | { | 144 | { |
141 | struct bfin_serial_port *uart = (struct bfin_serial_port *)port; | 145 | struct bfin_serial_port *uart = (struct bfin_serial_port *)port; |
142 | #ifdef CONFIG_SERIAL_BFIN_DMA | 146 | #ifdef CONFIG_SERIAL_BFIN_DMA |
143 | struct circ_buf *xmit = &uart->port.info->xmit; | 147 | struct circ_buf *xmit = &uart->port.state->xmit; |
144 | #endif | 148 | #endif |
145 | 149 | ||
146 | while (!(UART_GET_LSR(uart) & TEMT)) | 150 | while (!(UART_GET_LSR(uart) & TEMT)) |
@@ -167,7 +171,7 @@ static void bfin_serial_stop_tx(struct uart_port *port) | |||
167 | static void bfin_serial_start_tx(struct uart_port *port) | 171 | static void bfin_serial_start_tx(struct uart_port *port) |
168 | { | 172 | { |
169 | struct bfin_serial_port *uart = (struct bfin_serial_port *)port; | 173 | struct bfin_serial_port *uart = (struct bfin_serial_port *)port; |
170 | struct tty_struct *tty = uart->port.info->port.tty; | 174 | struct tty_struct *tty = uart->port.state->port.tty; |
171 | 175 | ||
172 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS | 176 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS |
173 | if (uart->scts && !(bfin_serial_get_mctrl(&uart->port) & TIOCM_CTS)) { | 177 | if (uart->scts && !(bfin_serial_get_mctrl(&uart->port) & TIOCM_CTS)) { |
@@ -239,10 +243,10 @@ static void bfin_serial_rx_chars(struct bfin_serial_port *uart) | |||
239 | return; | 243 | return; |
240 | } | 244 | } |
241 | 245 | ||
242 | if (!uart->port.info || !uart->port.info->port.tty) | 246 | if (!uart->port.state || !uart->port.state->port.tty) |
243 | return; | 247 | return; |
244 | #endif | 248 | #endif |
245 | tty = uart->port.info->port.tty; | 249 | tty = uart->port.state->port.tty; |
246 | 250 | ||
247 | if (ANOMALY_05000363) { | 251 | if (ANOMALY_05000363) { |
248 | /* The BF533 (and BF561) family of processors have a nice anomaly | 252 | /* The BF533 (and BF561) family of processors have a nice anomaly |
@@ -327,7 +331,7 @@ static void bfin_serial_rx_chars(struct bfin_serial_port *uart) | |||
327 | 331 | ||
328 | static void bfin_serial_tx_chars(struct bfin_serial_port *uart) | 332 | static void bfin_serial_tx_chars(struct bfin_serial_port *uart) |
329 | { | 333 | { |
330 | struct circ_buf *xmit = &uart->port.info->xmit; | 334 | struct circ_buf *xmit = &uart->port.state->xmit; |
331 | 335 | ||
332 | if (uart_circ_empty(xmit) || uart_tx_stopped(&uart->port)) { | 336 | if (uart_circ_empty(xmit) || uart_tx_stopped(&uart->port)) { |
333 | #ifdef CONFIG_BF54x | 337 | #ifdef CONFIG_BF54x |
@@ -394,7 +398,7 @@ static irqreturn_t bfin_serial_tx_int(int irq, void *dev_id) | |||
394 | #ifdef CONFIG_SERIAL_BFIN_DMA | 398 | #ifdef CONFIG_SERIAL_BFIN_DMA |
395 | static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart) | 399 | static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart) |
396 | { | 400 | { |
397 | struct circ_buf *xmit = &uart->port.info->xmit; | 401 | struct circ_buf *xmit = &uart->port.state->xmit; |
398 | 402 | ||
399 | uart->tx_done = 0; | 403 | uart->tx_done = 0; |
400 | 404 | ||
@@ -432,7 +436,7 @@ static void bfin_serial_dma_tx_chars(struct bfin_serial_port *uart) | |||
432 | 436 | ||
433 | static void bfin_serial_dma_rx_chars(struct bfin_serial_port *uart) | 437 | static void bfin_serial_dma_rx_chars(struct bfin_serial_port *uart) |
434 | { | 438 | { |
435 | struct tty_struct *tty = uart->port.info->port.tty; | 439 | struct tty_struct *tty = uart->port.state->port.tty; |
436 | int i, flg, status; | 440 | int i, flg, status; |
437 | 441 | ||
438 | status = UART_GET_LSR(uart); | 442 | status = UART_GET_LSR(uart); |
@@ -525,7 +529,7 @@ void bfin_serial_rx_dma_timeout(struct bfin_serial_port *uart) | |||
525 | static irqreturn_t bfin_serial_dma_tx_int(int irq, void *dev_id) | 529 | static irqreturn_t bfin_serial_dma_tx_int(int irq, void *dev_id) |
526 | { | 530 | { |
527 | struct bfin_serial_port *uart = dev_id; | 531 | struct bfin_serial_port *uart = dev_id; |
528 | struct circ_buf *xmit = &uart->port.info->xmit; | 532 | struct circ_buf *xmit = &uart->port.state->xmit; |
529 | 533 | ||
530 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS | 534 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS |
531 | if (uart->scts && !(bfin_serial_get_mctrl(&uart->port)&TIOCM_CTS)) { | 535 | if (uart->scts && !(bfin_serial_get_mctrl(&uart->port)&TIOCM_CTS)) { |
@@ -961,10 +965,10 @@ static void bfin_serial_set_ldisc(struct uart_port *port) | |||
961 | int line = port->line; | 965 | int line = port->line; |
962 | unsigned short val; | 966 | unsigned short val; |
963 | 967 | ||
964 | if (line >= port->info->port.tty->driver->num) | 968 | if (line >= port->state->port.tty->driver->num) |
965 | return; | 969 | return; |
966 | 970 | ||
967 | switch (port->info->port.tty->termios->c_line) { | 971 | switch (port->state->port.tty->termios->c_line) { |
968 | case N_IRDA: | 972 | case N_IRDA: |
969 | val = UART_GET_GCTL(&bfin_serial_ports[line]); | 973 | val = UART_GET_GCTL(&bfin_serial_ports[line]); |
970 | val |= (IREN | RPOLC); | 974 | val |= (IREN | RPOLC); |
diff --git a/drivers/serial/bfin_sport_uart.c b/drivers/serial/bfin_sport_uart.c index c108b1a0ce98..088bb35475f1 100644 --- a/drivers/serial/bfin_sport_uart.c +++ b/drivers/serial/bfin_sport_uart.c | |||
@@ -178,7 +178,7 @@ static int sport_uart_setup(struct sport_uart_port *up, int sclk, int baud_rate) | |||
178 | static irqreturn_t sport_uart_rx_irq(int irq, void *dev_id) | 178 | static irqreturn_t sport_uart_rx_irq(int irq, void *dev_id) |
179 | { | 179 | { |
180 | struct sport_uart_port *up = dev_id; | 180 | struct sport_uart_port *up = dev_id; |
181 | struct tty_struct *tty = up->port.info->port.tty; | 181 | struct tty_struct *tty = up->port.state->port.tty; |
182 | unsigned int ch; | 182 | unsigned int ch; |
183 | 183 | ||
184 | do { | 184 | do { |
@@ -205,7 +205,7 @@ static irqreturn_t sport_uart_tx_irq(int irq, void *dev_id) | |||
205 | static irqreturn_t sport_uart_err_irq(int irq, void *dev_id) | 205 | static irqreturn_t sport_uart_err_irq(int irq, void *dev_id) |
206 | { | 206 | { |
207 | struct sport_uart_port *up = dev_id; | 207 | struct sport_uart_port *up = dev_id; |
208 | struct tty_struct *tty = up->port.info->port.tty; | 208 | struct tty_struct *tty = up->port.state->port.tty; |
209 | unsigned int stat = SPORT_GET_STAT(up); | 209 | unsigned int stat = SPORT_GET_STAT(up); |
210 | 210 | ||
211 | /* Overflow in RX FIFO */ | 211 | /* Overflow in RX FIFO */ |
@@ -290,7 +290,7 @@ fail1: | |||
290 | 290 | ||
291 | static void sport_uart_tx_chars(struct sport_uart_port *up) | 291 | static void sport_uart_tx_chars(struct sport_uart_port *up) |
292 | { | 292 | { |
293 | struct circ_buf *xmit = &up->port.info->xmit; | 293 | struct circ_buf *xmit = &up->port.state->xmit; |
294 | 294 | ||
295 | if (SPORT_GET_STAT(up) & TXF) | 295 | if (SPORT_GET_STAT(up) & TXF) |
296 | return; | 296 | return; |
diff --git a/drivers/serial/clps711x.c b/drivers/serial/clps711x.c index 80e76426131d..b6acd19b458e 100644 --- a/drivers/serial/clps711x.c +++ b/drivers/serial/clps711x.c | |||
@@ -93,7 +93,7 @@ static void clps711xuart_enable_ms(struct uart_port *port) | |||
93 | static irqreturn_t clps711xuart_int_rx(int irq, void *dev_id) | 93 | static irqreturn_t clps711xuart_int_rx(int irq, void *dev_id) |
94 | { | 94 | { |
95 | struct uart_port *port = dev_id; | 95 | struct uart_port *port = dev_id; |
96 | struct tty_struct *tty = port->info->port.tty; | 96 | struct tty_struct *tty = port->state->port.tty; |
97 | unsigned int status, ch, flg; | 97 | unsigned int status, ch, flg; |
98 | 98 | ||
99 | status = clps_readl(SYSFLG(port)); | 99 | status = clps_readl(SYSFLG(port)); |
@@ -147,7 +147,7 @@ static irqreturn_t clps711xuart_int_rx(int irq, void *dev_id) | |||
147 | static irqreturn_t clps711xuart_int_tx(int irq, void *dev_id) | 147 | static irqreturn_t clps711xuart_int_tx(int irq, void *dev_id) |
148 | { | 148 | { |
149 | struct uart_port *port = dev_id; | 149 | struct uart_port *port = dev_id; |
150 | struct circ_buf *xmit = &port->info->xmit; | 150 | struct circ_buf *xmit = &port->state->xmit; |
151 | int count; | 151 | int count; |
152 | 152 | ||
153 | if (port->x_char) { | 153 | if (port->x_char) { |
diff --git a/drivers/serial/cpm_uart/cpm_uart_core.c b/drivers/serial/cpm_uart/cpm_uart_core.c index f8df0681e160..8d349b23249a 100644 --- a/drivers/serial/cpm_uart/cpm_uart_core.c +++ b/drivers/serial/cpm_uart/cpm_uart_core.c | |||
@@ -244,7 +244,7 @@ static void cpm_uart_int_rx(struct uart_port *port) | |||
244 | int i; | 244 | int i; |
245 | unsigned char ch; | 245 | unsigned char ch; |
246 | u8 *cp; | 246 | u8 *cp; |
247 | struct tty_struct *tty = port->info->port.tty; | 247 | struct tty_struct *tty = port->state->port.tty; |
248 | struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port; | 248 | struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port; |
249 | cbd_t __iomem *bdp; | 249 | cbd_t __iomem *bdp; |
250 | u16 status; | 250 | u16 status; |
diff --git a/drivers/serial/dz.c b/drivers/serial/dz.c index 6042b87797a1..57421d776329 100644 --- a/drivers/serial/dz.c +++ b/drivers/serial/dz.c | |||
@@ -197,7 +197,7 @@ static inline void dz_receive_chars(struct dz_mux *mux) | |||
197 | while ((status = dz_in(dport, DZ_RBUF)) & DZ_DVAL) { | 197 | while ((status = dz_in(dport, DZ_RBUF)) & DZ_DVAL) { |
198 | dport = &mux->dport[LINE(status)]; | 198 | dport = &mux->dport[LINE(status)]; |
199 | uport = &dport->port; | 199 | uport = &dport->port; |
200 | tty = uport->info->port.tty; /* point to the proper dev */ | 200 | tty = uport->state->port.tty; /* point to the proper dev */ |
201 | 201 | ||
202 | ch = UCHAR(status); /* grab the char */ | 202 | ch = UCHAR(status); /* grab the char */ |
203 | flag = TTY_NORMAL; | 203 | flag = TTY_NORMAL; |
@@ -249,7 +249,7 @@ static inline void dz_receive_chars(struct dz_mux *mux) | |||
249 | } | 249 | } |
250 | for (i = 0; i < DZ_NB_PORT; i++) | 250 | for (i = 0; i < DZ_NB_PORT; i++) |
251 | if (lines_rx[i]) | 251 | if (lines_rx[i]) |
252 | tty_flip_buffer_push(mux->dport[i].port.info->port.tty); | 252 | tty_flip_buffer_push(mux->dport[i].port.state->port.tty); |
253 | } | 253 | } |
254 | 254 | ||
255 | /* | 255 | /* |
@@ -268,7 +268,7 @@ static inline void dz_transmit_chars(struct dz_mux *mux) | |||
268 | 268 | ||
269 | status = dz_in(dport, DZ_CSR); | 269 | status = dz_in(dport, DZ_CSR); |
270 | dport = &mux->dport[LINE(status)]; | 270 | dport = &mux->dport[LINE(status)]; |
271 | xmit = &dport->port.info->xmit; | 271 | xmit = &dport->port.state->xmit; |
272 | 272 | ||
273 | if (dport->port.x_char) { /* XON/XOFF chars */ | 273 | if (dport->port.x_char) { /* XON/XOFF chars */ |
274 | dz_out(dport, DZ_TDR, dport->port.x_char); | 274 | dz_out(dport, DZ_TDR, dport->port.x_char); |
diff --git a/drivers/serial/icom.c b/drivers/serial/icom.c index cd1b6a45bb82..2d7feecaf492 100644 --- a/drivers/serial/icom.c +++ b/drivers/serial/icom.c | |||
@@ -617,7 +617,7 @@ static void shutdown(struct icom_port *icom_port) | |||
617 | * disable break condition | 617 | * disable break condition |
618 | */ | 618 | */ |
619 | cmdReg = readb(&icom_port->dram->CmdReg); | 619 | cmdReg = readb(&icom_port->dram->CmdReg); |
620 | if ((cmdReg | CMD_SND_BREAK) == CMD_SND_BREAK) { | 620 | if (cmdReg & CMD_SND_BREAK) { |
621 | writeb(cmdReg & ~CMD_SND_BREAK, &icom_port->dram->CmdReg); | 621 | writeb(cmdReg & ~CMD_SND_BREAK, &icom_port->dram->CmdReg); |
622 | } | 622 | } |
623 | } | 623 | } |
@@ -627,7 +627,7 @@ static int icom_write(struct uart_port *port) | |||
627 | unsigned long data_count; | 627 | unsigned long data_count; |
628 | unsigned char cmdReg; | 628 | unsigned char cmdReg; |
629 | unsigned long offset; | 629 | unsigned long offset; |
630 | int temp_tail = port->info->xmit.tail; | 630 | int temp_tail = port->state->xmit.tail; |
631 | 631 | ||
632 | trace(ICOM_PORT, "WRITE", 0); | 632 | trace(ICOM_PORT, "WRITE", 0); |
633 | 633 | ||
@@ -638,11 +638,11 @@ static int icom_write(struct uart_port *port) | |||
638 | } | 638 | } |
639 | 639 | ||
640 | data_count = 0; | 640 | data_count = 0; |
641 | while ((port->info->xmit.head != temp_tail) && | 641 | while ((port->state->xmit.head != temp_tail) && |
642 | (data_count <= XMIT_BUFF_SZ)) { | 642 | (data_count <= XMIT_BUFF_SZ)) { |
643 | 643 | ||
644 | ICOM_PORT->xmit_buf[data_count++] = | 644 | ICOM_PORT->xmit_buf[data_count++] = |
645 | port->info->xmit.buf[temp_tail]; | 645 | port->state->xmit.buf[temp_tail]; |
646 | 646 | ||
647 | temp_tail++; | 647 | temp_tail++; |
648 | temp_tail &= (UART_XMIT_SIZE - 1); | 648 | temp_tail &= (UART_XMIT_SIZE - 1); |
@@ -694,8 +694,8 @@ static inline void check_modem_status(struct icom_port *icom_port) | |||
694 | uart_handle_cts_change(&icom_port->uart_port, | 694 | uart_handle_cts_change(&icom_port->uart_port, |
695 | delta_status & ICOM_CTS); | 695 | delta_status & ICOM_CTS); |
696 | 696 | ||
697 | wake_up_interruptible(&icom_port->uart_port.info-> | 697 | wake_up_interruptible(&icom_port->uart_port.state-> |
698 | delta_msr_wait); | 698 | port.delta_msr_wait); |
699 | old_status = status; | 699 | old_status = status; |
700 | } | 700 | } |
701 | spin_unlock(&icom_port->uart_port.lock); | 701 | spin_unlock(&icom_port->uart_port.lock); |
@@ -718,10 +718,10 @@ static void xmit_interrupt(u16 port_int_reg, struct icom_port *icom_port) | |||
718 | icom_port->uart_port.icount.tx += count; | 718 | icom_port->uart_port.icount.tx += count; |
719 | 719 | ||
720 | for (i=0; i<count && | 720 | for (i=0; i<count && |
721 | !uart_circ_empty(&icom_port->uart_port.info->xmit); i++) { | 721 | !uart_circ_empty(&icom_port->uart_port.state->xmit); i++) { |
722 | 722 | ||
723 | icom_port->uart_port.info->xmit.tail++; | 723 | icom_port->uart_port.state->xmit.tail++; |
724 | icom_port->uart_port.info->xmit.tail &= | 724 | icom_port->uart_port.state->xmit.tail &= |
725 | (UART_XMIT_SIZE - 1); | 725 | (UART_XMIT_SIZE - 1); |
726 | } | 726 | } |
727 | 727 | ||
@@ -735,7 +735,7 @@ static void xmit_interrupt(u16 port_int_reg, struct icom_port *icom_port) | |||
735 | static void recv_interrupt(u16 port_int_reg, struct icom_port *icom_port) | 735 | static void recv_interrupt(u16 port_int_reg, struct icom_port *icom_port) |
736 | { | 736 | { |
737 | short int count, rcv_buff; | 737 | short int count, rcv_buff; |
738 | struct tty_struct *tty = icom_port->uart_port.info->port.tty; | 738 | struct tty_struct *tty = icom_port->uart_port.state->port.tty; |
739 | unsigned short int status; | 739 | unsigned short int status; |
740 | struct uart_icount *icount; | 740 | struct uart_icount *icount; |
741 | unsigned long offset; | 741 | unsigned long offset; |
diff --git a/drivers/serial/imx.c b/drivers/serial/imx.c index 7485afd0df4c..18130f11238e 100644 --- a/drivers/serial/imx.c +++ b/drivers/serial/imx.c | |||
@@ -224,7 +224,7 @@ static void imx_mctrl_check(struct imx_port *sport) | |||
224 | if (changed & TIOCM_CTS) | 224 | if (changed & TIOCM_CTS) |
225 | uart_handle_cts_change(&sport->port, status & TIOCM_CTS); | 225 | uart_handle_cts_change(&sport->port, status & TIOCM_CTS); |
226 | 226 | ||
227 | wake_up_interruptible(&sport->port.info->delta_msr_wait); | 227 | wake_up_interruptible(&sport->port.state->port.delta_msr_wait); |
228 | } | 228 | } |
229 | 229 | ||
230 | /* | 230 | /* |
@@ -236,7 +236,7 @@ static void imx_timeout(unsigned long data) | |||
236 | struct imx_port *sport = (struct imx_port *)data; | 236 | struct imx_port *sport = (struct imx_port *)data; |
237 | unsigned long flags; | 237 | unsigned long flags; |
238 | 238 | ||
239 | if (sport->port.info) { | 239 | if (sport->port.state) { |
240 | spin_lock_irqsave(&sport->port.lock, flags); | 240 | spin_lock_irqsave(&sport->port.lock, flags); |
241 | imx_mctrl_check(sport); | 241 | imx_mctrl_check(sport); |
242 | spin_unlock_irqrestore(&sport->port.lock, flags); | 242 | spin_unlock_irqrestore(&sport->port.lock, flags); |
@@ -323,7 +323,7 @@ static void imx_enable_ms(struct uart_port *port) | |||
323 | 323 | ||
324 | static inline void imx_transmit_buffer(struct imx_port *sport) | 324 | static inline void imx_transmit_buffer(struct imx_port *sport) |
325 | { | 325 | { |
326 | struct circ_buf *xmit = &sport->port.info->xmit; | 326 | struct circ_buf *xmit = &sport->port.state->xmit; |
327 | 327 | ||
328 | while (!(readl(sport->port.membase + UTS) & UTS_TXFULL)) { | 328 | while (!(readl(sport->port.membase + UTS) & UTS_TXFULL)) { |
329 | /* send xmit->buf[xmit->tail] | 329 | /* send xmit->buf[xmit->tail] |
@@ -388,7 +388,7 @@ static irqreturn_t imx_rtsint(int irq, void *dev_id) | |||
388 | 388 | ||
389 | writel(USR1_RTSD, sport->port.membase + USR1); | 389 | writel(USR1_RTSD, sport->port.membase + USR1); |
390 | uart_handle_cts_change(&sport->port, !!val); | 390 | uart_handle_cts_change(&sport->port, !!val); |
391 | wake_up_interruptible(&sport->port.info->delta_msr_wait); | 391 | wake_up_interruptible(&sport->port.state->port.delta_msr_wait); |
392 | 392 | ||
393 | spin_unlock_irqrestore(&sport->port.lock, flags); | 393 | spin_unlock_irqrestore(&sport->port.lock, flags); |
394 | return IRQ_HANDLED; | 394 | return IRQ_HANDLED; |
@@ -397,7 +397,7 @@ static irqreturn_t imx_rtsint(int irq, void *dev_id) | |||
397 | static irqreturn_t imx_txint(int irq, void *dev_id) | 397 | static irqreturn_t imx_txint(int irq, void *dev_id) |
398 | { | 398 | { |
399 | struct imx_port *sport = dev_id; | 399 | struct imx_port *sport = dev_id; |
400 | struct circ_buf *xmit = &sport->port.info->xmit; | 400 | struct circ_buf *xmit = &sport->port.state->xmit; |
401 | unsigned long flags; | 401 | unsigned long flags; |
402 | 402 | ||
403 | spin_lock_irqsave(&sport->port.lock,flags); | 403 | spin_lock_irqsave(&sport->port.lock,flags); |
@@ -427,7 +427,7 @@ static irqreturn_t imx_rxint(int irq, void *dev_id) | |||
427 | { | 427 | { |
428 | struct imx_port *sport = dev_id; | 428 | struct imx_port *sport = dev_id; |
429 | unsigned int rx,flg,ignored = 0; | 429 | unsigned int rx,flg,ignored = 0; |
430 | struct tty_struct *tty = sport->port.info->port.tty; | 430 | struct tty_struct *tty = sport->port.state->port.tty; |
431 | unsigned long flags, temp; | 431 | unsigned long flags, temp; |
432 | 432 | ||
433 | spin_lock_irqsave(&sport->port.lock,flags); | 433 | spin_lock_irqsave(&sport->port.lock,flags); |
@@ -900,11 +900,11 @@ imx_set_termios(struct uart_port *port, struct ktermios *termios, | |||
900 | rational_best_approximation(16 * div * baud, sport->port.uartclk, | 900 | rational_best_approximation(16 * div * baud, sport->port.uartclk, |
901 | 1 << 16, 1 << 16, &num, &denom); | 901 | 1 << 16, 1 << 16, &num, &denom); |
902 | 902 | ||
903 | if (port->info && port->info->port.tty) { | 903 | if (port->state && port->state->port.tty) { |
904 | tdiv64 = sport->port.uartclk; | 904 | tdiv64 = sport->port.uartclk; |
905 | tdiv64 *= num; | 905 | tdiv64 *= num; |
906 | do_div(tdiv64, denom * 16 * div); | 906 | do_div(tdiv64, denom * 16 * div); |
907 | tty_encode_baud_rate(sport->port.info->port.tty, | 907 | tty_encode_baud_rate(sport->port.state->port.tty, |
908 | (speed_t)tdiv64, (speed_t)tdiv64); | 908 | (speed_t)tdiv64, (speed_t)tdiv64); |
909 | } | 909 | } |
910 | 910 | ||
diff --git a/drivers/serial/ioc3_serial.c b/drivers/serial/ioc3_serial.c index ae3699d77dd0..d8983dd5c4b2 100644 --- a/drivers/serial/ioc3_serial.c +++ b/drivers/serial/ioc3_serial.c | |||
@@ -897,25 +897,25 @@ static void transmit_chars(struct uart_port *the_port) | |||
897 | char *start; | 897 | char *start; |
898 | struct tty_struct *tty; | 898 | struct tty_struct *tty; |
899 | struct ioc3_port *port = get_ioc3_port(the_port); | 899 | struct ioc3_port *port = get_ioc3_port(the_port); |
900 | struct uart_info *info; | 900 | struct uart_state *state; |
901 | 901 | ||
902 | if (!the_port) | 902 | if (!the_port) |
903 | return; | 903 | return; |
904 | if (!port) | 904 | if (!port) |
905 | return; | 905 | return; |
906 | 906 | ||
907 | info = the_port->info; | 907 | state = the_port->state; |
908 | tty = info->port.tty; | 908 | tty = state->port.tty; |
909 | 909 | ||
910 | if (uart_circ_empty(&info->xmit) || uart_tx_stopped(the_port)) { | 910 | if (uart_circ_empty(&state->xmit) || uart_tx_stopped(the_port)) { |
911 | /* Nothing to do or hw stopped */ | 911 | /* Nothing to do or hw stopped */ |
912 | set_notification(port, N_ALL_OUTPUT, 0); | 912 | set_notification(port, N_ALL_OUTPUT, 0); |
913 | return; | 913 | return; |
914 | } | 914 | } |
915 | 915 | ||
916 | head = info->xmit.head; | 916 | head = state->xmit.head; |
917 | tail = info->xmit.tail; | 917 | tail = state->xmit.tail; |
918 | start = (char *)&info->xmit.buf[tail]; | 918 | start = (char *)&state->xmit.buf[tail]; |
919 | 919 | ||
920 | /* write out all the data or until the end of the buffer */ | 920 | /* write out all the data or until the end of the buffer */ |
921 | xmit_count = (head < tail) ? (UART_XMIT_SIZE - tail) : (head - tail); | 921 | xmit_count = (head < tail) ? (UART_XMIT_SIZE - tail) : (head - tail); |
@@ -928,14 +928,14 @@ static void transmit_chars(struct uart_port *the_port) | |||
928 | /* advance the pointers */ | 928 | /* advance the pointers */ |
929 | tail += result; | 929 | tail += result; |
930 | tail &= UART_XMIT_SIZE - 1; | 930 | tail &= UART_XMIT_SIZE - 1; |
931 | info->xmit.tail = tail; | 931 | state->xmit.tail = tail; |
932 | start = (char *)&info->xmit.buf[tail]; | 932 | start = (char *)&state->xmit.buf[tail]; |
933 | } | 933 | } |
934 | } | 934 | } |
935 | if (uart_circ_chars_pending(&info->xmit) < WAKEUP_CHARS) | 935 | if (uart_circ_chars_pending(&state->xmit) < WAKEUP_CHARS) |
936 | uart_write_wakeup(the_port); | 936 | uart_write_wakeup(the_port); |
937 | 937 | ||
938 | if (uart_circ_empty(&info->xmit)) { | 938 | if (uart_circ_empty(&state->xmit)) { |
939 | set_notification(port, N_OUTPUT_LOWAT, 0); | 939 | set_notification(port, N_OUTPUT_LOWAT, 0); |
940 | } else { | 940 | } else { |
941 | set_notification(port, N_OUTPUT_LOWAT, 1); | 941 | set_notification(port, N_OUTPUT_LOWAT, 1); |
@@ -956,7 +956,7 @@ ioc3_change_speed(struct uart_port *the_port, | |||
956 | unsigned int cflag; | 956 | unsigned int cflag; |
957 | int baud; | 957 | int baud; |
958 | int new_parity = 0, new_parity_enable = 0, new_stop = 0, new_data = 8; | 958 | int new_parity = 0, new_parity_enable = 0, new_stop = 0, new_data = 8; |
959 | struct uart_info *info = the_port->info; | 959 | struct uart_state *state = the_port->state; |
960 | 960 | ||
961 | cflag = new_termios->c_cflag; | 961 | cflag = new_termios->c_cflag; |
962 | 962 | ||
@@ -997,14 +997,14 @@ ioc3_change_speed(struct uart_port *the_port, | |||
997 | 997 | ||
998 | the_port->ignore_status_mask = N_ALL_INPUT; | 998 | the_port->ignore_status_mask = N_ALL_INPUT; |
999 | 999 | ||
1000 | info->port.tty->low_latency = 1; | 1000 | state->port.tty->low_latency = 1; |
1001 | 1001 | ||
1002 | if (I_IGNPAR(info->port.tty)) | 1002 | if (I_IGNPAR(state->port.tty)) |
1003 | the_port->ignore_status_mask &= ~(N_PARITY_ERROR | 1003 | the_port->ignore_status_mask &= ~(N_PARITY_ERROR |
1004 | | N_FRAMING_ERROR); | 1004 | | N_FRAMING_ERROR); |
1005 | if (I_IGNBRK(info->port.tty)) { | 1005 | if (I_IGNBRK(state->port.tty)) { |
1006 | the_port->ignore_status_mask &= ~N_BREAK; | 1006 | the_port->ignore_status_mask &= ~N_BREAK; |
1007 | if (I_IGNPAR(info->port.tty)) | 1007 | if (I_IGNPAR(state->port.tty)) |
1008 | the_port->ignore_status_mask &= ~N_OVERRUN_ERROR; | 1008 | the_port->ignore_status_mask &= ~N_OVERRUN_ERROR; |
1009 | } | 1009 | } |
1010 | if (!(cflag & CREAD)) { | 1010 | if (!(cflag & CREAD)) { |
@@ -1286,8 +1286,8 @@ static inline int do_read(struct uart_port *the_port, char *buf, int len) | |||
1286 | uart_handle_dcd_change | 1286 | uart_handle_dcd_change |
1287 | (port->ip_port, 0); | 1287 | (port->ip_port, 0); |
1288 | wake_up_interruptible | 1288 | wake_up_interruptible |
1289 | (&the_port->info-> | 1289 | (&the_port->state-> |
1290 | delta_msr_wait); | 1290 | port.delta_msr_wait); |
1291 | } | 1291 | } |
1292 | 1292 | ||
1293 | /* If we had any data to return, we | 1293 | /* If we had any data to return, we |
@@ -1392,21 +1392,21 @@ static int receive_chars(struct uart_port *the_port) | |||
1392 | struct tty_struct *tty; | 1392 | struct tty_struct *tty; |
1393 | unsigned char ch[MAX_CHARS]; | 1393 | unsigned char ch[MAX_CHARS]; |
1394 | int read_count = 0, read_room, flip = 0; | 1394 | int read_count = 0, read_room, flip = 0; |
1395 | struct uart_info *info = the_port->info; | 1395 | struct uart_state *state = the_port->state; |
1396 | struct ioc3_port *port = get_ioc3_port(the_port); | 1396 | struct ioc3_port *port = get_ioc3_port(the_port); |
1397 | unsigned long pflags; | 1397 | unsigned long pflags; |
1398 | 1398 | ||
1399 | /* Make sure all the pointers are "good" ones */ | 1399 | /* Make sure all the pointers are "good" ones */ |
1400 | if (!info) | 1400 | if (!state) |
1401 | return 0; | 1401 | return 0; |
1402 | if (!info->port.tty) | 1402 | if (!state->port.tty) |
1403 | return 0; | 1403 | return 0; |
1404 | 1404 | ||
1405 | if (!(port->ip_flags & INPUT_ENABLE)) | 1405 | if (!(port->ip_flags & INPUT_ENABLE)) |
1406 | return 0; | 1406 | return 0; |
1407 | 1407 | ||
1408 | spin_lock_irqsave(&the_port->lock, pflags); | 1408 | spin_lock_irqsave(&the_port->lock, pflags); |
1409 | tty = info->port.tty; | 1409 | tty = state->port.tty; |
1410 | 1410 | ||
1411 | read_count = do_read(the_port, ch, MAX_CHARS); | 1411 | read_count = do_read(the_port, ch, MAX_CHARS); |
1412 | if (read_count > 0) { | 1412 | if (read_count > 0) { |
@@ -1491,7 +1491,7 @@ ioc3uart_intr_one(struct ioc3_submodule *is, | |||
1491 | uart_handle_dcd_change(the_port, | 1491 | uart_handle_dcd_change(the_port, |
1492 | shadow & SHADOW_DCD); | 1492 | shadow & SHADOW_DCD); |
1493 | wake_up_interruptible | 1493 | wake_up_interruptible |
1494 | (&the_port->info->delta_msr_wait); | 1494 | (&the_port->state->port.delta_msr_wait); |
1495 | } else if ((port->ip_notify & N_DDCD) | 1495 | } else if ((port->ip_notify & N_DDCD) |
1496 | && !(shadow & SHADOW_DCD)) { | 1496 | && !(shadow & SHADOW_DCD)) { |
1497 | /* Flag delta DCD/no DCD */ | 1497 | /* Flag delta DCD/no DCD */ |
@@ -1511,7 +1511,7 @@ ioc3uart_intr_one(struct ioc3_submodule *is, | |||
1511 | uart_handle_cts_change(the_port, shadow | 1511 | uart_handle_cts_change(the_port, shadow |
1512 | & SHADOW_CTS); | 1512 | & SHADOW_CTS); |
1513 | wake_up_interruptible | 1513 | wake_up_interruptible |
1514 | (&the_port->info->delta_msr_wait); | 1514 | (&the_port->state->port.delta_msr_wait); |
1515 | } | 1515 | } |
1516 | } | 1516 | } |
1517 | 1517 | ||
@@ -1721,14 +1721,14 @@ static void ic3_shutdown(struct uart_port *the_port) | |||
1721 | { | 1721 | { |
1722 | unsigned long port_flags; | 1722 | unsigned long port_flags; |
1723 | struct ioc3_port *port; | 1723 | struct ioc3_port *port; |
1724 | struct uart_info *info; | 1724 | struct uart_state *state; |
1725 | 1725 | ||
1726 | port = get_ioc3_port(the_port); | 1726 | port = get_ioc3_port(the_port); |
1727 | if (!port) | 1727 | if (!port) |
1728 | return; | 1728 | return; |
1729 | 1729 | ||
1730 | info = the_port->info; | 1730 | state = the_port->state; |
1731 | wake_up_interruptible(&info->delta_msr_wait); | 1731 | wake_up_interruptible(&state->port.delta_msr_wait); |
1732 | 1732 | ||
1733 | spin_lock_irqsave(&the_port->lock, port_flags); | 1733 | spin_lock_irqsave(&the_port->lock, port_flags); |
1734 | set_notification(port, N_ALL, 0); | 1734 | set_notification(port, N_ALL, 0); |
diff --git a/drivers/serial/ioc4_serial.c b/drivers/serial/ioc4_serial.c index 6bab63cd5b29..2e02c3026d24 100644 --- a/drivers/serial/ioc4_serial.c +++ b/drivers/serial/ioc4_serial.c | |||
@@ -930,7 +930,7 @@ static void handle_dma_error_intr(void *arg, uint32_t other_ir) | |||
930 | 930 | ||
931 | if (readl(&port->ip_mem->pci_err_addr_l.raw) & IOC4_PCI_ERR_ADDR_VLD) { | 931 | if (readl(&port->ip_mem->pci_err_addr_l.raw) & IOC4_PCI_ERR_ADDR_VLD) { |
932 | printk(KERN_ERR | 932 | printk(KERN_ERR |
933 | "PCI error address is 0x%lx, " | 933 | "PCI error address is 0x%llx, " |
934 | "master is serial port %c %s\n", | 934 | "master is serial port %c %s\n", |
935 | (((uint64_t)readl(&port->ip_mem->pci_err_addr_h) | 935 | (((uint64_t)readl(&port->ip_mem->pci_err_addr_h) |
936 | << 32) | 936 | << 32) |
@@ -1627,25 +1627,25 @@ static void transmit_chars(struct uart_port *the_port) | |||
1627 | char *start; | 1627 | char *start; |
1628 | struct tty_struct *tty; | 1628 | struct tty_struct *tty; |
1629 | struct ioc4_port *port = get_ioc4_port(the_port, 0); | 1629 | struct ioc4_port *port = get_ioc4_port(the_port, 0); |
1630 | struct uart_info *info; | 1630 | struct uart_state *state; |
1631 | 1631 | ||
1632 | if (!the_port) | 1632 | if (!the_port) |
1633 | return; | 1633 | return; |
1634 | if (!port) | 1634 | if (!port) |
1635 | return; | 1635 | return; |
1636 | 1636 | ||
1637 | info = the_port->info; | 1637 | state = the_port->state; |
1638 | tty = info->port.tty; | 1638 | tty = state->port.tty; |
1639 | 1639 | ||
1640 | if (uart_circ_empty(&info->xmit) || uart_tx_stopped(the_port)) { | 1640 | if (uart_circ_empty(&state->xmit) || uart_tx_stopped(the_port)) { |
1641 | /* Nothing to do or hw stopped */ | 1641 | /* Nothing to do or hw stopped */ |
1642 | set_notification(port, N_ALL_OUTPUT, 0); | 1642 | set_notification(port, N_ALL_OUTPUT, 0); |
1643 | return; | 1643 | return; |
1644 | } | 1644 | } |
1645 | 1645 | ||
1646 | head = info->xmit.head; | 1646 | head = state->xmit.head; |
1647 | tail = info->xmit.tail; | 1647 | tail = state->xmit.tail; |
1648 | start = (char *)&info->xmit.buf[tail]; | 1648 | start = (char *)&state->xmit.buf[tail]; |
1649 | 1649 | ||
1650 | /* write out all the data or until the end of the buffer */ | 1650 | /* write out all the data or until the end of the buffer */ |
1651 | xmit_count = (head < tail) ? (UART_XMIT_SIZE - tail) : (head - tail); | 1651 | xmit_count = (head < tail) ? (UART_XMIT_SIZE - tail) : (head - tail); |
@@ -1658,14 +1658,14 @@ static void transmit_chars(struct uart_port *the_port) | |||
1658 | /* advance the pointers */ | 1658 | /* advance the pointers */ |
1659 | tail += result; | 1659 | tail += result; |
1660 | tail &= UART_XMIT_SIZE - 1; | 1660 | tail &= UART_XMIT_SIZE - 1; |
1661 | info->xmit.tail = tail; | 1661 | state->xmit.tail = tail; |
1662 | start = (char *)&info->xmit.buf[tail]; | 1662 | start = (char *)&state->xmit.buf[tail]; |
1663 | } | 1663 | } |
1664 | } | 1664 | } |
1665 | if (uart_circ_chars_pending(&info->xmit) < WAKEUP_CHARS) | 1665 | if (uart_circ_chars_pending(&state->xmit) < WAKEUP_CHARS) |
1666 | uart_write_wakeup(the_port); | 1666 | uart_write_wakeup(the_port); |
1667 | 1667 | ||
1668 | if (uart_circ_empty(&info->xmit)) { | 1668 | if (uart_circ_empty(&state->xmit)) { |
1669 | set_notification(port, N_OUTPUT_LOWAT, 0); | 1669 | set_notification(port, N_OUTPUT_LOWAT, 0); |
1670 | } else { | 1670 | } else { |
1671 | set_notification(port, N_OUTPUT_LOWAT, 1); | 1671 | set_notification(port, N_OUTPUT_LOWAT, 1); |
@@ -1686,7 +1686,7 @@ ioc4_change_speed(struct uart_port *the_port, | |||
1686 | int baud, bits; | 1686 | int baud, bits; |
1687 | unsigned cflag; | 1687 | unsigned cflag; |
1688 | int new_parity = 0, new_parity_enable = 0, new_stop = 0, new_data = 8; | 1688 | int new_parity = 0, new_parity_enable = 0, new_stop = 0, new_data = 8; |
1689 | struct uart_info *info = the_port->info; | 1689 | struct uart_state *state = the_port->state; |
1690 | 1690 | ||
1691 | cflag = new_termios->c_cflag; | 1691 | cflag = new_termios->c_cflag; |
1692 | 1692 | ||
@@ -1738,14 +1738,14 @@ ioc4_change_speed(struct uart_port *the_port, | |||
1738 | 1738 | ||
1739 | the_port->ignore_status_mask = N_ALL_INPUT; | 1739 | the_port->ignore_status_mask = N_ALL_INPUT; |
1740 | 1740 | ||
1741 | info->port.tty->low_latency = 1; | 1741 | state->port.tty->low_latency = 1; |
1742 | 1742 | ||
1743 | if (I_IGNPAR(info->port.tty)) | 1743 | if (I_IGNPAR(state->port.tty)) |
1744 | the_port->ignore_status_mask &= ~(N_PARITY_ERROR | 1744 | the_port->ignore_status_mask &= ~(N_PARITY_ERROR |
1745 | | N_FRAMING_ERROR); | 1745 | | N_FRAMING_ERROR); |
1746 | if (I_IGNBRK(info->port.tty)) { | 1746 | if (I_IGNBRK(state->port.tty)) { |
1747 | the_port->ignore_status_mask &= ~N_BREAK; | 1747 | the_port->ignore_status_mask &= ~N_BREAK; |
1748 | if (I_IGNPAR(info->port.tty)) | 1748 | if (I_IGNPAR(state->port.tty)) |
1749 | the_port->ignore_status_mask &= ~N_OVERRUN_ERROR; | 1749 | the_port->ignore_status_mask &= ~N_OVERRUN_ERROR; |
1750 | } | 1750 | } |
1751 | if (!(cflag & CREAD)) { | 1751 | if (!(cflag & CREAD)) { |
@@ -1784,7 +1784,7 @@ ioc4_change_speed(struct uart_port *the_port, | |||
1784 | static inline int ic4_startup_local(struct uart_port *the_port) | 1784 | static inline int ic4_startup_local(struct uart_port *the_port) |
1785 | { | 1785 | { |
1786 | struct ioc4_port *port; | 1786 | struct ioc4_port *port; |
1787 | struct uart_info *info; | 1787 | struct uart_state *state; |
1788 | 1788 | ||
1789 | if (!the_port) | 1789 | if (!the_port) |
1790 | return -1; | 1790 | return -1; |
@@ -1793,7 +1793,7 @@ static inline int ic4_startup_local(struct uart_port *the_port) | |||
1793 | if (!port) | 1793 | if (!port) |
1794 | return -1; | 1794 | return -1; |
1795 | 1795 | ||
1796 | info = the_port->info; | 1796 | state = the_port->state; |
1797 | 1797 | ||
1798 | local_open(port); | 1798 | local_open(port); |
1799 | 1799 | ||
@@ -1801,7 +1801,7 @@ static inline int ic4_startup_local(struct uart_port *the_port) | |||
1801 | ioc4_set_proto(port, the_port->mapbase); | 1801 | ioc4_set_proto(port, the_port->mapbase); |
1802 | 1802 | ||
1803 | /* set the speed of the serial port */ | 1803 | /* set the speed of the serial port */ |
1804 | ioc4_change_speed(the_port, info->port.tty->termios, | 1804 | ioc4_change_speed(the_port, state->port.tty->termios, |
1805 | (struct ktermios *)0); | 1805 | (struct ktermios *)0); |
1806 | 1806 | ||
1807 | return 0; | 1807 | return 0; |
@@ -1882,7 +1882,7 @@ static void handle_intr(void *arg, uint32_t sio_ir) | |||
1882 | the_port = port->ip_port; | 1882 | the_port = port->ip_port; |
1883 | the_port->icount.dcd = 1; | 1883 | the_port->icount.dcd = 1; |
1884 | wake_up_interruptible | 1884 | wake_up_interruptible |
1885 | (&the_port-> info->delta_msr_wait); | 1885 | (&the_port->state->port.delta_msr_wait); |
1886 | } else if ((port->ip_notify & N_DDCD) | 1886 | } else if ((port->ip_notify & N_DDCD) |
1887 | && !(shadow & IOC4_SHADOW_DCD)) { | 1887 | && !(shadow & IOC4_SHADOW_DCD)) { |
1888 | /* Flag delta DCD/no DCD */ | 1888 | /* Flag delta DCD/no DCD */ |
@@ -1904,7 +1904,7 @@ static void handle_intr(void *arg, uint32_t sio_ir) | |||
1904 | the_port->icount.cts = | 1904 | the_port->icount.cts = |
1905 | (shadow & IOC4_SHADOW_CTS) ? 1 : 0; | 1905 | (shadow & IOC4_SHADOW_CTS) ? 1 : 0; |
1906 | wake_up_interruptible | 1906 | wake_up_interruptible |
1907 | (&the_port->info->delta_msr_wait); | 1907 | (&the_port->state->port.delta_msr_wait); |
1908 | } | 1908 | } |
1909 | } | 1909 | } |
1910 | 1910 | ||
@@ -2236,8 +2236,8 @@ static inline int do_read(struct uart_port *the_port, unsigned char *buf, | |||
2236 | && port->ip_port) { | 2236 | && port->ip_port) { |
2237 | the_port->icount.dcd = 0; | 2237 | the_port->icount.dcd = 0; |
2238 | wake_up_interruptible | 2238 | wake_up_interruptible |
2239 | (&the_port->info-> | 2239 | (&the_port->state-> |
2240 | delta_msr_wait); | 2240 | port.delta_msr_wait); |
2241 | } | 2241 | } |
2242 | 2242 | ||
2243 | /* If we had any data to return, we | 2243 | /* If we had any data to return, we |
@@ -2341,17 +2341,17 @@ static void receive_chars(struct uart_port *the_port) | |||
2341 | unsigned char ch[IOC4_MAX_CHARS]; | 2341 | unsigned char ch[IOC4_MAX_CHARS]; |
2342 | int read_count, request_count = IOC4_MAX_CHARS; | 2342 | int read_count, request_count = IOC4_MAX_CHARS; |
2343 | struct uart_icount *icount; | 2343 | struct uart_icount *icount; |
2344 | struct uart_info *info = the_port->info; | 2344 | struct uart_state *state = the_port->state; |
2345 | unsigned long pflags; | 2345 | unsigned long pflags; |
2346 | 2346 | ||
2347 | /* Make sure all the pointers are "good" ones */ | 2347 | /* Make sure all the pointers are "good" ones */ |
2348 | if (!info) | 2348 | if (!state) |
2349 | return; | 2349 | return; |
2350 | if (!info->port.tty) | 2350 | if (!state->port.tty) |
2351 | return; | 2351 | return; |
2352 | 2352 | ||
2353 | spin_lock_irqsave(&the_port->lock, pflags); | 2353 | spin_lock_irqsave(&the_port->lock, pflags); |
2354 | tty = info->port.tty; | 2354 | tty = state->port.tty; |
2355 | 2355 | ||
2356 | request_count = tty_buffer_request_room(tty, IOC4_MAX_CHARS); | 2356 | request_count = tty_buffer_request_room(tty, IOC4_MAX_CHARS); |
2357 | 2357 | ||
@@ -2430,19 +2430,19 @@ static void ic4_shutdown(struct uart_port *the_port) | |||
2430 | { | 2430 | { |
2431 | unsigned long port_flags; | 2431 | unsigned long port_flags; |
2432 | struct ioc4_port *port; | 2432 | struct ioc4_port *port; |
2433 | struct uart_info *info; | 2433 | struct uart_state *state; |
2434 | 2434 | ||
2435 | port = get_ioc4_port(the_port, 0); | 2435 | port = get_ioc4_port(the_port, 0); |
2436 | if (!port) | 2436 | if (!port) |
2437 | return; | 2437 | return; |
2438 | 2438 | ||
2439 | info = the_port->info; | 2439 | state = the_port->state; |
2440 | port->ip_port = NULL; | 2440 | port->ip_port = NULL; |
2441 | 2441 | ||
2442 | wake_up_interruptible(&info->delta_msr_wait); | 2442 | wake_up_interruptible(&state->port.delta_msr_wait); |
2443 | 2443 | ||
2444 | if (info->port.tty) | 2444 | if (state->port.tty) |
2445 | set_bit(TTY_IO_ERROR, &info->port.tty->flags); | 2445 | set_bit(TTY_IO_ERROR, &state->port.tty->flags); |
2446 | 2446 | ||
2447 | spin_lock_irqsave(&the_port->lock, port_flags); | 2447 | spin_lock_irqsave(&the_port->lock, port_flags); |
2448 | set_notification(port, N_ALL, 0); | 2448 | set_notification(port, N_ALL, 0); |
@@ -2538,7 +2538,7 @@ static int ic4_startup(struct uart_port *the_port) | |||
2538 | int retval; | 2538 | int retval; |
2539 | struct ioc4_port *port; | 2539 | struct ioc4_port *port; |
2540 | struct ioc4_control *control; | 2540 | struct ioc4_control *control; |
2541 | struct uart_info *info; | 2541 | struct uart_state *state; |
2542 | unsigned long port_flags; | 2542 | unsigned long port_flags; |
2543 | 2543 | ||
2544 | if (!the_port) | 2544 | if (!the_port) |
@@ -2546,7 +2546,7 @@ static int ic4_startup(struct uart_port *the_port) | |||
2546 | port = get_ioc4_port(the_port, 1); | 2546 | port = get_ioc4_port(the_port, 1); |
2547 | if (!port) | 2547 | if (!port) |
2548 | return -ENODEV; | 2548 | return -ENODEV; |
2549 | info = the_port->info; | 2549 | state = the_port->state; |
2550 | 2550 | ||
2551 | control = port->ip_control; | 2551 | control = port->ip_control; |
2552 | if (!control) { | 2552 | if (!control) { |
diff --git a/drivers/serial/ip22zilog.c b/drivers/serial/ip22zilog.c index 0d9acbd0bb70..ebff4a1d4bcc 100644 --- a/drivers/serial/ip22zilog.c +++ b/drivers/serial/ip22zilog.c | |||
@@ -256,9 +256,9 @@ static struct tty_struct *ip22zilog_receive_chars(struct uart_ip22zilog_port *up | |||
256 | unsigned int r1; | 256 | unsigned int r1; |
257 | 257 | ||
258 | tty = NULL; | 258 | tty = NULL; |
259 | if (up->port.info != NULL && | 259 | if (up->port.state != NULL && |
260 | up->port.info->port.tty != NULL) | 260 | up->port.state->port.tty != NULL) |
261 | tty = up->port.info->port.tty; | 261 | tty = up->port.state->port.tty; |
262 | 262 | ||
263 | for (;;) { | 263 | for (;;) { |
264 | ch = readb(&channel->control); | 264 | ch = readb(&channel->control); |
@@ -354,7 +354,7 @@ static void ip22zilog_status_handle(struct uart_ip22zilog_port *up, | |||
354 | uart_handle_cts_change(&up->port, | 354 | uart_handle_cts_change(&up->port, |
355 | (status & CTS)); | 355 | (status & CTS)); |
356 | 356 | ||
357 | wake_up_interruptible(&up->port.info->delta_msr_wait); | 357 | wake_up_interruptible(&up->port.state->port.delta_msr_wait); |
358 | } | 358 | } |
359 | 359 | ||
360 | up->prev_status = status; | 360 | up->prev_status = status; |
@@ -404,9 +404,9 @@ static void ip22zilog_transmit_chars(struct uart_ip22zilog_port *up, | |||
404 | return; | 404 | return; |
405 | } | 405 | } |
406 | 406 | ||
407 | if (up->port.info == NULL) | 407 | if (up->port.state == NULL) |
408 | goto ack_tx_int; | 408 | goto ack_tx_int; |
409 | xmit = &up->port.info->xmit; | 409 | xmit = &up->port.state->xmit; |
410 | if (uart_circ_empty(xmit)) | 410 | if (uart_circ_empty(xmit)) |
411 | goto ack_tx_int; | 411 | goto ack_tx_int; |
412 | if (uart_tx_stopped(&up->port)) | 412 | if (uart_tx_stopped(&up->port)) |
@@ -607,7 +607,7 @@ static void ip22zilog_start_tx(struct uart_port *port) | |||
607 | port->icount.tx++; | 607 | port->icount.tx++; |
608 | port->x_char = 0; | 608 | port->x_char = 0; |
609 | } else { | 609 | } else { |
610 | struct circ_buf *xmit = &port->info->xmit; | 610 | struct circ_buf *xmit = &port->state->xmit; |
611 | 611 | ||
612 | writeb(xmit->buf[xmit->tail], &channel->data); | 612 | writeb(xmit->buf[xmit->tail], &channel->data); |
613 | ZSDELAY(); | 613 | ZSDELAY(); |
diff --git a/drivers/serial/jsm/jsm_neo.c b/drivers/serial/jsm/jsm_neo.c index 9dadaa11d266..b4b124e4828f 100644 --- a/drivers/serial/jsm/jsm_neo.c +++ b/drivers/serial/jsm/jsm_neo.c | |||
@@ -989,7 +989,7 @@ static void neo_param(struct jsm_channel *ch) | |||
989 | { 50, B50 }, | 989 | { 50, B50 }, |
990 | }; | 990 | }; |
991 | 991 | ||
992 | cflag = C_BAUD(ch->uart_port.info->port.tty); | 992 | cflag = C_BAUD(ch->uart_port.state->port.tty); |
993 | baud = 9600; | 993 | baud = 9600; |
994 | for (i = 0; i < ARRAY_SIZE(baud_rates); i++) { | 994 | for (i = 0; i < ARRAY_SIZE(baud_rates); i++) { |
995 | if (baud_rates[i].cflag == cflag) { | 995 | if (baud_rates[i].cflag == cflag) { |
diff --git a/drivers/serial/jsm/jsm_tty.c b/drivers/serial/jsm/jsm_tty.c index 00f4577d2f7f..7439c0373620 100644 --- a/drivers/serial/jsm/jsm_tty.c +++ b/drivers/serial/jsm/jsm_tty.c | |||
@@ -147,7 +147,7 @@ static void jsm_tty_send_xchar(struct uart_port *port, char ch) | |||
147 | struct ktermios *termios; | 147 | struct ktermios *termios; |
148 | 148 | ||
149 | spin_lock_irqsave(&port->lock, lock_flags); | 149 | spin_lock_irqsave(&port->lock, lock_flags); |
150 | termios = port->info->port.tty->termios; | 150 | termios = port->state->port.tty->termios; |
151 | if (ch == termios->c_cc[VSTART]) | 151 | if (ch == termios->c_cc[VSTART]) |
152 | channel->ch_bd->bd_ops->send_start_character(channel); | 152 | channel->ch_bd->bd_ops->send_start_character(channel); |
153 | 153 | ||
@@ -245,7 +245,7 @@ static int jsm_tty_open(struct uart_port *port) | |||
245 | channel->ch_cached_lsr = 0; | 245 | channel->ch_cached_lsr = 0; |
246 | channel->ch_stops_sent = 0; | 246 | channel->ch_stops_sent = 0; |
247 | 247 | ||
248 | termios = port->info->port.tty->termios; | 248 | termios = port->state->port.tty->termios; |
249 | channel->ch_c_cflag = termios->c_cflag; | 249 | channel->ch_c_cflag = termios->c_cflag; |
250 | channel->ch_c_iflag = termios->c_iflag; | 250 | channel->ch_c_iflag = termios->c_iflag; |
251 | channel->ch_c_oflag = termios->c_oflag; | 251 | channel->ch_c_oflag = termios->c_oflag; |
@@ -278,7 +278,7 @@ static void jsm_tty_close(struct uart_port *port) | |||
278 | jsm_printk(CLOSE, INFO, &channel->ch_bd->pci_dev, "start\n"); | 278 | jsm_printk(CLOSE, INFO, &channel->ch_bd->pci_dev, "start\n"); |
279 | 279 | ||
280 | bd = channel->ch_bd; | 280 | bd = channel->ch_bd; |
281 | ts = port->info->port.tty->termios; | 281 | ts = port->state->port.tty->termios; |
282 | 282 | ||
283 | channel->ch_flags &= ~(CH_STOPI); | 283 | channel->ch_flags &= ~(CH_STOPI); |
284 | 284 | ||
@@ -530,7 +530,7 @@ void jsm_input(struct jsm_channel *ch) | |||
530 | if (!ch) | 530 | if (!ch) |
531 | return; | 531 | return; |
532 | 532 | ||
533 | tp = ch->uart_port.info->port.tty; | 533 | tp = ch->uart_port.state->port.tty; |
534 | 534 | ||
535 | bd = ch->ch_bd; | 535 | bd = ch->ch_bd; |
536 | if(!bd) | 536 | if(!bd) |
@@ -849,7 +849,7 @@ int jsm_tty_write(struct uart_port *port) | |||
849 | u16 tail; | 849 | u16 tail; |
850 | u16 tmask; | 850 | u16 tmask; |
851 | u32 remain; | 851 | u32 remain; |
852 | int temp_tail = port->info->xmit.tail; | 852 | int temp_tail = port->state->xmit.tail; |
853 | struct jsm_channel *channel = (struct jsm_channel *)port; | 853 | struct jsm_channel *channel = (struct jsm_channel *)port; |
854 | 854 | ||
855 | tmask = WQUEUEMASK; | 855 | tmask = WQUEUEMASK; |
@@ -865,10 +865,10 @@ int jsm_tty_write(struct uart_port *port) | |||
865 | data_count = 0; | 865 | data_count = 0; |
866 | if (bufcount >= remain) { | 866 | if (bufcount >= remain) { |
867 | bufcount -= remain; | 867 | bufcount -= remain; |
868 | while ((port->info->xmit.head != temp_tail) && | 868 | while ((port->state->xmit.head != temp_tail) && |
869 | (data_count < remain)) { | 869 | (data_count < remain)) { |
870 | channel->ch_wqueue[head++] = | 870 | channel->ch_wqueue[head++] = |
871 | port->info->xmit.buf[temp_tail]; | 871 | port->state->xmit.buf[temp_tail]; |
872 | 872 | ||
873 | temp_tail++; | 873 | temp_tail++; |
874 | temp_tail &= (UART_XMIT_SIZE - 1); | 874 | temp_tail &= (UART_XMIT_SIZE - 1); |
@@ -880,10 +880,10 @@ int jsm_tty_write(struct uart_port *port) | |||
880 | data_count1 = 0; | 880 | data_count1 = 0; |
881 | if (bufcount > 0) { | 881 | if (bufcount > 0) { |
882 | remain = bufcount; | 882 | remain = bufcount; |
883 | while ((port->info->xmit.head != temp_tail) && | 883 | while ((port->state->xmit.head != temp_tail) && |
884 | (data_count1 < remain)) { | 884 | (data_count1 < remain)) { |
885 | channel->ch_wqueue[head++] = | 885 | channel->ch_wqueue[head++] = |
886 | port->info->xmit.buf[temp_tail]; | 886 | port->state->xmit.buf[temp_tail]; |
887 | 887 | ||
888 | temp_tail++; | 888 | temp_tail++; |
889 | temp_tail &= (UART_XMIT_SIZE - 1); | 889 | temp_tail &= (UART_XMIT_SIZE - 1); |
@@ -892,7 +892,7 @@ int jsm_tty_write(struct uart_port *port) | |||
892 | } | 892 | } |
893 | } | 893 | } |
894 | 894 | ||
895 | port->info->xmit.tail = temp_tail; | 895 | port->state->xmit.tail = temp_tail; |
896 | 896 | ||
897 | data_count += data_count1; | 897 | data_count += data_count1; |
898 | if (data_count) { | 898 | if (data_count) { |
diff --git a/drivers/serial/m32r_sio.c b/drivers/serial/m32r_sio.c index 611c97a15654..bea5c215460c 100644 --- a/drivers/serial/m32r_sio.c +++ b/drivers/serial/m32r_sio.c | |||
@@ -286,7 +286,7 @@ static void m32r_sio_start_tx(struct uart_port *port) | |||
286 | { | 286 | { |
287 | #ifdef CONFIG_SERIAL_M32R_PLDSIO | 287 | #ifdef CONFIG_SERIAL_M32R_PLDSIO |
288 | struct uart_sio_port *up = (struct uart_sio_port *)port; | 288 | struct uart_sio_port *up = (struct uart_sio_port *)port; |
289 | struct circ_buf *xmit = &up->port.info->xmit; | 289 | struct circ_buf *xmit = &up->port.state->xmit; |
290 | 290 | ||
291 | if (!(up->ier & UART_IER_THRI)) { | 291 | if (!(up->ier & UART_IER_THRI)) { |
292 | up->ier |= UART_IER_THRI; | 292 | up->ier |= UART_IER_THRI; |
@@ -325,7 +325,7 @@ static void m32r_sio_enable_ms(struct uart_port *port) | |||
325 | 325 | ||
326 | static void receive_chars(struct uart_sio_port *up, int *status) | 326 | static void receive_chars(struct uart_sio_port *up, int *status) |
327 | { | 327 | { |
328 | struct tty_struct *tty = up->port.info->port.tty; | 328 | struct tty_struct *tty = up->port.state->port.tty; |
329 | unsigned char ch; | 329 | unsigned char ch; |
330 | unsigned char flag; | 330 | unsigned char flag; |
331 | int max_count = 256; | 331 | int max_count = 256; |
@@ -398,7 +398,7 @@ static void receive_chars(struct uart_sio_port *up, int *status) | |||
398 | 398 | ||
399 | static void transmit_chars(struct uart_sio_port *up) | 399 | static void transmit_chars(struct uart_sio_port *up) |
400 | { | 400 | { |
401 | struct circ_buf *xmit = &up->port.info->xmit; | 401 | struct circ_buf *xmit = &up->port.state->xmit; |
402 | int count; | 402 | int count; |
403 | 403 | ||
404 | if (up->port.x_char) { | 404 | if (up->port.x_char) { |
diff --git a/drivers/serial/max3100.c b/drivers/serial/max3100.c index 9fd33e5622bd..75ab00631c41 100644 --- a/drivers/serial/max3100.c +++ b/drivers/serial/max3100.c | |||
@@ -184,7 +184,7 @@ static void max3100_timeout(unsigned long data) | |||
184 | { | 184 | { |
185 | struct max3100_port *s = (struct max3100_port *)data; | 185 | struct max3100_port *s = (struct max3100_port *)data; |
186 | 186 | ||
187 | if (s->port.info) { | 187 | if (s->port.state) { |
188 | max3100_dowork(s); | 188 | max3100_dowork(s); |
189 | mod_timer(&s->timer, jiffies + s->poll_time); | 189 | mod_timer(&s->timer, jiffies + s->poll_time); |
190 | } | 190 | } |
@@ -261,7 +261,7 @@ static void max3100_work(struct work_struct *w) | |||
261 | int rxchars; | 261 | int rxchars; |
262 | u16 tx, rx; | 262 | u16 tx, rx; |
263 | int conf, cconf, rts, crts; | 263 | int conf, cconf, rts, crts; |
264 | struct circ_buf *xmit = &s->port.info->xmit; | 264 | struct circ_buf *xmit = &s->port.state->xmit; |
265 | 265 | ||
266 | dev_dbg(&s->spi->dev, "%s\n", __func__); | 266 | dev_dbg(&s->spi->dev, "%s\n", __func__); |
267 | 267 | ||
@@ -307,8 +307,8 @@ static void max3100_work(struct work_struct *w) | |||
307 | } | 307 | } |
308 | } | 308 | } |
309 | 309 | ||
310 | if (rxchars > 16 && s->port.info->port.tty != NULL) { | 310 | if (rxchars > 16 && s->port.state->port.tty != NULL) { |
311 | tty_flip_buffer_push(s->port.info->port.tty); | 311 | tty_flip_buffer_push(s->port.state->port.tty); |
312 | rxchars = 0; | 312 | rxchars = 0; |
313 | } | 313 | } |
314 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) | 314 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) |
@@ -320,8 +320,8 @@ static void max3100_work(struct work_struct *w) | |||
320 | (!uart_circ_empty(xmit) && | 320 | (!uart_circ_empty(xmit) && |
321 | !uart_tx_stopped(&s->port)))); | 321 | !uart_tx_stopped(&s->port)))); |
322 | 322 | ||
323 | if (rxchars > 0 && s->port.info->port.tty != NULL) | 323 | if (rxchars > 0 && s->port.state->port.tty != NULL) |
324 | tty_flip_buffer_push(s->port.info->port.tty); | 324 | tty_flip_buffer_push(s->port.state->port.tty); |
325 | } | 325 | } |
326 | 326 | ||
327 | static irqreturn_t max3100_irq(int irqno, void *dev_id) | 327 | static irqreturn_t max3100_irq(int irqno, void *dev_id) |
@@ -429,7 +429,7 @@ max3100_set_termios(struct uart_port *port, struct ktermios *termios, | |||
429 | int baud = 0; | 429 | int baud = 0; |
430 | unsigned cflag; | 430 | unsigned cflag; |
431 | u32 param_new, param_mask, parity = 0; | 431 | u32 param_new, param_mask, parity = 0; |
432 | struct tty_struct *tty = s->port.info->port.tty; | 432 | struct tty_struct *tty = s->port.state->port.tty; |
433 | 433 | ||
434 | dev_dbg(&s->spi->dev, "%s\n", __func__); | 434 | dev_dbg(&s->spi->dev, "%s\n", __func__); |
435 | if (!tty) | 435 | if (!tty) |
@@ -529,7 +529,7 @@ max3100_set_termios(struct uart_port *port, struct ktermios *termios, | |||
529 | MAX3100_STATUS_OE; | 529 | MAX3100_STATUS_OE; |
530 | 530 | ||
531 | /* we are sending char from a workqueue so enable */ | 531 | /* we are sending char from a workqueue so enable */ |
532 | s->port.info->port.tty->low_latency = 1; | 532 | s->port.state->port.tty->low_latency = 1; |
533 | 533 | ||
534 | if (s->poll_time > 0) | 534 | if (s->poll_time > 0) |
535 | del_timer_sync(&s->timer); | 535 | del_timer_sync(&s->timer); |
diff --git a/drivers/serial/mcf.c b/drivers/serial/mcf.c index 0eefb07bebaf..b44382442bf1 100644 --- a/drivers/serial/mcf.c +++ b/drivers/serial/mcf.c | |||
@@ -323,7 +323,7 @@ static void mcf_rx_chars(struct mcf_uart *pp) | |||
323 | uart_insert_char(port, status, MCFUART_USR_RXOVERRUN, ch, flag); | 323 | uart_insert_char(port, status, MCFUART_USR_RXOVERRUN, ch, flag); |
324 | } | 324 | } |
325 | 325 | ||
326 | tty_flip_buffer_push(port->info->port.tty); | 326 | tty_flip_buffer_push(port->state->port.tty); |
327 | } | 327 | } |
328 | 328 | ||
329 | /****************************************************************************/ | 329 | /****************************************************************************/ |
@@ -331,7 +331,7 @@ static void mcf_rx_chars(struct mcf_uart *pp) | |||
331 | static void mcf_tx_chars(struct mcf_uart *pp) | 331 | static void mcf_tx_chars(struct mcf_uart *pp) |
332 | { | 332 | { |
333 | struct uart_port *port = &pp->port; | 333 | struct uart_port *port = &pp->port; |
334 | struct circ_buf *xmit = &port->info->xmit; | 334 | struct circ_buf *xmit = &port->state->xmit; |
335 | 335 | ||
336 | if (port->x_char) { | 336 | if (port->x_char) { |
337 | /* Send special char - probably flow control */ | 337 | /* Send special char - probably flow control */ |
diff --git a/drivers/serial/mpc52xx_uart.c b/drivers/serial/mpc52xx_uart.c index abbd146c50d9..d7bcd074d383 100644 --- a/drivers/serial/mpc52xx_uart.c +++ b/drivers/serial/mpc52xx_uart.c | |||
@@ -745,7 +745,7 @@ static struct uart_ops mpc52xx_uart_ops = { | |||
745 | static inline int | 745 | static inline int |
746 | mpc52xx_uart_int_rx_chars(struct uart_port *port) | 746 | mpc52xx_uart_int_rx_chars(struct uart_port *port) |
747 | { | 747 | { |
748 | struct tty_struct *tty = port->info->port.tty; | 748 | struct tty_struct *tty = port->state->port.tty; |
749 | unsigned char ch, flag; | 749 | unsigned char ch, flag; |
750 | unsigned short status; | 750 | unsigned short status; |
751 | 751 | ||
@@ -812,7 +812,7 @@ mpc52xx_uart_int_rx_chars(struct uart_port *port) | |||
812 | static inline int | 812 | static inline int |
813 | mpc52xx_uart_int_tx_chars(struct uart_port *port) | 813 | mpc52xx_uart_int_tx_chars(struct uart_port *port) |
814 | { | 814 | { |
815 | struct circ_buf *xmit = &port->info->xmit; | 815 | struct circ_buf *xmit = &port->state->xmit; |
816 | 816 | ||
817 | /* Process out of band chars */ | 817 | /* Process out of band chars */ |
818 | if (port->x_char) { | 818 | if (port->x_char) { |
diff --git a/drivers/serial/mpsc.c b/drivers/serial/mpsc.c index 61d3ade5286c..b5496c28e60b 100644 --- a/drivers/serial/mpsc.c +++ b/drivers/serial/mpsc.c | |||
@@ -936,7 +936,7 @@ static int serial_polled; | |||
936 | static int mpsc_rx_intr(struct mpsc_port_info *pi) | 936 | static int mpsc_rx_intr(struct mpsc_port_info *pi) |
937 | { | 937 | { |
938 | struct mpsc_rx_desc *rxre; | 938 | struct mpsc_rx_desc *rxre; |
939 | struct tty_struct *tty = pi->port.info->port.tty; | 939 | struct tty_struct *tty = pi->port.state->port.tty; |
940 | u32 cmdstat, bytes_in, i; | 940 | u32 cmdstat, bytes_in, i; |
941 | int rc = 0; | 941 | int rc = 0; |
942 | u8 *bp; | 942 | u8 *bp; |
@@ -1109,7 +1109,7 @@ static void mpsc_setup_tx_desc(struct mpsc_port_info *pi, u32 count, u32 intr) | |||
1109 | 1109 | ||
1110 | static void mpsc_copy_tx_data(struct mpsc_port_info *pi) | 1110 | static void mpsc_copy_tx_data(struct mpsc_port_info *pi) |
1111 | { | 1111 | { |
1112 | struct circ_buf *xmit = &pi->port.info->xmit; | 1112 | struct circ_buf *xmit = &pi->port.state->xmit; |
1113 | u8 *bp; | 1113 | u8 *bp; |
1114 | u32 i; | 1114 | u32 i; |
1115 | 1115 | ||
diff --git a/drivers/serial/msm_serial.c b/drivers/serial/msm_serial.c index f7c24baa1416..b05c5aa02cb4 100644 --- a/drivers/serial/msm_serial.c +++ b/drivers/serial/msm_serial.c | |||
@@ -88,7 +88,7 @@ static void msm_enable_ms(struct uart_port *port) | |||
88 | 88 | ||
89 | static void handle_rx(struct uart_port *port) | 89 | static void handle_rx(struct uart_port *port) |
90 | { | 90 | { |
91 | struct tty_struct *tty = port->info->port.tty; | 91 | struct tty_struct *tty = port->state->port.tty; |
92 | unsigned int sr; | 92 | unsigned int sr; |
93 | 93 | ||
94 | /* | 94 | /* |
@@ -136,7 +136,7 @@ static void handle_rx(struct uart_port *port) | |||
136 | 136 | ||
137 | static void handle_tx(struct uart_port *port) | 137 | static void handle_tx(struct uart_port *port) |
138 | { | 138 | { |
139 | struct circ_buf *xmit = &port->info->xmit; | 139 | struct circ_buf *xmit = &port->state->xmit; |
140 | struct msm_port *msm_port = UART_TO_MSM(port); | 140 | struct msm_port *msm_port = UART_TO_MSM(port); |
141 | int sent_tx; | 141 | int sent_tx; |
142 | 142 | ||
@@ -169,7 +169,7 @@ static void handle_delta_cts(struct uart_port *port) | |||
169 | { | 169 | { |
170 | msm_write(port, UART_CR_CMD_RESET_CTS, UART_CR); | 170 | msm_write(port, UART_CR_CMD_RESET_CTS, UART_CR); |
171 | port->icount.cts++; | 171 | port->icount.cts++; |
172 | wake_up_interruptible(&port->info->delta_msr_wait); | 172 | wake_up_interruptible(&port->state->port.delta_msr_wait); |
173 | } | 173 | } |
174 | 174 | ||
175 | static irqreturn_t msm_irq(int irq, void *dev_id) | 175 | static irqreturn_t msm_irq(int irq, void *dev_id) |
diff --git a/drivers/serial/mux.c b/drivers/serial/mux.c index 953a5ffa9b44..7571aaa138b0 100644 --- a/drivers/serial/mux.c +++ b/drivers/serial/mux.c | |||
@@ -199,7 +199,7 @@ static void mux_break_ctl(struct uart_port *port, int break_state) | |||
199 | static void mux_write(struct uart_port *port) | 199 | static void mux_write(struct uart_port *port) |
200 | { | 200 | { |
201 | int count; | 201 | int count; |
202 | struct circ_buf *xmit = &port->info->xmit; | 202 | struct circ_buf *xmit = &port->state->xmit; |
203 | 203 | ||
204 | if(port->x_char) { | 204 | if(port->x_char) { |
205 | UART_PUT_CHAR(port, port->x_char); | 205 | UART_PUT_CHAR(port, port->x_char); |
@@ -243,7 +243,7 @@ static void mux_write(struct uart_port *port) | |||
243 | static void mux_read(struct uart_port *port) | 243 | static void mux_read(struct uart_port *port) |
244 | { | 244 | { |
245 | int data; | 245 | int data; |
246 | struct tty_struct *tty = port->info->port.tty; | 246 | struct tty_struct *tty = port->state->port.tty; |
247 | __u32 start_count = port->icount.rx; | 247 | __u32 start_count = port->icount.rx; |
248 | 248 | ||
249 | while(1) { | 249 | while(1) { |
diff --git a/drivers/serial/netx-serial.c b/drivers/serial/netx-serial.c index 3e5dda8518b7..7735c9f35fa0 100644 --- a/drivers/serial/netx-serial.c +++ b/drivers/serial/netx-serial.c | |||
@@ -140,7 +140,7 @@ static void netx_enable_ms(struct uart_port *port) | |||
140 | 140 | ||
141 | static inline void netx_transmit_buffer(struct uart_port *port) | 141 | static inline void netx_transmit_buffer(struct uart_port *port) |
142 | { | 142 | { |
143 | struct circ_buf *xmit = &port->info->xmit; | 143 | struct circ_buf *xmit = &port->state->xmit; |
144 | 144 | ||
145 | if (port->x_char) { | 145 | if (port->x_char) { |
146 | writel(port->x_char, port->membase + UART_DR); | 146 | writel(port->x_char, port->membase + UART_DR); |
@@ -185,7 +185,7 @@ static unsigned int netx_tx_empty(struct uart_port *port) | |||
185 | 185 | ||
186 | static void netx_txint(struct uart_port *port) | 186 | static void netx_txint(struct uart_port *port) |
187 | { | 187 | { |
188 | struct circ_buf *xmit = &port->info->xmit; | 188 | struct circ_buf *xmit = &port->state->xmit; |
189 | 189 | ||
190 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { | 190 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { |
191 | netx_stop_tx(port); | 191 | netx_stop_tx(port); |
@@ -201,7 +201,7 @@ static void netx_txint(struct uart_port *port) | |||
201 | static void netx_rxint(struct uart_port *port) | 201 | static void netx_rxint(struct uart_port *port) |
202 | { | 202 | { |
203 | unsigned char rx, flg, status; | 203 | unsigned char rx, flg, status; |
204 | struct tty_struct *tty = port->info->port.tty; | 204 | struct tty_struct *tty = port->state->port.tty; |
205 | 205 | ||
206 | while (!(readl(port->membase + UART_FR) & FR_RXFE)) { | 206 | while (!(readl(port->membase + UART_FR) & FR_RXFE)) { |
207 | rx = readl(port->membase + UART_DR); | 207 | rx = readl(port->membase + UART_DR); |
diff --git a/drivers/serial/nwpserial.c b/drivers/serial/nwpserial.c index 9e150b19d726..e1ab8ec0a4a6 100644 --- a/drivers/serial/nwpserial.c +++ b/drivers/serial/nwpserial.c | |||
@@ -126,7 +126,7 @@ static void nwpserial_config_port(struct uart_port *port, int flags) | |||
126 | static irqreturn_t nwpserial_interrupt(int irq, void *dev_id) | 126 | static irqreturn_t nwpserial_interrupt(int irq, void *dev_id) |
127 | { | 127 | { |
128 | struct nwpserial_port *up = dev_id; | 128 | struct nwpserial_port *up = dev_id; |
129 | struct tty_struct *tty = up->port.info->port.tty; | 129 | struct tty_struct *tty = up->port.state->port.tty; |
130 | irqreturn_t ret; | 130 | irqreturn_t ret; |
131 | unsigned int iir; | 131 | unsigned int iir; |
132 | unsigned char ch; | 132 | unsigned char ch; |
@@ -261,7 +261,7 @@ static void nwpserial_start_tx(struct uart_port *port) | |||
261 | struct nwpserial_port *up; | 261 | struct nwpserial_port *up; |
262 | struct circ_buf *xmit; | 262 | struct circ_buf *xmit; |
263 | up = container_of(port, struct nwpserial_port, port); | 263 | up = container_of(port, struct nwpserial_port, port); |
264 | xmit = &up->port.info->xmit; | 264 | xmit = &up->port.state->xmit; |
265 | 265 | ||
266 | if (port->x_char) { | 266 | if (port->x_char) { |
267 | nwpserial_putchar(up, up->port.x_char); | 267 | nwpserial_putchar(up, up->port.x_char); |
diff --git a/drivers/serial/pmac_zilog.c b/drivers/serial/pmac_zilog.c index 9c1243fbd512..0700cd10b97c 100644 --- a/drivers/serial/pmac_zilog.c +++ b/drivers/serial/pmac_zilog.c | |||
@@ -242,12 +242,12 @@ static struct tty_struct *pmz_receive_chars(struct uart_pmac_port *uap) | |||
242 | } | 242 | } |
243 | 243 | ||
244 | /* Sanity check, make sure the old bug is no longer happening */ | 244 | /* Sanity check, make sure the old bug is no longer happening */ |
245 | if (uap->port.info == NULL || uap->port.info->port.tty == NULL) { | 245 | if (uap->port.state == NULL || uap->port.state->port.tty == NULL) { |
246 | WARN_ON(1); | 246 | WARN_ON(1); |
247 | (void)read_zsdata(uap); | 247 | (void)read_zsdata(uap); |
248 | return NULL; | 248 | return NULL; |
249 | } | 249 | } |
250 | tty = uap->port.info->port.tty; | 250 | tty = uap->port.state->port.tty; |
251 | 251 | ||
252 | while (1) { | 252 | while (1) { |
253 | error = 0; | 253 | error = 0; |
@@ -369,7 +369,7 @@ static void pmz_status_handle(struct uart_pmac_port *uap) | |||
369 | uart_handle_cts_change(&uap->port, | 369 | uart_handle_cts_change(&uap->port, |
370 | !(status & CTS)); | 370 | !(status & CTS)); |
371 | 371 | ||
372 | wake_up_interruptible(&uap->port.info->delta_msr_wait); | 372 | wake_up_interruptible(&uap->port.state->port.delta_msr_wait); |
373 | } | 373 | } |
374 | 374 | ||
375 | if (status & BRK_ABRT) | 375 | if (status & BRK_ABRT) |
@@ -420,9 +420,9 @@ static void pmz_transmit_chars(struct uart_pmac_port *uap) | |||
420 | return; | 420 | return; |
421 | } | 421 | } |
422 | 422 | ||
423 | if (uap->port.info == NULL) | 423 | if (uap->port.state == NULL) |
424 | goto ack_tx_int; | 424 | goto ack_tx_int; |
425 | xmit = &uap->port.info->xmit; | 425 | xmit = &uap->port.state->xmit; |
426 | if (uart_circ_empty(xmit)) { | 426 | if (uart_circ_empty(xmit)) { |
427 | uart_write_wakeup(&uap->port); | 427 | uart_write_wakeup(&uap->port); |
428 | goto ack_tx_int; | 428 | goto ack_tx_int; |
@@ -655,7 +655,7 @@ static void pmz_start_tx(struct uart_port *port) | |||
655 | port->icount.tx++; | 655 | port->icount.tx++; |
656 | port->x_char = 0; | 656 | port->x_char = 0; |
657 | } else { | 657 | } else { |
658 | struct circ_buf *xmit = &port->info->xmit; | 658 | struct circ_buf *xmit = &port->state->xmit; |
659 | 659 | ||
660 | write_zsdata(uap, xmit->buf[xmit->tail]); | 660 | write_zsdata(uap, xmit->buf[xmit->tail]); |
661 | zssync(uap); | 661 | zssync(uap); |
@@ -1645,7 +1645,7 @@ static int pmz_suspend(struct macio_dev *mdev, pm_message_t pm_state) | |||
1645 | state = pmz_uart_reg.state + uap->port.line; | 1645 | state = pmz_uart_reg.state + uap->port.line; |
1646 | 1646 | ||
1647 | mutex_lock(&pmz_irq_mutex); | 1647 | mutex_lock(&pmz_irq_mutex); |
1648 | mutex_lock(&state->mutex); | 1648 | mutex_lock(&state->port.mutex); |
1649 | 1649 | ||
1650 | spin_lock_irqsave(&uap->port.lock, flags); | 1650 | spin_lock_irqsave(&uap->port.lock, flags); |
1651 | 1651 | ||
@@ -1676,7 +1676,7 @@ static int pmz_suspend(struct macio_dev *mdev, pm_message_t pm_state) | |||
1676 | /* Shut the chip down */ | 1676 | /* Shut the chip down */ |
1677 | pmz_set_scc_power(uap, 0); | 1677 | pmz_set_scc_power(uap, 0); |
1678 | 1678 | ||
1679 | mutex_unlock(&state->mutex); | 1679 | mutex_unlock(&state->port.mutex); |
1680 | mutex_unlock(&pmz_irq_mutex); | 1680 | mutex_unlock(&pmz_irq_mutex); |
1681 | 1681 | ||
1682 | pmz_debug("suspend, switching complete\n"); | 1682 | pmz_debug("suspend, switching complete\n"); |
@@ -1705,7 +1705,7 @@ static int pmz_resume(struct macio_dev *mdev) | |||
1705 | state = pmz_uart_reg.state + uap->port.line; | 1705 | state = pmz_uart_reg.state + uap->port.line; |
1706 | 1706 | ||
1707 | mutex_lock(&pmz_irq_mutex); | 1707 | mutex_lock(&pmz_irq_mutex); |
1708 | mutex_lock(&state->mutex); | 1708 | mutex_lock(&state->port.mutex); |
1709 | 1709 | ||
1710 | spin_lock_irqsave(&uap->port.lock, flags); | 1710 | spin_lock_irqsave(&uap->port.lock, flags); |
1711 | if (!ZS_IS_OPEN(uap) && !ZS_IS_CONS(uap)) { | 1711 | if (!ZS_IS_OPEN(uap) && !ZS_IS_CONS(uap)) { |
@@ -1737,7 +1737,7 @@ static int pmz_resume(struct macio_dev *mdev) | |||
1737 | } | 1737 | } |
1738 | 1738 | ||
1739 | bail: | 1739 | bail: |
1740 | mutex_unlock(&state->mutex); | 1740 | mutex_unlock(&state->port.mutex); |
1741 | mutex_unlock(&pmz_irq_mutex); | 1741 | mutex_unlock(&pmz_irq_mutex); |
1742 | 1742 | ||
1743 | /* Right now, we deal with delay by blocking here, I'll be | 1743 | /* Right now, we deal with delay by blocking here, I'll be |
diff --git a/drivers/serial/pnx8xxx_uart.c b/drivers/serial/pnx8xxx_uart.c index 1bb8f1b45767..0aa75a97531c 100644 --- a/drivers/serial/pnx8xxx_uart.c +++ b/drivers/serial/pnx8xxx_uart.c | |||
@@ -100,7 +100,7 @@ static void pnx8xxx_mctrl_check(struct pnx8xxx_port *sport) | |||
100 | if (changed & TIOCM_CTS) | 100 | if (changed & TIOCM_CTS) |
101 | uart_handle_cts_change(&sport->port, status & TIOCM_CTS); | 101 | uart_handle_cts_change(&sport->port, status & TIOCM_CTS); |
102 | 102 | ||
103 | wake_up_interruptible(&sport->port.info->delta_msr_wait); | 103 | wake_up_interruptible(&sport->port.state->port.delta_msr_wait); |
104 | } | 104 | } |
105 | 105 | ||
106 | /* | 106 | /* |
@@ -112,7 +112,7 @@ static void pnx8xxx_timeout(unsigned long data) | |||
112 | struct pnx8xxx_port *sport = (struct pnx8xxx_port *)data; | 112 | struct pnx8xxx_port *sport = (struct pnx8xxx_port *)data; |
113 | unsigned long flags; | 113 | unsigned long flags; |
114 | 114 | ||
115 | if (sport->port.info) { | 115 | if (sport->port.state) { |
116 | spin_lock_irqsave(&sport->port.lock, flags); | 116 | spin_lock_irqsave(&sport->port.lock, flags); |
117 | pnx8xxx_mctrl_check(sport); | 117 | pnx8xxx_mctrl_check(sport); |
118 | spin_unlock_irqrestore(&sport->port.lock, flags); | 118 | spin_unlock_irqrestore(&sport->port.lock, flags); |
@@ -181,7 +181,7 @@ static void pnx8xxx_enable_ms(struct uart_port *port) | |||
181 | 181 | ||
182 | static void pnx8xxx_rx_chars(struct pnx8xxx_port *sport) | 182 | static void pnx8xxx_rx_chars(struct pnx8xxx_port *sport) |
183 | { | 183 | { |
184 | struct tty_struct *tty = sport->port.info->port.tty; | 184 | struct tty_struct *tty = sport->port.state->port.tty; |
185 | unsigned int status, ch, flg; | 185 | unsigned int status, ch, flg; |
186 | 186 | ||
187 | status = FIFO_TO_SM(serial_in(sport, PNX8XXX_FIFO)) | | 187 | status = FIFO_TO_SM(serial_in(sport, PNX8XXX_FIFO)) | |
@@ -243,7 +243,7 @@ static void pnx8xxx_rx_chars(struct pnx8xxx_port *sport) | |||
243 | 243 | ||
244 | static void pnx8xxx_tx_chars(struct pnx8xxx_port *sport) | 244 | static void pnx8xxx_tx_chars(struct pnx8xxx_port *sport) |
245 | { | 245 | { |
246 | struct circ_buf *xmit = &sport->port.info->xmit; | 246 | struct circ_buf *xmit = &sport->port.state->xmit; |
247 | 247 | ||
248 | if (sport->port.x_char) { | 248 | if (sport->port.x_char) { |
249 | serial_out(sport, PNX8XXX_FIFO, sport->port.x_char); | 249 | serial_out(sport, PNX8XXX_FIFO, sport->port.x_char); |
diff --git a/drivers/serial/pxa.c b/drivers/serial/pxa.c index a48a8a13d87b..6443b7ff274a 100644 --- a/drivers/serial/pxa.c +++ b/drivers/serial/pxa.c | |||
@@ -96,7 +96,7 @@ static void serial_pxa_stop_rx(struct uart_port *port) | |||
96 | 96 | ||
97 | static inline void receive_chars(struct uart_pxa_port *up, int *status) | 97 | static inline void receive_chars(struct uart_pxa_port *up, int *status) |
98 | { | 98 | { |
99 | struct tty_struct *tty = up->port.info->port.tty; | 99 | struct tty_struct *tty = up->port.state->port.tty; |
100 | unsigned int ch, flag; | 100 | unsigned int ch, flag; |
101 | int max_count = 256; | 101 | int max_count = 256; |
102 | 102 | ||
@@ -161,7 +161,7 @@ static inline void receive_chars(struct uart_pxa_port *up, int *status) | |||
161 | 161 | ||
162 | static void transmit_chars(struct uart_pxa_port *up) | 162 | static void transmit_chars(struct uart_pxa_port *up) |
163 | { | 163 | { |
164 | struct circ_buf *xmit = &up->port.info->xmit; | 164 | struct circ_buf *xmit = &up->port.state->xmit; |
165 | int count; | 165 | int count; |
166 | 166 | ||
167 | if (up->port.x_char) { | 167 | if (up->port.x_char) { |
@@ -220,7 +220,7 @@ static inline void check_modem_status(struct uart_pxa_port *up) | |||
220 | if (status & UART_MSR_DCTS) | 220 | if (status & UART_MSR_DCTS) |
221 | uart_handle_cts_change(&up->port, status & UART_MSR_CTS); | 221 | uart_handle_cts_change(&up->port, status & UART_MSR_CTS); |
222 | 222 | ||
223 | wake_up_interruptible(&up->port.info->delta_msr_wait); | 223 | wake_up_interruptible(&up->port.state->port.delta_msr_wait); |
224 | } | 224 | } |
225 | 225 | ||
226 | /* | 226 | /* |
diff --git a/drivers/serial/sa1100.c b/drivers/serial/sa1100.c index 94530f01521e..7f5e26873220 100644 --- a/drivers/serial/sa1100.c +++ b/drivers/serial/sa1100.c | |||
@@ -117,7 +117,7 @@ static void sa1100_mctrl_check(struct sa1100_port *sport) | |||
117 | if (changed & TIOCM_CTS) | 117 | if (changed & TIOCM_CTS) |
118 | uart_handle_cts_change(&sport->port, status & TIOCM_CTS); | 118 | uart_handle_cts_change(&sport->port, status & TIOCM_CTS); |
119 | 119 | ||
120 | wake_up_interruptible(&sport->port.info->delta_msr_wait); | 120 | wake_up_interruptible(&sport->port.state->port.delta_msr_wait); |
121 | } | 121 | } |
122 | 122 | ||
123 | /* | 123 | /* |
@@ -129,7 +129,7 @@ static void sa1100_timeout(unsigned long data) | |||
129 | struct sa1100_port *sport = (struct sa1100_port *)data; | 129 | struct sa1100_port *sport = (struct sa1100_port *)data; |
130 | unsigned long flags; | 130 | unsigned long flags; |
131 | 131 | ||
132 | if (sport->port.info) { | 132 | if (sport->port.state) { |
133 | spin_lock_irqsave(&sport->port.lock, flags); | 133 | spin_lock_irqsave(&sport->port.lock, flags); |
134 | sa1100_mctrl_check(sport); | 134 | sa1100_mctrl_check(sport); |
135 | spin_unlock_irqrestore(&sport->port.lock, flags); | 135 | spin_unlock_irqrestore(&sport->port.lock, flags); |
@@ -189,7 +189,7 @@ static void sa1100_enable_ms(struct uart_port *port) | |||
189 | static void | 189 | static void |
190 | sa1100_rx_chars(struct sa1100_port *sport) | 190 | sa1100_rx_chars(struct sa1100_port *sport) |
191 | { | 191 | { |
192 | struct tty_struct *tty = sport->port.info->port.tty; | 192 | struct tty_struct *tty = sport->port.state->port.tty; |
193 | unsigned int status, ch, flg; | 193 | unsigned int status, ch, flg; |
194 | 194 | ||
195 | status = UTSR1_TO_SM(UART_GET_UTSR1(sport)) | | 195 | status = UTSR1_TO_SM(UART_GET_UTSR1(sport)) | |
@@ -239,7 +239,7 @@ sa1100_rx_chars(struct sa1100_port *sport) | |||
239 | 239 | ||
240 | static void sa1100_tx_chars(struct sa1100_port *sport) | 240 | static void sa1100_tx_chars(struct sa1100_port *sport) |
241 | { | 241 | { |
242 | struct circ_buf *xmit = &sport->port.info->xmit; | 242 | struct circ_buf *xmit = &sport->port.state->xmit; |
243 | 243 | ||
244 | if (sport->port.x_char) { | 244 | if (sport->port.x_char) { |
245 | UART_PUT_CHAR(sport, sport->port.x_char); | 245 | UART_PUT_CHAR(sport, sport->port.x_char); |
diff --git a/drivers/serial/samsung.c b/drivers/serial/samsung.c index c8851a0db63a..1523e8d9ae77 100644 --- a/drivers/serial/samsung.c +++ b/drivers/serial/samsung.c | |||
@@ -196,7 +196,7 @@ s3c24xx_serial_rx_chars(int irq, void *dev_id) | |||
196 | { | 196 | { |
197 | struct s3c24xx_uart_port *ourport = dev_id; | 197 | struct s3c24xx_uart_port *ourport = dev_id; |
198 | struct uart_port *port = &ourport->port; | 198 | struct uart_port *port = &ourport->port; |
199 | struct tty_struct *tty = port->info->port.tty; | 199 | struct tty_struct *tty = port->state->port.tty; |
200 | unsigned int ufcon, ch, flag, ufstat, uerstat; | 200 | unsigned int ufcon, ch, flag, ufstat, uerstat; |
201 | int max_count = 64; | 201 | int max_count = 64; |
202 | 202 | ||
@@ -281,7 +281,7 @@ static irqreturn_t s3c24xx_serial_tx_chars(int irq, void *id) | |||
281 | { | 281 | { |
282 | struct s3c24xx_uart_port *ourport = id; | 282 | struct s3c24xx_uart_port *ourport = id; |
283 | struct uart_port *port = &ourport->port; | 283 | struct uart_port *port = &ourport->port; |
284 | struct circ_buf *xmit = &port->info->xmit; | 284 | struct circ_buf *xmit = &port->state->xmit; |
285 | int count = 256; | 285 | int count = 256; |
286 | 286 | ||
287 | if (port->x_char) { | 287 | if (port->x_char) { |
@@ -992,10 +992,10 @@ static int s3c24xx_serial_cpufreq_transition(struct notifier_block *nb, | |||
992 | struct ktermios *termios; | 992 | struct ktermios *termios; |
993 | struct tty_struct *tty; | 993 | struct tty_struct *tty; |
994 | 994 | ||
995 | if (uport->info == NULL) | 995 | if (uport->state == NULL) |
996 | goto exit; | 996 | goto exit; |
997 | 997 | ||
998 | tty = uport->info->port.tty; | 998 | tty = uport->state->port.tty; |
999 | 999 | ||
1000 | if (tty == NULL) | 1000 | if (tty == NULL) |
1001 | goto exit; | 1001 | goto exit; |
diff --git a/drivers/serial/sb1250-duart.c b/drivers/serial/sb1250-duart.c index 319e8b83f6be..a2f2b3254499 100644 --- a/drivers/serial/sb1250-duart.c +++ b/drivers/serial/sb1250-duart.c | |||
@@ -384,13 +384,13 @@ static void sbd_receive_chars(struct sbd_port *sport) | |||
384 | uart_insert_char(uport, status, M_DUART_OVRUN_ERR, ch, flag); | 384 | uart_insert_char(uport, status, M_DUART_OVRUN_ERR, ch, flag); |
385 | } | 385 | } |
386 | 386 | ||
387 | tty_flip_buffer_push(uport->info->port.tty); | 387 | tty_flip_buffer_push(uport->state->port.tty); |
388 | } | 388 | } |
389 | 389 | ||
390 | static void sbd_transmit_chars(struct sbd_port *sport) | 390 | static void sbd_transmit_chars(struct sbd_port *sport) |
391 | { | 391 | { |
392 | struct uart_port *uport = &sport->port; | 392 | struct uart_port *uport = &sport->port; |
393 | struct circ_buf *xmit = &sport->port.info->xmit; | 393 | struct circ_buf *xmit = &sport->port.state->xmit; |
394 | unsigned int mask; | 394 | unsigned int mask; |
395 | int stop_tx; | 395 | int stop_tx; |
396 | 396 | ||
@@ -440,7 +440,7 @@ static void sbd_status_handle(struct sbd_port *sport) | |||
440 | 440 | ||
441 | if (delta & ((M_DUART_IN_PIN2_VAL | M_DUART_IN_PIN0_VAL) << | 441 | if (delta & ((M_DUART_IN_PIN2_VAL | M_DUART_IN_PIN0_VAL) << |
442 | S_DUART_IN_PIN_CHNG)) | 442 | S_DUART_IN_PIN_CHNG)) |
443 | wake_up_interruptible(&uport->info->delta_msr_wait); | 443 | wake_up_interruptible(&uport->state->port.delta_msr_wait); |
444 | } | 444 | } |
445 | 445 | ||
446 | static irqreturn_t sbd_interrupt(int irq, void *dev_id) | 446 | static irqreturn_t sbd_interrupt(int irq, void *dev_id) |
diff --git a/drivers/serial/sc26xx.c b/drivers/serial/sc26xx.c index e0be11ceaa25..75038ad2b242 100644 --- a/drivers/serial/sc26xx.c +++ b/drivers/serial/sc26xx.c | |||
@@ -140,8 +140,8 @@ static struct tty_struct *receive_chars(struct uart_port *port) | |||
140 | char flag; | 140 | char flag; |
141 | u8 status; | 141 | u8 status; |
142 | 142 | ||
143 | if (port->info != NULL) /* Unopened serial console */ | 143 | if (port->state != NULL) /* Unopened serial console */ |
144 | tty = port->info->port.tty; | 144 | tty = port->state->port.tty; |
145 | 145 | ||
146 | while (limit-- > 0) { | 146 | while (limit-- > 0) { |
147 | status = READ_SC_PORT(port, SR); | 147 | status = READ_SC_PORT(port, SR); |
@@ -190,10 +190,10 @@ static void transmit_chars(struct uart_port *port) | |||
190 | { | 190 | { |
191 | struct circ_buf *xmit; | 191 | struct circ_buf *xmit; |
192 | 192 | ||
193 | if (!port->info) | 193 | if (!port->state) |
194 | return; | 194 | return; |
195 | 195 | ||
196 | xmit = &port->info->xmit; | 196 | xmit = &port->state->xmit; |
197 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { | 197 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { |
198 | sc26xx_disable_irq(port, IMR_TXRDY); | 198 | sc26xx_disable_irq(port, IMR_TXRDY); |
199 | return; | 199 | return; |
@@ -316,7 +316,7 @@ static void sc26xx_stop_tx(struct uart_port *port) | |||
316 | /* port->lock held by caller. */ | 316 | /* port->lock held by caller. */ |
317 | static void sc26xx_start_tx(struct uart_port *port) | 317 | static void sc26xx_start_tx(struct uart_port *port) |
318 | { | 318 | { |
319 | struct circ_buf *xmit = &port->info->xmit; | 319 | struct circ_buf *xmit = &port->state->xmit; |
320 | 320 | ||
321 | while (!uart_circ_empty(xmit)) { | 321 | while (!uart_circ_empty(xmit)) { |
322 | if (!(READ_SC_PORT(port, SR) & SR_TXRDY)) { | 322 | if (!(READ_SC_PORT(port, SR) & SR_TXRDY)) { |
diff --git a/drivers/serial/serial_core.c b/drivers/serial/serial_core.c index b0bb29d804ae..2514d00c0f6f 100644 --- a/drivers/serial/serial_core.c +++ b/drivers/serial/serial_core.c | |||
@@ -29,10 +29,10 @@ | |||
29 | #include <linux/console.h> | 29 | #include <linux/console.h> |
30 | #include <linux/proc_fs.h> | 30 | #include <linux/proc_fs.h> |
31 | #include <linux/seq_file.h> | 31 | #include <linux/seq_file.h> |
32 | #include <linux/serial_core.h> | ||
33 | #include <linux/smp_lock.h> | 32 | #include <linux/smp_lock.h> |
34 | #include <linux/device.h> | 33 | #include <linux/device.h> |
35 | #include <linux/serial.h> /* for serial_state and serial_icounter_struct */ | 34 | #include <linux/serial.h> /* for serial_state and serial_icounter_struct */ |
35 | #include <linux/serial_core.h> | ||
36 | #include <linux/delay.h> | 36 | #include <linux/delay.h> |
37 | #include <linux/mutex.h> | 37 | #include <linux/mutex.h> |
38 | 38 | ||
@@ -52,8 +52,6 @@ static struct lock_class_key port_lock_key; | |||
52 | 52 | ||
53 | #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8) | 53 | #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8) |
54 | 54 | ||
55 | #define uart_users(state) ((state)->count + (state)->info.port.blocked_open) | ||
56 | |||
57 | #ifdef CONFIG_SERIAL_CORE_CONSOLE | 55 | #ifdef CONFIG_SERIAL_CORE_CONSOLE |
58 | #define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line) | 56 | #define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line) |
59 | #else | 57 | #else |
@@ -71,19 +69,19 @@ static void uart_change_pm(struct uart_state *state, int pm_state); | |||
71 | */ | 69 | */ |
72 | void uart_write_wakeup(struct uart_port *port) | 70 | void uart_write_wakeup(struct uart_port *port) |
73 | { | 71 | { |
74 | struct uart_info *info = port->info; | 72 | struct uart_state *state = port->state; |
75 | /* | 73 | /* |
76 | * This means you called this function _after_ the port was | 74 | * This means you called this function _after_ the port was |
77 | * closed. No cookie for you. | 75 | * closed. No cookie for you. |
78 | */ | 76 | */ |
79 | BUG_ON(!info); | 77 | BUG_ON(!state); |
80 | tasklet_schedule(&info->tlet); | 78 | tasklet_schedule(&state->tlet); |
81 | } | 79 | } |
82 | 80 | ||
83 | static void uart_stop(struct tty_struct *tty) | 81 | static void uart_stop(struct tty_struct *tty) |
84 | { | 82 | { |
85 | struct uart_state *state = tty->driver_data; | 83 | struct uart_state *state = tty->driver_data; |
86 | struct uart_port *port = state->port; | 84 | struct uart_port *port = state->uart_port; |
87 | unsigned long flags; | 85 | unsigned long flags; |
88 | 86 | ||
89 | spin_lock_irqsave(&port->lock, flags); | 87 | spin_lock_irqsave(&port->lock, flags); |
@@ -94,9 +92,9 @@ static void uart_stop(struct tty_struct *tty) | |||
94 | static void __uart_start(struct tty_struct *tty) | 92 | static void __uart_start(struct tty_struct *tty) |
95 | { | 93 | { |
96 | struct uart_state *state = tty->driver_data; | 94 | struct uart_state *state = tty->driver_data; |
97 | struct uart_port *port = state->port; | 95 | struct uart_port *port = state->uart_port; |
98 | 96 | ||
99 | if (!uart_circ_empty(&state->info.xmit) && state->info.xmit.buf && | 97 | if (!uart_circ_empty(&state->xmit) && state->xmit.buf && |
100 | !tty->stopped && !tty->hw_stopped) | 98 | !tty->stopped && !tty->hw_stopped) |
101 | port->ops->start_tx(port); | 99 | port->ops->start_tx(port); |
102 | } | 100 | } |
@@ -104,7 +102,7 @@ static void __uart_start(struct tty_struct *tty) | |||
104 | static void uart_start(struct tty_struct *tty) | 102 | static void uart_start(struct tty_struct *tty) |
105 | { | 103 | { |
106 | struct uart_state *state = tty->driver_data; | 104 | struct uart_state *state = tty->driver_data; |
107 | struct uart_port *port = state->port; | 105 | struct uart_port *port = state->uart_port; |
108 | unsigned long flags; | 106 | unsigned long flags; |
109 | 107 | ||
110 | spin_lock_irqsave(&port->lock, flags); | 108 | spin_lock_irqsave(&port->lock, flags); |
@@ -115,7 +113,7 @@ static void uart_start(struct tty_struct *tty) | |||
115 | static void uart_tasklet_action(unsigned long data) | 113 | static void uart_tasklet_action(unsigned long data) |
116 | { | 114 | { |
117 | struct uart_state *state = (struct uart_state *)data; | 115 | struct uart_state *state = (struct uart_state *)data; |
118 | tty_wakeup(state->info.port.tty); | 116 | tty_wakeup(state->port.tty); |
119 | } | 117 | } |
120 | 118 | ||
121 | static inline void | 119 | static inline void |
@@ -141,12 +139,12 @@ uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear) | |||
141 | */ | 139 | */ |
142 | static int uart_startup(struct uart_state *state, int init_hw) | 140 | static int uart_startup(struct uart_state *state, int init_hw) |
143 | { | 141 | { |
144 | struct uart_info *info = &state->info; | 142 | struct uart_port *uport = state->uart_port; |
145 | struct uart_port *port = state->port; | 143 | struct tty_port *port = &state->port; |
146 | unsigned long page; | 144 | unsigned long page; |
147 | int retval = 0; | 145 | int retval = 0; |
148 | 146 | ||
149 | if (info->flags & UIF_INITIALIZED) | 147 | if (port->flags & ASYNC_INITIALIZED) |
150 | return 0; | 148 | return 0; |
151 | 149 | ||
152 | /* | 150 | /* |
@@ -154,26 +152,26 @@ static int uart_startup(struct uart_state *state, int init_hw) | |||
154 | * once we have successfully opened the port. Also set | 152 | * once we have successfully opened the port. Also set |
155 | * up the tty->alt_speed kludge | 153 | * up the tty->alt_speed kludge |
156 | */ | 154 | */ |
157 | set_bit(TTY_IO_ERROR, &info->port.tty->flags); | 155 | set_bit(TTY_IO_ERROR, &port->tty->flags); |
158 | 156 | ||
159 | if (port->type == PORT_UNKNOWN) | 157 | if (uport->type == PORT_UNKNOWN) |
160 | return 0; | 158 | return 0; |
161 | 159 | ||
162 | /* | 160 | /* |
163 | * Initialise and allocate the transmit and temporary | 161 | * Initialise and allocate the transmit and temporary |
164 | * buffer. | 162 | * buffer. |
165 | */ | 163 | */ |
166 | if (!info->xmit.buf) { | 164 | if (!state->xmit.buf) { |
167 | /* This is protected by the per port mutex */ | 165 | /* This is protected by the per port mutex */ |
168 | page = get_zeroed_page(GFP_KERNEL); | 166 | page = get_zeroed_page(GFP_KERNEL); |
169 | if (!page) | 167 | if (!page) |
170 | return -ENOMEM; | 168 | return -ENOMEM; |
171 | 169 | ||
172 | info->xmit.buf = (unsigned char *) page; | 170 | state->xmit.buf = (unsigned char *) page; |
173 | uart_circ_clear(&info->xmit); | 171 | uart_circ_clear(&state->xmit); |
174 | } | 172 | } |
175 | 173 | ||
176 | retval = port->ops->startup(port); | 174 | retval = uport->ops->startup(uport); |
177 | if (retval == 0) { | 175 | if (retval == 0) { |
178 | if (init_hw) { | 176 | if (init_hw) { |
179 | /* | 177 | /* |
@@ -185,20 +183,20 @@ static int uart_startup(struct uart_state *state, int init_hw) | |||
185 | * Setup the RTS and DTR signals once the | 183 | * Setup the RTS and DTR signals once the |
186 | * port is open and ready to respond. | 184 | * port is open and ready to respond. |
187 | */ | 185 | */ |
188 | if (info->port.tty->termios->c_cflag & CBAUD) | 186 | if (port->tty->termios->c_cflag & CBAUD) |
189 | uart_set_mctrl(port, TIOCM_RTS | TIOCM_DTR); | 187 | uart_set_mctrl(uport, TIOCM_RTS | TIOCM_DTR); |
190 | } | 188 | } |
191 | 189 | ||
192 | if (info->flags & UIF_CTS_FLOW) { | 190 | if (port->flags & ASYNC_CTS_FLOW) { |
193 | spin_lock_irq(&port->lock); | 191 | spin_lock_irq(&uport->lock); |
194 | if (!(port->ops->get_mctrl(port) & TIOCM_CTS)) | 192 | if (!(uport->ops->get_mctrl(uport) & TIOCM_CTS)) |
195 | info->port.tty->hw_stopped = 1; | 193 | port->tty->hw_stopped = 1; |
196 | spin_unlock_irq(&port->lock); | 194 | spin_unlock_irq(&uport->lock); |
197 | } | 195 | } |
198 | 196 | ||
199 | info->flags |= UIF_INITIALIZED; | 197 | set_bit(ASYNCB_INITIALIZED, &port->flags); |
200 | 198 | ||
201 | clear_bit(TTY_IO_ERROR, &info->port.tty->flags); | 199 | clear_bit(TTY_IO_ERROR, &port->tty->flags); |
202 | } | 200 | } |
203 | 201 | ||
204 | if (retval && capable(CAP_SYS_ADMIN)) | 202 | if (retval && capable(CAP_SYS_ADMIN)) |
@@ -214,9 +212,9 @@ static int uart_startup(struct uart_state *state, int init_hw) | |||
214 | */ | 212 | */ |
215 | static void uart_shutdown(struct uart_state *state) | 213 | static void uart_shutdown(struct uart_state *state) |
216 | { | 214 | { |
217 | struct uart_info *info = &state->info; | 215 | struct uart_port *uport = state->uart_port; |
218 | struct uart_port *port = state->port; | 216 | struct tty_port *port = &state->port; |
219 | struct tty_struct *tty = info->port.tty; | 217 | struct tty_struct *tty = port->tty; |
220 | 218 | ||
221 | /* | 219 | /* |
222 | * Set the TTY IO error marker | 220 | * Set the TTY IO error marker |
@@ -224,14 +222,12 @@ static void uart_shutdown(struct uart_state *state) | |||
224 | if (tty) | 222 | if (tty) |
225 | set_bit(TTY_IO_ERROR, &tty->flags); | 223 | set_bit(TTY_IO_ERROR, &tty->flags); |
226 | 224 | ||
227 | if (info->flags & UIF_INITIALIZED) { | 225 | if (test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags)) { |
228 | info->flags &= ~UIF_INITIALIZED; | ||
229 | |||
230 | /* | 226 | /* |
231 | * Turn off DTR and RTS early. | 227 | * Turn off DTR and RTS early. |
232 | */ | 228 | */ |
233 | if (!tty || (tty->termios->c_cflag & HUPCL)) | 229 | if (!tty || (tty->termios->c_cflag & HUPCL)) |
234 | uart_clear_mctrl(port, TIOCM_DTR | TIOCM_RTS); | 230 | uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS); |
235 | 231 | ||
236 | /* | 232 | /* |
237 | * clear delta_msr_wait queue to avoid mem leaks: we may free | 233 | * clear delta_msr_wait queue to avoid mem leaks: we may free |
@@ -240,30 +236,30 @@ static void uart_shutdown(struct uart_state *state) | |||
240 | * any outstanding file descriptors should be pointing at | 236 | * any outstanding file descriptors should be pointing at |
241 | * hung_up_tty_fops now. | 237 | * hung_up_tty_fops now. |
242 | */ | 238 | */ |
243 | wake_up_interruptible(&info->delta_msr_wait); | 239 | wake_up_interruptible(&port->delta_msr_wait); |
244 | 240 | ||
245 | /* | 241 | /* |
246 | * Free the IRQ and disable the port. | 242 | * Free the IRQ and disable the port. |
247 | */ | 243 | */ |
248 | port->ops->shutdown(port); | 244 | uport->ops->shutdown(uport); |
249 | 245 | ||
250 | /* | 246 | /* |
251 | * Ensure that the IRQ handler isn't running on another CPU. | 247 | * Ensure that the IRQ handler isn't running on another CPU. |
252 | */ | 248 | */ |
253 | synchronize_irq(port->irq); | 249 | synchronize_irq(uport->irq); |
254 | } | 250 | } |
255 | 251 | ||
256 | /* | 252 | /* |
257 | * kill off our tasklet | 253 | * kill off our tasklet |
258 | */ | 254 | */ |
259 | tasklet_kill(&info->tlet); | 255 | tasklet_kill(&state->tlet); |
260 | 256 | ||
261 | /* | 257 | /* |
262 | * Free the transmit buffer page. | 258 | * Free the transmit buffer page. |
263 | */ | 259 | */ |
264 | if (info->xmit.buf) { | 260 | if (state->xmit.buf) { |
265 | free_page((unsigned long)info->xmit.buf); | 261 | free_page((unsigned long)state->xmit.buf); |
266 | info->xmit.buf = NULL; | 262 | state->xmit.buf = NULL; |
267 | } | 263 | } |
268 | } | 264 | } |
269 | 265 | ||
@@ -430,15 +426,16 @@ EXPORT_SYMBOL(uart_get_divisor); | |||
430 | static void | 426 | static void |
431 | uart_change_speed(struct uart_state *state, struct ktermios *old_termios) | 427 | uart_change_speed(struct uart_state *state, struct ktermios *old_termios) |
432 | { | 428 | { |
433 | struct tty_struct *tty = state->info.port.tty; | 429 | struct tty_port *port = &state->port; |
434 | struct uart_port *port = state->port; | 430 | struct tty_struct *tty = port->tty; |
431 | struct uart_port *uport = state->uart_port; | ||
435 | struct ktermios *termios; | 432 | struct ktermios *termios; |
436 | 433 | ||
437 | /* | 434 | /* |
438 | * If we have no tty, termios, or the port does not exist, | 435 | * If we have no tty, termios, or the port does not exist, |
439 | * then we can't set the parameters for this port. | 436 | * then we can't set the parameters for this port. |
440 | */ | 437 | */ |
441 | if (!tty || !tty->termios || port->type == PORT_UNKNOWN) | 438 | if (!tty || !tty->termios || uport->type == PORT_UNKNOWN) |
442 | return; | 439 | return; |
443 | 440 | ||
444 | termios = tty->termios; | 441 | termios = tty->termios; |
@@ -447,16 +444,16 @@ uart_change_speed(struct uart_state *state, struct ktermios *old_termios) | |||
447 | * Set flags based on termios cflag | 444 | * Set flags based on termios cflag |
448 | */ | 445 | */ |
449 | if (termios->c_cflag & CRTSCTS) | 446 | if (termios->c_cflag & CRTSCTS) |
450 | state->info.flags |= UIF_CTS_FLOW; | 447 | set_bit(ASYNCB_CTS_FLOW, &port->flags); |
451 | else | 448 | else |
452 | state->info.flags &= ~UIF_CTS_FLOW; | 449 | clear_bit(ASYNCB_CTS_FLOW, &port->flags); |
453 | 450 | ||
454 | if (termios->c_cflag & CLOCAL) | 451 | if (termios->c_cflag & CLOCAL) |
455 | state->info.flags &= ~UIF_CHECK_CD; | 452 | clear_bit(ASYNCB_CHECK_CD, &port->flags); |
456 | else | 453 | else |
457 | state->info.flags |= UIF_CHECK_CD; | 454 | set_bit(ASYNCB_CHECK_CD, &port->flags); |
458 | 455 | ||
459 | port->ops->set_termios(port, termios, old_termios); | 456 | uport->ops->set_termios(uport, termios, old_termios); |
460 | } | 457 | } |
461 | 458 | ||
462 | static inline int | 459 | static inline int |
@@ -482,7 +479,7 @@ static int uart_put_char(struct tty_struct *tty, unsigned char ch) | |||
482 | { | 479 | { |
483 | struct uart_state *state = tty->driver_data; | 480 | struct uart_state *state = tty->driver_data; |
484 | 481 | ||
485 | return __uart_put_char(state->port, &state->info.xmit, ch); | 482 | return __uart_put_char(state->uart_port, &state->xmit, ch); |
486 | } | 483 | } |
487 | 484 | ||
488 | static void uart_flush_chars(struct tty_struct *tty) | 485 | static void uart_flush_chars(struct tty_struct *tty) |
@@ -508,8 +505,8 @@ uart_write(struct tty_struct *tty, const unsigned char *buf, int count) | |||
508 | return -EL3HLT; | 505 | return -EL3HLT; |
509 | } | 506 | } |
510 | 507 | ||
511 | port = state->port; | 508 | port = state->uart_port; |
512 | circ = &state->info.xmit; | 509 | circ = &state->xmit; |
513 | 510 | ||
514 | if (!circ->buf) | 511 | if (!circ->buf) |
515 | return 0; | 512 | return 0; |
@@ -539,9 +536,9 @@ static int uart_write_room(struct tty_struct *tty) | |||
539 | unsigned long flags; | 536 | unsigned long flags; |
540 | int ret; | 537 | int ret; |
541 | 538 | ||
542 | spin_lock_irqsave(&state->port->lock, flags); | 539 | spin_lock_irqsave(&state->uart_port->lock, flags); |
543 | ret = uart_circ_chars_free(&state->info.xmit); | 540 | ret = uart_circ_chars_free(&state->xmit); |
544 | spin_unlock_irqrestore(&state->port->lock, flags); | 541 | spin_unlock_irqrestore(&state->uart_port->lock, flags); |
545 | return ret; | 542 | return ret; |
546 | } | 543 | } |
547 | 544 | ||
@@ -551,9 +548,9 @@ static int uart_chars_in_buffer(struct tty_struct *tty) | |||
551 | unsigned long flags; | 548 | unsigned long flags; |
552 | int ret; | 549 | int ret; |
553 | 550 | ||
554 | spin_lock_irqsave(&state->port->lock, flags); | 551 | spin_lock_irqsave(&state->uart_port->lock, flags); |
555 | ret = uart_circ_chars_pending(&state->info.xmit); | 552 | ret = uart_circ_chars_pending(&state->xmit); |
556 | spin_unlock_irqrestore(&state->port->lock, flags); | 553 | spin_unlock_irqrestore(&state->uart_port->lock, flags); |
557 | return ret; | 554 | return ret; |
558 | } | 555 | } |
559 | 556 | ||
@@ -572,11 +569,11 @@ static void uart_flush_buffer(struct tty_struct *tty) | |||
572 | return; | 569 | return; |
573 | } | 570 | } |
574 | 571 | ||
575 | port = state->port; | 572 | port = state->uart_port; |
576 | pr_debug("uart_flush_buffer(%d) called\n", tty->index); | 573 | pr_debug("uart_flush_buffer(%d) called\n", tty->index); |
577 | 574 | ||
578 | spin_lock_irqsave(&port->lock, flags); | 575 | spin_lock_irqsave(&port->lock, flags); |
579 | uart_circ_clear(&state->info.xmit); | 576 | uart_circ_clear(&state->xmit); |
580 | if (port->ops->flush_buffer) | 577 | if (port->ops->flush_buffer) |
581 | port->ops->flush_buffer(port); | 578 | port->ops->flush_buffer(port); |
582 | spin_unlock_irqrestore(&port->lock, flags); | 579 | spin_unlock_irqrestore(&port->lock, flags); |
@@ -590,7 +587,7 @@ static void uart_flush_buffer(struct tty_struct *tty) | |||
590 | static void uart_send_xchar(struct tty_struct *tty, char ch) | 587 | static void uart_send_xchar(struct tty_struct *tty, char ch) |
591 | { | 588 | { |
592 | struct uart_state *state = tty->driver_data; | 589 | struct uart_state *state = tty->driver_data; |
593 | struct uart_port *port = state->port; | 590 | struct uart_port *port = state->uart_port; |
594 | unsigned long flags; | 591 | unsigned long flags; |
595 | 592 | ||
596 | if (port->ops->send_xchar) | 593 | if (port->ops->send_xchar) |
@@ -613,13 +610,13 @@ static void uart_throttle(struct tty_struct *tty) | |||
613 | uart_send_xchar(tty, STOP_CHAR(tty)); | 610 | uart_send_xchar(tty, STOP_CHAR(tty)); |
614 | 611 | ||
615 | if (tty->termios->c_cflag & CRTSCTS) | 612 | if (tty->termios->c_cflag & CRTSCTS) |
616 | uart_clear_mctrl(state->port, TIOCM_RTS); | 613 | uart_clear_mctrl(state->uart_port, TIOCM_RTS); |
617 | } | 614 | } |
618 | 615 | ||
619 | static void uart_unthrottle(struct tty_struct *tty) | 616 | static void uart_unthrottle(struct tty_struct *tty) |
620 | { | 617 | { |
621 | struct uart_state *state = tty->driver_data; | 618 | struct uart_state *state = tty->driver_data; |
622 | struct uart_port *port = state->port; | 619 | struct uart_port *port = state->uart_port; |
623 | 620 | ||
624 | if (I_IXOFF(tty)) { | 621 | if (I_IXOFF(tty)) { |
625 | if (port->x_char) | 622 | if (port->x_char) |
@@ -635,35 +632,36 @@ static void uart_unthrottle(struct tty_struct *tty) | |||
635 | static int uart_get_info(struct uart_state *state, | 632 | static int uart_get_info(struct uart_state *state, |
636 | struct serial_struct __user *retinfo) | 633 | struct serial_struct __user *retinfo) |
637 | { | 634 | { |
638 | struct uart_port *port = state->port; | 635 | struct uart_port *uport = state->uart_port; |
636 | struct tty_port *port = &state->port; | ||
639 | struct serial_struct tmp; | 637 | struct serial_struct tmp; |
640 | 638 | ||
641 | memset(&tmp, 0, sizeof(tmp)); | 639 | memset(&tmp, 0, sizeof(tmp)); |
642 | 640 | ||
643 | /* Ensure the state we copy is consistent and no hardware changes | 641 | /* Ensure the state we copy is consistent and no hardware changes |
644 | occur as we go */ | 642 | occur as we go */ |
645 | mutex_lock(&state->mutex); | 643 | mutex_lock(&port->mutex); |
646 | 644 | ||
647 | tmp.type = port->type; | 645 | tmp.type = uport->type; |
648 | tmp.line = port->line; | 646 | tmp.line = uport->line; |
649 | tmp.port = port->iobase; | 647 | tmp.port = uport->iobase; |
650 | if (HIGH_BITS_OFFSET) | 648 | if (HIGH_BITS_OFFSET) |
651 | tmp.port_high = (long) port->iobase >> HIGH_BITS_OFFSET; | 649 | tmp.port_high = (long) uport->iobase >> HIGH_BITS_OFFSET; |
652 | tmp.irq = port->irq; | 650 | tmp.irq = uport->irq; |
653 | tmp.flags = port->flags; | 651 | tmp.flags = uport->flags; |
654 | tmp.xmit_fifo_size = port->fifosize; | 652 | tmp.xmit_fifo_size = uport->fifosize; |
655 | tmp.baud_base = port->uartclk / 16; | 653 | tmp.baud_base = uport->uartclk / 16; |
656 | tmp.close_delay = state->close_delay / 10; | 654 | tmp.close_delay = port->close_delay / 10; |
657 | tmp.closing_wait = state->closing_wait == USF_CLOSING_WAIT_NONE ? | 655 | tmp.closing_wait = port->closing_wait == ASYNC_CLOSING_WAIT_NONE ? |
658 | ASYNC_CLOSING_WAIT_NONE : | 656 | ASYNC_CLOSING_WAIT_NONE : |
659 | state->closing_wait / 10; | 657 | port->closing_wait / 10; |
660 | tmp.custom_divisor = port->custom_divisor; | 658 | tmp.custom_divisor = uport->custom_divisor; |
661 | tmp.hub6 = port->hub6; | 659 | tmp.hub6 = uport->hub6; |
662 | tmp.io_type = port->iotype; | 660 | tmp.io_type = uport->iotype; |
663 | tmp.iomem_reg_shift = port->regshift; | 661 | tmp.iomem_reg_shift = uport->regshift; |
664 | tmp.iomem_base = (void *)(unsigned long)port->mapbase; | 662 | tmp.iomem_base = (void *)(unsigned long)uport->mapbase; |
665 | 663 | ||
666 | mutex_unlock(&state->mutex); | 664 | mutex_unlock(&port->mutex); |
667 | 665 | ||
668 | if (copy_to_user(retinfo, &tmp, sizeof(*retinfo))) | 666 | if (copy_to_user(retinfo, &tmp, sizeof(*retinfo))) |
669 | return -EFAULT; | 667 | return -EFAULT; |
@@ -674,7 +672,8 @@ static int uart_set_info(struct uart_state *state, | |||
674 | struct serial_struct __user *newinfo) | 672 | struct serial_struct __user *newinfo) |
675 | { | 673 | { |
676 | struct serial_struct new_serial; | 674 | struct serial_struct new_serial; |
677 | struct uart_port *port = state->port; | 675 | struct uart_port *uport = state->uart_port; |
676 | struct tty_port *port = &state->port; | ||
678 | unsigned long new_port; | 677 | unsigned long new_port; |
679 | unsigned int change_irq, change_port, closing_wait; | 678 | unsigned int change_irq, change_port, closing_wait; |
680 | unsigned int old_custom_divisor, close_delay; | 679 | unsigned int old_custom_divisor, close_delay; |
@@ -691,58 +690,58 @@ static int uart_set_info(struct uart_state *state, | |||
691 | new_serial.irq = irq_canonicalize(new_serial.irq); | 690 | new_serial.irq = irq_canonicalize(new_serial.irq); |
692 | close_delay = new_serial.close_delay * 10; | 691 | close_delay = new_serial.close_delay * 10; |
693 | closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ? | 692 | closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ? |
694 | USF_CLOSING_WAIT_NONE : new_serial.closing_wait * 10; | 693 | ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10; |
695 | 694 | ||
696 | /* | 695 | /* |
697 | * This semaphore protects state->count. It is also | 696 | * This semaphore protects port->count. It is also |
698 | * very useful to prevent opens. Also, take the | 697 | * very useful to prevent opens. Also, take the |
699 | * port configuration semaphore to make sure that a | 698 | * port configuration semaphore to make sure that a |
700 | * module insertion/removal doesn't change anything | 699 | * module insertion/removal doesn't change anything |
701 | * under us. | 700 | * under us. |
702 | */ | 701 | */ |
703 | mutex_lock(&state->mutex); | 702 | mutex_lock(&port->mutex); |
704 | 703 | ||
705 | change_irq = !(port->flags & UPF_FIXED_PORT) | 704 | change_irq = !(uport->flags & UPF_FIXED_PORT) |
706 | && new_serial.irq != port->irq; | 705 | && new_serial.irq != uport->irq; |
707 | 706 | ||
708 | /* | 707 | /* |
709 | * Since changing the 'type' of the port changes its resource | 708 | * Since changing the 'type' of the port changes its resource |
710 | * allocations, we should treat type changes the same as | 709 | * allocations, we should treat type changes the same as |
711 | * IO port changes. | 710 | * IO port changes. |
712 | */ | 711 | */ |
713 | change_port = !(port->flags & UPF_FIXED_PORT) | 712 | change_port = !(uport->flags & UPF_FIXED_PORT) |
714 | && (new_port != port->iobase || | 713 | && (new_port != uport->iobase || |
715 | (unsigned long)new_serial.iomem_base != port->mapbase || | 714 | (unsigned long)new_serial.iomem_base != uport->mapbase || |
716 | new_serial.hub6 != port->hub6 || | 715 | new_serial.hub6 != uport->hub6 || |
717 | new_serial.io_type != port->iotype || | 716 | new_serial.io_type != uport->iotype || |
718 | new_serial.iomem_reg_shift != port->regshift || | 717 | new_serial.iomem_reg_shift != uport->regshift || |
719 | new_serial.type != port->type); | 718 | new_serial.type != uport->type); |
720 | 719 | ||
721 | old_flags = port->flags; | 720 | old_flags = uport->flags; |
722 | new_flags = new_serial.flags; | 721 | new_flags = new_serial.flags; |
723 | old_custom_divisor = port->custom_divisor; | 722 | old_custom_divisor = uport->custom_divisor; |
724 | 723 | ||
725 | if (!capable(CAP_SYS_ADMIN)) { | 724 | if (!capable(CAP_SYS_ADMIN)) { |
726 | retval = -EPERM; | 725 | retval = -EPERM; |
727 | if (change_irq || change_port || | 726 | if (change_irq || change_port || |
728 | (new_serial.baud_base != port->uartclk / 16) || | 727 | (new_serial.baud_base != uport->uartclk / 16) || |
729 | (close_delay != state->close_delay) || | 728 | (close_delay != port->close_delay) || |
730 | (closing_wait != state->closing_wait) || | 729 | (closing_wait != port->closing_wait) || |
731 | (new_serial.xmit_fifo_size && | 730 | (new_serial.xmit_fifo_size && |
732 | new_serial.xmit_fifo_size != port->fifosize) || | 731 | new_serial.xmit_fifo_size != uport->fifosize) || |
733 | (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0)) | 732 | (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0)) |
734 | goto exit; | 733 | goto exit; |
735 | port->flags = ((port->flags & ~UPF_USR_MASK) | | 734 | uport->flags = ((uport->flags & ~UPF_USR_MASK) | |
736 | (new_flags & UPF_USR_MASK)); | 735 | (new_flags & UPF_USR_MASK)); |
737 | port->custom_divisor = new_serial.custom_divisor; | 736 | uport->custom_divisor = new_serial.custom_divisor; |
738 | goto check_and_exit; | 737 | goto check_and_exit; |
739 | } | 738 | } |
740 | 739 | ||
741 | /* | 740 | /* |
742 | * Ask the low level driver to verify the settings. | 741 | * Ask the low level driver to verify the settings. |
743 | */ | 742 | */ |
744 | if (port->ops->verify_port) | 743 | if (uport->ops->verify_port) |
745 | retval = port->ops->verify_port(port, &new_serial); | 744 | retval = uport->ops->verify_port(uport, &new_serial); |
746 | 745 | ||
747 | if ((new_serial.irq >= nr_irqs) || (new_serial.irq < 0) || | 746 | if ((new_serial.irq >= nr_irqs) || (new_serial.irq < 0) || |
748 | (new_serial.baud_base < 9600)) | 747 | (new_serial.baud_base < 9600)) |
@@ -757,7 +756,7 @@ static int uart_set_info(struct uart_state *state, | |||
757 | /* | 756 | /* |
758 | * Make sure that we are the sole user of this port. | 757 | * Make sure that we are the sole user of this port. |
759 | */ | 758 | */ |
760 | if (uart_users(state) > 1) | 759 | if (tty_port_users(port) > 1) |
761 | goto exit; | 760 | goto exit; |
762 | 761 | ||
763 | /* | 762 | /* |
@@ -771,31 +770,31 @@ static int uart_set_info(struct uart_state *state, | |||
771 | unsigned long old_iobase, old_mapbase; | 770 | unsigned long old_iobase, old_mapbase; |
772 | unsigned int old_type, old_iotype, old_hub6, old_shift; | 771 | unsigned int old_type, old_iotype, old_hub6, old_shift; |
773 | 772 | ||
774 | old_iobase = port->iobase; | 773 | old_iobase = uport->iobase; |
775 | old_mapbase = port->mapbase; | 774 | old_mapbase = uport->mapbase; |
776 | old_type = port->type; | 775 | old_type = uport->type; |
777 | old_hub6 = port->hub6; | 776 | old_hub6 = uport->hub6; |
778 | old_iotype = port->iotype; | 777 | old_iotype = uport->iotype; |
779 | old_shift = port->regshift; | 778 | old_shift = uport->regshift; |
780 | 779 | ||
781 | /* | 780 | /* |
782 | * Free and release old regions | 781 | * Free and release old regions |
783 | */ | 782 | */ |
784 | if (old_type != PORT_UNKNOWN) | 783 | if (old_type != PORT_UNKNOWN) |
785 | port->ops->release_port(port); | 784 | uport->ops->release_port(uport); |
786 | 785 | ||
787 | port->iobase = new_port; | 786 | uport->iobase = new_port; |
788 | port->type = new_serial.type; | 787 | uport->type = new_serial.type; |
789 | port->hub6 = new_serial.hub6; | 788 | uport->hub6 = new_serial.hub6; |
790 | port->iotype = new_serial.io_type; | 789 | uport->iotype = new_serial.io_type; |
791 | port->regshift = new_serial.iomem_reg_shift; | 790 | uport->regshift = new_serial.iomem_reg_shift; |
792 | port->mapbase = (unsigned long)new_serial.iomem_base; | 791 | uport->mapbase = (unsigned long)new_serial.iomem_base; |
793 | 792 | ||
794 | /* | 793 | /* |
795 | * Claim and map the new regions | 794 | * Claim and map the new regions |
796 | */ | 795 | */ |
797 | if (port->type != PORT_UNKNOWN) { | 796 | if (uport->type != PORT_UNKNOWN) { |
798 | retval = port->ops->request_port(port); | 797 | retval = uport->ops->request_port(uport); |
799 | } else { | 798 | } else { |
800 | /* Always success - Jean II */ | 799 | /* Always success - Jean II */ |
801 | retval = 0; | 800 | retval = 0; |
@@ -806,19 +805,19 @@ static int uart_set_info(struct uart_state *state, | |||
806 | * new port, try to restore the old settings. | 805 | * new port, try to restore the old settings. |
807 | */ | 806 | */ |
808 | if (retval && old_type != PORT_UNKNOWN) { | 807 | if (retval && old_type != PORT_UNKNOWN) { |
809 | port->iobase = old_iobase; | 808 | uport->iobase = old_iobase; |
810 | port->type = old_type; | 809 | uport->type = old_type; |
811 | port->hub6 = old_hub6; | 810 | uport->hub6 = old_hub6; |
812 | port->iotype = old_iotype; | 811 | uport->iotype = old_iotype; |
813 | port->regshift = old_shift; | 812 | uport->regshift = old_shift; |
814 | port->mapbase = old_mapbase; | 813 | uport->mapbase = old_mapbase; |
815 | retval = port->ops->request_port(port); | 814 | retval = uport->ops->request_port(uport); |
816 | /* | 815 | /* |
817 | * If we failed to restore the old settings, | 816 | * If we failed to restore the old settings, |
818 | * we fail like this. | 817 | * we fail like this. |
819 | */ | 818 | */ |
820 | if (retval) | 819 | if (retval) |
821 | port->type = PORT_UNKNOWN; | 820 | uport->type = PORT_UNKNOWN; |
822 | 821 | ||
823 | /* | 822 | /* |
824 | * We failed anyway. | 823 | * We failed anyway. |
@@ -830,45 +829,45 @@ static int uart_set_info(struct uart_state *state, | |||
830 | } | 829 | } |
831 | 830 | ||
832 | if (change_irq) | 831 | if (change_irq) |
833 | port->irq = new_serial.irq; | 832 | uport->irq = new_serial.irq; |
834 | if (!(port->flags & UPF_FIXED_PORT)) | 833 | if (!(uport->flags & UPF_FIXED_PORT)) |
835 | port->uartclk = new_serial.baud_base * 16; | 834 | uport->uartclk = new_serial.baud_base * 16; |
836 | port->flags = (port->flags & ~UPF_CHANGE_MASK) | | 835 | uport->flags = (uport->flags & ~UPF_CHANGE_MASK) | |
837 | (new_flags & UPF_CHANGE_MASK); | 836 | (new_flags & UPF_CHANGE_MASK); |
838 | port->custom_divisor = new_serial.custom_divisor; | 837 | uport->custom_divisor = new_serial.custom_divisor; |
839 | state->close_delay = close_delay; | 838 | port->close_delay = close_delay; |
840 | state->closing_wait = closing_wait; | 839 | port->closing_wait = closing_wait; |
841 | if (new_serial.xmit_fifo_size) | 840 | if (new_serial.xmit_fifo_size) |
842 | port->fifosize = new_serial.xmit_fifo_size; | 841 | uport->fifosize = new_serial.xmit_fifo_size; |
843 | if (state->info.port.tty) | 842 | if (port->tty) |
844 | state->info.port.tty->low_latency = | 843 | port->tty->low_latency = |
845 | (port->flags & UPF_LOW_LATENCY) ? 1 : 0; | 844 | (uport->flags & UPF_LOW_LATENCY) ? 1 : 0; |
846 | 845 | ||
847 | check_and_exit: | 846 | check_and_exit: |
848 | retval = 0; | 847 | retval = 0; |
849 | if (port->type == PORT_UNKNOWN) | 848 | if (uport->type == PORT_UNKNOWN) |
850 | goto exit; | 849 | goto exit; |
851 | if (state->info.flags & UIF_INITIALIZED) { | 850 | if (port->flags & ASYNC_INITIALIZED) { |
852 | if (((old_flags ^ port->flags) & UPF_SPD_MASK) || | 851 | if (((old_flags ^ uport->flags) & UPF_SPD_MASK) || |
853 | old_custom_divisor != port->custom_divisor) { | 852 | old_custom_divisor != uport->custom_divisor) { |
854 | /* | 853 | /* |
855 | * If they're setting up a custom divisor or speed, | 854 | * If they're setting up a custom divisor or speed, |
856 | * instead of clearing it, then bitch about it. No | 855 | * instead of clearing it, then bitch about it. No |
857 | * need to rate-limit; it's CAP_SYS_ADMIN only. | 856 | * need to rate-limit; it's CAP_SYS_ADMIN only. |
858 | */ | 857 | */ |
859 | if (port->flags & UPF_SPD_MASK) { | 858 | if (uport->flags & UPF_SPD_MASK) { |
860 | char buf[64]; | 859 | char buf[64]; |
861 | printk(KERN_NOTICE | 860 | printk(KERN_NOTICE |
862 | "%s sets custom speed on %s. This " | 861 | "%s sets custom speed on %s. This " |
863 | "is deprecated.\n", current->comm, | 862 | "is deprecated.\n", current->comm, |
864 | tty_name(state->info.port.tty, buf)); | 863 | tty_name(port->tty, buf)); |
865 | } | 864 | } |
866 | uart_change_speed(state, NULL); | 865 | uart_change_speed(state, NULL); |
867 | } | 866 | } |
868 | } else | 867 | } else |
869 | retval = uart_startup(state, 1); | 868 | retval = uart_startup(state, 1); |
870 | exit: | 869 | exit: |
871 | mutex_unlock(&state->mutex); | 870 | mutex_unlock(&port->mutex); |
872 | return retval; | 871 | return retval; |
873 | } | 872 | } |
874 | 873 | ||
@@ -880,10 +879,11 @@ static int uart_set_info(struct uart_state *state, | |||
880 | static int uart_get_lsr_info(struct uart_state *state, | 879 | static int uart_get_lsr_info(struct uart_state *state, |
881 | unsigned int __user *value) | 880 | unsigned int __user *value) |
882 | { | 881 | { |
883 | struct uart_port *port = state->port; | 882 | struct uart_port *uport = state->uart_port; |
883 | struct tty_port *port = &state->port; | ||
884 | unsigned int result; | 884 | unsigned int result; |
885 | 885 | ||
886 | result = port->ops->tx_empty(port); | 886 | result = uport->ops->tx_empty(uport); |
887 | 887 | ||
888 | /* | 888 | /* |
889 | * If we're about to load something into the transmit | 889 | * If we're about to load something into the transmit |
@@ -891,9 +891,9 @@ static int uart_get_lsr_info(struct uart_state *state, | |||
891 | * avoid a race condition (depending on when the transmit | 891 | * avoid a race condition (depending on when the transmit |
892 | * interrupt happens). | 892 | * interrupt happens). |
893 | */ | 893 | */ |
894 | if (port->x_char || | 894 | if (uport->x_char || |
895 | ((uart_circ_chars_pending(&state->info.xmit) > 0) && | 895 | ((uart_circ_chars_pending(&state->xmit) > 0) && |
896 | !state->info.port.tty->stopped && !state->info.port.tty->hw_stopped)) | 896 | !port->tty->stopped && !port->tty->hw_stopped)) |
897 | result &= ~TIOCSER_TEMT; | 897 | result &= ~TIOCSER_TEMT; |
898 | 898 | ||
899 | return put_user(result, value); | 899 | return put_user(result, value); |
@@ -902,19 +902,20 @@ static int uart_get_lsr_info(struct uart_state *state, | |||
902 | static int uart_tiocmget(struct tty_struct *tty, struct file *file) | 902 | static int uart_tiocmget(struct tty_struct *tty, struct file *file) |
903 | { | 903 | { |
904 | struct uart_state *state = tty->driver_data; | 904 | struct uart_state *state = tty->driver_data; |
905 | struct uart_port *port = state->port; | 905 | struct tty_port *port = &state->port; |
906 | struct uart_port *uport = state->uart_port; | ||
906 | int result = -EIO; | 907 | int result = -EIO; |
907 | 908 | ||
908 | mutex_lock(&state->mutex); | 909 | mutex_lock(&port->mutex); |
909 | if ((!file || !tty_hung_up_p(file)) && | 910 | if ((!file || !tty_hung_up_p(file)) && |
910 | !(tty->flags & (1 << TTY_IO_ERROR))) { | 911 | !(tty->flags & (1 << TTY_IO_ERROR))) { |
911 | result = port->mctrl; | 912 | result = uport->mctrl; |
912 | 913 | ||
913 | spin_lock_irq(&port->lock); | 914 | spin_lock_irq(&uport->lock); |
914 | result |= port->ops->get_mctrl(port); | 915 | result |= uport->ops->get_mctrl(uport); |
915 | spin_unlock_irq(&port->lock); | 916 | spin_unlock_irq(&uport->lock); |
916 | } | 917 | } |
917 | mutex_unlock(&state->mutex); | 918 | mutex_unlock(&port->mutex); |
918 | 919 | ||
919 | return result; | 920 | return result; |
920 | } | 921 | } |
@@ -924,36 +925,39 @@ uart_tiocmset(struct tty_struct *tty, struct file *file, | |||
924 | unsigned int set, unsigned int clear) | 925 | unsigned int set, unsigned int clear) |
925 | { | 926 | { |
926 | struct uart_state *state = tty->driver_data; | 927 | struct uart_state *state = tty->driver_data; |
927 | struct uart_port *port = state->port; | 928 | struct uart_port *uport = state->uart_port; |
929 | struct tty_port *port = &state->port; | ||
928 | int ret = -EIO; | 930 | int ret = -EIO; |
929 | 931 | ||
930 | mutex_lock(&state->mutex); | 932 | mutex_lock(&port->mutex); |
931 | if ((!file || !tty_hung_up_p(file)) && | 933 | if ((!file || !tty_hung_up_p(file)) && |
932 | !(tty->flags & (1 << TTY_IO_ERROR))) { | 934 | !(tty->flags & (1 << TTY_IO_ERROR))) { |
933 | uart_update_mctrl(port, set, clear); | 935 | uart_update_mctrl(uport, set, clear); |
934 | ret = 0; | 936 | ret = 0; |
935 | } | 937 | } |
936 | mutex_unlock(&state->mutex); | 938 | mutex_unlock(&port->mutex); |
937 | return ret; | 939 | return ret; |
938 | } | 940 | } |
939 | 941 | ||
940 | static int uart_break_ctl(struct tty_struct *tty, int break_state) | 942 | static int uart_break_ctl(struct tty_struct *tty, int break_state) |
941 | { | 943 | { |
942 | struct uart_state *state = tty->driver_data; | 944 | struct uart_state *state = tty->driver_data; |
943 | struct uart_port *port = state->port; | 945 | struct tty_port *port = &state->port; |
946 | struct uart_port *uport = state->uart_port; | ||
944 | 947 | ||
945 | mutex_lock(&state->mutex); | 948 | mutex_lock(&port->mutex); |
946 | 949 | ||
947 | if (port->type != PORT_UNKNOWN) | 950 | if (uport->type != PORT_UNKNOWN) |
948 | port->ops->break_ctl(port, break_state); | 951 | uport->ops->break_ctl(uport, break_state); |
949 | 952 | ||
950 | mutex_unlock(&state->mutex); | 953 | mutex_unlock(&port->mutex); |
951 | return 0; | 954 | return 0; |
952 | } | 955 | } |
953 | 956 | ||
954 | static int uart_do_autoconfig(struct uart_state *state) | 957 | static int uart_do_autoconfig(struct uart_state *state) |
955 | { | 958 | { |
956 | struct uart_port *port = state->port; | 959 | struct uart_port *uport = state->uart_port; |
960 | struct tty_port *port = &state->port; | ||
957 | int flags, ret; | 961 | int flags, ret; |
958 | 962 | ||
959 | if (!capable(CAP_SYS_ADMIN)) | 963 | if (!capable(CAP_SYS_ADMIN)) |
@@ -964,33 +968,33 @@ static int uart_do_autoconfig(struct uart_state *state) | |||
964 | * changing, and hence any extra opens of the port while | 968 | * changing, and hence any extra opens of the port while |
965 | * we're auto-configuring. | 969 | * we're auto-configuring. |
966 | */ | 970 | */ |
967 | if (mutex_lock_interruptible(&state->mutex)) | 971 | if (mutex_lock_interruptible(&port->mutex)) |
968 | return -ERESTARTSYS; | 972 | return -ERESTARTSYS; |
969 | 973 | ||
970 | ret = -EBUSY; | 974 | ret = -EBUSY; |
971 | if (uart_users(state) == 1) { | 975 | if (tty_port_users(port) == 1) { |
972 | uart_shutdown(state); | 976 | uart_shutdown(state); |
973 | 977 | ||
974 | /* | 978 | /* |
975 | * If we already have a port type configured, | 979 | * If we already have a port type configured, |
976 | * we must release its resources. | 980 | * we must release its resources. |
977 | */ | 981 | */ |
978 | if (port->type != PORT_UNKNOWN) | 982 | if (uport->type != PORT_UNKNOWN) |
979 | port->ops->release_port(port); | 983 | uport->ops->release_port(uport); |
980 | 984 | ||
981 | flags = UART_CONFIG_TYPE; | 985 | flags = UART_CONFIG_TYPE; |
982 | if (port->flags & UPF_AUTO_IRQ) | 986 | if (uport->flags & UPF_AUTO_IRQ) |
983 | flags |= UART_CONFIG_IRQ; | 987 | flags |= UART_CONFIG_IRQ; |
984 | 988 | ||
985 | /* | 989 | /* |
986 | * This will claim the ports resources if | 990 | * This will claim the ports resources if |
987 | * a port is found. | 991 | * a port is found. |
988 | */ | 992 | */ |
989 | port->ops->config_port(port, flags); | 993 | uport->ops->config_port(uport, flags); |
990 | 994 | ||
991 | ret = uart_startup(state, 1); | 995 | ret = uart_startup(state, 1); |
992 | } | 996 | } |
993 | mutex_unlock(&state->mutex); | 997 | mutex_unlock(&port->mutex); |
994 | return ret; | 998 | return ret; |
995 | } | 999 | } |
996 | 1000 | ||
@@ -999,11 +1003,15 @@ static int uart_do_autoconfig(struct uart_state *state) | |||
999 | * - mask passed in arg for lines of interest | 1003 | * - mask passed in arg for lines of interest |
1000 | * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking) | 1004 | * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking) |
1001 | * Caller should use TIOCGICOUNT to see which one it was | 1005 | * Caller should use TIOCGICOUNT to see which one it was |
1006 | * | ||
1007 | * FIXME: This wants extracting into a common all driver implementation | ||
1008 | * of TIOCMWAIT using tty_port. | ||
1002 | */ | 1009 | */ |
1003 | static int | 1010 | static int |
1004 | uart_wait_modem_status(struct uart_state *state, unsigned long arg) | 1011 | uart_wait_modem_status(struct uart_state *state, unsigned long arg) |
1005 | { | 1012 | { |
1006 | struct uart_port *port = state->port; | 1013 | struct uart_port *uport = state->uart_port; |
1014 | struct tty_port *port = &state->port; | ||
1007 | DECLARE_WAITQUEUE(wait, current); | 1015 | DECLARE_WAITQUEUE(wait, current); |
1008 | struct uart_icount cprev, cnow; | 1016 | struct uart_icount cprev, cnow; |
1009 | int ret; | 1017 | int ret; |
@@ -1011,20 +1019,20 @@ uart_wait_modem_status(struct uart_state *state, unsigned long arg) | |||
1011 | /* | 1019 | /* |
1012 | * note the counters on entry | 1020 | * note the counters on entry |
1013 | */ | 1021 | */ |
1014 | spin_lock_irq(&port->lock); | 1022 | spin_lock_irq(&uport->lock); |
1015 | memcpy(&cprev, &port->icount, sizeof(struct uart_icount)); | 1023 | memcpy(&cprev, &uport->icount, sizeof(struct uart_icount)); |
1016 | 1024 | ||
1017 | /* | 1025 | /* |
1018 | * Force modem status interrupts on | 1026 | * Force modem status interrupts on |
1019 | */ | 1027 | */ |
1020 | port->ops->enable_ms(port); | 1028 | uport->ops->enable_ms(uport); |
1021 | spin_unlock_irq(&port->lock); | 1029 | spin_unlock_irq(&uport->lock); |
1022 | 1030 | ||
1023 | add_wait_queue(&state->info.delta_msr_wait, &wait); | 1031 | add_wait_queue(&port->delta_msr_wait, &wait); |
1024 | for (;;) { | 1032 | for (;;) { |
1025 | spin_lock_irq(&port->lock); | 1033 | spin_lock_irq(&uport->lock); |
1026 | memcpy(&cnow, &port->icount, sizeof(struct uart_icount)); | 1034 | memcpy(&cnow, &uport->icount, sizeof(struct uart_icount)); |
1027 | spin_unlock_irq(&port->lock); | 1035 | spin_unlock_irq(&uport->lock); |
1028 | 1036 | ||
1029 | set_current_state(TASK_INTERRUPTIBLE); | 1037 | set_current_state(TASK_INTERRUPTIBLE); |
1030 | 1038 | ||
@@ -1048,7 +1056,7 @@ uart_wait_modem_status(struct uart_state *state, unsigned long arg) | |||
1048 | } | 1056 | } |
1049 | 1057 | ||
1050 | current->state = TASK_RUNNING; | 1058 | current->state = TASK_RUNNING; |
1051 | remove_wait_queue(&state->info.delta_msr_wait, &wait); | 1059 | remove_wait_queue(&port->delta_msr_wait, &wait); |
1052 | 1060 | ||
1053 | return ret; | 1061 | return ret; |
1054 | } | 1062 | } |
@@ -1064,11 +1072,11 @@ static int uart_get_count(struct uart_state *state, | |||
1064 | { | 1072 | { |
1065 | struct serial_icounter_struct icount; | 1073 | struct serial_icounter_struct icount; |
1066 | struct uart_icount cnow; | 1074 | struct uart_icount cnow; |
1067 | struct uart_port *port = state->port; | 1075 | struct uart_port *uport = state->uart_port; |
1068 | 1076 | ||
1069 | spin_lock_irq(&port->lock); | 1077 | spin_lock_irq(&uport->lock); |
1070 | memcpy(&cnow, &port->icount, sizeof(struct uart_icount)); | 1078 | memcpy(&cnow, &uport->icount, sizeof(struct uart_icount)); |
1071 | spin_unlock_irq(&port->lock); | 1079 | spin_unlock_irq(&uport->lock); |
1072 | 1080 | ||
1073 | icount.cts = cnow.cts; | 1081 | icount.cts = cnow.cts; |
1074 | icount.dsr = cnow.dsr; | 1082 | icount.dsr = cnow.dsr; |
@@ -1093,6 +1101,7 @@ uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd, | |||
1093 | unsigned long arg) | 1101 | unsigned long arg) |
1094 | { | 1102 | { |
1095 | struct uart_state *state = tty->driver_data; | 1103 | struct uart_state *state = tty->driver_data; |
1104 | struct tty_port *port = &state->port; | ||
1096 | void __user *uarg = (void __user *)arg; | 1105 | void __user *uarg = (void __user *)arg; |
1097 | int ret = -ENOIOCTLCMD; | 1106 | int ret = -ENOIOCTLCMD; |
1098 | 1107 | ||
@@ -1143,7 +1152,7 @@ uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd, | |||
1143 | if (ret != -ENOIOCTLCMD) | 1152 | if (ret != -ENOIOCTLCMD) |
1144 | goto out; | 1153 | goto out; |
1145 | 1154 | ||
1146 | mutex_lock(&state->mutex); | 1155 | mutex_lock(&port->mutex); |
1147 | 1156 | ||
1148 | if (tty_hung_up_p(filp)) { | 1157 | if (tty_hung_up_p(filp)) { |
1149 | ret = -EIO; | 1158 | ret = -EIO; |
@@ -1160,14 +1169,14 @@ uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd, | |||
1160 | break; | 1169 | break; |
1161 | 1170 | ||
1162 | default: { | 1171 | default: { |
1163 | struct uart_port *port = state->port; | 1172 | struct uart_port *uport = state->uart_port; |
1164 | if (port->ops->ioctl) | 1173 | if (uport->ops->ioctl) |
1165 | ret = port->ops->ioctl(port, cmd, arg); | 1174 | ret = uport->ops->ioctl(uport, cmd, arg); |
1166 | break; | 1175 | break; |
1167 | } | 1176 | } |
1168 | } | 1177 | } |
1169 | out_up: | 1178 | out_up: |
1170 | mutex_unlock(&state->mutex); | 1179 | mutex_unlock(&port->mutex); |
1171 | out: | 1180 | out: |
1172 | return ret; | 1181 | return ret; |
1173 | } | 1182 | } |
@@ -1175,10 +1184,10 @@ out: | |||
1175 | static void uart_set_ldisc(struct tty_struct *tty) | 1184 | static void uart_set_ldisc(struct tty_struct *tty) |
1176 | { | 1185 | { |
1177 | struct uart_state *state = tty->driver_data; | 1186 | struct uart_state *state = tty->driver_data; |
1178 | struct uart_port *port = state->port; | 1187 | struct uart_port *uport = state->uart_port; |
1179 | 1188 | ||
1180 | if (port->ops->set_ldisc) | 1189 | if (uport->ops->set_ldisc) |
1181 | port->ops->set_ldisc(port); | 1190 | uport->ops->set_ldisc(uport); |
1182 | } | 1191 | } |
1183 | 1192 | ||
1184 | static void uart_set_termios(struct tty_struct *tty, | 1193 | static void uart_set_termios(struct tty_struct *tty, |
@@ -1207,7 +1216,7 @@ static void uart_set_termios(struct tty_struct *tty, | |||
1207 | 1216 | ||
1208 | /* Handle transition to B0 status */ | 1217 | /* Handle transition to B0 status */ |
1209 | if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD)) | 1218 | if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD)) |
1210 | uart_clear_mctrl(state->port, TIOCM_RTS | TIOCM_DTR); | 1219 | uart_clear_mctrl(state->uart_port, TIOCM_RTS | TIOCM_DTR); |
1211 | 1220 | ||
1212 | /* Handle transition away from B0 status */ | 1221 | /* Handle transition away from B0 status */ |
1213 | if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) { | 1222 | if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) { |
@@ -1215,25 +1224,25 @@ static void uart_set_termios(struct tty_struct *tty, | |||
1215 | if (!(cflag & CRTSCTS) || | 1224 | if (!(cflag & CRTSCTS) || |
1216 | !test_bit(TTY_THROTTLED, &tty->flags)) | 1225 | !test_bit(TTY_THROTTLED, &tty->flags)) |
1217 | mask |= TIOCM_RTS; | 1226 | mask |= TIOCM_RTS; |
1218 | uart_set_mctrl(state->port, mask); | 1227 | uart_set_mctrl(state->uart_port, mask); |
1219 | } | 1228 | } |
1220 | 1229 | ||
1221 | /* Handle turning off CRTSCTS */ | 1230 | /* Handle turning off CRTSCTS */ |
1222 | if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) { | 1231 | if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) { |
1223 | spin_lock_irqsave(&state->port->lock, flags); | 1232 | spin_lock_irqsave(&state->uart_port->lock, flags); |
1224 | tty->hw_stopped = 0; | 1233 | tty->hw_stopped = 0; |
1225 | __uart_start(tty); | 1234 | __uart_start(tty); |
1226 | spin_unlock_irqrestore(&state->port->lock, flags); | 1235 | spin_unlock_irqrestore(&state->uart_port->lock, flags); |
1227 | } | 1236 | } |
1228 | 1237 | ||
1229 | /* Handle turning on CRTSCTS */ | 1238 | /* Handle turning on CRTSCTS */ |
1230 | if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) { | 1239 | if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) { |
1231 | spin_lock_irqsave(&state->port->lock, flags); | 1240 | spin_lock_irqsave(&state->uart_port->lock, flags); |
1232 | if (!(state->port->ops->get_mctrl(state->port) & TIOCM_CTS)) { | 1241 | if (!(state->uart_port->ops->get_mctrl(state->uart_port) & TIOCM_CTS)) { |
1233 | tty->hw_stopped = 1; | 1242 | tty->hw_stopped = 1; |
1234 | state->port->ops->stop_tx(state->port); | 1243 | state->uart_port->ops->stop_tx(state->uart_port); |
1235 | } | 1244 | } |
1236 | spin_unlock_irqrestore(&state->port->lock, flags); | 1245 | spin_unlock_irqrestore(&state->uart_port->lock, flags); |
1237 | } | 1246 | } |
1238 | #if 0 | 1247 | #if 0 |
1239 | /* | 1248 | /* |
@@ -1244,7 +1253,7 @@ static void uart_set_termios(struct tty_struct *tty, | |||
1244 | */ | 1253 | */ |
1245 | if (!(old_termios->c_cflag & CLOCAL) && | 1254 | if (!(old_termios->c_cflag & CLOCAL) && |
1246 | (tty->termios->c_cflag & CLOCAL)) | 1255 | (tty->termios->c_cflag & CLOCAL)) |
1247 | wake_up_interruptible(&info->port.open_wait); | 1256 | wake_up_interruptible(&state->uart_port.open_wait); |
1248 | #endif | 1257 | #endif |
1249 | } | 1258 | } |
1250 | 1259 | ||
@@ -1256,40 +1265,39 @@ static void uart_set_termios(struct tty_struct *tty, | |||
1256 | static void uart_close(struct tty_struct *tty, struct file *filp) | 1265 | static void uart_close(struct tty_struct *tty, struct file *filp) |
1257 | { | 1266 | { |
1258 | struct uart_state *state = tty->driver_data; | 1267 | struct uart_state *state = tty->driver_data; |
1259 | struct uart_port *port; | 1268 | struct tty_port *port; |
1269 | struct uart_port *uport; | ||
1260 | 1270 | ||
1261 | BUG_ON(!kernel_locked()); | 1271 | BUG_ON(!kernel_locked()); |
1262 | 1272 | ||
1263 | if (!state || !state->port) | 1273 | uport = state->uart_port; |
1264 | return; | 1274 | port = &state->port; |
1265 | 1275 | ||
1266 | port = state->port; | 1276 | pr_debug("uart_close(%d) called\n", uport->line); |
1267 | 1277 | ||
1268 | pr_debug("uart_close(%d) called\n", port->line); | 1278 | mutex_lock(&port->mutex); |
1269 | |||
1270 | mutex_lock(&state->mutex); | ||
1271 | 1279 | ||
1272 | if (tty_hung_up_p(filp)) | 1280 | if (tty_hung_up_p(filp)) |
1273 | goto done; | 1281 | goto done; |
1274 | 1282 | ||
1275 | if ((tty->count == 1) && (state->count != 1)) { | 1283 | if ((tty->count == 1) && (port->count != 1)) { |
1276 | /* | 1284 | /* |
1277 | * Uh, oh. tty->count is 1, which means that the tty | 1285 | * Uh, oh. tty->count is 1, which means that the tty |
1278 | * structure will be freed. state->count should always | 1286 | * structure will be freed. port->count should always |
1279 | * be one in these conditions. If it's greater than | 1287 | * be one in these conditions. If it's greater than |
1280 | * one, we've got real problems, since it means the | 1288 | * one, we've got real problems, since it means the |
1281 | * serial port won't be shutdown. | 1289 | * serial port won't be shutdown. |
1282 | */ | 1290 | */ |
1283 | printk(KERN_ERR "uart_close: bad serial port count; tty->count is 1, " | 1291 | printk(KERN_ERR "uart_close: bad serial port count; tty->count is 1, " |
1284 | "state->count is %d\n", state->count); | 1292 | "port->count is %d\n", port->count); |
1285 | state->count = 1; | 1293 | port->count = 1; |
1286 | } | 1294 | } |
1287 | if (--state->count < 0) { | 1295 | if (--port->count < 0) { |
1288 | printk(KERN_ERR "uart_close: bad serial port count for %s: %d\n", | 1296 | printk(KERN_ERR "uart_close: bad serial port count for %s: %d\n", |
1289 | tty->name, state->count); | 1297 | tty->name, port->count); |
1290 | state->count = 0; | 1298 | port->count = 0; |
1291 | } | 1299 | } |
1292 | if (state->count) | 1300 | if (port->count) |
1293 | goto done; | 1301 | goto done; |
1294 | 1302 | ||
1295 | /* | 1303 | /* |
@@ -1299,24 +1307,24 @@ static void uart_close(struct tty_struct *tty, struct file *filp) | |||
1299 | */ | 1307 | */ |
1300 | tty->closing = 1; | 1308 | tty->closing = 1; |
1301 | 1309 | ||
1302 | if (state->closing_wait != USF_CLOSING_WAIT_NONE) | 1310 | if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE) |
1303 | tty_wait_until_sent(tty, msecs_to_jiffies(state->closing_wait)); | 1311 | tty_wait_until_sent(tty, msecs_to_jiffies(port->closing_wait)); |
1304 | 1312 | ||
1305 | /* | 1313 | /* |
1306 | * At this point, we stop accepting input. To do this, we | 1314 | * At this point, we stop accepting input. To do this, we |
1307 | * disable the receive line status interrupts. | 1315 | * disable the receive line status interrupts. |
1308 | */ | 1316 | */ |
1309 | if (state->info.flags & UIF_INITIALIZED) { | 1317 | if (port->flags & ASYNC_INITIALIZED) { |
1310 | unsigned long flags; | 1318 | unsigned long flags; |
1311 | spin_lock_irqsave(&port->lock, flags); | 1319 | spin_lock_irqsave(&port->lock, flags); |
1312 | port->ops->stop_rx(port); | 1320 | uport->ops->stop_rx(uport); |
1313 | spin_unlock_irqrestore(&port->lock, flags); | 1321 | spin_unlock_irqrestore(&port->lock, flags); |
1314 | /* | 1322 | /* |
1315 | * Before we drop DTR, make sure the UART transmitter | 1323 | * Before we drop DTR, make sure the UART transmitter |
1316 | * has completely drained; this is especially | 1324 | * has completely drained; this is especially |
1317 | * important if there is a transmit FIFO! | 1325 | * important if there is a transmit FIFO! |
1318 | */ | 1326 | */ |
1319 | uart_wait_until_sent(tty, port->timeout); | 1327 | uart_wait_until_sent(tty, uport->timeout); |
1320 | } | 1328 | } |
1321 | 1329 | ||
1322 | uart_shutdown(state); | 1330 | uart_shutdown(state); |
@@ -1325,29 +1333,29 @@ static void uart_close(struct tty_struct *tty, struct file *filp) | |||
1325 | tty_ldisc_flush(tty); | 1333 | tty_ldisc_flush(tty); |
1326 | 1334 | ||
1327 | tty->closing = 0; | 1335 | tty->closing = 0; |
1328 | state->info.port.tty = NULL; | 1336 | tty_port_tty_set(port, NULL); |
1329 | 1337 | ||
1330 | if (state->info.port.blocked_open) { | 1338 | if (port->blocked_open) { |
1331 | if (state->close_delay) | 1339 | if (port->close_delay) |
1332 | msleep_interruptible(state->close_delay); | 1340 | msleep_interruptible(port->close_delay); |
1333 | } else if (!uart_console(port)) { | 1341 | } else if (!uart_console(uport)) { |
1334 | uart_change_pm(state, 3); | 1342 | uart_change_pm(state, 3); |
1335 | } | 1343 | } |
1336 | 1344 | ||
1337 | /* | 1345 | /* |
1338 | * Wake up anyone trying to open this port. | 1346 | * Wake up anyone trying to open this port. |
1339 | */ | 1347 | */ |
1340 | state->info.flags &= ~UIF_NORMAL_ACTIVE; | 1348 | clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags); |
1341 | wake_up_interruptible(&state->info.port.open_wait); | 1349 | wake_up_interruptible(&port->open_wait); |
1342 | 1350 | ||
1343 | done: | 1351 | done: |
1344 | mutex_unlock(&state->mutex); | 1352 | mutex_unlock(&port->mutex); |
1345 | } | 1353 | } |
1346 | 1354 | ||
1347 | static void uart_wait_until_sent(struct tty_struct *tty, int timeout) | 1355 | static void uart_wait_until_sent(struct tty_struct *tty, int timeout) |
1348 | { | 1356 | { |
1349 | struct uart_state *state = tty->driver_data; | 1357 | struct uart_state *state = tty->driver_data; |
1350 | struct uart_port *port = state->port; | 1358 | struct uart_port *port = state->uart_port; |
1351 | unsigned long char_time, expire; | 1359 | unsigned long char_time, expire; |
1352 | 1360 | ||
1353 | if (port->type == PORT_UNKNOWN || port->fifosize == 0) | 1361 | if (port->type == PORT_UNKNOWN || port->fifosize == 0) |
@@ -1412,22 +1420,22 @@ static void uart_wait_until_sent(struct tty_struct *tty, int timeout) | |||
1412 | static void uart_hangup(struct tty_struct *tty) | 1420 | static void uart_hangup(struct tty_struct *tty) |
1413 | { | 1421 | { |
1414 | struct uart_state *state = tty->driver_data; | 1422 | struct uart_state *state = tty->driver_data; |
1415 | struct uart_info *info = &state->info; | 1423 | struct tty_port *port = &state->port; |
1416 | 1424 | ||
1417 | BUG_ON(!kernel_locked()); | 1425 | BUG_ON(!kernel_locked()); |
1418 | pr_debug("uart_hangup(%d)\n", state->port->line); | 1426 | pr_debug("uart_hangup(%d)\n", state->uart_port->line); |
1419 | 1427 | ||
1420 | mutex_lock(&state->mutex); | 1428 | mutex_lock(&port->mutex); |
1421 | if (info->flags & UIF_NORMAL_ACTIVE) { | 1429 | if (port->flags & ASYNC_NORMAL_ACTIVE) { |
1422 | uart_flush_buffer(tty); | 1430 | uart_flush_buffer(tty); |
1423 | uart_shutdown(state); | 1431 | uart_shutdown(state); |
1424 | state->count = 0; | 1432 | port->count = 0; |
1425 | info->flags &= ~UIF_NORMAL_ACTIVE; | 1433 | clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags); |
1426 | info->port.tty = NULL; | 1434 | tty_port_tty_set(port, NULL); |
1427 | wake_up_interruptible(&info->port.open_wait); | 1435 | wake_up_interruptible(&port->open_wait); |
1428 | wake_up_interruptible(&info->delta_msr_wait); | 1436 | wake_up_interruptible(&port->delta_msr_wait); |
1429 | } | 1437 | } |
1430 | mutex_unlock(&state->mutex); | 1438 | mutex_unlock(&port->mutex); |
1431 | } | 1439 | } |
1432 | 1440 | ||
1433 | /* | 1441 | /* |
@@ -1438,8 +1446,8 @@ static void uart_hangup(struct tty_struct *tty) | |||
1438 | */ | 1446 | */ |
1439 | static void uart_update_termios(struct uart_state *state) | 1447 | static void uart_update_termios(struct uart_state *state) |
1440 | { | 1448 | { |
1441 | struct tty_struct *tty = state->info.port.tty; | 1449 | struct tty_struct *tty = state->port.tty; |
1442 | struct uart_port *port = state->port; | 1450 | struct uart_port *port = state->uart_port; |
1443 | 1451 | ||
1444 | if (uart_console(port) && port->cons->cflag) { | 1452 | if (uart_console(port) && port->cons->cflag) { |
1445 | tty->termios->c_cflag = port->cons->cflag; | 1453 | tty->termios->c_cflag = port->cons->cflag; |
@@ -1473,27 +1481,27 @@ static int | |||
1473 | uart_block_til_ready(struct file *filp, struct uart_state *state) | 1481 | uart_block_til_ready(struct file *filp, struct uart_state *state) |
1474 | { | 1482 | { |
1475 | DECLARE_WAITQUEUE(wait, current); | 1483 | DECLARE_WAITQUEUE(wait, current); |
1476 | struct uart_info *info = &state->info; | 1484 | struct uart_port *uport = state->uart_port; |
1477 | struct uart_port *port = state->port; | 1485 | struct tty_port *port = &state->port; |
1478 | unsigned int mctrl; | 1486 | unsigned int mctrl; |
1479 | 1487 | ||
1480 | info->port.blocked_open++; | 1488 | port->blocked_open++; |
1481 | state->count--; | 1489 | port->count--; |
1482 | 1490 | ||
1483 | add_wait_queue(&info->port.open_wait, &wait); | 1491 | add_wait_queue(&port->open_wait, &wait); |
1484 | while (1) { | 1492 | while (1) { |
1485 | set_current_state(TASK_INTERRUPTIBLE); | 1493 | set_current_state(TASK_INTERRUPTIBLE); |
1486 | 1494 | ||
1487 | /* | 1495 | /* |
1488 | * If we have been hung up, tell userspace/restart open. | 1496 | * If we have been hung up, tell userspace/restart open. |
1489 | */ | 1497 | */ |
1490 | if (tty_hung_up_p(filp) || info->port.tty == NULL) | 1498 | if (tty_hung_up_p(filp) || port->tty == NULL) |
1491 | break; | 1499 | break; |
1492 | 1500 | ||
1493 | /* | 1501 | /* |
1494 | * If the port has been closed, tell userspace/restart open. | 1502 | * If the port has been closed, tell userspace/restart open. |
1495 | */ | 1503 | */ |
1496 | if (!(info->flags & UIF_INITIALIZED)) | 1504 | if (!(port->flags & ASYNC_INITIALIZED)) |
1497 | break; | 1505 | break; |
1498 | 1506 | ||
1499 | /* | 1507 | /* |
@@ -1506,8 +1514,8 @@ uart_block_til_ready(struct file *filp, struct uart_state *state) | |||
1506 | * have set TTY_IO_ERROR for a non-existant port. | 1514 | * have set TTY_IO_ERROR for a non-existant port. |
1507 | */ | 1515 | */ |
1508 | if ((filp->f_flags & O_NONBLOCK) || | 1516 | if ((filp->f_flags & O_NONBLOCK) || |
1509 | (info->port.tty->termios->c_cflag & CLOCAL) || | 1517 | (port->tty->termios->c_cflag & CLOCAL) || |
1510 | (info->port.tty->flags & (1 << TTY_IO_ERROR))) | 1518 | (port->tty->flags & (1 << TTY_IO_ERROR))) |
1511 | break; | 1519 | break; |
1512 | 1520 | ||
1513 | /* | 1521 | /* |
@@ -1515,37 +1523,37 @@ uart_block_til_ready(struct file *filp, struct uart_state *state) | |||
1515 | * not set RTS here - we want to make sure we catch | 1523 | * not set RTS here - we want to make sure we catch |
1516 | * the data from the modem. | 1524 | * the data from the modem. |
1517 | */ | 1525 | */ |
1518 | if (info->port.tty->termios->c_cflag & CBAUD) | 1526 | if (port->tty->termios->c_cflag & CBAUD) |
1519 | uart_set_mctrl(port, TIOCM_DTR); | 1527 | uart_set_mctrl(uport, TIOCM_DTR); |
1520 | 1528 | ||
1521 | /* | 1529 | /* |
1522 | * and wait for the carrier to indicate that the | 1530 | * and wait for the carrier to indicate that the |
1523 | * modem is ready for us. | 1531 | * modem is ready for us. |
1524 | */ | 1532 | */ |
1525 | spin_lock_irq(&port->lock); | 1533 | spin_lock_irq(&uport->lock); |
1526 | port->ops->enable_ms(port); | 1534 | uport->ops->enable_ms(uport); |
1527 | mctrl = port->ops->get_mctrl(port); | 1535 | mctrl = uport->ops->get_mctrl(uport); |
1528 | spin_unlock_irq(&port->lock); | 1536 | spin_unlock_irq(&uport->lock); |
1529 | if (mctrl & TIOCM_CAR) | 1537 | if (mctrl & TIOCM_CAR) |
1530 | break; | 1538 | break; |
1531 | 1539 | ||
1532 | mutex_unlock(&state->mutex); | 1540 | mutex_unlock(&port->mutex); |
1533 | schedule(); | 1541 | schedule(); |
1534 | mutex_lock(&state->mutex); | 1542 | mutex_lock(&port->mutex); |
1535 | 1543 | ||
1536 | if (signal_pending(current)) | 1544 | if (signal_pending(current)) |
1537 | break; | 1545 | break; |
1538 | } | 1546 | } |
1539 | set_current_state(TASK_RUNNING); | 1547 | set_current_state(TASK_RUNNING); |
1540 | remove_wait_queue(&info->port.open_wait, &wait); | 1548 | remove_wait_queue(&port->open_wait, &wait); |
1541 | 1549 | ||
1542 | state->count++; | 1550 | port->count++; |
1543 | info->port.blocked_open--; | 1551 | port->blocked_open--; |
1544 | 1552 | ||
1545 | if (signal_pending(current)) | 1553 | if (signal_pending(current)) |
1546 | return -ERESTARTSYS; | 1554 | return -ERESTARTSYS; |
1547 | 1555 | ||
1548 | if (!info->port.tty || tty_hung_up_p(filp)) | 1556 | if (!port->tty || tty_hung_up_p(filp)) |
1549 | return -EAGAIN; | 1557 | return -EAGAIN; |
1550 | 1558 | ||
1551 | return 0; | 1559 | return 0; |
@@ -1554,24 +1562,26 @@ uart_block_til_ready(struct file *filp, struct uart_state *state) | |||
1554 | static struct uart_state *uart_get(struct uart_driver *drv, int line) | 1562 | static struct uart_state *uart_get(struct uart_driver *drv, int line) |
1555 | { | 1563 | { |
1556 | struct uart_state *state; | 1564 | struct uart_state *state; |
1565 | struct tty_port *port; | ||
1557 | int ret = 0; | 1566 | int ret = 0; |
1558 | 1567 | ||
1559 | state = drv->state + line; | 1568 | state = drv->state + line; |
1560 | if (mutex_lock_interruptible(&state->mutex)) { | 1569 | port = &state->port; |
1570 | if (mutex_lock_interruptible(&port->mutex)) { | ||
1561 | ret = -ERESTARTSYS; | 1571 | ret = -ERESTARTSYS; |
1562 | goto err; | 1572 | goto err; |
1563 | } | 1573 | } |
1564 | 1574 | ||
1565 | state->count++; | 1575 | port->count++; |
1566 | if (!state->port || state->port->flags & UPF_DEAD) { | 1576 | if (!state->uart_port || state->uart_port->flags & UPF_DEAD) { |
1567 | ret = -ENXIO; | 1577 | ret = -ENXIO; |
1568 | goto err_unlock; | 1578 | goto err_unlock; |
1569 | } | 1579 | } |
1570 | return state; | 1580 | return state; |
1571 | 1581 | ||
1572 | err_unlock: | 1582 | err_unlock: |
1573 | state->count--; | 1583 | port->count--; |
1574 | mutex_unlock(&state->mutex); | 1584 | mutex_unlock(&port->mutex); |
1575 | err: | 1585 | err: |
1576 | return ERR_PTR(ret); | 1586 | return ERR_PTR(ret); |
1577 | } | 1587 | } |
@@ -1590,6 +1600,7 @@ static int uart_open(struct tty_struct *tty, struct file *filp) | |||
1590 | { | 1600 | { |
1591 | struct uart_driver *drv = (struct uart_driver *)tty->driver->driver_state; | 1601 | struct uart_driver *drv = (struct uart_driver *)tty->driver->driver_state; |
1592 | struct uart_state *state; | 1602 | struct uart_state *state; |
1603 | struct tty_port *port; | ||
1593 | int retval, line = tty->index; | 1604 | int retval, line = tty->index; |
1594 | 1605 | ||
1595 | BUG_ON(!kernel_locked()); | 1606 | BUG_ON(!kernel_locked()); |
@@ -1606,16 +1617,18 @@ static int uart_open(struct tty_struct *tty, struct file *filp) | |||
1606 | 1617 | ||
1607 | /* | 1618 | /* |
1608 | * We take the semaphore inside uart_get to guarantee that we won't | 1619 | * We take the semaphore inside uart_get to guarantee that we won't |
1609 | * be re-entered while allocating the info structure, or while we | 1620 | * be re-entered while allocating the state structure, or while we |
1610 | * request any IRQs that the driver may need. This also has the nice | 1621 | * request any IRQs that the driver may need. This also has the nice |
1611 | * side-effect that it delays the action of uart_hangup, so we can | 1622 | * side-effect that it delays the action of uart_hangup, so we can |
1612 | * guarantee that info->port.tty will always contain something reasonable. | 1623 | * guarantee that state->port.tty will always contain something |
1624 | * reasonable. | ||
1613 | */ | 1625 | */ |
1614 | state = uart_get(drv, line); | 1626 | state = uart_get(drv, line); |
1615 | if (IS_ERR(state)) { | 1627 | if (IS_ERR(state)) { |
1616 | retval = PTR_ERR(state); | 1628 | retval = PTR_ERR(state); |
1617 | goto fail; | 1629 | goto fail; |
1618 | } | 1630 | } |
1631 | port = &state->port; | ||
1619 | 1632 | ||
1620 | /* | 1633 | /* |
1621 | * Once we set tty->driver_data here, we are guaranteed that | 1634 | * Once we set tty->driver_data here, we are guaranteed that |
@@ -1623,25 +1636,25 @@ static int uart_open(struct tty_struct *tty, struct file *filp) | |||
1623 | * Any failures from here onwards should not touch the count. | 1636 | * Any failures from here onwards should not touch the count. |
1624 | */ | 1637 | */ |
1625 | tty->driver_data = state; | 1638 | tty->driver_data = state; |
1626 | state->port->info = &state->info; | 1639 | state->uart_port->state = state; |
1627 | tty->low_latency = (state->port->flags & UPF_LOW_LATENCY) ? 1 : 0; | 1640 | tty->low_latency = (state->uart_port->flags & UPF_LOW_LATENCY) ? 1 : 0; |
1628 | tty->alt_speed = 0; | 1641 | tty->alt_speed = 0; |
1629 | state->info.port.tty = tty; | 1642 | tty_port_tty_set(port, tty); |
1630 | 1643 | ||
1631 | /* | 1644 | /* |
1632 | * If the port is in the middle of closing, bail out now. | 1645 | * If the port is in the middle of closing, bail out now. |
1633 | */ | 1646 | */ |
1634 | if (tty_hung_up_p(filp)) { | 1647 | if (tty_hung_up_p(filp)) { |
1635 | retval = -EAGAIN; | 1648 | retval = -EAGAIN; |
1636 | state->count--; | 1649 | port->count--; |
1637 | mutex_unlock(&state->mutex); | 1650 | mutex_unlock(&port->mutex); |
1638 | goto fail; | 1651 | goto fail; |
1639 | } | 1652 | } |
1640 | 1653 | ||
1641 | /* | 1654 | /* |
1642 | * Make sure the device is in D0 state. | 1655 | * Make sure the device is in D0 state. |
1643 | */ | 1656 | */ |
1644 | if (state->count == 1) | 1657 | if (port->count == 1) |
1645 | uart_change_pm(state, 0); | 1658 | uart_change_pm(state, 0); |
1646 | 1659 | ||
1647 | /* | 1660 | /* |
@@ -1654,18 +1667,18 @@ static int uart_open(struct tty_struct *tty, struct file *filp) | |||
1654 | */ | 1667 | */ |
1655 | if (retval == 0) | 1668 | if (retval == 0) |
1656 | retval = uart_block_til_ready(filp, state); | 1669 | retval = uart_block_til_ready(filp, state); |
1657 | mutex_unlock(&state->mutex); | 1670 | mutex_unlock(&port->mutex); |
1658 | 1671 | ||
1659 | /* | 1672 | /* |
1660 | * If this is the first open to succeed, adjust things to suit. | 1673 | * If this is the first open to succeed, adjust things to suit. |
1661 | */ | 1674 | */ |
1662 | if (retval == 0 && !(state->info.flags & UIF_NORMAL_ACTIVE)) { | 1675 | if (retval == 0 && !(port->flags & ASYNC_NORMAL_ACTIVE)) { |
1663 | state->info.flags |= UIF_NORMAL_ACTIVE; | 1676 | set_bit(ASYNCB_NORMAL_ACTIVE, &port->flags); |
1664 | 1677 | ||
1665 | uart_update_termios(state); | 1678 | uart_update_termios(state); |
1666 | } | 1679 | } |
1667 | 1680 | ||
1668 | fail: | 1681 | fail: |
1669 | return retval; | 1682 | return retval; |
1670 | } | 1683 | } |
1671 | 1684 | ||
@@ -1687,57 +1700,58 @@ static const char *uart_type(struct uart_port *port) | |||
1687 | static void uart_line_info(struct seq_file *m, struct uart_driver *drv, int i) | 1700 | static void uart_line_info(struct seq_file *m, struct uart_driver *drv, int i) |
1688 | { | 1701 | { |
1689 | struct uart_state *state = drv->state + i; | 1702 | struct uart_state *state = drv->state + i; |
1703 | struct tty_port *port = &state->port; | ||
1690 | int pm_state; | 1704 | int pm_state; |
1691 | struct uart_port *port = state->port; | 1705 | struct uart_port *uport = state->uart_port; |
1692 | char stat_buf[32]; | 1706 | char stat_buf[32]; |
1693 | unsigned int status; | 1707 | unsigned int status; |
1694 | int mmio; | 1708 | int mmio; |
1695 | 1709 | ||
1696 | if (!port) | 1710 | if (!uport) |
1697 | return; | 1711 | return; |
1698 | 1712 | ||
1699 | mmio = port->iotype >= UPIO_MEM; | 1713 | mmio = uport->iotype >= UPIO_MEM; |
1700 | seq_printf(m, "%d: uart:%s %s%08llX irq:%d", | 1714 | seq_printf(m, "%d: uart:%s %s%08llX irq:%d", |
1701 | port->line, uart_type(port), | 1715 | uport->line, uart_type(uport), |
1702 | mmio ? "mmio:0x" : "port:", | 1716 | mmio ? "mmio:0x" : "port:", |
1703 | mmio ? (unsigned long long)port->mapbase | 1717 | mmio ? (unsigned long long)uport->mapbase |
1704 | : (unsigned long long) port->iobase, | 1718 | : (unsigned long long)uport->iobase, |
1705 | port->irq); | 1719 | uport->irq); |
1706 | 1720 | ||
1707 | if (port->type == PORT_UNKNOWN) { | 1721 | if (uport->type == PORT_UNKNOWN) { |
1708 | seq_putc(m, '\n'); | 1722 | seq_putc(m, '\n'); |
1709 | return; | 1723 | return; |
1710 | } | 1724 | } |
1711 | 1725 | ||
1712 | if (capable(CAP_SYS_ADMIN)) { | 1726 | if (capable(CAP_SYS_ADMIN)) { |
1713 | mutex_lock(&state->mutex); | 1727 | mutex_lock(&port->mutex); |
1714 | pm_state = state->pm_state; | 1728 | pm_state = state->pm_state; |
1715 | if (pm_state) | 1729 | if (pm_state) |
1716 | uart_change_pm(state, 0); | 1730 | uart_change_pm(state, 0); |
1717 | spin_lock_irq(&port->lock); | 1731 | spin_lock_irq(&uport->lock); |
1718 | status = port->ops->get_mctrl(port); | 1732 | status = uport->ops->get_mctrl(uport); |
1719 | spin_unlock_irq(&port->lock); | 1733 | spin_unlock_irq(&uport->lock); |
1720 | if (pm_state) | 1734 | if (pm_state) |
1721 | uart_change_pm(state, pm_state); | 1735 | uart_change_pm(state, pm_state); |
1722 | mutex_unlock(&state->mutex); | 1736 | mutex_unlock(&port->mutex); |
1723 | 1737 | ||
1724 | seq_printf(m, " tx:%d rx:%d", | 1738 | seq_printf(m, " tx:%d rx:%d", |
1725 | port->icount.tx, port->icount.rx); | 1739 | uport->icount.tx, uport->icount.rx); |
1726 | if (port->icount.frame) | 1740 | if (uport->icount.frame) |
1727 | seq_printf(m, " fe:%d", | 1741 | seq_printf(m, " fe:%d", |
1728 | port->icount.frame); | 1742 | uport->icount.frame); |
1729 | if (port->icount.parity) | 1743 | if (uport->icount.parity) |
1730 | seq_printf(m, " pe:%d", | 1744 | seq_printf(m, " pe:%d", |
1731 | port->icount.parity); | 1745 | uport->icount.parity); |
1732 | if (port->icount.brk) | 1746 | if (uport->icount.brk) |
1733 | seq_printf(m, " brk:%d", | 1747 | seq_printf(m, " brk:%d", |
1734 | port->icount.brk); | 1748 | uport->icount.brk); |
1735 | if (port->icount.overrun) | 1749 | if (uport->icount.overrun) |
1736 | seq_printf(m, " oe:%d", | 1750 | seq_printf(m, " oe:%d", |
1737 | port->icount.overrun); | 1751 | uport->icount.overrun); |
1738 | 1752 | ||
1739 | #define INFOBIT(bit, str) \ | 1753 | #define INFOBIT(bit, str) \ |
1740 | if (port->mctrl & (bit)) \ | 1754 | if (uport->mctrl & (bit)) \ |
1741 | strncat(stat_buf, (str), sizeof(stat_buf) - \ | 1755 | strncat(stat_buf, (str), sizeof(stat_buf) - \ |
1742 | strlen(stat_buf) - 2) | 1756 | strlen(stat_buf) - 2) |
1743 | #define STATBIT(bit, str) \ | 1757 | #define STATBIT(bit, str) \ |
@@ -1958,7 +1972,7 @@ EXPORT_SYMBOL_GPL(uart_set_options); | |||
1958 | 1972 | ||
1959 | static void uart_change_pm(struct uart_state *state, int pm_state) | 1973 | static void uart_change_pm(struct uart_state *state, int pm_state) |
1960 | { | 1974 | { |
1961 | struct uart_port *port = state->port; | 1975 | struct uart_port *port = state->uart_port; |
1962 | 1976 | ||
1963 | if (state->pm_state != pm_state) { | 1977 | if (state->pm_state != pm_state) { |
1964 | if (port->ops->pm) | 1978 | if (port->ops->pm) |
@@ -1982,132 +1996,138 @@ static int serial_match_port(struct device *dev, void *data) | |||
1982 | return dev->devt == devt; /* Actually, only one tty per port */ | 1996 | return dev->devt == devt; /* Actually, only one tty per port */ |
1983 | } | 1997 | } |
1984 | 1998 | ||
1985 | int uart_suspend_port(struct uart_driver *drv, struct uart_port *port) | 1999 | int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport) |
1986 | { | 2000 | { |
1987 | struct uart_state *state = drv->state + port->line; | 2001 | struct uart_state *state = drv->state + uport->line; |
2002 | struct tty_port *port = &state->port; | ||
1988 | struct device *tty_dev; | 2003 | struct device *tty_dev; |
1989 | struct uart_match match = {port, drv}; | 2004 | struct uart_match match = {uport, drv}; |
1990 | 2005 | ||
1991 | mutex_lock(&state->mutex); | 2006 | mutex_lock(&port->mutex); |
1992 | 2007 | ||
1993 | if (!console_suspend_enabled && uart_console(port)) { | 2008 | if (!console_suspend_enabled && uart_console(uport)) { |
1994 | /* we're going to avoid suspending serial console */ | 2009 | /* we're going to avoid suspending serial console */ |
1995 | mutex_unlock(&state->mutex); | 2010 | mutex_unlock(&port->mutex); |
1996 | return 0; | 2011 | return 0; |
1997 | } | 2012 | } |
1998 | 2013 | ||
1999 | tty_dev = device_find_child(port->dev, &match, serial_match_port); | 2014 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); |
2000 | if (device_may_wakeup(tty_dev)) { | 2015 | if (device_may_wakeup(tty_dev)) { |
2001 | enable_irq_wake(port->irq); | 2016 | enable_irq_wake(uport->irq); |
2002 | put_device(tty_dev); | 2017 | put_device(tty_dev); |
2003 | mutex_unlock(&state->mutex); | 2018 | mutex_unlock(&port->mutex); |
2004 | return 0; | 2019 | return 0; |
2005 | } | 2020 | } |
2006 | port->suspended = 1; | 2021 | uport->suspended = 1; |
2007 | 2022 | ||
2008 | if (state->info.flags & UIF_INITIALIZED) { | 2023 | if (port->flags & ASYNC_INITIALIZED) { |
2009 | const struct uart_ops *ops = port->ops; | 2024 | const struct uart_ops *ops = uport->ops; |
2010 | int tries; | 2025 | int tries; |
2011 | 2026 | ||
2012 | state->info.flags = (state->info.flags & ~UIF_INITIALIZED) | 2027 | set_bit(ASYNCB_SUSPENDED, &port->flags); |
2013 | | UIF_SUSPENDED; | 2028 | clear_bit(ASYNCB_INITIALIZED, &port->flags); |
2014 | 2029 | ||
2015 | spin_lock_irq(&port->lock); | 2030 | spin_lock_irq(&uport->lock); |
2016 | ops->stop_tx(port); | 2031 | ops->stop_tx(uport); |
2017 | ops->set_mctrl(port, 0); | 2032 | ops->set_mctrl(uport, 0); |
2018 | ops->stop_rx(port); | 2033 | ops->stop_rx(uport); |
2019 | spin_unlock_irq(&port->lock); | 2034 | spin_unlock_irq(&uport->lock); |
2020 | 2035 | ||
2021 | /* | 2036 | /* |
2022 | * Wait for the transmitter to empty. | 2037 | * Wait for the transmitter to empty. |
2023 | */ | 2038 | */ |
2024 | for (tries = 3; !ops->tx_empty(port) && tries; tries--) | 2039 | for (tries = 3; !ops->tx_empty(uport) && tries; tries--) |
2025 | msleep(10); | 2040 | msleep(10); |
2026 | if (!tries) | 2041 | if (!tries) |
2027 | printk(KERN_ERR "%s%s%s%d: Unable to drain " | 2042 | printk(KERN_ERR "%s%s%s%d: Unable to drain " |
2028 | "transmitter\n", | 2043 | "transmitter\n", |
2029 | port->dev ? dev_name(port->dev) : "", | 2044 | uport->dev ? dev_name(uport->dev) : "", |
2030 | port->dev ? ": " : "", | 2045 | uport->dev ? ": " : "", |
2031 | drv->dev_name, | 2046 | drv->dev_name, |
2032 | drv->tty_driver->name_base + port->line); | 2047 | drv->tty_driver->name_base + uport->line); |
2033 | 2048 | ||
2034 | ops->shutdown(port); | 2049 | ops->shutdown(uport); |
2035 | } | 2050 | } |
2036 | 2051 | ||
2037 | /* | 2052 | /* |
2038 | * Disable the console device before suspending. | 2053 | * Disable the console device before suspending. |
2039 | */ | 2054 | */ |
2040 | if (uart_console(port)) | 2055 | if (uart_console(uport)) |
2041 | console_stop(port->cons); | 2056 | console_stop(uport->cons); |
2042 | 2057 | ||
2043 | uart_change_pm(state, 3); | 2058 | uart_change_pm(state, 3); |
2044 | 2059 | ||
2045 | mutex_unlock(&state->mutex); | 2060 | mutex_unlock(&port->mutex); |
2046 | 2061 | ||
2047 | return 0; | 2062 | return 0; |
2048 | } | 2063 | } |
2049 | 2064 | ||
2050 | int uart_resume_port(struct uart_driver *drv, struct uart_port *port) | 2065 | int uart_resume_port(struct uart_driver *drv, struct uart_port *uport) |
2051 | { | 2066 | { |
2052 | struct uart_state *state = drv->state + port->line; | 2067 | struct uart_state *state = drv->state + uport->line; |
2068 | struct tty_port *port = &state->port; | ||
2053 | struct device *tty_dev; | 2069 | struct device *tty_dev; |
2054 | struct uart_match match = {port, drv}; | 2070 | struct uart_match match = {uport, drv}; |
2071 | struct ktermios termios; | ||
2055 | 2072 | ||
2056 | mutex_lock(&state->mutex); | 2073 | mutex_lock(&port->mutex); |
2057 | 2074 | ||
2058 | if (!console_suspend_enabled && uart_console(port)) { | 2075 | if (!console_suspend_enabled && uart_console(uport)) { |
2059 | /* no need to resume serial console, it wasn't suspended */ | 2076 | /* no need to resume serial console, it wasn't suspended */ |
2060 | mutex_unlock(&state->mutex); | 2077 | /* |
2078 | * First try to use the console cflag setting. | ||
2079 | */ | ||
2080 | memset(&termios, 0, sizeof(struct ktermios)); | ||
2081 | termios.c_cflag = uport->cons->cflag; | ||
2082 | /* | ||
2083 | * If that's unset, use the tty termios setting. | ||
2084 | */ | ||
2085 | if (termios.c_cflag == 0) | ||
2086 | termios = *state->port.tty->termios; | ||
2087 | else { | ||
2088 | termios.c_ispeed = termios.c_ospeed = | ||
2089 | tty_termios_input_baud_rate(&termios); | ||
2090 | termios.c_ispeed = termios.c_ospeed = | ||
2091 | tty_termios_baud_rate(&termios); | ||
2092 | } | ||
2093 | uport->ops->set_termios(uport, &termios, NULL); | ||
2094 | mutex_unlock(&port->mutex); | ||
2061 | return 0; | 2095 | return 0; |
2062 | } | 2096 | } |
2063 | 2097 | ||
2064 | tty_dev = device_find_child(port->dev, &match, serial_match_port); | 2098 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); |
2065 | if (!port->suspended && device_may_wakeup(tty_dev)) { | 2099 | if (!uport->suspended && device_may_wakeup(tty_dev)) { |
2066 | disable_irq_wake(port->irq); | 2100 | disable_irq_wake(uport->irq); |
2067 | mutex_unlock(&state->mutex); | 2101 | mutex_unlock(&port->mutex); |
2068 | return 0; | 2102 | return 0; |
2069 | } | 2103 | } |
2070 | port->suspended = 0; | 2104 | uport->suspended = 0; |
2071 | 2105 | ||
2072 | /* | 2106 | /* |
2073 | * Re-enable the console device after suspending. | 2107 | * Re-enable the console device after suspending. |
2074 | */ | 2108 | */ |
2075 | if (uart_console(port)) { | 2109 | if (uart_console(uport)) { |
2076 | struct ktermios termios; | ||
2077 | |||
2078 | /* | ||
2079 | * First try to use the console cflag setting. | ||
2080 | */ | ||
2081 | memset(&termios, 0, sizeof(struct ktermios)); | ||
2082 | termios.c_cflag = port->cons->cflag; | ||
2083 | |||
2084 | /* | ||
2085 | * If that's unset, use the tty termios setting. | ||
2086 | */ | ||
2087 | if (state->info.port.tty && termios.c_cflag == 0) | ||
2088 | termios = *state->info.port.tty->termios; | ||
2089 | |||
2090 | uart_change_pm(state, 0); | 2110 | uart_change_pm(state, 0); |
2091 | port->ops->set_termios(port, &termios, NULL); | 2111 | uport->ops->set_termios(uport, &termios, NULL); |
2092 | console_start(port->cons); | 2112 | console_start(uport->cons); |
2093 | } | 2113 | } |
2094 | 2114 | ||
2095 | if (state->info.flags & UIF_SUSPENDED) { | 2115 | if (port->flags & ASYNC_SUSPENDED) { |
2096 | const struct uart_ops *ops = port->ops; | 2116 | const struct uart_ops *ops = uport->ops; |
2097 | int ret; | 2117 | int ret; |
2098 | 2118 | ||
2099 | uart_change_pm(state, 0); | 2119 | uart_change_pm(state, 0); |
2100 | spin_lock_irq(&port->lock); | 2120 | spin_lock_irq(&uport->lock); |
2101 | ops->set_mctrl(port, 0); | 2121 | ops->set_mctrl(uport, 0); |
2102 | spin_unlock_irq(&port->lock); | 2122 | spin_unlock_irq(&uport->lock); |
2103 | ret = ops->startup(port); | 2123 | ret = ops->startup(uport); |
2104 | if (ret == 0) { | 2124 | if (ret == 0) { |
2105 | uart_change_speed(state, NULL); | 2125 | uart_change_speed(state, NULL); |
2106 | spin_lock_irq(&port->lock); | 2126 | spin_lock_irq(&uport->lock); |
2107 | ops->set_mctrl(port, port->mctrl); | 2127 | ops->set_mctrl(uport, uport->mctrl); |
2108 | ops->start_tx(port); | 2128 | ops->start_tx(uport); |
2109 | spin_unlock_irq(&port->lock); | 2129 | spin_unlock_irq(&uport->lock); |
2110 | state->info.flags |= UIF_INITIALIZED; | 2130 | set_bit(ASYNCB_INITIALIZED, &port->flags); |
2111 | } else { | 2131 | } else { |
2112 | /* | 2132 | /* |
2113 | * Failed to resume - maybe hardware went away? | 2133 | * Failed to resume - maybe hardware went away? |
@@ -2117,10 +2137,10 @@ int uart_resume_port(struct uart_driver *drv, struct uart_port *port) | |||
2117 | uart_shutdown(state); | 2137 | uart_shutdown(state); |
2118 | } | 2138 | } |
2119 | 2139 | ||
2120 | state->info.flags &= ~UIF_SUSPENDED; | 2140 | clear_bit(ASYNCB_SUSPENDED, &port->flags); |
2121 | } | 2141 | } |
2122 | 2142 | ||
2123 | mutex_unlock(&state->mutex); | 2143 | mutex_unlock(&port->mutex); |
2124 | 2144 | ||
2125 | return 0; | 2145 | return 0; |
2126 | } | 2146 | } |
@@ -2232,10 +2252,10 @@ static int uart_poll_init(struct tty_driver *driver, int line, char *options) | |||
2232 | int parity = 'n'; | 2252 | int parity = 'n'; |
2233 | int flow = 'n'; | 2253 | int flow = 'n'; |
2234 | 2254 | ||
2235 | if (!state || !state->port) | 2255 | if (!state || !state->uart_port) |
2236 | return -1; | 2256 | return -1; |
2237 | 2257 | ||
2238 | port = state->port; | 2258 | port = state->uart_port; |
2239 | if (!(port->ops->poll_get_char && port->ops->poll_put_char)) | 2259 | if (!(port->ops->poll_get_char && port->ops->poll_put_char)) |
2240 | return -1; | 2260 | return -1; |
2241 | 2261 | ||
@@ -2253,10 +2273,10 @@ static int uart_poll_get_char(struct tty_driver *driver, int line) | |||
2253 | struct uart_state *state = drv->state + line; | 2273 | struct uart_state *state = drv->state + line; |
2254 | struct uart_port *port; | 2274 | struct uart_port *port; |
2255 | 2275 | ||
2256 | if (!state || !state->port) | 2276 | if (!state || !state->uart_port) |
2257 | return -1; | 2277 | return -1; |
2258 | 2278 | ||
2259 | port = state->port; | 2279 | port = state->uart_port; |
2260 | return port->ops->poll_get_char(port); | 2280 | return port->ops->poll_get_char(port); |
2261 | } | 2281 | } |
2262 | 2282 | ||
@@ -2266,10 +2286,10 @@ static void uart_poll_put_char(struct tty_driver *driver, int line, char ch) | |||
2266 | struct uart_state *state = drv->state + line; | 2286 | struct uart_state *state = drv->state + line; |
2267 | struct uart_port *port; | 2287 | struct uart_port *port; |
2268 | 2288 | ||
2269 | if (!state || !state->port) | 2289 | if (!state || !state->uart_port) |
2270 | return; | 2290 | return; |
2271 | 2291 | ||
2272 | port = state->port; | 2292 | port = state->uart_port; |
2273 | port->ops->poll_put_char(port, ch); | 2293 | port->ops->poll_put_char(port, ch); |
2274 | } | 2294 | } |
2275 | #endif | 2295 | #endif |
@@ -2360,14 +2380,12 @@ int uart_register_driver(struct uart_driver *drv) | |||
2360 | */ | 2380 | */ |
2361 | for (i = 0; i < drv->nr; i++) { | 2381 | for (i = 0; i < drv->nr; i++) { |
2362 | struct uart_state *state = drv->state + i; | 2382 | struct uart_state *state = drv->state + i; |
2383 | struct tty_port *port = &state->port; | ||
2363 | 2384 | ||
2364 | state->close_delay = 500; /* .5 seconds */ | 2385 | tty_port_init(port); |
2365 | state->closing_wait = 30000; /* 30 seconds */ | 2386 | port->close_delay = 500; /* .5 seconds */ |
2366 | mutex_init(&state->mutex); | 2387 | port->closing_wait = 30000; /* 30 seconds */ |
2367 | 2388 | tasklet_init(&state->tlet, uart_tasklet_action, | |
2368 | tty_port_init(&state->info.port); | ||
2369 | init_waitqueue_head(&state->info.delta_msr_wait); | ||
2370 | tasklet_init(&state->info.tlet, uart_tasklet_action, | ||
2371 | (unsigned long)state); | 2389 | (unsigned long)state); |
2372 | } | 2390 | } |
2373 | 2391 | ||
@@ -2415,62 +2433,64 @@ struct tty_driver *uart_console_device(struct console *co, int *index) | |||
2415 | * level uart drivers to expand uart_port, rather than having yet | 2433 | * level uart drivers to expand uart_port, rather than having yet |
2416 | * more levels of structures. | 2434 | * more levels of structures. |
2417 | */ | 2435 | */ |
2418 | int uart_add_one_port(struct uart_driver *drv, struct uart_port *port) | 2436 | int uart_add_one_port(struct uart_driver *drv, struct uart_port *uport) |
2419 | { | 2437 | { |
2420 | struct uart_state *state; | 2438 | struct uart_state *state; |
2439 | struct tty_port *port; | ||
2421 | int ret = 0; | 2440 | int ret = 0; |
2422 | struct device *tty_dev; | 2441 | struct device *tty_dev; |
2423 | 2442 | ||
2424 | BUG_ON(in_interrupt()); | 2443 | BUG_ON(in_interrupt()); |
2425 | 2444 | ||
2426 | if (port->line >= drv->nr) | 2445 | if (uport->line >= drv->nr) |
2427 | return -EINVAL; | 2446 | return -EINVAL; |
2428 | 2447 | ||
2429 | state = drv->state + port->line; | 2448 | state = drv->state + uport->line; |
2449 | port = &state->port; | ||
2430 | 2450 | ||
2431 | mutex_lock(&port_mutex); | 2451 | mutex_lock(&port_mutex); |
2432 | mutex_lock(&state->mutex); | 2452 | mutex_lock(&port->mutex); |
2433 | if (state->port) { | 2453 | if (state->uart_port) { |
2434 | ret = -EINVAL; | 2454 | ret = -EINVAL; |
2435 | goto out; | 2455 | goto out; |
2436 | } | 2456 | } |
2437 | 2457 | ||
2438 | state->port = port; | 2458 | state->uart_port = uport; |
2439 | state->pm_state = -1; | 2459 | state->pm_state = -1; |
2440 | 2460 | ||
2441 | port->cons = drv->cons; | 2461 | uport->cons = drv->cons; |
2442 | port->info = &state->info; | 2462 | uport->state = state; |
2443 | 2463 | ||
2444 | /* | 2464 | /* |
2445 | * If this port is a console, then the spinlock is already | 2465 | * If this port is a console, then the spinlock is already |
2446 | * initialised. | 2466 | * initialised. |
2447 | */ | 2467 | */ |
2448 | if (!(uart_console(port) && (port->cons->flags & CON_ENABLED))) { | 2468 | if (!(uart_console(uport) && (uport->cons->flags & CON_ENABLED))) { |
2449 | spin_lock_init(&port->lock); | 2469 | spin_lock_init(&uport->lock); |
2450 | lockdep_set_class(&port->lock, &port_lock_key); | 2470 | lockdep_set_class(&uport->lock, &port_lock_key); |
2451 | } | 2471 | } |
2452 | 2472 | ||
2453 | uart_configure_port(drv, state, port); | 2473 | uart_configure_port(drv, state, uport); |
2454 | 2474 | ||
2455 | /* | 2475 | /* |
2456 | * Register the port whether it's detected or not. This allows | 2476 | * Register the port whether it's detected or not. This allows |
2457 | * setserial to be used to alter this ports parameters. | 2477 | * setserial to be used to alter this ports parameters. |
2458 | */ | 2478 | */ |
2459 | tty_dev = tty_register_device(drv->tty_driver, port->line, port->dev); | 2479 | tty_dev = tty_register_device(drv->tty_driver, uport->line, uport->dev); |
2460 | if (likely(!IS_ERR(tty_dev))) { | 2480 | if (likely(!IS_ERR(tty_dev))) { |
2461 | device_init_wakeup(tty_dev, 1); | 2481 | device_init_wakeup(tty_dev, 1); |
2462 | device_set_wakeup_enable(tty_dev, 0); | 2482 | device_set_wakeup_enable(tty_dev, 0); |
2463 | } else | 2483 | } else |
2464 | printk(KERN_ERR "Cannot register tty device on line %d\n", | 2484 | printk(KERN_ERR "Cannot register tty device on line %d\n", |
2465 | port->line); | 2485 | uport->line); |
2466 | 2486 | ||
2467 | /* | 2487 | /* |
2468 | * Ensure UPF_DEAD is not set. | 2488 | * Ensure UPF_DEAD is not set. |
2469 | */ | 2489 | */ |
2470 | port->flags &= ~UPF_DEAD; | 2490 | uport->flags &= ~UPF_DEAD; |
2471 | 2491 | ||
2472 | out: | 2492 | out: |
2473 | mutex_unlock(&state->mutex); | 2493 | mutex_unlock(&port->mutex); |
2474 | mutex_unlock(&port_mutex); | 2494 | mutex_unlock(&port_mutex); |
2475 | 2495 | ||
2476 | return ret; | 2496 | return ret; |
@@ -2485,16 +2505,16 @@ int uart_add_one_port(struct uart_driver *drv, struct uart_port *port) | |||
2485 | * core driver. No further calls will be made to the low-level code | 2505 | * core driver. No further calls will be made to the low-level code |
2486 | * for this port. | 2506 | * for this port. |
2487 | */ | 2507 | */ |
2488 | int uart_remove_one_port(struct uart_driver *drv, struct uart_port *port) | 2508 | int uart_remove_one_port(struct uart_driver *drv, struct uart_port *uport) |
2489 | { | 2509 | { |
2490 | struct uart_state *state = drv->state + port->line; | 2510 | struct uart_state *state = drv->state + uport->line; |
2491 | struct uart_info *info; | 2511 | struct tty_port *port = &state->port; |
2492 | 2512 | ||
2493 | BUG_ON(in_interrupt()); | 2513 | BUG_ON(in_interrupt()); |
2494 | 2514 | ||
2495 | if (state->port != port) | 2515 | if (state->uart_port != uport) |
2496 | printk(KERN_ALERT "Removing wrong port: %p != %p\n", | 2516 | printk(KERN_ALERT "Removing wrong port: %p != %p\n", |
2497 | state->port, port); | 2517 | state->uart_port, uport); |
2498 | 2518 | ||
2499 | mutex_lock(&port_mutex); | 2519 | mutex_lock(&port_mutex); |
2500 | 2520 | ||
@@ -2502,37 +2522,35 @@ int uart_remove_one_port(struct uart_driver *drv, struct uart_port *port) | |||
2502 | * Mark the port "dead" - this prevents any opens from | 2522 | * Mark the port "dead" - this prevents any opens from |
2503 | * succeeding while we shut down the port. | 2523 | * succeeding while we shut down the port. |
2504 | */ | 2524 | */ |
2505 | mutex_lock(&state->mutex); | 2525 | mutex_lock(&port->mutex); |
2506 | port->flags |= UPF_DEAD; | 2526 | uport->flags |= UPF_DEAD; |
2507 | mutex_unlock(&state->mutex); | 2527 | mutex_unlock(&port->mutex); |
2508 | 2528 | ||
2509 | /* | 2529 | /* |
2510 | * Remove the devices from the tty layer | 2530 | * Remove the devices from the tty layer |
2511 | */ | 2531 | */ |
2512 | tty_unregister_device(drv->tty_driver, port->line); | 2532 | tty_unregister_device(drv->tty_driver, uport->line); |
2513 | 2533 | ||
2514 | info = &state->info; | 2534 | if (port->tty) |
2515 | if (info && info->port.tty) | 2535 | tty_vhangup(port->tty); |
2516 | tty_vhangup(info->port.tty); | ||
2517 | 2536 | ||
2518 | /* | 2537 | /* |
2519 | * Free the port IO and memory resources, if any. | 2538 | * Free the port IO and memory resources, if any. |
2520 | */ | 2539 | */ |
2521 | if (port->type != PORT_UNKNOWN) | 2540 | if (uport->type != PORT_UNKNOWN) |
2522 | port->ops->release_port(port); | 2541 | uport->ops->release_port(uport); |
2523 | 2542 | ||
2524 | /* | 2543 | /* |
2525 | * Indicate that there isn't a port here anymore. | 2544 | * Indicate that there isn't a port here anymore. |
2526 | */ | 2545 | */ |
2527 | port->type = PORT_UNKNOWN; | 2546 | uport->type = PORT_UNKNOWN; |
2528 | 2547 | ||
2529 | /* | 2548 | /* |
2530 | * Kill the tasklet, and free resources. | 2549 | * Kill the tasklet, and free resources. |
2531 | */ | 2550 | */ |
2532 | if (info) | 2551 | tasklet_kill(&state->tlet); |
2533 | tasklet_kill(&info->tlet); | ||
2534 | 2552 | ||
2535 | state->port = NULL; | 2553 | state->uart_port = NULL; |
2536 | mutex_unlock(&port_mutex); | 2554 | mutex_unlock(&port_mutex); |
2537 | 2555 | ||
2538 | return 0; | 2556 | return 0; |
diff --git a/drivers/serial/serial_cs.c b/drivers/serial/serial_cs.c index ed4648b556c7..a3bb49031a7f 100644 --- a/drivers/serial/serial_cs.c +++ b/drivers/serial/serial_cs.c | |||
@@ -884,6 +884,7 @@ static struct pcmcia_device_id serial_ids[] = { | |||
884 | PCMCIA_DEVICE_CIS_MANF_CARD(0x0192, 0xa555, "SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- pre update */ | 884 | PCMCIA_DEVICE_CIS_MANF_CARD(0x0192, 0xa555, "SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- pre update */ |
885 | PCMCIA_DEVICE_CIS_MANF_CARD(0x013f, 0xa555, "SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- post update */ | 885 | PCMCIA_DEVICE_CIS_MANF_CARD(0x013f, 0xa555, "SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- post update */ |
886 | PCMCIA_DEVICE_CIS_PROD_ID12("MultiTech", "PCMCIA 56K DataFax", 0x842047ee, 0xc2efcf03, "cis/MT5634ZLX.cis"), | 886 | PCMCIA_DEVICE_CIS_PROD_ID12("MultiTech", "PCMCIA 56K DataFax", 0x842047ee, 0xc2efcf03, "cis/MT5634ZLX.cis"), |
887 | PCMCIA_DEVICE_CIS_PROD_ID12("ADVANTECH", "COMpad-32/85B-2", 0x96913a85, 0x27ab5437, "COMpad2.cis"), | ||
887 | PCMCIA_DEVICE_CIS_PROD_ID12("ADVANTECH", "COMpad-32/85B-4", 0x96913a85, 0xcec8f102, "COMpad4.cis"), | 888 | PCMCIA_DEVICE_CIS_PROD_ID12("ADVANTECH", "COMpad-32/85B-4", 0x96913a85, 0xcec8f102, "COMpad4.cis"), |
888 | PCMCIA_DEVICE_CIS_PROD_ID123("ADVANTECH", "COMpad-32/85", "1.0", 0x96913a85, 0x8fbe92ae, 0x0877b627, "COMpad2.cis"), | 889 | PCMCIA_DEVICE_CIS_PROD_ID123("ADVANTECH", "COMpad-32/85", "1.0", 0x96913a85, 0x8fbe92ae, 0x0877b627, "COMpad2.cis"), |
889 | PCMCIA_DEVICE_CIS_PROD_ID2("RS-COM 2P", 0xad20b156, "cis/RS-COM-2P.cis"), | 890 | PCMCIA_DEVICE_CIS_PROD_ID2("RS-COM 2P", 0xad20b156, "cis/RS-COM-2P.cis"), |
diff --git a/drivers/serial/serial_ks8695.c b/drivers/serial/serial_ks8695.c index 52db5cc3f900..2e71bbc04dac 100644 --- a/drivers/serial/serial_ks8695.c +++ b/drivers/serial/serial_ks8695.c | |||
@@ -154,7 +154,7 @@ static void ks8695uart_disable_ms(struct uart_port *port) | |||
154 | static irqreturn_t ks8695uart_rx_chars(int irq, void *dev_id) | 154 | static irqreturn_t ks8695uart_rx_chars(int irq, void *dev_id) |
155 | { | 155 | { |
156 | struct uart_port *port = dev_id; | 156 | struct uart_port *port = dev_id; |
157 | struct tty_struct *tty = port->info->port.tty; | 157 | struct tty_struct *tty = port->state->port.tty; |
158 | unsigned int status, ch, lsr, flg, max_count = 256; | 158 | unsigned int status, ch, lsr, flg, max_count = 256; |
159 | 159 | ||
160 | status = UART_GET_LSR(port); /* clears pending LSR interrupts */ | 160 | status = UART_GET_LSR(port); /* clears pending LSR interrupts */ |
@@ -210,7 +210,7 @@ ignore_char: | |||
210 | static irqreturn_t ks8695uart_tx_chars(int irq, void *dev_id) | 210 | static irqreturn_t ks8695uart_tx_chars(int irq, void *dev_id) |
211 | { | 211 | { |
212 | struct uart_port *port = dev_id; | 212 | struct uart_port *port = dev_id; |
213 | struct circ_buf *xmit = &port->info->xmit; | 213 | struct circ_buf *xmit = &port->state->xmit; |
214 | unsigned int count; | 214 | unsigned int count; |
215 | 215 | ||
216 | if (port->x_char) { | 216 | if (port->x_char) { |
@@ -266,7 +266,7 @@ static irqreturn_t ks8695uart_modem_status(int irq, void *dev_id) | |||
266 | if (status & URMS_URTERI) | 266 | if (status & URMS_URTERI) |
267 | port->icount.rng++; | 267 | port->icount.rng++; |
268 | 268 | ||
269 | wake_up_interruptible(&port->info->delta_msr_wait); | 269 | wake_up_interruptible(&port->state->port.delta_msr_wait); |
270 | 270 | ||
271 | return IRQ_HANDLED; | 271 | return IRQ_HANDLED; |
272 | } | 272 | } |
diff --git a/drivers/serial/serial_lh7a40x.c b/drivers/serial/serial_lh7a40x.c index a7bf024a8286..ea744707c4d6 100644 --- a/drivers/serial/serial_lh7a40x.c +++ b/drivers/serial/serial_lh7a40x.c | |||
@@ -138,7 +138,7 @@ static void lh7a40xuart_enable_ms (struct uart_port* port) | |||
138 | 138 | ||
139 | static void lh7a40xuart_rx_chars (struct uart_port* port) | 139 | static void lh7a40xuart_rx_chars (struct uart_port* port) |
140 | { | 140 | { |
141 | struct tty_struct* tty = port->info->port.tty; | 141 | struct tty_struct* tty = port->state->port.tty; |
142 | int cbRxMax = 256; /* (Gross) limit on receive */ | 142 | int cbRxMax = 256; /* (Gross) limit on receive */ |
143 | unsigned int data; /* Received data and status */ | 143 | unsigned int data; /* Received data and status */ |
144 | unsigned int flag; | 144 | unsigned int flag; |
@@ -184,7 +184,7 @@ static void lh7a40xuart_rx_chars (struct uart_port* port) | |||
184 | 184 | ||
185 | static void lh7a40xuart_tx_chars (struct uart_port* port) | 185 | static void lh7a40xuart_tx_chars (struct uart_port* port) |
186 | { | 186 | { |
187 | struct circ_buf* xmit = &port->info->xmit; | 187 | struct circ_buf* xmit = &port->state->xmit; |
188 | int cbTxMax = port->fifosize; | 188 | int cbTxMax = port->fifosize; |
189 | 189 | ||
190 | if (port->x_char) { | 190 | if (port->x_char) { |
@@ -241,7 +241,7 @@ static void lh7a40xuart_modem_status (struct uart_port* port) | |||
241 | if (delta & CTS) | 241 | if (delta & CTS) |
242 | uart_handle_cts_change (port, status & CTS); | 242 | uart_handle_cts_change (port, status & CTS); |
243 | 243 | ||
244 | wake_up_interruptible (&port->info->delta_msr_wait); | 244 | wake_up_interruptible (&port->state->port.delta_msr_wait); |
245 | } | 245 | } |
246 | 246 | ||
247 | static irqreturn_t lh7a40xuart_int (int irq, void* dev_id) | 247 | static irqreturn_t lh7a40xuart_int (int irq, void* dev_id) |
diff --git a/drivers/serial/serial_txx9.c b/drivers/serial/serial_txx9.c index 54dd16d66a4b..0f7cf4c453e6 100644 --- a/drivers/serial/serial_txx9.c +++ b/drivers/serial/serial_txx9.c | |||
@@ -272,7 +272,7 @@ static void serial_txx9_initialize(struct uart_port *port) | |||
272 | static inline void | 272 | static inline void |
273 | receive_chars(struct uart_txx9_port *up, unsigned int *status) | 273 | receive_chars(struct uart_txx9_port *up, unsigned int *status) |
274 | { | 274 | { |
275 | struct tty_struct *tty = up->port.info->port.tty; | 275 | struct tty_struct *tty = up->port.state->port.tty; |
276 | unsigned char ch; | 276 | unsigned char ch; |
277 | unsigned int disr = *status; | 277 | unsigned int disr = *status; |
278 | int max_count = 256; | 278 | int max_count = 256; |
@@ -348,7 +348,7 @@ receive_chars(struct uart_txx9_port *up, unsigned int *status) | |||
348 | 348 | ||
349 | static inline void transmit_chars(struct uart_txx9_port *up) | 349 | static inline void transmit_chars(struct uart_txx9_port *up) |
350 | { | 350 | { |
351 | struct circ_buf *xmit = &up->port.info->xmit; | 351 | struct circ_buf *xmit = &up->port.state->xmit; |
352 | int count; | 352 | int count; |
353 | 353 | ||
354 | if (up->port.x_char) { | 354 | if (up->port.x_char) { |
diff --git a/drivers/serial/sh-sci.c b/drivers/serial/sh-sci.c index 8e2feb563347..85119fb7cb50 100644 --- a/drivers/serial/sh-sci.c +++ b/drivers/serial/sh-sci.c | |||
@@ -272,7 +272,8 @@ static inline void sci_init_pins(struct uart_port *port, unsigned int cflag) | |||
272 | __raw_writew(data, PSCR); | 272 | __raw_writew(data, PSCR); |
273 | } | 273 | } |
274 | } | 274 | } |
275 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \ | 275 | #elif defined(CONFIG_CPU_SUBTYPE_SH7757) || \ |
276 | defined(CONFIG_CPU_SUBTYPE_SH7763) || \ | ||
276 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ | 277 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ |
277 | defined(CONFIG_CPU_SUBTYPE_SH7785) || \ | 278 | defined(CONFIG_CPU_SUBTYPE_SH7785) || \ |
278 | defined(CONFIG_CPU_SUBTYPE_SH7786) || \ | 279 | defined(CONFIG_CPU_SUBTYPE_SH7786) || \ |
@@ -360,7 +361,7 @@ static inline int sci_rxroom(struct uart_port *port) | |||
360 | 361 | ||
361 | static void sci_transmit_chars(struct uart_port *port) | 362 | static void sci_transmit_chars(struct uart_port *port) |
362 | { | 363 | { |
363 | struct circ_buf *xmit = &port->info->xmit; | 364 | struct circ_buf *xmit = &port->state->xmit; |
364 | unsigned int stopped = uart_tx_stopped(port); | 365 | unsigned int stopped = uart_tx_stopped(port); |
365 | unsigned short status; | 366 | unsigned short status; |
366 | unsigned short ctrl; | 367 | unsigned short ctrl; |
@@ -425,7 +426,7 @@ static void sci_transmit_chars(struct uart_port *port) | |||
425 | static inline void sci_receive_chars(struct uart_port *port) | 426 | static inline void sci_receive_chars(struct uart_port *port) |
426 | { | 427 | { |
427 | struct sci_port *sci_port = to_sci_port(port); | 428 | struct sci_port *sci_port = to_sci_port(port); |
428 | struct tty_struct *tty = port->info->port.tty; | 429 | struct tty_struct *tty = port->state->port.tty; |
429 | int i, count, copied = 0; | 430 | int i, count, copied = 0; |
430 | unsigned short status; | 431 | unsigned short status; |
431 | unsigned char flag; | 432 | unsigned char flag; |
@@ -545,7 +546,7 @@ static inline int sci_handle_errors(struct uart_port *port) | |||
545 | { | 546 | { |
546 | int copied = 0; | 547 | int copied = 0; |
547 | unsigned short status = sci_in(port, SCxSR); | 548 | unsigned short status = sci_in(port, SCxSR); |
548 | struct tty_struct *tty = port->info->port.tty; | 549 | struct tty_struct *tty = port->state->port.tty; |
549 | 550 | ||
550 | if (status & SCxSR_ORER(port)) { | 551 | if (status & SCxSR_ORER(port)) { |
551 | /* overrun error */ | 552 | /* overrun error */ |
@@ -599,7 +600,7 @@ static inline int sci_handle_errors(struct uart_port *port) | |||
599 | 600 | ||
600 | static inline int sci_handle_fifo_overrun(struct uart_port *port) | 601 | static inline int sci_handle_fifo_overrun(struct uart_port *port) |
601 | { | 602 | { |
602 | struct tty_struct *tty = port->info->port.tty; | 603 | struct tty_struct *tty = port->state->port.tty; |
603 | int copied = 0; | 604 | int copied = 0; |
604 | 605 | ||
605 | if (port->type != PORT_SCIF) | 606 | if (port->type != PORT_SCIF) |
@@ -622,7 +623,7 @@ static inline int sci_handle_breaks(struct uart_port *port) | |||
622 | { | 623 | { |
623 | int copied = 0; | 624 | int copied = 0; |
624 | unsigned short status = sci_in(port, SCxSR); | 625 | unsigned short status = sci_in(port, SCxSR); |
625 | struct tty_struct *tty = port->info->port.tty; | 626 | struct tty_struct *tty = port->state->port.tty; |
626 | struct sci_port *s = to_sci_port(port); | 627 | struct sci_port *s = to_sci_port(port); |
627 | 628 | ||
628 | if (uart_handle_break(port)) | 629 | if (uart_handle_break(port)) |
@@ -662,10 +663,11 @@ static irqreturn_t sci_rx_interrupt(int irq, void *port) | |||
662 | static irqreturn_t sci_tx_interrupt(int irq, void *ptr) | 663 | static irqreturn_t sci_tx_interrupt(int irq, void *ptr) |
663 | { | 664 | { |
664 | struct uart_port *port = ptr; | 665 | struct uart_port *port = ptr; |
666 | unsigned long flags; | ||
665 | 667 | ||
666 | spin_lock_irq(&port->lock); | 668 | spin_lock_irqsave(&port->lock, flags); |
667 | sci_transmit_chars(port); | 669 | sci_transmit_chars(port); |
668 | spin_unlock_irq(&port->lock); | 670 | spin_unlock_irqrestore(&port->lock, flags); |
669 | 671 | ||
670 | return IRQ_HANDLED; | 672 | return IRQ_HANDLED; |
671 | } | 673 | } |
diff --git a/drivers/serial/sh-sci.h b/drivers/serial/sh-sci.h index 38072c15b845..3e2fcf93b42e 100644 --- a/drivers/serial/sh-sci.h +++ b/drivers/serial/sh-sci.h | |||
@@ -112,6 +112,13 @@ | |||
112 | #elif defined(CONFIG_H8S2678) | 112 | #elif defined(CONFIG_H8S2678) |
113 | # define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ | 113 | # define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ |
114 | # define H8300_SCI_DR(ch) *(volatile char *)(P1DR + h8300_sci_pins[ch].port) | 114 | # define H8300_SCI_DR(ch) *(volatile char *)(P1DR + h8300_sci_pins[ch].port) |
115 | #elif defined(CONFIG_CPU_SUBTYPE_SH7757) | ||
116 | # define SCSPTR0 0xfe4b0020 | ||
117 | # define SCSPTR1 0xfe4b0020 | ||
118 | # define SCSPTR2 0xfe4b0020 | ||
119 | # define SCIF_ORER 0x0001 | ||
120 | # define SCSCR_INIT(port) 0x38 | ||
121 | # define SCIF_ONLY | ||
115 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) | 122 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) |
116 | # define SCSPTR0 0xffe00024 /* 16 bit SCIF */ | 123 | # define SCSPTR0 0xffe00024 /* 16 bit SCIF */ |
117 | # define SCSPTR1 0xffe08024 /* 16 bit SCIF */ | 124 | # define SCSPTR1 0xffe08024 /* 16 bit SCIF */ |
@@ -562,6 +569,16 @@ static inline int sci_rxd_in(struct uart_port *port) | |||
562 | return ctrl_inw(SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */ | 569 | return ctrl_inw(SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */ |
563 | return 1; | 570 | return 1; |
564 | } | 571 | } |
572 | #elif defined(CONFIG_CPU_SUBTYPE_SH7757) | ||
573 | static inline int sci_rxd_in(struct uart_port *port) | ||
574 | { | ||
575 | if (port->mapbase == 0xfe4b0000) | ||
576 | return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; | ||
577 | if (port->mapbase == 0xfe4c0000) | ||
578 | return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; | ||
579 | if (port->mapbase == 0xfe4d0000) | ||
580 | return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; | ||
581 | } | ||
565 | #elif defined(CONFIG_CPU_SUBTYPE_SH7760) | 582 | #elif defined(CONFIG_CPU_SUBTYPE_SH7760) |
566 | static inline int sci_rxd_in(struct uart_port *port) | 583 | static inline int sci_rxd_in(struct uart_port *port) |
567 | { | 584 | { |
diff --git a/drivers/serial/sn_console.c b/drivers/serial/sn_console.c index d5276c012f78..9794e0cd3dcc 100644 --- a/drivers/serial/sn_console.c +++ b/drivers/serial/sn_console.c | |||
@@ -469,9 +469,9 @@ sn_receive_chars(struct sn_cons_port *port, unsigned long flags) | |||
469 | return; | 469 | return; |
470 | } | 470 | } |
471 | 471 | ||
472 | if (port->sc_port.info) { | 472 | if (port->sc_port.state) { |
473 | /* The serial_core stuffs are initilized, use them */ | 473 | /* The serial_core stuffs are initilized, use them */ |
474 | tty = port->sc_port.info->port.tty; | 474 | tty = port->sc_port.state->port.tty; |
475 | } | 475 | } |
476 | else { | 476 | else { |
477 | /* Not registered yet - can't pass to tty layer. */ | 477 | /* Not registered yet - can't pass to tty layer. */ |
@@ -550,9 +550,9 @@ static void sn_transmit_chars(struct sn_cons_port *port, int raw) | |||
550 | 550 | ||
551 | BUG_ON(!port->sc_is_asynch); | 551 | BUG_ON(!port->sc_is_asynch); |
552 | 552 | ||
553 | if (port->sc_port.info) { | 553 | if (port->sc_port.state) { |
554 | /* We're initilized, using serial core infrastructure */ | 554 | /* We're initilized, using serial core infrastructure */ |
555 | xmit = &port->sc_port.info->xmit; | 555 | xmit = &port->sc_port.state->xmit; |
556 | } else { | 556 | } else { |
557 | /* Probably sn_sal_switch_to_asynch has been run but serial core isn't | 557 | /* Probably sn_sal_switch_to_asynch has been run but serial core isn't |
558 | * initilized yet. Just return. Writes are going through | 558 | * initilized yet. Just return. Writes are going through |
@@ -927,7 +927,7 @@ sn_sal_console_write(struct console *co, const char *s, unsigned count) | |||
927 | /* We can't look at the xmit buffer if we're not registered with serial core | 927 | /* We can't look at the xmit buffer if we're not registered with serial core |
928 | * yet. So only do the fancy recovery after registering | 928 | * yet. So only do the fancy recovery after registering |
929 | */ | 929 | */ |
930 | if (!port->sc_port.info) { | 930 | if (!port->sc_port.state) { |
931 | /* Not yet registered with serial core - simple case */ | 931 | /* Not yet registered with serial core - simple case */ |
932 | puts_raw_fixed(port->sc_ops->sal_puts_raw, s, count); | 932 | puts_raw_fixed(port->sc_ops->sal_puts_raw, s, count); |
933 | return; | 933 | return; |
@@ -936,8 +936,8 @@ sn_sal_console_write(struct console *co, const char *s, unsigned count) | |||
936 | /* somebody really wants this output, might be an | 936 | /* somebody really wants this output, might be an |
937 | * oops, kdb, panic, etc. make sure they get it. */ | 937 | * oops, kdb, panic, etc. make sure they get it. */ |
938 | if (spin_is_locked(&port->sc_port.lock)) { | 938 | if (spin_is_locked(&port->sc_port.lock)) { |
939 | int lhead = port->sc_port.info->xmit.head; | 939 | int lhead = port->sc_port.state->xmit.head; |
940 | int ltail = port->sc_port.info->xmit.tail; | 940 | int ltail = port->sc_port.state->xmit.tail; |
941 | int counter, got_lock = 0; | 941 | int counter, got_lock = 0; |
942 | 942 | ||
943 | /* | 943 | /* |
@@ -962,13 +962,13 @@ sn_sal_console_write(struct console *co, const char *s, unsigned count) | |||
962 | break; | 962 | break; |
963 | } else { | 963 | } else { |
964 | /* still locked */ | 964 | /* still locked */ |
965 | if ((lhead != port->sc_port.info->xmit.head) | 965 | if ((lhead != port->sc_port.state->xmit.head) |
966 | || (ltail != | 966 | || (ltail != |
967 | port->sc_port.info->xmit.tail)) { | 967 | port->sc_port.state->xmit.tail)) { |
968 | lhead = | 968 | lhead = |
969 | port->sc_port.info->xmit.head; | 969 | port->sc_port.state->xmit.head; |
970 | ltail = | 970 | ltail = |
971 | port->sc_port.info->xmit.tail; | 971 | port->sc_port.state->xmit.tail; |
972 | counter = 0; | 972 | counter = 0; |
973 | } | 973 | } |
974 | } | 974 | } |
diff --git a/drivers/serial/sunhv.c b/drivers/serial/sunhv.c index 1df5325faab2..d548652dee50 100644 --- a/drivers/serial/sunhv.c +++ b/drivers/serial/sunhv.c | |||
@@ -184,8 +184,8 @@ static struct tty_struct *receive_chars(struct uart_port *port) | |||
184 | { | 184 | { |
185 | struct tty_struct *tty = NULL; | 185 | struct tty_struct *tty = NULL; |
186 | 186 | ||
187 | if (port->info != NULL) /* Unopened serial console */ | 187 | if (port->state != NULL) /* Unopened serial console */ |
188 | tty = port->info->port.tty; | 188 | tty = port->state->port.tty; |
189 | 189 | ||
190 | if (sunhv_ops->receive_chars(port, tty)) | 190 | if (sunhv_ops->receive_chars(port, tty)) |
191 | sun_do_break(); | 191 | sun_do_break(); |
@@ -197,10 +197,10 @@ static void transmit_chars(struct uart_port *port) | |||
197 | { | 197 | { |
198 | struct circ_buf *xmit; | 198 | struct circ_buf *xmit; |
199 | 199 | ||
200 | if (!port->info) | 200 | if (!port->state) |
201 | return; | 201 | return; |
202 | 202 | ||
203 | xmit = &port->info->xmit; | 203 | xmit = &port->state->xmit; |
204 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) | 204 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) |
205 | return; | 205 | return; |
206 | 206 | ||
diff --git a/drivers/serial/sunsab.c b/drivers/serial/sunsab.c index 0355efe115d9..d1ad34128635 100644 --- a/drivers/serial/sunsab.c +++ b/drivers/serial/sunsab.c | |||
@@ -117,8 +117,8 @@ receive_chars(struct uart_sunsab_port *up, | |||
117 | int count = 0; | 117 | int count = 0; |
118 | int i; | 118 | int i; |
119 | 119 | ||
120 | if (up->port.info != NULL) /* Unopened serial console */ | 120 | if (up->port.state != NULL) /* Unopened serial console */ |
121 | tty = up->port.info->port.tty; | 121 | tty = up->port.state->port.tty; |
122 | 122 | ||
123 | /* Read number of BYTES (Character + Status) available. */ | 123 | /* Read number of BYTES (Character + Status) available. */ |
124 | if (stat->sreg.isr0 & SAB82532_ISR0_RPF) { | 124 | if (stat->sreg.isr0 & SAB82532_ISR0_RPF) { |
@@ -229,7 +229,7 @@ static void sunsab_tx_idle(struct uart_sunsab_port *); | |||
229 | static void transmit_chars(struct uart_sunsab_port *up, | 229 | static void transmit_chars(struct uart_sunsab_port *up, |
230 | union sab82532_irq_status *stat) | 230 | union sab82532_irq_status *stat) |
231 | { | 231 | { |
232 | struct circ_buf *xmit = &up->port.info->xmit; | 232 | struct circ_buf *xmit = &up->port.state->xmit; |
233 | int i; | 233 | int i; |
234 | 234 | ||
235 | if (stat->sreg.isr1 & SAB82532_ISR1_ALLS) { | 235 | if (stat->sreg.isr1 & SAB82532_ISR1_ALLS) { |
@@ -297,7 +297,7 @@ static void check_status(struct uart_sunsab_port *up, | |||
297 | up->port.icount.dsr++; | 297 | up->port.icount.dsr++; |
298 | } | 298 | } |
299 | 299 | ||
300 | wake_up_interruptible(&up->port.info->delta_msr_wait); | 300 | wake_up_interruptible(&up->port.state->port.delta_msr_wait); |
301 | } | 301 | } |
302 | 302 | ||
303 | static irqreturn_t sunsab_interrupt(int irq, void *dev_id) | 303 | static irqreturn_t sunsab_interrupt(int irq, void *dev_id) |
@@ -429,7 +429,7 @@ static void sunsab_tx_idle(struct uart_sunsab_port *up) | |||
429 | static void sunsab_start_tx(struct uart_port *port) | 429 | static void sunsab_start_tx(struct uart_port *port) |
430 | { | 430 | { |
431 | struct uart_sunsab_port *up = (struct uart_sunsab_port *) port; | 431 | struct uart_sunsab_port *up = (struct uart_sunsab_port *) port; |
432 | struct circ_buf *xmit = &up->port.info->xmit; | 432 | struct circ_buf *xmit = &up->port.state->xmit; |
433 | int i; | 433 | int i; |
434 | 434 | ||
435 | up->interrupt_mask1 &= ~(SAB82532_IMR1_ALLS|SAB82532_IMR1_XPR); | 435 | up->interrupt_mask1 &= ~(SAB82532_IMR1_ALLS|SAB82532_IMR1_XPR); |
diff --git a/drivers/serial/sunsu.c b/drivers/serial/sunsu.c index 47c6837850b1..68d262b15749 100644 --- a/drivers/serial/sunsu.c +++ b/drivers/serial/sunsu.c | |||
@@ -311,7 +311,7 @@ static void sunsu_enable_ms(struct uart_port *port) | |||
311 | static struct tty_struct * | 311 | static struct tty_struct * |
312 | receive_chars(struct uart_sunsu_port *up, unsigned char *status) | 312 | receive_chars(struct uart_sunsu_port *up, unsigned char *status) |
313 | { | 313 | { |
314 | struct tty_struct *tty = up->port.info->port.tty; | 314 | struct tty_struct *tty = up->port.state->port.tty; |
315 | unsigned char ch, flag; | 315 | unsigned char ch, flag; |
316 | int max_count = 256; | 316 | int max_count = 256; |
317 | int saw_console_brk = 0; | 317 | int saw_console_brk = 0; |
@@ -389,7 +389,7 @@ receive_chars(struct uart_sunsu_port *up, unsigned char *status) | |||
389 | 389 | ||
390 | static void transmit_chars(struct uart_sunsu_port *up) | 390 | static void transmit_chars(struct uart_sunsu_port *up) |
391 | { | 391 | { |
392 | struct circ_buf *xmit = &up->port.info->xmit; | 392 | struct circ_buf *xmit = &up->port.state->xmit; |
393 | int count; | 393 | int count; |
394 | 394 | ||
395 | if (up->port.x_char) { | 395 | if (up->port.x_char) { |
@@ -441,7 +441,7 @@ static void check_modem_status(struct uart_sunsu_port *up) | |||
441 | if (status & UART_MSR_DCTS) | 441 | if (status & UART_MSR_DCTS) |
442 | uart_handle_cts_change(&up->port, status & UART_MSR_CTS); | 442 | uart_handle_cts_change(&up->port, status & UART_MSR_CTS); |
443 | 443 | ||
444 | wake_up_interruptible(&up->port.info->delta_msr_wait); | 444 | wake_up_interruptible(&up->port.state->port.delta_msr_wait); |
445 | } | 445 | } |
446 | 446 | ||
447 | static irqreturn_t sunsu_serial_interrupt(int irq, void *dev_id) | 447 | static irqreturn_t sunsu_serial_interrupt(int irq, void *dev_id) |
diff --git a/drivers/serial/sunzilog.c b/drivers/serial/sunzilog.c index e09d3cebb4fb..ef693ae22e7f 100644 --- a/drivers/serial/sunzilog.c +++ b/drivers/serial/sunzilog.c | |||
@@ -328,9 +328,9 @@ sunzilog_receive_chars(struct uart_sunzilog_port *up, | |||
328 | unsigned char ch, r1, flag; | 328 | unsigned char ch, r1, flag; |
329 | 329 | ||
330 | tty = NULL; | 330 | tty = NULL; |
331 | if (up->port.info != NULL && /* Unopened serial console */ | 331 | if (up->port.state != NULL && /* Unopened serial console */ |
332 | up->port.info->port.tty != NULL) /* Keyboard || mouse */ | 332 | up->port.state->port.tty != NULL) /* Keyboard || mouse */ |
333 | tty = up->port.info->port.tty; | 333 | tty = up->port.state->port.tty; |
334 | 334 | ||
335 | for (;;) { | 335 | for (;;) { |
336 | 336 | ||
@@ -451,7 +451,7 @@ static void sunzilog_status_handle(struct uart_sunzilog_port *up, | |||
451 | uart_handle_cts_change(&up->port, | 451 | uart_handle_cts_change(&up->port, |
452 | (status & CTS)); | 452 | (status & CTS)); |
453 | 453 | ||
454 | wake_up_interruptible(&up->port.info->delta_msr_wait); | 454 | wake_up_interruptible(&up->port.state->port.delta_msr_wait); |
455 | } | 455 | } |
456 | 456 | ||
457 | up->prev_status = status; | 457 | up->prev_status = status; |
@@ -501,9 +501,9 @@ static void sunzilog_transmit_chars(struct uart_sunzilog_port *up, | |||
501 | return; | 501 | return; |
502 | } | 502 | } |
503 | 503 | ||
504 | if (up->port.info == NULL) | 504 | if (up->port.state == NULL) |
505 | goto ack_tx_int; | 505 | goto ack_tx_int; |
506 | xmit = &up->port.info->xmit; | 506 | xmit = &up->port.state->xmit; |
507 | if (uart_circ_empty(xmit)) | 507 | if (uart_circ_empty(xmit)) |
508 | goto ack_tx_int; | 508 | goto ack_tx_int; |
509 | 509 | ||
@@ -705,7 +705,7 @@ static void sunzilog_start_tx(struct uart_port *port) | |||
705 | port->icount.tx++; | 705 | port->icount.tx++; |
706 | port->x_char = 0; | 706 | port->x_char = 0; |
707 | } else { | 707 | } else { |
708 | struct circ_buf *xmit = &port->info->xmit; | 708 | struct circ_buf *xmit = &port->state->xmit; |
709 | 709 | ||
710 | writeb(xmit->buf[xmit->tail], &channel->data); | 710 | writeb(xmit->buf[xmit->tail], &channel->data); |
711 | ZSDELAY(); | 711 | ZSDELAY(); |
diff --git a/drivers/serial/timbuart.c b/drivers/serial/timbuart.c index 063a313b755c..34b31da01d09 100644 --- a/drivers/serial/timbuart.c +++ b/drivers/serial/timbuart.c | |||
@@ -77,7 +77,7 @@ static void timbuart_flush_buffer(struct uart_port *port) | |||
77 | 77 | ||
78 | static void timbuart_rx_chars(struct uart_port *port) | 78 | static void timbuart_rx_chars(struct uart_port *port) |
79 | { | 79 | { |
80 | struct tty_struct *tty = port->info->port.tty; | 80 | struct tty_struct *tty = port->state->port.tty; |
81 | 81 | ||
82 | while (ioread32(port->membase + TIMBUART_ISR) & RXDP) { | 82 | while (ioread32(port->membase + TIMBUART_ISR) & RXDP) { |
83 | u8 ch = ioread8(port->membase + TIMBUART_RXFIFO); | 83 | u8 ch = ioread8(port->membase + TIMBUART_RXFIFO); |
@@ -86,7 +86,7 @@ static void timbuart_rx_chars(struct uart_port *port) | |||
86 | } | 86 | } |
87 | 87 | ||
88 | spin_unlock(&port->lock); | 88 | spin_unlock(&port->lock); |
89 | tty_flip_buffer_push(port->info->port.tty); | 89 | tty_flip_buffer_push(port->state->port.tty); |
90 | spin_lock(&port->lock); | 90 | spin_lock(&port->lock); |
91 | 91 | ||
92 | dev_dbg(port->dev, "%s - total read %d bytes\n", | 92 | dev_dbg(port->dev, "%s - total read %d bytes\n", |
@@ -95,7 +95,7 @@ static void timbuart_rx_chars(struct uart_port *port) | |||
95 | 95 | ||
96 | static void timbuart_tx_chars(struct uart_port *port) | 96 | static void timbuart_tx_chars(struct uart_port *port) |
97 | { | 97 | { |
98 | struct circ_buf *xmit = &port->info->xmit; | 98 | struct circ_buf *xmit = &port->state->xmit; |
99 | 99 | ||
100 | while (!(ioread32(port->membase + TIMBUART_ISR) & TXBF) && | 100 | while (!(ioread32(port->membase + TIMBUART_ISR) & TXBF) && |
101 | !uart_circ_empty(xmit)) { | 101 | !uart_circ_empty(xmit)) { |
@@ -118,7 +118,7 @@ static void timbuart_handle_tx_port(struct uart_port *port, u32 isr, u32 *ier) | |||
118 | { | 118 | { |
119 | struct timbuart_port *uart = | 119 | struct timbuart_port *uart = |
120 | container_of(port, struct timbuart_port, port); | 120 | container_of(port, struct timbuart_port, port); |
121 | struct circ_buf *xmit = &port->info->xmit; | 121 | struct circ_buf *xmit = &port->state->xmit; |
122 | 122 | ||
123 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) | 123 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) |
124 | return; | 124 | return; |
@@ -231,7 +231,7 @@ static void timbuart_mctrl_check(struct uart_port *port, u32 isr, u32 *ier) | |||
231 | iowrite32(CTS_DELTA, port->membase + TIMBUART_ISR); | 231 | iowrite32(CTS_DELTA, port->membase + TIMBUART_ISR); |
232 | cts = timbuart_get_mctrl(port); | 232 | cts = timbuart_get_mctrl(port); |
233 | uart_handle_cts_change(port, cts & TIOCM_CTS); | 233 | uart_handle_cts_change(port, cts & TIOCM_CTS); |
234 | wake_up_interruptible(&port->info->delta_msr_wait); | 234 | wake_up_interruptible(&port->state->port.delta_msr_wait); |
235 | } | 235 | } |
236 | 236 | ||
237 | *ier |= CTS_DELTA; | 237 | *ier |= CTS_DELTA; |
diff --git a/drivers/serial/uartlite.c b/drivers/serial/uartlite.c index 3317148a4b93..377f2712289e 100644 --- a/drivers/serial/uartlite.c +++ b/drivers/serial/uartlite.c | |||
@@ -75,7 +75,7 @@ static struct uart_port ulite_ports[ULITE_NR_UARTS]; | |||
75 | 75 | ||
76 | static int ulite_receive(struct uart_port *port, int stat) | 76 | static int ulite_receive(struct uart_port *port, int stat) |
77 | { | 77 | { |
78 | struct tty_struct *tty = port->info->port.tty; | 78 | struct tty_struct *tty = port->state->port.tty; |
79 | unsigned char ch = 0; | 79 | unsigned char ch = 0; |
80 | char flag = TTY_NORMAL; | 80 | char flag = TTY_NORMAL; |
81 | 81 | ||
@@ -125,7 +125,7 @@ static int ulite_receive(struct uart_port *port, int stat) | |||
125 | 125 | ||
126 | static int ulite_transmit(struct uart_port *port, int stat) | 126 | static int ulite_transmit(struct uart_port *port, int stat) |
127 | { | 127 | { |
128 | struct circ_buf *xmit = &port->info->xmit; | 128 | struct circ_buf *xmit = &port->state->xmit; |
129 | 129 | ||
130 | if (stat & ULITE_STATUS_TXFULL) | 130 | if (stat & ULITE_STATUS_TXFULL) |
131 | return 0; | 131 | return 0; |
@@ -154,17 +154,22 @@ static int ulite_transmit(struct uart_port *port, int stat) | |||
154 | static irqreturn_t ulite_isr(int irq, void *dev_id) | 154 | static irqreturn_t ulite_isr(int irq, void *dev_id) |
155 | { | 155 | { |
156 | struct uart_port *port = dev_id; | 156 | struct uart_port *port = dev_id; |
157 | int busy; | 157 | int busy, n = 0; |
158 | 158 | ||
159 | do { | 159 | do { |
160 | int stat = readb(port->membase + ULITE_STATUS); | 160 | int stat = readb(port->membase + ULITE_STATUS); |
161 | busy = ulite_receive(port, stat); | 161 | busy = ulite_receive(port, stat); |
162 | busy |= ulite_transmit(port, stat); | 162 | busy |= ulite_transmit(port, stat); |
163 | n++; | ||
163 | } while (busy); | 164 | } while (busy); |
164 | 165 | ||
165 | tty_flip_buffer_push(port->info->port.tty); | 166 | /* work done? */ |
166 | 167 | if (n > 1) { | |
167 | return IRQ_HANDLED; | 168 | tty_flip_buffer_push(port->state->port.tty); |
169 | return IRQ_HANDLED; | ||
170 | } else { | ||
171 | return IRQ_NONE; | ||
172 | } | ||
168 | } | 173 | } |
169 | 174 | ||
170 | static unsigned int ulite_tx_empty(struct uart_port *port) | 175 | static unsigned int ulite_tx_empty(struct uart_port *port) |
@@ -221,7 +226,7 @@ static int ulite_startup(struct uart_port *port) | |||
221 | int ret; | 226 | int ret; |
222 | 227 | ||
223 | ret = request_irq(port->irq, ulite_isr, | 228 | ret = request_irq(port->irq, ulite_isr, |
224 | IRQF_DISABLED | IRQF_SAMPLE_RANDOM, "uartlite", port); | 229 | IRQF_SHARED | IRQF_SAMPLE_RANDOM, "uartlite", port); |
225 | if (ret) | 230 | if (ret) |
226 | return ret; | 231 | return ret; |
227 | 232 | ||
diff --git a/drivers/serial/ucc_uart.c b/drivers/serial/ucc_uart.c index e945e780b5c9..0c08f286a2ef 100644 --- a/drivers/serial/ucc_uart.c +++ b/drivers/serial/ucc_uart.c | |||
@@ -327,7 +327,7 @@ static int qe_uart_tx_pump(struct uart_qe_port *qe_port) | |||
327 | unsigned char *p; | 327 | unsigned char *p; |
328 | unsigned int count; | 328 | unsigned int count; |
329 | struct uart_port *port = &qe_port->port; | 329 | struct uart_port *port = &qe_port->port; |
330 | struct circ_buf *xmit = &port->info->xmit; | 330 | struct circ_buf *xmit = &port->state->xmit; |
331 | 331 | ||
332 | bdp = qe_port->rx_cur; | 332 | bdp = qe_port->rx_cur; |
333 | 333 | ||
@@ -466,7 +466,7 @@ static void qe_uart_int_rx(struct uart_qe_port *qe_port) | |||
466 | int i; | 466 | int i; |
467 | unsigned char ch, *cp; | 467 | unsigned char ch, *cp; |
468 | struct uart_port *port = &qe_port->port; | 468 | struct uart_port *port = &qe_port->port; |
469 | struct tty_struct *tty = port->info->port.tty; | 469 | struct tty_struct *tty = port->state->port.tty; |
470 | struct qe_bd *bdp; | 470 | struct qe_bd *bdp; |
471 | u16 status; | 471 | u16 status; |
472 | unsigned int flg; | 472 | unsigned int flg; |
diff --git a/drivers/serial/vr41xx_siu.c b/drivers/serial/vr41xx_siu.c index dac550e57c29..3beb6ab4fa68 100644 --- a/drivers/serial/vr41xx_siu.c +++ b/drivers/serial/vr41xx_siu.c | |||
@@ -318,7 +318,7 @@ static inline void receive_chars(struct uart_port *port, uint8_t *status) | |||
318 | char flag; | 318 | char flag; |
319 | int max_count = RX_MAX_COUNT; | 319 | int max_count = RX_MAX_COUNT; |
320 | 320 | ||
321 | tty = port->info->port.tty; | 321 | tty = port->state->port.tty; |
322 | lsr = *status; | 322 | lsr = *status; |
323 | 323 | ||
324 | do { | 324 | do { |
@@ -386,7 +386,7 @@ static inline void check_modem_status(struct uart_port *port) | |||
386 | if (msr & UART_MSR_DCTS) | 386 | if (msr & UART_MSR_DCTS) |
387 | uart_handle_cts_change(port, msr & UART_MSR_CTS); | 387 | uart_handle_cts_change(port, msr & UART_MSR_CTS); |
388 | 388 | ||
389 | wake_up_interruptible(&port->info->delta_msr_wait); | 389 | wake_up_interruptible(&port->state->port.delta_msr_wait); |
390 | } | 390 | } |
391 | 391 | ||
392 | static inline void transmit_chars(struct uart_port *port) | 392 | static inline void transmit_chars(struct uart_port *port) |
@@ -394,7 +394,7 @@ static inline void transmit_chars(struct uart_port *port) | |||
394 | struct circ_buf *xmit; | 394 | struct circ_buf *xmit; |
395 | int max_count = TX_MAX_COUNT; | 395 | int max_count = TX_MAX_COUNT; |
396 | 396 | ||
397 | xmit = &port->info->xmit; | 397 | xmit = &port->state->xmit; |
398 | 398 | ||
399 | if (port->x_char) { | 399 | if (port->x_char) { |
400 | siu_write(port, UART_TX, port->x_char); | 400 | siu_write(port, UART_TX, port->x_char); |
diff --git a/drivers/serial/zs.c b/drivers/serial/zs.c index d8c2809b1ab6..1a7fd3e70315 100644 --- a/drivers/serial/zs.c +++ b/drivers/serial/zs.c | |||
@@ -602,12 +602,12 @@ static void zs_receive_chars(struct zs_port *zport) | |||
602 | uart_insert_char(uport, status, Rx_OVR, ch, flag); | 602 | uart_insert_char(uport, status, Rx_OVR, ch, flag); |
603 | } | 603 | } |
604 | 604 | ||
605 | tty_flip_buffer_push(uport->info->port.tty); | 605 | tty_flip_buffer_push(uport->state->port.tty); |
606 | } | 606 | } |
607 | 607 | ||
608 | static void zs_raw_transmit_chars(struct zs_port *zport) | 608 | static void zs_raw_transmit_chars(struct zs_port *zport) |
609 | { | 609 | { |
610 | struct circ_buf *xmit = &zport->port.info->xmit; | 610 | struct circ_buf *xmit = &zport->port.state->xmit; |
611 | 611 | ||
612 | /* XON/XOFF chars. */ | 612 | /* XON/XOFF chars. */ |
613 | if (zport->port.x_char) { | 613 | if (zport->port.x_char) { |
@@ -686,7 +686,7 @@ static void zs_status_handle(struct zs_port *zport, struct zs_port *zport_a) | |||
686 | uport->icount.rng++; | 686 | uport->icount.rng++; |
687 | 687 | ||
688 | if (delta) | 688 | if (delta) |
689 | wake_up_interruptible(&uport->info->delta_msr_wait); | 689 | wake_up_interruptible(&uport->state->port.delta_msr_wait); |
690 | 690 | ||
691 | spin_lock(&scc->zlock); | 691 | spin_lock(&scc->zlock); |
692 | } | 692 | } |
diff --git a/drivers/sh/intc.c b/drivers/sh/intc.c index 3dd231a643b5..559b5fe9dc0f 100644 --- a/drivers/sh/intc.c +++ b/drivers/sh/intc.c | |||
@@ -77,7 +77,7 @@ static unsigned long ack_handle[NR_IRQS]; | |||
77 | static inline struct intc_desc_int *get_intc_desc(unsigned int irq) | 77 | static inline struct intc_desc_int *get_intc_desc(unsigned int irq) |
78 | { | 78 | { |
79 | struct irq_chip *chip = get_irq_chip(irq); | 79 | struct irq_chip *chip = get_irq_chip(irq); |
80 | return (void *)((char *)chip - offsetof(struct intc_desc_int, chip)); | 80 | return container_of(chip, struct intc_desc_int, chip); |
81 | } | 81 | } |
82 | 82 | ||
83 | static inline unsigned int set_field(unsigned int value, | 83 | static inline unsigned int set_field(unsigned int value, |
@@ -95,16 +95,19 @@ static inline unsigned int set_field(unsigned int value, | |||
95 | static void write_8(unsigned long addr, unsigned long h, unsigned long data) | 95 | static void write_8(unsigned long addr, unsigned long h, unsigned long data) |
96 | { | 96 | { |
97 | __raw_writeb(set_field(0, data, h), addr); | 97 | __raw_writeb(set_field(0, data, h), addr); |
98 | (void)__raw_readb(addr); /* Defeat write posting */ | ||
98 | } | 99 | } |
99 | 100 | ||
100 | static void write_16(unsigned long addr, unsigned long h, unsigned long data) | 101 | static void write_16(unsigned long addr, unsigned long h, unsigned long data) |
101 | { | 102 | { |
102 | __raw_writew(set_field(0, data, h), addr); | 103 | __raw_writew(set_field(0, data, h), addr); |
104 | (void)__raw_readw(addr); /* Defeat write posting */ | ||
103 | } | 105 | } |
104 | 106 | ||
105 | static void write_32(unsigned long addr, unsigned long h, unsigned long data) | 107 | static void write_32(unsigned long addr, unsigned long h, unsigned long data) |
106 | { | 108 | { |
107 | __raw_writel(set_field(0, data, h), addr); | 109 | __raw_writel(set_field(0, data, h), addr); |
110 | (void)__raw_readl(addr); /* Defeat write posting */ | ||
108 | } | 111 | } |
109 | 112 | ||
110 | static void modify_8(unsigned long addr, unsigned long h, unsigned long data) | 113 | static void modify_8(unsigned long addr, unsigned long h, unsigned long data) |
@@ -112,6 +115,7 @@ static void modify_8(unsigned long addr, unsigned long h, unsigned long data) | |||
112 | unsigned long flags; | 115 | unsigned long flags; |
113 | local_irq_save(flags); | 116 | local_irq_save(flags); |
114 | __raw_writeb(set_field(__raw_readb(addr), data, h), addr); | 117 | __raw_writeb(set_field(__raw_readb(addr), data, h), addr); |
118 | (void)__raw_readb(addr); /* Defeat write posting */ | ||
115 | local_irq_restore(flags); | 119 | local_irq_restore(flags); |
116 | } | 120 | } |
117 | 121 | ||
@@ -120,6 +124,7 @@ static void modify_16(unsigned long addr, unsigned long h, unsigned long data) | |||
120 | unsigned long flags; | 124 | unsigned long flags; |
121 | local_irq_save(flags); | 125 | local_irq_save(flags); |
122 | __raw_writew(set_field(__raw_readw(addr), data, h), addr); | 126 | __raw_writew(set_field(__raw_readw(addr), data, h), addr); |
127 | (void)__raw_readw(addr); /* Defeat write posting */ | ||
123 | local_irq_restore(flags); | 128 | local_irq_restore(flags); |
124 | } | 129 | } |
125 | 130 | ||
@@ -128,6 +133,7 @@ static void modify_32(unsigned long addr, unsigned long h, unsigned long data) | |||
128 | unsigned long flags; | 133 | unsigned long flags; |
129 | local_irq_save(flags); | 134 | local_irq_save(flags); |
130 | __raw_writel(set_field(__raw_readl(addr), data, h), addr); | 135 | __raw_writel(set_field(__raw_readl(addr), data, h), addr); |
136 | (void)__raw_readl(addr); /* Defeat write posting */ | ||
131 | local_irq_restore(flags); | 137 | local_irq_restore(flags); |
132 | } | 138 | } |
133 | 139 | ||
@@ -657,16 +663,9 @@ static unsigned int __init save_reg(struct intc_desc_int *d, | |||
657 | return 0; | 663 | return 0; |
658 | } | 664 | } |
659 | 665 | ||
660 | static unsigned char *intc_evt2irq_table; | 666 | static void intc_redirect_irq(unsigned int irq, struct irq_desc *desc) |
661 | |||
662 | unsigned int intc_evt2irq(unsigned int vector) | ||
663 | { | 667 | { |
664 | unsigned int irq = evt2irq(vector); | 668 | generic_handle_irq((unsigned int)get_irq_data(irq)); |
665 | |||
666 | if (intc_evt2irq_table && intc_evt2irq_table[irq]) | ||
667 | irq = intc_evt2irq_table[irq]; | ||
668 | |||
669 | return irq; | ||
670 | } | 669 | } |
671 | 670 | ||
672 | void __init register_intc_controller(struct intc_desc *desc) | 671 | void __init register_intc_controller(struct intc_desc *desc) |
@@ -739,50 +738,48 @@ void __init register_intc_controller(struct intc_desc *desc) | |||
739 | 738 | ||
740 | BUG_ON(k > 256); /* _INTC_ADDR_E() and _INTC_ADDR_D() are 8 bits */ | 739 | BUG_ON(k > 256); /* _INTC_ADDR_E() and _INTC_ADDR_D() are 8 bits */ |
741 | 740 | ||
742 | /* keep the first vector only if same enum is used multiple times */ | 741 | /* register the vectors one by one */ |
743 | for (i = 0; i < desc->nr_vectors; i++) { | 742 | for (i = 0; i < desc->nr_vectors; i++) { |
744 | struct intc_vect *vect = desc->vectors + i; | 743 | struct intc_vect *vect = desc->vectors + i; |
745 | int first_irq = evt2irq(vect->vect); | 744 | unsigned int irq = evt2irq(vect->vect); |
745 | struct irq_desc *irq_desc; | ||
746 | 746 | ||
747 | if (!vect->enum_id) | 747 | if (!vect->enum_id) |
748 | continue; | 748 | continue; |
749 | 749 | ||
750 | irq_desc = irq_to_desc_alloc_node(irq, numa_node_id()); | ||
751 | if (unlikely(!irq_desc)) { | ||
752 | pr_info("can't get irq_desc for %d\n", irq); | ||
753 | continue; | ||
754 | } | ||
755 | |||
756 | intc_register_irq(desc, d, vect->enum_id, irq); | ||
757 | |||
750 | for (k = i + 1; k < desc->nr_vectors; k++) { | 758 | for (k = i + 1; k < desc->nr_vectors; k++) { |
751 | struct intc_vect *vect2 = desc->vectors + k; | 759 | struct intc_vect *vect2 = desc->vectors + k; |
760 | unsigned int irq2 = evt2irq(vect2->vect); | ||
752 | 761 | ||
753 | if (vect->enum_id != vect2->enum_id) | 762 | if (vect->enum_id != vect2->enum_id) |
754 | continue; | 763 | continue; |
755 | 764 | ||
756 | vect2->enum_id = 0; | 765 | /* |
757 | 766 | * In the case of multi-evt handling and sparse | |
758 | if (!intc_evt2irq_table) | 767 | * IRQ support, each vector still needs to have |
759 | intc_evt2irq_table = kzalloc(NR_IRQS, GFP_NOWAIT); | 768 | * its own backing irq_desc. |
760 | 769 | */ | |
761 | if (!intc_evt2irq_table) { | 770 | irq_desc = irq_to_desc_alloc_node(irq2, numa_node_id()); |
762 | pr_warning("intc: cannot allocate evt2irq!\n"); | 771 | if (unlikely(!irq_desc)) { |
772 | pr_info("can't get irq_desc for %d\n", irq2); | ||
763 | continue; | 773 | continue; |
764 | } | 774 | } |
765 | 775 | ||
766 | intc_evt2irq_table[evt2irq(vect2->vect)] = first_irq; | 776 | vect2->enum_id = 0; |
767 | } | ||
768 | } | ||
769 | |||
770 | /* register the vectors one by one */ | ||
771 | for (i = 0; i < desc->nr_vectors; i++) { | ||
772 | struct intc_vect *vect = desc->vectors + i; | ||
773 | unsigned int irq = evt2irq(vect->vect); | ||
774 | struct irq_desc *irq_desc; | ||
775 | |||
776 | if (!vect->enum_id) | ||
777 | continue; | ||
778 | 777 | ||
779 | irq_desc = irq_to_desc_alloc_node(irq, numa_node_id()); | 778 | /* redirect this interrupts to the first one */ |
780 | if (unlikely(!irq_desc)) { | 779 | set_irq_chip_and_handler_name(irq2, &d->chip, |
781 | printk(KERN_INFO "can not get irq_desc for %d\n", irq); | 780 | intc_redirect_irq, "redirect"); |
782 | continue; | 781 | set_irq_data(irq2, (void *)irq); |
783 | } | 782 | } |
784 | |||
785 | intc_register_irq(desc, d, vect->enum_id, irq); | ||
786 | } | 783 | } |
787 | } | 784 | } |
788 | 785 | ||
diff --git a/drivers/uio/uio_pdrv_genirq.c b/drivers/uio/uio_pdrv_genirq.c index 3f06818cf9fa..02347c57357d 100644 --- a/drivers/uio/uio_pdrv_genirq.c +++ b/drivers/uio/uio_pdrv_genirq.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/bitops.h> | 20 | #include <linux/bitops.h> |
21 | #include <linux/interrupt.h> | 21 | #include <linux/interrupt.h> |
22 | #include <linux/stringify.h> | 22 | #include <linux/stringify.h> |
23 | #include <linux/pm_runtime.h> | ||
23 | 24 | ||
24 | #define DRIVER_NAME "uio_pdrv_genirq" | 25 | #define DRIVER_NAME "uio_pdrv_genirq" |
25 | 26 | ||
@@ -27,8 +28,27 @@ struct uio_pdrv_genirq_platdata { | |||
27 | struct uio_info *uioinfo; | 28 | struct uio_info *uioinfo; |
28 | spinlock_t lock; | 29 | spinlock_t lock; |
29 | unsigned long flags; | 30 | unsigned long flags; |
31 | struct platform_device *pdev; | ||
30 | }; | 32 | }; |
31 | 33 | ||
34 | static int uio_pdrv_genirq_open(struct uio_info *info, struct inode *inode) | ||
35 | { | ||
36 | struct uio_pdrv_genirq_platdata *priv = info->priv; | ||
37 | |||
38 | /* Wait until the Runtime PM code has woken up the device */ | ||
39 | pm_runtime_get_sync(&priv->pdev->dev); | ||
40 | return 0; | ||
41 | } | ||
42 | |||
43 | static int uio_pdrv_genirq_release(struct uio_info *info, struct inode *inode) | ||
44 | { | ||
45 | struct uio_pdrv_genirq_platdata *priv = info->priv; | ||
46 | |||
47 | /* Tell the Runtime PM code that the device has become idle */ | ||
48 | pm_runtime_put_sync(&priv->pdev->dev); | ||
49 | return 0; | ||
50 | } | ||
51 | |||
32 | static irqreturn_t uio_pdrv_genirq_handler(int irq, struct uio_info *dev_info) | 52 | static irqreturn_t uio_pdrv_genirq_handler(int irq, struct uio_info *dev_info) |
33 | { | 53 | { |
34 | struct uio_pdrv_genirq_platdata *priv = dev_info->priv; | 54 | struct uio_pdrv_genirq_platdata *priv = dev_info->priv; |
@@ -97,6 +117,7 @@ static int uio_pdrv_genirq_probe(struct platform_device *pdev) | |||
97 | priv->uioinfo = uioinfo; | 117 | priv->uioinfo = uioinfo; |
98 | spin_lock_init(&priv->lock); | 118 | spin_lock_init(&priv->lock); |
99 | priv->flags = 0; /* interrupt is enabled to begin with */ | 119 | priv->flags = 0; /* interrupt is enabled to begin with */ |
120 | priv->pdev = pdev; | ||
100 | 121 | ||
101 | uiomem = &uioinfo->mem[0]; | 122 | uiomem = &uioinfo->mem[0]; |
102 | 123 | ||
@@ -136,8 +157,17 @@ static int uio_pdrv_genirq_probe(struct platform_device *pdev) | |||
136 | uioinfo->irq_flags |= IRQF_DISABLED; | 157 | uioinfo->irq_flags |= IRQF_DISABLED; |
137 | uioinfo->handler = uio_pdrv_genirq_handler; | 158 | uioinfo->handler = uio_pdrv_genirq_handler; |
138 | uioinfo->irqcontrol = uio_pdrv_genirq_irqcontrol; | 159 | uioinfo->irqcontrol = uio_pdrv_genirq_irqcontrol; |
160 | uioinfo->open = uio_pdrv_genirq_open; | ||
161 | uioinfo->release = uio_pdrv_genirq_release; | ||
139 | uioinfo->priv = priv; | 162 | uioinfo->priv = priv; |
140 | 163 | ||
164 | /* Enable Runtime PM for this device: | ||
165 | * The device starts in suspended state to allow the hardware to be | ||
166 | * turned off by default. The Runtime PM bus code should power on the | ||
167 | * hardware and enable clocks at open(). | ||
168 | */ | ||
169 | pm_runtime_enable(&pdev->dev); | ||
170 | |||
141 | ret = uio_register_device(&pdev->dev, priv->uioinfo); | 171 | ret = uio_register_device(&pdev->dev, priv->uioinfo); |
142 | if (ret) { | 172 | if (ret) { |
143 | dev_err(&pdev->dev, "unable to register uio device\n"); | 173 | dev_err(&pdev->dev, "unable to register uio device\n"); |
@@ -157,16 +187,40 @@ static int uio_pdrv_genirq_remove(struct platform_device *pdev) | |||
157 | struct uio_pdrv_genirq_platdata *priv = platform_get_drvdata(pdev); | 187 | struct uio_pdrv_genirq_platdata *priv = platform_get_drvdata(pdev); |
158 | 188 | ||
159 | uio_unregister_device(priv->uioinfo); | 189 | uio_unregister_device(priv->uioinfo); |
190 | pm_runtime_disable(&pdev->dev); | ||
160 | kfree(priv); | 191 | kfree(priv); |
161 | return 0; | 192 | return 0; |
162 | } | 193 | } |
163 | 194 | ||
195 | static int uio_pdrv_genirq_runtime_nop(struct device *dev) | ||
196 | { | ||
197 | /* Runtime PM callback shared between ->runtime_suspend() | ||
198 | * and ->runtime_resume(). Simply returns success. | ||
199 | * | ||
200 | * In this driver pm_runtime_get_sync() and pm_runtime_put_sync() | ||
201 | * are used at open() and release() time. This allows the | ||
202 | * Runtime PM code to turn off power to the device while the | ||
203 | * device is unused, ie before open() and after release(). | ||
204 | * | ||
205 | * This Runtime PM callback does not need to save or restore | ||
206 | * any registers since user space is responsbile for hardware | ||
207 | * register reinitialization after open(). | ||
208 | */ | ||
209 | return 0; | ||
210 | } | ||
211 | |||
212 | static struct dev_pm_ops uio_pdrv_genirq_dev_pm_ops = { | ||
213 | .runtime_suspend = uio_pdrv_genirq_runtime_nop, | ||
214 | .runtime_resume = uio_pdrv_genirq_runtime_nop, | ||
215 | }; | ||
216 | |||
164 | static struct platform_driver uio_pdrv_genirq = { | 217 | static struct platform_driver uio_pdrv_genirq = { |
165 | .probe = uio_pdrv_genirq_probe, | 218 | .probe = uio_pdrv_genirq_probe, |
166 | .remove = uio_pdrv_genirq_remove, | 219 | .remove = uio_pdrv_genirq_remove, |
167 | .driver = { | 220 | .driver = { |
168 | .name = DRIVER_NAME, | 221 | .name = DRIVER_NAME, |
169 | .owner = THIS_MODULE, | 222 | .owner = THIS_MODULE, |
223 | .pm = &uio_pdrv_genirq_dev_pm_ops, | ||
170 | }, | 224 | }, |
171 | }; | 225 | }; |
172 | 226 | ||
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 2bfc41ece0e1..85a1a55815cf 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c | |||
@@ -858,10 +858,7 @@ static void acm_tty_set_termios(struct tty_struct *tty, | |||
858 | if (!ACM_READY(acm)) | 858 | if (!ACM_READY(acm)) |
859 | return; | 859 | return; |
860 | 860 | ||
861 | /* FIXME: Needs to support the tty_baud interface */ | 861 | newline.dwDTERate = cpu_to_le32(tty_get_baud_rate(tty)); |
862 | /* FIXME: Broken on sparc */ | ||
863 | newline.dwDTERate = cpu_to_le32p(acm_tty_speed + | ||
864 | (termios->c_cflag & CBAUD & ~CBAUDEX) + (termios->c_cflag & CBAUDEX ? 15 : 0)); | ||
865 | newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0; | 862 | newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0; |
866 | newline.bParityType = termios->c_cflag & PARENB ? | 863 | newline.bParityType = termios->c_cflag & PARENB ? |
867 | (termios->c_cflag & PARODD ? 1 : 2) + | 864 | (termios->c_cflag & PARODD ? 1 : 2) + |
diff --git a/drivers/usb/class/usblp.c b/drivers/usb/class/usblp.c index 26c09f0257db..9bc112ee7803 100644 --- a/drivers/usb/class/usblp.c +++ b/drivers/usb/class/usblp.c | |||
@@ -1057,14 +1057,14 @@ static const struct file_operations usblp_fops = { | |||
1057 | .release = usblp_release, | 1057 | .release = usblp_release, |
1058 | }; | 1058 | }; |
1059 | 1059 | ||
1060 | static char *usblp_nodename(struct device *dev) | 1060 | static char *usblp_devnode(struct device *dev, mode_t *mode) |
1061 | { | 1061 | { |
1062 | return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev)); | 1062 | return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev)); |
1063 | } | 1063 | } |
1064 | 1064 | ||
1065 | static struct usb_class_driver usblp_class = { | 1065 | static struct usb_class_driver usblp_class = { |
1066 | .name = "lp%d", | 1066 | .name = "lp%d", |
1067 | .nodename = usblp_nodename, | 1067 | .devnode = usblp_devnode, |
1068 | .fops = &usblp_fops, | 1068 | .fops = &usblp_fops, |
1069 | .minor_base = USBLP_MINOR_BASE, | 1069 | .minor_base = USBLP_MINOR_BASE, |
1070 | }; | 1070 | }; |
diff --git a/drivers/usb/core/file.c b/drivers/usb/core/file.c index 5cef88929b3e..222ee07ea680 100644 --- a/drivers/usb/core/file.c +++ b/drivers/usb/core/file.c | |||
@@ -67,14 +67,14 @@ static struct usb_class { | |||
67 | struct class *class; | 67 | struct class *class; |
68 | } *usb_class; | 68 | } *usb_class; |
69 | 69 | ||
70 | static char *usb_nodename(struct device *dev) | 70 | static char *usb_devnode(struct device *dev, mode_t *mode) |
71 | { | 71 | { |
72 | struct usb_class_driver *drv; | 72 | struct usb_class_driver *drv; |
73 | 73 | ||
74 | drv = dev_get_drvdata(dev); | 74 | drv = dev_get_drvdata(dev); |
75 | if (!drv || !drv->nodename) | 75 | if (!drv || !drv->devnode) |
76 | return NULL; | 76 | return NULL; |
77 | return drv->nodename(dev); | 77 | return drv->devnode(dev, mode); |
78 | } | 78 | } |
79 | 79 | ||
80 | static int init_usb_class(void) | 80 | static int init_usb_class(void) |
@@ -100,7 +100,7 @@ static int init_usb_class(void) | |||
100 | kfree(usb_class); | 100 | kfree(usb_class); |
101 | usb_class = NULL; | 101 | usb_class = NULL; |
102 | } | 102 | } |
103 | usb_class->class->nodename = usb_nodename; | 103 | usb_class->class->devnode = usb_devnode; |
104 | 104 | ||
105 | exit: | 105 | exit: |
106 | return result; | 106 | return result; |
diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c index a26f73880c32..43ee943d757a 100644 --- a/drivers/usb/core/usb.c +++ b/drivers/usb/core/usb.c | |||
@@ -311,7 +311,7 @@ static struct dev_pm_ops usb_device_pm_ops = { | |||
311 | #endif /* CONFIG_PM */ | 311 | #endif /* CONFIG_PM */ |
312 | 312 | ||
313 | 313 | ||
314 | static char *usb_nodename(struct device *dev) | 314 | static char *usb_devnode(struct device *dev, mode_t *mode) |
315 | { | 315 | { |
316 | struct usb_device *usb_dev; | 316 | struct usb_device *usb_dev; |
317 | 317 | ||
@@ -324,7 +324,7 @@ struct device_type usb_device_type = { | |||
324 | .name = "usb_device", | 324 | .name = "usb_device", |
325 | .release = usb_release_dev, | 325 | .release = usb_release_dev, |
326 | .uevent = usb_dev_uevent, | 326 | .uevent = usb_dev_uevent, |
327 | .nodename = usb_nodename, | 327 | .devnode = usb_devnode, |
328 | .pm = &usb_device_pm_ops, | 328 | .pm = &usb_device_pm_ops, |
329 | }; | 329 | }; |
330 | 330 | ||
diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig index 7f8e83a954ac..9f986b417c5b 100644 --- a/drivers/usb/gadget/Kconfig +++ b/drivers/usb/gadget/Kconfig | |||
@@ -251,6 +251,24 @@ config USB_PXA25X_SMALL | |||
251 | default y if USB_ETH | 251 | default y if USB_ETH |
252 | default y if USB_G_SERIAL | 252 | default y if USB_G_SERIAL |
253 | 253 | ||
254 | config USB_GADGET_R8A66597 | ||
255 | boolean "Renesas R8A66597 USB Peripheral Controller" | ||
256 | select USB_GADGET_DUALSPEED | ||
257 | help | ||
258 | R8A66597 is a discrete USB host and peripheral controller chip that | ||
259 | supports both full and high speed USB 2.0 data transfers. | ||
260 | It has nine configurable endpoints, and endpoint zero. | ||
261 | |||
262 | Say "y" to link the driver statically, or "m" to build a | ||
263 | dynamically linked module called "r8a66597_udc" and force all | ||
264 | gadget drivers to also be dynamically linked. | ||
265 | |||
266 | config USB_R8A66597 | ||
267 | tristate | ||
268 | depends on USB_GADGET_R8A66597 | ||
269 | default USB_GADGET | ||
270 | select USB_GADGET_SELECTED | ||
271 | |||
254 | config USB_GADGET_PXA27X | 272 | config USB_GADGET_PXA27X |
255 | boolean "PXA 27x" | 273 | boolean "PXA 27x" |
256 | depends on ARCH_PXA && (PXA27x || PXA3xx) | 274 | depends on ARCH_PXA && (PXA27x || PXA3xx) |
@@ -360,16 +378,6 @@ config USB_M66592 | |||
360 | default USB_GADGET | 378 | default USB_GADGET |
361 | select USB_GADGET_SELECTED | 379 | select USB_GADGET_SELECTED |
362 | 380 | ||
363 | config SUPERH_BUILT_IN_M66592 | ||
364 | boolean "Enable SuperH built-in USB like the M66592" | ||
365 | depends on USB_GADGET_M66592 && CPU_SUBTYPE_SH7722 | ||
366 | help | ||
367 | SH7722 has USB like the M66592. | ||
368 | |||
369 | The transfer rate is very slow when use "Ethernet Gadget". | ||
370 | However, this problem is improved if change a value of | ||
371 | NET_IP_ALIGN to 4. | ||
372 | |||
373 | # | 381 | # |
374 | # Controllers available only in discrete form (and all PCI controllers) | 382 | # Controllers available only in discrete form (and all PCI controllers) |
375 | # | 383 | # |
diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index e6017e6bf6da..9d7b87c52e9f 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile | |||
@@ -23,6 +23,7 @@ ifeq ($(CONFIG_ARCH_MXC),y) | |||
23 | fsl_usb2_udc-objs += fsl_mx3_udc.o | 23 | fsl_usb2_udc-objs += fsl_mx3_udc.o |
24 | endif | 24 | endif |
25 | obj-$(CONFIG_USB_M66592) += m66592-udc.o | 25 | obj-$(CONFIG_USB_M66592) += m66592-udc.o |
26 | obj-$(CONFIG_USB_R8A66597) += r8a66597-udc.o | ||
26 | obj-$(CONFIG_USB_FSL_QE) += fsl_qe_udc.o | 27 | obj-$(CONFIG_USB_FSL_QE) += fsl_qe_udc.o |
27 | obj-$(CONFIG_USB_CI13XXX) += ci13xxx_udc.o | 28 | obj-$(CONFIG_USB_CI13XXX) += ci13xxx_udc.o |
28 | obj-$(CONFIG_USB_S3C_HSOTG) += s3c-hsotg.o | 29 | obj-$(CONFIG_USB_S3C_HSOTG) += s3c-hsotg.o |
diff --git a/drivers/usb/gadget/gadget_chips.h b/drivers/usb/gadget/gadget_chips.h index 8e0e9a0b7364..f2d270b202f2 100644 --- a/drivers/usb/gadget/gadget_chips.h +++ b/drivers/usb/gadget/gadget_chips.h | |||
@@ -173,6 +173,12 @@ | |||
173 | // CONFIG_USB_GADGET_AU1X00 | 173 | // CONFIG_USB_GADGET_AU1X00 |
174 | // ... | 174 | // ... |
175 | 175 | ||
176 | #ifdef CONFIG_USB_GADGET_R8A66597 | ||
177 | #define gadget_is_r8a66597(g) !strcmp("r8a66597_udc", (g)->name) | ||
178 | #else | ||
179 | #define gadget_is_r8a66597(g) 0 | ||
180 | #endif | ||
181 | |||
176 | 182 | ||
177 | /** | 183 | /** |
178 | * usb_gadget_controller_number - support bcdDevice id convention | 184 | * usb_gadget_controller_number - support bcdDevice id convention |
@@ -239,6 +245,8 @@ static inline int usb_gadget_controller_number(struct usb_gadget *gadget) | |||
239 | return 0x23; | 245 | return 0x23; |
240 | else if (gadget_is_langwell(gadget)) | 246 | else if (gadget_is_langwell(gadget)) |
241 | return 0x24; | 247 | return 0x24; |
248 | else if (gadget_is_r8a66597(gadget)) | ||
249 | return 0x25; | ||
242 | return -ENOENT; | 250 | return -ENOENT; |
243 | } | 251 | } |
244 | 252 | ||
diff --git a/drivers/usb/gadget/m66592-udc.c b/drivers/usb/gadget/m66592-udc.c index 43dcf9e1af6b..a8c8543d1b08 100644 --- a/drivers/usb/gadget/m66592-udc.c +++ b/drivers/usb/gadget/m66592-udc.c | |||
@@ -25,44 +25,18 @@ | |||
25 | #include <linux/delay.h> | 25 | #include <linux/delay.h> |
26 | #include <linux/io.h> | 26 | #include <linux/io.h> |
27 | #include <linux/platform_device.h> | 27 | #include <linux/platform_device.h> |
28 | 28 | #include <linux/err.h> | |
29 | #include <linux/usb/ch9.h> | 29 | #include <linux/usb/ch9.h> |
30 | #include <linux/usb/gadget.h> | 30 | #include <linux/usb/gadget.h> |
31 | 31 | ||
32 | #include "m66592-udc.h" | 32 | #include "m66592-udc.h" |
33 | 33 | ||
34 | |||
35 | MODULE_DESCRIPTION("M66592 USB gadget driver"); | 34 | MODULE_DESCRIPTION("M66592 USB gadget driver"); |
36 | MODULE_LICENSE("GPL"); | 35 | MODULE_LICENSE("GPL"); |
37 | MODULE_AUTHOR("Yoshihiro Shimoda"); | 36 | MODULE_AUTHOR("Yoshihiro Shimoda"); |
38 | MODULE_ALIAS("platform:m66592_udc"); | 37 | MODULE_ALIAS("platform:m66592_udc"); |
39 | 38 | ||
40 | #define DRIVER_VERSION "18 Oct 2007" | 39 | #define DRIVER_VERSION "21 July 2009" |
41 | |||
42 | /* module parameters */ | ||
43 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) | ||
44 | static unsigned short endian = M66592_LITTLE; | ||
45 | module_param(endian, ushort, 0644); | ||
46 | MODULE_PARM_DESC(endian, "data endian: big=0, little=0 (default=0)"); | ||
47 | #else | ||
48 | static unsigned short clock = M66592_XTAL24; | ||
49 | module_param(clock, ushort, 0644); | ||
50 | MODULE_PARM_DESC(clock, "input clock: 48MHz=32768, 24MHz=16384, 12MHz=0 " | ||
51 | "(default=16384)"); | ||
52 | |||
53 | static unsigned short vif = M66592_LDRV; | ||
54 | module_param(vif, ushort, 0644); | ||
55 | MODULE_PARM_DESC(vif, "input VIF: 3.3V=32768, 1.5V=0 (default=32768)"); | ||
56 | |||
57 | static unsigned short endian; | ||
58 | module_param(endian, ushort, 0644); | ||
59 | MODULE_PARM_DESC(endian, "data endian: big=256, little=0 (default=0)"); | ||
60 | |||
61 | static unsigned short irq_sense = M66592_INTL; | ||
62 | module_param(irq_sense, ushort, 0644); | ||
63 | MODULE_PARM_DESC(irq_sense, "IRQ sense: low level=2, falling edge=0 " | ||
64 | "(default=2)"); | ||
65 | #endif | ||
66 | 40 | ||
67 | static const char udc_name[] = "m66592_udc"; | 41 | static const char udc_name[] = "m66592_udc"; |
68 | static const char *m66592_ep_name[] = { | 42 | static const char *m66592_ep_name[] = { |
@@ -244,6 +218,7 @@ static inline int get_buffer_size(struct m66592 *m66592, u16 pipenum) | |||
244 | static inline void pipe_change(struct m66592 *m66592, u16 pipenum) | 218 | static inline void pipe_change(struct m66592 *m66592, u16 pipenum) |
245 | { | 219 | { |
246 | struct m66592_ep *ep = m66592->pipenum2ep[pipenum]; | 220 | struct m66592_ep *ep = m66592->pipenum2ep[pipenum]; |
221 | unsigned short mbw; | ||
247 | 222 | ||
248 | if (ep->use_dma) | 223 | if (ep->use_dma) |
249 | return; | 224 | return; |
@@ -252,7 +227,12 @@ static inline void pipe_change(struct m66592 *m66592, u16 pipenum) | |||
252 | 227 | ||
253 | ndelay(450); | 228 | ndelay(450); |
254 | 229 | ||
255 | m66592_bset(m66592, M66592_MBW, ep->fifosel); | 230 | if (m66592->pdata->on_chip) |
231 | mbw = M66592_MBW_32; | ||
232 | else | ||
233 | mbw = M66592_MBW_16; | ||
234 | |||
235 | m66592_bset(m66592, mbw, ep->fifosel); | ||
256 | } | 236 | } |
257 | 237 | ||
258 | static int pipe_buffer_setting(struct m66592 *m66592, | 238 | static int pipe_buffer_setting(struct m66592 *m66592, |
@@ -276,24 +256,27 @@ static int pipe_buffer_setting(struct m66592 *m66592, | |||
276 | buf_bsize = 0; | 256 | buf_bsize = 0; |
277 | break; | 257 | break; |
278 | case M66592_BULK: | 258 | case M66592_BULK: |
279 | bufnum = m66592->bi_bufnum + | 259 | /* isochronous pipes may be used as bulk pipes */ |
280 | (info->pipe - M66592_BASE_PIPENUM_BULK) * 16; | 260 | if (info->pipe > M66592_BASE_PIPENUM_BULK) |
281 | m66592->bi_bufnum += 16; | 261 | bufnum = info->pipe - M66592_BASE_PIPENUM_BULK; |
262 | else | ||
263 | bufnum = info->pipe - M66592_BASE_PIPENUM_ISOC; | ||
264 | |||
265 | bufnum = M66592_BASE_BUFNUM + (bufnum * 16); | ||
282 | buf_bsize = 7; | 266 | buf_bsize = 7; |
283 | pipecfg |= M66592_DBLB; | 267 | pipecfg |= M66592_DBLB; |
284 | if (!info->dir_in) | 268 | if (!info->dir_in) |
285 | pipecfg |= M66592_SHTNAK; | 269 | pipecfg |= M66592_SHTNAK; |
286 | break; | 270 | break; |
287 | case M66592_ISO: | 271 | case M66592_ISO: |
288 | bufnum = m66592->bi_bufnum + | 272 | bufnum = M66592_BASE_BUFNUM + |
289 | (info->pipe - M66592_BASE_PIPENUM_ISOC) * 16; | 273 | (info->pipe - M66592_BASE_PIPENUM_ISOC) * 16; |
290 | m66592->bi_bufnum += 16; | ||
291 | buf_bsize = 7; | 274 | buf_bsize = 7; |
292 | break; | 275 | break; |
293 | } | 276 | } |
294 | if (m66592->bi_bufnum > M66592_MAX_BUFNUM) { | 277 | |
295 | pr_err("m66592 pipe memory is insufficient(%d)\n", | 278 | if (buf_bsize && ((bufnum + 16) >= M66592_MAX_BUFNUM)) { |
296 | m66592->bi_bufnum); | 279 | pr_err("m66592 pipe memory is insufficient\n"); |
297 | return -ENOMEM; | 280 | return -ENOMEM; |
298 | } | 281 | } |
299 | 282 | ||
@@ -313,17 +296,6 @@ static void pipe_buffer_release(struct m66592 *m66592, | |||
313 | if (info->pipe == 0) | 296 | if (info->pipe == 0) |
314 | return; | 297 | return; |
315 | 298 | ||
316 | switch (info->type) { | ||
317 | case M66592_BULK: | ||
318 | if (is_bulk_pipe(info->pipe)) | ||
319 | m66592->bi_bufnum -= 16; | ||
320 | break; | ||
321 | case M66592_ISO: | ||
322 | if (is_isoc_pipe(info->pipe)) | ||
323 | m66592->bi_bufnum -= 16; | ||
324 | break; | ||
325 | } | ||
326 | |||
327 | if (is_bulk_pipe(info->pipe)) { | 299 | if (is_bulk_pipe(info->pipe)) { |
328 | m66592->bulk--; | 300 | m66592->bulk--; |
329 | } else if (is_interrupt_pipe(info->pipe)) | 301 | } else if (is_interrupt_pipe(info->pipe)) |
@@ -340,6 +312,7 @@ static void pipe_buffer_release(struct m66592 *m66592, | |||
340 | static void pipe_initialize(struct m66592_ep *ep) | 312 | static void pipe_initialize(struct m66592_ep *ep) |
341 | { | 313 | { |
342 | struct m66592 *m66592 = ep->m66592; | 314 | struct m66592 *m66592 = ep->m66592; |
315 | unsigned short mbw; | ||
343 | 316 | ||
344 | m66592_mdfy(m66592, 0, M66592_CURPIPE, ep->fifosel); | 317 | m66592_mdfy(m66592, 0, M66592_CURPIPE, ep->fifosel); |
345 | 318 | ||
@@ -351,7 +324,12 @@ static void pipe_initialize(struct m66592_ep *ep) | |||
351 | 324 | ||
352 | ndelay(450); | 325 | ndelay(450); |
353 | 326 | ||
354 | m66592_bset(m66592, M66592_MBW, ep->fifosel); | 327 | if (m66592->pdata->on_chip) |
328 | mbw = M66592_MBW_32; | ||
329 | else | ||
330 | mbw = M66592_MBW_16; | ||
331 | |||
332 | m66592_bset(m66592, mbw, ep->fifosel); | ||
355 | } | 333 | } |
356 | } | 334 | } |
357 | 335 | ||
@@ -367,15 +345,13 @@ static void m66592_ep_setting(struct m66592 *m66592, struct m66592_ep *ep, | |||
367 | ep->fifosel = M66592_D0FIFOSEL; | 345 | ep->fifosel = M66592_D0FIFOSEL; |
368 | ep->fifoctr = M66592_D0FIFOCTR; | 346 | ep->fifoctr = M66592_D0FIFOCTR; |
369 | ep->fifotrn = M66592_D0FIFOTRN; | 347 | ep->fifotrn = M66592_D0FIFOTRN; |
370 | #if !defined(CONFIG_SUPERH_BUILT_IN_M66592) | 348 | } else if (!m66592->pdata->on_chip && m66592->num_dma == 1) { |
371 | } else if (m66592->num_dma == 1) { | ||
372 | m66592->num_dma++; | 349 | m66592->num_dma++; |
373 | ep->use_dma = 1; | 350 | ep->use_dma = 1; |
374 | ep->fifoaddr = M66592_D1FIFO; | 351 | ep->fifoaddr = M66592_D1FIFO; |
375 | ep->fifosel = M66592_D1FIFOSEL; | 352 | ep->fifosel = M66592_D1FIFOSEL; |
376 | ep->fifoctr = M66592_D1FIFOCTR; | 353 | ep->fifoctr = M66592_D1FIFOCTR; |
377 | ep->fifotrn = M66592_D1FIFOTRN; | 354 | ep->fifotrn = M66592_D1FIFOTRN; |
378 | #endif | ||
379 | } else { | 355 | } else { |
380 | ep->use_dma = 0; | 356 | ep->use_dma = 0; |
381 | ep->fifoaddr = M66592_CFIFO; | 357 | ep->fifoaddr = M66592_CFIFO; |
@@ -620,76 +596,120 @@ static void start_ep0(struct m66592_ep *ep, struct m66592_request *req) | |||
620 | } | 596 | } |
621 | } | 597 | } |
622 | 598 | ||
623 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) | ||
624 | static void init_controller(struct m66592 *m66592) | 599 | static void init_controller(struct m66592 *m66592) |
625 | { | 600 | { |
626 | m66592_bset(m66592, M66592_HSE, M66592_SYSCFG); /* High spd */ | 601 | unsigned int endian; |
627 | m66592_bclr(m66592, M66592_USBE, M66592_SYSCFG); | ||
628 | m66592_bclr(m66592, M66592_DPRPU, M66592_SYSCFG); | ||
629 | m66592_bset(m66592, M66592_USBE, M66592_SYSCFG); | ||
630 | 602 | ||
631 | /* This is a workaound for SH7722 2nd cut */ | 603 | if (m66592->pdata->on_chip) { |
632 | m66592_bset(m66592, 0x8000, M66592_DVSTCTR); | 604 | if (m66592->pdata->endian) |
633 | m66592_bset(m66592, 0x1000, M66592_TESTMODE); | 605 | endian = 0; /* big endian */ |
634 | m66592_bclr(m66592, 0x8000, M66592_DVSTCTR); | 606 | else |
607 | endian = M66592_LITTLE; /* little endian */ | ||
635 | 608 | ||
636 | m66592_bset(m66592, M66592_INTL, M66592_INTENB1); | 609 | m66592_bset(m66592, M66592_HSE, M66592_SYSCFG); /* High spd */ |
610 | m66592_bclr(m66592, M66592_USBE, M66592_SYSCFG); | ||
611 | m66592_bclr(m66592, M66592_DPRPU, M66592_SYSCFG); | ||
612 | m66592_bset(m66592, M66592_USBE, M66592_SYSCFG); | ||
637 | 613 | ||
638 | m66592_write(m66592, 0, M66592_CFBCFG); | 614 | /* This is a workaound for SH7722 2nd cut */ |
639 | m66592_write(m66592, 0, M66592_D0FBCFG); | 615 | m66592_bset(m66592, 0x8000, M66592_DVSTCTR); |
640 | m66592_bset(m66592, endian, M66592_CFBCFG); | 616 | m66592_bset(m66592, 0x1000, M66592_TESTMODE); |
641 | m66592_bset(m66592, endian, M66592_D0FBCFG); | 617 | m66592_bclr(m66592, 0x8000, M66592_DVSTCTR); |
642 | } | ||
643 | #else /* #if defined(CONFIG_SUPERH_BUILT_IN_M66592) */ | ||
644 | static void init_controller(struct m66592 *m66592) | ||
645 | { | ||
646 | m66592_bset(m66592, (vif & M66592_LDRV) | (endian & M66592_BIGEND), | ||
647 | M66592_PINCFG); | ||
648 | m66592_bset(m66592, M66592_HSE, M66592_SYSCFG); /* High spd */ | ||
649 | m66592_mdfy(m66592, clock & M66592_XTAL, M66592_XTAL, M66592_SYSCFG); | ||
650 | 618 | ||
651 | m66592_bclr(m66592, M66592_USBE, M66592_SYSCFG); | 619 | m66592_bset(m66592, M66592_INTL, M66592_INTENB1); |
652 | m66592_bclr(m66592, M66592_DPRPU, M66592_SYSCFG); | 620 | |
653 | m66592_bset(m66592, M66592_USBE, M66592_SYSCFG); | 621 | m66592_write(m66592, 0, M66592_CFBCFG); |
622 | m66592_write(m66592, 0, M66592_D0FBCFG); | ||
623 | m66592_bset(m66592, endian, M66592_CFBCFG); | ||
624 | m66592_bset(m66592, endian, M66592_D0FBCFG); | ||
625 | } else { | ||
626 | unsigned int clock, vif, irq_sense; | ||
627 | |||
628 | if (m66592->pdata->endian) | ||
629 | endian = M66592_BIGEND; /* big endian */ | ||
630 | else | ||
631 | endian = 0; /* little endian */ | ||
632 | |||
633 | if (m66592->pdata->vif) | ||
634 | vif = M66592_LDRV; /* 3.3v */ | ||
635 | else | ||
636 | vif = 0; /* 1.5v */ | ||
637 | |||
638 | switch (m66592->pdata->xtal) { | ||
639 | case M66592_PLATDATA_XTAL_12MHZ: | ||
640 | clock = M66592_XTAL12; | ||
641 | break; | ||
642 | case M66592_PLATDATA_XTAL_24MHZ: | ||
643 | clock = M66592_XTAL24; | ||
644 | break; | ||
645 | case M66592_PLATDATA_XTAL_48MHZ: | ||
646 | clock = M66592_XTAL48; | ||
647 | break; | ||
648 | default: | ||
649 | pr_warning("m66592-udc: xtal configuration error\n"); | ||
650 | clock = 0; | ||
651 | } | ||
652 | |||
653 | switch (m66592->irq_trigger) { | ||
654 | case IRQF_TRIGGER_LOW: | ||
655 | irq_sense = M66592_INTL; | ||
656 | break; | ||
657 | case IRQF_TRIGGER_FALLING: | ||
658 | irq_sense = 0; | ||
659 | break; | ||
660 | default: | ||
661 | pr_warning("m66592-udc: irq trigger config error\n"); | ||
662 | irq_sense = 0; | ||
663 | } | ||
654 | 664 | ||
655 | m66592_bset(m66592, M66592_XCKE, M66592_SYSCFG); | 665 | m66592_bset(m66592, |
666 | (vif & M66592_LDRV) | (endian & M66592_BIGEND), | ||
667 | M66592_PINCFG); | ||
668 | m66592_bset(m66592, M66592_HSE, M66592_SYSCFG); /* High spd */ | ||
669 | m66592_mdfy(m66592, clock & M66592_XTAL, M66592_XTAL, | ||
670 | M66592_SYSCFG); | ||
671 | m66592_bclr(m66592, M66592_USBE, M66592_SYSCFG); | ||
672 | m66592_bclr(m66592, M66592_DPRPU, M66592_SYSCFG); | ||
673 | m66592_bset(m66592, M66592_USBE, M66592_SYSCFG); | ||
674 | |||
675 | m66592_bset(m66592, M66592_XCKE, M66592_SYSCFG); | ||
656 | 676 | ||
657 | msleep(3); | 677 | msleep(3); |
658 | 678 | ||
659 | m66592_bset(m66592, M66592_RCKE | M66592_PLLC, M66592_SYSCFG); | 679 | m66592_bset(m66592, M66592_RCKE | M66592_PLLC, M66592_SYSCFG); |
660 | 680 | ||
661 | msleep(1); | 681 | msleep(1); |
662 | 682 | ||
663 | m66592_bset(m66592, M66592_SCKE, M66592_SYSCFG); | 683 | m66592_bset(m66592, M66592_SCKE, M66592_SYSCFG); |
664 | 684 | ||
665 | m66592_bset(m66592, irq_sense & M66592_INTL, M66592_INTENB1); | 685 | m66592_bset(m66592, irq_sense & M66592_INTL, M66592_INTENB1); |
666 | m66592_write(m66592, M66592_BURST | M66592_CPU_ADR_RD_WR, | 686 | m66592_write(m66592, M66592_BURST | M66592_CPU_ADR_RD_WR, |
667 | M66592_DMA0CFG); | 687 | M66592_DMA0CFG); |
688 | } | ||
668 | } | 689 | } |
669 | #endif /* #if defined(CONFIG_SUPERH_BUILT_IN_M66592) */ | ||
670 | 690 | ||
671 | static void disable_controller(struct m66592 *m66592) | 691 | static void disable_controller(struct m66592 *m66592) |
672 | { | 692 | { |
673 | #if !defined(CONFIG_SUPERH_BUILT_IN_M66592) | 693 | if (!m66592->pdata->on_chip) { |
674 | m66592_bclr(m66592, M66592_SCKE, M66592_SYSCFG); | 694 | m66592_bclr(m66592, M66592_SCKE, M66592_SYSCFG); |
675 | udelay(1); | 695 | udelay(1); |
676 | m66592_bclr(m66592, M66592_PLLC, M66592_SYSCFG); | 696 | m66592_bclr(m66592, M66592_PLLC, M66592_SYSCFG); |
677 | udelay(1); | 697 | udelay(1); |
678 | m66592_bclr(m66592, M66592_RCKE, M66592_SYSCFG); | 698 | m66592_bclr(m66592, M66592_RCKE, M66592_SYSCFG); |
679 | udelay(1); | 699 | udelay(1); |
680 | m66592_bclr(m66592, M66592_XCKE, M66592_SYSCFG); | 700 | m66592_bclr(m66592, M66592_XCKE, M66592_SYSCFG); |
681 | #endif | 701 | } |
682 | } | 702 | } |
683 | 703 | ||
684 | static void m66592_start_xclock(struct m66592 *m66592) | 704 | static void m66592_start_xclock(struct m66592 *m66592) |
685 | { | 705 | { |
686 | #if !defined(CONFIG_SUPERH_BUILT_IN_M66592) | ||
687 | u16 tmp; | 706 | u16 tmp; |
688 | 707 | ||
689 | tmp = m66592_read(m66592, M66592_SYSCFG); | 708 | if (!m66592->pdata->on_chip) { |
690 | if (!(tmp & M66592_XCKE)) | 709 | tmp = m66592_read(m66592, M66592_SYSCFG); |
691 | m66592_bset(m66592, M66592_XCKE, M66592_SYSCFG); | 710 | if (!(tmp & M66592_XCKE)) |
692 | #endif | 711 | m66592_bset(m66592, M66592_XCKE, M66592_SYSCFG); |
712 | } | ||
693 | } | 713 | } |
694 | 714 | ||
695 | /*-------------------------------------------------------------------------*/ | 715 | /*-------------------------------------------------------------------------*/ |
@@ -1177,8 +1197,7 @@ static irqreturn_t m66592_irq(int irq, void *_m66592) | |||
1177 | intsts0 = m66592_read(m66592, M66592_INTSTS0); | 1197 | intsts0 = m66592_read(m66592, M66592_INTSTS0); |
1178 | intenb0 = m66592_read(m66592, M66592_INTENB0); | 1198 | intenb0 = m66592_read(m66592, M66592_INTENB0); |
1179 | 1199 | ||
1180 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) | 1200 | if (m66592->pdata->on_chip && !intsts0 && !intenb0) { |
1181 | if (!intsts0 && !intenb0) { | ||
1182 | /* | 1201 | /* |
1183 | * When USB clock stops, it cannot read register. Even if a | 1202 | * When USB clock stops, it cannot read register. Even if a |
1184 | * clock stops, the interrupt occurs. So this driver turn on | 1203 | * clock stops, the interrupt occurs. So this driver turn on |
@@ -1188,7 +1207,6 @@ static irqreturn_t m66592_irq(int irq, void *_m66592) | |||
1188 | intsts0 = m66592_read(m66592, M66592_INTSTS0); | 1207 | intsts0 = m66592_read(m66592, M66592_INTSTS0); |
1189 | intenb0 = m66592_read(m66592, M66592_INTENB0); | 1208 | intenb0 = m66592_read(m66592, M66592_INTENB0); |
1190 | } | 1209 | } |
1191 | #endif | ||
1192 | 1210 | ||
1193 | savepipe = m66592_read(m66592, M66592_CFIFOSEL); | 1211 | savepipe = m66592_read(m66592, M66592_CFIFOSEL); |
1194 | 1212 | ||
@@ -1534,9 +1552,11 @@ static int __exit m66592_remove(struct platform_device *pdev) | |||
1534 | iounmap(m66592->reg); | 1552 | iounmap(m66592->reg); |
1535 | free_irq(platform_get_irq(pdev, 0), m66592); | 1553 | free_irq(platform_get_irq(pdev, 0), m66592); |
1536 | m66592_free_request(&m66592->ep[0].ep, m66592->ep0_req); | 1554 | m66592_free_request(&m66592->ep[0].ep, m66592->ep0_req); |
1537 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) && defined(CONFIG_HAVE_CLK) | 1555 | #ifdef CONFIG_HAVE_CLK |
1538 | clk_disable(m66592->clk); | 1556 | if (m66592->pdata->on_chip) { |
1539 | clk_put(m66592->clk); | 1557 | clk_disable(m66592->clk); |
1558 | clk_put(m66592->clk); | ||
1559 | } | ||
1540 | #endif | 1560 | #endif |
1541 | kfree(m66592); | 1561 | kfree(m66592); |
1542 | return 0; | 1562 | return 0; |
@@ -1548,11 +1568,10 @@ static void nop_completion(struct usb_ep *ep, struct usb_request *r) | |||
1548 | 1568 | ||
1549 | static int __init m66592_probe(struct platform_device *pdev) | 1569 | static int __init m66592_probe(struct platform_device *pdev) |
1550 | { | 1570 | { |
1551 | struct resource *res; | 1571 | struct resource *res, *ires; |
1552 | int irq; | ||
1553 | void __iomem *reg = NULL; | 1572 | void __iomem *reg = NULL; |
1554 | struct m66592 *m66592 = NULL; | 1573 | struct m66592 *m66592 = NULL; |
1555 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) && defined(CONFIG_HAVE_CLK) | 1574 | #ifdef CONFIG_HAVE_CLK |
1556 | char clk_name[8]; | 1575 | char clk_name[8]; |
1557 | #endif | 1576 | #endif |
1558 | int ret = 0; | 1577 | int ret = 0; |
@@ -1565,10 +1584,11 @@ static int __init m66592_probe(struct platform_device *pdev) | |||
1565 | goto clean_up; | 1584 | goto clean_up; |
1566 | } | 1585 | } |
1567 | 1586 | ||
1568 | irq = platform_get_irq(pdev, 0); | 1587 | ires = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
1569 | if (irq < 0) { | 1588 | if (!ires) { |
1570 | ret = -ENODEV; | 1589 | ret = -ENODEV; |
1571 | pr_err("platform_get_irq error.\n"); | 1590 | dev_err(&pdev->dev, |
1591 | "platform_get_resource IORESOURCE_IRQ error.\n"); | ||
1572 | goto clean_up; | 1592 | goto clean_up; |
1573 | } | 1593 | } |
1574 | 1594 | ||
@@ -1579,6 +1599,12 @@ static int __init m66592_probe(struct platform_device *pdev) | |||
1579 | goto clean_up; | 1599 | goto clean_up; |
1580 | } | 1600 | } |
1581 | 1601 | ||
1602 | if (pdev->dev.platform_data == NULL) { | ||
1603 | dev_err(&pdev->dev, "no platform data\n"); | ||
1604 | ret = -ENODEV; | ||
1605 | goto clean_up; | ||
1606 | } | ||
1607 | |||
1582 | /* initialize ucd */ | 1608 | /* initialize ucd */ |
1583 | m66592 = kzalloc(sizeof(struct m66592), GFP_KERNEL); | 1609 | m66592 = kzalloc(sizeof(struct m66592), GFP_KERNEL); |
1584 | if (m66592 == NULL) { | 1610 | if (m66592 == NULL) { |
@@ -1586,6 +1612,9 @@ static int __init m66592_probe(struct platform_device *pdev) | |||
1586 | goto clean_up; | 1612 | goto clean_up; |
1587 | } | 1613 | } |
1588 | 1614 | ||
1615 | m66592->pdata = pdev->dev.platform_data; | ||
1616 | m66592->irq_trigger = ires->flags & IRQF_TRIGGER_MASK; | ||
1617 | |||
1589 | spin_lock_init(&m66592->lock); | 1618 | spin_lock_init(&m66592->lock); |
1590 | dev_set_drvdata(&pdev->dev, m66592); | 1619 | dev_set_drvdata(&pdev->dev, m66592); |
1591 | 1620 | ||
@@ -1603,24 +1632,25 @@ static int __init m66592_probe(struct platform_device *pdev) | |||
1603 | m66592->timer.data = (unsigned long)m66592; | 1632 | m66592->timer.data = (unsigned long)m66592; |
1604 | m66592->reg = reg; | 1633 | m66592->reg = reg; |
1605 | 1634 | ||
1606 | m66592->bi_bufnum = M66592_BASE_BUFNUM; | 1635 | ret = request_irq(ires->start, m66592_irq, IRQF_DISABLED | IRQF_SHARED, |
1607 | |||
1608 | ret = request_irq(irq, m66592_irq, IRQF_DISABLED | IRQF_SHARED, | ||
1609 | udc_name, m66592); | 1636 | udc_name, m66592); |
1610 | if (ret < 0) { | 1637 | if (ret < 0) { |
1611 | pr_err("request_irq error (%d)\n", ret); | 1638 | pr_err("request_irq error (%d)\n", ret); |
1612 | goto clean_up; | 1639 | goto clean_up; |
1613 | } | 1640 | } |
1614 | 1641 | ||
1615 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) && defined(CONFIG_HAVE_CLK) | 1642 | #ifdef CONFIG_HAVE_CLK |
1616 | snprintf(clk_name, sizeof(clk_name), "usbf%d", pdev->id); | 1643 | if (m66592->pdata->on_chip) { |
1617 | m66592->clk = clk_get(&pdev->dev, clk_name); | 1644 | snprintf(clk_name, sizeof(clk_name), "usbf%d", pdev->id); |
1618 | if (IS_ERR(m66592->clk)) { | 1645 | m66592->clk = clk_get(&pdev->dev, clk_name); |
1619 | dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name); | 1646 | if (IS_ERR(m66592->clk)) { |
1620 | ret = PTR_ERR(m66592->clk); | 1647 | dev_err(&pdev->dev, "cannot get clock \"%s\"\n", |
1621 | goto clean_up2; | 1648 | clk_name); |
1649 | ret = PTR_ERR(m66592->clk); | ||
1650 | goto clean_up2; | ||
1651 | } | ||
1652 | clk_enable(m66592->clk); | ||
1622 | } | 1653 | } |
1623 | clk_enable(m66592->clk); | ||
1624 | #endif | 1654 | #endif |
1625 | INIT_LIST_HEAD(&m66592->gadget.ep_list); | 1655 | INIT_LIST_HEAD(&m66592->gadget.ep_list); |
1626 | m66592->gadget.ep0 = &m66592->ep[0].ep; | 1656 | m66592->gadget.ep0 = &m66592->ep[0].ep; |
@@ -1662,12 +1692,14 @@ static int __init m66592_probe(struct platform_device *pdev) | |||
1662 | return 0; | 1692 | return 0; |
1663 | 1693 | ||
1664 | clean_up3: | 1694 | clean_up3: |
1665 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) && defined(CONFIG_HAVE_CLK) | 1695 | #ifdef CONFIG_HAVE_CLK |
1666 | clk_disable(m66592->clk); | 1696 | if (m66592->pdata->on_chip) { |
1667 | clk_put(m66592->clk); | 1697 | clk_disable(m66592->clk); |
1698 | clk_put(m66592->clk); | ||
1699 | } | ||
1668 | clean_up2: | 1700 | clean_up2: |
1669 | #endif | 1701 | #endif |
1670 | free_irq(irq, m66592); | 1702 | free_irq(ires->start, m66592); |
1671 | clean_up: | 1703 | clean_up: |
1672 | if (m66592) { | 1704 | if (m66592) { |
1673 | if (m66592->ep0_req) | 1705 | if (m66592->ep0_req) |
diff --git a/drivers/usb/gadget/m66592-udc.h b/drivers/usb/gadget/m66592-udc.h index 286ce07e7960..8b960deed680 100644 --- a/drivers/usb/gadget/m66592-udc.h +++ b/drivers/usb/gadget/m66592-udc.h | |||
@@ -23,10 +23,12 @@ | |||
23 | #ifndef __M66592_UDC_H__ | 23 | #ifndef __M66592_UDC_H__ |
24 | #define __M66592_UDC_H__ | 24 | #define __M66592_UDC_H__ |
25 | 25 | ||
26 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) && defined(CONFIG_HAVE_CLK) | 26 | #ifdef CONFIG_HAVE_CLK |
27 | #include <linux/clk.h> | 27 | #include <linux/clk.h> |
28 | #endif | 28 | #endif |
29 | 29 | ||
30 | #include <linux/usb/m66592.h> | ||
31 | |||
30 | #define M66592_SYSCFG 0x00 | 32 | #define M66592_SYSCFG 0x00 |
31 | #define M66592_XTAL 0xC000 /* b15-14: Crystal selection */ | 33 | #define M66592_XTAL 0xC000 /* b15-14: Crystal selection */ |
32 | #define M66592_XTAL48 0x8000 /* 48MHz */ | 34 | #define M66592_XTAL48 0x8000 /* 48MHz */ |
@@ -76,11 +78,11 @@ | |||
76 | #define M66592_P_TST_J 0x0001 /* PERI TEST J */ | 78 | #define M66592_P_TST_J 0x0001 /* PERI TEST J */ |
77 | #define M66592_P_TST_NORMAL 0x0000 /* PERI Normal Mode */ | 79 | #define M66592_P_TST_NORMAL 0x0000 /* PERI Normal Mode */ |
78 | 80 | ||
79 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) | 81 | /* built-in registers */ |
80 | #define M66592_CFBCFG 0x0A | 82 | #define M66592_CFBCFG 0x0A |
81 | #define M66592_D0FBCFG 0x0C | 83 | #define M66592_D0FBCFG 0x0C |
82 | #define M66592_LITTLE 0x0100 /* b8: Little endian mode */ | 84 | #define M66592_LITTLE 0x0100 /* b8: Little endian mode */ |
83 | #else | 85 | /* external chip case */ |
84 | #define M66592_PINCFG 0x0A | 86 | #define M66592_PINCFG 0x0A |
85 | #define M66592_LDRV 0x8000 /* b15: Drive Current Adjust */ | 87 | #define M66592_LDRV 0x8000 /* b15: Drive Current Adjust */ |
86 | #define M66592_BIGEND 0x0100 /* b8: Big endian mode */ | 88 | #define M66592_BIGEND 0x0100 /* b8: Big endian mode */ |
@@ -100,8 +102,8 @@ | |||
100 | #define M66592_PKTM 0x0020 /* b5: Packet mode */ | 102 | #define M66592_PKTM 0x0020 /* b5: Packet mode */ |
101 | #define M66592_DENDE 0x0010 /* b4: Dend enable */ | 103 | #define M66592_DENDE 0x0010 /* b4: Dend enable */ |
102 | #define M66592_OBUS 0x0004 /* b2: OUTbus mode */ | 104 | #define M66592_OBUS 0x0004 /* b2: OUTbus mode */ |
103 | #endif /* #if defined(CONFIG_SUPERH_BUILT_IN_M66592) */ | ||
104 | 105 | ||
106 | /* common case */ | ||
105 | #define M66592_CFIFO 0x10 | 107 | #define M66592_CFIFO 0x10 |
106 | #define M66592_D0FIFO 0x14 | 108 | #define M66592_D0FIFO 0x14 |
107 | #define M66592_D1FIFO 0x18 | 109 | #define M66592_D1FIFO 0x18 |
@@ -113,13 +115,9 @@ | |||
113 | #define M66592_REW 0x4000 /* b14: Buffer rewind */ | 115 | #define M66592_REW 0x4000 /* b14: Buffer rewind */ |
114 | #define M66592_DCLRM 0x2000 /* b13: DMA buffer clear mode */ | 116 | #define M66592_DCLRM 0x2000 /* b13: DMA buffer clear mode */ |
115 | #define M66592_DREQE 0x1000 /* b12: DREQ output enable */ | 117 | #define M66592_DREQE 0x1000 /* b12: DREQ output enable */ |
116 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) | 118 | #define M66592_MBW_8 0x0000 /* 8bit */ |
117 | #define M66592_MBW 0x0800 /* b11: Maximum bit width for FIFO */ | 119 | #define M66592_MBW_16 0x0400 /* 16bit */ |
118 | #else | 120 | #define M66592_MBW_32 0x0800 /* 32bit */ |
119 | #define M66592_MBW 0x0400 /* b10: Maximum bit width for FIFO */ | ||
120 | #define M66592_MBW_8 0x0000 /* 8bit */ | ||
121 | #define M66592_MBW_16 0x0400 /* 16bit */ | ||
122 | #endif /* #if defined(CONFIG_SUPERH_BUILT_IN_M66592) */ | ||
123 | #define M66592_TRENB 0x0200 /* b9: Transaction counter enable */ | 121 | #define M66592_TRENB 0x0200 /* b9: Transaction counter enable */ |
124 | #define M66592_TRCLR 0x0100 /* b8: Transaction counter clear */ | 122 | #define M66592_TRCLR 0x0100 /* b8: Transaction counter clear */ |
125 | #define M66592_DEZPM 0x0080 /* b7: Zero-length packet mode */ | 123 | #define M66592_DEZPM 0x0080 /* b7: Zero-length packet mode */ |
@@ -480,9 +478,11 @@ struct m66592_ep { | |||
480 | struct m66592 { | 478 | struct m66592 { |
481 | spinlock_t lock; | 479 | spinlock_t lock; |
482 | void __iomem *reg; | 480 | void __iomem *reg; |
483 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) && defined(CONFIG_HAVE_CLK) | 481 | #ifdef CONFIG_HAVE_CLK |
484 | struct clk *clk; | 482 | struct clk *clk; |
485 | #endif | 483 | #endif |
484 | struct m66592_platdata *pdata; | ||
485 | unsigned long irq_trigger; | ||
486 | 486 | ||
487 | struct usb_gadget gadget; | 487 | struct usb_gadget gadget; |
488 | struct usb_gadget_driver *driver; | 488 | struct usb_gadget_driver *driver; |
@@ -506,7 +506,6 @@ struct m66592 { | |||
506 | int interrupt; | 506 | int interrupt; |
507 | int isochronous; | 507 | int isochronous; |
508 | int num_dma; | 508 | int num_dma; |
509 | int bi_bufnum; /* bulk and isochronous's bufnum */ | ||
510 | }; | 509 | }; |
511 | 510 | ||
512 | #define gadget_to_m66592(_gadget) container_of(_gadget, struct m66592, gadget) | 511 | #define gadget_to_m66592(_gadget) container_of(_gadget, struct m66592, gadget) |
@@ -547,13 +546,13 @@ static inline void m66592_read_fifo(struct m66592 *m66592, | |||
547 | { | 546 | { |
548 | unsigned long fifoaddr = (unsigned long)m66592->reg + offset; | 547 | unsigned long fifoaddr = (unsigned long)m66592->reg + offset; |
549 | 548 | ||
550 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) | 549 | if (m66592->pdata->on_chip) { |
551 | len = (len + 3) / 4; | 550 | len = (len + 3) / 4; |
552 | insl(fifoaddr, buf, len); | 551 | insl(fifoaddr, buf, len); |
553 | #else | 552 | } else { |
554 | len = (len + 1) / 2; | 553 | len = (len + 1) / 2; |
555 | insw(fifoaddr, buf, len); | 554 | insw(fifoaddr, buf, len); |
556 | #endif | 555 | } |
557 | } | 556 | } |
558 | 557 | ||
559 | static inline void m66592_write(struct m66592 *m66592, u16 val, | 558 | static inline void m66592_write(struct m66592 *m66592, u16 val, |
@@ -567,33 +566,34 @@ static inline void m66592_write_fifo(struct m66592 *m66592, | |||
567 | void *buf, unsigned long len) | 566 | void *buf, unsigned long len) |
568 | { | 567 | { |
569 | unsigned long fifoaddr = (unsigned long)m66592->reg + offset; | 568 | unsigned long fifoaddr = (unsigned long)m66592->reg + offset; |
570 | #if defined(CONFIG_SUPERH_BUILT_IN_M66592) | 569 | |
571 | unsigned long count; | 570 | if (m66592->pdata->on_chip) { |
572 | unsigned char *pb; | 571 | unsigned long count; |
573 | int i; | 572 | unsigned char *pb; |
574 | 573 | int i; | |
575 | count = len / 4; | 574 | |
576 | outsl(fifoaddr, buf, count); | 575 | count = len / 4; |
577 | 576 | outsl(fifoaddr, buf, count); | |
578 | if (len & 0x00000003) { | 577 | |
579 | pb = buf + count * 4; | 578 | if (len & 0x00000003) { |
580 | for (i = 0; i < (len & 0x00000003); i++) { | 579 | pb = buf + count * 4; |
581 | if (m66592_read(m66592, M66592_CFBCFG)) /* little */ | 580 | for (i = 0; i < (len & 0x00000003); i++) { |
582 | outb(pb[i], fifoaddr + (3 - i)); | 581 | if (m66592_read(m66592, M66592_CFBCFG)) /* le */ |
583 | else | 582 | outb(pb[i], fifoaddr + (3 - i)); |
584 | outb(pb[i], fifoaddr + i); | 583 | else |
584 | outb(pb[i], fifoaddr + i); | ||
585 | } | ||
586 | } | ||
587 | } else { | ||
588 | unsigned long odd = len & 0x0001; | ||
589 | |||
590 | len = len / 2; | ||
591 | outsw(fifoaddr, buf, len); | ||
592 | if (odd) { | ||
593 | unsigned char *p = buf + len*2; | ||
594 | outb(*p, fifoaddr); | ||
585 | } | 595 | } |
586 | } | 596 | } |
587 | #else | ||
588 | unsigned long odd = len & 0x0001; | ||
589 | |||
590 | len = len / 2; | ||
591 | outsw(fifoaddr, buf, len); | ||
592 | if (odd) { | ||
593 | unsigned char *p = buf + len*2; | ||
594 | outb(*p, fifoaddr); | ||
595 | } | ||
596 | #endif /* #if defined(CONFIG_SUPERH_BUILT_IN_M66592) */ | ||
597 | } | 597 | } |
598 | 598 | ||
599 | static inline void m66592_mdfy(struct m66592 *m66592, u16 val, u16 pat, | 599 | static inline void m66592_mdfy(struct m66592 *m66592, u16 val, u16 pat, |
diff --git a/drivers/usb/gadget/r8a66597-udc.c b/drivers/usb/gadget/r8a66597-udc.c new file mode 100644 index 000000000000..e220fb8091a3 --- /dev/null +++ b/drivers/usb/gadget/r8a66597-udc.c | |||
@@ -0,0 +1,1689 @@ | |||
1 | /* | ||
2 | * R8A66597 UDC (USB gadget) | ||
3 | * | ||
4 | * Copyright (C) 2006-2009 Renesas Solutions Corp. | ||
5 | * | ||
6 | * Author : Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; version 2 of the License. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
20 | * | ||
21 | */ | ||
22 | |||
23 | #include <linux/module.h> | ||
24 | #include <linux/interrupt.h> | ||
25 | #include <linux/delay.h> | ||
26 | #include <linux/io.h> | ||
27 | #include <linux/platform_device.h> | ||
28 | #include <linux/clk.h> | ||
29 | |||
30 | #include <linux/usb/ch9.h> | ||
31 | #include <linux/usb/gadget.h> | ||
32 | |||
33 | #include "r8a66597-udc.h" | ||
34 | |||
35 | #define DRIVER_VERSION "2009-08-18" | ||
36 | |||
37 | static const char udc_name[] = "r8a66597_udc"; | ||
38 | static const char *r8a66597_ep_name[] = { | ||
39 | "ep0", "ep1", "ep2", "ep3", "ep4", "ep5", "ep6", "ep7", | ||
40 | "ep8", "ep9", | ||
41 | }; | ||
42 | |||
43 | static void disable_controller(struct r8a66597 *r8a66597); | ||
44 | static void irq_ep0_write(struct r8a66597_ep *ep, struct r8a66597_request *req); | ||
45 | static void irq_packet_write(struct r8a66597_ep *ep, | ||
46 | struct r8a66597_request *req); | ||
47 | static int r8a66597_queue(struct usb_ep *_ep, struct usb_request *_req, | ||
48 | gfp_t gfp_flags); | ||
49 | |||
50 | static void transfer_complete(struct r8a66597_ep *ep, | ||
51 | struct r8a66597_request *req, int status); | ||
52 | |||
53 | /*-------------------------------------------------------------------------*/ | ||
54 | static inline u16 get_usb_speed(struct r8a66597 *r8a66597) | ||
55 | { | ||
56 | return r8a66597_read(r8a66597, DVSTCTR0) & RHST; | ||
57 | } | ||
58 | |||
59 | static void enable_pipe_irq(struct r8a66597 *r8a66597, u16 pipenum, | ||
60 | unsigned long reg) | ||
61 | { | ||
62 | u16 tmp; | ||
63 | |||
64 | tmp = r8a66597_read(r8a66597, INTENB0); | ||
65 | r8a66597_bclr(r8a66597, BEMPE | NRDYE | BRDYE, | ||
66 | INTENB0); | ||
67 | r8a66597_bset(r8a66597, (1 << pipenum), reg); | ||
68 | r8a66597_write(r8a66597, tmp, INTENB0); | ||
69 | } | ||
70 | |||
71 | static void disable_pipe_irq(struct r8a66597 *r8a66597, u16 pipenum, | ||
72 | unsigned long reg) | ||
73 | { | ||
74 | u16 tmp; | ||
75 | |||
76 | tmp = r8a66597_read(r8a66597, INTENB0); | ||
77 | r8a66597_bclr(r8a66597, BEMPE | NRDYE | BRDYE, | ||
78 | INTENB0); | ||
79 | r8a66597_bclr(r8a66597, (1 << pipenum), reg); | ||
80 | r8a66597_write(r8a66597, tmp, INTENB0); | ||
81 | } | ||
82 | |||
83 | static void r8a66597_usb_connect(struct r8a66597 *r8a66597) | ||
84 | { | ||
85 | r8a66597_bset(r8a66597, CTRE, INTENB0); | ||
86 | r8a66597_bset(r8a66597, BEMPE | BRDYE, INTENB0); | ||
87 | |||
88 | r8a66597_bset(r8a66597, DPRPU, SYSCFG0); | ||
89 | } | ||
90 | |||
91 | static void r8a66597_usb_disconnect(struct r8a66597 *r8a66597) | ||
92 | __releases(r8a66597->lock) | ||
93 | __acquires(r8a66597->lock) | ||
94 | { | ||
95 | r8a66597_bclr(r8a66597, CTRE, INTENB0); | ||
96 | r8a66597_bclr(r8a66597, BEMPE | BRDYE, INTENB0); | ||
97 | r8a66597_bclr(r8a66597, DPRPU, SYSCFG0); | ||
98 | |||
99 | r8a66597->gadget.speed = USB_SPEED_UNKNOWN; | ||
100 | spin_unlock(&r8a66597->lock); | ||
101 | r8a66597->driver->disconnect(&r8a66597->gadget); | ||
102 | spin_lock(&r8a66597->lock); | ||
103 | |||
104 | disable_controller(r8a66597); | ||
105 | INIT_LIST_HEAD(&r8a66597->ep[0].queue); | ||
106 | } | ||
107 | |||
108 | static inline u16 control_reg_get_pid(struct r8a66597 *r8a66597, u16 pipenum) | ||
109 | { | ||
110 | u16 pid = 0; | ||
111 | unsigned long offset; | ||
112 | |||
113 | if (pipenum == 0) | ||
114 | pid = r8a66597_read(r8a66597, DCPCTR) & PID; | ||
115 | else if (pipenum < R8A66597_MAX_NUM_PIPE) { | ||
116 | offset = get_pipectr_addr(pipenum); | ||
117 | pid = r8a66597_read(r8a66597, offset) & PID; | ||
118 | } else | ||
119 | printk(KERN_ERR "unexpect pipe num (%d)\n", pipenum); | ||
120 | |||
121 | return pid; | ||
122 | } | ||
123 | |||
124 | static inline void control_reg_set_pid(struct r8a66597 *r8a66597, u16 pipenum, | ||
125 | u16 pid) | ||
126 | { | ||
127 | unsigned long offset; | ||
128 | |||
129 | if (pipenum == 0) | ||
130 | r8a66597_mdfy(r8a66597, pid, PID, DCPCTR); | ||
131 | else if (pipenum < R8A66597_MAX_NUM_PIPE) { | ||
132 | offset = get_pipectr_addr(pipenum); | ||
133 | r8a66597_mdfy(r8a66597, pid, PID, offset); | ||
134 | } else | ||
135 | printk(KERN_ERR "unexpect pipe num (%d)\n", pipenum); | ||
136 | } | ||
137 | |||
138 | static inline void pipe_start(struct r8a66597 *r8a66597, u16 pipenum) | ||
139 | { | ||
140 | control_reg_set_pid(r8a66597, pipenum, PID_BUF); | ||
141 | } | ||
142 | |||
143 | static inline void pipe_stop(struct r8a66597 *r8a66597, u16 pipenum) | ||
144 | { | ||
145 | control_reg_set_pid(r8a66597, pipenum, PID_NAK); | ||
146 | } | ||
147 | |||
148 | static inline void pipe_stall(struct r8a66597 *r8a66597, u16 pipenum) | ||
149 | { | ||
150 | control_reg_set_pid(r8a66597, pipenum, PID_STALL); | ||
151 | } | ||
152 | |||
153 | static inline u16 control_reg_get(struct r8a66597 *r8a66597, u16 pipenum) | ||
154 | { | ||
155 | u16 ret = 0; | ||
156 | unsigned long offset; | ||
157 | |||
158 | if (pipenum == 0) | ||
159 | ret = r8a66597_read(r8a66597, DCPCTR); | ||
160 | else if (pipenum < R8A66597_MAX_NUM_PIPE) { | ||
161 | offset = get_pipectr_addr(pipenum); | ||
162 | ret = r8a66597_read(r8a66597, offset); | ||
163 | } else | ||
164 | printk(KERN_ERR "unexpect pipe num (%d)\n", pipenum); | ||
165 | |||
166 | return ret; | ||
167 | } | ||
168 | |||
169 | static inline void control_reg_sqclr(struct r8a66597 *r8a66597, u16 pipenum) | ||
170 | { | ||
171 | unsigned long offset; | ||
172 | |||
173 | pipe_stop(r8a66597, pipenum); | ||
174 | |||
175 | if (pipenum == 0) | ||
176 | r8a66597_bset(r8a66597, SQCLR, DCPCTR); | ||
177 | else if (pipenum < R8A66597_MAX_NUM_PIPE) { | ||
178 | offset = get_pipectr_addr(pipenum); | ||
179 | r8a66597_bset(r8a66597, SQCLR, offset); | ||
180 | } else | ||
181 | printk(KERN_ERR "unexpect pipe num(%d)\n", pipenum); | ||
182 | } | ||
183 | |||
184 | static inline int get_buffer_size(struct r8a66597 *r8a66597, u16 pipenum) | ||
185 | { | ||
186 | u16 tmp; | ||
187 | int size; | ||
188 | |||
189 | if (pipenum == 0) { | ||
190 | tmp = r8a66597_read(r8a66597, DCPCFG); | ||
191 | if ((tmp & R8A66597_CNTMD) != 0) | ||
192 | size = 256; | ||
193 | else { | ||
194 | tmp = r8a66597_read(r8a66597, DCPMAXP); | ||
195 | size = tmp & MAXP; | ||
196 | } | ||
197 | } else { | ||
198 | r8a66597_write(r8a66597, pipenum, PIPESEL); | ||
199 | tmp = r8a66597_read(r8a66597, PIPECFG); | ||
200 | if ((tmp & R8A66597_CNTMD) != 0) { | ||
201 | tmp = r8a66597_read(r8a66597, PIPEBUF); | ||
202 | size = ((tmp >> 10) + 1) * 64; | ||
203 | } else { | ||
204 | tmp = r8a66597_read(r8a66597, PIPEMAXP); | ||
205 | size = tmp & MXPS; | ||
206 | } | ||
207 | } | ||
208 | |||
209 | return size; | ||
210 | } | ||
211 | |||
212 | static inline unsigned short mbw_value(struct r8a66597 *r8a66597) | ||
213 | { | ||
214 | if (r8a66597->pdata->on_chip) | ||
215 | return MBW_32; | ||
216 | else | ||
217 | return MBW_16; | ||
218 | } | ||
219 | |||
220 | static inline void pipe_change(struct r8a66597 *r8a66597, u16 pipenum) | ||
221 | { | ||
222 | struct r8a66597_ep *ep = r8a66597->pipenum2ep[pipenum]; | ||
223 | |||
224 | if (ep->use_dma) | ||
225 | return; | ||
226 | |||
227 | r8a66597_mdfy(r8a66597, pipenum, CURPIPE, ep->fifosel); | ||
228 | |||
229 | ndelay(450); | ||
230 | |||
231 | r8a66597_bset(r8a66597, mbw_value(r8a66597), ep->fifosel); | ||
232 | } | ||
233 | |||
234 | static int pipe_buffer_setting(struct r8a66597 *r8a66597, | ||
235 | struct r8a66597_pipe_info *info) | ||
236 | { | ||
237 | u16 bufnum = 0, buf_bsize = 0; | ||
238 | u16 pipecfg = 0; | ||
239 | |||
240 | if (info->pipe == 0) | ||
241 | return -EINVAL; | ||
242 | |||
243 | r8a66597_write(r8a66597, info->pipe, PIPESEL); | ||
244 | |||
245 | if (info->dir_in) | ||
246 | pipecfg |= R8A66597_DIR; | ||
247 | pipecfg |= info->type; | ||
248 | pipecfg |= info->epnum; | ||
249 | switch (info->type) { | ||
250 | case R8A66597_INT: | ||
251 | bufnum = 4 + (info->pipe - R8A66597_BASE_PIPENUM_INT); | ||
252 | buf_bsize = 0; | ||
253 | break; | ||
254 | case R8A66597_BULK: | ||
255 | /* isochronous pipes may be used as bulk pipes */ | ||
256 | if (info->pipe > R8A66597_BASE_PIPENUM_BULK) | ||
257 | bufnum = info->pipe - R8A66597_BASE_PIPENUM_BULK; | ||
258 | else | ||
259 | bufnum = info->pipe - R8A66597_BASE_PIPENUM_ISOC; | ||
260 | |||
261 | bufnum = R8A66597_BASE_BUFNUM + (bufnum * 16); | ||
262 | buf_bsize = 7; | ||
263 | pipecfg |= R8A66597_DBLB; | ||
264 | if (!info->dir_in) | ||
265 | pipecfg |= R8A66597_SHTNAK; | ||
266 | break; | ||
267 | case R8A66597_ISO: | ||
268 | bufnum = R8A66597_BASE_BUFNUM + | ||
269 | (info->pipe - R8A66597_BASE_PIPENUM_ISOC) * 16; | ||
270 | buf_bsize = 7; | ||
271 | break; | ||
272 | } | ||
273 | |||
274 | if (buf_bsize && ((bufnum + 16) >= R8A66597_MAX_BUFNUM)) { | ||
275 | pr_err(KERN_ERR "r8a66597 pipe memory is insufficient\n"); | ||
276 | return -ENOMEM; | ||
277 | } | ||
278 | |||
279 | r8a66597_write(r8a66597, pipecfg, PIPECFG); | ||
280 | r8a66597_write(r8a66597, (buf_bsize << 10) | (bufnum), PIPEBUF); | ||
281 | r8a66597_write(r8a66597, info->maxpacket, PIPEMAXP); | ||
282 | if (info->interval) | ||
283 | info->interval--; | ||
284 | r8a66597_write(r8a66597, info->interval, PIPEPERI); | ||
285 | |||
286 | return 0; | ||
287 | } | ||
288 | |||
289 | static void pipe_buffer_release(struct r8a66597 *r8a66597, | ||
290 | struct r8a66597_pipe_info *info) | ||
291 | { | ||
292 | if (info->pipe == 0) | ||
293 | return; | ||
294 | |||
295 | if (is_bulk_pipe(info->pipe)) | ||
296 | r8a66597->bulk--; | ||
297 | else if (is_interrupt_pipe(info->pipe)) | ||
298 | r8a66597->interrupt--; | ||
299 | else if (is_isoc_pipe(info->pipe)) { | ||
300 | r8a66597->isochronous--; | ||
301 | if (info->type == R8A66597_BULK) | ||
302 | r8a66597->bulk--; | ||
303 | } else | ||
304 | printk(KERN_ERR "ep_release: unexpect pipenum (%d)\n", | ||
305 | info->pipe); | ||
306 | } | ||
307 | |||
308 | static void pipe_initialize(struct r8a66597_ep *ep) | ||
309 | { | ||
310 | struct r8a66597 *r8a66597 = ep->r8a66597; | ||
311 | |||
312 | r8a66597_mdfy(r8a66597, 0, CURPIPE, ep->fifosel); | ||
313 | |||
314 | r8a66597_write(r8a66597, ACLRM, ep->pipectr); | ||
315 | r8a66597_write(r8a66597, 0, ep->pipectr); | ||
316 | r8a66597_write(r8a66597, SQCLR, ep->pipectr); | ||
317 | if (ep->use_dma) { | ||
318 | r8a66597_mdfy(r8a66597, ep->pipenum, CURPIPE, ep->fifosel); | ||
319 | |||
320 | ndelay(450); | ||
321 | |||
322 | r8a66597_bset(r8a66597, mbw_value(r8a66597), ep->fifosel); | ||
323 | } | ||
324 | } | ||
325 | |||
326 | static void r8a66597_ep_setting(struct r8a66597 *r8a66597, | ||
327 | struct r8a66597_ep *ep, | ||
328 | const struct usb_endpoint_descriptor *desc, | ||
329 | u16 pipenum, int dma) | ||
330 | { | ||
331 | ep->use_dma = 0; | ||
332 | ep->fifoaddr = CFIFO; | ||
333 | ep->fifosel = CFIFOSEL; | ||
334 | ep->fifoctr = CFIFOCTR; | ||
335 | ep->fifotrn = 0; | ||
336 | |||
337 | ep->pipectr = get_pipectr_addr(pipenum); | ||
338 | ep->pipenum = pipenum; | ||
339 | ep->ep.maxpacket = le16_to_cpu(desc->wMaxPacketSize); | ||
340 | r8a66597->pipenum2ep[pipenum] = ep; | ||
341 | r8a66597->epaddr2ep[desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK] | ||
342 | = ep; | ||
343 | INIT_LIST_HEAD(&ep->queue); | ||
344 | } | ||
345 | |||
346 | static void r8a66597_ep_release(struct r8a66597_ep *ep) | ||
347 | { | ||
348 | struct r8a66597 *r8a66597 = ep->r8a66597; | ||
349 | u16 pipenum = ep->pipenum; | ||
350 | |||
351 | if (pipenum == 0) | ||
352 | return; | ||
353 | |||
354 | if (ep->use_dma) | ||
355 | r8a66597->num_dma--; | ||
356 | ep->pipenum = 0; | ||
357 | ep->busy = 0; | ||
358 | ep->use_dma = 0; | ||
359 | } | ||
360 | |||
361 | static int alloc_pipe_config(struct r8a66597_ep *ep, | ||
362 | const struct usb_endpoint_descriptor *desc) | ||
363 | { | ||
364 | struct r8a66597 *r8a66597 = ep->r8a66597; | ||
365 | struct r8a66597_pipe_info info; | ||
366 | int dma = 0; | ||
367 | unsigned char *counter; | ||
368 | int ret; | ||
369 | |||
370 | ep->desc = desc; | ||
371 | |||
372 | if (ep->pipenum) /* already allocated pipe */ | ||
373 | return 0; | ||
374 | |||
375 | switch (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) { | ||
376 | case USB_ENDPOINT_XFER_BULK: | ||
377 | if (r8a66597->bulk >= R8A66597_MAX_NUM_BULK) { | ||
378 | if (r8a66597->isochronous >= R8A66597_MAX_NUM_ISOC) { | ||
379 | printk(KERN_ERR "bulk pipe is insufficient\n"); | ||
380 | return -ENODEV; | ||
381 | } else { | ||
382 | info.pipe = R8A66597_BASE_PIPENUM_ISOC | ||
383 | + r8a66597->isochronous; | ||
384 | counter = &r8a66597->isochronous; | ||
385 | } | ||
386 | } else { | ||
387 | info.pipe = R8A66597_BASE_PIPENUM_BULK + r8a66597->bulk; | ||
388 | counter = &r8a66597->bulk; | ||
389 | } | ||
390 | info.type = R8A66597_BULK; | ||
391 | dma = 1; | ||
392 | break; | ||
393 | case USB_ENDPOINT_XFER_INT: | ||
394 | if (r8a66597->interrupt >= R8A66597_MAX_NUM_INT) { | ||
395 | printk(KERN_ERR "interrupt pipe is insufficient\n"); | ||
396 | return -ENODEV; | ||
397 | } | ||
398 | info.pipe = R8A66597_BASE_PIPENUM_INT + r8a66597->interrupt; | ||
399 | info.type = R8A66597_INT; | ||
400 | counter = &r8a66597->interrupt; | ||
401 | break; | ||
402 | case USB_ENDPOINT_XFER_ISOC: | ||
403 | if (r8a66597->isochronous >= R8A66597_MAX_NUM_ISOC) { | ||
404 | printk(KERN_ERR "isochronous pipe is insufficient\n"); | ||
405 | return -ENODEV; | ||
406 | } | ||
407 | info.pipe = R8A66597_BASE_PIPENUM_ISOC + r8a66597->isochronous; | ||
408 | info.type = R8A66597_ISO; | ||
409 | counter = &r8a66597->isochronous; | ||
410 | break; | ||
411 | default: | ||
412 | printk(KERN_ERR "unexpect xfer type\n"); | ||
413 | return -EINVAL; | ||
414 | } | ||
415 | ep->type = info.type; | ||
416 | |||
417 | info.epnum = desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; | ||
418 | info.maxpacket = le16_to_cpu(desc->wMaxPacketSize); | ||
419 | info.interval = desc->bInterval; | ||
420 | if (desc->bEndpointAddress & USB_ENDPOINT_DIR_MASK) | ||
421 | info.dir_in = 1; | ||
422 | else | ||
423 | info.dir_in = 0; | ||
424 | |||
425 | ret = pipe_buffer_setting(r8a66597, &info); | ||
426 | if (ret < 0) { | ||
427 | printk(KERN_ERR "pipe_buffer_setting fail\n"); | ||
428 | return ret; | ||
429 | } | ||
430 | |||
431 | (*counter)++; | ||
432 | if ((counter == &r8a66597->isochronous) && info.type == R8A66597_BULK) | ||
433 | r8a66597->bulk++; | ||
434 | |||
435 | r8a66597_ep_setting(r8a66597, ep, desc, info.pipe, dma); | ||
436 | pipe_initialize(ep); | ||
437 | |||
438 | return 0; | ||
439 | } | ||
440 | |||
441 | static int free_pipe_config(struct r8a66597_ep *ep) | ||
442 | { | ||
443 | struct r8a66597 *r8a66597 = ep->r8a66597; | ||
444 | struct r8a66597_pipe_info info; | ||
445 | |||
446 | info.pipe = ep->pipenum; | ||
447 | info.type = ep->type; | ||
448 | pipe_buffer_release(r8a66597, &info); | ||
449 | r8a66597_ep_release(ep); | ||
450 | |||
451 | return 0; | ||
452 | } | ||
453 | |||
454 | /*-------------------------------------------------------------------------*/ | ||
455 | static void pipe_irq_enable(struct r8a66597 *r8a66597, u16 pipenum) | ||
456 | { | ||
457 | enable_irq_ready(r8a66597, pipenum); | ||
458 | enable_irq_nrdy(r8a66597, pipenum); | ||
459 | } | ||
460 | |||
461 | static void pipe_irq_disable(struct r8a66597 *r8a66597, u16 pipenum) | ||
462 | { | ||
463 | disable_irq_ready(r8a66597, pipenum); | ||
464 | disable_irq_nrdy(r8a66597, pipenum); | ||
465 | } | ||
466 | |||
467 | /* if complete is true, gadget driver complete function is not call */ | ||
468 | static void control_end(struct r8a66597 *r8a66597, unsigned ccpl) | ||
469 | { | ||
470 | r8a66597->ep[0].internal_ccpl = ccpl; | ||
471 | pipe_start(r8a66597, 0); | ||
472 | r8a66597_bset(r8a66597, CCPL, DCPCTR); | ||
473 | } | ||
474 | |||
475 | static void start_ep0_write(struct r8a66597_ep *ep, | ||
476 | struct r8a66597_request *req) | ||
477 | { | ||
478 | struct r8a66597 *r8a66597 = ep->r8a66597; | ||
479 | |||
480 | pipe_change(r8a66597, ep->pipenum); | ||
481 | r8a66597_mdfy(r8a66597, ISEL, (ISEL | CURPIPE), CFIFOSEL); | ||
482 | r8a66597_write(r8a66597, BCLR, ep->fifoctr); | ||
483 | if (req->req.length == 0) { | ||
484 | r8a66597_bset(r8a66597, BVAL, ep->fifoctr); | ||
485 | pipe_start(r8a66597, 0); | ||
486 | transfer_complete(ep, req, 0); | ||
487 | } else { | ||
488 | r8a66597_write(r8a66597, ~BEMP0, BEMPSTS); | ||
489 | irq_ep0_write(ep, req); | ||
490 | } | ||
491 | } | ||
492 | |||
493 | static void start_packet_write(struct r8a66597_ep *ep, | ||
494 | struct r8a66597_request *req) | ||
495 | { | ||
496 | struct r8a66597 *r8a66597 = ep->r8a66597; | ||
497 | u16 tmp; | ||
498 | |||
499 | pipe_change(r8a66597, ep->pipenum); | ||
500 | disable_irq_empty(r8a66597, ep->pipenum); | ||
501 | pipe_start(r8a66597, ep->pipenum); | ||
502 | |||
503 | tmp = r8a66597_read(r8a66597, ep->fifoctr); | ||
504 | if (unlikely((tmp & FRDY) == 0)) | ||
505 | pipe_irq_enable(r8a66597, ep->pipenum); | ||
506 | else | ||
507 | irq_packet_write(ep, req); | ||
508 | } | ||
509 | |||
510 | static void start_packet_read(struct r8a66597_ep *ep, | ||
511 | struct r8a66597_request *req) | ||
512 | { | ||
513 | struct r8a66597 *r8a66597 = ep->r8a66597; | ||
514 | u16 pipenum = ep->pipenum; | ||
515 | |||
516 | if (ep->pipenum == 0) { | ||
517 | r8a66597_mdfy(r8a66597, 0, (ISEL | CURPIPE), CFIFOSEL); | ||
518 | r8a66597_write(r8a66597, BCLR, ep->fifoctr); | ||
519 | pipe_start(r8a66597, pipenum); | ||
520 | pipe_irq_enable(r8a66597, pipenum); | ||
521 | } else { | ||
522 | if (ep->use_dma) { | ||
523 | r8a66597_bset(r8a66597, TRCLR, ep->fifosel); | ||
524 | pipe_change(r8a66597, pipenum); | ||
525 | r8a66597_bset(r8a66597, TRENB, ep->fifosel); | ||
526 | r8a66597_write(r8a66597, | ||
527 | (req->req.length + ep->ep.maxpacket - 1) | ||
528 | / ep->ep.maxpacket, | ||
529 | ep->fifotrn); | ||
530 | } | ||
531 | pipe_start(r8a66597, pipenum); /* trigger once */ | ||
532 | pipe_irq_enable(r8a66597, pipenum); | ||
533 | } | ||
534 | } | ||
535 | |||
536 | static void start_packet(struct r8a66597_ep *ep, struct r8a66597_request *req) | ||
537 | { | ||
538 | if (ep->desc->bEndpointAddress & USB_DIR_IN) | ||
539 | start_packet_write(ep, req); | ||
540 | else | ||
541 | start_packet_read(ep, req); | ||
542 | } | ||
543 | |||
544 | static void start_ep0(struct r8a66597_ep *ep, struct r8a66597_request *req) | ||
545 | { | ||
546 | u16 ctsq; | ||
547 | |||
548 | ctsq = r8a66597_read(ep->r8a66597, INTSTS0) & CTSQ; | ||
549 | |||
550 | switch (ctsq) { | ||
551 | case CS_RDDS: | ||
552 | start_ep0_write(ep, req); | ||
553 | break; | ||
554 | case CS_WRDS: | ||
555 | start_packet_read(ep, req); | ||
556 | break; | ||
557 | |||
558 | case CS_WRND: | ||
559 | control_end(ep->r8a66597, 0); | ||
560 | break; | ||
561 | default: | ||
562 | printk(KERN_ERR "start_ep0: unexpect ctsq(%x)\n", ctsq); | ||
563 | break; | ||
564 | } | ||
565 | } | ||
566 | |||
567 | static void init_controller(struct r8a66597 *r8a66597) | ||
568 | { | ||
569 | u16 vif = r8a66597->pdata->vif ? LDRV : 0; | ||
570 | u16 irq_sense = r8a66597->irq_sense_low ? INTL : 0; | ||
571 | u16 endian = r8a66597->pdata->endian ? BIGEND : 0; | ||
572 | |||
573 | if (r8a66597->pdata->on_chip) { | ||
574 | r8a66597_bset(r8a66597, 0x04, SYSCFG1); | ||
575 | r8a66597_bset(r8a66597, HSE, SYSCFG0); | ||
576 | |||
577 | r8a66597_bclr(r8a66597, USBE, SYSCFG0); | ||
578 | r8a66597_bclr(r8a66597, DPRPU, SYSCFG0); | ||
579 | r8a66597_bset(r8a66597, USBE, SYSCFG0); | ||
580 | |||
581 | r8a66597_bset(r8a66597, SCKE, SYSCFG0); | ||
582 | |||
583 | r8a66597_bset(r8a66597, irq_sense, INTENB1); | ||
584 | r8a66597_write(r8a66597, BURST | CPU_ADR_RD_WR, | ||
585 | DMA0CFG); | ||
586 | } else { | ||
587 | r8a66597_bset(r8a66597, vif | endian, PINCFG); | ||
588 | r8a66597_bset(r8a66597, HSE, SYSCFG0); /* High spd */ | ||
589 | r8a66597_mdfy(r8a66597, get_xtal_from_pdata(r8a66597->pdata), | ||
590 | XTAL, SYSCFG0); | ||
591 | |||
592 | r8a66597_bclr(r8a66597, USBE, SYSCFG0); | ||
593 | r8a66597_bclr(r8a66597, DPRPU, SYSCFG0); | ||
594 | r8a66597_bset(r8a66597, USBE, SYSCFG0); | ||
595 | |||
596 | r8a66597_bset(r8a66597, XCKE, SYSCFG0); | ||
597 | |||
598 | msleep(3); | ||
599 | |||
600 | r8a66597_bset(r8a66597, PLLC, SYSCFG0); | ||
601 | |||
602 | msleep(1); | ||
603 | |||
604 | r8a66597_bset(r8a66597, SCKE, SYSCFG0); | ||
605 | |||
606 | r8a66597_bset(r8a66597, irq_sense, INTENB1); | ||
607 | r8a66597_write(r8a66597, BURST | CPU_ADR_RD_WR, | ||
608 | DMA0CFG); | ||
609 | } | ||
610 | } | ||
611 | |||
612 | static void disable_controller(struct r8a66597 *r8a66597) | ||
613 | { | ||
614 | if (r8a66597->pdata->on_chip) { | ||
615 | r8a66597_bset(r8a66597, SCKE, SYSCFG0); | ||
616 | |||
617 | /* disable interrupts */ | ||
618 | r8a66597_write(r8a66597, 0, INTENB0); | ||
619 | r8a66597_write(r8a66597, 0, INTENB1); | ||
620 | r8a66597_write(r8a66597, 0, BRDYENB); | ||
621 | r8a66597_write(r8a66597, 0, BEMPENB); | ||
622 | r8a66597_write(r8a66597, 0, NRDYENB); | ||
623 | |||
624 | /* clear status */ | ||
625 | r8a66597_write(r8a66597, 0, BRDYSTS); | ||
626 | r8a66597_write(r8a66597, 0, NRDYSTS); | ||
627 | r8a66597_write(r8a66597, 0, BEMPSTS); | ||
628 | |||
629 | r8a66597_bclr(r8a66597, USBE, SYSCFG0); | ||
630 | r8a66597_bclr(r8a66597, SCKE, SYSCFG0); | ||
631 | |||
632 | } else { | ||
633 | r8a66597_bclr(r8a66597, SCKE, SYSCFG0); | ||
634 | udelay(1); | ||
635 | r8a66597_bclr(r8a66597, PLLC, SYSCFG0); | ||
636 | udelay(1); | ||
637 | udelay(1); | ||
638 | r8a66597_bclr(r8a66597, XCKE, SYSCFG0); | ||
639 | } | ||
640 | } | ||
641 | |||
642 | static void r8a66597_start_xclock(struct r8a66597 *r8a66597) | ||
643 | { | ||
644 | u16 tmp; | ||
645 | |||
646 | if (!r8a66597->pdata->on_chip) { | ||
647 | tmp = r8a66597_read(r8a66597, SYSCFG0); | ||
648 | if (!(tmp & XCKE)) | ||
649 | r8a66597_bset(r8a66597, XCKE, SYSCFG0); | ||
650 | } | ||
651 | } | ||
652 | |||
653 | static struct r8a66597_request *get_request_from_ep(struct r8a66597_ep *ep) | ||
654 | { | ||
655 | return list_entry(ep->queue.next, struct r8a66597_request, queue); | ||
656 | } | ||
657 | |||
658 | /*-------------------------------------------------------------------------*/ | ||
659 | static void transfer_complete(struct r8a66597_ep *ep, | ||
660 | struct r8a66597_request *req, int status) | ||
661 | __releases(r8a66597->lock) | ||
662 | __acquires(r8a66597->lock) | ||
663 | { | ||
664 | int restart = 0; | ||
665 | |||
666 | if (unlikely(ep->pipenum == 0)) { | ||
667 | if (ep->internal_ccpl) { | ||
668 | ep->internal_ccpl = 0; | ||
669 | return; | ||
670 | } | ||
671 | } | ||
672 | |||
673 | list_del_init(&req->queue); | ||
674 | if (ep->r8a66597->gadget.speed == USB_SPEED_UNKNOWN) | ||
675 | req->req.status = -ESHUTDOWN; | ||
676 | else | ||
677 | req->req.status = status; | ||
678 | |||
679 | if (!list_empty(&ep->queue)) | ||
680 | restart = 1; | ||
681 | |||
682 | spin_unlock(&ep->r8a66597->lock); | ||
683 | req->req.complete(&ep->ep, &req->req); | ||
684 | spin_lock(&ep->r8a66597->lock); | ||
685 | |||
686 | if (restart) { | ||
687 | req = get_request_from_ep(ep); | ||
688 | if (ep->desc) | ||
689 | start_packet(ep, req); | ||
690 | } | ||
691 | } | ||
692 | |||
693 | static void irq_ep0_write(struct r8a66597_ep *ep, struct r8a66597_request *req) | ||
694 | { | ||
695 | int i; | ||
696 | u16 tmp; | ||
697 | unsigned bufsize; | ||
698 | size_t size; | ||
699 | void *buf; | ||
700 | u16 pipenum = ep->pipenum; | ||
701 | struct r8a66597 *r8a66597 = ep->r8a66597; | ||
702 | |||
703 | pipe_change(r8a66597, pipenum); | ||
704 | r8a66597_bset(r8a66597, ISEL, ep->fifosel); | ||
705 | |||
706 | i = 0; | ||
707 | do { | ||
708 | tmp = r8a66597_read(r8a66597, ep->fifoctr); | ||
709 | if (i++ > 100000) { | ||
710 | printk(KERN_ERR "pipe0 is busy. maybe cpu i/o bus" | ||
711 | "conflict. please power off this controller."); | ||
712 | return; | ||
713 | } | ||
714 | ndelay(1); | ||
715 | } while ((tmp & FRDY) == 0); | ||
716 | |||
717 | /* prepare parameters */ | ||
718 | bufsize = get_buffer_size(r8a66597, pipenum); | ||
719 | buf = req->req.buf + req->req.actual; | ||
720 | size = min(bufsize, req->req.length - req->req.actual); | ||
721 | |||
722 | /* write fifo */ | ||
723 | if (req->req.buf) { | ||
724 | if (size > 0) | ||
725 | r8a66597_write_fifo(r8a66597, ep->fifoaddr, buf, size); | ||
726 | if ((size == 0) || ((size % ep->ep.maxpacket) != 0)) | ||
727 | r8a66597_bset(r8a66597, BVAL, ep->fifoctr); | ||
728 | } | ||
729 | |||
730 | /* update parameters */ | ||
731 | req->req.actual += size; | ||
732 | |||
733 | /* check transfer finish */ | ||
734 | if ((!req->req.zero && (req->req.actual == req->req.length)) | ||
735 | || (size % ep->ep.maxpacket) | ||
736 | || (size == 0)) { | ||
737 | disable_irq_ready(r8a66597, pipenum); | ||
738 | disable_irq_empty(r8a66597, pipenum); | ||
739 | } else { | ||
740 | disable_irq_ready(r8a66597, pipenum); | ||
741 | enable_irq_empty(r8a66597, pipenum); | ||
742 | } | ||
743 | pipe_start(r8a66597, pipenum); | ||
744 | } | ||
745 | |||
746 | static void irq_packet_write(struct r8a66597_ep *ep, | ||
747 | struct r8a66597_request *req) | ||
748 | { | ||
749 | u16 tmp; | ||
750 | unsigned bufsize; | ||
751 | size_t size; | ||
752 | void *buf; | ||
753 | u16 pipenum = ep->pipenum; | ||
754 | struct r8a66597 *r8a66597 = ep->r8a66597; | ||
755 | |||
756 | pipe_change(r8a66597, pipenum); | ||
757 | tmp = r8a66597_read(r8a66597, ep->fifoctr); | ||
758 | if (unlikely((tmp & FRDY) == 0)) { | ||
759 | pipe_stop(r8a66597, pipenum); | ||
760 | pipe_irq_disable(r8a66597, pipenum); | ||
761 | printk(KERN_ERR "write fifo not ready. pipnum=%d\n", pipenum); | ||
762 | return; | ||
763 | } | ||
764 | |||
765 | /* prepare parameters */ | ||
766 | bufsize = get_buffer_size(r8a66597, pipenum); | ||
767 | buf = req->req.buf + req->req.actual; | ||
768 | size = min(bufsize, req->req.length - req->req.actual); | ||
769 | |||
770 | /* write fifo */ | ||
771 | if (req->req.buf) { | ||
772 | r8a66597_write_fifo(r8a66597, ep->fifoaddr, buf, size); | ||
773 | if ((size == 0) | ||
774 | || ((size % ep->ep.maxpacket) != 0) | ||
775 | || ((bufsize != ep->ep.maxpacket) | ||
776 | && (bufsize > size))) | ||
777 | r8a66597_bset(r8a66597, BVAL, ep->fifoctr); | ||
778 | } | ||
779 | |||
780 | /* update parameters */ | ||
781 | req->req.actual += size; | ||
782 | /* check transfer finish */ | ||
783 | if ((!req->req.zero && (req->req.actual == req->req.length)) | ||
784 | || (size % ep->ep.maxpacket) | ||
785 | || (size == 0)) { | ||
786 | disable_irq_ready(r8a66597, pipenum); | ||
787 | enable_irq_empty(r8a66597, pipenum); | ||
788 | } else { | ||
789 | disable_irq_empty(r8a66597, pipenum); | ||
790 | pipe_irq_enable(r8a66597, pipenum); | ||
791 | } | ||
792 | } | ||
793 | |||
794 | static void irq_packet_read(struct r8a66597_ep *ep, | ||
795 | struct r8a66597_request *req) | ||
796 | { | ||
797 | u16 tmp; | ||
798 | int rcv_len, bufsize, req_len; | ||
799 | int size; | ||
800 | void *buf; | ||
801 | u16 pipenum = ep->pipenum; | ||
802 | struct r8a66597 *r8a66597 = ep->r8a66597; | ||
803 | int finish = 0; | ||
804 | |||
805 | pipe_change(r8a66597, pipenum); | ||
806 | tmp = r8a66597_read(r8a66597, ep->fifoctr); | ||
807 | if (unlikely((tmp & FRDY) == 0)) { | ||
808 | req->req.status = -EPIPE; | ||
809 | pipe_stop(r8a66597, pipenum); | ||
810 | pipe_irq_disable(r8a66597, pipenum); | ||
811 | printk(KERN_ERR "read fifo not ready"); | ||
812 | return; | ||
813 | } | ||
814 | |||
815 | /* prepare parameters */ | ||
816 | rcv_len = tmp & DTLN; | ||
817 | bufsize = get_buffer_size(r8a66597, pipenum); | ||
818 | |||
819 | buf = req->req.buf + req->req.actual; | ||
820 | req_len = req->req.length - req->req.actual; | ||
821 | if (rcv_len < bufsize) | ||
822 | size = min(rcv_len, req_len); | ||
823 | else | ||
824 | size = min(bufsize, req_len); | ||
825 | |||
826 | /* update parameters */ | ||
827 | req->req.actual += size; | ||
828 | |||
829 | /* check transfer finish */ | ||
830 | if ((!req->req.zero && (req->req.actual == req->req.length)) | ||
831 | || (size % ep->ep.maxpacket) | ||
832 | || (size == 0)) { | ||
833 | pipe_stop(r8a66597, pipenum); | ||
834 | pipe_irq_disable(r8a66597, pipenum); | ||
835 | finish = 1; | ||
836 | } | ||
837 | |||
838 | /* read fifo */ | ||
839 | if (req->req.buf) { | ||
840 | if (size == 0) | ||
841 | r8a66597_write(r8a66597, BCLR, ep->fifoctr); | ||
842 | else | ||
843 | r8a66597_read_fifo(r8a66597, ep->fifoaddr, buf, size); | ||
844 | |||
845 | } | ||
846 | |||
847 | if ((ep->pipenum != 0) && finish) | ||
848 | transfer_complete(ep, req, 0); | ||
849 | } | ||
850 | |||
851 | static void irq_pipe_ready(struct r8a66597 *r8a66597, u16 status, u16 enb) | ||
852 | { | ||
853 | u16 check; | ||
854 | u16 pipenum; | ||
855 | struct r8a66597_ep *ep; | ||
856 | struct r8a66597_request *req; | ||
857 | |||
858 | if ((status & BRDY0) && (enb & BRDY0)) { | ||
859 | r8a66597_write(r8a66597, ~BRDY0, BRDYSTS); | ||
860 | r8a66597_mdfy(r8a66597, 0, CURPIPE, CFIFOSEL); | ||
861 | |||
862 | ep = &r8a66597->ep[0]; | ||
863 | req = get_request_from_ep(ep); | ||
864 | irq_packet_read(ep, req); | ||
865 | } else { | ||
866 | for (pipenum = 1; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) { | ||
867 | check = 1 << pipenum; | ||
868 | if ((status & check) && (enb & check)) { | ||
869 | r8a66597_write(r8a66597, ~check, BRDYSTS); | ||
870 | ep = r8a66597->pipenum2ep[pipenum]; | ||
871 | req = get_request_from_ep(ep); | ||
872 | if (ep->desc->bEndpointAddress & USB_DIR_IN) | ||
873 | irq_packet_write(ep, req); | ||
874 | else | ||
875 | irq_packet_read(ep, req); | ||
876 | } | ||
877 | } | ||
878 | } | ||
879 | } | ||
880 | |||
881 | static void irq_pipe_empty(struct r8a66597 *r8a66597, u16 status, u16 enb) | ||
882 | { | ||
883 | u16 tmp; | ||
884 | u16 check; | ||
885 | u16 pipenum; | ||
886 | struct r8a66597_ep *ep; | ||
887 | struct r8a66597_request *req; | ||
888 | |||
889 | if ((status & BEMP0) && (enb & BEMP0)) { | ||
890 | r8a66597_write(r8a66597, ~BEMP0, BEMPSTS); | ||
891 | |||
892 | ep = &r8a66597->ep[0]; | ||
893 | req = get_request_from_ep(ep); | ||
894 | irq_ep0_write(ep, req); | ||
895 | } else { | ||
896 | for (pipenum = 1; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) { | ||
897 | check = 1 << pipenum; | ||
898 | if ((status & check) && (enb & check)) { | ||
899 | r8a66597_write(r8a66597, ~check, BEMPSTS); | ||
900 | tmp = control_reg_get(r8a66597, pipenum); | ||
901 | if ((tmp & INBUFM) == 0) { | ||
902 | disable_irq_empty(r8a66597, pipenum); | ||
903 | pipe_irq_disable(r8a66597, pipenum); | ||
904 | pipe_stop(r8a66597, pipenum); | ||
905 | ep = r8a66597->pipenum2ep[pipenum]; | ||
906 | req = get_request_from_ep(ep); | ||
907 | if (!list_empty(&ep->queue)) | ||
908 | transfer_complete(ep, req, 0); | ||
909 | } | ||
910 | } | ||
911 | } | ||
912 | } | ||
913 | } | ||
914 | |||
915 | static void get_status(struct r8a66597 *r8a66597, struct usb_ctrlrequest *ctrl) | ||
916 | __releases(r8a66597->lock) | ||
917 | __acquires(r8a66597->lock) | ||
918 | { | ||
919 | struct r8a66597_ep *ep; | ||
920 | u16 pid; | ||
921 | u16 status = 0; | ||
922 | u16 w_index = le16_to_cpu(ctrl->wIndex); | ||
923 | |||
924 | switch (ctrl->bRequestType & USB_RECIP_MASK) { | ||
925 | case USB_RECIP_DEVICE: | ||
926 | status = 1 << USB_DEVICE_SELF_POWERED; | ||
927 | break; | ||
928 | case USB_RECIP_INTERFACE: | ||
929 | status = 0; | ||
930 | break; | ||
931 | case USB_RECIP_ENDPOINT: | ||
932 | ep = r8a66597->epaddr2ep[w_index & USB_ENDPOINT_NUMBER_MASK]; | ||
933 | pid = control_reg_get_pid(r8a66597, ep->pipenum); | ||
934 | if (pid == PID_STALL) | ||
935 | status = 1 << USB_ENDPOINT_HALT; | ||
936 | else | ||
937 | status = 0; | ||
938 | break; | ||
939 | default: | ||
940 | pipe_stall(r8a66597, 0); | ||
941 | return; /* exit */ | ||
942 | } | ||
943 | |||
944 | r8a66597->ep0_data = cpu_to_le16(status); | ||
945 | r8a66597->ep0_req->buf = &r8a66597->ep0_data; | ||
946 | r8a66597->ep0_req->length = 2; | ||
947 | /* AV: what happens if we get called again before that gets through? */ | ||
948 | spin_unlock(&r8a66597->lock); | ||
949 | r8a66597_queue(r8a66597->gadget.ep0, r8a66597->ep0_req, GFP_KERNEL); | ||
950 | spin_lock(&r8a66597->lock); | ||
951 | } | ||
952 | |||
953 | static void clear_feature(struct r8a66597 *r8a66597, | ||
954 | struct usb_ctrlrequest *ctrl) | ||
955 | { | ||
956 | switch (ctrl->bRequestType & USB_RECIP_MASK) { | ||
957 | case USB_RECIP_DEVICE: | ||
958 | control_end(r8a66597, 1); | ||
959 | break; | ||
960 | case USB_RECIP_INTERFACE: | ||
961 | control_end(r8a66597, 1); | ||
962 | break; | ||
963 | case USB_RECIP_ENDPOINT: { | ||
964 | struct r8a66597_ep *ep; | ||
965 | struct r8a66597_request *req; | ||
966 | u16 w_index = le16_to_cpu(ctrl->wIndex); | ||
967 | |||
968 | ep = r8a66597->epaddr2ep[w_index & USB_ENDPOINT_NUMBER_MASK]; | ||
969 | if (!ep->wedge) { | ||
970 | pipe_stop(r8a66597, ep->pipenum); | ||
971 | control_reg_sqclr(r8a66597, ep->pipenum); | ||
972 | spin_unlock(&r8a66597->lock); | ||
973 | usb_ep_clear_halt(&ep->ep); | ||
974 | spin_lock(&r8a66597->lock); | ||
975 | } | ||
976 | |||
977 | control_end(r8a66597, 1); | ||
978 | |||
979 | req = get_request_from_ep(ep); | ||
980 | if (ep->busy) { | ||
981 | ep->busy = 0; | ||
982 | if (list_empty(&ep->queue)) | ||
983 | break; | ||
984 | start_packet(ep, req); | ||
985 | } else if (!list_empty(&ep->queue)) | ||
986 | pipe_start(r8a66597, ep->pipenum); | ||
987 | } | ||
988 | break; | ||
989 | default: | ||
990 | pipe_stall(r8a66597, 0); | ||
991 | break; | ||
992 | } | ||
993 | } | ||
994 | |||
995 | static void set_feature(struct r8a66597 *r8a66597, struct usb_ctrlrequest *ctrl) | ||
996 | { | ||
997 | |||
998 | switch (ctrl->bRequestType & USB_RECIP_MASK) { | ||
999 | case USB_RECIP_DEVICE: | ||
1000 | control_end(r8a66597, 1); | ||
1001 | break; | ||
1002 | case USB_RECIP_INTERFACE: | ||
1003 | control_end(r8a66597, 1); | ||
1004 | break; | ||
1005 | case USB_RECIP_ENDPOINT: { | ||
1006 | struct r8a66597_ep *ep; | ||
1007 | u16 w_index = le16_to_cpu(ctrl->wIndex); | ||
1008 | |||
1009 | ep = r8a66597->epaddr2ep[w_index & USB_ENDPOINT_NUMBER_MASK]; | ||
1010 | pipe_stall(r8a66597, ep->pipenum); | ||
1011 | |||
1012 | control_end(r8a66597, 1); | ||
1013 | } | ||
1014 | break; | ||
1015 | default: | ||
1016 | pipe_stall(r8a66597, 0); | ||
1017 | break; | ||
1018 | } | ||
1019 | } | ||
1020 | |||
1021 | /* if return value is true, call class driver's setup() */ | ||
1022 | static int setup_packet(struct r8a66597 *r8a66597, struct usb_ctrlrequest *ctrl) | ||
1023 | { | ||
1024 | u16 *p = (u16 *)ctrl; | ||
1025 | unsigned long offset = USBREQ; | ||
1026 | int i, ret = 0; | ||
1027 | |||
1028 | /* read fifo */ | ||
1029 | r8a66597_write(r8a66597, ~VALID, INTSTS0); | ||
1030 | |||
1031 | for (i = 0; i < 4; i++) | ||
1032 | p[i] = r8a66597_read(r8a66597, offset + i*2); | ||
1033 | |||
1034 | /* check request */ | ||
1035 | if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) { | ||
1036 | switch (ctrl->bRequest) { | ||
1037 | case USB_REQ_GET_STATUS: | ||
1038 | get_status(r8a66597, ctrl); | ||
1039 | break; | ||
1040 | case USB_REQ_CLEAR_FEATURE: | ||
1041 | clear_feature(r8a66597, ctrl); | ||
1042 | break; | ||
1043 | case USB_REQ_SET_FEATURE: | ||
1044 | set_feature(r8a66597, ctrl); | ||
1045 | break; | ||
1046 | default: | ||
1047 | ret = 1; | ||
1048 | break; | ||
1049 | } | ||
1050 | } else | ||
1051 | ret = 1; | ||
1052 | return ret; | ||
1053 | } | ||
1054 | |||
1055 | static void r8a66597_update_usb_speed(struct r8a66597 *r8a66597) | ||
1056 | { | ||
1057 | u16 speed = get_usb_speed(r8a66597); | ||
1058 | |||
1059 | switch (speed) { | ||
1060 | case HSMODE: | ||
1061 | r8a66597->gadget.speed = USB_SPEED_HIGH; | ||
1062 | break; | ||
1063 | case FSMODE: | ||
1064 | r8a66597->gadget.speed = USB_SPEED_FULL; | ||
1065 | break; | ||
1066 | default: | ||
1067 | r8a66597->gadget.speed = USB_SPEED_UNKNOWN; | ||
1068 | printk(KERN_ERR "USB speed unknown\n"); | ||
1069 | } | ||
1070 | } | ||
1071 | |||
1072 | static void irq_device_state(struct r8a66597 *r8a66597) | ||
1073 | { | ||
1074 | u16 dvsq; | ||
1075 | |||
1076 | dvsq = r8a66597_read(r8a66597, INTSTS0) & DVSQ; | ||
1077 | r8a66597_write(r8a66597, ~DVST, INTSTS0); | ||
1078 | |||
1079 | if (dvsq == DS_DFLT) { | ||
1080 | /* bus reset */ | ||
1081 | r8a66597->driver->disconnect(&r8a66597->gadget); | ||
1082 | r8a66597_update_usb_speed(r8a66597); | ||
1083 | } | ||
1084 | if (r8a66597->old_dvsq == DS_CNFG && dvsq != DS_CNFG) | ||
1085 | r8a66597_update_usb_speed(r8a66597); | ||
1086 | if ((dvsq == DS_CNFG || dvsq == DS_ADDS) | ||
1087 | && r8a66597->gadget.speed == USB_SPEED_UNKNOWN) | ||
1088 | r8a66597_update_usb_speed(r8a66597); | ||
1089 | |||
1090 | r8a66597->old_dvsq = dvsq; | ||
1091 | } | ||
1092 | |||
1093 | static void irq_control_stage(struct r8a66597 *r8a66597) | ||
1094 | __releases(r8a66597->lock) | ||
1095 | __acquires(r8a66597->lock) | ||
1096 | { | ||
1097 | struct usb_ctrlrequest ctrl; | ||
1098 | u16 ctsq; | ||
1099 | |||
1100 | ctsq = r8a66597_read(r8a66597, INTSTS0) & CTSQ; | ||
1101 | r8a66597_write(r8a66597, ~CTRT, INTSTS0); | ||
1102 | |||
1103 | switch (ctsq) { | ||
1104 | case CS_IDST: { | ||
1105 | struct r8a66597_ep *ep; | ||
1106 | struct r8a66597_request *req; | ||
1107 | ep = &r8a66597->ep[0]; | ||
1108 | req = get_request_from_ep(ep); | ||
1109 | transfer_complete(ep, req, 0); | ||
1110 | } | ||
1111 | break; | ||
1112 | |||
1113 | case CS_RDDS: | ||
1114 | case CS_WRDS: | ||
1115 | case CS_WRND: | ||
1116 | if (setup_packet(r8a66597, &ctrl)) { | ||
1117 | spin_unlock(&r8a66597->lock); | ||
1118 | if (r8a66597->driver->setup(&r8a66597->gadget, &ctrl) | ||
1119 | < 0) | ||
1120 | pipe_stall(r8a66597, 0); | ||
1121 | spin_lock(&r8a66597->lock); | ||
1122 | } | ||
1123 | break; | ||
1124 | case CS_RDSS: | ||
1125 | case CS_WRSS: | ||
1126 | control_end(r8a66597, 0); | ||
1127 | break; | ||
1128 | default: | ||
1129 | printk(KERN_ERR "ctrl_stage: unexpect ctsq(%x)\n", ctsq); | ||
1130 | break; | ||
1131 | } | ||
1132 | } | ||
1133 | |||
1134 | static irqreturn_t r8a66597_irq(int irq, void *_r8a66597) | ||
1135 | { | ||
1136 | struct r8a66597 *r8a66597 = _r8a66597; | ||
1137 | u16 intsts0; | ||
1138 | u16 intenb0; | ||
1139 | u16 brdysts, nrdysts, bempsts; | ||
1140 | u16 brdyenb, nrdyenb, bempenb; | ||
1141 | u16 savepipe; | ||
1142 | u16 mask0; | ||
1143 | |||
1144 | spin_lock(&r8a66597->lock); | ||
1145 | |||
1146 | intsts0 = r8a66597_read(r8a66597, INTSTS0); | ||
1147 | intenb0 = r8a66597_read(r8a66597, INTENB0); | ||
1148 | |||
1149 | savepipe = r8a66597_read(r8a66597, CFIFOSEL); | ||
1150 | |||
1151 | mask0 = intsts0 & intenb0; | ||
1152 | if (mask0) { | ||
1153 | brdysts = r8a66597_read(r8a66597, BRDYSTS); | ||
1154 | nrdysts = r8a66597_read(r8a66597, NRDYSTS); | ||
1155 | bempsts = r8a66597_read(r8a66597, BEMPSTS); | ||
1156 | brdyenb = r8a66597_read(r8a66597, BRDYENB); | ||
1157 | nrdyenb = r8a66597_read(r8a66597, NRDYENB); | ||
1158 | bempenb = r8a66597_read(r8a66597, BEMPENB); | ||
1159 | |||
1160 | if (mask0 & VBINT) { | ||
1161 | r8a66597_write(r8a66597, 0xffff & ~VBINT, | ||
1162 | INTSTS0); | ||
1163 | r8a66597_start_xclock(r8a66597); | ||
1164 | |||
1165 | /* start vbus sampling */ | ||
1166 | r8a66597->old_vbus = r8a66597_read(r8a66597, INTSTS0) | ||
1167 | & VBSTS; | ||
1168 | r8a66597->scount = R8A66597_MAX_SAMPLING; | ||
1169 | |||
1170 | mod_timer(&r8a66597->timer, | ||
1171 | jiffies + msecs_to_jiffies(50)); | ||
1172 | } | ||
1173 | if (intsts0 & DVSQ) | ||
1174 | irq_device_state(r8a66597); | ||
1175 | |||
1176 | if ((intsts0 & BRDY) && (intenb0 & BRDYE) | ||
1177 | && (brdysts & brdyenb)) | ||
1178 | irq_pipe_ready(r8a66597, brdysts, brdyenb); | ||
1179 | if ((intsts0 & BEMP) && (intenb0 & BEMPE) | ||
1180 | && (bempsts & bempenb)) | ||
1181 | irq_pipe_empty(r8a66597, bempsts, bempenb); | ||
1182 | |||
1183 | if (intsts0 & CTRT) | ||
1184 | irq_control_stage(r8a66597); | ||
1185 | } | ||
1186 | |||
1187 | r8a66597_write(r8a66597, savepipe, CFIFOSEL); | ||
1188 | |||
1189 | spin_unlock(&r8a66597->lock); | ||
1190 | return IRQ_HANDLED; | ||
1191 | } | ||
1192 | |||
1193 | static void r8a66597_timer(unsigned long _r8a66597) | ||
1194 | { | ||
1195 | struct r8a66597 *r8a66597 = (struct r8a66597 *)_r8a66597; | ||
1196 | unsigned long flags; | ||
1197 | u16 tmp; | ||
1198 | |||
1199 | spin_lock_irqsave(&r8a66597->lock, flags); | ||
1200 | tmp = r8a66597_read(r8a66597, SYSCFG0); | ||
1201 | if (r8a66597->scount > 0) { | ||
1202 | tmp = r8a66597_read(r8a66597, INTSTS0) & VBSTS; | ||
1203 | if (tmp == r8a66597->old_vbus) { | ||
1204 | r8a66597->scount--; | ||
1205 | if (r8a66597->scount == 0) { | ||
1206 | if (tmp == VBSTS) | ||
1207 | r8a66597_usb_connect(r8a66597); | ||
1208 | else | ||
1209 | r8a66597_usb_disconnect(r8a66597); | ||
1210 | } else { | ||
1211 | mod_timer(&r8a66597->timer, | ||
1212 | jiffies + msecs_to_jiffies(50)); | ||
1213 | } | ||
1214 | } else { | ||
1215 | r8a66597->scount = R8A66597_MAX_SAMPLING; | ||
1216 | r8a66597->old_vbus = tmp; | ||
1217 | mod_timer(&r8a66597->timer, | ||
1218 | jiffies + msecs_to_jiffies(50)); | ||
1219 | } | ||
1220 | } | ||
1221 | spin_unlock_irqrestore(&r8a66597->lock, flags); | ||
1222 | } | ||
1223 | |||
1224 | /*-------------------------------------------------------------------------*/ | ||
1225 | static int r8a66597_enable(struct usb_ep *_ep, | ||
1226 | const struct usb_endpoint_descriptor *desc) | ||
1227 | { | ||
1228 | struct r8a66597_ep *ep; | ||
1229 | |||
1230 | ep = container_of(_ep, struct r8a66597_ep, ep); | ||
1231 | return alloc_pipe_config(ep, desc); | ||
1232 | } | ||
1233 | |||
1234 | static int r8a66597_disable(struct usb_ep *_ep) | ||
1235 | { | ||
1236 | struct r8a66597_ep *ep; | ||
1237 | struct r8a66597_request *req; | ||
1238 | unsigned long flags; | ||
1239 | |||
1240 | ep = container_of(_ep, struct r8a66597_ep, ep); | ||
1241 | BUG_ON(!ep); | ||
1242 | |||
1243 | while (!list_empty(&ep->queue)) { | ||
1244 | req = get_request_from_ep(ep); | ||
1245 | spin_lock_irqsave(&ep->r8a66597->lock, flags); | ||
1246 | transfer_complete(ep, req, -ECONNRESET); | ||
1247 | spin_unlock_irqrestore(&ep->r8a66597->lock, flags); | ||
1248 | } | ||
1249 | |||
1250 | pipe_irq_disable(ep->r8a66597, ep->pipenum); | ||
1251 | return free_pipe_config(ep); | ||
1252 | } | ||
1253 | |||
1254 | static struct usb_request *r8a66597_alloc_request(struct usb_ep *_ep, | ||
1255 | gfp_t gfp_flags) | ||
1256 | { | ||
1257 | struct r8a66597_request *req; | ||
1258 | |||
1259 | req = kzalloc(sizeof(struct r8a66597_request), gfp_flags); | ||
1260 | if (!req) | ||
1261 | return NULL; | ||
1262 | |||
1263 | INIT_LIST_HEAD(&req->queue); | ||
1264 | |||
1265 | return &req->req; | ||
1266 | } | ||
1267 | |||
1268 | static void r8a66597_free_request(struct usb_ep *_ep, struct usb_request *_req) | ||
1269 | { | ||
1270 | struct r8a66597_request *req; | ||
1271 | |||
1272 | req = container_of(_req, struct r8a66597_request, req); | ||
1273 | kfree(req); | ||
1274 | } | ||
1275 | |||
1276 | static int r8a66597_queue(struct usb_ep *_ep, struct usb_request *_req, | ||
1277 | gfp_t gfp_flags) | ||
1278 | { | ||
1279 | struct r8a66597_ep *ep; | ||
1280 | struct r8a66597_request *req; | ||
1281 | unsigned long flags; | ||
1282 | int request = 0; | ||
1283 | |||
1284 | ep = container_of(_ep, struct r8a66597_ep, ep); | ||
1285 | req = container_of(_req, struct r8a66597_request, req); | ||
1286 | |||
1287 | if (ep->r8a66597->gadget.speed == USB_SPEED_UNKNOWN) | ||
1288 | return -ESHUTDOWN; | ||
1289 | |||
1290 | spin_lock_irqsave(&ep->r8a66597->lock, flags); | ||
1291 | |||
1292 | if (list_empty(&ep->queue)) | ||
1293 | request = 1; | ||
1294 | |||
1295 | list_add_tail(&req->queue, &ep->queue); | ||
1296 | req->req.actual = 0; | ||
1297 | req->req.status = -EINPROGRESS; | ||
1298 | |||
1299 | if (ep->desc == NULL) /* control */ | ||
1300 | start_ep0(ep, req); | ||
1301 | else { | ||
1302 | if (request && !ep->busy) | ||
1303 | start_packet(ep, req); | ||
1304 | } | ||
1305 | |||
1306 | spin_unlock_irqrestore(&ep->r8a66597->lock, flags); | ||
1307 | |||
1308 | return 0; | ||
1309 | } | ||
1310 | |||
1311 | static int r8a66597_dequeue(struct usb_ep *_ep, struct usb_request *_req) | ||
1312 | { | ||
1313 | struct r8a66597_ep *ep; | ||
1314 | struct r8a66597_request *req; | ||
1315 | unsigned long flags; | ||
1316 | |||
1317 | ep = container_of(_ep, struct r8a66597_ep, ep); | ||
1318 | req = container_of(_req, struct r8a66597_request, req); | ||
1319 | |||
1320 | spin_lock_irqsave(&ep->r8a66597->lock, flags); | ||
1321 | if (!list_empty(&ep->queue)) | ||
1322 | transfer_complete(ep, req, -ECONNRESET); | ||
1323 | spin_unlock_irqrestore(&ep->r8a66597->lock, flags); | ||
1324 | |||
1325 | return 0; | ||
1326 | } | ||
1327 | |||
1328 | static int r8a66597_set_halt(struct usb_ep *_ep, int value) | ||
1329 | { | ||
1330 | struct r8a66597_ep *ep; | ||
1331 | struct r8a66597_request *req; | ||
1332 | unsigned long flags; | ||
1333 | int ret = 0; | ||
1334 | |||
1335 | ep = container_of(_ep, struct r8a66597_ep, ep); | ||
1336 | req = get_request_from_ep(ep); | ||
1337 | |||
1338 | spin_lock_irqsave(&ep->r8a66597->lock, flags); | ||
1339 | if (!list_empty(&ep->queue)) { | ||
1340 | ret = -EAGAIN; | ||
1341 | goto out; | ||
1342 | } | ||
1343 | if (value) { | ||
1344 | ep->busy = 1; | ||
1345 | pipe_stall(ep->r8a66597, ep->pipenum); | ||
1346 | } else { | ||
1347 | ep->busy = 0; | ||
1348 | ep->wedge = 0; | ||
1349 | pipe_stop(ep->r8a66597, ep->pipenum); | ||
1350 | } | ||
1351 | |||
1352 | out: | ||
1353 | spin_unlock_irqrestore(&ep->r8a66597->lock, flags); | ||
1354 | return ret; | ||
1355 | } | ||
1356 | |||
1357 | static int r8a66597_set_wedge(struct usb_ep *_ep) | ||
1358 | { | ||
1359 | struct r8a66597_ep *ep; | ||
1360 | unsigned long flags; | ||
1361 | |||
1362 | ep = container_of(_ep, struct r8a66597_ep, ep); | ||
1363 | |||
1364 | if (!ep || !ep->desc) | ||
1365 | return -EINVAL; | ||
1366 | |||
1367 | spin_lock_irqsave(&ep->r8a66597->lock, flags); | ||
1368 | ep->wedge = 1; | ||
1369 | spin_unlock_irqrestore(&ep->r8a66597->lock, flags); | ||
1370 | |||
1371 | return usb_ep_set_halt(_ep); | ||
1372 | } | ||
1373 | |||
1374 | static void r8a66597_fifo_flush(struct usb_ep *_ep) | ||
1375 | { | ||
1376 | struct r8a66597_ep *ep; | ||
1377 | unsigned long flags; | ||
1378 | |||
1379 | ep = container_of(_ep, struct r8a66597_ep, ep); | ||
1380 | spin_lock_irqsave(&ep->r8a66597->lock, flags); | ||
1381 | if (list_empty(&ep->queue) && !ep->busy) { | ||
1382 | pipe_stop(ep->r8a66597, ep->pipenum); | ||
1383 | r8a66597_bclr(ep->r8a66597, BCLR, ep->fifoctr); | ||
1384 | } | ||
1385 | spin_unlock_irqrestore(&ep->r8a66597->lock, flags); | ||
1386 | } | ||
1387 | |||
1388 | static struct usb_ep_ops r8a66597_ep_ops = { | ||
1389 | .enable = r8a66597_enable, | ||
1390 | .disable = r8a66597_disable, | ||
1391 | |||
1392 | .alloc_request = r8a66597_alloc_request, | ||
1393 | .free_request = r8a66597_free_request, | ||
1394 | |||
1395 | .queue = r8a66597_queue, | ||
1396 | .dequeue = r8a66597_dequeue, | ||
1397 | |||
1398 | .set_halt = r8a66597_set_halt, | ||
1399 | .set_wedge = r8a66597_set_wedge, | ||
1400 | .fifo_flush = r8a66597_fifo_flush, | ||
1401 | }; | ||
1402 | |||
1403 | /*-------------------------------------------------------------------------*/ | ||
1404 | static struct r8a66597 *the_controller; | ||
1405 | |||
1406 | int usb_gadget_register_driver(struct usb_gadget_driver *driver) | ||
1407 | { | ||
1408 | struct r8a66597 *r8a66597 = the_controller; | ||
1409 | int retval; | ||
1410 | |||
1411 | if (!driver | ||
1412 | || driver->speed != USB_SPEED_HIGH | ||
1413 | || !driver->bind | ||
1414 | || !driver->setup) | ||
1415 | return -EINVAL; | ||
1416 | if (!r8a66597) | ||
1417 | return -ENODEV; | ||
1418 | if (r8a66597->driver) | ||
1419 | return -EBUSY; | ||
1420 | |||
1421 | /* hook up the driver */ | ||
1422 | driver->driver.bus = NULL; | ||
1423 | r8a66597->driver = driver; | ||
1424 | r8a66597->gadget.dev.driver = &driver->driver; | ||
1425 | |||
1426 | retval = device_add(&r8a66597->gadget.dev); | ||
1427 | if (retval) { | ||
1428 | printk(KERN_ERR "device_add error (%d)\n", retval); | ||
1429 | goto error; | ||
1430 | } | ||
1431 | |||
1432 | retval = driver->bind(&r8a66597->gadget); | ||
1433 | if (retval) { | ||
1434 | printk(KERN_ERR "bind to driver error (%d)\n", retval); | ||
1435 | device_del(&r8a66597->gadget.dev); | ||
1436 | goto error; | ||
1437 | } | ||
1438 | |||
1439 | r8a66597_bset(r8a66597, VBSE, INTENB0); | ||
1440 | if (r8a66597_read(r8a66597, INTSTS0) & VBSTS) { | ||
1441 | r8a66597_start_xclock(r8a66597); | ||
1442 | /* start vbus sampling */ | ||
1443 | r8a66597->old_vbus = r8a66597_read(r8a66597, | ||
1444 | INTSTS0) & VBSTS; | ||
1445 | r8a66597->scount = R8A66597_MAX_SAMPLING; | ||
1446 | mod_timer(&r8a66597->timer, jiffies + msecs_to_jiffies(50)); | ||
1447 | } | ||
1448 | |||
1449 | return 0; | ||
1450 | |||
1451 | error: | ||
1452 | r8a66597->driver = NULL; | ||
1453 | r8a66597->gadget.dev.driver = NULL; | ||
1454 | |||
1455 | return retval; | ||
1456 | } | ||
1457 | EXPORT_SYMBOL(usb_gadget_register_driver); | ||
1458 | |||
1459 | int usb_gadget_unregister_driver(struct usb_gadget_driver *driver) | ||
1460 | { | ||
1461 | struct r8a66597 *r8a66597 = the_controller; | ||
1462 | unsigned long flags; | ||
1463 | |||
1464 | if (driver != r8a66597->driver || !driver->unbind) | ||
1465 | return -EINVAL; | ||
1466 | |||
1467 | spin_lock_irqsave(&r8a66597->lock, flags); | ||
1468 | if (r8a66597->gadget.speed != USB_SPEED_UNKNOWN) | ||
1469 | r8a66597_usb_disconnect(r8a66597); | ||
1470 | spin_unlock_irqrestore(&r8a66597->lock, flags); | ||
1471 | |||
1472 | r8a66597_bclr(r8a66597, VBSE, INTENB0); | ||
1473 | |||
1474 | driver->unbind(&r8a66597->gadget); | ||
1475 | |||
1476 | init_controller(r8a66597); | ||
1477 | disable_controller(r8a66597); | ||
1478 | |||
1479 | device_del(&r8a66597->gadget.dev); | ||
1480 | r8a66597->driver = NULL; | ||
1481 | return 0; | ||
1482 | } | ||
1483 | EXPORT_SYMBOL(usb_gadget_unregister_driver); | ||
1484 | |||
1485 | /*-------------------------------------------------------------------------*/ | ||
1486 | static int r8a66597_get_frame(struct usb_gadget *_gadget) | ||
1487 | { | ||
1488 | struct r8a66597 *r8a66597 = gadget_to_r8a66597(_gadget); | ||
1489 | return r8a66597_read(r8a66597, FRMNUM) & 0x03FF; | ||
1490 | } | ||
1491 | |||
1492 | static struct usb_gadget_ops r8a66597_gadget_ops = { | ||
1493 | .get_frame = r8a66597_get_frame, | ||
1494 | }; | ||
1495 | |||
1496 | static int __exit r8a66597_remove(struct platform_device *pdev) | ||
1497 | { | ||
1498 | struct r8a66597 *r8a66597 = dev_get_drvdata(&pdev->dev); | ||
1499 | |||
1500 | del_timer_sync(&r8a66597->timer); | ||
1501 | iounmap((void *)r8a66597->reg); | ||
1502 | free_irq(platform_get_irq(pdev, 0), r8a66597); | ||
1503 | r8a66597_free_request(&r8a66597->ep[0].ep, r8a66597->ep0_req); | ||
1504 | #ifdef CONFIG_HAVE_CLK | ||
1505 | if (r8a66597->pdata->on_chip) { | ||
1506 | clk_disable(r8a66597->clk); | ||
1507 | clk_put(r8a66597->clk); | ||
1508 | } | ||
1509 | #endif | ||
1510 | kfree(r8a66597); | ||
1511 | return 0; | ||
1512 | } | ||
1513 | |||
1514 | static void nop_completion(struct usb_ep *ep, struct usb_request *r) | ||
1515 | { | ||
1516 | } | ||
1517 | |||
1518 | static int __init r8a66597_probe(struct platform_device *pdev) | ||
1519 | { | ||
1520 | #ifdef CONFIG_HAVE_CLK | ||
1521 | char clk_name[8]; | ||
1522 | #endif | ||
1523 | struct resource *res, *ires; | ||
1524 | int irq; | ||
1525 | void __iomem *reg = NULL; | ||
1526 | struct r8a66597 *r8a66597 = NULL; | ||
1527 | int ret = 0; | ||
1528 | int i; | ||
1529 | unsigned long irq_trigger; | ||
1530 | |||
1531 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
1532 | if (!res) { | ||
1533 | ret = -ENODEV; | ||
1534 | printk(KERN_ERR "platform_get_resource error.\n"); | ||
1535 | goto clean_up; | ||
1536 | } | ||
1537 | |||
1538 | ires = platform_get_resource(pdev, IORESOURCE_IRQ, 0); | ||
1539 | irq = ires->start; | ||
1540 | irq_trigger = ires->flags & IRQF_TRIGGER_MASK; | ||
1541 | |||
1542 | if (irq < 0) { | ||
1543 | ret = -ENODEV; | ||
1544 | printk(KERN_ERR "platform_get_irq error.\n"); | ||
1545 | goto clean_up; | ||
1546 | } | ||
1547 | |||
1548 | reg = ioremap(res->start, resource_size(res)); | ||
1549 | if (reg == NULL) { | ||
1550 | ret = -ENOMEM; | ||
1551 | printk(KERN_ERR "ioremap error.\n"); | ||
1552 | goto clean_up; | ||
1553 | } | ||
1554 | |||
1555 | /* initialize ucd */ | ||
1556 | r8a66597 = kzalloc(sizeof(struct r8a66597), GFP_KERNEL); | ||
1557 | if (r8a66597 == NULL) { | ||
1558 | printk(KERN_ERR "kzalloc error\n"); | ||
1559 | goto clean_up; | ||
1560 | } | ||
1561 | |||
1562 | spin_lock_init(&r8a66597->lock); | ||
1563 | dev_set_drvdata(&pdev->dev, r8a66597); | ||
1564 | r8a66597->pdata = pdev->dev.platform_data; | ||
1565 | r8a66597->irq_sense_low = irq_trigger == IRQF_TRIGGER_LOW; | ||
1566 | |||
1567 | r8a66597->gadget.ops = &r8a66597_gadget_ops; | ||
1568 | device_initialize(&r8a66597->gadget.dev); | ||
1569 | dev_set_name(&r8a66597->gadget.dev, "gadget"); | ||
1570 | r8a66597->gadget.is_dualspeed = 1; | ||
1571 | r8a66597->gadget.dev.parent = &pdev->dev; | ||
1572 | r8a66597->gadget.dev.dma_mask = pdev->dev.dma_mask; | ||
1573 | r8a66597->gadget.dev.release = pdev->dev.release; | ||
1574 | r8a66597->gadget.name = udc_name; | ||
1575 | |||
1576 | init_timer(&r8a66597->timer); | ||
1577 | r8a66597->timer.function = r8a66597_timer; | ||
1578 | r8a66597->timer.data = (unsigned long)r8a66597; | ||
1579 | r8a66597->reg = (unsigned long)reg; | ||
1580 | |||
1581 | #ifdef CONFIG_HAVE_CLK | ||
1582 | if (r8a66597->pdata->on_chip) { | ||
1583 | snprintf(clk_name, sizeof(clk_name), "usb%d", pdev->id); | ||
1584 | r8a66597->clk = clk_get(&pdev->dev, clk_name); | ||
1585 | if (IS_ERR(r8a66597->clk)) { | ||
1586 | dev_err(&pdev->dev, "cannot get clock \"%s\"\n", | ||
1587 | clk_name); | ||
1588 | ret = PTR_ERR(r8a66597->clk); | ||
1589 | goto clean_up; | ||
1590 | } | ||
1591 | clk_enable(r8a66597->clk); | ||
1592 | } | ||
1593 | #endif | ||
1594 | |||
1595 | disable_controller(r8a66597); /* make sure controller is disabled */ | ||
1596 | |||
1597 | ret = request_irq(irq, r8a66597_irq, IRQF_DISABLED | IRQF_SHARED, | ||
1598 | udc_name, r8a66597); | ||
1599 | if (ret < 0) { | ||
1600 | printk(KERN_ERR "request_irq error (%d)\n", ret); | ||
1601 | goto clean_up2; | ||
1602 | } | ||
1603 | |||
1604 | INIT_LIST_HEAD(&r8a66597->gadget.ep_list); | ||
1605 | r8a66597->gadget.ep0 = &r8a66597->ep[0].ep; | ||
1606 | INIT_LIST_HEAD(&r8a66597->gadget.ep0->ep_list); | ||
1607 | for (i = 0; i < R8A66597_MAX_NUM_PIPE; i++) { | ||
1608 | struct r8a66597_ep *ep = &r8a66597->ep[i]; | ||
1609 | |||
1610 | if (i != 0) { | ||
1611 | INIT_LIST_HEAD(&r8a66597->ep[i].ep.ep_list); | ||
1612 | list_add_tail(&r8a66597->ep[i].ep.ep_list, | ||
1613 | &r8a66597->gadget.ep_list); | ||
1614 | } | ||
1615 | ep->r8a66597 = r8a66597; | ||
1616 | INIT_LIST_HEAD(&ep->queue); | ||
1617 | ep->ep.name = r8a66597_ep_name[i]; | ||
1618 | ep->ep.ops = &r8a66597_ep_ops; | ||
1619 | ep->ep.maxpacket = 512; | ||
1620 | } | ||
1621 | r8a66597->ep[0].ep.maxpacket = 64; | ||
1622 | r8a66597->ep[0].pipenum = 0; | ||
1623 | r8a66597->ep[0].fifoaddr = CFIFO; | ||
1624 | r8a66597->ep[0].fifosel = CFIFOSEL; | ||
1625 | r8a66597->ep[0].fifoctr = CFIFOCTR; | ||
1626 | r8a66597->ep[0].fifotrn = 0; | ||
1627 | r8a66597->ep[0].pipectr = get_pipectr_addr(0); | ||
1628 | r8a66597->pipenum2ep[0] = &r8a66597->ep[0]; | ||
1629 | r8a66597->epaddr2ep[0] = &r8a66597->ep[0]; | ||
1630 | |||
1631 | the_controller = r8a66597; | ||
1632 | |||
1633 | r8a66597->ep0_req = r8a66597_alloc_request(&r8a66597->ep[0].ep, | ||
1634 | GFP_KERNEL); | ||
1635 | if (r8a66597->ep0_req == NULL) | ||
1636 | goto clean_up3; | ||
1637 | r8a66597->ep0_req->complete = nop_completion; | ||
1638 | |||
1639 | init_controller(r8a66597); | ||
1640 | |||
1641 | dev_info(&pdev->dev, "version %s\n", DRIVER_VERSION); | ||
1642 | return 0; | ||
1643 | |||
1644 | clean_up3: | ||
1645 | free_irq(irq, r8a66597); | ||
1646 | clean_up2: | ||
1647 | #ifdef CONFIG_HAVE_CLK | ||
1648 | if (r8a66597->pdata->on_chip) { | ||
1649 | clk_disable(r8a66597->clk); | ||
1650 | clk_put(r8a66597->clk); | ||
1651 | } | ||
1652 | #endif | ||
1653 | clean_up: | ||
1654 | if (r8a66597) { | ||
1655 | if (r8a66597->ep0_req) | ||
1656 | r8a66597_free_request(&r8a66597->ep[0].ep, | ||
1657 | r8a66597->ep0_req); | ||
1658 | kfree(r8a66597); | ||
1659 | } | ||
1660 | if (reg) | ||
1661 | iounmap(reg); | ||
1662 | |||
1663 | return ret; | ||
1664 | } | ||
1665 | |||
1666 | /*-------------------------------------------------------------------------*/ | ||
1667 | static struct platform_driver r8a66597_driver = { | ||
1668 | .remove = __exit_p(r8a66597_remove), | ||
1669 | .driver = { | ||
1670 | .name = (char *) udc_name, | ||
1671 | }, | ||
1672 | }; | ||
1673 | |||
1674 | static int __init r8a66597_udc_init(void) | ||
1675 | { | ||
1676 | return platform_driver_probe(&r8a66597_driver, r8a66597_probe); | ||
1677 | } | ||
1678 | module_init(r8a66597_udc_init); | ||
1679 | |||
1680 | static void __exit r8a66597_udc_cleanup(void) | ||
1681 | { | ||
1682 | platform_driver_unregister(&r8a66597_driver); | ||
1683 | } | ||
1684 | module_exit(r8a66597_udc_cleanup); | ||
1685 | |||
1686 | MODULE_DESCRIPTION("R8A66597 USB gadget driver"); | ||
1687 | MODULE_LICENSE("GPL"); | ||
1688 | MODULE_AUTHOR("Yoshihiro Shimoda"); | ||
1689 | |||
diff --git a/drivers/usb/gadget/r8a66597-udc.h b/drivers/usb/gadget/r8a66597-udc.h new file mode 100644 index 000000000000..03087e7b9190 --- /dev/null +++ b/drivers/usb/gadget/r8a66597-udc.h | |||
@@ -0,0 +1,256 @@ | |||
1 | /* | ||
2 | * R8A66597 UDC | ||
3 | * | ||
4 | * Copyright (C) 2007-2009 Renesas Solutions Corp. | ||
5 | * | ||
6 | * Author : Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; version 2 of the License. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
20 | * | ||
21 | */ | ||
22 | |||
23 | #ifndef __R8A66597_H__ | ||
24 | #define __R8A66597_H__ | ||
25 | |||
26 | #ifdef CONFIG_HAVE_CLK | ||
27 | #include <linux/clk.h> | ||
28 | #endif | ||
29 | |||
30 | #include <linux/usb/r8a66597.h> | ||
31 | |||
32 | #define R8A66597_MAX_SAMPLING 10 | ||
33 | |||
34 | #define R8A66597_MAX_NUM_PIPE 8 | ||
35 | #define R8A66597_MAX_NUM_BULK 3 | ||
36 | #define R8A66597_MAX_NUM_ISOC 2 | ||
37 | #define R8A66597_MAX_NUM_INT 2 | ||
38 | |||
39 | #define R8A66597_BASE_PIPENUM_BULK 3 | ||
40 | #define R8A66597_BASE_PIPENUM_ISOC 1 | ||
41 | #define R8A66597_BASE_PIPENUM_INT 6 | ||
42 | |||
43 | #define R8A66597_BASE_BUFNUM 6 | ||
44 | #define R8A66597_MAX_BUFNUM 0x4F | ||
45 | |||
46 | #define is_bulk_pipe(pipenum) \ | ||
47 | ((pipenum >= R8A66597_BASE_PIPENUM_BULK) && \ | ||
48 | (pipenum < (R8A66597_BASE_PIPENUM_BULK + R8A66597_MAX_NUM_BULK))) | ||
49 | #define is_interrupt_pipe(pipenum) \ | ||
50 | ((pipenum >= R8A66597_BASE_PIPENUM_INT) && \ | ||
51 | (pipenum < (R8A66597_BASE_PIPENUM_INT + R8A66597_MAX_NUM_INT))) | ||
52 | #define is_isoc_pipe(pipenum) \ | ||
53 | ((pipenum >= R8A66597_BASE_PIPENUM_ISOC) && \ | ||
54 | (pipenum < (R8A66597_BASE_PIPENUM_ISOC + R8A66597_MAX_NUM_ISOC))) | ||
55 | |||
56 | struct r8a66597_pipe_info { | ||
57 | u16 pipe; | ||
58 | u16 epnum; | ||
59 | u16 maxpacket; | ||
60 | u16 type; | ||
61 | u16 interval; | ||
62 | u16 dir_in; | ||
63 | }; | ||
64 | |||
65 | struct r8a66597_request { | ||
66 | struct usb_request req; | ||
67 | struct list_head queue; | ||
68 | }; | ||
69 | |||
70 | struct r8a66597_ep { | ||
71 | struct usb_ep ep; | ||
72 | struct r8a66597 *r8a66597; | ||
73 | |||
74 | struct list_head queue; | ||
75 | unsigned busy:1; | ||
76 | unsigned wedge:1; | ||
77 | unsigned internal_ccpl:1; /* use only control */ | ||
78 | |||
79 | /* this member can able to after r8a66597_enable */ | ||
80 | unsigned use_dma:1; | ||
81 | u16 pipenum; | ||
82 | u16 type; | ||
83 | const struct usb_endpoint_descriptor *desc; | ||
84 | /* register address */ | ||
85 | unsigned char fifoaddr; | ||
86 | unsigned char fifosel; | ||
87 | unsigned char fifoctr; | ||
88 | unsigned char fifotrn; | ||
89 | unsigned char pipectr; | ||
90 | }; | ||
91 | |||
92 | struct r8a66597 { | ||
93 | spinlock_t lock; | ||
94 | unsigned long reg; | ||
95 | |||
96 | #ifdef CONFIG_HAVE_CLK | ||
97 | struct clk *clk; | ||
98 | #endif | ||
99 | struct r8a66597_platdata *pdata; | ||
100 | |||
101 | struct usb_gadget gadget; | ||
102 | struct usb_gadget_driver *driver; | ||
103 | |||
104 | struct r8a66597_ep ep[R8A66597_MAX_NUM_PIPE]; | ||
105 | struct r8a66597_ep *pipenum2ep[R8A66597_MAX_NUM_PIPE]; | ||
106 | struct r8a66597_ep *epaddr2ep[16]; | ||
107 | |||
108 | struct timer_list timer; | ||
109 | struct usb_request *ep0_req; /* for internal request */ | ||
110 | u16 ep0_data; /* for internal request */ | ||
111 | u16 old_vbus; | ||
112 | u16 scount; | ||
113 | u16 old_dvsq; | ||
114 | |||
115 | /* pipe config */ | ||
116 | unsigned char bulk; | ||
117 | unsigned char interrupt; | ||
118 | unsigned char isochronous; | ||
119 | unsigned char num_dma; | ||
120 | |||
121 | unsigned irq_sense_low:1; | ||
122 | }; | ||
123 | |||
124 | #define gadget_to_r8a66597(_gadget) \ | ||
125 | container_of(_gadget, struct r8a66597, gadget) | ||
126 | #define r8a66597_to_gadget(r8a66597) (&r8a66597->gadget) | ||
127 | |||
128 | static inline u16 r8a66597_read(struct r8a66597 *r8a66597, unsigned long offset) | ||
129 | { | ||
130 | return inw(r8a66597->reg + offset); | ||
131 | } | ||
132 | |||
133 | static inline void r8a66597_read_fifo(struct r8a66597 *r8a66597, | ||
134 | unsigned long offset, u16 *buf, | ||
135 | int len) | ||
136 | { | ||
137 | if (r8a66597->pdata->on_chip) { | ||
138 | unsigned long fifoaddr = r8a66597->reg + offset; | ||
139 | unsigned long count; | ||
140 | union { | ||
141 | unsigned long dword; | ||
142 | unsigned char byte[4]; | ||
143 | } data; | ||
144 | unsigned char *pb; | ||
145 | int i; | ||
146 | |||
147 | count = len / 4; | ||
148 | insl(fifoaddr, buf, count); | ||
149 | |||
150 | if (len & 0x00000003) { | ||
151 | data.dword = inl(fifoaddr); | ||
152 | pb = (unsigned char *)buf + count * 4; | ||
153 | for (i = 0; i < (len & 0x00000003); i++) | ||
154 | pb[i] = data.byte[i]; | ||
155 | } | ||
156 | } else { | ||
157 | len = (len + 1) / 2; | ||
158 | insw(r8a66597->reg + offset, buf, len); | ||
159 | } | ||
160 | } | ||
161 | |||
162 | static inline void r8a66597_write(struct r8a66597 *r8a66597, u16 val, | ||
163 | unsigned long offset) | ||
164 | { | ||
165 | outw(val, r8a66597->reg + offset); | ||
166 | } | ||
167 | |||
168 | static inline void r8a66597_write_fifo(struct r8a66597 *r8a66597, | ||
169 | unsigned long offset, u16 *buf, | ||
170 | int len) | ||
171 | { | ||
172 | unsigned long fifoaddr = r8a66597->reg + offset; | ||
173 | |||
174 | if (r8a66597->pdata->on_chip) { | ||
175 | unsigned long count; | ||
176 | unsigned char *pb; | ||
177 | int i; | ||
178 | |||
179 | count = len / 4; | ||
180 | outsl(fifoaddr, buf, count); | ||
181 | |||
182 | if (len & 0x00000003) { | ||
183 | pb = (unsigned char *)buf + count * 4; | ||
184 | for (i = 0; i < (len & 0x00000003); i++) { | ||
185 | if (r8a66597_read(r8a66597, CFIFOSEL) & BIGEND) | ||
186 | outb(pb[i], fifoaddr + i); | ||
187 | else | ||
188 | outb(pb[i], fifoaddr + 3 - i); | ||
189 | } | ||
190 | } | ||
191 | } else { | ||
192 | int odd = len & 0x0001; | ||
193 | |||
194 | len = len / 2; | ||
195 | outsw(fifoaddr, buf, len); | ||
196 | if (unlikely(odd)) { | ||
197 | buf = &buf[len]; | ||
198 | outb((unsigned char)*buf, fifoaddr); | ||
199 | } | ||
200 | } | ||
201 | } | ||
202 | |||
203 | static inline void r8a66597_mdfy(struct r8a66597 *r8a66597, | ||
204 | u16 val, u16 pat, unsigned long offset) | ||
205 | { | ||
206 | u16 tmp; | ||
207 | tmp = r8a66597_read(r8a66597, offset); | ||
208 | tmp = tmp & (~pat); | ||
209 | tmp = tmp | val; | ||
210 | r8a66597_write(r8a66597, tmp, offset); | ||
211 | } | ||
212 | |||
213 | static inline u16 get_xtal_from_pdata(struct r8a66597_platdata *pdata) | ||
214 | { | ||
215 | u16 clock = 0; | ||
216 | |||
217 | switch (pdata->xtal) { | ||
218 | case R8A66597_PLATDATA_XTAL_12MHZ: | ||
219 | clock = XTAL12; | ||
220 | break; | ||
221 | case R8A66597_PLATDATA_XTAL_24MHZ: | ||
222 | clock = XTAL24; | ||
223 | break; | ||
224 | case R8A66597_PLATDATA_XTAL_48MHZ: | ||
225 | clock = XTAL48; | ||
226 | break; | ||
227 | default: | ||
228 | printk(KERN_ERR "r8a66597: platdata clock is wrong.\n"); | ||
229 | break; | ||
230 | } | ||
231 | |||
232 | return clock; | ||
233 | } | ||
234 | |||
235 | #define r8a66597_bclr(r8a66597, val, offset) \ | ||
236 | r8a66597_mdfy(r8a66597, 0, val, offset) | ||
237 | #define r8a66597_bset(r8a66597, val, offset) \ | ||
238 | r8a66597_mdfy(r8a66597, val, 0, offset) | ||
239 | |||
240 | #define get_pipectr_addr(pipenum) (PIPE1CTR + (pipenum - 1) * 2) | ||
241 | |||
242 | #define enable_irq_ready(r8a66597, pipenum) \ | ||
243 | enable_pipe_irq(r8a66597, pipenum, BRDYENB) | ||
244 | #define disable_irq_ready(r8a66597, pipenum) \ | ||
245 | disable_pipe_irq(r8a66597, pipenum, BRDYENB) | ||
246 | #define enable_irq_empty(r8a66597, pipenum) \ | ||
247 | enable_pipe_irq(r8a66597, pipenum, BEMPENB) | ||
248 | #define disable_irq_empty(r8a66597, pipenum) \ | ||
249 | disable_pipe_irq(r8a66597, pipenum, BEMPENB) | ||
250 | #define enable_irq_nrdy(r8a66597, pipenum) \ | ||
251 | enable_pipe_irq(r8a66597, pipenum, NRDYENB) | ||
252 | #define disable_irq_nrdy(r8a66597, pipenum) \ | ||
253 | disable_pipe_irq(r8a66597, pipenum, NRDYENB) | ||
254 | |||
255 | #endif /* __R8A66597_H__ */ | ||
256 | |||
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 1a920c70b5a1..f21ca7d27a43 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig | |||
@@ -336,13 +336,6 @@ config USB_R8A66597_HCD | |||
336 | To compile this driver as a module, choose M here: the | 336 | To compile this driver as a module, choose M here: the |
337 | module will be called r8a66597-hcd. | 337 | module will be called r8a66597-hcd. |
338 | 338 | ||
339 | config SUPERH_ON_CHIP_R8A66597 | ||
340 | boolean "Enable SuperH on-chip R8A66597 USB" | ||
341 | depends on USB_R8A66597_HCD && (CPU_SUBTYPE_SH7366 || CPU_SUBTYPE_SH7723 || CPU_SUBTYPE_SH7724) | ||
342 | help | ||
343 | This driver enables support for the on-chip R8A66597 in the | ||
344 | SH7366, SH7723 and SH7724 processors. | ||
345 | |||
346 | config USB_WHCI_HCD | 339 | config USB_WHCI_HCD |
347 | tristate "Wireless USB Host Controller Interface (WHCI) driver (EXPERIMENTAL)" | 340 | tristate "Wireless USB Host Controller Interface (WHCI) driver (EXPERIMENTAL)" |
348 | depends on EXPERIMENTAL | 341 | depends on EXPERIMENTAL |
diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c index e18f74946e68..749b53742828 100644 --- a/drivers/usb/host/r8a66597-hcd.c +++ b/drivers/usb/host/r8a66597-hcd.c | |||
@@ -91,43 +91,43 @@ static int r8a66597_clock_enable(struct r8a66597 *r8a66597) | |||
91 | u16 tmp; | 91 | u16 tmp; |
92 | int i = 0; | 92 | int i = 0; |
93 | 93 | ||
94 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) | 94 | if (r8a66597->pdata->on_chip) { |
95 | #if defined(CONFIG_HAVE_CLK) | 95 | #ifdef CONFIG_HAVE_CLK |
96 | clk_enable(r8a66597->clk); | 96 | clk_enable(r8a66597->clk); |
97 | #endif | 97 | #endif |
98 | do { | 98 | do { |
99 | r8a66597_write(r8a66597, SCKE, SYSCFG0); | 99 | r8a66597_write(r8a66597, SCKE, SYSCFG0); |
100 | tmp = r8a66597_read(r8a66597, SYSCFG0); | 100 | tmp = r8a66597_read(r8a66597, SYSCFG0); |
101 | if (i++ > 1000) { | 101 | if (i++ > 1000) { |
102 | printk(KERN_ERR "r8a66597: register access fail.\n"); | 102 | printk(KERN_ERR "r8a66597: reg access fail.\n"); |
103 | return -ENXIO; | 103 | return -ENXIO; |
104 | } | 104 | } |
105 | } while ((tmp & SCKE) != SCKE); | 105 | } while ((tmp & SCKE) != SCKE); |
106 | r8a66597_write(r8a66597, 0x04, 0x02); | 106 | r8a66597_write(r8a66597, 0x04, 0x02); |
107 | #else | 107 | } else { |
108 | do { | 108 | do { |
109 | r8a66597_write(r8a66597, USBE, SYSCFG0); | 109 | r8a66597_write(r8a66597, USBE, SYSCFG0); |
110 | tmp = r8a66597_read(r8a66597, SYSCFG0); | 110 | tmp = r8a66597_read(r8a66597, SYSCFG0); |
111 | if (i++ > 1000) { | 111 | if (i++ > 1000) { |
112 | printk(KERN_ERR "r8a66597: register access fail.\n"); | 112 | printk(KERN_ERR "r8a66597: reg access fail.\n"); |
113 | return -ENXIO; | 113 | return -ENXIO; |
114 | } | 114 | } |
115 | } while ((tmp & USBE) != USBE); | 115 | } while ((tmp & USBE) != USBE); |
116 | r8a66597_bclr(r8a66597, USBE, SYSCFG0); | 116 | r8a66597_bclr(r8a66597, USBE, SYSCFG0); |
117 | r8a66597_mdfy(r8a66597, get_xtal_from_pdata(r8a66597->pdata), XTAL, | 117 | r8a66597_mdfy(r8a66597, get_xtal_from_pdata(r8a66597->pdata), |
118 | SYSCFG0); | 118 | XTAL, SYSCFG0); |
119 | 119 | ||
120 | i = 0; | 120 | i = 0; |
121 | r8a66597_bset(r8a66597, XCKE, SYSCFG0); | 121 | r8a66597_bset(r8a66597, XCKE, SYSCFG0); |
122 | do { | 122 | do { |
123 | msleep(1); | 123 | msleep(1); |
124 | tmp = r8a66597_read(r8a66597, SYSCFG0); | 124 | tmp = r8a66597_read(r8a66597, SYSCFG0); |
125 | if (i++ > 500) { | 125 | if (i++ > 500) { |
126 | printk(KERN_ERR "r8a66597: register access fail.\n"); | 126 | printk(KERN_ERR "r8a66597: reg access fail.\n"); |
127 | return -ENXIO; | 127 | return -ENXIO; |
128 | } | 128 | } |
129 | } while ((tmp & SCKE) != SCKE); | 129 | } while ((tmp & SCKE) != SCKE); |
130 | #endif /* #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) */ | 130 | } |
131 | 131 | ||
132 | return 0; | 132 | return 0; |
133 | } | 133 | } |
@@ -136,15 +136,16 @@ static void r8a66597_clock_disable(struct r8a66597 *r8a66597) | |||
136 | { | 136 | { |
137 | r8a66597_bclr(r8a66597, SCKE, SYSCFG0); | 137 | r8a66597_bclr(r8a66597, SCKE, SYSCFG0); |
138 | udelay(1); | 138 | udelay(1); |
139 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) | 139 | |
140 | #if defined(CONFIG_HAVE_CLK) | 140 | if (r8a66597->pdata->on_chip) { |
141 | clk_disable(r8a66597->clk); | 141 | #ifdef CONFIG_HAVE_CLK |
142 | #endif | 142 | clk_disable(r8a66597->clk); |
143 | #else | ||
144 | r8a66597_bclr(r8a66597, PLLC, SYSCFG0); | ||
145 | r8a66597_bclr(r8a66597, XCKE, SYSCFG0); | ||
146 | r8a66597_bclr(r8a66597, USBE, SYSCFG0); | ||
147 | #endif | 143 | #endif |
144 | } else { | ||
145 | r8a66597_bclr(r8a66597, PLLC, SYSCFG0); | ||
146 | r8a66597_bclr(r8a66597, XCKE, SYSCFG0); | ||
147 | r8a66597_bclr(r8a66597, USBE, SYSCFG0); | ||
148 | } | ||
148 | } | 149 | } |
149 | 150 | ||
150 | static void r8a66597_enable_port(struct r8a66597 *r8a66597, int port) | 151 | static void r8a66597_enable_port(struct r8a66597 *r8a66597, int port) |
@@ -205,7 +206,7 @@ static int enable_controller(struct r8a66597 *r8a66597) | |||
205 | 206 | ||
206 | r8a66597_bset(r8a66597, SIGNE | SACKE, INTENB1); | 207 | r8a66597_bset(r8a66597, SIGNE | SACKE, INTENB1); |
207 | 208 | ||
208 | for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++) | 209 | for (port = 0; port < r8a66597->max_root_hub; port++) |
209 | r8a66597_enable_port(r8a66597, port); | 210 | r8a66597_enable_port(r8a66597, port); |
210 | 211 | ||
211 | return 0; | 212 | return 0; |
@@ -218,7 +219,7 @@ static void disable_controller(struct r8a66597 *r8a66597) | |||
218 | r8a66597_write(r8a66597, 0, INTENB0); | 219 | r8a66597_write(r8a66597, 0, INTENB0); |
219 | r8a66597_write(r8a66597, 0, INTSTS0); | 220 | r8a66597_write(r8a66597, 0, INTSTS0); |
220 | 221 | ||
221 | for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++) | 222 | for (port = 0; port < r8a66597->max_root_hub; port++) |
222 | r8a66597_disable_port(r8a66597, port); | 223 | r8a66597_disable_port(r8a66597, port); |
223 | 224 | ||
224 | r8a66597_clock_disable(r8a66597); | 225 | r8a66597_clock_disable(r8a66597); |
@@ -249,11 +250,12 @@ static int is_hub_limit(char *devpath) | |||
249 | return ((strlen(devpath) >= 4) ? 1 : 0); | 250 | return ((strlen(devpath) >= 4) ? 1 : 0); |
250 | } | 251 | } |
251 | 252 | ||
252 | static void get_port_number(char *devpath, u16 *root_port, u16 *hub_port) | 253 | static void get_port_number(struct r8a66597 *r8a66597, |
254 | char *devpath, u16 *root_port, u16 *hub_port) | ||
253 | { | 255 | { |
254 | if (root_port) { | 256 | if (root_port) { |
255 | *root_port = (devpath[0] & 0x0F) - 1; | 257 | *root_port = (devpath[0] & 0x0F) - 1; |
256 | if (*root_port >= R8A66597_MAX_ROOT_HUB) | 258 | if (*root_port >= r8a66597->max_root_hub) |
257 | printk(KERN_ERR "r8a66597: Illegal root port number.\n"); | 259 | printk(KERN_ERR "r8a66597: Illegal root port number.\n"); |
258 | } | 260 | } |
259 | if (hub_port) | 261 | if (hub_port) |
@@ -355,7 +357,8 @@ static int make_r8a66597_device(struct r8a66597 *r8a66597, | |||
355 | INIT_LIST_HEAD(&dev->device_list); | 357 | INIT_LIST_HEAD(&dev->device_list); |
356 | list_add_tail(&dev->device_list, &r8a66597->child_device); | 358 | list_add_tail(&dev->device_list, &r8a66597->child_device); |
357 | 359 | ||
358 | get_port_number(urb->dev->devpath, &dev->root_port, &dev->hub_port); | 360 | get_port_number(r8a66597, urb->dev->devpath, |
361 | &dev->root_port, &dev->hub_port); | ||
359 | if (!is_child_device(urb->dev->devpath)) | 362 | if (!is_child_device(urb->dev->devpath)) |
360 | r8a66597->root_hub[dev->root_port].dev = dev; | 363 | r8a66597->root_hub[dev->root_port].dev = dev; |
361 | 364 | ||
@@ -420,7 +423,7 @@ static void free_usb_address(struct r8a66597 *r8a66597, | |||
420 | list_del(&dev->device_list); | 423 | list_del(&dev->device_list); |
421 | kfree(dev); | 424 | kfree(dev); |
422 | 425 | ||
423 | for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++) { | 426 | for (port = 0; port < r8a66597->max_root_hub; port++) { |
424 | if (r8a66597->root_hub[port].dev == dev) { | 427 | if (r8a66597->root_hub[port].dev == dev) { |
425 | r8a66597->root_hub[port].dev = NULL; | 428 | r8a66597->root_hub[port].dev = NULL; |
426 | break; | 429 | break; |
@@ -495,10 +498,20 @@ static void r8a66597_pipe_toggle(struct r8a66597 *r8a66597, | |||
495 | r8a66597_bset(r8a66597, SQCLR, pipe->pipectr); | 498 | r8a66597_bset(r8a66597, SQCLR, pipe->pipectr); |
496 | } | 499 | } |
497 | 500 | ||
501 | static inline unsigned short mbw_value(struct r8a66597 *r8a66597) | ||
502 | { | ||
503 | if (r8a66597->pdata->on_chip) | ||
504 | return MBW_32; | ||
505 | else | ||
506 | return MBW_16; | ||
507 | } | ||
508 | |||
498 | /* this function must be called with interrupt disabled */ | 509 | /* this function must be called with interrupt disabled */ |
499 | static inline void cfifo_change(struct r8a66597 *r8a66597, u16 pipenum) | 510 | static inline void cfifo_change(struct r8a66597 *r8a66597, u16 pipenum) |
500 | { | 511 | { |
501 | r8a66597_mdfy(r8a66597, MBW | pipenum, MBW | CURPIPE, CFIFOSEL); | 512 | unsigned short mbw = mbw_value(r8a66597); |
513 | |||
514 | r8a66597_mdfy(r8a66597, mbw | pipenum, mbw | CURPIPE, CFIFOSEL); | ||
502 | r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, pipenum); | 515 | r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, pipenum); |
503 | } | 516 | } |
504 | 517 | ||
@@ -506,11 +519,13 @@ static inline void cfifo_change(struct r8a66597 *r8a66597, u16 pipenum) | |||
506 | static inline void fifo_change_from_pipe(struct r8a66597 *r8a66597, | 519 | static inline void fifo_change_from_pipe(struct r8a66597 *r8a66597, |
507 | struct r8a66597_pipe *pipe) | 520 | struct r8a66597_pipe *pipe) |
508 | { | 521 | { |
522 | unsigned short mbw = mbw_value(r8a66597); | ||
523 | |||
509 | cfifo_change(r8a66597, 0); | 524 | cfifo_change(r8a66597, 0); |
510 | r8a66597_mdfy(r8a66597, MBW | 0, MBW | CURPIPE, D0FIFOSEL); | 525 | r8a66597_mdfy(r8a66597, mbw | 0, mbw | CURPIPE, D0FIFOSEL); |
511 | r8a66597_mdfy(r8a66597, MBW | 0, MBW | CURPIPE, D1FIFOSEL); | 526 | r8a66597_mdfy(r8a66597, mbw | 0, mbw | CURPIPE, D1FIFOSEL); |
512 | 527 | ||
513 | r8a66597_mdfy(r8a66597, MBW | pipe->info.pipenum, MBW | CURPIPE, | 528 | r8a66597_mdfy(r8a66597, mbw | pipe->info.pipenum, mbw | CURPIPE, |
514 | pipe->fifosel); | 529 | pipe->fifosel); |
515 | r8a66597_reg_wait(r8a66597, pipe->fifosel, CURPIPE, pipe->info.pipenum); | 530 | r8a66597_reg_wait(r8a66597, pipe->fifosel, CURPIPE, pipe->info.pipenum); |
516 | } | 531 | } |
@@ -742,9 +757,13 @@ static void enable_r8a66597_pipe_dma(struct r8a66597 *r8a66597, | |||
742 | struct r8a66597_pipe *pipe, | 757 | struct r8a66597_pipe *pipe, |
743 | struct urb *urb) | 758 | struct urb *urb) |
744 | { | 759 | { |
745 | #if !defined(CONFIG_SUPERH_ON_CHIP_R8A66597) | ||
746 | int i; | 760 | int i; |
747 | struct r8a66597_pipe_info *info = &pipe->info; | 761 | struct r8a66597_pipe_info *info = &pipe->info; |
762 | unsigned short mbw = mbw_value(r8a66597); | ||
763 | |||
764 | /* pipe dma is only for external controlles */ | ||
765 | if (r8a66597->pdata->on_chip) | ||
766 | return; | ||
748 | 767 | ||
749 | if ((pipe->info.pipenum != 0) && (info->type != R8A66597_INT)) { | 768 | if ((pipe->info.pipenum != 0) && (info->type != R8A66597_INT)) { |
750 | for (i = 0; i < R8A66597_MAX_DMA_CHANNEL; i++) { | 769 | for (i = 0; i < R8A66597_MAX_DMA_CHANNEL; i++) { |
@@ -763,8 +782,8 @@ static void enable_r8a66597_pipe_dma(struct r8a66597 *r8a66597, | |||
763 | set_pipe_reg_addr(pipe, i); | 782 | set_pipe_reg_addr(pipe, i); |
764 | 783 | ||
765 | cfifo_change(r8a66597, 0); | 784 | cfifo_change(r8a66597, 0); |
766 | r8a66597_mdfy(r8a66597, MBW | pipe->info.pipenum, | 785 | r8a66597_mdfy(r8a66597, mbw | pipe->info.pipenum, |
767 | MBW | CURPIPE, pipe->fifosel); | 786 | mbw | CURPIPE, pipe->fifosel); |
768 | 787 | ||
769 | r8a66597_reg_wait(r8a66597, pipe->fifosel, CURPIPE, | 788 | r8a66597_reg_wait(r8a66597, pipe->fifosel, CURPIPE, |
770 | pipe->info.pipenum); | 789 | pipe->info.pipenum); |
@@ -772,7 +791,6 @@ static void enable_r8a66597_pipe_dma(struct r8a66597 *r8a66597, | |||
772 | break; | 791 | break; |
773 | } | 792 | } |
774 | } | 793 | } |
775 | #endif /* #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) */ | ||
776 | } | 794 | } |
777 | 795 | ||
778 | /* this function must be called with interrupt disabled */ | 796 | /* this function must be called with interrupt disabled */ |
@@ -1769,7 +1787,7 @@ static void r8a66597_timer(unsigned long _r8a66597) | |||
1769 | 1787 | ||
1770 | spin_lock_irqsave(&r8a66597->lock, flags); | 1788 | spin_lock_irqsave(&r8a66597->lock, flags); |
1771 | 1789 | ||
1772 | for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++) | 1790 | for (port = 0; port < r8a66597->max_root_hub; port++) |
1773 | r8a66597_root_hub_control(r8a66597, port); | 1791 | r8a66597_root_hub_control(r8a66597, port); |
1774 | 1792 | ||
1775 | spin_unlock_irqrestore(&r8a66597->lock, flags); | 1793 | spin_unlock_irqrestore(&r8a66597->lock, flags); |
@@ -1807,7 +1825,7 @@ static void set_address_zero(struct r8a66597 *r8a66597, struct urb *urb) | |||
1807 | u16 root_port, hub_port; | 1825 | u16 root_port, hub_port; |
1808 | 1826 | ||
1809 | if (usb_address == 0) { | 1827 | if (usb_address == 0) { |
1810 | get_port_number(urb->dev->devpath, | 1828 | get_port_number(r8a66597, urb->dev->devpath, |
1811 | &root_port, &hub_port); | 1829 | &root_port, &hub_port); |
1812 | set_devadd_reg(r8a66597, 0, | 1830 | set_devadd_reg(r8a66597, 0, |
1813 | get_r8a66597_usb_speed(urb->dev->speed), | 1831 | get_r8a66597_usb_speed(urb->dev->speed), |
@@ -2082,7 +2100,7 @@ static int r8a66597_hub_status_data(struct usb_hcd *hcd, char *buf) | |||
2082 | 2100 | ||
2083 | *buf = 0; /* initialize (no change) */ | 2101 | *buf = 0; /* initialize (no change) */ |
2084 | 2102 | ||
2085 | for (i = 0; i < R8A66597_MAX_ROOT_HUB; i++) { | 2103 | for (i = 0; i < r8a66597->max_root_hub; i++) { |
2086 | if (r8a66597->root_hub[i].port & 0xffff0000) | 2104 | if (r8a66597->root_hub[i].port & 0xffff0000) |
2087 | *buf |= 1 << (i + 1); | 2105 | *buf |= 1 << (i + 1); |
2088 | } | 2106 | } |
@@ -2097,11 +2115,11 @@ static void r8a66597_hub_descriptor(struct r8a66597 *r8a66597, | |||
2097 | { | 2115 | { |
2098 | desc->bDescriptorType = 0x29; | 2116 | desc->bDescriptorType = 0x29; |
2099 | desc->bHubContrCurrent = 0; | 2117 | desc->bHubContrCurrent = 0; |
2100 | desc->bNbrPorts = R8A66597_MAX_ROOT_HUB; | 2118 | desc->bNbrPorts = r8a66597->max_root_hub; |
2101 | desc->bDescLength = 9; | 2119 | desc->bDescLength = 9; |
2102 | desc->bPwrOn2PwrGood = 0; | 2120 | desc->bPwrOn2PwrGood = 0; |
2103 | desc->wHubCharacteristics = cpu_to_le16(0x0011); | 2121 | desc->wHubCharacteristics = cpu_to_le16(0x0011); |
2104 | desc->bitmap[0] = ((1 << R8A66597_MAX_ROOT_HUB) - 1) << 1; | 2122 | desc->bitmap[0] = ((1 << r8a66597->max_root_hub) - 1) << 1; |
2105 | desc->bitmap[1] = ~0; | 2123 | desc->bitmap[1] = ~0; |
2106 | } | 2124 | } |
2107 | 2125 | ||
@@ -2129,7 +2147,7 @@ static int r8a66597_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, | |||
2129 | } | 2147 | } |
2130 | break; | 2148 | break; |
2131 | case ClearPortFeature: | 2149 | case ClearPortFeature: |
2132 | if (wIndex > R8A66597_MAX_ROOT_HUB) | 2150 | if (wIndex > r8a66597->max_root_hub) |
2133 | goto error; | 2151 | goto error; |
2134 | if (wLength != 0) | 2152 | if (wLength != 0) |
2135 | goto error; | 2153 | goto error; |
@@ -2162,12 +2180,12 @@ static int r8a66597_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, | |||
2162 | *buf = 0x00; | 2180 | *buf = 0x00; |
2163 | break; | 2181 | break; |
2164 | case GetPortStatus: | 2182 | case GetPortStatus: |
2165 | if (wIndex > R8A66597_MAX_ROOT_HUB) | 2183 | if (wIndex > r8a66597->max_root_hub) |
2166 | goto error; | 2184 | goto error; |
2167 | *(__le32 *)buf = cpu_to_le32(rh->port); | 2185 | *(__le32 *)buf = cpu_to_le32(rh->port); |
2168 | break; | 2186 | break; |
2169 | case SetPortFeature: | 2187 | case SetPortFeature: |
2170 | if (wIndex > R8A66597_MAX_ROOT_HUB) | 2188 | if (wIndex > r8a66597->max_root_hub) |
2171 | goto error; | 2189 | goto error; |
2172 | if (wLength != 0) | 2190 | if (wLength != 0) |
2173 | goto error; | 2191 | goto error; |
@@ -2216,7 +2234,7 @@ static int r8a66597_bus_suspend(struct usb_hcd *hcd) | |||
2216 | 2234 | ||
2217 | dbg("%s", __func__); | 2235 | dbg("%s", __func__); |
2218 | 2236 | ||
2219 | for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++) { | 2237 | for (port = 0; port < r8a66597->max_root_hub; port++) { |
2220 | struct r8a66597_root_hub *rh = &r8a66597->root_hub[port]; | 2238 | struct r8a66597_root_hub *rh = &r8a66597->root_hub[port]; |
2221 | unsigned long dvstctr_reg = get_dvstctr_reg(port); | 2239 | unsigned long dvstctr_reg = get_dvstctr_reg(port); |
2222 | 2240 | ||
@@ -2247,7 +2265,7 @@ static int r8a66597_bus_resume(struct usb_hcd *hcd) | |||
2247 | 2265 | ||
2248 | dbg("%s", __func__); | 2266 | dbg("%s", __func__); |
2249 | 2267 | ||
2250 | for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++) { | 2268 | for (port = 0; port < r8a66597->max_root_hub; port++) { |
2251 | struct r8a66597_root_hub *rh = &r8a66597->root_hub[port]; | 2269 | struct r8a66597_root_hub *rh = &r8a66597->root_hub[port]; |
2252 | unsigned long dvstctr_reg = get_dvstctr_reg(port); | 2270 | unsigned long dvstctr_reg = get_dvstctr_reg(port); |
2253 | 2271 | ||
@@ -2305,16 +2323,16 @@ static struct hc_driver r8a66597_hc_driver = { | |||
2305 | }; | 2323 | }; |
2306 | 2324 | ||
2307 | #if defined(CONFIG_PM) | 2325 | #if defined(CONFIG_PM) |
2308 | static int r8a66597_suspend(struct platform_device *pdev, pm_message_t state) | 2326 | static int r8a66597_suspend(struct device *dev) |
2309 | { | 2327 | { |
2310 | struct r8a66597 *r8a66597 = dev_get_drvdata(&pdev->dev); | 2328 | struct r8a66597 *r8a66597 = dev_get_drvdata(dev); |
2311 | int port; | 2329 | int port; |
2312 | 2330 | ||
2313 | dbg("%s", __func__); | 2331 | dbg("%s", __func__); |
2314 | 2332 | ||
2315 | disable_controller(r8a66597); | 2333 | disable_controller(r8a66597); |
2316 | 2334 | ||
2317 | for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++) { | 2335 | for (port = 0; port < r8a66597->max_root_hub; port++) { |
2318 | struct r8a66597_root_hub *rh = &r8a66597->root_hub[port]; | 2336 | struct r8a66597_root_hub *rh = &r8a66597->root_hub[port]; |
2319 | 2337 | ||
2320 | rh->port = 0x00000000; | 2338 | rh->port = 0x00000000; |
@@ -2323,9 +2341,9 @@ static int r8a66597_suspend(struct platform_device *pdev, pm_message_t state) | |||
2323 | return 0; | 2341 | return 0; |
2324 | } | 2342 | } |
2325 | 2343 | ||
2326 | static int r8a66597_resume(struct platform_device *pdev) | 2344 | static int r8a66597_resume(struct device *dev) |
2327 | { | 2345 | { |
2328 | struct r8a66597 *r8a66597 = dev_get_drvdata(&pdev->dev); | 2346 | struct r8a66597 *r8a66597 = dev_get_drvdata(dev); |
2329 | struct usb_hcd *hcd = r8a66597_to_hcd(r8a66597); | 2347 | struct usb_hcd *hcd = r8a66597_to_hcd(r8a66597); |
2330 | 2348 | ||
2331 | dbg("%s", __func__); | 2349 | dbg("%s", __func__); |
@@ -2335,9 +2353,17 @@ static int r8a66597_resume(struct platform_device *pdev) | |||
2335 | 2353 | ||
2336 | return 0; | 2354 | return 0; |
2337 | } | 2355 | } |
2356 | |||
2357 | static struct dev_pm_ops r8a66597_dev_pm_ops = { | ||
2358 | .suspend = r8a66597_suspend, | ||
2359 | .resume = r8a66597_resume, | ||
2360 | .poweroff = r8a66597_suspend, | ||
2361 | .restore = r8a66597_resume, | ||
2362 | }; | ||
2363 | |||
2364 | #define R8A66597_DEV_PM_OPS (&r8a66597_dev_pm_ops) | ||
2338 | #else /* if defined(CONFIG_PM) */ | 2365 | #else /* if defined(CONFIG_PM) */ |
2339 | #define r8a66597_suspend NULL | 2366 | #define R8A66597_DEV_PM_OPS NULL |
2340 | #define r8a66597_resume NULL | ||
2341 | #endif | 2367 | #endif |
2342 | 2368 | ||
2343 | static int __init_or_module r8a66597_remove(struct platform_device *pdev) | 2369 | static int __init_or_module r8a66597_remove(struct platform_device *pdev) |
@@ -2348,8 +2374,9 @@ static int __init_or_module r8a66597_remove(struct platform_device *pdev) | |||
2348 | del_timer_sync(&r8a66597->rh_timer); | 2374 | del_timer_sync(&r8a66597->rh_timer); |
2349 | usb_remove_hcd(hcd); | 2375 | usb_remove_hcd(hcd); |
2350 | iounmap((void *)r8a66597->reg); | 2376 | iounmap((void *)r8a66597->reg); |
2351 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) && defined(CONFIG_HAVE_CLK) | 2377 | #ifdef CONFIG_HAVE_CLK |
2352 | clk_put(r8a66597->clk); | 2378 | if (r8a66597->pdata->on_chip) |
2379 | clk_put(r8a66597->clk); | ||
2353 | #endif | 2380 | #endif |
2354 | usb_put_hcd(hcd); | 2381 | usb_put_hcd(hcd); |
2355 | return 0; | 2382 | return 0; |
@@ -2357,7 +2384,7 @@ static int __init_or_module r8a66597_remove(struct platform_device *pdev) | |||
2357 | 2384 | ||
2358 | static int __devinit r8a66597_probe(struct platform_device *pdev) | 2385 | static int __devinit r8a66597_probe(struct platform_device *pdev) |
2359 | { | 2386 | { |
2360 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) && defined(CONFIG_HAVE_CLK) | 2387 | #ifdef CONFIG_HAVE_CLK |
2361 | char clk_name[8]; | 2388 | char clk_name[8]; |
2362 | #endif | 2389 | #endif |
2363 | struct resource *res = NULL, *ires; | 2390 | struct resource *res = NULL, *ires; |
@@ -2419,15 +2446,20 @@ static int __devinit r8a66597_probe(struct platform_device *pdev) | |||
2419 | r8a66597->pdata = pdev->dev.platform_data; | 2446 | r8a66597->pdata = pdev->dev.platform_data; |
2420 | r8a66597->irq_sense_low = irq_trigger == IRQF_TRIGGER_LOW; | 2447 | r8a66597->irq_sense_low = irq_trigger == IRQF_TRIGGER_LOW; |
2421 | 2448 | ||
2422 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) && defined(CONFIG_HAVE_CLK) | 2449 | if (r8a66597->pdata->on_chip) { |
2423 | snprintf(clk_name, sizeof(clk_name), "usb%d", pdev->id); | 2450 | #ifdef CONFIG_HAVE_CLK |
2424 | r8a66597->clk = clk_get(&pdev->dev, clk_name); | 2451 | snprintf(clk_name, sizeof(clk_name), "usb%d", pdev->id); |
2425 | if (IS_ERR(r8a66597->clk)) { | 2452 | r8a66597->clk = clk_get(&pdev->dev, clk_name); |
2426 | dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name); | 2453 | if (IS_ERR(r8a66597->clk)) { |
2427 | ret = PTR_ERR(r8a66597->clk); | 2454 | dev_err(&pdev->dev, "cannot get clock \"%s\"\n", |
2428 | goto clean_up2; | 2455 | clk_name); |
2429 | } | 2456 | ret = PTR_ERR(r8a66597->clk); |
2457 | goto clean_up2; | ||
2458 | } | ||
2430 | #endif | 2459 | #endif |
2460 | r8a66597->max_root_hub = 1; | ||
2461 | } else | ||
2462 | r8a66597->max_root_hub = 2; | ||
2431 | 2463 | ||
2432 | spin_lock_init(&r8a66597->lock); | 2464 | spin_lock_init(&r8a66597->lock); |
2433 | init_timer(&r8a66597->rh_timer); | 2465 | init_timer(&r8a66597->rh_timer); |
@@ -2457,8 +2489,9 @@ static int __devinit r8a66597_probe(struct platform_device *pdev) | |||
2457 | return 0; | 2489 | return 0; |
2458 | 2490 | ||
2459 | clean_up3: | 2491 | clean_up3: |
2460 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) && defined(CONFIG_HAVE_CLK) | 2492 | #ifdef CONFIG_HAVE_CLK |
2461 | clk_put(r8a66597->clk); | 2493 | if (r8a66597->pdata->on_chip) |
2494 | clk_put(r8a66597->clk); | ||
2462 | clean_up2: | 2495 | clean_up2: |
2463 | #endif | 2496 | #endif |
2464 | usb_put_hcd(hcd); | 2497 | usb_put_hcd(hcd); |
@@ -2473,11 +2506,10 @@ clean_up: | |||
2473 | static struct platform_driver r8a66597_driver = { | 2506 | static struct platform_driver r8a66597_driver = { |
2474 | .probe = r8a66597_probe, | 2507 | .probe = r8a66597_probe, |
2475 | .remove = r8a66597_remove, | 2508 | .remove = r8a66597_remove, |
2476 | .suspend = r8a66597_suspend, | ||
2477 | .resume = r8a66597_resume, | ||
2478 | .driver = { | 2509 | .driver = { |
2479 | .name = (char *) hcd_name, | 2510 | .name = (char *) hcd_name, |
2480 | .owner = THIS_MODULE, | 2511 | .owner = THIS_MODULE, |
2512 | .pm = R8A66597_DEV_PM_OPS, | ||
2481 | }, | 2513 | }, |
2482 | }; | 2514 | }; |
2483 | 2515 | ||
diff --git a/drivers/usb/host/r8a66597.h b/drivers/usb/host/r8a66597.h index d72680b433f9..228e3fb23854 100644 --- a/drivers/usb/host/r8a66597.h +++ b/drivers/usb/host/r8a66597.h | |||
@@ -26,390 +26,16 @@ | |||
26 | #ifndef __R8A66597_H__ | 26 | #ifndef __R8A66597_H__ |
27 | #define __R8A66597_H__ | 27 | #define __R8A66597_H__ |
28 | 28 | ||
29 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) && defined(CONFIG_HAVE_CLK) | 29 | #ifdef CONFIG_HAVE_CLK |
30 | #include <linux/clk.h> | 30 | #include <linux/clk.h> |
31 | #endif | 31 | #endif |
32 | 32 | ||
33 | #include <linux/usb/r8a66597.h> | 33 | #include <linux/usb/r8a66597.h> |
34 | 34 | ||
35 | #define SYSCFG0 0x00 | ||
36 | #define SYSCFG1 0x02 | ||
37 | #define SYSSTS0 0x04 | ||
38 | #define SYSSTS1 0x06 | ||
39 | #define DVSTCTR0 0x08 | ||
40 | #define DVSTCTR1 0x0A | ||
41 | #define TESTMODE 0x0C | ||
42 | #define PINCFG 0x0E | ||
43 | #define DMA0CFG 0x10 | ||
44 | #define DMA1CFG 0x12 | ||
45 | #define CFIFO 0x14 | ||
46 | #define D0FIFO 0x18 | ||
47 | #define D1FIFO 0x1C | ||
48 | #define CFIFOSEL 0x20 | ||
49 | #define CFIFOCTR 0x22 | ||
50 | #define CFIFOSIE 0x24 | ||
51 | #define D0FIFOSEL 0x28 | ||
52 | #define D0FIFOCTR 0x2A | ||
53 | #define D1FIFOSEL 0x2C | ||
54 | #define D1FIFOCTR 0x2E | ||
55 | #define INTENB0 0x30 | ||
56 | #define INTENB1 0x32 | ||
57 | #define INTENB2 0x34 | ||
58 | #define BRDYENB 0x36 | ||
59 | #define NRDYENB 0x38 | ||
60 | #define BEMPENB 0x3A | ||
61 | #define SOFCFG 0x3C | ||
62 | #define INTSTS0 0x40 | ||
63 | #define INTSTS1 0x42 | ||
64 | #define INTSTS2 0x44 | ||
65 | #define BRDYSTS 0x46 | ||
66 | #define NRDYSTS 0x48 | ||
67 | #define BEMPSTS 0x4A | ||
68 | #define FRMNUM 0x4C | ||
69 | #define UFRMNUM 0x4E | ||
70 | #define USBADDR 0x50 | ||
71 | #define USBREQ 0x54 | ||
72 | #define USBVAL 0x56 | ||
73 | #define USBINDX 0x58 | ||
74 | #define USBLENG 0x5A | ||
75 | #define DCPCFG 0x5C | ||
76 | #define DCPMAXP 0x5E | ||
77 | #define DCPCTR 0x60 | ||
78 | #define PIPESEL 0x64 | ||
79 | #define PIPECFG 0x68 | ||
80 | #define PIPEBUF 0x6A | ||
81 | #define PIPEMAXP 0x6C | ||
82 | #define PIPEPERI 0x6E | ||
83 | #define PIPE1CTR 0x70 | ||
84 | #define PIPE2CTR 0x72 | ||
85 | #define PIPE3CTR 0x74 | ||
86 | #define PIPE4CTR 0x76 | ||
87 | #define PIPE5CTR 0x78 | ||
88 | #define PIPE6CTR 0x7A | ||
89 | #define PIPE7CTR 0x7C | ||
90 | #define PIPE8CTR 0x7E | ||
91 | #define PIPE9CTR 0x80 | ||
92 | #define PIPE1TRE 0x90 | ||
93 | #define PIPE1TRN 0x92 | ||
94 | #define PIPE2TRE 0x94 | ||
95 | #define PIPE2TRN 0x96 | ||
96 | #define PIPE3TRE 0x98 | ||
97 | #define PIPE3TRN 0x9A | ||
98 | #define PIPE4TRE 0x9C | ||
99 | #define PIPE4TRN 0x9E | ||
100 | #define PIPE5TRE 0xA0 | ||
101 | #define PIPE5TRN 0xA2 | ||
102 | #define DEVADD0 0xD0 | ||
103 | #define DEVADD1 0xD2 | ||
104 | #define DEVADD2 0xD4 | ||
105 | #define DEVADD3 0xD6 | ||
106 | #define DEVADD4 0xD8 | ||
107 | #define DEVADD5 0xDA | ||
108 | #define DEVADD6 0xDC | ||
109 | #define DEVADD7 0xDE | ||
110 | #define DEVADD8 0xE0 | ||
111 | #define DEVADD9 0xE2 | ||
112 | #define DEVADDA 0xE4 | ||
113 | |||
114 | /* System Configuration Control Register */ | ||
115 | #define XTAL 0xC000 /* b15-14: Crystal selection */ | ||
116 | #define XTAL48 0x8000 /* 48MHz */ | ||
117 | #define XTAL24 0x4000 /* 24MHz */ | ||
118 | #define XTAL12 0x0000 /* 12MHz */ | ||
119 | #define XCKE 0x2000 /* b13: External clock enable */ | ||
120 | #define PLLC 0x0800 /* b11: PLL control */ | ||
121 | #define SCKE 0x0400 /* b10: USB clock enable */ | ||
122 | #define PCSDIS 0x0200 /* b9: not CS wakeup */ | ||
123 | #define LPSME 0x0100 /* b8: Low power sleep mode */ | ||
124 | #define HSE 0x0080 /* b7: Hi-speed enable */ | ||
125 | #define DCFM 0x0040 /* b6: Controller function select */ | ||
126 | #define DRPD 0x0020 /* b5: D+/- pull down control */ | ||
127 | #define DPRPU 0x0010 /* b4: D+ pull up control */ | ||
128 | #define USBE 0x0001 /* b0: USB module operation enable */ | ||
129 | |||
130 | /* System Configuration Status Register */ | ||
131 | #define OVCBIT 0x8000 /* b15-14: Over-current bit */ | ||
132 | #define OVCMON 0xC000 /* b15-14: Over-current monitor */ | ||
133 | #define SOFEA 0x0020 /* b5: SOF monitor */ | ||
134 | #define IDMON 0x0004 /* b3: ID-pin monitor */ | ||
135 | #define LNST 0x0003 /* b1-0: D+, D- line status */ | ||
136 | #define SE1 0x0003 /* SE1 */ | ||
137 | #define FS_KSTS 0x0002 /* Full-Speed K State */ | ||
138 | #define FS_JSTS 0x0001 /* Full-Speed J State */ | ||
139 | #define LS_JSTS 0x0002 /* Low-Speed J State */ | ||
140 | #define LS_KSTS 0x0001 /* Low-Speed K State */ | ||
141 | #define SE0 0x0000 /* SE0 */ | ||
142 | |||
143 | /* Device State Control Register */ | ||
144 | #define EXTLP0 0x0400 /* b10: External port */ | ||
145 | #define VBOUT 0x0200 /* b9: VBUS output */ | ||
146 | #define WKUP 0x0100 /* b8: Remote wakeup */ | ||
147 | #define RWUPE 0x0080 /* b7: Remote wakeup sense */ | ||
148 | #define USBRST 0x0040 /* b6: USB reset enable */ | ||
149 | #define RESUME 0x0020 /* b5: Resume enable */ | ||
150 | #define UACT 0x0010 /* b4: USB bus enable */ | ||
151 | #define RHST 0x0007 /* b1-0: Reset handshake status */ | ||
152 | #define HSPROC 0x0004 /* HS handshake is processing */ | ||
153 | #define HSMODE 0x0003 /* Hi-Speed mode */ | ||
154 | #define FSMODE 0x0002 /* Full-Speed mode */ | ||
155 | #define LSMODE 0x0001 /* Low-Speed mode */ | ||
156 | #define UNDECID 0x0000 /* Undecided */ | ||
157 | |||
158 | /* Test Mode Register */ | ||
159 | #define UTST 0x000F /* b3-0: Test select */ | ||
160 | #define H_TST_PACKET 0x000C /* HOST TEST Packet */ | ||
161 | #define H_TST_SE0_NAK 0x000B /* HOST TEST SE0 NAK */ | ||
162 | #define H_TST_K 0x000A /* HOST TEST K */ | ||
163 | #define H_TST_J 0x0009 /* HOST TEST J */ | ||
164 | #define H_TST_NORMAL 0x0000 /* HOST Normal Mode */ | ||
165 | #define P_TST_PACKET 0x0004 /* PERI TEST Packet */ | ||
166 | #define P_TST_SE0_NAK 0x0003 /* PERI TEST SE0 NAK */ | ||
167 | #define P_TST_K 0x0002 /* PERI TEST K */ | ||
168 | #define P_TST_J 0x0001 /* PERI TEST J */ | ||
169 | #define P_TST_NORMAL 0x0000 /* PERI Normal Mode */ | ||
170 | |||
171 | /* Data Pin Configuration Register */ | ||
172 | #define LDRV 0x8000 /* b15: Drive Current Adjust */ | ||
173 | #define VIF1 0x0000 /* VIF = 1.8V */ | ||
174 | #define VIF3 0x8000 /* VIF = 3.3V */ | ||
175 | #define INTA 0x0001 /* b1: USB INT-pin active */ | ||
176 | |||
177 | /* DMAx Pin Configuration Register */ | ||
178 | #define DREQA 0x4000 /* b14: Dreq active select */ | ||
179 | #define BURST 0x2000 /* b13: Burst mode */ | ||
180 | #define DACKA 0x0400 /* b10: Dack active select */ | ||
181 | #define DFORM 0x0380 /* b9-7: DMA mode select */ | ||
182 | #define CPU_ADR_RD_WR 0x0000 /* Address + RD/WR mode (CPU bus) */ | ||
183 | #define CPU_DACK_RD_WR 0x0100 /* DACK + RD/WR mode (CPU bus) */ | ||
184 | #define CPU_DACK_ONLY 0x0180 /* DACK only mode (CPU bus) */ | ||
185 | #define SPLIT_DACK_ONLY 0x0200 /* DACK only mode (SPLIT bus) */ | ||
186 | #define DENDA 0x0040 /* b6: Dend active select */ | ||
187 | #define PKTM 0x0020 /* b5: Packet mode */ | ||
188 | #define DENDE 0x0010 /* b4: Dend enable */ | ||
189 | #define OBUS 0x0004 /* b2: OUTbus mode */ | ||
190 | |||
191 | /* CFIFO/DxFIFO Port Select Register */ | ||
192 | #define RCNT 0x8000 /* b15: Read count mode */ | ||
193 | #define REW 0x4000 /* b14: Buffer rewind */ | ||
194 | #define DCLRM 0x2000 /* b13: DMA buffer clear mode */ | ||
195 | #define DREQE 0x1000 /* b12: DREQ output enable */ | ||
196 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) | ||
197 | #define MBW 0x0800 | ||
198 | #else | ||
199 | #define MBW 0x0400 /* b10: Maximum bit width for FIFO access */ | ||
200 | #endif | ||
201 | #define MBW_8 0x0000 /* 8bit */ | ||
202 | #define MBW_16 0x0400 /* 16bit */ | ||
203 | #define BIGEND 0x0100 /* b8: Big endian mode */ | ||
204 | #define BYTE_LITTLE 0x0000 /* little dendian */ | ||
205 | #define BYTE_BIG 0x0100 /* big endifan */ | ||
206 | #define ISEL 0x0020 /* b5: DCP FIFO port direction select */ | ||
207 | #define CURPIPE 0x000F /* b2-0: PIPE select */ | ||
208 | |||
209 | /* CFIFO/DxFIFO Port Control Register */ | ||
210 | #define BVAL 0x8000 /* b15: Buffer valid flag */ | ||
211 | #define BCLR 0x4000 /* b14: Buffer clear */ | ||
212 | #define FRDY 0x2000 /* b13: FIFO ready */ | ||
213 | #define DTLN 0x0FFF /* b11-0: FIFO received data length */ | ||
214 | |||
215 | /* Interrupt Enable Register 0 */ | ||
216 | #define VBSE 0x8000 /* b15: VBUS interrupt */ | ||
217 | #define RSME 0x4000 /* b14: Resume interrupt */ | ||
218 | #define SOFE 0x2000 /* b13: Frame update interrupt */ | ||
219 | #define DVSE 0x1000 /* b12: Device state transition interrupt */ | ||
220 | #define CTRE 0x0800 /* b11: Control transfer stage transition interrupt */ | ||
221 | #define BEMPE 0x0400 /* b10: Buffer empty interrupt */ | ||
222 | #define NRDYE 0x0200 /* b9: Buffer not ready interrupt */ | ||
223 | #define BRDYE 0x0100 /* b8: Buffer ready interrupt */ | ||
224 | |||
225 | /* Interrupt Enable Register 1 */ | ||
226 | #define OVRCRE 0x8000 /* b15: Over-current interrupt */ | ||
227 | #define BCHGE 0x4000 /* b14: USB us chenge interrupt */ | ||
228 | #define DTCHE 0x1000 /* b12: Detach sense interrupt */ | ||
229 | #define ATTCHE 0x0800 /* b11: Attach sense interrupt */ | ||
230 | #define EOFERRE 0x0040 /* b6: EOF error interrupt */ | ||
231 | #define SIGNE 0x0020 /* b5: SETUP IGNORE interrupt */ | ||
232 | #define SACKE 0x0010 /* b4: SETUP ACK interrupt */ | ||
233 | |||
234 | /* BRDY Interrupt Enable/Status Register */ | ||
235 | #define BRDY9 0x0200 /* b9: PIPE9 */ | ||
236 | #define BRDY8 0x0100 /* b8: PIPE8 */ | ||
237 | #define BRDY7 0x0080 /* b7: PIPE7 */ | ||
238 | #define BRDY6 0x0040 /* b6: PIPE6 */ | ||
239 | #define BRDY5 0x0020 /* b5: PIPE5 */ | ||
240 | #define BRDY4 0x0010 /* b4: PIPE4 */ | ||
241 | #define BRDY3 0x0008 /* b3: PIPE3 */ | ||
242 | #define BRDY2 0x0004 /* b2: PIPE2 */ | ||
243 | #define BRDY1 0x0002 /* b1: PIPE1 */ | ||
244 | #define BRDY0 0x0001 /* b1: PIPE0 */ | ||
245 | |||
246 | /* NRDY Interrupt Enable/Status Register */ | ||
247 | #define NRDY9 0x0200 /* b9: PIPE9 */ | ||
248 | #define NRDY8 0x0100 /* b8: PIPE8 */ | ||
249 | #define NRDY7 0x0080 /* b7: PIPE7 */ | ||
250 | #define NRDY6 0x0040 /* b6: PIPE6 */ | ||
251 | #define NRDY5 0x0020 /* b5: PIPE5 */ | ||
252 | #define NRDY4 0x0010 /* b4: PIPE4 */ | ||
253 | #define NRDY3 0x0008 /* b3: PIPE3 */ | ||
254 | #define NRDY2 0x0004 /* b2: PIPE2 */ | ||
255 | #define NRDY1 0x0002 /* b1: PIPE1 */ | ||
256 | #define NRDY0 0x0001 /* b1: PIPE0 */ | ||
257 | |||
258 | /* BEMP Interrupt Enable/Status Register */ | ||
259 | #define BEMP9 0x0200 /* b9: PIPE9 */ | ||
260 | #define BEMP8 0x0100 /* b8: PIPE8 */ | ||
261 | #define BEMP7 0x0080 /* b7: PIPE7 */ | ||
262 | #define BEMP6 0x0040 /* b6: PIPE6 */ | ||
263 | #define BEMP5 0x0020 /* b5: PIPE5 */ | ||
264 | #define BEMP4 0x0010 /* b4: PIPE4 */ | ||
265 | #define BEMP3 0x0008 /* b3: PIPE3 */ | ||
266 | #define BEMP2 0x0004 /* b2: PIPE2 */ | ||
267 | #define BEMP1 0x0002 /* b1: PIPE1 */ | ||
268 | #define BEMP0 0x0001 /* b0: PIPE0 */ | ||
269 | |||
270 | /* SOF Pin Configuration Register */ | ||
271 | #define TRNENSEL 0x0100 /* b8: Select transaction enable period */ | ||
272 | #define BRDYM 0x0040 /* b6: BRDY clear timing */ | ||
273 | #define INTL 0x0020 /* b5: Interrupt sense select */ | ||
274 | #define EDGESTS 0x0010 /* b4: */ | ||
275 | #define SOFMODE 0x000C /* b3-2: SOF pin select */ | ||
276 | #define SOF_125US 0x0008 /* SOF OUT 125us Frame Signal */ | ||
277 | #define SOF_1MS 0x0004 /* SOF OUT 1ms Frame Signal */ | ||
278 | #define SOF_DISABLE 0x0000 /* SOF OUT Disable */ | ||
279 | |||
280 | /* Interrupt Status Register 0 */ | ||
281 | #define VBINT 0x8000 /* b15: VBUS interrupt */ | ||
282 | #define RESM 0x4000 /* b14: Resume interrupt */ | ||
283 | #define SOFR 0x2000 /* b13: SOF frame update interrupt */ | ||
284 | #define DVST 0x1000 /* b12: Device state transition interrupt */ | ||
285 | #define CTRT 0x0800 /* b11: Control transfer stage transition interrupt */ | ||
286 | #define BEMP 0x0400 /* b10: Buffer empty interrupt */ | ||
287 | #define NRDY 0x0200 /* b9: Buffer not ready interrupt */ | ||
288 | #define BRDY 0x0100 /* b8: Buffer ready interrupt */ | ||
289 | #define VBSTS 0x0080 /* b7: VBUS input port */ | ||
290 | #define DVSQ 0x0070 /* b6-4: Device state */ | ||
291 | #define DS_SPD_CNFG 0x0070 /* Suspend Configured */ | ||
292 | #define DS_SPD_ADDR 0x0060 /* Suspend Address */ | ||
293 | #define DS_SPD_DFLT 0x0050 /* Suspend Default */ | ||
294 | #define DS_SPD_POWR 0x0040 /* Suspend Powered */ | ||
295 | #define DS_SUSP 0x0040 /* Suspend */ | ||
296 | #define DS_CNFG 0x0030 /* Configured */ | ||
297 | #define DS_ADDS 0x0020 /* Address */ | ||
298 | #define DS_DFLT 0x0010 /* Default */ | ||
299 | #define DS_POWR 0x0000 /* Powered */ | ||
300 | #define DVSQS 0x0030 /* b5-4: Device state */ | ||
301 | #define VALID 0x0008 /* b3: Setup packet detected flag */ | ||
302 | #define CTSQ 0x0007 /* b2-0: Control transfer stage */ | ||
303 | #define CS_SQER 0x0006 /* Sequence error */ | ||
304 | #define CS_WRND 0x0005 /* Control write nodata status stage */ | ||
305 | #define CS_WRSS 0x0004 /* Control write status stage */ | ||
306 | #define CS_WRDS 0x0003 /* Control write data stage */ | ||
307 | #define CS_RDSS 0x0002 /* Control read status stage */ | ||
308 | #define CS_RDDS 0x0001 /* Control read data stage */ | ||
309 | #define CS_IDST 0x0000 /* Idle or setup stage */ | ||
310 | |||
311 | /* Interrupt Status Register 1 */ | ||
312 | #define OVRCR 0x8000 /* b15: Over-current interrupt */ | ||
313 | #define BCHG 0x4000 /* b14: USB bus chenge interrupt */ | ||
314 | #define DTCH 0x1000 /* b12: Detach sense interrupt */ | ||
315 | #define ATTCH 0x0800 /* b11: Attach sense interrupt */ | ||
316 | #define EOFERR 0x0040 /* b6: EOF-error interrupt */ | ||
317 | #define SIGN 0x0020 /* b5: Setup ignore interrupt */ | ||
318 | #define SACK 0x0010 /* b4: Setup acknowledge interrupt */ | ||
319 | |||
320 | /* Frame Number Register */ | ||
321 | #define OVRN 0x8000 /* b15: Overrun error */ | ||
322 | #define CRCE 0x4000 /* b14: Received data error */ | ||
323 | #define FRNM 0x07FF /* b10-0: Frame number */ | ||
324 | |||
325 | /* Micro Frame Number Register */ | ||
326 | #define UFRNM 0x0007 /* b2-0: Micro frame number */ | ||
327 | |||
328 | /* Default Control Pipe Maxpacket Size Register */ | ||
329 | /* Pipe Maxpacket Size Register */ | ||
330 | #define DEVSEL 0xF000 /* b15-14: Device address select */ | ||
331 | #define MAXP 0x007F /* b6-0: Maxpacket size of default control pipe */ | ||
332 | |||
333 | /* Default Control Pipe Control Register */ | ||
334 | #define BSTS 0x8000 /* b15: Buffer status */ | ||
335 | #define SUREQ 0x4000 /* b14: Send USB request */ | ||
336 | #define CSCLR 0x2000 /* b13: complete-split status clear */ | ||
337 | #define CSSTS 0x1000 /* b12: complete-split status */ | ||
338 | #define SUREQCLR 0x0800 /* b11: stop setup request */ | ||
339 | #define SQCLR 0x0100 /* b8: Sequence toggle bit clear */ | ||
340 | #define SQSET 0x0080 /* b7: Sequence toggle bit set */ | ||
341 | #define SQMON 0x0040 /* b6: Sequence toggle bit monitor */ | ||
342 | #define PBUSY 0x0020 /* b5: pipe busy */ | ||
343 | #define PINGE 0x0010 /* b4: ping enable */ | ||
344 | #define CCPL 0x0004 /* b2: Enable control transfer complete */ | ||
345 | #define PID 0x0003 /* b1-0: Response PID */ | ||
346 | #define PID_STALL11 0x0003 /* STALL */ | ||
347 | #define PID_STALL 0x0002 /* STALL */ | ||
348 | #define PID_BUF 0x0001 /* BUF */ | ||
349 | #define PID_NAK 0x0000 /* NAK */ | ||
350 | |||
351 | /* Pipe Window Select Register */ | ||
352 | #define PIPENM 0x0007 /* b2-0: Pipe select */ | ||
353 | |||
354 | /* Pipe Configuration Register */ | ||
355 | #define R8A66597_TYP 0xC000 /* b15-14: Transfer type */ | ||
356 | #define R8A66597_ISO 0xC000 /* Isochronous */ | ||
357 | #define R8A66597_INT 0x8000 /* Interrupt */ | ||
358 | #define R8A66597_BULK 0x4000 /* Bulk */ | ||
359 | #define R8A66597_BFRE 0x0400 /* b10: Buffer ready interrupt mode select */ | ||
360 | #define R8A66597_DBLB 0x0200 /* b9: Double buffer mode select */ | ||
361 | #define R8A66597_CNTMD 0x0100 /* b8: Continuous transfer mode select */ | ||
362 | #define R8A66597_SHTNAK 0x0080 /* b7: Transfer end NAK */ | ||
363 | #define R8A66597_DIR 0x0010 /* b4: Transfer direction select */ | ||
364 | #define R8A66597_EPNUM 0x000F /* b3-0: Eendpoint number select */ | ||
365 | |||
366 | /* Pipe Buffer Configuration Register */ | ||
367 | #define BUFSIZE 0x7C00 /* b14-10: Pipe buffer size */ | ||
368 | #define BUFNMB 0x007F /* b6-0: Pipe buffer number */ | ||
369 | #define PIPE0BUF 256 | ||
370 | #define PIPExBUF 64 | ||
371 | |||
372 | /* Pipe Maxpacket Size Register */ | ||
373 | #define MXPS 0x07FF /* b10-0: Maxpacket size */ | ||
374 | |||
375 | /* Pipe Cycle Configuration Register */ | ||
376 | #define IFIS 0x1000 /* b12: Isochronous in-buffer flush mode select */ | ||
377 | #define IITV 0x0007 /* b2-0: Isochronous interval */ | ||
378 | |||
379 | /* Pipex Control Register */ | ||
380 | #define BSTS 0x8000 /* b15: Buffer status */ | ||
381 | #define INBUFM 0x4000 /* b14: IN buffer monitor (Only for PIPE1 to 5) */ | ||
382 | #define CSCLR 0x2000 /* b13: complete-split status clear */ | ||
383 | #define CSSTS 0x1000 /* b12: complete-split status */ | ||
384 | #define ATREPM 0x0400 /* b10: Auto repeat mode */ | ||
385 | #define ACLRM 0x0200 /* b9: Out buffer auto clear mode */ | ||
386 | #define SQCLR 0x0100 /* b8: Sequence toggle bit clear */ | ||
387 | #define SQSET 0x0080 /* b7: Sequence toggle bit set */ | ||
388 | #define SQMON 0x0040 /* b6: Sequence toggle bit monitor */ | ||
389 | #define PBUSY 0x0020 /* b5: pipe busy */ | ||
390 | #define PID 0x0003 /* b1-0: Response PID */ | ||
391 | |||
392 | /* PIPExTRE */ | ||
393 | #define TRENB 0x0200 /* b9: Transaction counter enable */ | ||
394 | #define TRCLR 0x0100 /* b8: Transaction counter clear */ | ||
395 | |||
396 | /* PIPExTRN */ | ||
397 | #define TRNCNT 0xFFFF /* b15-0: Transaction counter */ | ||
398 | |||
399 | /* DEVADDx */ | ||
400 | #define UPPHUB 0x7800 | ||
401 | #define HUBPORT 0x0700 | ||
402 | #define USBSPD 0x00C0 | ||
403 | #define RTPORT 0x0001 | ||
404 | |||
405 | #define R8A66597_MAX_NUM_PIPE 10 | 35 | #define R8A66597_MAX_NUM_PIPE 10 |
406 | #define R8A66597_BUF_BSIZE 8 | 36 | #define R8A66597_BUF_BSIZE 8 |
407 | #define R8A66597_MAX_DEVICE 10 | 37 | #define R8A66597_MAX_DEVICE 10 |
408 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) | ||
409 | #define R8A66597_MAX_ROOT_HUB 1 | ||
410 | #else | ||
411 | #define R8A66597_MAX_ROOT_HUB 2 | 38 | #define R8A66597_MAX_ROOT_HUB 2 |
412 | #endif | ||
413 | #define R8A66597_MAX_SAMPLING 5 | 39 | #define R8A66597_MAX_SAMPLING 5 |
414 | #define R8A66597_RH_POLL_TIME 10 | 40 | #define R8A66597_RH_POLL_TIME 10 |
415 | #define R8A66597_MAX_DMA_CHANNEL 2 | 41 | #define R8A66597_MAX_DMA_CHANNEL 2 |
@@ -487,7 +113,7 @@ struct r8a66597_root_hub { | |||
487 | struct r8a66597 { | 113 | struct r8a66597 { |
488 | spinlock_t lock; | 114 | spinlock_t lock; |
489 | unsigned long reg; | 115 | unsigned long reg; |
490 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) && defined(CONFIG_HAVE_CLK) | 116 | #ifdef CONFIG_HAVE_CLK |
491 | struct clk *clk; | 117 | struct clk *clk; |
492 | #endif | 118 | #endif |
493 | struct r8a66597_platdata *pdata; | 119 | struct r8a66597_platdata *pdata; |
@@ -504,6 +130,7 @@ struct r8a66597 { | |||
504 | unsigned short interval_map; | 130 | unsigned short interval_map; |
505 | unsigned char pipe_cnt[R8A66597_MAX_NUM_PIPE]; | 131 | unsigned char pipe_cnt[R8A66597_MAX_NUM_PIPE]; |
506 | unsigned char dma_map; | 132 | unsigned char dma_map; |
133 | unsigned int max_root_hub; | ||
507 | 134 | ||
508 | struct list_head child_device; | 135 | struct list_head child_device; |
509 | unsigned long child_connect_map[4]; | 136 | unsigned long child_connect_map[4]; |
@@ -550,21 +177,22 @@ static inline void r8a66597_read_fifo(struct r8a66597 *r8a66597, | |||
550 | unsigned long offset, u16 *buf, | 177 | unsigned long offset, u16 *buf, |
551 | int len) | 178 | int len) |
552 | { | 179 | { |
553 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) | ||
554 | unsigned long fifoaddr = r8a66597->reg + offset; | 180 | unsigned long fifoaddr = r8a66597->reg + offset; |
555 | unsigned long count; | 181 | unsigned long count; |
556 | 182 | ||
557 | count = len / 4; | 183 | if (r8a66597->pdata->on_chip) { |
558 | insl(fifoaddr, buf, count); | 184 | count = len / 4; |
185 | insl(fifoaddr, buf, count); | ||
559 | 186 | ||
560 | if (len & 0x00000003) { | 187 | if (len & 0x00000003) { |
561 | unsigned long tmp = inl(fifoaddr); | 188 | unsigned long tmp = inl(fifoaddr); |
562 | memcpy((unsigned char *)buf + count * 4, &tmp, len & 0x03); | 189 | memcpy((unsigned char *)buf + count * 4, &tmp, |
190 | len & 0x03); | ||
191 | } | ||
192 | } else { | ||
193 | len = (len + 1) / 2; | ||
194 | insw(fifoaddr, buf, len); | ||
563 | } | 195 | } |
564 | #else | ||
565 | len = (len + 1) / 2; | ||
566 | insw(r8a66597->reg + offset, buf, len); | ||
567 | #endif | ||
568 | } | 196 | } |
569 | 197 | ||
570 | static inline void r8a66597_write(struct r8a66597 *r8a66597, u16 val, | 198 | static inline void r8a66597_write(struct r8a66597 *r8a66597, u16 val, |
@@ -578,33 +206,33 @@ static inline void r8a66597_write_fifo(struct r8a66597 *r8a66597, | |||
578 | int len) | 206 | int len) |
579 | { | 207 | { |
580 | unsigned long fifoaddr = r8a66597->reg + offset; | 208 | unsigned long fifoaddr = r8a66597->reg + offset; |
581 | #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) | ||
582 | unsigned long count; | 209 | unsigned long count; |
583 | unsigned char *pb; | 210 | unsigned char *pb; |
584 | int i; | 211 | int i; |
585 | 212 | ||
586 | count = len / 4; | 213 | if (r8a66597->pdata->on_chip) { |
587 | outsl(fifoaddr, buf, count); | 214 | count = len / 4; |
215 | outsl(fifoaddr, buf, count); | ||
216 | |||
217 | if (len & 0x00000003) { | ||
218 | pb = (unsigned char *)buf + count * 4; | ||
219 | for (i = 0; i < (len & 0x00000003); i++) { | ||
220 | if (r8a66597_read(r8a66597, CFIFOSEL) & BIGEND) | ||
221 | outb(pb[i], fifoaddr + i); | ||
222 | else | ||
223 | outb(pb[i], fifoaddr + 3 - i); | ||
224 | } | ||
225 | } | ||
226 | } else { | ||
227 | int odd = len & 0x0001; | ||
588 | 228 | ||
589 | if (len & 0x00000003) { | 229 | len = len / 2; |
590 | pb = (unsigned char *)buf + count * 4; | 230 | outsw(fifoaddr, buf, len); |
591 | for (i = 0; i < (len & 0x00000003); i++) { | 231 | if (unlikely(odd)) { |
592 | if (r8a66597_read(r8a66597, CFIFOSEL) & BIGEND) | 232 | buf = &buf[len]; |
593 | outb(pb[i], fifoaddr + i); | 233 | outb((unsigned char)*buf, fifoaddr); |
594 | else | ||
595 | outb(pb[i], fifoaddr + 3 - i); | ||
596 | } | 234 | } |
597 | } | 235 | } |
598 | #else | ||
599 | int odd = len & 0x0001; | ||
600 | |||
601 | len = len / 2; | ||
602 | outsw(fifoaddr, buf, len); | ||
603 | if (unlikely(odd)) { | ||
604 | buf = &buf[len]; | ||
605 | outb((unsigned char)*buf, fifoaddr); | ||
606 | } | ||
607 | #endif | ||
608 | } | 236 | } |
609 | 237 | ||
610 | static inline void r8a66597_mdfy(struct r8a66597 *r8a66597, | 238 | static inline void r8a66597_mdfy(struct r8a66597 *r8a66597, |
diff --git a/drivers/usb/misc/iowarrior.c b/drivers/usb/misc/iowarrior.c index 90e1a8dedfa9..e75bb87ee92b 100644 --- a/drivers/usb/misc/iowarrior.c +++ b/drivers/usb/misc/iowarrior.c | |||
@@ -727,7 +727,7 @@ static const struct file_operations iowarrior_fops = { | |||
727 | .poll = iowarrior_poll, | 727 | .poll = iowarrior_poll, |
728 | }; | 728 | }; |
729 | 729 | ||
730 | static char *iowarrior_nodename(struct device *dev) | 730 | static char *iowarrior_devnode(struct device *dev, mode_t *mode) |
731 | { | 731 | { |
732 | return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev)); | 732 | return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev)); |
733 | } | 733 | } |
@@ -738,7 +738,7 @@ static char *iowarrior_nodename(struct device *dev) | |||
738 | */ | 738 | */ |
739 | static struct usb_class_driver iowarrior_class = { | 739 | static struct usb_class_driver iowarrior_class = { |
740 | .name = "iowarrior%d", | 740 | .name = "iowarrior%d", |
741 | .nodename = iowarrior_nodename, | 741 | .devnode = iowarrior_devnode, |
742 | .fops = &iowarrior_fops, | 742 | .fops = &iowarrior_fops, |
743 | .minor_base = IOWARRIOR_MINOR_BASE, | 743 | .minor_base = IOWARRIOR_MINOR_BASE, |
744 | }; | 744 | }; |
diff --git a/drivers/usb/misc/legousbtower.c b/drivers/usb/misc/legousbtower.c index c1e2433f640d..97efeaec4d52 100644 --- a/drivers/usb/misc/legousbtower.c +++ b/drivers/usb/misc/legousbtower.c | |||
@@ -266,7 +266,7 @@ static const struct file_operations tower_fops = { | |||
266 | .llseek = tower_llseek, | 266 | .llseek = tower_llseek, |
267 | }; | 267 | }; |
268 | 268 | ||
269 | static char *legousbtower_nodename(struct device *dev) | 269 | static char *legousbtower_devnode(struct device *dev, mode_t *mode) |
270 | { | 270 | { |
271 | return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev)); | 271 | return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev)); |
272 | } | 272 | } |
@@ -277,7 +277,7 @@ static char *legousbtower_nodename(struct device *dev) | |||
277 | */ | 277 | */ |
278 | static struct usb_class_driver tower_class = { | 278 | static struct usb_class_driver tower_class = { |
279 | .name = "legousbtower%d", | 279 | .name = "legousbtower%d", |
280 | .nodename = legousbtower_nodename, | 280 | .devnode = legousbtower_devnode, |
281 | .fops = &tower_fops, | 281 | .fops = &tower_fops, |
282 | .minor_base = LEGO_USB_TOWER_MINOR_BASE, | 282 | .minor_base = LEGO_USB_TOWER_MINOR_BASE, |
283 | }; | 283 | }; |
diff --git a/drivers/usb/serial/ark3116.c b/drivers/usb/serial/ark3116.c index aec61880f36c..5d25d3e52bf6 100644 --- a/drivers/usb/serial/ark3116.c +++ b/drivers/usb/serial/ark3116.c | |||
@@ -35,11 +35,6 @@ static struct usb_device_id id_table [] = { | |||
35 | }; | 35 | }; |
36 | MODULE_DEVICE_TABLE(usb, id_table); | 36 | MODULE_DEVICE_TABLE(usb, id_table); |
37 | 37 | ||
38 | struct ark3116_private { | ||
39 | spinlock_t lock; | ||
40 | u8 termios_initialized; | ||
41 | }; | ||
42 | |||
43 | static inline void ARK3116_SND(struct usb_serial *serial, int seq, | 38 | static inline void ARK3116_SND(struct usb_serial *serial, int seq, |
44 | __u8 request, __u8 requesttype, | 39 | __u8 request, __u8 requesttype, |
45 | __u16 value, __u16 index) | 40 | __u16 value, __u16 index) |
@@ -82,22 +77,11 @@ static inline void ARK3116_RCV_QUIET(struct usb_serial *serial, | |||
82 | static int ark3116_attach(struct usb_serial *serial) | 77 | static int ark3116_attach(struct usb_serial *serial) |
83 | { | 78 | { |
84 | char *buf; | 79 | char *buf; |
85 | struct ark3116_private *priv; | ||
86 | int i; | ||
87 | |||
88 | for (i = 0; i < serial->num_ports; ++i) { | ||
89 | priv = kzalloc(sizeof(struct ark3116_private), GFP_KERNEL); | ||
90 | if (!priv) | ||
91 | goto cleanup; | ||
92 | spin_lock_init(&priv->lock); | ||
93 | |||
94 | usb_set_serial_port_data(serial->port[i], priv); | ||
95 | } | ||
96 | 80 | ||
97 | buf = kmalloc(1, GFP_KERNEL); | 81 | buf = kmalloc(1, GFP_KERNEL); |
98 | if (!buf) { | 82 | if (!buf) { |
99 | dbg("error kmalloc -> out of mem?"); | 83 | dbg("error kmalloc -> out of mem?"); |
100 | goto cleanup; | 84 | return -ENOMEM; |
101 | } | 85 | } |
102 | 86 | ||
103 | /* 3 */ | 87 | /* 3 */ |
@@ -149,13 +133,16 @@ static int ark3116_attach(struct usb_serial *serial) | |||
149 | 133 | ||
150 | kfree(buf); | 134 | kfree(buf); |
151 | return 0; | 135 | return 0; |
136 | } | ||
152 | 137 | ||
153 | cleanup: | 138 | static void ark3116_init_termios(struct tty_struct *tty) |
154 | for (--i; i >= 0; --i) { | 139 | { |
155 | kfree(usb_get_serial_port_data(serial->port[i])); | 140 | struct ktermios *termios = tty->termios; |
156 | usb_set_serial_port_data(serial->port[i], NULL); | 141 | *termios = tty_std_termios; |
157 | } | 142 | termios->c_cflag = B9600 | CS8 |
158 | return -ENOMEM; | 143 | | CREAD | HUPCL | CLOCAL; |
144 | termios->c_ispeed = 9600; | ||
145 | termios->c_ospeed = 9600; | ||
159 | } | 146 | } |
160 | 147 | ||
161 | static void ark3116_set_termios(struct tty_struct *tty, | 148 | static void ark3116_set_termios(struct tty_struct *tty, |
@@ -163,10 +150,8 @@ static void ark3116_set_termios(struct tty_struct *tty, | |||
163 | struct ktermios *old_termios) | 150 | struct ktermios *old_termios) |
164 | { | 151 | { |
165 | struct usb_serial *serial = port->serial; | 152 | struct usb_serial *serial = port->serial; |
166 | struct ark3116_private *priv = usb_get_serial_port_data(port); | ||
167 | struct ktermios *termios = tty->termios; | 153 | struct ktermios *termios = tty->termios; |
168 | unsigned int cflag = termios->c_cflag; | 154 | unsigned int cflag = termios->c_cflag; |
169 | unsigned long flags; | ||
170 | int baud; | 155 | int baud; |
171 | int ark3116_baud; | 156 | int ark3116_baud; |
172 | char *buf; | 157 | char *buf; |
@@ -176,16 +161,6 @@ static void ark3116_set_termios(struct tty_struct *tty, | |||
176 | 161 | ||
177 | dbg("%s - port %d", __func__, port->number); | 162 | dbg("%s - port %d", __func__, port->number); |
178 | 163 | ||
179 | spin_lock_irqsave(&priv->lock, flags); | ||
180 | if (!priv->termios_initialized) { | ||
181 | *termios = tty_std_termios; | ||
182 | termios->c_cflag = B9600 | CS8 | ||
183 | | CREAD | HUPCL | CLOCAL; | ||
184 | termios->c_ispeed = 9600; | ||
185 | termios->c_ospeed = 9600; | ||
186 | priv->termios_initialized = 1; | ||
187 | } | ||
188 | spin_unlock_irqrestore(&priv->lock, flags); | ||
189 | 164 | ||
190 | cflag = termios->c_cflag; | 165 | cflag = termios->c_cflag; |
191 | termios->c_cflag &= ~(CMSPAR|CRTSCTS); | 166 | termios->c_cflag &= ~(CMSPAR|CRTSCTS); |
@@ -318,8 +293,7 @@ static void ark3116_set_termios(struct tty_struct *tty, | |||
318 | return; | 293 | return; |
319 | } | 294 | } |
320 | 295 | ||
321 | static int ark3116_open(struct tty_struct *tty, struct usb_serial_port *port, | 296 | static int ark3116_open(struct tty_struct *tty, struct usb_serial_port *port) |
322 | struct file *filp) | ||
323 | { | 297 | { |
324 | struct ktermios tmp_termios; | 298 | struct ktermios tmp_termios; |
325 | struct usb_serial *serial = port->serial; | 299 | struct usb_serial *serial = port->serial; |
@@ -334,7 +308,7 @@ static int ark3116_open(struct tty_struct *tty, struct usb_serial_port *port, | |||
334 | return -ENOMEM; | 308 | return -ENOMEM; |
335 | } | 309 | } |
336 | 310 | ||
337 | result = usb_serial_generic_open(tty, port, filp); | 311 | result = usb_serial_generic_open(tty, port); |
338 | if (result) | 312 | if (result) |
339 | goto err_out; | 313 | goto err_out; |
340 | 314 | ||
@@ -455,6 +429,7 @@ static struct usb_serial_driver ark3116_device = { | |||
455 | .num_ports = 1, | 429 | .num_ports = 1, |
456 | .attach = ark3116_attach, | 430 | .attach = ark3116_attach, |
457 | .set_termios = ark3116_set_termios, | 431 | .set_termios = ark3116_set_termios, |
432 | .init_termios = ark3116_init_termios, | ||
458 | .ioctl = ark3116_ioctl, | 433 | .ioctl = ark3116_ioctl, |
459 | .tiocmget = ark3116_tiocmget, | 434 | .tiocmget = ark3116_tiocmget, |
460 | .open = ark3116_open, | 435 | .open = ark3116_open, |
diff --git a/drivers/usb/serial/belkin_sa.c b/drivers/usb/serial/belkin_sa.c index 7033b031b443..a0467bc61627 100644 --- a/drivers/usb/serial/belkin_sa.c +++ b/drivers/usb/serial/belkin_sa.c | |||
@@ -92,7 +92,7 @@ static int debug; | |||
92 | static int belkin_sa_startup(struct usb_serial *serial); | 92 | static int belkin_sa_startup(struct usb_serial *serial); |
93 | static void belkin_sa_release(struct usb_serial *serial); | 93 | static void belkin_sa_release(struct usb_serial *serial); |
94 | static int belkin_sa_open(struct tty_struct *tty, | 94 | static int belkin_sa_open(struct tty_struct *tty, |
95 | struct usb_serial_port *port, struct file *filp); | 95 | struct usb_serial_port *port); |
96 | static void belkin_sa_close(struct usb_serial_port *port); | 96 | static void belkin_sa_close(struct usb_serial_port *port); |
97 | static void belkin_sa_read_int_callback(struct urb *urb); | 97 | static void belkin_sa_read_int_callback(struct urb *urb); |
98 | static void belkin_sa_set_termios(struct tty_struct *tty, | 98 | static void belkin_sa_set_termios(struct tty_struct *tty, |
@@ -213,7 +213,7 @@ static void belkin_sa_release(struct usb_serial *serial) | |||
213 | 213 | ||
214 | 214 | ||
215 | static int belkin_sa_open(struct tty_struct *tty, | 215 | static int belkin_sa_open(struct tty_struct *tty, |
216 | struct usb_serial_port *port, struct file *filp) | 216 | struct usb_serial_port *port) |
217 | { | 217 | { |
218 | int retval = 0; | 218 | int retval = 0; |
219 | 219 | ||
diff --git a/drivers/usb/serial/ch341.c b/drivers/usb/serial/ch341.c index 2830766f5b39..8c894a7d5dcf 100644 --- a/drivers/usb/serial/ch341.c +++ b/drivers/usb/serial/ch341.c | |||
@@ -300,8 +300,7 @@ static void ch341_close(struct usb_serial_port *port) | |||
300 | 300 | ||
301 | 301 | ||
302 | /* open this device, set default parameters */ | 302 | /* open this device, set default parameters */ |
303 | static int ch341_open(struct tty_struct *tty, struct usb_serial_port *port, | 303 | static int ch341_open(struct tty_struct *tty, struct usb_serial_port *port) |
304 | struct file *filp) | ||
305 | { | 304 | { |
306 | struct usb_serial *serial = port->serial; | 305 | struct usb_serial *serial = port->serial; |
307 | struct ch341_private *priv = usb_get_serial_port_data(serial->port[0]); | 306 | struct ch341_private *priv = usb_get_serial_port_data(serial->port[0]); |
@@ -333,7 +332,7 @@ static int ch341_open(struct tty_struct *tty, struct usb_serial_port *port, | |||
333 | return -EPROTO; | 332 | return -EPROTO; |
334 | } | 333 | } |
335 | 334 | ||
336 | r = usb_serial_generic_open(tty, port, filp); | 335 | r = usb_serial_generic_open(tty, port); |
337 | 336 | ||
338 | out: return r; | 337 | out: return r; |
339 | } | 338 | } |
diff --git a/drivers/usb/serial/console.c b/drivers/usb/serial/console.c index 0e4f2e41ace5..b22ac3258523 100644 --- a/drivers/usb/serial/console.c +++ b/drivers/usb/serial/console.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/slab.h> | 16 | #include <linux/slab.h> |
17 | #include <linux/tty.h> | 17 | #include <linux/tty.h> |
18 | #include <linux/console.h> | 18 | #include <linux/console.h> |
19 | #include <linux/serial.h> | ||
19 | #include <linux/usb.h> | 20 | #include <linux/usb.h> |
20 | #include <linux/usb/serial.h> | 21 | #include <linux/usb/serial.h> |
21 | 22 | ||
@@ -63,7 +64,7 @@ static int usb_console_setup(struct console *co, char *options) | |||
63 | char *s; | 64 | char *s; |
64 | struct usb_serial *serial; | 65 | struct usb_serial *serial; |
65 | struct usb_serial_port *port; | 66 | struct usb_serial_port *port; |
66 | int retval = 0; | 67 | int retval; |
67 | struct tty_struct *tty = NULL; | 68 | struct tty_struct *tty = NULL; |
68 | struct ktermios *termios = NULL, dummy; | 69 | struct ktermios *termios = NULL, dummy; |
69 | 70 | ||
@@ -116,13 +117,17 @@ static int usb_console_setup(struct console *co, char *options) | |||
116 | return -ENODEV; | 117 | return -ENODEV; |
117 | } | 118 | } |
118 | 119 | ||
119 | port = serial->port[0]; | 120 | retval = usb_autopm_get_interface(serial->interface); |
121 | if (retval) | ||
122 | goto error_get_interface; | ||
123 | |||
124 | port = serial->port[co->index - serial->minor]; | ||
120 | tty_port_tty_set(&port->port, NULL); | 125 | tty_port_tty_set(&port->port, NULL); |
121 | 126 | ||
122 | info->port = port; | 127 | info->port = port; |
123 | 128 | ||
124 | ++port->port.count; | 129 | ++port->port.count; |
125 | if (port->port.count == 1) { | 130 | if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags)) { |
126 | if (serial->type->set_termios) { | 131 | if (serial->type->set_termios) { |
127 | /* | 132 | /* |
128 | * allocate a fake tty so the driver can initialize | 133 | * allocate a fake tty so the driver can initialize |
@@ -150,9 +155,9 @@ static int usb_console_setup(struct console *co, char *options) | |||
150 | /* only call the device specific open if this | 155 | /* only call the device specific open if this |
151 | * is the first time the port is opened */ | 156 | * is the first time the port is opened */ |
152 | if (serial->type->open) | 157 | if (serial->type->open) |
153 | retval = serial->type->open(NULL, port, NULL); | 158 | retval = serial->type->open(NULL, port); |
154 | else | 159 | else |
155 | retval = usb_serial_generic_open(NULL, port, NULL); | 160 | retval = usb_serial_generic_open(NULL, port); |
156 | 161 | ||
157 | if (retval) { | 162 | if (retval) { |
158 | err("could not open USB console port"); | 163 | err("could not open USB console port"); |
@@ -168,6 +173,7 @@ static int usb_console_setup(struct console *co, char *options) | |||
168 | kfree(termios); | 173 | kfree(termios); |
169 | kfree(tty); | 174 | kfree(tty); |
170 | } | 175 | } |
176 | set_bit(ASYNCB_INITIALIZED, &port->port.flags); | ||
171 | } | 177 | } |
172 | /* Now that any required fake tty operations are completed restore | 178 | /* Now that any required fake tty operations are completed restore |
173 | * the tty port count */ | 179 | * the tty port count */ |
@@ -175,18 +181,22 @@ static int usb_console_setup(struct console *co, char *options) | |||
175 | /* The console is special in terms of closing the device so | 181 | /* The console is special in terms of closing the device so |
176 | * indicate this port is now acting as a system console. */ | 182 | * indicate this port is now acting as a system console. */ |
177 | port->console = 1; | 183 | port->console = 1; |
178 | retval = 0; | ||
179 | 184 | ||
180 | out: | 185 | mutex_unlock(&serial->disc_mutex); |
181 | return retval; | 186 | return retval; |
182 | free_termios: | 187 | |
188 | free_termios: | ||
183 | kfree(termios); | 189 | kfree(termios); |
184 | tty_port_tty_set(&port->port, NULL); | 190 | tty_port_tty_set(&port->port, NULL); |
185 | free_tty: | 191 | free_tty: |
186 | kfree(tty); | 192 | kfree(tty); |
187 | reset_open_count: | 193 | reset_open_count: |
188 | port->port.count = 0; | 194 | port->port.count = 0; |
189 | goto out; | 195 | usb_autopm_put_interface(serial->interface); |
196 | error_get_interface: | ||
197 | usb_serial_put(serial); | ||
198 | mutex_unlock(&serial->disc_mutex); | ||
199 | return retval; | ||
190 | } | 200 | } |
191 | 201 | ||
192 | static void usb_console_write(struct console *co, | 202 | static void usb_console_write(struct console *co, |
diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c index 985cbcf48bda..4a208fe85bc9 100644 --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c | |||
@@ -33,8 +33,7 @@ | |||
33 | /* | 33 | /* |
34 | * Function Prototypes | 34 | * Function Prototypes |
35 | */ | 35 | */ |
36 | static int cp210x_open(struct tty_struct *, struct usb_serial_port *, | 36 | static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *); |
37 | struct file *); | ||
38 | static void cp210x_cleanup(struct usb_serial_port *); | 37 | static void cp210x_cleanup(struct usb_serial_port *); |
39 | static void cp210x_close(struct usb_serial_port *); | 38 | static void cp210x_close(struct usb_serial_port *); |
40 | static void cp210x_get_termios(struct tty_struct *, | 39 | static void cp210x_get_termios(struct tty_struct *, |
@@ -368,8 +367,7 @@ static unsigned int cp210x_quantise_baudrate(unsigned int baud) { | |||
368 | return baud; | 367 | return baud; |
369 | } | 368 | } |
370 | 369 | ||
371 | static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port, | 370 | static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port) |
372 | struct file *filp) | ||
373 | { | 371 | { |
374 | struct usb_serial *serial = port->serial; | 372 | struct usb_serial *serial = port->serial; |
375 | int result; | 373 | int result; |
@@ -399,12 +397,6 @@ static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port, | |||
399 | 397 | ||
400 | /* Configure the termios structure */ | 398 | /* Configure the termios structure */ |
401 | cp210x_get_termios(tty, port); | 399 | cp210x_get_termios(tty, port); |
402 | |||
403 | /* Set the DTR and RTS pins low */ | ||
404 | cp210x_tiocmset_port(tty ? (struct usb_serial_port *) tty->driver_data | ||
405 | : port, | ||
406 | NULL, TIOCM_DTR | TIOCM_RTS, 0); | ||
407 | |||
408 | return 0; | 400 | return 0; |
409 | } | 401 | } |
410 | 402 | ||
diff --git a/drivers/usb/serial/cyberjack.c b/drivers/usb/serial/cyberjack.c index 336523fd7366..b0f6402a91ca 100644 --- a/drivers/usb/serial/cyberjack.c +++ b/drivers/usb/serial/cyberjack.c | |||
@@ -61,7 +61,7 @@ static int cyberjack_startup(struct usb_serial *serial); | |||
61 | static void cyberjack_disconnect(struct usb_serial *serial); | 61 | static void cyberjack_disconnect(struct usb_serial *serial); |
62 | static void cyberjack_release(struct usb_serial *serial); | 62 | static void cyberjack_release(struct usb_serial *serial); |
63 | static int cyberjack_open(struct tty_struct *tty, | 63 | static int cyberjack_open(struct tty_struct *tty, |
64 | struct usb_serial_port *port, struct file *filp); | 64 | struct usb_serial_port *port); |
65 | static void cyberjack_close(struct usb_serial_port *port); | 65 | static void cyberjack_close(struct usb_serial_port *port); |
66 | static int cyberjack_write(struct tty_struct *tty, | 66 | static int cyberjack_write(struct tty_struct *tty, |
67 | struct usb_serial_port *port, const unsigned char *buf, int count); | 67 | struct usb_serial_port *port, const unsigned char *buf, int count); |
@@ -173,7 +173,7 @@ static void cyberjack_release(struct usb_serial *serial) | |||
173 | } | 173 | } |
174 | 174 | ||
175 | static int cyberjack_open(struct tty_struct *tty, | 175 | static int cyberjack_open(struct tty_struct *tty, |
176 | struct usb_serial_port *port, struct file *filp) | 176 | struct usb_serial_port *port) |
177 | { | 177 | { |
178 | struct cyberjack_private *priv; | 178 | struct cyberjack_private *priv; |
179 | unsigned long flags; | 179 | unsigned long flags; |
diff --git a/drivers/usb/serial/cypress_m8.c b/drivers/usb/serial/cypress_m8.c index 59adfe123110..e0a8b715f2f2 100644 --- a/drivers/usb/serial/cypress_m8.c +++ b/drivers/usb/serial/cypress_m8.c | |||
@@ -172,8 +172,7 @@ static int cypress_earthmate_startup(struct usb_serial *serial); | |||
172 | static int cypress_hidcom_startup(struct usb_serial *serial); | 172 | static int cypress_hidcom_startup(struct usb_serial *serial); |
173 | static int cypress_ca42v2_startup(struct usb_serial *serial); | 173 | static int cypress_ca42v2_startup(struct usb_serial *serial); |
174 | static void cypress_release(struct usb_serial *serial); | 174 | static void cypress_release(struct usb_serial *serial); |
175 | static int cypress_open(struct tty_struct *tty, | 175 | static int cypress_open(struct tty_struct *tty, struct usb_serial_port *port); |
176 | struct usb_serial_port *port, struct file *filp); | ||
177 | static void cypress_close(struct usb_serial_port *port); | 176 | static void cypress_close(struct usb_serial_port *port); |
178 | static void cypress_dtr_rts(struct usb_serial_port *port, int on); | 177 | static void cypress_dtr_rts(struct usb_serial_port *port, int on); |
179 | static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port, | 178 | static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port, |
@@ -633,8 +632,7 @@ static void cypress_release(struct usb_serial *serial) | |||
633 | } | 632 | } |
634 | 633 | ||
635 | 634 | ||
636 | static int cypress_open(struct tty_struct *tty, | 635 | static int cypress_open(struct tty_struct *tty, struct usb_serial_port *port) |
637 | struct usb_serial_port *port, struct file *filp) | ||
638 | { | 636 | { |
639 | struct cypress_private *priv = usb_get_serial_port_data(port); | 637 | struct cypress_private *priv = usb_get_serial_port_data(port); |
640 | struct usb_serial *serial = port->serial; | 638 | struct usb_serial *serial = port->serial; |
@@ -659,15 +657,7 @@ static int cypress_open(struct tty_struct *tty, | |||
659 | spin_unlock_irqrestore(&priv->lock, flags); | 657 | spin_unlock_irqrestore(&priv->lock, flags); |
660 | 658 | ||
661 | /* Set termios */ | 659 | /* Set termios */ |
662 | result = cypress_write(tty, port, NULL, 0); | 660 | cypress_send(port); |
663 | |||
664 | if (result) { | ||
665 | dev_err(&port->dev, | ||
666 | "%s - failed setting the control lines - error %d\n", | ||
667 | __func__, result); | ||
668 | return result; | ||
669 | } else | ||
670 | dbg("%s - success setting the control lines", __func__); | ||
671 | 661 | ||
672 | if (tty) | 662 | if (tty) |
673 | cypress_set_termios(tty, port, &priv->tmp_termios); | 663 | cypress_set_termios(tty, port, &priv->tmp_termios); |
@@ -1005,6 +995,8 @@ static void cypress_set_termios(struct tty_struct *tty, | |||
1005 | dbg("%s - port %d", __func__, port->number); | 995 | dbg("%s - port %d", __func__, port->number); |
1006 | 996 | ||
1007 | spin_lock_irqsave(&priv->lock, flags); | 997 | spin_lock_irqsave(&priv->lock, flags); |
998 | /* We can't clean this one up as we don't know the device type | ||
999 | early enough */ | ||
1008 | if (!priv->termios_initialized) { | 1000 | if (!priv->termios_initialized) { |
1009 | if (priv->chiptype == CT_EARTHMATE) { | 1001 | if (priv->chiptype == CT_EARTHMATE) { |
1010 | *(tty->termios) = tty_std_termios; | 1002 | *(tty->termios) = tty_std_termios; |
diff --git a/drivers/usb/serial/digi_acceleport.c b/drivers/usb/serial/digi_acceleport.c index f4808091c47c..ab3dd991586b 100644 --- a/drivers/usb/serial/digi_acceleport.c +++ b/drivers/usb/serial/digi_acceleport.c | |||
@@ -453,8 +453,7 @@ static int digi_write(struct tty_struct *tty, struct usb_serial_port *port, | |||
453 | static void digi_write_bulk_callback(struct urb *urb); | 453 | static void digi_write_bulk_callback(struct urb *urb); |
454 | static int digi_write_room(struct tty_struct *tty); | 454 | static int digi_write_room(struct tty_struct *tty); |
455 | static int digi_chars_in_buffer(struct tty_struct *tty); | 455 | static int digi_chars_in_buffer(struct tty_struct *tty); |
456 | static int digi_open(struct tty_struct *tty, struct usb_serial_port *port, | 456 | static int digi_open(struct tty_struct *tty, struct usb_serial_port *port); |
457 | struct file *filp); | ||
458 | static void digi_close(struct usb_serial_port *port); | 457 | static void digi_close(struct usb_serial_port *port); |
459 | static int digi_carrier_raised(struct usb_serial_port *port); | 458 | static int digi_carrier_raised(struct usb_serial_port *port); |
460 | static void digi_dtr_rts(struct usb_serial_port *port, int on); | 459 | static void digi_dtr_rts(struct usb_serial_port *port, int on); |
@@ -1347,8 +1346,7 @@ static int digi_carrier_raised(struct usb_serial_port *port) | |||
1347 | return 0; | 1346 | return 0; |
1348 | } | 1347 | } |
1349 | 1348 | ||
1350 | static int digi_open(struct tty_struct *tty, struct usb_serial_port *port, | 1349 | static int digi_open(struct tty_struct *tty, struct usb_serial_port *port) |
1351 | struct file *filp) | ||
1352 | { | 1350 | { |
1353 | int ret; | 1351 | int ret; |
1354 | unsigned char buf[32]; | 1352 | unsigned char buf[32]; |
diff --git a/drivers/usb/serial/empeg.c b/drivers/usb/serial/empeg.c index 80cb3471adbe..33c9e9cf9eb2 100644 --- a/drivers/usb/serial/empeg.c +++ b/drivers/usb/serial/empeg.c | |||
@@ -79,8 +79,7 @@ static int debug; | |||
79 | #define EMPEG_PRODUCT_ID 0x0001 | 79 | #define EMPEG_PRODUCT_ID 0x0001 |
80 | 80 | ||
81 | /* function prototypes for an empeg-car player */ | 81 | /* function prototypes for an empeg-car player */ |
82 | static int empeg_open(struct tty_struct *tty, struct usb_serial_port *port, | 82 | static int empeg_open(struct tty_struct *tty, struct usb_serial_port *port); |
83 | struct file *filp); | ||
84 | static void empeg_close(struct usb_serial_port *port); | 83 | static void empeg_close(struct usb_serial_port *port); |
85 | static int empeg_write(struct tty_struct *tty, struct usb_serial_port *port, | 84 | static int empeg_write(struct tty_struct *tty, struct usb_serial_port *port, |
86 | const unsigned char *buf, | 85 | const unsigned char *buf, |
@@ -90,8 +89,7 @@ static int empeg_chars_in_buffer(struct tty_struct *tty); | |||
90 | static void empeg_throttle(struct tty_struct *tty); | 89 | static void empeg_throttle(struct tty_struct *tty); |
91 | static void empeg_unthrottle(struct tty_struct *tty); | 90 | static void empeg_unthrottle(struct tty_struct *tty); |
92 | static int empeg_startup(struct usb_serial *serial); | 91 | static int empeg_startup(struct usb_serial *serial); |
93 | static void empeg_set_termios(struct tty_struct *tty, | 92 | static void empeg_init_termios(struct tty_struct *tty); |
94 | struct usb_serial_port *port, struct ktermios *old_termios); | ||
95 | static void empeg_write_bulk_callback(struct urb *urb); | 93 | static void empeg_write_bulk_callback(struct urb *urb); |
96 | static void empeg_read_bulk_callback(struct urb *urb); | 94 | static void empeg_read_bulk_callback(struct urb *urb); |
97 | 95 | ||
@@ -123,7 +121,7 @@ static struct usb_serial_driver empeg_device = { | |||
123 | .throttle = empeg_throttle, | 121 | .throttle = empeg_throttle, |
124 | .unthrottle = empeg_unthrottle, | 122 | .unthrottle = empeg_unthrottle, |
125 | .attach = empeg_startup, | 123 | .attach = empeg_startup, |
126 | .set_termios = empeg_set_termios, | 124 | .init_termios = empeg_init_termios, |
127 | .write = empeg_write, | 125 | .write = empeg_write, |
128 | .write_room = empeg_write_room, | 126 | .write_room = empeg_write_room, |
129 | .chars_in_buffer = empeg_chars_in_buffer, | 127 | .chars_in_buffer = empeg_chars_in_buffer, |
@@ -142,17 +140,13 @@ static int bytes_out; | |||
142 | /****************************************************************************** | 140 | /****************************************************************************** |
143 | * Empeg specific driver functions | 141 | * Empeg specific driver functions |
144 | ******************************************************************************/ | 142 | ******************************************************************************/ |
145 | static int empeg_open(struct tty_struct *tty, struct usb_serial_port *port, | 143 | static int empeg_open(struct tty_struct *tty,struct usb_serial_port *port) |
146 | struct file *filp) | ||
147 | { | 144 | { |
148 | struct usb_serial *serial = port->serial; | 145 | struct usb_serial *serial = port->serial; |
149 | int result = 0; | 146 | int result = 0; |
150 | 147 | ||
151 | dbg("%s - port %d", __func__, port->number); | 148 | dbg("%s - port %d", __func__, port->number); |
152 | 149 | ||
153 | /* Force default termio settings */ | ||
154 | empeg_set_termios(tty, port, NULL) ; | ||
155 | |||
156 | bytes_in = 0; | 150 | bytes_in = 0; |
157 | bytes_out = 0; | 151 | bytes_out = 0; |
158 | 152 | ||
@@ -425,11 +419,9 @@ static int empeg_startup(struct usb_serial *serial) | |||
425 | } | 419 | } |
426 | 420 | ||
427 | 421 | ||
428 | static void empeg_set_termios(struct tty_struct *tty, | 422 | static void empeg_init_termios(struct tty_struct *tty) |
429 | struct usb_serial_port *port, struct ktermios *old_termios) | ||
430 | { | 423 | { |
431 | struct ktermios *termios = tty->termios; | 424 | struct ktermios *termios = tty->termios; |
432 | dbg("%s - port %d", __func__, port->number); | ||
433 | 425 | ||
434 | /* | 426 | /* |
435 | * The empeg-car player wants these particular tty settings. | 427 | * The empeg-car player wants these particular tty settings. |
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 8fec5d4455c9..76a17f915eef 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c | |||
@@ -747,8 +747,7 @@ static int ftdi_sio_probe(struct usb_serial *serial, | |||
747 | const struct usb_device_id *id); | 747 | const struct usb_device_id *id); |
748 | static int ftdi_sio_port_probe(struct usb_serial_port *port); | 748 | static int ftdi_sio_port_probe(struct usb_serial_port *port); |
749 | static int ftdi_sio_port_remove(struct usb_serial_port *port); | 749 | static int ftdi_sio_port_remove(struct usb_serial_port *port); |
750 | static int ftdi_open(struct tty_struct *tty, | 750 | static int ftdi_open(struct tty_struct *tty, struct usb_serial_port *port); |
751 | struct usb_serial_port *port, struct file *filp); | ||
752 | static void ftdi_close(struct usb_serial_port *port); | 751 | static void ftdi_close(struct usb_serial_port *port); |
753 | static void ftdi_dtr_rts(struct usb_serial_port *port, int on); | 752 | static void ftdi_dtr_rts(struct usb_serial_port *port, int on); |
754 | static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port, | 753 | static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port, |
@@ -1680,8 +1679,7 @@ static int ftdi_sio_port_remove(struct usb_serial_port *port) | |||
1680 | return 0; | 1679 | return 0; |
1681 | } | 1680 | } |
1682 | 1681 | ||
1683 | static int ftdi_open(struct tty_struct *tty, | 1682 | static int ftdi_open(struct tty_struct *tty, struct usb_serial_port *port) |
1684 | struct usb_serial_port *port, struct file *filp) | ||
1685 | { /* ftdi_open */ | 1683 | { /* ftdi_open */ |
1686 | struct usb_device *dev = port->serial->dev; | 1684 | struct usb_device *dev = port->serial->dev; |
1687 | struct ftdi_private *priv = usb_get_serial_port_data(port); | 1685 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
diff --git a/drivers/usb/serial/garmin_gps.c b/drivers/usb/serial/garmin_gps.c index 8839f1c70b7f..20432d345529 100644 --- a/drivers/usb/serial/garmin_gps.c +++ b/drivers/usb/serial/garmin_gps.c | |||
@@ -933,8 +933,7 @@ static int garmin_init_session(struct usb_serial_port *port) | |||
933 | 933 | ||
934 | 934 | ||
935 | 935 | ||
936 | static int garmin_open(struct tty_struct *tty, | 936 | static int garmin_open(struct tty_struct *tty, struct usb_serial_port *port) |
937 | struct usb_serial_port *port, struct file *filp) | ||
938 | { | 937 | { |
939 | unsigned long flags; | 938 | unsigned long flags; |
940 | int status = 0; | 939 | int status = 0; |
diff --git a/drivers/usb/serial/generic.c b/drivers/usb/serial/generic.c index ce57f6a32bdf..d9398e9f30ce 100644 --- a/drivers/usb/serial/generic.c +++ b/drivers/usb/serial/generic.c | |||
@@ -114,8 +114,7 @@ void usb_serial_generic_deregister(void) | |||
114 | #endif | 114 | #endif |
115 | } | 115 | } |
116 | 116 | ||
117 | int usb_serial_generic_open(struct tty_struct *tty, | 117 | int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port) |
118 | struct usb_serial_port *port, struct file *filp) | ||
119 | { | 118 | { |
120 | struct usb_serial *serial = port->serial; | 119 | struct usb_serial *serial = port->serial; |
121 | int result = 0; | 120 | int result = 0; |
diff --git a/drivers/usb/serial/io_edgeport.c b/drivers/usb/serial/io_edgeport.c index 0191693625d6..dc0f832657e6 100644 --- a/drivers/usb/serial/io_edgeport.c +++ b/drivers/usb/serial/io_edgeport.c | |||
@@ -205,8 +205,7 @@ static void edge_bulk_out_data_callback(struct urb *urb); | |||
205 | static void edge_bulk_out_cmd_callback(struct urb *urb); | 205 | static void edge_bulk_out_cmd_callback(struct urb *urb); |
206 | 206 | ||
207 | /* function prototypes for the usbserial callbacks */ | 207 | /* function prototypes for the usbserial callbacks */ |
208 | static int edge_open(struct tty_struct *tty, struct usb_serial_port *port, | 208 | static int edge_open(struct tty_struct *tty, struct usb_serial_port *port); |
209 | struct file *filp); | ||
210 | static void edge_close(struct usb_serial_port *port); | 209 | static void edge_close(struct usb_serial_port *port); |
211 | static int edge_write(struct tty_struct *tty, struct usb_serial_port *port, | 210 | static int edge_write(struct tty_struct *tty, struct usb_serial_port *port, |
212 | const unsigned char *buf, int count); | 211 | const unsigned char *buf, int count); |
@@ -852,8 +851,7 @@ static void edge_bulk_out_cmd_callback(struct urb *urb) | |||
852 | * If successful, we return 0 | 851 | * If successful, we return 0 |
853 | * Otherwise we return a negative error number. | 852 | * Otherwise we return a negative error number. |
854 | *****************************************************************************/ | 853 | *****************************************************************************/ |
855 | static int edge_open(struct tty_struct *tty, | 854 | static int edge_open(struct tty_struct *tty, struct usb_serial_port *port) |
856 | struct usb_serial_port *port, struct file *filp) | ||
857 | { | 855 | { |
858 | struct edgeport_port *edge_port = usb_get_serial_port_data(port); | 856 | struct edgeport_port *edge_port = usb_get_serial_port_data(port); |
859 | struct usb_serial *serial; | 857 | struct usb_serial *serial; |
diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c index e8bc42f92e79..d4cc0f7af400 100644 --- a/drivers/usb/serial/io_ti.c +++ b/drivers/usb/serial/io_ti.c | |||
@@ -1831,8 +1831,7 @@ static void edge_bulk_out_callback(struct urb *urb) | |||
1831 | tty_kref_put(tty); | 1831 | tty_kref_put(tty); |
1832 | } | 1832 | } |
1833 | 1833 | ||
1834 | static int edge_open(struct tty_struct *tty, | 1834 | static int edge_open(struct tty_struct *tty, struct usb_serial_port *port) |
1835 | struct usb_serial_port *port, struct file *filp) | ||
1836 | { | 1835 | { |
1837 | struct edgeport_port *edge_port = usb_get_serial_port_data(port); | 1836 | struct edgeport_port *edge_port = usb_get_serial_port_data(port); |
1838 | struct edgeport_serial *edge_serial; | 1837 | struct edgeport_serial *edge_serial; |
diff --git a/drivers/usb/serial/ipaq.c b/drivers/usb/serial/ipaq.c index 2545d45ce16f..24fcc64b837d 100644 --- a/drivers/usb/serial/ipaq.c +++ b/drivers/usb/serial/ipaq.c | |||
@@ -75,7 +75,7 @@ static int initial_wait; | |||
75 | 75 | ||
76 | /* Function prototypes for an ipaq */ | 76 | /* Function prototypes for an ipaq */ |
77 | static int ipaq_open(struct tty_struct *tty, | 77 | static int ipaq_open(struct tty_struct *tty, |
78 | struct usb_serial_port *port, struct file *filp); | 78 | struct usb_serial_port *port); |
79 | static void ipaq_close(struct usb_serial_port *port); | 79 | static void ipaq_close(struct usb_serial_port *port); |
80 | static int ipaq_calc_num_ports(struct usb_serial *serial); | 80 | static int ipaq_calc_num_ports(struct usb_serial *serial); |
81 | static int ipaq_startup(struct usb_serial *serial); | 81 | static int ipaq_startup(struct usb_serial *serial); |
@@ -587,7 +587,7 @@ static int bytes_in; | |||
587 | static int bytes_out; | 587 | static int bytes_out; |
588 | 588 | ||
589 | static int ipaq_open(struct tty_struct *tty, | 589 | static int ipaq_open(struct tty_struct *tty, |
590 | struct usb_serial_port *port, struct file *filp) | 590 | struct usb_serial_port *port) |
591 | { | 591 | { |
592 | struct usb_serial *serial = port->serial; | 592 | struct usb_serial *serial = port->serial; |
593 | struct ipaq_private *priv; | 593 | struct ipaq_private *priv; |
@@ -628,11 +628,6 @@ static int ipaq_open(struct tty_struct *tty, | |||
628 | priv->free_len += PACKET_SIZE; | 628 | priv->free_len += PACKET_SIZE; |
629 | } | 629 | } |
630 | 630 | ||
631 | if (tty) { | ||
632 | /* FIXME: These two are bogus */ | ||
633 | tty->raw = 1; | ||
634 | tty->real_raw = 1; | ||
635 | } | ||
636 | /* | 631 | /* |
637 | * Lose the small buffers usbserial provides. Make larger ones. | 632 | * Lose the small buffers usbserial provides. Make larger ones. |
638 | */ | 633 | */ |
diff --git a/drivers/usb/serial/ipw.c b/drivers/usb/serial/ipw.c index 29ad038b9c8d..727d323f092a 100644 --- a/drivers/usb/serial/ipw.c +++ b/drivers/usb/serial/ipw.c | |||
@@ -193,8 +193,7 @@ static void ipw_read_bulk_callback(struct urb *urb) | |||
193 | return; | 193 | return; |
194 | } | 194 | } |
195 | 195 | ||
196 | static int ipw_open(struct tty_struct *tty, | 196 | static int ipw_open(struct tty_struct *tty, struct usb_serial_port *port) |
197 | struct usb_serial_port *port, struct file *filp) | ||
198 | { | 197 | { |
199 | struct usb_device *dev = port->serial->dev; | 198 | struct usb_device *dev = port->serial->dev; |
200 | u8 buf_flow_static[16] = IPW_BYTES_FLOWINIT; | 199 | u8 buf_flow_static[16] = IPW_BYTES_FLOWINIT; |
diff --git a/drivers/usb/serial/ir-usb.c b/drivers/usb/serial/ir-usb.c index 66009b6b763a..95d8d26b9a44 100644 --- a/drivers/usb/serial/ir-usb.c +++ b/drivers/usb/serial/ir-usb.c | |||
@@ -86,8 +86,7 @@ static int buffer_size; | |||
86 | static int xbof = -1; | 86 | static int xbof = -1; |
87 | 87 | ||
88 | static int ir_startup (struct usb_serial *serial); | 88 | static int ir_startup (struct usb_serial *serial); |
89 | static int ir_open(struct tty_struct *tty, struct usb_serial_port *port, | 89 | static int ir_open(struct tty_struct *tty, struct usb_serial_port *port); |
90 | struct file *filep); | ||
91 | static void ir_close(struct usb_serial_port *port); | 90 | static void ir_close(struct usb_serial_port *port); |
92 | static int ir_write(struct tty_struct *tty, struct usb_serial_port *port, | 91 | static int ir_write(struct tty_struct *tty, struct usb_serial_port *port, |
93 | const unsigned char *buf, int count); | 92 | const unsigned char *buf, int count); |
@@ -296,8 +295,7 @@ static int ir_startup(struct usb_serial *serial) | |||
296 | return 0; | 295 | return 0; |
297 | } | 296 | } |
298 | 297 | ||
299 | static int ir_open(struct tty_struct *tty, | 298 | static int ir_open(struct tty_struct *tty, struct usb_serial_port *port) |
300 | struct usb_serial_port *port, struct file *filp) | ||
301 | { | 299 | { |
302 | char *buffer; | 300 | char *buffer; |
303 | int result = 0; | 301 | int result = 0; |
diff --git a/drivers/usb/serial/iuu_phoenix.c b/drivers/usb/serial/iuu_phoenix.c index 96873a7a32b0..6138c1cda35f 100644 --- a/drivers/usb/serial/iuu_phoenix.c +++ b/drivers/usb/serial/iuu_phoenix.c | |||
@@ -71,7 +71,6 @@ struct iuu_private { | |||
71 | spinlock_t lock; /* store irq state */ | 71 | spinlock_t lock; /* store irq state */ |
72 | wait_queue_head_t delta_msr_wait; | 72 | wait_queue_head_t delta_msr_wait; |
73 | u8 line_status; | 73 | u8 line_status; |
74 | u8 termios_initialized; | ||
75 | int tiostatus; /* store IUART SIGNAL for tiocmget call */ | 74 | int tiostatus; /* store IUART SIGNAL for tiocmget call */ |
76 | u8 reset; /* if 1 reset is needed */ | 75 | u8 reset; /* if 1 reset is needed */ |
77 | int poll; /* number of poll */ | 76 | int poll; /* number of poll */ |
@@ -1018,14 +1017,24 @@ static void iuu_close(struct usb_serial_port *port) | |||
1018 | } | 1017 | } |
1019 | } | 1018 | } |
1020 | 1019 | ||
1021 | static int iuu_open(struct tty_struct *tty, | 1020 | static void iuu_init_termios(struct tty_struct *tty) |
1022 | struct usb_serial_port *port, struct file *filp) | 1021 | { |
1022 | *(tty->termios) = tty_std_termios; | ||
1023 | tty->termios->c_cflag = CLOCAL | CREAD | CS8 | B9600 | ||
1024 | | TIOCM_CTS | CSTOPB | PARENB; | ||
1025 | tty->termios->c_ispeed = 9600; | ||
1026 | tty->termios->c_ospeed = 9600; | ||
1027 | tty->termios->c_lflag = 0; | ||
1028 | tty->termios->c_oflag = 0; | ||
1029 | tty->termios->c_iflag = 0; | ||
1030 | } | ||
1031 | |||
1032 | static int iuu_open(struct tty_struct *tty, struct usb_serial_port *port) | ||
1023 | { | 1033 | { |
1024 | struct usb_serial *serial = port->serial; | 1034 | struct usb_serial *serial = port->serial; |
1025 | u8 *buf; | 1035 | u8 *buf; |
1026 | int result; | 1036 | int result; |
1027 | u32 actual; | 1037 | u32 actual; |
1028 | unsigned long flags; | ||
1029 | struct iuu_private *priv = usb_get_serial_port_data(port); | 1038 | struct iuu_private *priv = usb_get_serial_port_data(port); |
1030 | 1039 | ||
1031 | dbg("%s - port %d", __func__, port->number); | 1040 | dbg("%s - port %d", __func__, port->number); |
@@ -1064,21 +1073,7 @@ static int iuu_open(struct tty_struct *tty, | |||
1064 | port->bulk_in_buffer, 512, | 1073 | port->bulk_in_buffer, 512, |
1065 | NULL, NULL); | 1074 | NULL, NULL); |
1066 | 1075 | ||
1067 | /* set the termios structure */ | 1076 | priv->poll = 0; |
1068 | spin_lock_irqsave(&priv->lock, flags); | ||
1069 | if (tty && !priv->termios_initialized) { | ||
1070 | *(tty->termios) = tty_std_termios; | ||
1071 | tty->termios->c_cflag = CLOCAL | CREAD | CS8 | B9600 | ||
1072 | | TIOCM_CTS | CSTOPB | PARENB; | ||
1073 | tty->termios->c_ispeed = 9600; | ||
1074 | tty->termios->c_ospeed = 9600; | ||
1075 | tty->termios->c_lflag = 0; | ||
1076 | tty->termios->c_oflag = 0; | ||
1077 | tty->termios->c_iflag = 0; | ||
1078 | priv->termios_initialized = 1; | ||
1079 | priv->poll = 0; | ||
1080 | } | ||
1081 | spin_unlock_irqrestore(&priv->lock, flags); | ||
1082 | 1077 | ||
1083 | /* initialize writebuf */ | 1078 | /* initialize writebuf */ |
1084 | #define FISH(a, b, c, d) do { \ | 1079 | #define FISH(a, b, c, d) do { \ |
@@ -1201,6 +1196,7 @@ static struct usb_serial_driver iuu_device = { | |||
1201 | .tiocmget = iuu_tiocmget, | 1196 | .tiocmget = iuu_tiocmget, |
1202 | .tiocmset = iuu_tiocmset, | 1197 | .tiocmset = iuu_tiocmset, |
1203 | .set_termios = iuu_set_termios, | 1198 | .set_termios = iuu_set_termios, |
1199 | .init_termios = iuu_init_termios, | ||
1204 | .attach = iuu_startup, | 1200 | .attach = iuu_startup, |
1205 | .release = iuu_release, | 1201 | .release = iuu_release, |
1206 | }; | 1202 | }; |
diff --git a/drivers/usb/serial/keyspan.c b/drivers/usb/serial/keyspan.c index 2594b8743d3f..f8c4b07033ff 100644 --- a/drivers/usb/serial/keyspan.c +++ b/drivers/usb/serial/keyspan.c | |||
@@ -1209,8 +1209,7 @@ static int keyspan_write_room(struct tty_struct *tty) | |||
1209 | } | 1209 | } |
1210 | 1210 | ||
1211 | 1211 | ||
1212 | static int keyspan_open(struct tty_struct *tty, | 1212 | static int keyspan_open(struct tty_struct *tty, struct usb_serial_port *port) |
1213 | struct usb_serial_port *port, struct file *filp) | ||
1214 | { | 1213 | { |
1215 | struct keyspan_port_private *p_priv; | 1214 | struct keyspan_port_private *p_priv; |
1216 | struct keyspan_serial_private *s_priv; | 1215 | struct keyspan_serial_private *s_priv; |
diff --git a/drivers/usb/serial/keyspan.h b/drivers/usb/serial/keyspan.h index 3107ed15af64..30771e5b3973 100644 --- a/drivers/usb/serial/keyspan.h +++ b/drivers/usb/serial/keyspan.h | |||
@@ -36,8 +36,7 @@ | |||
36 | 36 | ||
37 | /* Function prototypes for Keyspan serial converter */ | 37 | /* Function prototypes for Keyspan serial converter */ |
38 | static int keyspan_open (struct tty_struct *tty, | 38 | static int keyspan_open (struct tty_struct *tty, |
39 | struct usb_serial_port *port, | 39 | struct usb_serial_port *port); |
40 | struct file *filp); | ||
41 | static void keyspan_close (struct usb_serial_port *port); | 40 | static void keyspan_close (struct usb_serial_port *port); |
42 | static void keyspan_dtr_rts (struct usb_serial_port *port, int on); | 41 | static void keyspan_dtr_rts (struct usb_serial_port *port, int on); |
43 | static int keyspan_startup (struct usb_serial *serial); | 42 | static int keyspan_startup (struct usb_serial *serial); |
diff --git a/drivers/usb/serial/keyspan_pda.c b/drivers/usb/serial/keyspan_pda.c index d0b12e40c2b1..257c16cc6b2a 100644 --- a/drivers/usb/serial/keyspan_pda.c +++ b/drivers/usb/serial/keyspan_pda.c | |||
@@ -681,7 +681,7 @@ static int keyspan_pda_carrier_raised(struct usb_serial_port *port) | |||
681 | 681 | ||
682 | 682 | ||
683 | static int keyspan_pda_open(struct tty_struct *tty, | 683 | static int keyspan_pda_open(struct tty_struct *tty, |
684 | struct usb_serial_port *port, struct file *filp) | 684 | struct usb_serial_port *port) |
685 | { | 685 | { |
686 | struct usb_serial *serial = port->serial; | 686 | struct usb_serial *serial = port->serial; |
687 | unsigned char room; | 687 | unsigned char room; |
diff --git a/drivers/usb/serial/kl5kusb105.c b/drivers/usb/serial/kl5kusb105.c index 0f44bb8e8d4f..a61673133d7d 100644 --- a/drivers/usb/serial/kl5kusb105.c +++ b/drivers/usb/serial/kl5kusb105.c | |||
@@ -75,8 +75,7 @@ static int debug; | |||
75 | static int klsi_105_startup(struct usb_serial *serial); | 75 | static int klsi_105_startup(struct usb_serial *serial); |
76 | static void klsi_105_disconnect(struct usb_serial *serial); | 76 | static void klsi_105_disconnect(struct usb_serial *serial); |
77 | static void klsi_105_release(struct usb_serial *serial); | 77 | static void klsi_105_release(struct usb_serial *serial); |
78 | static int klsi_105_open(struct tty_struct *tty, | 78 | static int klsi_105_open(struct tty_struct *tty, struct usb_serial_port *port); |
79 | struct usb_serial_port *port, struct file *filp); | ||
80 | static void klsi_105_close(struct usb_serial_port *port); | 79 | static void klsi_105_close(struct usb_serial_port *port); |
81 | static int klsi_105_write(struct tty_struct *tty, | 80 | static int klsi_105_write(struct tty_struct *tty, |
82 | struct usb_serial_port *port, const unsigned char *buf, int count); | 81 | struct usb_serial_port *port, const unsigned char *buf, int count); |
@@ -358,8 +357,7 @@ static void klsi_105_release(struct usb_serial *serial) | |||
358 | } | 357 | } |
359 | } /* klsi_105_release */ | 358 | } /* klsi_105_release */ |
360 | 359 | ||
361 | static int klsi_105_open(struct tty_struct *tty, | 360 | static int klsi_105_open(struct tty_struct *tty, struct usb_serial_port *port) |
362 | struct usb_serial_port *port, struct file *filp) | ||
363 | { | 361 | { |
364 | struct klsi_105_private *priv = usb_get_serial_port_data(port); | 362 | struct klsi_105_private *priv = usb_get_serial_port_data(port); |
365 | int retval = 0; | 363 | int retval = 0; |
@@ -371,10 +369,6 @@ static int klsi_105_open(struct tty_struct *tty, | |||
371 | 369 | ||
372 | dbg("%s port %d", __func__, port->number); | 370 | dbg("%s port %d", __func__, port->number); |
373 | 371 | ||
374 | /* force low_latency on so that our tty_push actually forces | ||
375 | * the data through | ||
376 | * tty->low_latency = 1; */ | ||
377 | |||
378 | /* Do a defined restart: | 372 | /* Do a defined restart: |
379 | * Set up sane default baud rate and send the 'READ_ON' | 373 | * Set up sane default baud rate and send the 'READ_ON' |
380 | * vendor command. | 374 | * vendor command. |
diff --git a/drivers/usb/serial/kobil_sct.c b/drivers/usb/serial/kobil_sct.c index 6db0e561f680..45ea694b3ae6 100644 --- a/drivers/usb/serial/kobil_sct.c +++ b/drivers/usb/serial/kobil_sct.c | |||
@@ -70,8 +70,7 @@ static int debug; | |||
70 | /* Function prototypes */ | 70 | /* Function prototypes */ |
71 | static int kobil_startup(struct usb_serial *serial); | 71 | static int kobil_startup(struct usb_serial *serial); |
72 | static void kobil_release(struct usb_serial *serial); | 72 | static void kobil_release(struct usb_serial *serial); |
73 | static int kobil_open(struct tty_struct *tty, | 73 | static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port); |
74 | struct usb_serial_port *port, struct file *filp); | ||
75 | static void kobil_close(struct usb_serial_port *port); | 74 | static void kobil_close(struct usb_serial_port *port); |
76 | static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port, | 75 | static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port, |
77 | const unsigned char *buf, int count); | 76 | const unsigned char *buf, int count); |
@@ -85,7 +84,7 @@ static void kobil_read_int_callback(struct urb *urb); | |||
85 | static void kobil_write_callback(struct urb *purb); | 84 | static void kobil_write_callback(struct urb *purb); |
86 | static void kobil_set_termios(struct tty_struct *tty, | 85 | static void kobil_set_termios(struct tty_struct *tty, |
87 | struct usb_serial_port *port, struct ktermios *old); | 86 | struct usb_serial_port *port, struct ktermios *old); |
88 | 87 | static void kobil_init_termios(struct tty_struct *tty); | |
89 | 88 | ||
90 | static struct usb_device_id id_table [] = { | 89 | static struct usb_device_id id_table [] = { |
91 | { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_B_PRODUCT_ID) }, | 90 | { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_B_PRODUCT_ID) }, |
@@ -120,6 +119,7 @@ static struct usb_serial_driver kobil_device = { | |||
120 | .release = kobil_release, | 119 | .release = kobil_release, |
121 | .ioctl = kobil_ioctl, | 120 | .ioctl = kobil_ioctl, |
122 | .set_termios = kobil_set_termios, | 121 | .set_termios = kobil_set_termios, |
122 | .init_termios = kobil_init_termios, | ||
123 | .tiocmget = kobil_tiocmget, | 123 | .tiocmget = kobil_tiocmget, |
124 | .tiocmset = kobil_tiocmset, | 124 | .tiocmset = kobil_tiocmset, |
125 | .open = kobil_open, | 125 | .open = kobil_open, |
@@ -210,9 +210,17 @@ static void kobil_release(struct usb_serial *serial) | |||
210 | kfree(usb_get_serial_port_data(serial->port[i])); | 210 | kfree(usb_get_serial_port_data(serial->port[i])); |
211 | } | 211 | } |
212 | 212 | ||
213 | static void kobil_init_termios(struct tty_struct *tty) | ||
214 | { | ||
215 | /* Default to echo off and other sane device settings */ | ||
216 | tty->termios->c_lflag = 0; | ||
217 | tty->termios->c_lflag &= ~(ISIG | ICANON | ECHO | IEXTEN | XCASE); | ||
218 | tty->termios->c_iflag = IGNBRK | IGNPAR | IXOFF; | ||
219 | /* do NOT translate CR to CR-NL (0x0A -> 0x0A 0x0D) */ | ||
220 | tty->termios->c_oflag &= ~ONLCR; | ||
221 | } | ||
213 | 222 | ||
214 | static int kobil_open(struct tty_struct *tty, | 223 | static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port) |
215 | struct usb_serial_port *port, struct file *filp) | ||
216 | { | 224 | { |
217 | int result = 0; | 225 | int result = 0; |
218 | struct kobil_private *priv; | 226 | struct kobil_private *priv; |
@@ -226,16 +234,6 @@ static int kobil_open(struct tty_struct *tty, | |||
226 | /* someone sets the dev to 0 if the close method has been called */ | 234 | /* someone sets the dev to 0 if the close method has been called */ |
227 | port->interrupt_in_urb->dev = port->serial->dev; | 235 | port->interrupt_in_urb->dev = port->serial->dev; |
228 | 236 | ||
229 | if (tty) { | ||
230 | |||
231 | /* Default to echo off and other sane device settings */ | ||
232 | tty->termios->c_lflag = 0; | ||
233 | tty->termios->c_lflag &= ~(ISIG | ICANON | ECHO | IEXTEN | | ||
234 | XCASE); | ||
235 | tty->termios->c_iflag = IGNBRK | IGNPAR | IXOFF; | ||
236 | /* do NOT translate CR to CR-NL (0x0A -> 0x0A 0x0D) */ | ||
237 | tty->termios->c_oflag &= ~ONLCR; | ||
238 | } | ||
239 | /* allocate memory for transfer buffer */ | 237 | /* allocate memory for transfer buffer */ |
240 | transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL); | 238 | transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL); |
241 | if (!transfer_buffer) | 239 | if (!transfer_buffer) |
diff --git a/drivers/usb/serial/mct_u232.c b/drivers/usb/serial/mct_u232.c index d8825e159aa5..ad4998bbf16f 100644 --- a/drivers/usb/serial/mct_u232.c +++ b/drivers/usb/serial/mct_u232.c | |||
@@ -93,8 +93,7 @@ static int debug; | |||
93 | */ | 93 | */ |
94 | static int mct_u232_startup(struct usb_serial *serial); | 94 | static int mct_u232_startup(struct usb_serial *serial); |
95 | static void mct_u232_release(struct usb_serial *serial); | 95 | static void mct_u232_release(struct usb_serial *serial); |
96 | static int mct_u232_open(struct tty_struct *tty, | 96 | static int mct_u232_open(struct tty_struct *tty, struct usb_serial_port *port); |
97 | struct usb_serial_port *port, struct file *filp); | ||
98 | static void mct_u232_close(struct usb_serial_port *port); | 97 | static void mct_u232_close(struct usb_serial_port *port); |
99 | static void mct_u232_dtr_rts(struct usb_serial_port *port, int on); | 98 | static void mct_u232_dtr_rts(struct usb_serial_port *port, int on); |
100 | static void mct_u232_read_int_callback(struct urb *urb); | 99 | static void mct_u232_read_int_callback(struct urb *urb); |
@@ -421,8 +420,7 @@ static void mct_u232_release(struct usb_serial *serial) | |||
421 | } | 420 | } |
422 | } /* mct_u232_release */ | 421 | } /* mct_u232_release */ |
423 | 422 | ||
424 | static int mct_u232_open(struct tty_struct *tty, | 423 | static int mct_u232_open(struct tty_struct *tty, struct usb_serial_port *port) |
425 | struct usb_serial_port *port, struct file *filp) | ||
426 | { | 424 | { |
427 | struct usb_serial *serial = port->serial; | 425 | struct usb_serial *serial = port->serial; |
428 | struct mct_u232_private *priv = usb_get_serial_port_data(port); | 426 | struct mct_u232_private *priv = usb_get_serial_port_data(port); |
@@ -568,10 +566,13 @@ static void mct_u232_read_int_callback(struct urb *urb) | |||
568 | * Work-a-round: handle the 'usual' bulk-in pipe here | 566 | * Work-a-round: handle the 'usual' bulk-in pipe here |
569 | */ | 567 | */ |
570 | if (urb->transfer_buffer_length > 2) { | 568 | if (urb->transfer_buffer_length > 2) { |
571 | tty = tty_port_tty_get(&port->port); | ||
572 | if (urb->actual_length) { | 569 | if (urb->actual_length) { |
573 | tty_insert_flip_string(tty, data, urb->actual_length); | 570 | tty = tty_port_tty_get(&port->port); |
574 | tty_flip_buffer_push(tty); | 571 | if (tty) { |
572 | tty_insert_flip_string(tty, data, | ||
573 | urb->actual_length); | ||
574 | tty_flip_buffer_push(tty); | ||
575 | } | ||
575 | tty_kref_put(tty); | 576 | tty_kref_put(tty); |
576 | } | 577 | } |
577 | goto exit; | 578 | goto exit; |
diff --git a/drivers/usb/serial/mos7720.c b/drivers/usb/serial/mos7720.c index ccd4dd340d2c..763e32a44be0 100644 --- a/drivers/usb/serial/mos7720.c +++ b/drivers/usb/serial/mos7720.c | |||
@@ -85,7 +85,7 @@ static int debug; | |||
85 | #define MOSCHIP_DEVICE_ID_7720 0x7720 | 85 | #define MOSCHIP_DEVICE_ID_7720 0x7720 |
86 | #define MOSCHIP_DEVICE_ID_7715 0x7715 | 86 | #define MOSCHIP_DEVICE_ID_7715 0x7715 |
87 | 87 | ||
88 | static struct usb_device_id moschip_port_id_table [] = { | 88 | static struct usb_device_id moschip_port_id_table[] = { |
89 | { USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7720) }, | 89 | { USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7720) }, |
90 | { } /* terminating entry */ | 90 | { } /* terminating entry */ |
91 | }; | 91 | }; |
@@ -319,8 +319,7 @@ static int send_mos_cmd(struct usb_serial *serial, __u8 request, __u16 value, | |||
319 | return status; | 319 | return status; |
320 | } | 320 | } |
321 | 321 | ||
322 | static int mos7720_open(struct tty_struct *tty, | 322 | static int mos7720_open(struct tty_struct *tty, struct usb_serial_port *port) |
323 | struct usb_serial_port *port, struct file *filp) | ||
324 | { | 323 | { |
325 | struct usb_serial *serial; | 324 | struct usb_serial *serial; |
326 | struct usb_serial_port *port0; | 325 | struct usb_serial_port *port0; |
@@ -378,10 +377,14 @@ static int mos7720_open(struct tty_struct *tty, | |||
378 | /* Initialize MCS7720 -- Write Init values to corresponding Registers | 377 | /* Initialize MCS7720 -- Write Init values to corresponding Registers |
379 | * | 378 | * |
380 | * Register Index | 379 | * Register Index |
380 | * 0 : THR/RHR | ||
381 | * 1 : IER | 381 | * 1 : IER |
382 | * 2 : FCR | 382 | * 2 : FCR |
383 | * 3 : LCR | 383 | * 3 : LCR |
384 | * 4 : MCR | 384 | * 4 : MCR |
385 | * 5 : LSR | ||
386 | * 6 : MSR | ||
387 | * 7 : SPR | ||
385 | * | 388 | * |
386 | * 0x08 : SP1/2 Control Reg | 389 | * 0x08 : SP1/2 Control Reg |
387 | */ | 390 | */ |
@@ -1250,20 +1253,88 @@ static void mos7720_set_termios(struct tty_struct *tty, | |||
1250 | static int get_lsr_info(struct tty_struct *tty, | 1253 | static int get_lsr_info(struct tty_struct *tty, |
1251 | struct moschip_port *mos7720_port, unsigned int __user *value) | 1254 | struct moschip_port *mos7720_port, unsigned int __user *value) |
1252 | { | 1255 | { |
1253 | int count; | 1256 | struct usb_serial_port *port = tty->driver_data; |
1254 | unsigned int result = 0; | 1257 | unsigned int result = 0; |
1258 | unsigned char data = 0; | ||
1259 | int port_number = port->number - port->serial->minor; | ||
1260 | int count; | ||
1255 | 1261 | ||
1256 | count = mos7720_chars_in_buffer(tty); | 1262 | count = mos7720_chars_in_buffer(tty); |
1257 | if (count == 0) { | 1263 | if (count == 0) { |
1258 | dbg("%s -- Empty", __func__); | 1264 | send_mos_cmd(port->serial, MOS_READ, port_number, |
1259 | result = TIOCSER_TEMT; | 1265 | UART_LSR, &data); |
1266 | if ((data & (UART_LSR_TEMT | UART_LSR_THRE)) | ||
1267 | == (UART_LSR_TEMT | UART_LSR_THRE)) { | ||
1268 | dbg("%s -- Empty", __func__); | ||
1269 | result = TIOCSER_TEMT; | ||
1270 | } | ||
1260 | } | 1271 | } |
1261 | |||
1262 | if (copy_to_user(value, &result, sizeof(int))) | 1272 | if (copy_to_user(value, &result, sizeof(int))) |
1263 | return -EFAULT; | 1273 | return -EFAULT; |
1264 | return 0; | 1274 | return 0; |
1265 | } | 1275 | } |
1266 | 1276 | ||
1277 | static int mos7720_tiocmget(struct tty_struct *tty, struct file *file) | ||
1278 | { | ||
1279 | struct usb_serial_port *port = tty->driver_data; | ||
1280 | struct moschip_port *mos7720_port = usb_get_serial_port_data(port); | ||
1281 | unsigned int result = 0; | ||
1282 | unsigned int mcr ; | ||
1283 | unsigned int msr ; | ||
1284 | |||
1285 | dbg("%s - port %d", __func__, port->number); | ||
1286 | |||
1287 | mcr = mos7720_port->shadowMCR; | ||
1288 | msr = mos7720_port->shadowMSR; | ||
1289 | |||
1290 | result = ((mcr & UART_MCR_DTR) ? TIOCM_DTR : 0) /* 0x002 */ | ||
1291 | | ((mcr & UART_MCR_RTS) ? TIOCM_RTS : 0) /* 0x004 */ | ||
1292 | | ((msr & UART_MSR_CTS) ? TIOCM_CTS : 0) /* 0x020 */ | ||
1293 | | ((msr & UART_MSR_DCD) ? TIOCM_CAR : 0) /* 0x040 */ | ||
1294 | | ((msr & UART_MSR_RI) ? TIOCM_RI : 0) /* 0x080 */ | ||
1295 | | ((msr & UART_MSR_DSR) ? TIOCM_DSR : 0); /* 0x100 */ | ||
1296 | |||
1297 | dbg("%s -- %x", __func__, result); | ||
1298 | |||
1299 | return result; | ||
1300 | } | ||
1301 | |||
1302 | static int mos7720_tiocmset(struct tty_struct *tty, struct file *file, | ||
1303 | unsigned int set, unsigned int clear) | ||
1304 | { | ||
1305 | struct usb_serial_port *port = tty->driver_data; | ||
1306 | struct moschip_port *mos7720_port = usb_get_serial_port_data(port); | ||
1307 | unsigned int mcr ; | ||
1308 | unsigned char lmcr; | ||
1309 | |||
1310 | dbg("%s - port %d", __func__, port->number); | ||
1311 | dbg("he was at tiocmget"); | ||
1312 | |||
1313 | mcr = mos7720_port->shadowMCR; | ||
1314 | |||
1315 | if (set & TIOCM_RTS) | ||
1316 | mcr |= UART_MCR_RTS; | ||
1317 | if (set & TIOCM_DTR) | ||
1318 | mcr |= UART_MCR_DTR; | ||
1319 | if (set & TIOCM_LOOP) | ||
1320 | mcr |= UART_MCR_LOOP; | ||
1321 | |||
1322 | if (clear & TIOCM_RTS) | ||
1323 | mcr &= ~UART_MCR_RTS; | ||
1324 | if (clear & TIOCM_DTR) | ||
1325 | mcr &= ~UART_MCR_DTR; | ||
1326 | if (clear & TIOCM_LOOP) | ||
1327 | mcr &= ~UART_MCR_LOOP; | ||
1328 | |||
1329 | mos7720_port->shadowMCR = mcr; | ||
1330 | lmcr = mos7720_port->shadowMCR; | ||
1331 | |||
1332 | send_mos_cmd(port->serial, MOS_WRITE, | ||
1333 | port->number - port->serial->minor, UART_MCR, &lmcr); | ||
1334 | |||
1335 | return 0; | ||
1336 | } | ||
1337 | |||
1267 | static int set_modem_info(struct moschip_port *mos7720_port, unsigned int cmd, | 1338 | static int set_modem_info(struct moschip_port *mos7720_port, unsigned int cmd, |
1268 | unsigned int __user *value) | 1339 | unsigned int __user *value) |
1269 | { | 1340 | { |
@@ -1301,14 +1372,6 @@ static int set_modem_info(struct moschip_port *mos7720_port, unsigned int cmd, | |||
1301 | mcr &= ~UART_MCR_LOOP; | 1372 | mcr &= ~UART_MCR_LOOP; |
1302 | break; | 1373 | break; |
1303 | 1374 | ||
1304 | case TIOCMSET: | ||
1305 | /* turn off the RTS and DTR and LOOPBACK | ||
1306 | * and then only turn on what was asked to */ | ||
1307 | mcr &= ~(UART_MCR_RTS | UART_MCR_DTR | UART_MCR_LOOP); | ||
1308 | mcr |= ((arg & TIOCM_RTS) ? UART_MCR_RTS : 0); | ||
1309 | mcr |= ((arg & TIOCM_DTR) ? UART_MCR_DTR : 0); | ||
1310 | mcr |= ((arg & TIOCM_LOOP) ? UART_MCR_LOOP : 0); | ||
1311 | break; | ||
1312 | } | 1375 | } |
1313 | 1376 | ||
1314 | mos7720_port->shadowMCR = mcr; | 1377 | mos7720_port->shadowMCR = mcr; |
@@ -1320,28 +1383,6 @@ static int set_modem_info(struct moschip_port *mos7720_port, unsigned int cmd, | |||
1320 | return 0; | 1383 | return 0; |
1321 | } | 1384 | } |
1322 | 1385 | ||
1323 | static int get_modem_info(struct moschip_port *mos7720_port, | ||
1324 | unsigned int __user *value) | ||
1325 | { | ||
1326 | unsigned int result = 0; | ||
1327 | unsigned int msr = mos7720_port->shadowMSR; | ||
1328 | unsigned int mcr = mos7720_port->shadowMCR; | ||
1329 | |||
1330 | result = ((mcr & UART_MCR_DTR) ? TIOCM_DTR: 0) /* 0x002 */ | ||
1331 | | ((mcr & UART_MCR_RTS) ? TIOCM_RTS: 0) /* 0x004 */ | ||
1332 | | ((msr & UART_MSR_CTS) ? TIOCM_CTS: 0) /* 0x020 */ | ||
1333 | | ((msr & UART_MSR_DCD) ? TIOCM_CAR: 0) /* 0x040 */ | ||
1334 | | ((msr & UART_MSR_RI) ? TIOCM_RI: 0) /* 0x080 */ | ||
1335 | | ((msr & UART_MSR_DSR) ? TIOCM_DSR: 0); /* 0x100 */ | ||
1336 | |||
1337 | |||
1338 | dbg("%s -- %x", __func__, result); | ||
1339 | |||
1340 | if (copy_to_user(value, &result, sizeof(int))) | ||
1341 | return -EFAULT; | ||
1342 | return 0; | ||
1343 | } | ||
1344 | |||
1345 | static int get_serial_info(struct moschip_port *mos7720_port, | 1386 | static int get_serial_info(struct moschip_port *mos7720_port, |
1346 | struct serial_struct __user *retinfo) | 1387 | struct serial_struct __user *retinfo) |
1347 | { | 1388 | { |
@@ -1392,17 +1433,11 @@ static int mos7720_ioctl(struct tty_struct *tty, struct file *file, | |||
1392 | /* FIXME: These should be using the mode methods */ | 1433 | /* FIXME: These should be using the mode methods */ |
1393 | case TIOCMBIS: | 1434 | case TIOCMBIS: |
1394 | case TIOCMBIC: | 1435 | case TIOCMBIC: |
1395 | case TIOCMSET: | ||
1396 | dbg("%s (%d) TIOCMSET/TIOCMBIC/TIOCMSET", | 1436 | dbg("%s (%d) TIOCMSET/TIOCMBIC/TIOCMSET", |
1397 | __func__, port->number); | 1437 | __func__, port->number); |
1398 | return set_modem_info(mos7720_port, cmd, | 1438 | return set_modem_info(mos7720_port, cmd, |
1399 | (unsigned int __user *)arg); | 1439 | (unsigned int __user *)arg); |
1400 | 1440 | ||
1401 | case TIOCMGET: | ||
1402 | dbg("%s (%d) TIOCMGET", __func__, port->number); | ||
1403 | return get_modem_info(mos7720_port, | ||
1404 | (unsigned int __user *)arg); | ||
1405 | |||
1406 | case TIOCGSERIAL: | 1441 | case TIOCGSERIAL: |
1407 | dbg("%s (%d) TIOCGSERIAL", __func__, port->number); | 1442 | dbg("%s (%d) TIOCGSERIAL", __func__, port->number); |
1408 | return get_serial_info(mos7720_port, | 1443 | return get_serial_info(mos7720_port, |
@@ -1557,6 +1592,8 @@ static struct usb_serial_driver moschip7720_2port_driver = { | |||
1557 | .attach = mos7720_startup, | 1592 | .attach = mos7720_startup, |
1558 | .release = mos7720_release, | 1593 | .release = mos7720_release, |
1559 | .ioctl = mos7720_ioctl, | 1594 | .ioctl = mos7720_ioctl, |
1595 | .tiocmget = mos7720_tiocmget, | ||
1596 | .tiocmset = mos7720_tiocmset, | ||
1560 | .set_termios = mos7720_set_termios, | 1597 | .set_termios = mos7720_set_termios, |
1561 | .write = mos7720_write, | 1598 | .write = mos7720_write, |
1562 | .write_room = mos7720_write_room, | 1599 | .write_room = mos7720_write_room, |
diff --git a/drivers/usb/serial/mos7840.c b/drivers/usb/serial/mos7840.c index 270009afdf77..f11abf52be7d 100644 --- a/drivers/usb/serial/mos7840.c +++ b/drivers/usb/serial/mos7840.c | |||
@@ -824,8 +824,7 @@ static int mos7840_serial_probe(struct usb_serial *serial, | |||
824 | * Otherwise we return a negative error number. | 824 | * Otherwise we return a negative error number. |
825 | *****************************************************************************/ | 825 | *****************************************************************************/ |
826 | 826 | ||
827 | static int mos7840_open(struct tty_struct *tty, | 827 | static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port) |
828 | struct usb_serial_port *port, struct file *filp) | ||
829 | { | 828 | { |
830 | int response; | 829 | int response; |
831 | int j; | 830 | int j; |
@@ -2134,106 +2133,6 @@ static int mos7840_get_lsr_info(struct tty_struct *tty, | |||
2134 | } | 2133 | } |
2135 | 2134 | ||
2136 | /***************************************************************************** | 2135 | /***************************************************************************** |
2137 | * mos7840_set_modem_info | ||
2138 | * function to set modem info | ||
2139 | *****************************************************************************/ | ||
2140 | |||
2141 | /* FIXME: Should be using the model control hooks */ | ||
2142 | |||
2143 | static int mos7840_set_modem_info(struct moschip_port *mos7840_port, | ||
2144 | unsigned int cmd, unsigned int __user *value) | ||
2145 | { | ||
2146 | unsigned int mcr; | ||
2147 | unsigned int arg; | ||
2148 | __u16 Data; | ||
2149 | int status; | ||
2150 | struct usb_serial_port *port; | ||
2151 | |||
2152 | if (mos7840_port == NULL) | ||
2153 | return -1; | ||
2154 | |||
2155 | port = (struct usb_serial_port *)mos7840_port->port; | ||
2156 | if (mos7840_port_paranoia_check(port, __func__)) { | ||
2157 | dbg("%s", "Invalid port"); | ||
2158 | return -1; | ||
2159 | } | ||
2160 | |||
2161 | mcr = mos7840_port->shadowMCR; | ||
2162 | |||
2163 | if (copy_from_user(&arg, value, sizeof(int))) | ||
2164 | return -EFAULT; | ||
2165 | |||
2166 | switch (cmd) { | ||
2167 | case TIOCMBIS: | ||
2168 | if (arg & TIOCM_RTS) | ||
2169 | mcr |= MCR_RTS; | ||
2170 | if (arg & TIOCM_DTR) | ||
2171 | mcr |= MCR_RTS; | ||
2172 | if (arg & TIOCM_LOOP) | ||
2173 | mcr |= MCR_LOOPBACK; | ||
2174 | break; | ||
2175 | |||
2176 | case TIOCMBIC: | ||
2177 | if (arg & TIOCM_RTS) | ||
2178 | mcr &= ~MCR_RTS; | ||
2179 | if (arg & TIOCM_DTR) | ||
2180 | mcr &= ~MCR_RTS; | ||
2181 | if (arg & TIOCM_LOOP) | ||
2182 | mcr &= ~MCR_LOOPBACK; | ||
2183 | break; | ||
2184 | |||
2185 | case TIOCMSET: | ||
2186 | /* turn off the RTS and DTR and LOOPBACK | ||
2187 | * and then only turn on what was asked to */ | ||
2188 | mcr &= ~(MCR_RTS | MCR_DTR | MCR_LOOPBACK); | ||
2189 | mcr |= ((arg & TIOCM_RTS) ? MCR_RTS : 0); | ||
2190 | mcr |= ((arg & TIOCM_DTR) ? MCR_DTR : 0); | ||
2191 | mcr |= ((arg & TIOCM_LOOP) ? MCR_LOOPBACK : 0); | ||
2192 | break; | ||
2193 | } | ||
2194 | |||
2195 | lock_kernel(); | ||
2196 | mos7840_port->shadowMCR = mcr; | ||
2197 | |||
2198 | Data = mos7840_port->shadowMCR; | ||
2199 | status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data); | ||
2200 | unlock_kernel(); | ||
2201 | if (status < 0) { | ||
2202 | dbg("setting MODEM_CONTROL_REGISTER Failed"); | ||
2203 | return -1; | ||
2204 | } | ||
2205 | |||
2206 | return 0; | ||
2207 | } | ||
2208 | |||
2209 | /***************************************************************************** | ||
2210 | * mos7840_get_modem_info | ||
2211 | * function to get modem info | ||
2212 | *****************************************************************************/ | ||
2213 | |||
2214 | static int mos7840_get_modem_info(struct moschip_port *mos7840_port, | ||
2215 | unsigned int __user *value) | ||
2216 | { | ||
2217 | unsigned int result = 0; | ||
2218 | __u16 msr; | ||
2219 | unsigned int mcr = mos7840_port->shadowMCR; | ||
2220 | mos7840_get_uart_reg(mos7840_port->port, | ||
2221 | MODEM_STATUS_REGISTER, &msr); | ||
2222 | result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0) /* 0x002 */ | ||
2223 | |((mcr & MCR_RTS) ? TIOCM_RTS : 0) /* 0x004 */ | ||
2224 | |((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0) /* 0x020 */ | ||
2225 | |((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0) /* 0x040 */ | ||
2226 | |((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0) /* 0x080 */ | ||
2227 | |((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0); /* 0x100 */ | ||
2228 | |||
2229 | dbg("%s -- %x", __func__, result); | ||
2230 | |||
2231 | if (copy_to_user(value, &result, sizeof(int))) | ||
2232 | return -EFAULT; | ||
2233 | return 0; | ||
2234 | } | ||
2235 | |||
2236 | /***************************************************************************** | ||
2237 | * mos7840_get_serial_info | 2136 | * mos7840_get_serial_info |
2238 | * function to get information about serial port | 2137 | * function to get information about serial port |
2239 | *****************************************************************************/ | 2138 | *****************************************************************************/ |
@@ -2281,7 +2180,6 @@ static int mos7840_ioctl(struct tty_struct *tty, struct file *file, | |||
2281 | struct async_icount cnow; | 2180 | struct async_icount cnow; |
2282 | struct async_icount cprev; | 2181 | struct async_icount cprev; |
2283 | struct serial_icounter_struct icount; | 2182 | struct serial_icounter_struct icount; |
2284 | int mosret = 0; | ||
2285 | 2183 | ||
2286 | if (mos7840_port_paranoia_check(port, __func__)) { | 2184 | if (mos7840_port_paranoia_check(port, __func__)) { |
2287 | dbg("%s", "Invalid port"); | 2185 | dbg("%s", "Invalid port"); |
@@ -2303,20 +2201,6 @@ static int mos7840_ioctl(struct tty_struct *tty, struct file *file, | |||
2303 | return mos7840_get_lsr_info(tty, argp); | 2201 | return mos7840_get_lsr_info(tty, argp); |
2304 | return 0; | 2202 | return 0; |
2305 | 2203 | ||
2306 | /* FIXME: use the modem hooks and remove this */ | ||
2307 | case TIOCMBIS: | ||
2308 | case TIOCMBIC: | ||
2309 | case TIOCMSET: | ||
2310 | dbg("%s (%d) TIOCMSET/TIOCMBIC/TIOCMSET", __func__, | ||
2311 | port->number); | ||
2312 | mosret = | ||
2313 | mos7840_set_modem_info(mos7840_port, cmd, argp); | ||
2314 | return mosret; | ||
2315 | |||
2316 | case TIOCMGET: | ||
2317 | dbg("%s (%d) TIOCMGET", __func__, port->number); | ||
2318 | return mos7840_get_modem_info(mos7840_port, argp); | ||
2319 | |||
2320 | case TIOCGSERIAL: | 2204 | case TIOCGSERIAL: |
2321 | dbg("%s (%d) TIOCGSERIAL", __func__, port->number); | 2205 | dbg("%s (%d) TIOCGSERIAL", __func__, port->number); |
2322 | return mos7840_get_serial_info(mos7840_port, argp); | 2206 | return mos7840_get_serial_info(mos7840_port, argp); |
diff --git a/drivers/usb/serial/navman.c b/drivers/usb/serial/navman.c index f5f3751a888c..5ceaa4c6be09 100644 --- a/drivers/usb/serial/navman.c +++ b/drivers/usb/serial/navman.c | |||
@@ -80,8 +80,7 @@ exit: | |||
80 | __func__, result); | 80 | __func__, result); |
81 | } | 81 | } |
82 | 82 | ||
83 | static int navman_open(struct tty_struct *tty, | 83 | static int navman_open(struct tty_struct *tty, struct usb_serial_port *port) |
84 | struct usb_serial_port *port, struct file *filp) | ||
85 | { | 84 | { |
86 | int result = 0; | 85 | int result = 0; |
87 | 86 | ||
diff --git a/drivers/usb/serial/omninet.c b/drivers/usb/serial/omninet.c index 56857ddbd70b..062265038bf0 100644 --- a/drivers/usb/serial/omninet.c +++ b/drivers/usb/serial/omninet.c | |||
@@ -64,8 +64,7 @@ static int debug; | |||
64 | #define BT_IGNITIONPRO_ID 0x2000 | 64 | #define BT_IGNITIONPRO_ID 0x2000 |
65 | 65 | ||
66 | /* function prototypes */ | 66 | /* function prototypes */ |
67 | static int omninet_open(struct tty_struct *tty, struct usb_serial_port *port, | 67 | static int omninet_open(struct tty_struct *tty, struct usb_serial_port *port); |
68 | struct file *filp); | ||
69 | static void omninet_close(struct usb_serial_port *port); | 68 | static void omninet_close(struct usb_serial_port *port); |
70 | static void omninet_read_bulk_callback(struct urb *urb); | 69 | static void omninet_read_bulk_callback(struct urb *urb); |
71 | static void omninet_write_bulk_callback(struct urb *urb); | 70 | static void omninet_write_bulk_callback(struct urb *urb); |
@@ -163,8 +162,7 @@ static int omninet_attach(struct usb_serial *serial) | |||
163 | return 0; | 162 | return 0; |
164 | } | 163 | } |
165 | 164 | ||
166 | static int omninet_open(struct tty_struct *tty, | 165 | static int omninet_open(struct tty_struct *tty, struct usb_serial_port *port) |
167 | struct usb_serial_port *port, struct file *filp) | ||
168 | { | 166 | { |
169 | struct usb_serial *serial = port->serial; | 167 | struct usb_serial *serial = port->serial; |
170 | struct usb_serial_port *wport; | 168 | struct usb_serial_port *wport; |
diff --git a/drivers/usb/serial/opticon.c b/drivers/usb/serial/opticon.c index 336bba79ad32..1085a577c5c1 100644 --- a/drivers/usb/serial/opticon.c +++ b/drivers/usb/serial/opticon.c | |||
@@ -144,8 +144,7 @@ exit: | |||
144 | spin_unlock(&priv->lock); | 144 | spin_unlock(&priv->lock); |
145 | } | 145 | } |
146 | 146 | ||
147 | static int opticon_open(struct tty_struct *tty, struct usb_serial_port *port, | 147 | static int opticon_open(struct tty_struct *tty, struct usb_serial_port *port) |
148 | struct file *filp) | ||
149 | { | 148 | { |
150 | struct opticon_private *priv = usb_get_serial_data(port->serial); | 149 | struct opticon_private *priv = usb_get_serial_data(port->serial); |
151 | unsigned long flags; | 150 | unsigned long flags; |
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index c784ddbe7b61..fe47051dbef2 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c | |||
@@ -45,8 +45,7 @@ | |||
45 | /* Function prototypes */ | 45 | /* Function prototypes */ |
46 | static int option_probe(struct usb_serial *serial, | 46 | static int option_probe(struct usb_serial *serial, |
47 | const struct usb_device_id *id); | 47 | const struct usb_device_id *id); |
48 | static int option_open(struct tty_struct *tty, struct usb_serial_port *port, | 48 | static int option_open(struct tty_struct *tty, struct usb_serial_port *port); |
49 | struct file *filp); | ||
50 | static void option_close(struct usb_serial_port *port); | 49 | static void option_close(struct usb_serial_port *port); |
51 | static void option_dtr_rts(struct usb_serial_port *port, int on); | 50 | static void option_dtr_rts(struct usb_serial_port *port, int on); |
52 | 51 | ||
@@ -961,8 +960,7 @@ static int option_chars_in_buffer(struct tty_struct *tty) | |||
961 | return data_len; | 960 | return data_len; |
962 | } | 961 | } |
963 | 962 | ||
964 | static int option_open(struct tty_struct *tty, | 963 | static int option_open(struct tty_struct *tty, struct usb_serial_port *port) |
965 | struct usb_serial_port *port, struct file *filp) | ||
966 | { | 964 | { |
967 | struct option_port_private *portdata; | 965 | struct option_port_private *portdata; |
968 | int i, err; | 966 | int i, err; |
diff --git a/drivers/usb/serial/oti6858.c b/drivers/usb/serial/oti6858.c index 3cece27325e7..0f4a70ce3823 100644 --- a/drivers/usb/serial/oti6858.c +++ b/drivers/usb/serial/oti6858.c | |||
@@ -141,11 +141,11 @@ struct oti6858_control_pkt { | |||
141 | && ((a)->frame_fmt == (priv)->pending_setup.frame_fmt)) | 141 | && ((a)->frame_fmt == (priv)->pending_setup.frame_fmt)) |
142 | 142 | ||
143 | /* function prototypes */ | 143 | /* function prototypes */ |
144 | static int oti6858_open(struct tty_struct *tty, | 144 | static int oti6858_open(struct tty_struct *tty, struct usb_serial_port *port); |
145 | struct usb_serial_port *port, struct file *filp); | ||
146 | static void oti6858_close(struct usb_serial_port *port); | 145 | static void oti6858_close(struct usb_serial_port *port); |
147 | static void oti6858_set_termios(struct tty_struct *tty, | 146 | static void oti6858_set_termios(struct tty_struct *tty, |
148 | struct usb_serial_port *port, struct ktermios *old); | 147 | struct usb_serial_port *port, struct ktermios *old); |
148 | static void oti6858_init_termios(struct tty_struct *tty); | ||
149 | static int oti6858_ioctl(struct tty_struct *tty, struct file *file, | 149 | static int oti6858_ioctl(struct tty_struct *tty, struct file *file, |
150 | unsigned int cmd, unsigned long arg); | 150 | unsigned int cmd, unsigned long arg); |
151 | static void oti6858_read_int_callback(struct urb *urb); | 151 | static void oti6858_read_int_callback(struct urb *urb); |
@@ -186,6 +186,7 @@ static struct usb_serial_driver oti6858_device = { | |||
186 | .write = oti6858_write, | 186 | .write = oti6858_write, |
187 | .ioctl = oti6858_ioctl, | 187 | .ioctl = oti6858_ioctl, |
188 | .set_termios = oti6858_set_termios, | 188 | .set_termios = oti6858_set_termios, |
189 | .init_termios = oti6858_init_termios, | ||
189 | .tiocmget = oti6858_tiocmget, | 190 | .tiocmget = oti6858_tiocmget, |
190 | .tiocmset = oti6858_tiocmset, | 191 | .tiocmset = oti6858_tiocmset, |
191 | .read_bulk_callback = oti6858_read_bulk_callback, | 192 | .read_bulk_callback = oti6858_read_bulk_callback, |
@@ -206,7 +207,6 @@ struct oti6858_private { | |||
206 | struct { | 207 | struct { |
207 | u8 read_urb_in_use; | 208 | u8 read_urb_in_use; |
208 | u8 write_urb_in_use; | 209 | u8 write_urb_in_use; |
209 | u8 termios_initialized; | ||
210 | } flags; | 210 | } flags; |
211 | struct delayed_work delayed_write_work; | 211 | struct delayed_work delayed_write_work; |
212 | 212 | ||
@@ -447,6 +447,14 @@ static int oti6858_chars_in_buffer(struct tty_struct *tty) | |||
447 | return chars; | 447 | return chars; |
448 | } | 448 | } |
449 | 449 | ||
450 | static void oti6858_init_termios(struct tty_struct *tty) | ||
451 | { | ||
452 | *(tty->termios) = tty_std_termios; | ||
453 | tty->termios->c_cflag = B38400 | CS8 | CREAD | HUPCL | CLOCAL; | ||
454 | tty->termios->c_ispeed = 38400; | ||
455 | tty->termios->c_ospeed = 38400; | ||
456 | } | ||
457 | |||
450 | static void oti6858_set_termios(struct tty_struct *tty, | 458 | static void oti6858_set_termios(struct tty_struct *tty, |
451 | struct usb_serial_port *port, struct ktermios *old_termios) | 459 | struct usb_serial_port *port, struct ktermios *old_termios) |
452 | { | 460 | { |
@@ -464,16 +472,6 @@ static void oti6858_set_termios(struct tty_struct *tty, | |||
464 | return; | 472 | return; |
465 | } | 473 | } |
466 | 474 | ||
467 | spin_lock_irqsave(&priv->lock, flags); | ||
468 | if (!priv->flags.termios_initialized) { | ||
469 | *(tty->termios) = tty_std_termios; | ||
470 | tty->termios->c_cflag = B38400 | CS8 | CREAD | HUPCL | CLOCAL; | ||
471 | tty->termios->c_ispeed = 38400; | ||
472 | tty->termios->c_ospeed = 38400; | ||
473 | priv->flags.termios_initialized = 1; | ||
474 | } | ||
475 | spin_unlock_irqrestore(&priv->lock, flags); | ||
476 | |||
477 | cflag = tty->termios->c_cflag; | 475 | cflag = tty->termios->c_cflag; |
478 | 476 | ||
479 | spin_lock_irqsave(&priv->lock, flags); | 477 | spin_lock_irqsave(&priv->lock, flags); |
@@ -566,8 +564,7 @@ static void oti6858_set_termios(struct tty_struct *tty, | |||
566 | spin_unlock_irqrestore(&priv->lock, flags); | 564 | spin_unlock_irqrestore(&priv->lock, flags); |
567 | } | 565 | } |
568 | 566 | ||
569 | static int oti6858_open(struct tty_struct *tty, | 567 | static int oti6858_open(struct tty_struct *tty, struct usb_serial_port *port) |
570 | struct usb_serial_port *port, struct file *filp) | ||
571 | { | 568 | { |
572 | struct oti6858_private *priv = usb_get_serial_port_data(port); | 569 | struct oti6858_private *priv = usb_get_serial_port_data(port); |
573 | struct ktermios tmp_termios; | 570 | struct ktermios tmp_termios; |
diff --git a/drivers/usb/serial/pl2303.c b/drivers/usb/serial/pl2303.c index 3e86815b2705..a63ea99936f7 100644 --- a/drivers/usb/serial/pl2303.c +++ b/drivers/usb/serial/pl2303.c | |||
@@ -691,8 +691,7 @@ static void pl2303_close(struct usb_serial_port *port) | |||
691 | 691 | ||
692 | } | 692 | } |
693 | 693 | ||
694 | static int pl2303_open(struct tty_struct *tty, | 694 | static int pl2303_open(struct tty_struct *tty, struct usb_serial_port *port) |
695 | struct usb_serial_port *port, struct file *filp) | ||
696 | { | 695 | { |
697 | struct ktermios tmp_termios; | 696 | struct ktermios tmp_termios; |
698 | struct usb_serial *serial = port->serial; | 697 | struct usb_serial *serial = port->serial; |
@@ -714,8 +713,6 @@ static int pl2303_open(struct tty_struct *tty, | |||
714 | if (tty) | 713 | if (tty) |
715 | pl2303_set_termios(tty, port, &tmp_termios); | 714 | pl2303_set_termios(tty, port, &tmp_termios); |
716 | 715 | ||
717 | /* FIXME: need to assert RTS and DTR if CRTSCTS off */ | ||
718 | |||
719 | dbg("%s - submitting read urb", __func__); | 716 | dbg("%s - submitting read urb", __func__); |
720 | port->read_urb->dev = serial->dev; | 717 | port->read_urb->dev = serial->dev; |
721 | result = usb_submit_urb(port->read_urb, GFP_KERNEL); | 718 | result = usb_submit_urb(port->read_urb, GFP_KERNEL); |
diff --git a/drivers/usb/serial/sierra.c b/drivers/usb/serial/sierra.c index f48d05e0acc1..55391bbe1230 100644 --- a/drivers/usb/serial/sierra.c +++ b/drivers/usb/serial/sierra.c | |||
@@ -734,8 +734,7 @@ static void sierra_close(struct usb_serial_port *port) | |||
734 | } | 734 | } |
735 | } | 735 | } |
736 | 736 | ||
737 | static int sierra_open(struct tty_struct *tty, | 737 | static int sierra_open(struct tty_struct *tty, struct usb_serial_port *port) |
738 | struct usb_serial_port *port, struct file *filp) | ||
739 | { | 738 | { |
740 | struct sierra_port_private *portdata; | 739 | struct sierra_port_private *portdata; |
741 | struct usb_serial *serial = port->serial; | 740 | struct usb_serial *serial = port->serial; |
diff --git a/drivers/usb/serial/spcp8x5.c b/drivers/usb/serial/spcp8x5.c index 3c249d8e8b8e..61e7c40b94fb 100644 --- a/drivers/usb/serial/spcp8x5.c +++ b/drivers/usb/serial/spcp8x5.c | |||
@@ -299,7 +299,6 @@ struct spcp8x5_private { | |||
299 | wait_queue_head_t delta_msr_wait; | 299 | wait_queue_head_t delta_msr_wait; |
300 | u8 line_control; | 300 | u8 line_control; |
301 | u8 line_status; | 301 | u8 line_status; |
302 | u8 termios_initialized; | ||
303 | }; | 302 | }; |
304 | 303 | ||
305 | /* desc : when device plug in,this function would be called. | 304 | /* desc : when device plug in,this function would be called. |
@@ -498,6 +497,15 @@ static void spcp8x5_close(struct usb_serial_port *port) | |||
498 | dev_dbg(&port->dev, "usb_unlink_urb(read_urb) = %d\n", result); | 497 | dev_dbg(&port->dev, "usb_unlink_urb(read_urb) = %d\n", result); |
499 | } | 498 | } |
500 | 499 | ||
500 | static void spcp8x5_init_termios(struct tty_struct *tty) | ||
501 | { | ||
502 | /* for the 1st time call this function */ | ||
503 | *(tty->termios) = tty_std_termios; | ||
504 | tty->termios->c_cflag = B115200 | CS8 | CREAD | HUPCL | CLOCAL; | ||
505 | tty->termios->c_ispeed = 115200; | ||
506 | tty->termios->c_ospeed = 115200; | ||
507 | } | ||
508 | |||
501 | /* set the serial param for transfer. we should check if we really need to | 509 | /* set the serial param for transfer. we should check if we really need to |
502 | * transfer. if we set flow control we should do this too. */ | 510 | * transfer. if we set flow control we should do this too. */ |
503 | static void spcp8x5_set_termios(struct tty_struct *tty, | 511 | static void spcp8x5_set_termios(struct tty_struct *tty, |
@@ -514,16 +522,6 @@ static void spcp8x5_set_termios(struct tty_struct *tty, | |||
514 | int i; | 522 | int i; |
515 | u8 control; | 523 | u8 control; |
516 | 524 | ||
517 | /* for the 1st time call this function */ | ||
518 | spin_lock_irqsave(&priv->lock, flags); | ||
519 | if (!priv->termios_initialized) { | ||
520 | *(tty->termios) = tty_std_termios; | ||
521 | tty->termios->c_cflag = B115200 | CS8 | CREAD | HUPCL | CLOCAL; | ||
522 | tty->termios->c_ispeed = 115200; | ||
523 | tty->termios->c_ospeed = 115200; | ||
524 | priv->termios_initialized = 1; | ||
525 | } | ||
526 | spin_unlock_irqrestore(&priv->lock, flags); | ||
527 | 525 | ||
528 | /* check that they really want us to change something */ | 526 | /* check that they really want us to change something */ |
529 | if (!tty_termios_hw_change(tty->termios, old_termios)) | 527 | if (!tty_termios_hw_change(tty->termios, old_termios)) |
@@ -623,8 +621,7 @@ static void spcp8x5_set_termios(struct tty_struct *tty, | |||
623 | 621 | ||
624 | /* open the serial port. do some usb system call. set termios and get the line | 622 | /* open the serial port. do some usb system call. set termios and get the line |
625 | * status of the device. then submit the read urb */ | 623 | * status of the device. then submit the read urb */ |
626 | static int spcp8x5_open(struct tty_struct *tty, | 624 | static int spcp8x5_open(struct tty_struct *tty, struct usb_serial_port *port) |
627 | struct usb_serial_port *port, struct file *filp) | ||
628 | { | 625 | { |
629 | struct ktermios tmp_termios; | 626 | struct ktermios tmp_termios; |
630 | struct usb_serial *serial = port->serial; | 627 | struct usb_serial *serial = port->serial; |
@@ -658,8 +655,6 @@ static int spcp8x5_open(struct tty_struct *tty, | |||
658 | priv->line_status = status & 0xf0 ; | 655 | priv->line_status = status & 0xf0 ; |
659 | spin_unlock_irqrestore(&priv->lock, flags); | 656 | spin_unlock_irqrestore(&priv->lock, flags); |
660 | 657 | ||
661 | /* FIXME: need to assert RTS and DTR if CRTSCTS off */ | ||
662 | |||
663 | dbg("%s - submitting read urb", __func__); | 658 | dbg("%s - submitting read urb", __func__); |
664 | port->read_urb->dev = serial->dev; | 659 | port->read_urb->dev = serial->dev; |
665 | ret = usb_submit_urb(port->read_urb, GFP_KERNEL); | 660 | ret = usb_submit_urb(port->read_urb, GFP_KERNEL); |
@@ -1011,6 +1006,7 @@ static struct usb_serial_driver spcp8x5_device = { | |||
1011 | .carrier_raised = spcp8x5_carrier_raised, | 1006 | .carrier_raised = spcp8x5_carrier_raised, |
1012 | .write = spcp8x5_write, | 1007 | .write = spcp8x5_write, |
1013 | .set_termios = spcp8x5_set_termios, | 1008 | .set_termios = spcp8x5_set_termios, |
1009 | .init_termios = spcp8x5_init_termios, | ||
1014 | .ioctl = spcp8x5_ioctl, | 1010 | .ioctl = spcp8x5_ioctl, |
1015 | .tiocmget = spcp8x5_tiocmget, | 1011 | .tiocmget = spcp8x5_tiocmget, |
1016 | .tiocmset = spcp8x5_tiocmset, | 1012 | .tiocmset = spcp8x5_tiocmset, |
diff --git a/drivers/usb/serial/symbolserial.c b/drivers/usb/serial/symbolserial.c index 6157fac9366b..cb7e95f9fcbf 100644 --- a/drivers/usb/serial/symbolserial.c +++ b/drivers/usb/serial/symbolserial.c | |||
@@ -124,8 +124,7 @@ exit: | |||
124 | spin_unlock(&priv->lock); | 124 | spin_unlock(&priv->lock); |
125 | } | 125 | } |
126 | 126 | ||
127 | static int symbol_open(struct tty_struct *tty, struct usb_serial_port *port, | 127 | static int symbol_open(struct tty_struct *tty, struct usb_serial_port *port) |
128 | struct file *filp) | ||
129 | { | 128 | { |
130 | struct symbol_private *priv = usb_get_serial_data(port->serial); | 129 | struct symbol_private *priv = usb_get_serial_data(port->serial); |
131 | unsigned long flags; | 130 | unsigned long flags; |
diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c index 3bc609fe2242..1e9dc8821698 100644 --- a/drivers/usb/serial/ti_usb_3410_5052.c +++ b/drivers/usb/serial/ti_usb_3410_5052.c | |||
@@ -98,8 +98,7 @@ struct ti_device { | |||
98 | 98 | ||
99 | static int ti_startup(struct usb_serial *serial); | 99 | static int ti_startup(struct usb_serial *serial); |
100 | static void ti_release(struct usb_serial *serial); | 100 | static void ti_release(struct usb_serial *serial); |
101 | static int ti_open(struct tty_struct *tty, struct usb_serial_port *port, | 101 | static int ti_open(struct tty_struct *tty, struct usb_serial_port *port); |
102 | struct file *file); | ||
103 | static void ti_close(struct usb_serial_port *port); | 102 | static void ti_close(struct usb_serial_port *port); |
104 | static int ti_write(struct tty_struct *tty, struct usb_serial_port *port, | 103 | static int ti_write(struct tty_struct *tty, struct usb_serial_port *port, |
105 | const unsigned char *data, int count); | 104 | const unsigned char *data, int count); |
@@ -492,8 +491,7 @@ static void ti_release(struct usb_serial *serial) | |||
492 | } | 491 | } |
493 | 492 | ||
494 | 493 | ||
495 | static int ti_open(struct tty_struct *tty, | 494 | static int ti_open(struct tty_struct *tty, struct usb_serial_port *port) |
496 | struct usb_serial_port *port, struct file *file) | ||
497 | { | 495 | { |
498 | struct ti_port *tport = usb_get_serial_port_data(port); | 496 | struct ti_port *tport = usb_get_serial_port_data(port); |
499 | struct ti_device *tdev; | 497 | struct ti_device *tdev; |
diff --git a/drivers/usb/serial/usb-serial.c b/drivers/usb/serial/usb-serial.c index 99188c92068b..9d7ca4868d37 100644 --- a/drivers/usb/serial/usb-serial.c +++ b/drivers/usb/serial/usb-serial.c | |||
@@ -43,8 +43,6 @@ | |||
43 | #define DRIVER_AUTHOR "Greg Kroah-Hartman, greg@kroah.com, http://www.kroah.com/linux/" | 43 | #define DRIVER_AUTHOR "Greg Kroah-Hartman, greg@kroah.com, http://www.kroah.com/linux/" |
44 | #define DRIVER_DESC "USB Serial Driver core" | 44 | #define DRIVER_DESC "USB Serial Driver core" |
45 | 45 | ||
46 | static void port_free(struct usb_serial_port *port); | ||
47 | |||
48 | /* Driver structure we register with the USB core */ | 46 | /* Driver structure we register with the USB core */ |
49 | static struct usb_driver usb_serial_driver = { | 47 | static struct usb_driver usb_serial_driver = { |
50 | .name = "usbserial", | 48 | .name = "usbserial", |
@@ -68,6 +66,11 @@ static struct usb_serial *serial_table[SERIAL_TTY_MINORS]; | |||
68 | static DEFINE_MUTEX(table_lock); | 66 | static DEFINE_MUTEX(table_lock); |
69 | static LIST_HEAD(usb_serial_driver_list); | 67 | static LIST_HEAD(usb_serial_driver_list); |
70 | 68 | ||
69 | /* | ||
70 | * Look up the serial structure. If it is found and it hasn't been | ||
71 | * disconnected, return with its disc_mutex held and its refcount | ||
72 | * incremented. Otherwise return NULL. | ||
73 | */ | ||
71 | struct usb_serial *usb_serial_get_by_index(unsigned index) | 74 | struct usb_serial *usb_serial_get_by_index(unsigned index) |
72 | { | 75 | { |
73 | struct usb_serial *serial; | 76 | struct usb_serial *serial; |
@@ -75,8 +78,15 @@ struct usb_serial *usb_serial_get_by_index(unsigned index) | |||
75 | mutex_lock(&table_lock); | 78 | mutex_lock(&table_lock); |
76 | serial = serial_table[index]; | 79 | serial = serial_table[index]; |
77 | 80 | ||
78 | if (serial) | 81 | if (serial) { |
79 | kref_get(&serial->kref); | 82 | mutex_lock(&serial->disc_mutex); |
83 | if (serial->disconnected) { | ||
84 | mutex_unlock(&serial->disc_mutex); | ||
85 | serial = NULL; | ||
86 | } else { | ||
87 | kref_get(&serial->kref); | ||
88 | } | ||
89 | } | ||
80 | mutex_unlock(&table_lock); | 90 | mutex_unlock(&table_lock); |
81 | return serial; | 91 | return serial; |
82 | } | 92 | } |
@@ -125,8 +135,10 @@ static void return_serial(struct usb_serial *serial) | |||
125 | 135 | ||
126 | dbg("%s", __func__); | 136 | dbg("%s", __func__); |
127 | 137 | ||
138 | mutex_lock(&table_lock); | ||
128 | for (i = 0; i < serial->num_ports; ++i) | 139 | for (i = 0; i < serial->num_ports; ++i) |
129 | serial_table[serial->minor + i] = NULL; | 140 | serial_table[serial->minor + i] = NULL; |
141 | mutex_unlock(&table_lock); | ||
130 | } | 142 | } |
131 | 143 | ||
132 | static void destroy_serial(struct kref *kref) | 144 | static void destroy_serial(struct kref *kref) |
@@ -145,161 +157,157 @@ static void destroy_serial(struct kref *kref) | |||
145 | 157 | ||
146 | serial->type->release(serial); | 158 | serial->type->release(serial); |
147 | 159 | ||
148 | for (i = 0; i < serial->num_ports; ++i) { | 160 | /* Now that nothing is using the ports, they can be freed */ |
161 | for (i = 0; i < serial->num_port_pointers; ++i) { | ||
149 | port = serial->port[i]; | 162 | port = serial->port[i]; |
150 | if (port) | 163 | if (port) { |
164 | port->serial = NULL; | ||
151 | put_device(&port->dev); | 165 | put_device(&port->dev); |
152 | } | ||
153 | |||
154 | /* If this is a "fake" port, we have to clean it up here, as it will | ||
155 | * not get cleaned up in port_release() as it was never registered with | ||
156 | * the driver core */ | ||
157 | if (serial->num_ports < serial->num_port_pointers) { | ||
158 | for (i = serial->num_ports; | ||
159 | i < serial->num_port_pointers; ++i) { | ||
160 | port = serial->port[i]; | ||
161 | if (port) | ||
162 | port_free(port); | ||
163 | } | 166 | } |
164 | } | 167 | } |
165 | 168 | ||
166 | usb_put_dev(serial->dev); | 169 | usb_put_dev(serial->dev); |
167 | |||
168 | /* free up any memory that we allocated */ | ||
169 | kfree(serial); | 170 | kfree(serial); |
170 | } | 171 | } |
171 | 172 | ||
172 | void usb_serial_put(struct usb_serial *serial) | 173 | void usb_serial_put(struct usb_serial *serial) |
173 | { | 174 | { |
174 | mutex_lock(&table_lock); | ||
175 | kref_put(&serial->kref, destroy_serial); | 175 | kref_put(&serial->kref, destroy_serial); |
176 | mutex_unlock(&table_lock); | ||
177 | } | 176 | } |
178 | 177 | ||
179 | /***************************************************************************** | 178 | /***************************************************************************** |
180 | * Driver tty interface functions | 179 | * Driver tty interface functions |
181 | *****************************************************************************/ | 180 | *****************************************************************************/ |
182 | static int serial_open (struct tty_struct *tty, struct file *filp) | 181 | |
182 | /** | ||
183 | * serial_install - install tty | ||
184 | * @driver: the driver (USB in our case) | ||
185 | * @tty: the tty being created | ||
186 | * | ||
187 | * Create the termios objects for this tty. We use the default | ||
188 | * USB serial settings but permit them to be overridden by | ||
189 | * serial->type->init_termios. | ||
190 | * | ||
191 | * This is the first place a new tty gets used. Hence this is where we | ||
192 | * acquire references to the usb_serial structure and the driver module, | ||
193 | * where we store a pointer to the port, and where we do an autoresume. | ||
194 | * All these actions are reversed in serial_release(). | ||
195 | */ | ||
196 | static int serial_install(struct tty_driver *driver, struct tty_struct *tty) | ||
183 | { | 197 | { |
198 | int idx = tty->index; | ||
184 | struct usb_serial *serial; | 199 | struct usb_serial *serial; |
185 | struct usb_serial_port *port; | 200 | struct usb_serial_port *port; |
186 | unsigned int portNumber; | 201 | int retval = -ENODEV; |
187 | int retval = 0; | ||
188 | int first = 0; | ||
189 | 202 | ||
190 | dbg("%s", __func__); | 203 | dbg("%s", __func__); |
191 | 204 | ||
192 | /* get the serial object associated with this tty pointer */ | 205 | serial = usb_serial_get_by_index(idx); |
193 | serial = usb_serial_get_by_index(tty->index); | 206 | if (!serial) |
194 | if (!serial) { | 207 | return retval; |
195 | tty->driver_data = NULL; | ||
196 | return -ENODEV; | ||
197 | } | ||
198 | 208 | ||
199 | mutex_lock(&serial->disc_mutex); | 209 | port = serial->port[idx - serial->minor]; |
200 | portNumber = tty->index - serial->minor; | 210 | if (!port) |
201 | port = serial->port[portNumber]; | 211 | goto error_no_port; |
202 | if (!port || serial->disconnected) | 212 | if (!try_module_get(serial->type->driver.owner)) |
203 | retval = -ENODEV; | 213 | goto error_module_get; |
204 | else | 214 | |
205 | get_device(&port->dev); | 215 | /* perform the standard setup */ |
206 | /* | 216 | retval = tty_init_termios(tty); |
207 | * Note: Our locking order requirement does not allow port->mutex | ||
208 | * to be acquired while serial->disc_mutex is held. | ||
209 | */ | ||
210 | mutex_unlock(&serial->disc_mutex); | ||
211 | if (retval) | 217 | if (retval) |
212 | goto bailout_serial_put; | 218 | goto error_init_termios; |
213 | 219 | ||
214 | if (mutex_lock_interruptible(&port->mutex)) { | 220 | retval = usb_autopm_get_interface(serial->interface); |
215 | retval = -ERESTARTSYS; | 221 | if (retval) |
216 | goto bailout_port_put; | 222 | goto error_get_interface; |
217 | } | 223 | |
224 | mutex_unlock(&serial->disc_mutex); | ||
218 | 225 | ||
219 | ++port->port.count; | 226 | /* allow the driver to update the settings */ |
227 | if (serial->type->init_termios) | ||
228 | serial->type->init_termios(tty); | ||
220 | 229 | ||
221 | /* set up our port structure making the tty driver | ||
222 | * remember our port object, and us it */ | ||
223 | tty->driver_data = port; | 230 | tty->driver_data = port; |
224 | tty_port_tty_set(&port->port, tty); | ||
225 | 231 | ||
226 | /* If the console is attached, the device is already open */ | 232 | /* Final install (we use the default method) */ |
227 | if (port->port.count == 1 && !port->console) { | 233 | tty_driver_kref_get(driver); |
228 | first = 1; | 234 | tty->count++; |
229 | /* lock this module before we call it | 235 | driver->ttys[idx] = tty; |
230 | * this may fail, which means we must bail out, | 236 | return retval; |
231 | * safe because we are called with BKL held */ | ||
232 | if (!try_module_get(serial->type->driver.owner)) { | ||
233 | retval = -ENODEV; | ||
234 | goto bailout_mutex_unlock; | ||
235 | } | ||
236 | 237 | ||
238 | error_get_interface: | ||
239 | error_init_termios: | ||
240 | module_put(serial->type->driver.owner); | ||
241 | error_module_get: | ||
242 | error_no_port: | ||
243 | usb_serial_put(serial); | ||
244 | mutex_unlock(&serial->disc_mutex); | ||
245 | return retval; | ||
246 | } | ||
247 | |||
248 | static int serial_open(struct tty_struct *tty, struct file *filp) | ||
249 | { | ||
250 | struct usb_serial_port *port = tty->driver_data; | ||
251 | struct usb_serial *serial = port->serial; | ||
252 | int retval; | ||
253 | |||
254 | dbg("%s - port %d", __func__, port->number); | ||
255 | |||
256 | spin_lock_irq(&port->port.lock); | ||
257 | if (!tty_hung_up_p(filp)) | ||
258 | ++port->port.count; | ||
259 | spin_unlock_irq(&port->port.lock); | ||
260 | tty_port_tty_set(&port->port, tty); | ||
261 | |||
262 | /* Do the device-specific open only if the hardware isn't | ||
263 | * already initialized. | ||
264 | */ | ||
265 | if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags)) { | ||
266 | if (mutex_lock_interruptible(&port->mutex)) | ||
267 | return -ERESTARTSYS; | ||
237 | mutex_lock(&serial->disc_mutex); | 268 | mutex_lock(&serial->disc_mutex); |
238 | if (serial->disconnected) | 269 | if (serial->disconnected) |
239 | retval = -ENODEV; | 270 | retval = -ENODEV; |
240 | else | 271 | else |
241 | retval = usb_autopm_get_interface(serial->interface); | 272 | retval = port->serial->type->open(tty, port); |
242 | if (retval) | ||
243 | goto bailout_module_put; | ||
244 | |||
245 | /* only call the device specific open if this | ||
246 | * is the first time the port is opened */ | ||
247 | retval = serial->type->open(tty, port, filp); | ||
248 | if (retval) | ||
249 | goto bailout_interface_put; | ||
250 | mutex_unlock(&serial->disc_mutex); | 273 | mutex_unlock(&serial->disc_mutex); |
274 | mutex_unlock(&port->mutex); | ||
275 | if (retval) | ||
276 | return retval; | ||
251 | set_bit(ASYNCB_INITIALIZED, &port->port.flags); | 277 | set_bit(ASYNCB_INITIALIZED, &port->port.flags); |
252 | } | 278 | } |
253 | mutex_unlock(&port->mutex); | 279 | |
254 | /* Now do the correct tty layer semantics */ | 280 | /* Now do the correct tty layer semantics */ |
255 | retval = tty_port_block_til_ready(&port->port, tty, filp); | 281 | retval = tty_port_block_til_ready(&port->port, tty, filp); |
256 | if (retval == 0) { | ||
257 | if (!first) | ||
258 | usb_serial_put(serial); | ||
259 | return 0; | ||
260 | } | ||
261 | mutex_lock(&port->mutex); | ||
262 | if (first == 0) | ||
263 | goto bailout_mutex_unlock; | ||
264 | /* Undo the initial port actions */ | ||
265 | mutex_lock(&serial->disc_mutex); | ||
266 | bailout_interface_put: | ||
267 | usb_autopm_put_interface(serial->interface); | ||
268 | bailout_module_put: | ||
269 | mutex_unlock(&serial->disc_mutex); | ||
270 | module_put(serial->type->driver.owner); | ||
271 | bailout_mutex_unlock: | ||
272 | port->port.count = 0; | ||
273 | tty->driver_data = NULL; | ||
274 | tty_port_tty_set(&port->port, NULL); | ||
275 | mutex_unlock(&port->mutex); | ||
276 | bailout_port_put: | ||
277 | put_device(&port->dev); | ||
278 | bailout_serial_put: | ||
279 | usb_serial_put(serial); | ||
280 | return retval; | 282 | return retval; |
281 | } | 283 | } |
282 | 284 | ||
283 | /** | 285 | /** |
284 | * serial_do_down - shut down hardware | 286 | * serial_down - shut down hardware |
285 | * @port: port to shut down | 287 | * @port: port to shut down |
286 | * | ||
287 | * Shut down a USB port unless it is the console. We never shut down the | ||
288 | * console hardware as it will always be in use. | ||
289 | * | 288 | * |
290 | * Don't free any resources at this point | 289 | * Shut down a USB serial port unless it is the console. We never |
290 | * shut down the console hardware as it will always be in use. | ||
291 | */ | 291 | */ |
292 | static void serial_do_down(struct usb_serial_port *port) | 292 | static void serial_down(struct usb_serial_port *port) |
293 | { | 293 | { |
294 | struct usb_serial_driver *drv = port->serial->type; | 294 | struct usb_serial_driver *drv = port->serial->type; |
295 | struct usb_serial *serial; | 295 | struct usb_serial *serial; |
296 | struct module *owner; | 296 | struct module *owner; |
297 | 297 | ||
298 | /* The console is magical, do not hang up the console hardware | 298 | /* |
299 | or there will be tears */ | 299 | * The console is magical. Do not hang up the console hardware |
300 | * or there will be tears. | ||
301 | */ | ||
300 | if (port->console) | 302 | if (port->console) |
301 | return; | 303 | return; |
302 | 304 | ||
305 | /* Don't call the close method if the hardware hasn't been | ||
306 | * initialized. | ||
307 | */ | ||
308 | if (!test_and_clear_bit(ASYNCB_INITIALIZED, &port->port.flags)) | ||
309 | return; | ||
310 | |||
303 | mutex_lock(&port->mutex); | 311 | mutex_lock(&port->mutex); |
304 | serial = port->serial; | 312 | serial = port->serial; |
305 | owner = serial->type->driver.owner; | 313 | owner = serial->type->driver.owner; |
@@ -310,79 +318,69 @@ static void serial_do_down(struct usb_serial_port *port) | |||
310 | mutex_unlock(&port->mutex); | 318 | mutex_unlock(&port->mutex); |
311 | } | 319 | } |
312 | 320 | ||
313 | /** | 321 | static void serial_hangup(struct tty_struct *tty) |
314 | * serial_do_free - free resources post close/hangup | ||
315 | * @port: port to free up | ||
316 | * | ||
317 | * Do the resource freeing and refcount dropping for the port. We must | ||
318 | * be careful about ordering and we must avoid freeing up the console. | ||
319 | */ | ||
320 | |||
321 | static void serial_do_free(struct usb_serial_port *port) | ||
322 | { | 322 | { |
323 | struct usb_serial *serial; | 323 | struct usb_serial_port *port = tty->driver_data; |
324 | struct module *owner; | ||
325 | 324 | ||
326 | /* The console is magical, do not hang up the console hardware | 325 | dbg("%s - port %d", __func__, port->number); |
327 | or there will be tears */ | ||
328 | if (port->console) | ||
329 | return; | ||
330 | 326 | ||
331 | serial = port->serial; | 327 | serial_down(port); |
332 | owner = serial->type->driver.owner; | 328 | tty_port_hangup(&port->port); |
333 | put_device(&port->dev); | ||
334 | /* Mustn't dereference port any more */ | ||
335 | mutex_lock(&serial->disc_mutex); | ||
336 | if (!serial->disconnected) | ||
337 | usb_autopm_put_interface(serial->interface); | ||
338 | mutex_unlock(&serial->disc_mutex); | ||
339 | usb_serial_put(serial); | ||
340 | /* Mustn't dereference serial any more */ | ||
341 | module_put(owner); | ||
342 | } | 329 | } |
343 | 330 | ||
344 | static void serial_close(struct tty_struct *tty, struct file *filp) | 331 | static void serial_close(struct tty_struct *tty, struct file *filp) |
345 | { | 332 | { |
346 | struct usb_serial_port *port = tty->driver_data; | 333 | struct usb_serial_port *port = tty->driver_data; |
347 | 334 | ||
348 | if (!port) | ||
349 | return; | ||
350 | |||
351 | dbg("%s - port %d", __func__, port->number); | 335 | dbg("%s - port %d", __func__, port->number); |
352 | 336 | ||
353 | /* FIXME: | 337 | if (tty_hung_up_p(filp)) |
354 | This leaves a very narrow race. Really we should do the | ||
355 | serial_do_free() on tty->shutdown(), but tty->shutdown can | ||
356 | be called from IRQ context and serial_do_free can sleep. | ||
357 | |||
358 | The right fix is probably to make the tty free (which is rare) | ||
359 | and thus tty->shutdown() occur via a work queue and simplify all | ||
360 | the drivers that use it. | ||
361 | */ | ||
362 | if (tty_hung_up_p(filp)) { | ||
363 | /* serial_hangup already called serial_down at this point. | ||
364 | Another user may have already reopened the port but | ||
365 | serial_do_free is refcounted */ | ||
366 | serial_do_free(port); | ||
367 | return; | 338 | return; |
368 | } | ||
369 | |||
370 | if (tty_port_close_start(&port->port, tty, filp) == 0) | 339 | if (tty_port_close_start(&port->port, tty, filp) == 0) |
371 | return; | 340 | return; |
372 | 341 | serial_down(port); | |
373 | serial_do_down(port); | ||
374 | tty_port_close_end(&port->port, tty); | 342 | tty_port_close_end(&port->port, tty); |
375 | tty_port_tty_set(&port->port, NULL); | 343 | tty_port_tty_set(&port->port, NULL); |
376 | serial_do_free(port); | ||
377 | } | 344 | } |
378 | 345 | ||
379 | static void serial_hangup(struct tty_struct *tty) | 346 | /** |
347 | * serial_release - free resources post close/hangup | ||
348 | * @port: port to free up | ||
349 | * | ||
350 | * Do the resource freeing and refcount dropping for the port. | ||
351 | * Avoid freeing the console. | ||
352 | * | ||
353 | * Called when the last tty kref is dropped. | ||
354 | */ | ||
355 | static void serial_release(struct tty_struct *tty) | ||
380 | { | 356 | { |
381 | struct usb_serial_port *port = tty->driver_data; | 357 | struct usb_serial_port *port = tty->driver_data; |
382 | serial_do_down(port); | 358 | struct usb_serial *serial; |
383 | tty_port_hangup(&port->port); | 359 | struct module *owner; |
384 | /* We must not free port yet - the USB serial layer depends on it's | 360 | |
385 | continued existence */ | 361 | /* The console is magical. Do not hang up the console hardware |
362 | * or there will be tears. | ||
363 | */ | ||
364 | if (port->console) | ||
365 | return; | ||
366 | |||
367 | dbg("%s - port %d", __func__, port->number); | ||
368 | |||
369 | /* Standard shutdown processing */ | ||
370 | tty_shutdown(tty); | ||
371 | |||
372 | tty->driver_data = NULL; | ||
373 | |||
374 | serial = port->serial; | ||
375 | owner = serial->type->driver.owner; | ||
376 | |||
377 | mutex_lock(&serial->disc_mutex); | ||
378 | if (!serial->disconnected) | ||
379 | usb_autopm_put_interface(serial->interface); | ||
380 | mutex_unlock(&serial->disc_mutex); | ||
381 | |||
382 | usb_serial_put(serial); | ||
383 | module_put(owner); | ||
386 | } | 384 | } |
387 | 385 | ||
388 | static int serial_write(struct tty_struct *tty, const unsigned char *buf, | 386 | static int serial_write(struct tty_struct *tty, const unsigned char *buf, |
@@ -527,6 +525,7 @@ static int serial_proc_show(struct seq_file *m, void *v) | |||
527 | 525 | ||
528 | seq_putc(m, '\n'); | 526 | seq_putc(m, '\n'); |
529 | usb_serial_put(serial); | 527 | usb_serial_put(serial); |
528 | mutex_unlock(&serial->disc_mutex); | ||
530 | } | 529 | } |
531 | return 0; | 530 | return 0; |
532 | } | 531 | } |
@@ -596,14 +595,6 @@ static void usb_serial_port_work(struct work_struct *work) | |||
596 | tty_kref_put(tty); | 595 | tty_kref_put(tty); |
597 | } | 596 | } |
598 | 597 | ||
599 | static void port_release(struct device *dev) | ||
600 | { | ||
601 | struct usb_serial_port *port = to_usb_serial_port(dev); | ||
602 | |||
603 | dbg ("%s - %s", __func__, dev_name(dev)); | ||
604 | port_free(port); | ||
605 | } | ||
606 | |||
607 | static void kill_traffic(struct usb_serial_port *port) | 598 | static void kill_traffic(struct usb_serial_port *port) |
608 | { | 599 | { |
609 | usb_kill_urb(port->read_urb); | 600 | usb_kill_urb(port->read_urb); |
@@ -623,8 +614,12 @@ static void kill_traffic(struct usb_serial_port *port) | |||
623 | usb_kill_urb(port->interrupt_out_urb); | 614 | usb_kill_urb(port->interrupt_out_urb); |
624 | } | 615 | } |
625 | 616 | ||
626 | static void port_free(struct usb_serial_port *port) | 617 | static void port_release(struct device *dev) |
627 | { | 618 | { |
619 | struct usb_serial_port *port = to_usb_serial_port(dev); | ||
620 | |||
621 | dbg ("%s - %s", __func__, dev_name(dev)); | ||
622 | |||
628 | /* | 623 | /* |
629 | * Stop all the traffic before cancelling the work, so that | 624 | * Stop all the traffic before cancelling the work, so that |
630 | * nobody will restart it by calling usb_serial_port_softint. | 625 | * nobody will restart it by calling usb_serial_port_softint. |
@@ -935,6 +930,11 @@ int usb_serial_probe(struct usb_interface *interface, | |||
935 | mutex_init(&port->mutex); | 930 | mutex_init(&port->mutex); |
936 | INIT_WORK(&port->work, usb_serial_port_work); | 931 | INIT_WORK(&port->work, usb_serial_port_work); |
937 | serial->port[i] = port; | 932 | serial->port[i] = port; |
933 | port->dev.parent = &interface->dev; | ||
934 | port->dev.driver = NULL; | ||
935 | port->dev.bus = &usb_serial_bus_type; | ||
936 | port->dev.release = &port_release; | ||
937 | device_initialize(&port->dev); | ||
938 | } | 938 | } |
939 | 939 | ||
940 | /* set up the endpoint information */ | 940 | /* set up the endpoint information */ |
@@ -1077,15 +1077,10 @@ int usb_serial_probe(struct usb_interface *interface, | |||
1077 | /* register all of the individual ports with the driver core */ | 1077 | /* register all of the individual ports with the driver core */ |
1078 | for (i = 0; i < num_ports; ++i) { | 1078 | for (i = 0; i < num_ports; ++i) { |
1079 | port = serial->port[i]; | 1079 | port = serial->port[i]; |
1080 | port->dev.parent = &interface->dev; | ||
1081 | port->dev.driver = NULL; | ||
1082 | port->dev.bus = &usb_serial_bus_type; | ||
1083 | port->dev.release = &port_release; | ||
1084 | |||
1085 | dev_set_name(&port->dev, "ttyUSB%d", port->number); | 1080 | dev_set_name(&port->dev, "ttyUSB%d", port->number); |
1086 | dbg ("%s - registering %s", __func__, dev_name(&port->dev)); | 1081 | dbg ("%s - registering %s", __func__, dev_name(&port->dev)); |
1087 | port->dev_state = PORT_REGISTERING; | 1082 | port->dev_state = PORT_REGISTERING; |
1088 | retval = device_register(&port->dev); | 1083 | retval = device_add(&port->dev); |
1089 | if (retval) { | 1084 | if (retval) { |
1090 | dev_err(&port->dev, "Error registering port device, " | 1085 | dev_err(&port->dev, "Error registering port device, " |
1091 | "continuing\n"); | 1086 | "continuing\n"); |
@@ -1103,39 +1098,7 @@ exit: | |||
1103 | return 0; | 1098 | return 0; |
1104 | 1099 | ||
1105 | probe_error: | 1100 | probe_error: |
1106 | for (i = 0; i < num_bulk_in; ++i) { | 1101 | usb_serial_put(serial); |
1107 | port = serial->port[i]; | ||
1108 | if (!port) | ||
1109 | continue; | ||
1110 | usb_free_urb(port->read_urb); | ||
1111 | kfree(port->bulk_in_buffer); | ||
1112 | } | ||
1113 | for (i = 0; i < num_bulk_out; ++i) { | ||
1114 | port = serial->port[i]; | ||
1115 | if (!port) | ||
1116 | continue; | ||
1117 | usb_free_urb(port->write_urb); | ||
1118 | kfree(port->bulk_out_buffer); | ||
1119 | } | ||
1120 | for (i = 0; i < num_interrupt_in; ++i) { | ||
1121 | port = serial->port[i]; | ||
1122 | if (!port) | ||
1123 | continue; | ||
1124 | usb_free_urb(port->interrupt_in_urb); | ||
1125 | kfree(port->interrupt_in_buffer); | ||
1126 | } | ||
1127 | for (i = 0; i < num_interrupt_out; ++i) { | ||
1128 | port = serial->port[i]; | ||
1129 | if (!port) | ||
1130 | continue; | ||
1131 | usb_free_urb(port->interrupt_out_urb); | ||
1132 | kfree(port->interrupt_out_buffer); | ||
1133 | } | ||
1134 | |||
1135 | /* free up any memory that we allocated */ | ||
1136 | for (i = 0; i < serial->num_port_pointers; ++i) | ||
1137 | kfree(serial->port[i]); | ||
1138 | kfree(serial); | ||
1139 | return -EIO; | 1102 | return -EIO; |
1140 | } | 1103 | } |
1141 | EXPORT_SYMBOL_GPL(usb_serial_probe); | 1104 | EXPORT_SYMBOL_GPL(usb_serial_probe); |
@@ -1161,10 +1124,7 @@ void usb_serial_disconnect(struct usb_interface *interface) | |||
1161 | if (port) { | 1124 | if (port) { |
1162 | struct tty_struct *tty = tty_port_tty_get(&port->port); | 1125 | struct tty_struct *tty = tty_port_tty_get(&port->port); |
1163 | if (tty) { | 1126 | if (tty) { |
1164 | /* The hangup will occur asynchronously but | 1127 | tty_vhangup(tty); |
1165 | the object refcounts will sort out all the | ||
1166 | cleanup */ | ||
1167 | tty_hangup(tty); | ||
1168 | tty_kref_put(tty); | 1128 | tty_kref_put(tty); |
1169 | } | 1129 | } |
1170 | kill_traffic(port); | 1130 | kill_traffic(port); |
@@ -1189,8 +1149,7 @@ void usb_serial_disconnect(struct usb_interface *interface) | |||
1189 | } | 1149 | } |
1190 | serial->type->disconnect(serial); | 1150 | serial->type->disconnect(serial); |
1191 | 1151 | ||
1192 | /* let the last holder of this object | 1152 | /* let the last holder of this object cause it to be cleaned up */ |
1193 | * cause it to be cleaned up */ | ||
1194 | usb_serial_put(serial); | 1153 | usb_serial_put(serial); |
1195 | dev_info(dev, "device disconnected\n"); | 1154 | dev_info(dev, "device disconnected\n"); |
1196 | } | 1155 | } |
@@ -1246,6 +1205,8 @@ static const struct tty_operations serial_ops = { | |||
1246 | .chars_in_buffer = serial_chars_in_buffer, | 1205 | .chars_in_buffer = serial_chars_in_buffer, |
1247 | .tiocmget = serial_tiocmget, | 1206 | .tiocmget = serial_tiocmget, |
1248 | .tiocmset = serial_tiocmset, | 1207 | .tiocmset = serial_tiocmset, |
1208 | .shutdown = serial_release, | ||
1209 | .install = serial_install, | ||
1249 | .proc_fops = &serial_proc_fops, | 1210 | .proc_fops = &serial_proc_fops, |
1250 | }; | 1211 | }; |
1251 | 1212 | ||
diff --git a/drivers/usb/serial/usb_debug.c b/drivers/usb/serial/usb_debug.c index 614800972dc3..7b5bfc4edd3d 100644 --- a/drivers/usb/serial/usb_debug.c +++ b/drivers/usb/serial/usb_debug.c | |||
@@ -43,11 +43,10 @@ static struct usb_driver debug_driver = { | |||
43 | .no_dynamic_id = 1, | 43 | .no_dynamic_id = 1, |
44 | }; | 44 | }; |
45 | 45 | ||
46 | static int usb_debug_open(struct tty_struct *tty, struct usb_serial_port *port, | 46 | static int usb_debug_open(struct tty_struct *tty, struct usb_serial_port *port) |
47 | struct file *filp) | ||
48 | { | 47 | { |
49 | port->bulk_out_size = USB_DEBUG_MAX_PACKET_SIZE; | 48 | port->bulk_out_size = USB_DEBUG_MAX_PACKET_SIZE; |
50 | return usb_serial_generic_open(tty, port, filp); | 49 | return usb_serial_generic_open(tty, port); |
51 | } | 50 | } |
52 | 51 | ||
53 | /* This HW really does not support a serial break, so one will be | 52 | /* This HW really does not support a serial break, so one will be |
diff --git a/drivers/usb/serial/visor.c b/drivers/usb/serial/visor.c index f5d0f64dcc52..1aa5d20a5d99 100644 --- a/drivers/usb/serial/visor.c +++ b/drivers/usb/serial/visor.c | |||
@@ -36,8 +36,7 @@ | |||
36 | #define DRIVER_DESC "USB HandSpring Visor / Palm OS driver" | 36 | #define DRIVER_DESC "USB HandSpring Visor / Palm OS driver" |
37 | 37 | ||
38 | /* function prototypes for a handspring visor */ | 38 | /* function prototypes for a handspring visor */ |
39 | static int visor_open(struct tty_struct *tty, struct usb_serial_port *port, | 39 | static int visor_open(struct tty_struct *tty, struct usb_serial_port *port); |
40 | struct file *filp); | ||
41 | static void visor_close(struct usb_serial_port *port); | 40 | static void visor_close(struct usb_serial_port *port); |
42 | static int visor_write(struct tty_struct *tty, struct usb_serial_port *port, | 41 | static int visor_write(struct tty_struct *tty, struct usb_serial_port *port, |
43 | const unsigned char *buf, int count); | 42 | const unsigned char *buf, int count); |
@@ -273,8 +272,7 @@ static int stats; | |||
273 | /****************************************************************************** | 272 | /****************************************************************************** |
274 | * Handspring Visor specific driver functions | 273 | * Handspring Visor specific driver functions |
275 | ******************************************************************************/ | 274 | ******************************************************************************/ |
276 | static int visor_open(struct tty_struct *tty, struct usb_serial_port *port, | 275 | static int visor_open(struct tty_struct *tty, struct usb_serial_port *port) |
277 | struct file *filp) | ||
278 | { | 276 | { |
279 | struct usb_serial *serial = port->serial; | 277 | struct usb_serial *serial = port->serial; |
280 | struct visor_private *priv = usb_get_serial_port_data(port); | 278 | struct visor_private *priv = usb_get_serial_port_data(port); |
diff --git a/drivers/usb/serial/whiteheat.c b/drivers/usb/serial/whiteheat.c index 8d126dd7a02e..62424eec33ec 100644 --- a/drivers/usb/serial/whiteheat.c +++ b/drivers/usb/serial/whiteheat.c | |||
@@ -146,7 +146,7 @@ static int whiteheat_firmware_attach(struct usb_serial *serial); | |||
146 | static int whiteheat_attach(struct usb_serial *serial); | 146 | static int whiteheat_attach(struct usb_serial *serial); |
147 | static void whiteheat_release(struct usb_serial *serial); | 147 | static void whiteheat_release(struct usb_serial *serial); |
148 | static int whiteheat_open(struct tty_struct *tty, | 148 | static int whiteheat_open(struct tty_struct *tty, |
149 | struct usb_serial_port *port, struct file *filp); | 149 | struct usb_serial_port *port); |
150 | static void whiteheat_close(struct usb_serial_port *port); | 150 | static void whiteheat_close(struct usb_serial_port *port); |
151 | static int whiteheat_write(struct tty_struct *tty, | 151 | static int whiteheat_write(struct tty_struct *tty, |
152 | struct usb_serial_port *port, | 152 | struct usb_serial_port *port, |
@@ -259,7 +259,7 @@ static int firm_send_command(struct usb_serial_port *port, __u8 command, | |||
259 | __u8 *data, __u8 datasize); | 259 | __u8 *data, __u8 datasize); |
260 | static int firm_open(struct usb_serial_port *port); | 260 | static int firm_open(struct usb_serial_port *port); |
261 | static int firm_close(struct usb_serial_port *port); | 261 | static int firm_close(struct usb_serial_port *port); |
262 | static int firm_setup_port(struct tty_struct *tty); | 262 | static void firm_setup_port(struct tty_struct *tty); |
263 | static int firm_set_rts(struct usb_serial_port *port, __u8 onoff); | 263 | static int firm_set_rts(struct usb_serial_port *port, __u8 onoff); |
264 | static int firm_set_dtr(struct usb_serial_port *port, __u8 onoff); | 264 | static int firm_set_dtr(struct usb_serial_port *port, __u8 onoff); |
265 | static int firm_set_break(struct usb_serial_port *port, __u8 onoff); | 265 | static int firm_set_break(struct usb_serial_port *port, __u8 onoff); |
@@ -659,8 +659,7 @@ static void whiteheat_release(struct usb_serial *serial) | |||
659 | return; | 659 | return; |
660 | } | 660 | } |
661 | 661 | ||
662 | static int whiteheat_open(struct tty_struct *tty, | 662 | static int whiteheat_open(struct tty_struct *tty, struct usb_serial_port *port) |
663 | struct usb_serial_port *port, struct file *filp) | ||
664 | { | 663 | { |
665 | int retval = 0; | 664 | int retval = 0; |
666 | 665 | ||
@@ -1211,7 +1210,7 @@ static int firm_close(struct usb_serial_port *port) | |||
1211 | } | 1210 | } |
1212 | 1211 | ||
1213 | 1212 | ||
1214 | static int firm_setup_port(struct tty_struct *tty) | 1213 | static void firm_setup_port(struct tty_struct *tty) |
1215 | { | 1214 | { |
1216 | struct usb_serial_port *port = tty->driver_data; | 1215 | struct usb_serial_port *port = tty->driver_data; |
1217 | struct whiteheat_port_settings port_settings; | 1216 | struct whiteheat_port_settings port_settings; |
@@ -1286,7 +1285,7 @@ static int firm_setup_port(struct tty_struct *tty) | |||
1286 | port_settings.lloop = 0; | 1285 | port_settings.lloop = 0; |
1287 | 1286 | ||
1288 | /* now send the message to the device */ | 1287 | /* now send the message to the device */ |
1289 | return firm_send_command(port, WHITEHEAT_SETUP_PORT, | 1288 | firm_send_command(port, WHITEHEAT_SETUP_PORT, |
1290 | (__u8 *)&port_settings, sizeof(port_settings)); | 1289 | (__u8 *)&port_settings, sizeof(port_settings)); |
1291 | } | 1290 | } |
1292 | 1291 | ||
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index cef3e1d9b92e..11af4cb8924e 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
@@ -1869,7 +1869,7 @@ config FB_W100 | |||
1869 | 1869 | ||
1870 | config FB_SH_MOBILE_LCDC | 1870 | config FB_SH_MOBILE_LCDC |
1871 | tristate "SuperH Mobile LCDC framebuffer support" | 1871 | tristate "SuperH Mobile LCDC framebuffer support" |
1872 | depends on FB && SUPERH | 1872 | depends on FB && SUPERH && HAVE_CLK |
1873 | select FB_SYS_FILLRECT | 1873 | select FB_SYS_FILLRECT |
1874 | select FB_SYS_COPYAREA | 1874 | select FB_SYS_COPYAREA |
1875 | select FB_SYS_IMAGEBLIT | 1875 | select FB_SYS_IMAGEBLIT |
diff --git a/drivers/video/console/vgacon.c b/drivers/video/console/vgacon.c index 59d7d5ec17a4..74e96cf83b7e 100644 --- a/drivers/video/console/vgacon.c +++ b/drivers/video/console/vgacon.c | |||
@@ -180,7 +180,6 @@ static inline void vga_set_mem_top(struct vc_data *c) | |||
180 | } | 180 | } |
181 | 181 | ||
182 | #ifdef CONFIG_VGACON_SOFT_SCROLLBACK | 182 | #ifdef CONFIG_VGACON_SOFT_SCROLLBACK |
183 | #include <linux/slab.h> | ||
184 | /* software scrollback */ | 183 | /* software scrollback */ |
185 | static void *vgacon_scrollback; | 184 | static void *vgacon_scrollback; |
186 | static int vgacon_scrollback_tail; | 185 | static int vgacon_scrollback_tail; |
diff --git a/drivers/video/omap/dispc.c b/drivers/video/omap/dispc.c index 148cbcc39602..915439dc05a0 100644 --- a/drivers/video/omap/dispc.c +++ b/drivers/video/omap/dispc.c | |||
@@ -212,9 +212,9 @@ static void enable_rfbi_mode(int enable) | |||
212 | dispc_write_reg(DISPC_CONTROL, l); | 212 | dispc_write_reg(DISPC_CONTROL, l); |
213 | 213 | ||
214 | /* Set bypass mode in RFBI module */ | 214 | /* Set bypass mode in RFBI module */ |
215 | l = __raw_readl(IO_ADDRESS(RFBI_CONTROL)); | 215 | l = __raw_readl(OMAP2_IO_ADDRESS(RFBI_CONTROL)); |
216 | l |= enable ? 0 : (1 << 1); | 216 | l |= enable ? 0 : (1 << 1); |
217 | __raw_writel(l, IO_ADDRESS(RFBI_CONTROL)); | 217 | __raw_writel(l, OMAP2_IO_ADDRESS(RFBI_CONTROL)); |
218 | } | 218 | } |
219 | 219 | ||
220 | static void set_lcd_data_lines(int data_lines) | 220 | static void set_lcd_data_lines(int data_lines) |
@@ -1421,7 +1421,7 @@ static int omap_dispc_init(struct omapfb_device *fbdev, int ext_mode, | |||
1421 | } | 1421 | } |
1422 | 1422 | ||
1423 | /* L3 firewall setting: enable access to OCM RAM */ | 1423 | /* L3 firewall setting: enable access to OCM RAM */ |
1424 | __raw_writel(0x402000b0, IO_ADDRESS(0x680050a0)); | 1424 | __raw_writel(0x402000b0, OMAP2_IO_ADDRESS(0x680050a0)); |
1425 | 1425 | ||
1426 | if ((r = alloc_palette_ram()) < 0) | 1426 | if ((r = alloc_palette_ram()) < 0) |
1427 | goto fail2; | 1427 | goto fail2; |
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c index 07f22b625632..3ad5157f9899 100644 --- a/drivers/video/sh_mobile_lcdcfb.c +++ b/drivers/video/sh_mobile_lcdcfb.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/mm.h> | 14 | #include <linux/mm.h> |
15 | #include <linux/fb.h> | 15 | #include <linux/fb.h> |
16 | #include <linux/clk.h> | 16 | #include <linux/clk.h> |
17 | #include <linux/pm_runtime.h> | ||
17 | #include <linux/platform_device.h> | 18 | #include <linux/platform_device.h> |
18 | #include <linux/dma-mapping.h> | 19 | #include <linux/dma-mapping.h> |
19 | #include <linux/interrupt.h> | 20 | #include <linux/interrupt.h> |
@@ -22,35 +23,8 @@ | |||
22 | #include <asm/atomic.h> | 23 | #include <asm/atomic.h> |
23 | 24 | ||
24 | #define PALETTE_NR 16 | 25 | #define PALETTE_NR 16 |
25 | 26 | #define SIDE_B_OFFSET 0x1000 | |
26 | struct sh_mobile_lcdc_priv; | 27 | #define MIRROR_OFFSET 0x2000 |
27 | struct sh_mobile_lcdc_chan { | ||
28 | struct sh_mobile_lcdc_priv *lcdc; | ||
29 | unsigned long *reg_offs; | ||
30 | unsigned long ldmt1r_value; | ||
31 | unsigned long enabled; /* ME and SE in LDCNT2R */ | ||
32 | struct sh_mobile_lcdc_chan_cfg cfg; | ||
33 | u32 pseudo_palette[PALETTE_NR]; | ||
34 | struct fb_info *info; | ||
35 | dma_addr_t dma_handle; | ||
36 | struct fb_deferred_io defio; | ||
37 | struct scatterlist *sglist; | ||
38 | unsigned long frame_end; | ||
39 | wait_queue_head_t frame_end_wait; | ||
40 | }; | ||
41 | |||
42 | struct sh_mobile_lcdc_priv { | ||
43 | void __iomem *base; | ||
44 | int irq; | ||
45 | #ifdef CONFIG_HAVE_CLK | ||
46 | atomic_t clk_usecnt; | ||
47 | struct clk *dot_clk; | ||
48 | struct clk *clk; | ||
49 | #endif | ||
50 | unsigned long lddckr; | ||
51 | struct sh_mobile_lcdc_chan ch[2]; | ||
52 | int started; | ||
53 | }; | ||
54 | 28 | ||
55 | /* shared registers */ | 29 | /* shared registers */ |
56 | #define _LDDCKR 0x410 | 30 | #define _LDDCKR 0x410 |
@@ -59,17 +33,30 @@ struct sh_mobile_lcdc_priv { | |||
59 | #define _LDSR 0x46c | 33 | #define _LDSR 0x46c |
60 | #define _LDCNT1R 0x470 | 34 | #define _LDCNT1R 0x470 |
61 | #define _LDCNT2R 0x474 | 35 | #define _LDCNT2R 0x474 |
36 | #define _LDRCNTR 0x478 | ||
62 | #define _LDDDSR 0x47c | 37 | #define _LDDDSR 0x47c |
63 | #define _LDDWD0R 0x800 | 38 | #define _LDDWD0R 0x800 |
64 | #define _LDDRDR 0x840 | 39 | #define _LDDRDR 0x840 |
65 | #define _LDDWAR 0x900 | 40 | #define _LDDWAR 0x900 |
66 | #define _LDDRAR 0x904 | 41 | #define _LDDRAR 0x904 |
67 | 42 | ||
43 | /* shared registers and their order for context save/restore */ | ||
44 | static int lcdc_shared_regs[] = { | ||
45 | _LDDCKR, | ||
46 | _LDDCKSTPR, | ||
47 | _LDINTR, | ||
48 | _LDDDSR, | ||
49 | _LDCNT1R, | ||
50 | _LDCNT2R, | ||
51 | }; | ||
52 | #define NR_SHARED_REGS ARRAY_SIZE(lcdc_shared_regs) | ||
53 | |||
68 | /* per-channel registers */ | 54 | /* per-channel registers */ |
69 | enum { LDDCKPAT1R, LDDCKPAT2R, LDMT1R, LDMT2R, LDMT3R, LDDFR, LDSM1R, | 55 | enum { LDDCKPAT1R, LDDCKPAT2R, LDMT1R, LDMT2R, LDMT3R, LDDFR, LDSM1R, |
70 | LDSM2R, LDSA1R, LDMLSR, LDHCNR, LDHSYNR, LDVLNR, LDVSYNR, LDPMR }; | 56 | LDSM2R, LDSA1R, LDMLSR, LDHCNR, LDHSYNR, LDVLNR, LDVSYNR, LDPMR, |
57 | NR_CH_REGS }; | ||
71 | 58 | ||
72 | static unsigned long lcdc_offs_mainlcd[] = { | 59 | static unsigned long lcdc_offs_mainlcd[NR_CH_REGS] = { |
73 | [LDDCKPAT1R] = 0x400, | 60 | [LDDCKPAT1R] = 0x400, |
74 | [LDDCKPAT2R] = 0x404, | 61 | [LDDCKPAT2R] = 0x404, |
75 | [LDMT1R] = 0x418, | 62 | [LDMT1R] = 0x418, |
@@ -87,7 +74,7 @@ static unsigned long lcdc_offs_mainlcd[] = { | |||
87 | [LDPMR] = 0x460, | 74 | [LDPMR] = 0x460, |
88 | }; | 75 | }; |
89 | 76 | ||
90 | static unsigned long lcdc_offs_sublcd[] = { | 77 | static unsigned long lcdc_offs_sublcd[NR_CH_REGS] = { |
91 | [LDDCKPAT1R] = 0x408, | 78 | [LDDCKPAT1R] = 0x408, |
92 | [LDDCKPAT2R] = 0x40c, | 79 | [LDDCKPAT2R] = 0x40c, |
93 | [LDMT1R] = 0x600, | 80 | [LDMT1R] = 0x600, |
@@ -110,12 +97,80 @@ static unsigned long lcdc_offs_sublcd[] = { | |||
110 | #define DISPLAY_BEU 0x00000008 | 97 | #define DISPLAY_BEU 0x00000008 |
111 | #define LCDC_ENABLE 0x00000001 | 98 | #define LCDC_ENABLE 0x00000001 |
112 | #define LDINTR_FE 0x00000400 | 99 | #define LDINTR_FE 0x00000400 |
100 | #define LDINTR_VSE 0x00000200 | ||
101 | #define LDINTR_VEE 0x00000100 | ||
113 | #define LDINTR_FS 0x00000004 | 102 | #define LDINTR_FS 0x00000004 |
103 | #define LDINTR_VSS 0x00000002 | ||
104 | #define LDINTR_VES 0x00000001 | ||
105 | #define LDRCNTR_SRS 0x00020000 | ||
106 | #define LDRCNTR_SRC 0x00010000 | ||
107 | #define LDRCNTR_MRS 0x00000002 | ||
108 | #define LDRCNTR_MRC 0x00000001 | ||
109 | |||
110 | struct sh_mobile_lcdc_priv; | ||
111 | struct sh_mobile_lcdc_chan { | ||
112 | struct sh_mobile_lcdc_priv *lcdc; | ||
113 | unsigned long *reg_offs; | ||
114 | unsigned long ldmt1r_value; | ||
115 | unsigned long enabled; /* ME and SE in LDCNT2R */ | ||
116 | struct sh_mobile_lcdc_chan_cfg cfg; | ||
117 | u32 pseudo_palette[PALETTE_NR]; | ||
118 | unsigned long saved_ch_regs[NR_CH_REGS]; | ||
119 | struct fb_info *info; | ||
120 | dma_addr_t dma_handle; | ||
121 | struct fb_deferred_io defio; | ||
122 | struct scatterlist *sglist; | ||
123 | unsigned long frame_end; | ||
124 | unsigned long pan_offset; | ||
125 | unsigned long new_pan_offset; | ||
126 | wait_queue_head_t frame_end_wait; | ||
127 | }; | ||
128 | |||
129 | struct sh_mobile_lcdc_priv { | ||
130 | void __iomem *base; | ||
131 | int irq; | ||
132 | atomic_t hw_usecnt; | ||
133 | struct device *dev; | ||
134 | struct clk *dot_clk; | ||
135 | unsigned long lddckr; | ||
136 | struct sh_mobile_lcdc_chan ch[2]; | ||
137 | unsigned long saved_shared_regs[NR_SHARED_REGS]; | ||
138 | int started; | ||
139 | }; | ||
140 | |||
141 | static bool banked(int reg_nr) | ||
142 | { | ||
143 | switch (reg_nr) { | ||
144 | case LDMT1R: | ||
145 | case LDMT2R: | ||
146 | case LDMT3R: | ||
147 | case LDDFR: | ||
148 | case LDSM1R: | ||
149 | case LDSA1R: | ||
150 | case LDMLSR: | ||
151 | case LDHCNR: | ||
152 | case LDHSYNR: | ||
153 | case LDVLNR: | ||
154 | case LDVSYNR: | ||
155 | return true; | ||
156 | } | ||
157 | return false; | ||
158 | } | ||
114 | 159 | ||
115 | static void lcdc_write_chan(struct sh_mobile_lcdc_chan *chan, | 160 | static void lcdc_write_chan(struct sh_mobile_lcdc_chan *chan, |
116 | int reg_nr, unsigned long data) | 161 | int reg_nr, unsigned long data) |
117 | { | 162 | { |
118 | iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr]); | 163 | iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr]); |
164 | if (banked(reg_nr)) | ||
165 | iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] + | ||
166 | SIDE_B_OFFSET); | ||
167 | } | ||
168 | |||
169 | static void lcdc_write_chan_mirror(struct sh_mobile_lcdc_chan *chan, | ||
170 | int reg_nr, unsigned long data) | ||
171 | { | ||
172 | iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] + | ||
173 | MIRROR_OFFSET); | ||
119 | } | 174 | } |
120 | 175 | ||
121 | static unsigned long lcdc_read_chan(struct sh_mobile_lcdc_chan *chan, | 176 | static unsigned long lcdc_read_chan(struct sh_mobile_lcdc_chan *chan, |
@@ -156,6 +211,7 @@ static void lcdc_sys_write_index(void *handle, unsigned long data) | |||
156 | lcdc_write(ch->lcdc, _LDDWD0R, data | 0x10000000); | 211 | lcdc_write(ch->lcdc, _LDDWD0R, data | 0x10000000); |
157 | lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0); | 212 | lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0); |
158 | lcdc_write(ch->lcdc, _LDDWAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0)); | 213 | lcdc_write(ch->lcdc, _LDDWAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0)); |
214 | lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0); | ||
159 | } | 215 | } |
160 | 216 | ||
161 | static void lcdc_sys_write_data(void *handle, unsigned long data) | 217 | static void lcdc_sys_write_data(void *handle, unsigned long data) |
@@ -165,6 +221,7 @@ static void lcdc_sys_write_data(void *handle, unsigned long data) | |||
165 | lcdc_write(ch->lcdc, _LDDWD0R, data | 0x11000000); | 221 | lcdc_write(ch->lcdc, _LDDWD0R, data | 0x11000000); |
166 | lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0); | 222 | lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0); |
167 | lcdc_write(ch->lcdc, _LDDWAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0)); | 223 | lcdc_write(ch->lcdc, _LDDWAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0)); |
224 | lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0); | ||
168 | } | 225 | } |
169 | 226 | ||
170 | static unsigned long lcdc_sys_read_data(void *handle) | 227 | static unsigned long lcdc_sys_read_data(void *handle) |
@@ -175,8 +232,9 @@ static unsigned long lcdc_sys_read_data(void *handle) | |||
175 | lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0); | 232 | lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0); |
176 | lcdc_write(ch->lcdc, _LDDRAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0)); | 233 | lcdc_write(ch->lcdc, _LDDRAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0)); |
177 | udelay(1); | 234 | udelay(1); |
235 | lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0); | ||
178 | 236 | ||
179 | return lcdc_read(ch->lcdc, _LDDRDR) & 0xffff; | 237 | return lcdc_read(ch->lcdc, _LDDRDR) & 0x3ffff; |
180 | } | 238 | } |
181 | 239 | ||
182 | struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops = { | 240 | struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops = { |
@@ -185,11 +243,10 @@ struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops = { | |||
185 | lcdc_sys_read_data, | 243 | lcdc_sys_read_data, |
186 | }; | 244 | }; |
187 | 245 | ||
188 | #ifdef CONFIG_HAVE_CLK | ||
189 | static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv *priv) | 246 | static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv *priv) |
190 | { | 247 | { |
191 | if (atomic_inc_and_test(&priv->clk_usecnt)) { | 248 | if (atomic_inc_and_test(&priv->hw_usecnt)) { |
192 | clk_enable(priv->clk); | 249 | pm_runtime_get_sync(priv->dev); |
193 | if (priv->dot_clk) | 250 | if (priv->dot_clk) |
194 | clk_enable(priv->dot_clk); | 251 | clk_enable(priv->dot_clk); |
195 | } | 252 | } |
@@ -197,16 +254,12 @@ static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv *priv) | |||
197 | 254 | ||
198 | static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv *priv) | 255 | static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv *priv) |
199 | { | 256 | { |
200 | if (atomic_sub_return(1, &priv->clk_usecnt) == -1) { | 257 | if (atomic_sub_return(1, &priv->hw_usecnt) == -1) { |
201 | if (priv->dot_clk) | 258 | if (priv->dot_clk) |
202 | clk_disable(priv->dot_clk); | 259 | clk_disable(priv->dot_clk); |
203 | clk_disable(priv->clk); | 260 | pm_runtime_put(priv->dev); |
204 | } | 261 | } |
205 | } | 262 | } |
206 | #else | ||
207 | static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv *priv) {} | ||
208 | static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv *priv) {} | ||
209 | #endif | ||
210 | 263 | ||
211 | static int sh_mobile_lcdc_sginit(struct fb_info *info, | 264 | static int sh_mobile_lcdc_sginit(struct fb_info *info, |
212 | struct list_head *pagelist) | 265 | struct list_head *pagelist) |
@@ -255,30 +308,52 @@ static irqreturn_t sh_mobile_lcdc_irq(int irq, void *data) | |||
255 | struct sh_mobile_lcdc_priv *priv = data; | 308 | struct sh_mobile_lcdc_priv *priv = data; |
256 | struct sh_mobile_lcdc_chan *ch; | 309 | struct sh_mobile_lcdc_chan *ch; |
257 | unsigned long tmp; | 310 | unsigned long tmp; |
311 | unsigned long ldintr; | ||
258 | int is_sub; | 312 | int is_sub; |
259 | int k; | 313 | int k; |
260 | 314 | ||
261 | /* acknowledge interrupt */ | 315 | /* acknowledge interrupt */ |
262 | tmp = lcdc_read(priv, _LDINTR); | 316 | ldintr = tmp = lcdc_read(priv, _LDINTR); |
263 | tmp &= 0xffffff00; /* mask in high 24 bits */ | 317 | /* |
264 | tmp |= 0x000000ff ^ LDINTR_FS; /* status in low 8 */ | 318 | * disable further VSYNC End IRQs, preserve all other enabled IRQs, |
319 | * write 0 to bits 0-6 to ack all triggered IRQs. | ||
320 | */ | ||
321 | tmp &= 0xffffff00 & ~LDINTR_VEE; | ||
265 | lcdc_write(priv, _LDINTR, tmp); | 322 | lcdc_write(priv, _LDINTR, tmp); |
266 | 323 | ||
267 | /* figure out if this interrupt is for main or sub lcd */ | 324 | /* figure out if this interrupt is for main or sub lcd */ |
268 | is_sub = (lcdc_read(priv, _LDSR) & (1 << 10)) ? 1 : 0; | 325 | is_sub = (lcdc_read(priv, _LDSR) & (1 << 10)) ? 1 : 0; |
269 | 326 | ||
270 | /* wake up channel and disable clocks*/ | 327 | /* wake up channel and disable clocks */ |
271 | for (k = 0; k < ARRAY_SIZE(priv->ch); k++) { | 328 | for (k = 0; k < ARRAY_SIZE(priv->ch); k++) { |
272 | ch = &priv->ch[k]; | 329 | ch = &priv->ch[k]; |
273 | 330 | ||
274 | if (!ch->enabled) | 331 | if (!ch->enabled) |
275 | continue; | 332 | continue; |
276 | 333 | ||
277 | if (is_sub == lcdc_chan_is_sublcd(ch)) { | 334 | /* Frame Start */ |
278 | ch->frame_end = 1; | 335 | if (ldintr & LDINTR_FS) { |
279 | wake_up(&ch->frame_end_wait); | 336 | if (is_sub == lcdc_chan_is_sublcd(ch)) { |
337 | ch->frame_end = 1; | ||
338 | wake_up(&ch->frame_end_wait); | ||
280 | 339 | ||
281 | sh_mobile_lcdc_clk_off(priv); | 340 | sh_mobile_lcdc_clk_off(priv); |
341 | } | ||
342 | } | ||
343 | |||
344 | /* VSYNC End */ | ||
345 | if (ldintr & LDINTR_VES) { | ||
346 | unsigned long ldrcntr = lcdc_read(priv, _LDRCNTR); | ||
347 | /* Set the source address for the next refresh */ | ||
348 | lcdc_write_chan_mirror(ch, LDSA1R, ch->dma_handle + | ||
349 | ch->new_pan_offset); | ||
350 | if (lcdc_chan_is_sublcd(ch)) | ||
351 | lcdc_write(ch->lcdc, _LDRCNTR, | ||
352 | ldrcntr ^ LDRCNTR_SRS); | ||
353 | else | ||
354 | lcdc_write(ch->lcdc, _LDRCNTR, | ||
355 | ldrcntr ^ LDRCNTR_MRS); | ||
356 | ch->pan_offset = ch->new_pan_offset; | ||
282 | } | 357 | } |
283 | } | 358 | } |
284 | 359 | ||
@@ -520,7 +595,6 @@ static void sh_mobile_lcdc_stop(struct sh_mobile_lcdc_priv *priv) | |||
520 | board_cfg = &ch->cfg.board_cfg; | 595 | board_cfg = &ch->cfg.board_cfg; |
521 | if (board_cfg->display_off) | 596 | if (board_cfg->display_off) |
522 | board_cfg->display_off(board_cfg->board_data); | 597 | board_cfg->display_off(board_cfg->board_data); |
523 | |||
524 | } | 598 | } |
525 | 599 | ||
526 | /* stop the lcdc */ | 600 | /* stop the lcdc */ |
@@ -579,9 +653,6 @@ static int sh_mobile_lcdc_setup_clocks(struct platform_device *pdev, | |||
579 | int clock_source, | 653 | int clock_source, |
580 | struct sh_mobile_lcdc_priv *priv) | 654 | struct sh_mobile_lcdc_priv *priv) |
581 | { | 655 | { |
582 | #ifdef CONFIG_HAVE_CLK | ||
583 | char clk_name[8]; | ||
584 | #endif | ||
585 | char *str; | 656 | char *str; |
586 | int icksel; | 657 | int icksel; |
587 | 658 | ||
@@ -595,25 +666,21 @@ static int sh_mobile_lcdc_setup_clocks(struct platform_device *pdev, | |||
595 | 666 | ||
596 | priv->lddckr = icksel << 16; | 667 | priv->lddckr = icksel << 16; |
597 | 668 | ||
598 | #ifdef CONFIG_HAVE_CLK | ||
599 | atomic_set(&priv->clk_usecnt, -1); | ||
600 | snprintf(clk_name, sizeof(clk_name), "lcdc%d", pdev->id); | ||
601 | priv->clk = clk_get(&pdev->dev, clk_name); | ||
602 | if (IS_ERR(priv->clk)) { | ||
603 | dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name); | ||
604 | return PTR_ERR(priv->clk); | ||
605 | } | ||
606 | |||
607 | if (str) { | 669 | if (str) { |
608 | priv->dot_clk = clk_get(&pdev->dev, str); | 670 | priv->dot_clk = clk_get(&pdev->dev, str); |
609 | if (IS_ERR(priv->dot_clk)) { | 671 | if (IS_ERR(priv->dot_clk)) { |
610 | dev_err(&pdev->dev, "cannot get dot clock %s\n", str); | 672 | dev_err(&pdev->dev, "cannot get dot clock %s\n", str); |
611 | clk_put(priv->clk); | ||
612 | return PTR_ERR(priv->dot_clk); | 673 | return PTR_ERR(priv->dot_clk); |
613 | } | 674 | } |
614 | } | 675 | } |
615 | #endif | 676 | atomic_set(&priv->hw_usecnt, -1); |
616 | 677 | ||
678 | /* Runtime PM support involves two step for this driver: | ||
679 | * 1) Enable Runtime PM | ||
680 | * 2) Force Runtime PM Resume since hardware is accessed from probe() | ||
681 | */ | ||
682 | pm_runtime_enable(priv->dev); | ||
683 | pm_runtime_resume(priv->dev); | ||
617 | return 0; | 684 | return 0; |
618 | } | 685 | } |
619 | 686 | ||
@@ -646,6 +713,9 @@ static struct fb_fix_screeninfo sh_mobile_lcdc_fix = { | |||
646 | .type = FB_TYPE_PACKED_PIXELS, | 713 | .type = FB_TYPE_PACKED_PIXELS, |
647 | .visual = FB_VISUAL_TRUECOLOR, | 714 | .visual = FB_VISUAL_TRUECOLOR, |
648 | .accel = FB_ACCEL_NONE, | 715 | .accel = FB_ACCEL_NONE, |
716 | .xpanstep = 0, | ||
717 | .ypanstep = 1, | ||
718 | .ywrapstep = 0, | ||
649 | }; | 719 | }; |
650 | 720 | ||
651 | static void sh_mobile_lcdc_fillrect(struct fb_info *info, | 721 | static void sh_mobile_lcdc_fillrect(struct fb_info *info, |
@@ -669,13 +739,38 @@ static void sh_mobile_lcdc_imageblit(struct fb_info *info, | |||
669 | sh_mobile_lcdc_deferred_io_touch(info); | 739 | sh_mobile_lcdc_deferred_io_touch(info); |
670 | } | 740 | } |
671 | 741 | ||
742 | static int sh_mobile_fb_pan_display(struct fb_var_screeninfo *var, | ||
743 | struct fb_info *info) | ||
744 | { | ||
745 | struct sh_mobile_lcdc_chan *ch = info->par; | ||
746 | |||
747 | if (info->var.xoffset == var->xoffset && | ||
748 | info->var.yoffset == var->yoffset) | ||
749 | return 0; /* No change, do nothing */ | ||
750 | |||
751 | ch->new_pan_offset = (var->yoffset * info->fix.line_length) + | ||
752 | (var->xoffset * (info->var.bits_per_pixel / 8)); | ||
753 | |||
754 | if (ch->new_pan_offset != ch->pan_offset) { | ||
755 | unsigned long ldintr; | ||
756 | ldintr = lcdc_read(ch->lcdc, _LDINTR); | ||
757 | ldintr |= LDINTR_VEE; | ||
758 | lcdc_write(ch->lcdc, _LDINTR, ldintr); | ||
759 | sh_mobile_lcdc_deferred_io_touch(info); | ||
760 | } | ||
761 | |||
762 | return 0; | ||
763 | } | ||
764 | |||
672 | static struct fb_ops sh_mobile_lcdc_ops = { | 765 | static struct fb_ops sh_mobile_lcdc_ops = { |
766 | .owner = THIS_MODULE, | ||
673 | .fb_setcolreg = sh_mobile_lcdc_setcolreg, | 767 | .fb_setcolreg = sh_mobile_lcdc_setcolreg, |
674 | .fb_read = fb_sys_read, | 768 | .fb_read = fb_sys_read, |
675 | .fb_write = fb_sys_write, | 769 | .fb_write = fb_sys_write, |
676 | .fb_fillrect = sh_mobile_lcdc_fillrect, | 770 | .fb_fillrect = sh_mobile_lcdc_fillrect, |
677 | .fb_copyarea = sh_mobile_lcdc_copyarea, | 771 | .fb_copyarea = sh_mobile_lcdc_copyarea, |
678 | .fb_imageblit = sh_mobile_lcdc_imageblit, | 772 | .fb_imageblit = sh_mobile_lcdc_imageblit, |
773 | .fb_pan_display = sh_mobile_fb_pan_display, | ||
679 | }; | 774 | }; |
680 | 775 | ||
681 | static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo *var, int bpp) | 776 | static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo *var, int bpp) |
@@ -731,9 +826,59 @@ static int sh_mobile_lcdc_resume(struct device *dev) | |||
731 | return sh_mobile_lcdc_start(platform_get_drvdata(pdev)); | 826 | return sh_mobile_lcdc_start(platform_get_drvdata(pdev)); |
732 | } | 827 | } |
733 | 828 | ||
829 | static int sh_mobile_lcdc_runtime_suspend(struct device *dev) | ||
830 | { | ||
831 | struct platform_device *pdev = to_platform_device(dev); | ||
832 | struct sh_mobile_lcdc_priv *p = platform_get_drvdata(pdev); | ||
833 | struct sh_mobile_lcdc_chan *ch; | ||
834 | int k, n; | ||
835 | |||
836 | /* save per-channel registers */ | ||
837 | for (k = 0; k < ARRAY_SIZE(p->ch); k++) { | ||
838 | ch = &p->ch[k]; | ||
839 | if (!ch->enabled) | ||
840 | continue; | ||
841 | for (n = 0; n < NR_CH_REGS; n++) | ||
842 | ch->saved_ch_regs[n] = lcdc_read_chan(ch, n); | ||
843 | } | ||
844 | |||
845 | /* save shared registers */ | ||
846 | for (n = 0; n < NR_SHARED_REGS; n++) | ||
847 | p->saved_shared_regs[n] = lcdc_read(p, lcdc_shared_regs[n]); | ||
848 | |||
849 | /* turn off LCDC hardware */ | ||
850 | lcdc_write(p, _LDCNT1R, 0); | ||
851 | return 0; | ||
852 | } | ||
853 | |||
854 | static int sh_mobile_lcdc_runtime_resume(struct device *dev) | ||
855 | { | ||
856 | struct platform_device *pdev = to_platform_device(dev); | ||
857 | struct sh_mobile_lcdc_priv *p = platform_get_drvdata(pdev); | ||
858 | struct sh_mobile_lcdc_chan *ch; | ||
859 | int k, n; | ||
860 | |||
861 | /* restore per-channel registers */ | ||
862 | for (k = 0; k < ARRAY_SIZE(p->ch); k++) { | ||
863 | ch = &p->ch[k]; | ||
864 | if (!ch->enabled) | ||
865 | continue; | ||
866 | for (n = 0; n < NR_CH_REGS; n++) | ||
867 | lcdc_write_chan(ch, n, ch->saved_ch_regs[n]); | ||
868 | } | ||
869 | |||
870 | /* restore shared registers */ | ||
871 | for (n = 0; n < NR_SHARED_REGS; n++) | ||
872 | lcdc_write(p, lcdc_shared_regs[n], p->saved_shared_regs[n]); | ||
873 | |||
874 | return 0; | ||
875 | } | ||
876 | |||
734 | static struct dev_pm_ops sh_mobile_lcdc_dev_pm_ops = { | 877 | static struct dev_pm_ops sh_mobile_lcdc_dev_pm_ops = { |
735 | .suspend = sh_mobile_lcdc_suspend, | 878 | .suspend = sh_mobile_lcdc_suspend, |
736 | .resume = sh_mobile_lcdc_resume, | 879 | .resume = sh_mobile_lcdc_resume, |
880 | .runtime_suspend = sh_mobile_lcdc_runtime_suspend, | ||
881 | .runtime_resume = sh_mobile_lcdc_runtime_resume, | ||
737 | }; | 882 | }; |
738 | 883 | ||
739 | static int sh_mobile_lcdc_remove(struct platform_device *pdev); | 884 | static int sh_mobile_lcdc_remove(struct platform_device *pdev); |
@@ -778,6 +923,7 @@ static int __init sh_mobile_lcdc_probe(struct platform_device *pdev) | |||
778 | } | 923 | } |
779 | 924 | ||
780 | priv->irq = i; | 925 | priv->irq = i; |
926 | priv->dev = &pdev->dev; | ||
781 | platform_set_drvdata(pdev, priv); | 927 | platform_set_drvdata(pdev, priv); |
782 | pdata = pdev->dev.platform_data; | 928 | pdata = pdev->dev.platform_data; |
783 | 929 | ||
@@ -792,6 +938,8 @@ static int __init sh_mobile_lcdc_probe(struct platform_device *pdev) | |||
792 | goto err1; | 938 | goto err1; |
793 | } | 939 | } |
794 | init_waitqueue_head(&priv->ch[i].frame_end_wait); | 940 | init_waitqueue_head(&priv->ch[i].frame_end_wait); |
941 | priv->ch[j].pan_offset = 0; | ||
942 | priv->ch[j].new_pan_offset = 0; | ||
795 | 943 | ||
796 | switch (pdata->ch[i].chan) { | 944 | switch (pdata->ch[i].chan) { |
797 | case LCDC_CHAN_MAINLCD: | 945 | case LCDC_CHAN_MAINLCD: |
@@ -834,7 +982,9 @@ static int __init sh_mobile_lcdc_probe(struct platform_device *pdev) | |||
834 | info = priv->ch[i].info; | 982 | info = priv->ch[i].info; |
835 | info->fbops = &sh_mobile_lcdc_ops; | 983 | info->fbops = &sh_mobile_lcdc_ops; |
836 | info->var.xres = info->var.xres_virtual = cfg->lcd_cfg.xres; | 984 | info->var.xres = info->var.xres_virtual = cfg->lcd_cfg.xres; |
837 | info->var.yres = info->var.yres_virtual = cfg->lcd_cfg.yres; | 985 | info->var.yres = cfg->lcd_cfg.yres; |
986 | /* Default Y virtual resolution is 2x panel size */ | ||
987 | info->var.yres_virtual = info->var.yres * 2; | ||
838 | info->var.width = cfg->lcd_size_cfg.width; | 988 | info->var.width = cfg->lcd_size_cfg.width; |
839 | info->var.height = cfg->lcd_size_cfg.height; | 989 | info->var.height = cfg->lcd_size_cfg.height; |
840 | info->var.activate = FB_ACTIVATE_NOW; | 990 | info->var.activate = FB_ACTIVATE_NOW; |
@@ -844,7 +994,8 @@ static int __init sh_mobile_lcdc_probe(struct platform_device *pdev) | |||
844 | 994 | ||
845 | info->fix = sh_mobile_lcdc_fix; | 995 | info->fix = sh_mobile_lcdc_fix; |
846 | info->fix.line_length = cfg->lcd_cfg.xres * (cfg->bpp / 8); | 996 | info->fix.line_length = cfg->lcd_cfg.xres * (cfg->bpp / 8); |
847 | info->fix.smem_len = info->fix.line_length * cfg->lcd_cfg.yres; | 997 | info->fix.smem_len = info->fix.line_length * |
998 | info->var.yres_virtual; | ||
848 | 999 | ||
849 | buf = dma_alloc_coherent(&pdev->dev, info->fix.smem_len, | 1000 | buf = dma_alloc_coherent(&pdev->dev, info->fix.smem_len, |
850 | &priv->ch[i].dma_handle, GFP_KERNEL); | 1001 | &priv->ch[i].dma_handle, GFP_KERNEL); |
@@ -947,11 +1098,10 @@ static int sh_mobile_lcdc_remove(struct platform_device *pdev) | |||
947 | framebuffer_release(info); | 1098 | framebuffer_release(info); |
948 | } | 1099 | } |
949 | 1100 | ||
950 | #ifdef CONFIG_HAVE_CLK | ||
951 | if (priv->dot_clk) | 1101 | if (priv->dot_clk) |
952 | clk_put(priv->dot_clk); | 1102 | clk_put(priv->dot_clk); |
953 | clk_put(priv->clk); | 1103 | |
954 | #endif | 1104 | pm_runtime_disable(priv->dev); |
955 | 1105 | ||
956 | if (priv->base) | 1106 | if (priv->base) |
957 | iounmap(priv->base); | 1107 | iounmap(priv->base); |
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index b1ccc04f3c9a..ff3eb8ff6bd7 100644 --- a/drivers/watchdog/Kconfig +++ b/drivers/watchdog/Kconfig | |||
@@ -55,6 +55,13 @@ config SOFT_WATCHDOG | |||
55 | To compile this driver as a module, choose M here: the | 55 | To compile this driver as a module, choose M here: the |
56 | module will be called softdog. | 56 | module will be called softdog. |
57 | 57 | ||
58 | config WM831X_WATCHDOG | ||
59 | tristate "WM831x watchdog" | ||
60 | depends on MFD_WM831X | ||
61 | help | ||
62 | Support for the watchdog in the WM831x AudioPlus PMICs. When | ||
63 | the watchdog triggers the system will be reset. | ||
64 | |||
58 | config WM8350_WATCHDOG | 65 | config WM8350_WATCHDOG |
59 | tristate "WM8350 watchdog" | 66 | tristate "WM8350 watchdog" |
60 | depends on MFD_WM8350 | 67 | depends on MFD_WM8350 |
@@ -266,6 +273,15 @@ config STMP3XXX_WATCHDOG | |||
266 | To compile this driver as a module, choose M here: the | 273 | To compile this driver as a module, choose M here: the |
267 | module will be called stmp3xxx_wdt. | 274 | module will be called stmp3xxx_wdt. |
268 | 275 | ||
276 | config NUC900_WATCHDOG | ||
277 | tristate "Nuvoton NUC900 watchdog" | ||
278 | depends on ARCH_W90X900 | ||
279 | help | ||
280 | Say Y here if to include support for the watchdog timer | ||
281 | for the Nuvoton NUC900 series SoCs. | ||
282 | To compile this driver as a module, choose M here: the | ||
283 | module will be called nuc900_wdt. | ||
284 | |||
269 | # AVR32 Architecture | 285 | # AVR32 Architecture |
270 | 286 | ||
271 | config AT32AP700X_WDT | 287 | config AT32AP700X_WDT |
@@ -369,6 +385,28 @@ config SC520_WDT | |||
369 | You can compile this driver directly into the kernel, or use | 385 | You can compile this driver directly into the kernel, or use |
370 | it as a module. The module will be called sc520_wdt. | 386 | it as a module. The module will be called sc520_wdt. |
371 | 387 | ||
388 | config SBC_FITPC2_WATCHDOG | ||
389 | tristate "Compulab SBC-FITPC2 watchdog" | ||
390 | depends on X86 | ||
391 | ---help--- | ||
392 | This is the driver for the built-in watchdog timer on the fit-PC2 | ||
393 | Single-board computer made by Compulab. | ||
394 | |||
395 | It`s possible to enable watchdog timer either from BIOS (F2) or from booted Linux. | ||
396 | When "Watchdog Timer Value" enabled one can set 31-255 s operational range. | ||
397 | |||
398 | Entering BIOS setup temporary disables watchdog operation regardless to current state, | ||
399 | so system will not be restarted while user in BIOS setup. | ||
400 | |||
401 | Once watchdog was enabled the system will be restarted every | ||
402 | "Watchdog Timer Value" period, so to prevent it user can restart or | ||
403 | disable the watchdog. | ||
404 | |||
405 | To compile this driver as a module, choose M here: the | ||
406 | module will be called sbc_fitpc2_wdt. | ||
407 | |||
408 | Most people will say N. | ||
409 | |||
372 | config EUROTECH_WDT | 410 | config EUROTECH_WDT |
373 | tristate "Eurotech CPU-1220/1410 Watchdog Timer" | 411 | tristate "Eurotech CPU-1220/1410 Watchdog Timer" |
374 | depends on X86 | 412 | depends on X86 |
diff --git a/drivers/watchdog/Makefile b/drivers/watchdog/Makefile index 3d774294a2b7..348b3b862c99 100644 --- a/drivers/watchdog/Makefile +++ b/drivers/watchdog/Makefile | |||
@@ -44,6 +44,7 @@ obj-$(CONFIG_DAVINCI_WATCHDOG) += davinci_wdt.o | |||
44 | obj-$(CONFIG_ORION_WATCHDOG) += orion_wdt.o | 44 | obj-$(CONFIG_ORION_WATCHDOG) += orion_wdt.o |
45 | obj-$(CONFIG_COH901327_WATCHDOG) += coh901327_wdt.o | 45 | obj-$(CONFIG_COH901327_WATCHDOG) += coh901327_wdt.o |
46 | obj-$(CONFIG_STMP3XXX_WATCHDOG) += stmp3xxx_wdt.o | 46 | obj-$(CONFIG_STMP3XXX_WATCHDOG) += stmp3xxx_wdt.o |
47 | obj-$(CONFIG_NUC900_WATCHDOG) += nuc900_wdt.o | ||
47 | 48 | ||
48 | # AVR32 Architecture | 49 | # AVR32 Architecture |
49 | obj-$(CONFIG_AT32AP700X_WDT) += at32ap700x_wdt.o | 50 | obj-$(CONFIG_AT32AP700X_WDT) += at32ap700x_wdt.o |
@@ -64,6 +65,7 @@ obj-$(CONFIG_ALIM1535_WDT) += alim1535_wdt.o | |||
64 | obj-$(CONFIG_ALIM7101_WDT) += alim7101_wdt.o | 65 | obj-$(CONFIG_ALIM7101_WDT) += alim7101_wdt.o |
65 | obj-$(CONFIG_GEODE_WDT) += geodewdt.o | 66 | obj-$(CONFIG_GEODE_WDT) += geodewdt.o |
66 | obj-$(CONFIG_SC520_WDT) += sc520_wdt.o | 67 | obj-$(CONFIG_SC520_WDT) += sc520_wdt.o |
68 | obj-$(CONFIG_SBC_FITPC2_WATCHDOG) += sbc_fitpc2_wdt.o | ||
67 | obj-$(CONFIG_EUROTECH_WDT) += eurotechwdt.o | 69 | obj-$(CONFIG_EUROTECH_WDT) += eurotechwdt.o |
68 | obj-$(CONFIG_IB700_WDT) += ib700wdt.o | 70 | obj-$(CONFIG_IB700_WDT) += ib700wdt.o |
69 | obj-$(CONFIG_IBMASR) += ibmasr.o | 71 | obj-$(CONFIG_IBMASR) += ibmasr.o |
@@ -139,5 +141,6 @@ obj-$(CONFIG_WATCHDOG_CP1XXX) += cpwd.o | |||
139 | # XTENSA Architecture | 141 | # XTENSA Architecture |
140 | 142 | ||
141 | # Architecture Independant | 143 | # Architecture Independant |
144 | obj-$(CONFIG_WM831X_WATCHDOG) += wm831x_wdt.o | ||
142 | obj-$(CONFIG_WM8350_WATCHDOG) += wm8350_wdt.o | 145 | obj-$(CONFIG_WM8350_WATCHDOG) += wm8350_wdt.o |
143 | obj-$(CONFIG_SOFT_WATCHDOG) += softdog.o | 146 | obj-$(CONFIG_SOFT_WATCHDOG) += softdog.o |
diff --git a/drivers/watchdog/ar7_wdt.c b/drivers/watchdog/ar7_wdt.c index 2f8643efe92c..2e94b71b20d9 100644 --- a/drivers/watchdog/ar7_wdt.c +++ b/drivers/watchdog/ar7_wdt.c | |||
@@ -28,9 +28,8 @@ | |||
28 | #include <linux/errno.h> | 28 | #include <linux/errno.h> |
29 | #include <linux/init.h> | 29 | #include <linux/init.h> |
30 | #include <linux/miscdevice.h> | 30 | #include <linux/miscdevice.h> |
31 | #include <linux/platform_device.h> | ||
31 | #include <linux/watchdog.h> | 32 | #include <linux/watchdog.h> |
32 | #include <linux/notifier.h> | ||
33 | #include <linux/reboot.h> | ||
34 | #include <linux/fs.h> | 33 | #include <linux/fs.h> |
35 | #include <linux/ioport.h> | 34 | #include <linux/ioport.h> |
36 | #include <linux/io.h> | 35 | #include <linux/io.h> |
@@ -76,24 +75,10 @@ static unsigned expect_close; | |||
76 | /* XXX currently fixed, allows max margin ~68.72 secs */ | 75 | /* XXX currently fixed, allows max margin ~68.72 secs */ |
77 | #define prescale_value 0xffff | 76 | #define prescale_value 0xffff |
78 | 77 | ||
79 | /* Offset of the WDT registers */ | 78 | /* Resource of the WDT registers */ |
80 | static unsigned long ar7_regs_wdt; | 79 | static struct resource *ar7_regs_wdt; |
81 | /* Pointer to the remapped WDT IO space */ | 80 | /* Pointer to the remapped WDT IO space */ |
82 | static struct ar7_wdt *ar7_wdt; | 81 | static struct ar7_wdt *ar7_wdt; |
83 | static void ar7_wdt_get_regs(void) | ||
84 | { | ||
85 | u16 chip_id = ar7_chip_id(); | ||
86 | switch (chip_id) { | ||
87 | case AR7_CHIP_7100: | ||
88 | case AR7_CHIP_7200: | ||
89 | ar7_regs_wdt = AR7_REGS_WDT; | ||
90 | break; | ||
91 | default: | ||
92 | ar7_regs_wdt = UR8_REGS_WDT; | ||
93 | break; | ||
94 | } | ||
95 | } | ||
96 | |||
97 | 82 | ||
98 | static void ar7_wdt_kick(u32 value) | 83 | static void ar7_wdt_kick(u32 value) |
99 | { | 84 | { |
@@ -202,20 +187,6 @@ static int ar7_wdt_release(struct inode *inode, struct file *file) | |||
202 | return 0; | 187 | return 0; |
203 | } | 188 | } |
204 | 189 | ||
205 | static int ar7_wdt_notify_sys(struct notifier_block *this, | ||
206 | unsigned long code, void *unused) | ||
207 | { | ||
208 | if (code == SYS_HALT || code == SYS_POWER_OFF) | ||
209 | if (!nowayout) | ||
210 | ar7_wdt_disable_wdt(); | ||
211 | |||
212 | return NOTIFY_DONE; | ||
213 | } | ||
214 | |||
215 | static struct notifier_block ar7_wdt_notifier = { | ||
216 | .notifier_call = ar7_wdt_notify_sys, | ||
217 | }; | ||
218 | |||
219 | static ssize_t ar7_wdt_write(struct file *file, const char *data, | 190 | static ssize_t ar7_wdt_write(struct file *file, const char *data, |
220 | size_t len, loff_t *ppos) | 191 | size_t len, loff_t *ppos) |
221 | { | 192 | { |
@@ -299,56 +270,86 @@ static struct miscdevice ar7_wdt_miscdev = { | |||
299 | .fops = &ar7_wdt_fops, | 270 | .fops = &ar7_wdt_fops, |
300 | }; | 271 | }; |
301 | 272 | ||
302 | static int __init ar7_wdt_init(void) | 273 | static int __devinit ar7_wdt_probe(struct platform_device *pdev) |
303 | { | 274 | { |
304 | int rc; | 275 | int rc; |
305 | 276 | ||
306 | spin_lock_init(&wdt_lock); | 277 | spin_lock_init(&wdt_lock); |
307 | 278 | ||
308 | ar7_wdt_get_regs(); | 279 | ar7_regs_wdt = |
280 | platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs"); | ||
281 | if (!ar7_regs_wdt) { | ||
282 | printk(KERN_ERR DRVNAME ": could not get registers resource\n"); | ||
283 | rc = -ENODEV; | ||
284 | goto out; | ||
285 | } | ||
309 | 286 | ||
310 | if (!request_mem_region(ar7_regs_wdt, sizeof(struct ar7_wdt), | 287 | if (!request_mem_region(ar7_regs_wdt->start, |
311 | LONGNAME)) { | 288 | resource_size(ar7_regs_wdt), LONGNAME)) { |
312 | printk(KERN_WARNING DRVNAME ": watchdog I/O region busy\n"); | 289 | printk(KERN_WARNING DRVNAME ": watchdog I/O region busy\n"); |
313 | return -EBUSY; | 290 | rc = -EBUSY; |
291 | goto out; | ||
314 | } | 292 | } |
315 | 293 | ||
316 | ar7_wdt = (struct ar7_wdt *) | 294 | ar7_wdt = ioremap(ar7_regs_wdt->start, resource_size(ar7_regs_wdt)); |
317 | ioremap(ar7_regs_wdt, sizeof(struct ar7_wdt)); | 295 | if (!ar7_wdt) { |
296 | printk(KERN_ERR DRVNAME ": could not ioremap registers\n"); | ||
297 | rc = -ENXIO; | ||
298 | goto out_mem_region; | ||
299 | } | ||
318 | 300 | ||
319 | ar7_wdt_disable_wdt(); | 301 | ar7_wdt_disable_wdt(); |
320 | ar7_wdt_prescale(prescale_value); | 302 | ar7_wdt_prescale(prescale_value); |
321 | ar7_wdt_update_margin(margin); | 303 | ar7_wdt_update_margin(margin); |
322 | 304 | ||
323 | rc = register_reboot_notifier(&ar7_wdt_notifier); | ||
324 | if (rc) { | ||
325 | printk(KERN_ERR DRVNAME | ||
326 | ": unable to register reboot notifier\n"); | ||
327 | goto out_alloc; | ||
328 | } | ||
329 | |||
330 | rc = misc_register(&ar7_wdt_miscdev); | 305 | rc = misc_register(&ar7_wdt_miscdev); |
331 | if (rc) { | 306 | if (rc) { |
332 | printk(KERN_ERR DRVNAME ": unable to register misc device\n"); | 307 | printk(KERN_ERR DRVNAME ": unable to register misc device\n"); |
333 | goto out_register; | 308 | goto out_alloc; |
334 | } | 309 | } |
335 | goto out; | 310 | goto out; |
336 | 311 | ||
337 | out_register: | ||
338 | unregister_reboot_notifier(&ar7_wdt_notifier); | ||
339 | out_alloc: | 312 | out_alloc: |
340 | iounmap(ar7_wdt); | 313 | iounmap(ar7_wdt); |
341 | release_mem_region(ar7_regs_wdt, sizeof(struct ar7_wdt)); | 314 | out_mem_region: |
315 | release_mem_region(ar7_regs_wdt->start, resource_size(ar7_regs_wdt)); | ||
342 | out: | 316 | out: |
343 | return rc; | 317 | return rc; |
344 | } | 318 | } |
345 | 319 | ||
346 | static void __exit ar7_wdt_cleanup(void) | 320 | static int __devexit ar7_wdt_remove(struct platform_device *pdev) |
347 | { | 321 | { |
348 | misc_deregister(&ar7_wdt_miscdev); | 322 | misc_deregister(&ar7_wdt_miscdev); |
349 | unregister_reboot_notifier(&ar7_wdt_notifier); | ||
350 | iounmap(ar7_wdt); | 323 | iounmap(ar7_wdt); |
351 | release_mem_region(ar7_regs_wdt, sizeof(struct ar7_wdt)); | 324 | release_mem_region(ar7_regs_wdt->start, resource_size(ar7_regs_wdt)); |
325 | |||
326 | return 0; | ||
327 | } | ||
328 | |||
329 | static void ar7_wdt_shutdown(struct platform_device *pdev) | ||
330 | { | ||
331 | if (!nowayout) | ||
332 | ar7_wdt_disable_wdt(); | ||
333 | } | ||
334 | |||
335 | static struct platform_driver ar7_wdt_driver = { | ||
336 | .probe = ar7_wdt_probe, | ||
337 | .remove = __devexit_p(ar7_wdt_remove), | ||
338 | .shutdown = ar7_wdt_shutdown, | ||
339 | .driver = { | ||
340 | .owner = THIS_MODULE, | ||
341 | .name = "ar7_wdt", | ||
342 | }, | ||
343 | }; | ||
344 | |||
345 | static int __init ar7_wdt_init(void) | ||
346 | { | ||
347 | return platform_driver_register(&ar7_wdt_driver); | ||
348 | } | ||
349 | |||
350 | static void __exit ar7_wdt_cleanup(void) | ||
351 | { | ||
352 | platform_driver_unregister(&ar7_wdt_driver); | ||
352 | } | 353 | } |
353 | 354 | ||
354 | module_init(ar7_wdt_init); | 355 | module_init(ar7_wdt_init); |
diff --git a/drivers/watchdog/booke_wdt.c b/drivers/watchdog/booke_wdt.c index 225398fd5049..e8380ef65c1c 100644 --- a/drivers/watchdog/booke_wdt.c +++ b/drivers/watchdog/booke_wdt.c | |||
@@ -22,6 +22,8 @@ | |||
22 | 22 | ||
23 | #include <asm/reg_booke.h> | 23 | #include <asm/reg_booke.h> |
24 | #include <asm/system.h> | 24 | #include <asm/system.h> |
25 | #include <asm/time.h> | ||
26 | #include <asm/div64.h> | ||
25 | 27 | ||
26 | /* If the kernel parameter wdt=1, the watchdog will be enabled at boot. | 28 | /* If the kernel parameter wdt=1, the watchdog will be enabled at boot. |
27 | * Also, the wdt_period sets the watchdog timer period timeout. | 29 | * Also, the wdt_period sets the watchdog timer period timeout. |
@@ -32,7 +34,7 @@ | |||
32 | */ | 34 | */ |
33 | 35 | ||
34 | #ifdef CONFIG_FSL_BOOKE | 36 | #ifdef CONFIG_FSL_BOOKE |
35 | #define WDT_PERIOD_DEFAULT 63 /* Ex. wdt_period=28 bus=333Mhz,reset=~40sec */ | 37 | #define WDT_PERIOD_DEFAULT 38 /* Ex. wdt_period=28 bus=333Mhz,reset=~40sec */ |
36 | #else | 38 | #else |
37 | #define WDT_PERIOD_DEFAULT 3 /* Refer to the PPC40x and PPC4xx manuals */ | 39 | #define WDT_PERIOD_DEFAULT 3 /* Refer to the PPC40x and PPC4xx manuals */ |
38 | #endif /* for timing information */ | 40 | #endif /* for timing information */ |
@@ -41,7 +43,7 @@ u32 booke_wdt_enabled; | |||
41 | u32 booke_wdt_period = WDT_PERIOD_DEFAULT; | 43 | u32 booke_wdt_period = WDT_PERIOD_DEFAULT; |
42 | 44 | ||
43 | #ifdef CONFIG_FSL_BOOKE | 45 | #ifdef CONFIG_FSL_BOOKE |
44 | #define WDTP(x) ((((63-x)&0x3)<<30)|(((63-x)&0x3c)<<15)) | 46 | #define WDTP(x) ((((x)&0x3)<<30)|(((x)&0x3c)<<15)) |
45 | #define WDTP_MASK (WDTP(0)) | 47 | #define WDTP_MASK (WDTP(0)) |
46 | #else | 48 | #else |
47 | #define WDTP(x) (TCR_WP(x)) | 49 | #define WDTP(x) (TCR_WP(x)) |
@@ -50,6 +52,45 @@ u32 booke_wdt_period = WDT_PERIOD_DEFAULT; | |||
50 | 52 | ||
51 | static DEFINE_SPINLOCK(booke_wdt_lock); | 53 | static DEFINE_SPINLOCK(booke_wdt_lock); |
52 | 54 | ||
55 | /* For the specified period, determine the number of seconds | ||
56 | * corresponding to the reset time. There will be a watchdog | ||
57 | * exception at approximately 3/5 of this time. | ||
58 | * | ||
59 | * The formula to calculate this is given by: | ||
60 | * 2.5 * (2^(63-period+1)) / timebase_freq | ||
61 | * | ||
62 | * In order to simplify things, we assume that period is | ||
63 | * at least 1. This will still result in a very long timeout. | ||
64 | */ | ||
65 | static unsigned long long period_to_sec(unsigned int period) | ||
66 | { | ||
67 | unsigned long long tmp = 1ULL << (64 - period); | ||
68 | unsigned long tmp2 = ppc_tb_freq; | ||
69 | |||
70 | /* tmp may be a very large number and we don't want to overflow, | ||
71 | * so divide the timebase freq instead of multiplying tmp | ||
72 | */ | ||
73 | tmp2 = tmp2 / 5 * 2; | ||
74 | |||
75 | do_div(tmp, tmp2); | ||
76 | return tmp; | ||
77 | } | ||
78 | |||
79 | /* | ||
80 | * This procedure will find the highest period which will give a timeout | ||
81 | * greater than the one required. e.g. for a bus speed of 66666666 and | ||
82 | * and a parameter of 2 secs, then this procedure will return a value of 38. | ||
83 | */ | ||
84 | static unsigned int sec_to_period(unsigned int secs) | ||
85 | { | ||
86 | unsigned int period; | ||
87 | for (period = 63; period > 0; period--) { | ||
88 | if (period_to_sec(period) >= secs) | ||
89 | return period; | ||
90 | } | ||
91 | return 0; | ||
92 | } | ||
93 | |||
53 | static void __booke_wdt_ping(void *data) | 94 | static void __booke_wdt_ping(void *data) |
54 | { | 95 | { |
55 | mtspr(SPRN_TSR, TSR_ENW|TSR_WIS); | 96 | mtspr(SPRN_TSR, TSR_ENW|TSR_WIS); |
@@ -93,7 +134,7 @@ static long booke_wdt_ioctl(struct file *file, | |||
93 | 134 | ||
94 | switch (cmd) { | 135 | switch (cmd) { |
95 | case WDIOC_GETSUPPORT: | 136 | case WDIOC_GETSUPPORT: |
96 | if (copy_to_user(arg, &ident, sizeof(struct watchdog_info))) | 137 | if (copy_to_user((void *)arg, &ident, sizeof(ident))) |
97 | return -EFAULT; | 138 | return -EFAULT; |
98 | case WDIOC_GETSTATUS: | 139 | case WDIOC_GETSTATUS: |
99 | return put_user(ident.options, p); | 140 | return put_user(ident.options, p); |
@@ -115,8 +156,16 @@ static long booke_wdt_ioctl(struct file *file, | |||
115 | booke_wdt_ping(); | 156 | booke_wdt_ping(); |
116 | return 0; | 157 | return 0; |
117 | case WDIOC_SETTIMEOUT: | 158 | case WDIOC_SETTIMEOUT: |
118 | if (get_user(booke_wdt_period, p)) | 159 | if (get_user(tmp, p)) |
119 | return -EFAULT; | 160 | return -EFAULT; |
161 | #ifdef CONFIG_FSL_BOOKE | ||
162 | /* period of 1 gives the largest possible timeout */ | ||
163 | if (tmp > period_to_sec(1)) | ||
164 | return -EINVAL; | ||
165 | booke_wdt_period = sec_to_period(tmp); | ||
166 | #else | ||
167 | booke_wdt_period = tmp; | ||
168 | #endif | ||
120 | mtspr(SPRN_TCR, (mfspr(SPRN_TCR) & ~WDTP_MASK) | | 169 | mtspr(SPRN_TCR, (mfspr(SPRN_TCR) & ~WDTP_MASK) | |
121 | WDTP(booke_wdt_period)); | 170 | WDTP(booke_wdt_period)); |
122 | return 0; | 171 | return 0; |
diff --git a/drivers/watchdog/coh901327_wdt.c b/drivers/watchdog/coh901327_wdt.c index aec7cefdef21..381026c0bd7b 100644 --- a/drivers/watchdog/coh901327_wdt.c +++ b/drivers/watchdog/coh901327_wdt.c | |||
@@ -110,7 +110,7 @@ static void coh901327_enable(u16 timeout) | |||
110 | * Wait 3 32 kHz cycles for it to take effect | 110 | * Wait 3 32 kHz cycles for it to take effect |
111 | */ | 111 | */ |
112 | freq = clk_get_rate(clk); | 112 | freq = clk_get_rate(clk); |
113 | delay_ns = (1000000000 + freq - 1) / freq; /* Freq to ns and round up */ | 113 | delay_ns = DIV_ROUND_UP(1000000000, freq); /* Freq to ns and round up */ |
114 | delay_ns = 3 * delay_ns; /* Wait 3 cycles */ | 114 | delay_ns = 3 * delay_ns; /* Wait 3 cycles */ |
115 | ndelay(delay_ns); | 115 | ndelay(delay_ns); |
116 | /* Enable the watchdog interrupt */ | 116 | /* Enable the watchdog interrupt */ |
diff --git a/drivers/watchdog/davinci_wdt.c b/drivers/watchdog/davinci_wdt.c index 83e22e7ea4a2..9d7520fa9e9c 100644 --- a/drivers/watchdog/davinci_wdt.c +++ b/drivers/watchdog/davinci_wdt.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/uaccess.h> | 25 | #include <linux/uaccess.h> |
26 | #include <linux/io.h> | 26 | #include <linux/io.h> |
27 | #include <linux/device.h> | 27 | #include <linux/device.h> |
28 | #include <linux/clk.h> | ||
28 | 29 | ||
29 | #define MODULE_NAME "DAVINCI-WDT: " | 30 | #define MODULE_NAME "DAVINCI-WDT: " |
30 | 31 | ||
@@ -69,6 +70,7 @@ static unsigned long wdt_status; | |||
69 | 70 | ||
70 | static struct resource *wdt_mem; | 71 | static struct resource *wdt_mem; |
71 | static void __iomem *wdt_base; | 72 | static void __iomem *wdt_base; |
73 | struct clk *wdt_clk; | ||
72 | 74 | ||
73 | static void wdt_service(void) | 75 | static void wdt_service(void) |
74 | { | 76 | { |
@@ -86,6 +88,9 @@ static void wdt_enable(void) | |||
86 | { | 88 | { |
87 | u32 tgcr; | 89 | u32 tgcr; |
88 | u32 timer_margin; | 90 | u32 timer_margin; |
91 | unsigned long wdt_freq; | ||
92 | |||
93 | wdt_freq = clk_get_rate(wdt_clk); | ||
89 | 94 | ||
90 | spin_lock(&io_lock); | 95 | spin_lock(&io_lock); |
91 | 96 | ||
@@ -99,9 +104,9 @@ static void wdt_enable(void) | |||
99 | iowrite32(0, wdt_base + TIM12); | 104 | iowrite32(0, wdt_base + TIM12); |
100 | iowrite32(0, wdt_base + TIM34); | 105 | iowrite32(0, wdt_base + TIM34); |
101 | /* set timeout period */ | 106 | /* set timeout period */ |
102 | timer_margin = (((u64)heartbeat * CLOCK_TICK_RATE) & 0xffffffff); | 107 | timer_margin = (((u64)heartbeat * wdt_freq) & 0xffffffff); |
103 | iowrite32(timer_margin, wdt_base + PRD12); | 108 | iowrite32(timer_margin, wdt_base + PRD12); |
104 | timer_margin = (((u64)heartbeat * CLOCK_TICK_RATE) >> 32); | 109 | timer_margin = (((u64)heartbeat * wdt_freq) >> 32); |
105 | iowrite32(timer_margin, wdt_base + PRD34); | 110 | iowrite32(timer_margin, wdt_base + PRD34); |
106 | /* enable run continuously */ | 111 | /* enable run continuously */ |
107 | iowrite32(ENAMODE12_PERIODIC, wdt_base + TCR); | 112 | iowrite32(ENAMODE12_PERIODIC, wdt_base + TCR); |
@@ -199,6 +204,12 @@ static int __devinit davinci_wdt_probe(struct platform_device *pdev) | |||
199 | struct resource *res; | 204 | struct resource *res; |
200 | struct device *dev = &pdev->dev; | 205 | struct device *dev = &pdev->dev; |
201 | 206 | ||
207 | wdt_clk = clk_get(dev, NULL); | ||
208 | if (WARN_ON(IS_ERR(wdt_clk))) | ||
209 | return PTR_ERR(wdt_clk); | ||
210 | |||
211 | clk_enable(wdt_clk); | ||
212 | |||
202 | if (heartbeat < 1 || heartbeat > MAX_HEARTBEAT) | 213 | if (heartbeat < 1 || heartbeat > MAX_HEARTBEAT) |
203 | heartbeat = DEFAULT_HEARTBEAT; | 214 | heartbeat = DEFAULT_HEARTBEAT; |
204 | 215 | ||
@@ -245,6 +256,10 @@ static int __devexit davinci_wdt_remove(struct platform_device *pdev) | |||
245 | kfree(wdt_mem); | 256 | kfree(wdt_mem); |
246 | wdt_mem = NULL; | 257 | wdt_mem = NULL; |
247 | } | 258 | } |
259 | |||
260 | clk_disable(wdt_clk); | ||
261 | clk_put(wdt_clk); | ||
262 | |||
248 | return 0; | 263 | return 0; |
249 | } | 264 | } |
250 | 265 | ||
diff --git a/drivers/watchdog/iop_wdt.c b/drivers/watchdog/iop_wdt.c index 0c9059676690..aef94789019f 100644 --- a/drivers/watchdog/iop_wdt.c +++ b/drivers/watchdog/iop_wdt.c | |||
@@ -139,7 +139,7 @@ static long iop_wdt_ioctl(struct file *file, | |||
139 | 139 | ||
140 | switch (cmd) { | 140 | switch (cmd) { |
141 | case WDIOC_GETSUPPORT: | 141 | case WDIOC_GETSUPPORT: |
142 | if (copy_to_user(argp, &ident, sizeof ident)) | 142 | if (copy_to_user(argp, &ident, sizeof(ident))) |
143 | ret = -EFAULT; | 143 | ret = -EFAULT; |
144 | else | 144 | else |
145 | ret = 0; | 145 | ret = 0; |
diff --git a/drivers/watchdog/nuc900_wdt.c b/drivers/watchdog/nuc900_wdt.c new file mode 100644 index 000000000000..adefe3a9d510 --- /dev/null +++ b/drivers/watchdog/nuc900_wdt.c | |||
@@ -0,0 +1,353 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2009 Nuvoton technology corporation. | ||
3 | * | ||
4 | * Wan ZongShun <mcuos.com@gmail.com> | ||
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 as published by | ||
8 | * the Free Software Foundation;version 2 of the License. | ||
9 | * | ||
10 | */ | ||
11 | |||
12 | #include <linux/bitops.h> | ||
13 | #include <linux/errno.h> | ||
14 | #include <linux/fs.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/io.h> | ||
17 | #include <linux/clk.h> | ||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/miscdevice.h> | ||
20 | #include <linux/module.h> | ||
21 | #include <linux/moduleparam.h> | ||
22 | #include <linux/platform_device.h> | ||
23 | #include <linux/interrupt.h> | ||
24 | #include <linux/types.h> | ||
25 | #include <linux/watchdog.h> | ||
26 | #include <linux/uaccess.h> | ||
27 | |||
28 | #define REG_WTCR 0x1c | ||
29 | #define WTCLK (0x01 << 10) | ||
30 | #define WTE (0x01 << 7) /*wdt enable*/ | ||
31 | #define WTIS (0x03 << 4) | ||
32 | #define WTIF (0x01 << 3) | ||
33 | #define WTRF (0x01 << 2) | ||
34 | #define WTRE (0x01 << 1) | ||
35 | #define WTR (0x01 << 0) | ||
36 | /* | ||
37 | * The watchdog time interval can be calculated via following formula: | ||
38 | * WTIS real time interval (formula) | ||
39 | * 0x00 ((2^ 14 ) * ((external crystal freq) / 256))seconds | ||
40 | * 0x01 ((2^ 16 ) * ((external crystal freq) / 256))seconds | ||
41 | * 0x02 ((2^ 18 ) * ((external crystal freq) / 256))seconds | ||
42 | * 0x03 ((2^ 20 ) * ((external crystal freq) / 256))seconds | ||
43 | * | ||
44 | * The external crystal freq is 15Mhz in the nuc900 evaluation board. | ||
45 | * So 0x00 = +-0.28 seconds, 0x01 = +-1.12 seconds, 0x02 = +-4.48 seconds, | ||
46 | * 0x03 = +- 16.92 seconds.. | ||
47 | */ | ||
48 | #define WDT_HW_TIMEOUT 0x02 | ||
49 | #define WDT_TIMEOUT (HZ/2) | ||
50 | #define WDT_HEARTBEAT 15 | ||
51 | |||
52 | static int heartbeat = WDT_HEARTBEAT; | ||
53 | module_param(heartbeat, int, 0); | ||
54 | MODULE_PARM_DESC(heartbeat, "Watchdog heartbeats in seconds. " | ||
55 | "(default = " __MODULE_STRING(WDT_HEARTBEAT) ")"); | ||
56 | |||
57 | static int nowayout = WATCHDOG_NOWAYOUT; | ||
58 | module_param(nowayout, int, 0); | ||
59 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " | ||
60 | "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); | ||
61 | |||
62 | struct nuc900_wdt { | ||
63 | struct resource *res; | ||
64 | struct clk *wdt_clock; | ||
65 | struct platform_device *pdev; | ||
66 | void __iomem *wdt_base; | ||
67 | char expect_close; | ||
68 | struct timer_list timer; | ||
69 | spinlock_t wdt_lock; | ||
70 | unsigned long next_heartbeat; | ||
71 | }; | ||
72 | |||
73 | static unsigned long nuc900wdt_busy; | ||
74 | struct nuc900_wdt *nuc900_wdt; | ||
75 | |||
76 | static inline void nuc900_wdt_keepalive(void) | ||
77 | { | ||
78 | unsigned int val; | ||
79 | |||
80 | spin_lock(&nuc900_wdt->wdt_lock); | ||
81 | |||
82 | val = __raw_readl(nuc900_wdt->wdt_base + REG_WTCR); | ||
83 | val |= (WTR | WTIF); | ||
84 | __raw_writel(val, nuc900_wdt->wdt_base + REG_WTCR); | ||
85 | |||
86 | spin_unlock(&nuc900_wdt->wdt_lock); | ||
87 | } | ||
88 | |||
89 | static inline void nuc900_wdt_start(void) | ||
90 | { | ||
91 | unsigned int val; | ||
92 | |||
93 | spin_lock(&nuc900_wdt->wdt_lock); | ||
94 | |||
95 | val = __raw_readl(nuc900_wdt->wdt_base + REG_WTCR); | ||
96 | val |= (WTRE | WTE | WTR | WTCLK | WTIF); | ||
97 | val &= ~WTIS; | ||
98 | val |= (WDT_HW_TIMEOUT << 0x04); | ||
99 | __raw_writel(val, nuc900_wdt->wdt_base + REG_WTCR); | ||
100 | |||
101 | spin_unlock(&nuc900_wdt->wdt_lock); | ||
102 | |||
103 | nuc900_wdt->next_heartbeat = jiffies + heartbeat * HZ; | ||
104 | mod_timer(&nuc900_wdt->timer, jiffies + WDT_TIMEOUT); | ||
105 | } | ||
106 | |||
107 | static inline void nuc900_wdt_stop(void) | ||
108 | { | ||
109 | unsigned int val; | ||
110 | |||
111 | del_timer(&nuc900_wdt->timer); | ||
112 | |||
113 | spin_lock(&nuc900_wdt->wdt_lock); | ||
114 | |||
115 | val = __raw_readl(nuc900_wdt->wdt_base + REG_WTCR); | ||
116 | val &= ~WTE; | ||
117 | __raw_writel(val, nuc900_wdt->wdt_base + REG_WTCR); | ||
118 | |||
119 | spin_unlock(&nuc900_wdt->wdt_lock); | ||
120 | } | ||
121 | |||
122 | static inline void nuc900_wdt_ping(void) | ||
123 | { | ||
124 | nuc900_wdt->next_heartbeat = jiffies + heartbeat * HZ; | ||
125 | } | ||
126 | |||
127 | static int nuc900_wdt_open(struct inode *inode, struct file *file) | ||
128 | { | ||
129 | |||
130 | if (test_and_set_bit(0, &nuc900wdt_busy)) | ||
131 | return -EBUSY; | ||
132 | |||
133 | nuc900_wdt_start(); | ||
134 | |||
135 | return nonseekable_open(inode, file); | ||
136 | } | ||
137 | |||
138 | static int nuc900_wdt_close(struct inode *inode, struct file *file) | ||
139 | { | ||
140 | if (nuc900_wdt->expect_close == 42) | ||
141 | nuc900_wdt_stop(); | ||
142 | else { | ||
143 | dev_crit(&nuc900_wdt->pdev->dev, | ||
144 | "Unexpected close, not stopping watchdog!\n"); | ||
145 | nuc900_wdt_ping(); | ||
146 | } | ||
147 | |||
148 | nuc900_wdt->expect_close = 0; | ||
149 | clear_bit(0, &nuc900wdt_busy); | ||
150 | return 0; | ||
151 | } | ||
152 | |||
153 | static const struct watchdog_info nuc900_wdt_info = { | ||
154 | .identity = "nuc900 watchdog", | ||
155 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | | ||
156 | WDIOF_MAGICCLOSE, | ||
157 | }; | ||
158 | |||
159 | static long nuc900_wdt_ioctl(struct file *file, | ||
160 | unsigned int cmd, unsigned long arg) | ||
161 | { | ||
162 | void __user *argp = (void __user *)arg; | ||
163 | int __user *p = argp; | ||
164 | int new_value; | ||
165 | |||
166 | switch (cmd) { | ||
167 | case WDIOC_GETSUPPORT: | ||
168 | return copy_to_user(argp, &nuc900_wdt_info, | ||
169 | sizeof(nuc900_wdt_info)) ? -EFAULT : 0; | ||
170 | case WDIOC_GETSTATUS: | ||
171 | case WDIOC_GETBOOTSTATUS: | ||
172 | return put_user(0, p); | ||
173 | |||
174 | case WDIOC_KEEPALIVE: | ||
175 | nuc900_wdt_ping(); | ||
176 | return 0; | ||
177 | |||
178 | case WDIOC_SETTIMEOUT: | ||
179 | if (get_user(new_value, p)) | ||
180 | return -EFAULT; | ||
181 | |||
182 | heartbeat = new_value; | ||
183 | nuc900_wdt_ping(); | ||
184 | |||
185 | return put_user(new_value, p); | ||
186 | case WDIOC_GETTIMEOUT: | ||
187 | return put_user(heartbeat, p); | ||
188 | default: | ||
189 | return -ENOTTY; | ||
190 | } | ||
191 | } | ||
192 | |||
193 | static ssize_t nuc900_wdt_write(struct file *file, const char __user *data, | ||
194 | size_t len, loff_t *ppos) | ||
195 | { | ||
196 | if (!len) | ||
197 | return 0; | ||
198 | |||
199 | /* Scan for magic character */ | ||
200 | if (!nowayout) { | ||
201 | size_t i; | ||
202 | |||
203 | nuc900_wdt->expect_close = 0; | ||
204 | |||
205 | for (i = 0; i < len; i++) { | ||
206 | char c; | ||
207 | if (get_user(c, data + i)) | ||
208 | return -EFAULT; | ||
209 | if (c == 'V') { | ||
210 | nuc900_wdt->expect_close = 42; | ||
211 | break; | ||
212 | } | ||
213 | } | ||
214 | } | ||
215 | |||
216 | nuc900_wdt_ping(); | ||
217 | return len; | ||
218 | } | ||
219 | |||
220 | static void nuc900_wdt_timer_ping(unsigned long data) | ||
221 | { | ||
222 | if (time_before(jiffies, nuc900_wdt->next_heartbeat)) { | ||
223 | nuc900_wdt_keepalive(); | ||
224 | mod_timer(&nuc900_wdt->timer, jiffies + WDT_TIMEOUT); | ||
225 | } else | ||
226 | dev_warn(&nuc900_wdt->pdev->dev, "Will reset the machine !\n"); | ||
227 | } | ||
228 | |||
229 | static const struct file_operations nuc900wdt_fops = { | ||
230 | .owner = THIS_MODULE, | ||
231 | .llseek = no_llseek, | ||
232 | .unlocked_ioctl = nuc900_wdt_ioctl, | ||
233 | .open = nuc900_wdt_open, | ||
234 | .release = nuc900_wdt_close, | ||
235 | .write = nuc900_wdt_write, | ||
236 | }; | ||
237 | |||
238 | static struct miscdevice nuc900wdt_miscdev = { | ||
239 | .minor = WATCHDOG_MINOR, | ||
240 | .name = "watchdog", | ||
241 | .fops = &nuc900wdt_fops, | ||
242 | }; | ||
243 | |||
244 | static int __devinit nuc900wdt_probe(struct platform_device *pdev) | ||
245 | { | ||
246 | int ret = 0; | ||
247 | |||
248 | nuc900_wdt = kzalloc(sizeof(struct nuc900_wdt), GFP_KERNEL); | ||
249 | if (!nuc900_wdt) | ||
250 | return -ENOMEM; | ||
251 | |||
252 | nuc900_wdt->pdev = pdev; | ||
253 | |||
254 | spin_lock_init(&nuc900_wdt->wdt_lock); | ||
255 | |||
256 | nuc900_wdt->res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
257 | if (nuc900_wdt->res == NULL) { | ||
258 | dev_err(&pdev->dev, "no memory resource specified\n"); | ||
259 | ret = -ENOENT; | ||
260 | goto err_get; | ||
261 | } | ||
262 | |||
263 | if (!request_mem_region(nuc900_wdt->res->start, | ||
264 | resource_size(nuc900_wdt->res), pdev->name)) { | ||
265 | dev_err(&pdev->dev, "failed to get memory region\n"); | ||
266 | ret = -ENOENT; | ||
267 | goto err_get; | ||
268 | } | ||
269 | |||
270 | nuc900_wdt->wdt_base = ioremap(nuc900_wdt->res->start, | ||
271 | resource_size(nuc900_wdt->res)); | ||
272 | if (nuc900_wdt->wdt_base == NULL) { | ||
273 | dev_err(&pdev->dev, "failed to ioremap() region\n"); | ||
274 | ret = -EINVAL; | ||
275 | goto err_req; | ||
276 | } | ||
277 | |||
278 | nuc900_wdt->wdt_clock = clk_get(&pdev->dev, NULL); | ||
279 | if (IS_ERR(nuc900_wdt->wdt_clock)) { | ||
280 | dev_err(&pdev->dev, "failed to find watchdog clock source\n"); | ||
281 | ret = PTR_ERR(nuc900_wdt->wdt_clock); | ||
282 | goto err_map; | ||
283 | } | ||
284 | |||
285 | clk_enable(nuc900_wdt->wdt_clock); | ||
286 | |||
287 | setup_timer(&nuc900_wdt->timer, nuc900_wdt_timer_ping, 0); | ||
288 | |||
289 | if (misc_register(&nuc900wdt_miscdev)) { | ||
290 | dev_err(&pdev->dev, "err register miscdev on minor=%d (%d)\n", | ||
291 | WATCHDOG_MINOR, ret); | ||
292 | goto err_clk; | ||
293 | } | ||
294 | |||
295 | return 0; | ||
296 | |||
297 | err_clk: | ||
298 | clk_disable(nuc900_wdt->wdt_clock); | ||
299 | clk_put(nuc900_wdt->wdt_clock); | ||
300 | err_map: | ||
301 | iounmap(nuc900_wdt->wdt_base); | ||
302 | err_req: | ||
303 | release_mem_region(nuc900_wdt->res->start, | ||
304 | resource_size(nuc900_wdt->res)); | ||
305 | err_get: | ||
306 | kfree(nuc900_wdt); | ||
307 | return ret; | ||
308 | } | ||
309 | |||
310 | static int __devexit nuc900wdt_remove(struct platform_device *pdev) | ||
311 | { | ||
312 | misc_deregister(&nuc900wdt_miscdev); | ||
313 | |||
314 | clk_disable(nuc900_wdt->wdt_clock); | ||
315 | clk_put(nuc900_wdt->wdt_clock); | ||
316 | |||
317 | iounmap(nuc900_wdt->wdt_base); | ||
318 | |||
319 | release_mem_region(nuc900_wdt->res->start, | ||
320 | resource_size(nuc900_wdt->res)); | ||
321 | |||
322 | kfree(nuc900_wdt); | ||
323 | |||
324 | return 0; | ||
325 | } | ||
326 | |||
327 | static struct platform_driver nuc900wdt_driver = { | ||
328 | .probe = nuc900wdt_probe, | ||
329 | .remove = __devexit_p(nuc900wdt_remove), | ||
330 | .driver = { | ||
331 | .name = "nuc900-wdt", | ||
332 | .owner = THIS_MODULE, | ||
333 | }, | ||
334 | }; | ||
335 | |||
336 | static int __init nuc900_wdt_init(void) | ||
337 | { | ||
338 | return platform_driver_register(&nuc900wdt_driver); | ||
339 | } | ||
340 | |||
341 | static void __exit nuc900_wdt_exit(void) | ||
342 | { | ||
343 | platform_driver_unregister(&nuc900wdt_driver); | ||
344 | } | ||
345 | |||
346 | module_init(nuc900_wdt_init); | ||
347 | module_exit(nuc900_wdt_exit); | ||
348 | |||
349 | MODULE_AUTHOR("Wan ZongShun <mcuos.com@gmail.com>"); | ||
350 | MODULE_DESCRIPTION("Watchdog driver for NUC900"); | ||
351 | MODULE_LICENSE("GPL"); | ||
352 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); | ||
353 | MODULE_ALIAS("platform:nuc900-wdt"); | ||
diff --git a/drivers/watchdog/rm9k_wdt.c b/drivers/watchdog/rm9k_wdt.c index 2e4442642262..bb66958b9433 100644 --- a/drivers/watchdog/rm9k_wdt.c +++ b/drivers/watchdog/rm9k_wdt.c | |||
@@ -340,7 +340,7 @@ static const struct resource *wdt_gpi_get_resource(struct platform_device *pdv, | |||
340 | const char *name, unsigned int type) | 340 | const char *name, unsigned int type) |
341 | { | 341 | { |
342 | char buf[80]; | 342 | char buf[80]; |
343 | if (snprintf(buf, sizeof buf, "%s_0", name) >= sizeof buf) | 343 | if (snprintf(buf, sizeof(buf), "%s_0", name) >= sizeof(buf)) |
344 | return NULL; | 344 | return NULL; |
345 | return platform_get_resource_byname(pdv, type, buf); | 345 | return platform_get_resource_byname(pdv, type, buf); |
346 | } | 346 | } |
diff --git a/drivers/watchdog/sbc_fitpc2_wdt.c b/drivers/watchdog/sbc_fitpc2_wdt.c new file mode 100644 index 000000000000..852ca1977917 --- /dev/null +++ b/drivers/watchdog/sbc_fitpc2_wdt.c | |||
@@ -0,0 +1,267 @@ | |||
1 | /* | ||
2 | * Watchdog driver for SBC-FITPC2 board | ||
3 | * | ||
4 | * Author: Denis Turischev <denis@compulab.co.il> | ||
5 | * | ||
6 | * Adapted from the IXP2000 watchdog driver by Deepak Saxena. | ||
7 | * | ||
8 | * This file is licensed under the terms of the GNU General Public | ||
9 | * License version 2. This program is licensed "as is" without any | ||
10 | * warranty of any kind, whether express or implied. | ||
11 | */ | ||
12 | |||
13 | #define pr_fmt(fmt) KBUILD_MODNAME " WATCHDOG: " fmt | ||
14 | |||
15 | #include <linux/module.h> | ||
16 | #include <linux/types.h> | ||
17 | #include <linux/miscdevice.h> | ||
18 | #include <linux/watchdog.h> | ||
19 | #include <linux/ioport.h> | ||
20 | #include <linux/delay.h> | ||
21 | #include <linux/fs.h> | ||
22 | #include <linux/init.h> | ||
23 | #include <linux/moduleparam.h> | ||
24 | #include <linux/dmi.h> | ||
25 | #include <linux/io.h> | ||
26 | #include <linux/uaccess.h> | ||
27 | |||
28 | #include <asm/system.h> | ||
29 | |||
30 | static int nowayout = WATCHDOG_NOWAYOUT; | ||
31 | static unsigned int margin = 60; /* (secs) Default is 1 minute */ | ||
32 | static unsigned long wdt_status; | ||
33 | static DEFINE_SPINLOCK(wdt_lock); | ||
34 | |||
35 | #define WDT_IN_USE 0 | ||
36 | #define WDT_OK_TO_CLOSE 1 | ||
37 | |||
38 | #define COMMAND_PORT 0x4c | ||
39 | #define DATA_PORT 0x48 | ||
40 | |||
41 | #define IFACE_ON_COMMAND 1 | ||
42 | #define REBOOT_COMMAND 2 | ||
43 | |||
44 | #define WATCHDOG_NAME "SBC-FITPC2 Watchdog" | ||
45 | |||
46 | static void wdt_send_data(unsigned char command, unsigned char data) | ||
47 | { | ||
48 | outb(command, COMMAND_PORT); | ||
49 | mdelay(100); | ||
50 | outb(data, DATA_PORT); | ||
51 | mdelay(200); | ||
52 | } | ||
53 | |||
54 | static void wdt_enable(void) | ||
55 | { | ||
56 | spin_lock(&wdt_lock); | ||
57 | wdt_send_data(IFACE_ON_COMMAND, 1); | ||
58 | wdt_send_data(REBOOT_COMMAND, margin); | ||
59 | spin_unlock(&wdt_lock); | ||
60 | } | ||
61 | |||
62 | static void wdt_disable(void) | ||
63 | { | ||
64 | spin_lock(&wdt_lock); | ||
65 | wdt_send_data(IFACE_ON_COMMAND, 0); | ||
66 | wdt_send_data(REBOOT_COMMAND, 0); | ||
67 | spin_unlock(&wdt_lock); | ||
68 | } | ||
69 | |||
70 | static int fitpc2_wdt_open(struct inode *inode, struct file *file) | ||
71 | { | ||
72 | if (test_and_set_bit(WDT_IN_USE, &wdt_status)) | ||
73 | return -EBUSY; | ||
74 | |||
75 | clear_bit(WDT_OK_TO_CLOSE, &wdt_status); | ||
76 | |||
77 | wdt_enable(); | ||
78 | |||
79 | return nonseekable_open(inode, file); | ||
80 | } | ||
81 | |||
82 | static ssize_t fitpc2_wdt_write(struct file *file, const char *data, | ||
83 | size_t len, loff_t *ppos) | ||
84 | { | ||
85 | size_t i; | ||
86 | |||
87 | if (!len) | ||
88 | return 0; | ||
89 | |||
90 | if (nowayout) { | ||
91 | len = 0; | ||
92 | goto out; | ||
93 | } | ||
94 | |||
95 | clear_bit(WDT_OK_TO_CLOSE, &wdt_status); | ||
96 | |||
97 | for (i = 0; i != len; i++) { | ||
98 | char c; | ||
99 | |||
100 | if (get_user(c, data + i)) | ||
101 | return -EFAULT; | ||
102 | |||
103 | if (c == 'V') | ||
104 | set_bit(WDT_OK_TO_CLOSE, &wdt_status); | ||
105 | } | ||
106 | |||
107 | out: | ||
108 | wdt_enable(); | ||
109 | |||
110 | return len; | ||
111 | } | ||
112 | |||
113 | |||
114 | static struct watchdog_info ident = { | ||
115 | .options = WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT | | ||
116 | WDIOF_KEEPALIVEPING, | ||
117 | .identity = WATCHDOG_NAME, | ||
118 | }; | ||
119 | |||
120 | |||
121 | static long fitpc2_wdt_ioctl(struct file *file, unsigned int cmd, | ||
122 | unsigned long arg) | ||
123 | { | ||
124 | int ret = -ENOTTY; | ||
125 | int time; | ||
126 | |||
127 | switch (cmd) { | ||
128 | case WDIOC_GETSUPPORT: | ||
129 | ret = copy_to_user((struct watchdog_info *)arg, &ident, | ||
130 | sizeof(ident)) ? -EFAULT : 0; | ||
131 | break; | ||
132 | |||
133 | case WDIOC_GETSTATUS: | ||
134 | ret = put_user(0, (int *)arg); | ||
135 | break; | ||
136 | |||
137 | case WDIOC_GETBOOTSTATUS: | ||
138 | ret = put_user(0, (int *)arg); | ||
139 | break; | ||
140 | |||
141 | case WDIOC_KEEPALIVE: | ||
142 | wdt_enable(); | ||
143 | ret = 0; | ||
144 | break; | ||
145 | |||
146 | case WDIOC_SETTIMEOUT: | ||
147 | ret = get_user(time, (int *)arg); | ||
148 | if (ret) | ||
149 | break; | ||
150 | |||
151 | if (time < 31 || time > 255) { | ||
152 | ret = -EINVAL; | ||
153 | break; | ||
154 | } | ||
155 | |||
156 | margin = time; | ||
157 | wdt_enable(); | ||
158 | /* Fall through */ | ||
159 | |||
160 | case WDIOC_GETTIMEOUT: | ||
161 | ret = put_user(margin, (int *)arg); | ||
162 | break; | ||
163 | } | ||
164 | |||
165 | return ret; | ||
166 | } | ||
167 | |||
168 | static int fitpc2_wdt_release(struct inode *inode, struct file *file) | ||
169 | { | ||
170 | if (test_bit(WDT_OK_TO_CLOSE, &wdt_status)) { | ||
171 | wdt_disable(); | ||
172 | pr_info("Device disabled\n"); | ||
173 | } else { | ||
174 | pr_warning("Device closed unexpectedly -" | ||
175 | " timer will not stop\n"); | ||
176 | wdt_enable(); | ||
177 | } | ||
178 | |||
179 | clear_bit(WDT_IN_USE, &wdt_status); | ||
180 | clear_bit(WDT_OK_TO_CLOSE, &wdt_status); | ||
181 | |||
182 | return 0; | ||
183 | } | ||
184 | |||
185 | |||
186 | static const struct file_operations fitpc2_wdt_fops = { | ||
187 | .owner = THIS_MODULE, | ||
188 | .llseek = no_llseek, | ||
189 | .write = fitpc2_wdt_write, | ||
190 | .unlocked_ioctl = fitpc2_wdt_ioctl, | ||
191 | .open = fitpc2_wdt_open, | ||
192 | .release = fitpc2_wdt_release, | ||
193 | }; | ||
194 | |||
195 | static struct miscdevice fitpc2_wdt_miscdev = { | ||
196 | .minor = WATCHDOG_MINOR, | ||
197 | .name = "watchdog", | ||
198 | .fops = &fitpc2_wdt_fops, | ||
199 | }; | ||
200 | |||
201 | static int __init fitpc2_wdt_init(void) | ||
202 | { | ||
203 | int err; | ||
204 | |||
205 | if (strcmp("SBC-FITPC2", dmi_get_system_info(DMI_BOARD_NAME))) { | ||
206 | pr_info("board name is: %s. Should be SBC-FITPC2\n", | ||
207 | dmi_get_system_info(DMI_BOARD_NAME)); | ||
208 | return -ENODEV; | ||
209 | } | ||
210 | |||
211 | if (!request_region(COMMAND_PORT, 1, WATCHDOG_NAME)) { | ||
212 | pr_err("I/O address 0x%04x already in use\n", COMMAND_PORT); | ||
213 | return -EIO; | ||
214 | } | ||
215 | |||
216 | if (!request_region(DATA_PORT, 1, WATCHDOG_NAME)) { | ||
217 | pr_err("I/O address 0x%04x already in use\n", DATA_PORT); | ||
218 | err = -EIO; | ||
219 | goto err_data_port; | ||
220 | } | ||
221 | |||
222 | if (margin < 31 || margin > 255) { | ||
223 | pr_err("margin must be in range 31 - 255" | ||
224 | " seconds, you tried to set %d\n", margin); | ||
225 | err = -EINVAL; | ||
226 | goto err_margin; | ||
227 | } | ||
228 | |||
229 | err = misc_register(&fitpc2_wdt_miscdev); | ||
230 | if (!err) { | ||
231 | pr_err("cannot register miscdev on minor=%d (err=%d)\n", | ||
232 | WATCHDOG_MINOR, err); | ||
233 | goto err_margin; | ||
234 | } | ||
235 | |||
236 | return 0; | ||
237 | |||
238 | err_margin: | ||
239 | release_region(DATA_PORT, 1); | ||
240 | err_data_port: | ||
241 | release_region(COMMAND_PORT, 1); | ||
242 | |||
243 | return err; | ||
244 | } | ||
245 | |||
246 | static void __exit fitpc2_wdt_exit(void) | ||
247 | { | ||
248 | misc_deregister(&fitpc2_wdt_miscdev); | ||
249 | release_region(DATA_PORT, 1); | ||
250 | release_region(COMMAND_PORT, 1); | ||
251 | } | ||
252 | |||
253 | module_init(fitpc2_wdt_init); | ||
254 | module_exit(fitpc2_wdt_exit); | ||
255 | |||
256 | MODULE_AUTHOR("Denis Turischev <denis@compulab.co.il>"); | ||
257 | MODULE_DESCRIPTION("SBC-FITPC2 Watchdog"); | ||
258 | |||
259 | module_param(margin, int, 0); | ||
260 | MODULE_PARM_DESC(margin, "Watchdog margin in seconds (default 60s)"); | ||
261 | |||
262 | module_param(nowayout, int, 0); | ||
263 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started"); | ||
264 | |||
265 | MODULE_LICENSE("GPL"); | ||
266 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); | ||
267 | |||
diff --git a/drivers/watchdog/sc1200wdt.c b/drivers/watchdog/sc1200wdt.c index b5e19c1820a2..c01daca8405a 100644 --- a/drivers/watchdog/sc1200wdt.c +++ b/drivers/watchdog/sc1200wdt.c | |||
@@ -197,7 +197,7 @@ static long sc1200wdt_ioctl(struct file *file, unsigned int cmd, | |||
197 | 197 | ||
198 | switch (cmd) { | 198 | switch (cmd) { |
199 | case WDIOC_GETSUPPORT: | 199 | case WDIOC_GETSUPPORT: |
200 | if (copy_to_user(argp, &ident, sizeof ident)) | 200 | if (copy_to_user(argp, &ident, sizeof(ident))) |
201 | return -EFAULT; | 201 | return -EFAULT; |
202 | return 0; | 202 | return 0; |
203 | 203 | ||
diff --git a/drivers/watchdog/wdt_pci.c b/drivers/watchdog/wdt_pci.c index 7a1bdc7c95a9..f368dd87083a 100644 --- a/drivers/watchdog/wdt_pci.c +++ b/drivers/watchdog/wdt_pci.c | |||
@@ -80,7 +80,7 @@ static unsigned long open_lock; | |||
80 | static DEFINE_SPINLOCK(wdtpci_lock); | 80 | static DEFINE_SPINLOCK(wdtpci_lock); |
81 | static char expect_close; | 81 | static char expect_close; |
82 | 82 | ||
83 | static int io; | 83 | static resource_size_t io; |
84 | static int irq; | 84 | static int irq; |
85 | 85 | ||
86 | /* Default timeout */ | 86 | /* Default timeout */ |
@@ -647,14 +647,15 @@ static int __devinit wdtpci_init_one(struct pci_dev *dev, | |||
647 | goto out_pci; | 647 | goto out_pci; |
648 | } | 648 | } |
649 | 649 | ||
650 | irq = dev->irq; | 650 | if (pci_request_region(dev, 2, "wdt_pci")) { |
651 | io = pci_resource_start(dev, 2); | 651 | printk(KERN_ERR PFX "I/O address 0x%llx already in use\n", |
652 | 652 | (unsigned long long)pci_resource_start(dev, 2)); | |
653 | if (request_region(io, 16, "wdt_pci") == NULL) { | ||
654 | printk(KERN_ERR PFX "I/O address 0x%04x already in use\n", io); | ||
655 | goto out_pci; | 653 | goto out_pci; |
656 | } | 654 | } |
657 | 655 | ||
656 | irq = dev->irq; | ||
657 | io = pci_resource_start(dev, 2); | ||
658 | |||
658 | if (request_irq(irq, wdtpci_interrupt, IRQF_DISABLED | IRQF_SHARED, | 659 | if (request_irq(irq, wdtpci_interrupt, IRQF_DISABLED | IRQF_SHARED, |
659 | "wdt_pci", &wdtpci_miscdev)) { | 660 | "wdt_pci", &wdtpci_miscdev)) { |
660 | printk(KERN_ERR PFX "IRQ %d is not free\n", irq); | 661 | printk(KERN_ERR PFX "IRQ %d is not free\n", irq); |
@@ -662,8 +663,8 @@ static int __devinit wdtpci_init_one(struct pci_dev *dev, | |||
662 | } | 663 | } |
663 | 664 | ||
664 | printk(KERN_INFO | 665 | printk(KERN_INFO |
665 | "PCI-WDT500/501 (PCI-WDG-CSM) driver 0.10 at 0x%04x (Interrupt %d)\n", | 666 | "PCI-WDT500/501 (PCI-WDG-CSM) driver 0.10 at 0x%llx (Interrupt %d)\n", |
666 | io, irq); | 667 | (unsigned long long)io, irq); |
667 | 668 | ||
668 | /* Check that the heartbeat value is within its range; | 669 | /* Check that the heartbeat value is within its range; |
669 | if not reset to the default */ | 670 | if not reset to the default */ |
@@ -717,7 +718,7 @@ out_rbt: | |||
717 | out_irq: | 718 | out_irq: |
718 | free_irq(irq, &wdtpci_miscdev); | 719 | free_irq(irq, &wdtpci_miscdev); |
719 | out_reg: | 720 | out_reg: |
720 | release_region(io, 16); | 721 | pci_release_region(dev, 2); |
721 | out_pci: | 722 | out_pci: |
722 | pci_disable_device(dev); | 723 | pci_disable_device(dev); |
723 | goto out; | 724 | goto out; |
@@ -733,7 +734,7 @@ static void __devexit wdtpci_remove_one(struct pci_dev *pdev) | |||
733 | misc_deregister(&temp_miscdev); | 734 | misc_deregister(&temp_miscdev); |
734 | unregister_reboot_notifier(&wdtpci_notifier); | 735 | unregister_reboot_notifier(&wdtpci_notifier); |
735 | free_irq(irq, &wdtpci_miscdev); | 736 | free_irq(irq, &wdtpci_miscdev); |
736 | release_region(io, 16); | 737 | pci_release_region(pdev, 2); |
737 | pci_disable_device(pdev); | 738 | pci_disable_device(pdev); |
738 | dev_count--; | 739 | dev_count--; |
739 | } | 740 | } |
diff --git a/drivers/watchdog/wm831x_wdt.c b/drivers/watchdog/wm831x_wdt.c new file mode 100644 index 000000000000..775bcd807f31 --- /dev/null +++ b/drivers/watchdog/wm831x_wdt.c | |||
@@ -0,0 +1,441 @@ | |||
1 | /* | ||
2 | * Watchdog driver for the wm831x PMICs | ||
3 | * | ||
4 | * Copyright (C) 2009 Wolfson Microelectronics | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation | ||
9 | */ | ||
10 | |||
11 | #include <linux/module.h> | ||
12 | #include <linux/moduleparam.h> | ||
13 | #include <linux/types.h> | ||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/fs.h> | ||
16 | #include <linux/miscdevice.h> | ||
17 | #include <linux/platform_device.h> | ||
18 | #include <linux/watchdog.h> | ||
19 | #include <linux/uaccess.h> | ||
20 | #include <linux/gpio.h> | ||
21 | |||
22 | #include <linux/mfd/wm831x/core.h> | ||
23 | #include <linux/mfd/wm831x/pdata.h> | ||
24 | #include <linux/mfd/wm831x/watchdog.h> | ||
25 | |||
26 | static int nowayout = WATCHDOG_NOWAYOUT; | ||
27 | module_param(nowayout, int, 0); | ||
28 | MODULE_PARM_DESC(nowayout, | ||
29 | "Watchdog cannot be stopped once started (default=" | ||
30 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); | ||
31 | |||
32 | static unsigned long wm831x_wdt_users; | ||
33 | static struct miscdevice wm831x_wdt_miscdev; | ||
34 | static int wm831x_wdt_expect_close; | ||
35 | static DEFINE_MUTEX(wdt_mutex); | ||
36 | static struct wm831x *wm831x; | ||
37 | static unsigned int update_gpio; | ||
38 | static unsigned int update_state; | ||
39 | |||
40 | /* We can't use the sub-second values here but they're included | ||
41 | * for completeness. */ | ||
42 | static struct { | ||
43 | int time; /* Seconds */ | ||
44 | u16 val; /* WDOG_TO value */ | ||
45 | } wm831x_wdt_cfgs[] = { | ||
46 | { 1, 2 }, | ||
47 | { 2, 3 }, | ||
48 | { 4, 4 }, | ||
49 | { 8, 5 }, | ||
50 | { 16, 6 }, | ||
51 | { 32, 7 }, | ||
52 | { 33, 7 }, /* Actually 32.768s so include both, others round down */ | ||
53 | }; | ||
54 | |||
55 | static int wm831x_wdt_set_timeout(struct wm831x *wm831x, u16 value) | ||
56 | { | ||
57 | int ret; | ||
58 | |||
59 | mutex_lock(&wdt_mutex); | ||
60 | |||
61 | ret = wm831x_reg_unlock(wm831x); | ||
62 | if (ret == 0) { | ||
63 | ret = wm831x_set_bits(wm831x, WM831X_WATCHDOG, | ||
64 | WM831X_WDOG_TO_MASK, value); | ||
65 | wm831x_reg_lock(wm831x); | ||
66 | } else { | ||
67 | dev_err(wm831x->dev, "Failed to unlock security key: %d\n", | ||
68 | ret); | ||
69 | } | ||
70 | |||
71 | mutex_unlock(&wdt_mutex); | ||
72 | |||
73 | return ret; | ||
74 | } | ||
75 | |||
76 | static int wm831x_wdt_start(struct wm831x *wm831x) | ||
77 | { | ||
78 | int ret; | ||
79 | |||
80 | mutex_lock(&wdt_mutex); | ||
81 | |||
82 | ret = wm831x_reg_unlock(wm831x); | ||
83 | if (ret == 0) { | ||
84 | ret = wm831x_set_bits(wm831x, WM831X_WATCHDOG, | ||
85 | WM831X_WDOG_ENA, WM831X_WDOG_ENA); | ||
86 | wm831x_reg_lock(wm831x); | ||
87 | } else { | ||
88 | dev_err(wm831x->dev, "Failed to unlock security key: %d\n", | ||
89 | ret); | ||
90 | } | ||
91 | |||
92 | mutex_unlock(&wdt_mutex); | ||
93 | |||
94 | return ret; | ||
95 | } | ||
96 | |||
97 | static int wm831x_wdt_stop(struct wm831x *wm831x) | ||
98 | { | ||
99 | int ret; | ||
100 | |||
101 | mutex_lock(&wdt_mutex); | ||
102 | |||
103 | ret = wm831x_reg_unlock(wm831x); | ||
104 | if (ret == 0) { | ||
105 | ret = wm831x_set_bits(wm831x, WM831X_WATCHDOG, | ||
106 | WM831X_WDOG_ENA, 0); | ||
107 | wm831x_reg_lock(wm831x); | ||
108 | } else { | ||
109 | dev_err(wm831x->dev, "Failed to unlock security key: %d\n", | ||
110 | ret); | ||
111 | } | ||
112 | |||
113 | mutex_unlock(&wdt_mutex); | ||
114 | |||
115 | return ret; | ||
116 | } | ||
117 | |||
118 | static int wm831x_wdt_kick(struct wm831x *wm831x) | ||
119 | { | ||
120 | int ret; | ||
121 | u16 reg; | ||
122 | |||
123 | mutex_lock(&wdt_mutex); | ||
124 | |||
125 | if (update_gpio) { | ||
126 | gpio_set_value_cansleep(update_gpio, update_state); | ||
127 | update_state = !update_state; | ||
128 | ret = 0; | ||
129 | goto out; | ||
130 | } | ||
131 | |||
132 | |||
133 | reg = wm831x_reg_read(wm831x, WM831X_WATCHDOG); | ||
134 | |||
135 | if (!(reg & WM831X_WDOG_RST_SRC)) { | ||
136 | dev_err(wm831x->dev, "Hardware watchdog update unsupported\n"); | ||
137 | ret = -EINVAL; | ||
138 | goto out; | ||
139 | } | ||
140 | |||
141 | reg |= WM831X_WDOG_RESET; | ||
142 | |||
143 | ret = wm831x_reg_unlock(wm831x); | ||
144 | if (ret == 0) { | ||
145 | ret = wm831x_reg_write(wm831x, WM831X_WATCHDOG, reg); | ||
146 | wm831x_reg_lock(wm831x); | ||
147 | } else { | ||
148 | dev_err(wm831x->dev, "Failed to unlock security key: %d\n", | ||
149 | ret); | ||
150 | } | ||
151 | |||
152 | out: | ||
153 | mutex_unlock(&wdt_mutex); | ||
154 | |||
155 | return ret; | ||
156 | } | ||
157 | |||
158 | static int wm831x_wdt_open(struct inode *inode, struct file *file) | ||
159 | { | ||
160 | int ret; | ||
161 | |||
162 | if (!wm831x) | ||
163 | return -ENODEV; | ||
164 | |||
165 | if (test_and_set_bit(0, &wm831x_wdt_users)) | ||
166 | return -EBUSY; | ||
167 | |||
168 | ret = wm831x_wdt_start(wm831x); | ||
169 | if (ret != 0) | ||
170 | return ret; | ||
171 | |||
172 | return nonseekable_open(inode, file); | ||
173 | } | ||
174 | |||
175 | static int wm831x_wdt_release(struct inode *inode, struct file *file) | ||
176 | { | ||
177 | if (wm831x_wdt_expect_close) | ||
178 | wm831x_wdt_stop(wm831x); | ||
179 | else { | ||
180 | dev_warn(wm831x->dev, "Watchdog device closed uncleanly\n"); | ||
181 | wm831x_wdt_kick(wm831x); | ||
182 | } | ||
183 | |||
184 | clear_bit(0, &wm831x_wdt_users); | ||
185 | |||
186 | return 0; | ||
187 | } | ||
188 | |||
189 | static ssize_t wm831x_wdt_write(struct file *file, | ||
190 | const char __user *data, size_t count, | ||
191 | loff_t *ppos) | ||
192 | { | ||
193 | size_t i; | ||
194 | |||
195 | if (count) { | ||
196 | wm831x_wdt_kick(wm831x); | ||
197 | |||
198 | if (!nowayout) { | ||
199 | /* In case it was set long ago */ | ||
200 | wm831x_wdt_expect_close = 0; | ||
201 | |||
202 | /* scan to see whether or not we got the magic | ||
203 | character */ | ||
204 | for (i = 0; i != count; i++) { | ||
205 | char c; | ||
206 | if (get_user(c, data + i)) | ||
207 | return -EFAULT; | ||
208 | if (c == 'V') | ||
209 | wm831x_wdt_expect_close = 42; | ||
210 | } | ||
211 | } | ||
212 | } | ||
213 | return count; | ||
214 | } | ||
215 | |||
216 | static struct watchdog_info ident = { | ||
217 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, | ||
218 | .identity = "WM831x Watchdog", | ||
219 | }; | ||
220 | |||
221 | static long wm831x_wdt_ioctl(struct file *file, unsigned int cmd, | ||
222 | unsigned long arg) | ||
223 | { | ||
224 | int ret = -ENOTTY, time, i; | ||
225 | void __user *argp = (void __user *)arg; | ||
226 | int __user *p = argp; | ||
227 | u16 reg; | ||
228 | |||
229 | switch (cmd) { | ||
230 | case WDIOC_GETSUPPORT: | ||
231 | ret = copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0; | ||
232 | break; | ||
233 | |||
234 | case WDIOC_GETSTATUS: | ||
235 | case WDIOC_GETBOOTSTATUS: | ||
236 | ret = put_user(0, p); | ||
237 | break; | ||
238 | |||
239 | case WDIOC_SETOPTIONS: | ||
240 | { | ||
241 | int options; | ||
242 | |||
243 | if (get_user(options, p)) | ||
244 | return -EFAULT; | ||
245 | |||
246 | ret = -EINVAL; | ||
247 | |||
248 | /* Setting both simultaneously means at least one must fail */ | ||
249 | if (options == WDIOS_DISABLECARD) | ||
250 | ret = wm831x_wdt_start(wm831x); | ||
251 | |||
252 | if (options == WDIOS_ENABLECARD) | ||
253 | ret = wm831x_wdt_stop(wm831x); | ||
254 | break; | ||
255 | } | ||
256 | |||
257 | case WDIOC_KEEPALIVE: | ||
258 | ret = wm831x_wdt_kick(wm831x); | ||
259 | break; | ||
260 | |||
261 | case WDIOC_SETTIMEOUT: | ||
262 | ret = get_user(time, p); | ||
263 | if (ret) | ||
264 | break; | ||
265 | |||
266 | if (time == 0) { | ||
267 | if (nowayout) | ||
268 | ret = -EINVAL; | ||
269 | else | ||
270 | wm831x_wdt_stop(wm831x); | ||
271 | break; | ||
272 | } | ||
273 | |||
274 | for (i = 0; i < ARRAY_SIZE(wm831x_wdt_cfgs); i++) | ||
275 | if (wm831x_wdt_cfgs[i].time == time) | ||
276 | break; | ||
277 | if (i == ARRAY_SIZE(wm831x_wdt_cfgs)) | ||
278 | ret = -EINVAL; | ||
279 | else | ||
280 | ret = wm831x_wdt_set_timeout(wm831x, | ||
281 | wm831x_wdt_cfgs[i].val); | ||
282 | break; | ||
283 | |||
284 | case WDIOC_GETTIMEOUT: | ||
285 | reg = wm831x_reg_read(wm831x, WM831X_WATCHDOG); | ||
286 | reg &= WM831X_WDOG_TO_MASK; | ||
287 | for (i = 0; i < ARRAY_SIZE(wm831x_wdt_cfgs); i++) | ||
288 | if (wm831x_wdt_cfgs[i].val == reg) | ||
289 | break; | ||
290 | if (i == ARRAY_SIZE(wm831x_wdt_cfgs)) { | ||
291 | dev_warn(wm831x->dev, | ||
292 | "Unknown watchdog configuration: %x\n", reg); | ||
293 | ret = -EINVAL; | ||
294 | } else | ||
295 | ret = put_user(wm831x_wdt_cfgs[i].time, p); | ||
296 | |||
297 | } | ||
298 | |||
299 | return ret; | ||
300 | } | ||
301 | |||
302 | static const struct file_operations wm831x_wdt_fops = { | ||
303 | .owner = THIS_MODULE, | ||
304 | .llseek = no_llseek, | ||
305 | .write = wm831x_wdt_write, | ||
306 | .unlocked_ioctl = wm831x_wdt_ioctl, | ||
307 | .open = wm831x_wdt_open, | ||
308 | .release = wm831x_wdt_release, | ||
309 | }; | ||
310 | |||
311 | static struct miscdevice wm831x_wdt_miscdev = { | ||
312 | .minor = WATCHDOG_MINOR, | ||
313 | .name = "watchdog", | ||
314 | .fops = &wm831x_wdt_fops, | ||
315 | }; | ||
316 | |||
317 | static int __devinit wm831x_wdt_probe(struct platform_device *pdev) | ||
318 | { | ||
319 | struct wm831x_pdata *chip_pdata; | ||
320 | struct wm831x_watchdog_pdata *pdata; | ||
321 | int reg, ret; | ||
322 | |||
323 | wm831x = dev_get_drvdata(pdev->dev.parent); | ||
324 | |||
325 | ret = wm831x_reg_read(wm831x, WM831X_WATCHDOG); | ||
326 | if (ret < 0) { | ||
327 | dev_err(wm831x->dev, "Failed to read watchdog status: %d\n", | ||
328 | ret); | ||
329 | goto err; | ||
330 | } | ||
331 | reg = ret; | ||
332 | |||
333 | if (reg & WM831X_WDOG_DEBUG) | ||
334 | dev_warn(wm831x->dev, "Watchdog is paused\n"); | ||
335 | |||
336 | /* Apply any configuration */ | ||
337 | if (pdev->dev.parent->platform_data) { | ||
338 | chip_pdata = pdev->dev.parent->platform_data; | ||
339 | pdata = chip_pdata->watchdog; | ||
340 | } else { | ||
341 | pdata = NULL; | ||
342 | } | ||
343 | |||
344 | if (pdata) { | ||
345 | reg &= ~(WM831X_WDOG_SECACT_MASK | WM831X_WDOG_PRIMACT_MASK | | ||
346 | WM831X_WDOG_RST_SRC); | ||
347 | |||
348 | reg |= pdata->primary << WM831X_WDOG_PRIMACT_SHIFT; | ||
349 | reg |= pdata->secondary << WM831X_WDOG_SECACT_SHIFT; | ||
350 | reg |= pdata->software << WM831X_WDOG_RST_SRC_SHIFT; | ||
351 | |||
352 | if (pdata->update_gpio) { | ||
353 | ret = gpio_request(pdata->update_gpio, | ||
354 | "Watchdog update"); | ||
355 | if (ret < 0) { | ||
356 | dev_err(wm831x->dev, | ||
357 | "Failed to request update GPIO: %d\n", | ||
358 | ret); | ||
359 | goto err; | ||
360 | } | ||
361 | |||
362 | ret = gpio_direction_output(pdata->update_gpio, 0); | ||
363 | if (ret != 0) { | ||
364 | dev_err(wm831x->dev, | ||
365 | "gpio_direction_output returned: %d\n", | ||
366 | ret); | ||
367 | goto err_gpio; | ||
368 | } | ||
369 | |||
370 | update_gpio = pdata->update_gpio; | ||
371 | |||
372 | /* Make sure the watchdog takes hardware updates */ | ||
373 | reg |= WM831X_WDOG_RST_SRC; | ||
374 | } | ||
375 | |||
376 | ret = wm831x_reg_unlock(wm831x); | ||
377 | if (ret == 0) { | ||
378 | ret = wm831x_reg_write(wm831x, WM831X_WATCHDOG, reg); | ||
379 | wm831x_reg_lock(wm831x); | ||
380 | } else { | ||
381 | dev_err(wm831x->dev, | ||
382 | "Failed to unlock security key: %d\n", ret); | ||
383 | goto err_gpio; | ||
384 | } | ||
385 | } | ||
386 | |||
387 | wm831x_wdt_miscdev.parent = &pdev->dev; | ||
388 | |||
389 | ret = misc_register(&wm831x_wdt_miscdev); | ||
390 | if (ret != 0) { | ||
391 | dev_err(wm831x->dev, "Failed to register miscdev: %d\n", ret); | ||
392 | goto err_gpio; | ||
393 | } | ||
394 | |||
395 | return 0; | ||
396 | |||
397 | err_gpio: | ||
398 | if (update_gpio) { | ||
399 | gpio_free(update_gpio); | ||
400 | update_gpio = 0; | ||
401 | } | ||
402 | err: | ||
403 | return ret; | ||
404 | } | ||
405 | |||
406 | static int __devexit wm831x_wdt_remove(struct platform_device *pdev) | ||
407 | { | ||
408 | if (update_gpio) { | ||
409 | gpio_free(update_gpio); | ||
410 | update_gpio = 0; | ||
411 | } | ||
412 | |||
413 | misc_deregister(&wm831x_wdt_miscdev); | ||
414 | |||
415 | return 0; | ||
416 | } | ||
417 | |||
418 | static struct platform_driver wm831x_wdt_driver = { | ||
419 | .probe = wm831x_wdt_probe, | ||
420 | .remove = __devexit_p(wm831x_wdt_remove), | ||
421 | .driver = { | ||
422 | .name = "wm831x-watchdog", | ||
423 | }, | ||
424 | }; | ||
425 | |||
426 | static int __init wm831x_wdt_init(void) | ||
427 | { | ||
428 | return platform_driver_register(&wm831x_wdt_driver); | ||
429 | } | ||
430 | module_init(wm831x_wdt_init); | ||
431 | |||
432 | static void __exit wm831x_wdt_exit(void) | ||
433 | { | ||
434 | platform_driver_unregister(&wm831x_wdt_driver); | ||
435 | } | ||
436 | module_exit(wm831x_wdt_exit); | ||
437 | |||
438 | MODULE_AUTHOR("Mark Brown"); | ||
439 | MODULE_DESCRIPTION("WM831x Watchdog"); | ||
440 | MODULE_LICENSE("GPL"); | ||
441 | MODULE_ALIAS("platform:wm831x-watchdog"); | ||
diff --git a/drivers/xen/evtchn.c b/drivers/xen/evtchn.c index af031950f9b1..79bedba44fee 100644 --- a/drivers/xen/evtchn.c +++ b/drivers/xen/evtchn.c | |||
@@ -38,7 +38,6 @@ | |||
38 | #include <linux/string.h> | 38 | #include <linux/string.h> |
39 | #include <linux/errno.h> | 39 | #include <linux/errno.h> |
40 | #include <linux/fs.h> | 40 | #include <linux/fs.h> |
41 | #include <linux/errno.h> | ||
42 | #include <linux/miscdevice.h> | 41 | #include <linux/miscdevice.h> |
43 | #include <linux/major.h> | 42 | #include <linux/major.h> |
44 | #include <linux/proc_fs.h> | 43 | #include <linux/proc_fs.h> |