diff options
Diffstat (limited to 'drivers')
62 files changed, 5060 insertions, 1015 deletions
diff --git a/drivers/char/hvc_iucv.c b/drivers/char/hvc_iucv.c index 5ea7d7713fca..a53496828b76 100644 --- a/drivers/char/hvc_iucv.c +++ b/drivers/char/hvc_iucv.c | |||
@@ -1,26 +1,30 @@ | |||
1 | /* | 1 | /* |
2 | * hvc_iucv.c - z/VM IUCV back-end for the Hypervisor Console (HVC) | 2 | * hvc_iucv.c - z/VM IUCV hypervisor console (HVC) device driver |
3 | * | 3 | * |
4 | * This back-end for HVC provides terminal access via | 4 | * This HVC device driver provides terminal access using |
5 | * z/VM IUCV communication paths. | 5 | * z/VM IUCV communication paths. |
6 | * | 6 | * |
7 | * Copyright IBM Corp. 2008. | 7 | * Copyright IBM Corp. 2008 |
8 | * | 8 | * |
9 | * Author(s): Hendrik Brueckner <brueckner@linux.vnet.ibm.com> | 9 | * Author(s): Hendrik Brueckner <brueckner@linux.vnet.ibm.com> |
10 | */ | 10 | */ |
11 | #define KMSG_COMPONENT "hvc_iucv" | 11 | #define KMSG_COMPONENT "hvc_iucv" |
12 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt | ||
12 | 13 | ||
13 | #include <linux/types.h> | 14 | #include <linux/types.h> |
14 | #include <asm/ebcdic.h> | 15 | #include <asm/ebcdic.h> |
16 | #include <linux/delay.h> | ||
17 | #include <linux/init.h> | ||
15 | #include <linux/mempool.h> | 18 | #include <linux/mempool.h> |
16 | #include <linux/module.h> | 19 | #include <linux/module.h> |
17 | #include <linux/tty.h> | 20 | #include <linux/tty.h> |
21 | #include <linux/wait.h> | ||
18 | #include <net/iucv/iucv.h> | 22 | #include <net/iucv/iucv.h> |
19 | 23 | ||
20 | #include "hvc_console.h" | 24 | #include "hvc_console.h" |
21 | 25 | ||
22 | 26 | ||
23 | /* HVC backend for z/VM IUCV */ | 27 | /* General device driver settings */ |
24 | #define HVC_IUCV_MAGIC 0xc9e4c3e5 | 28 | #define HVC_IUCV_MAGIC 0xc9e4c3e5 |
25 | #define MAX_HVC_IUCV_LINES HVC_ALLOC_TTY_ADAPTERS | 29 | #define MAX_HVC_IUCV_LINES HVC_ALLOC_TTY_ADAPTERS |
26 | #define MEMPOOL_MIN_NR (PAGE_SIZE / sizeof(struct iucv_tty_buffer)/4) | 30 | #define MEMPOOL_MIN_NR (PAGE_SIZE / sizeof(struct iucv_tty_buffer)/4) |
@@ -33,14 +37,14 @@ | |||
33 | #define MSG_TYPE_WINSIZE 0x08 /* Terminal window size update */ | 37 | #define MSG_TYPE_WINSIZE 0x08 /* Terminal window size update */ |
34 | #define MSG_TYPE_DATA 0x10 /* Terminal data */ | 38 | #define MSG_TYPE_DATA 0x10 /* Terminal data */ |
35 | 39 | ||
36 | #define MSG_SIZE(s) ((s) + offsetof(struct iucv_tty_msg, data)) | ||
37 | struct iucv_tty_msg { | 40 | struct iucv_tty_msg { |
38 | u8 version; /* Message version */ | 41 | u8 version; /* Message version */ |
39 | u8 type; /* Message type */ | 42 | u8 type; /* Message type */ |
40 | #define MSG_MAX_DATALEN (~(u16)0) | 43 | #define MSG_MAX_DATALEN ((u16)(~0)) |
41 | u16 datalen; /* Payload length */ | 44 | u16 datalen; /* Payload length */ |
42 | u8 data[]; /* Payload buffer */ | 45 | u8 data[]; /* Payload buffer */ |
43 | } __attribute__((packed)); | 46 | } __attribute__((packed)); |
47 | #define MSG_SIZE(s) ((s) + offsetof(struct iucv_tty_msg, data)) | ||
44 | 48 | ||
45 | enum iucv_state_t { | 49 | enum iucv_state_t { |
46 | IUCV_DISCONN = 0, | 50 | IUCV_DISCONN = 0, |
@@ -54,19 +58,26 @@ enum tty_state_t { | |||
54 | }; | 58 | }; |
55 | 59 | ||
56 | struct hvc_iucv_private { | 60 | struct hvc_iucv_private { |
57 | struct hvc_struct *hvc; /* HVC console struct reference */ | 61 | struct hvc_struct *hvc; /* HVC struct reference */ |
58 | u8 srv_name[8]; /* IUCV service name (ebcdic) */ | 62 | u8 srv_name[8]; /* IUCV service name (ebcdic) */ |
63 | unsigned char is_console; /* Linux console usage flag */ | ||
59 | enum iucv_state_t iucv_state; /* IUCV connection status */ | 64 | enum iucv_state_t iucv_state; /* IUCV connection status */ |
60 | enum tty_state_t tty_state; /* TTY status */ | 65 | enum tty_state_t tty_state; /* TTY status */ |
61 | struct iucv_path *path; /* IUCV path pointer */ | 66 | struct iucv_path *path; /* IUCV path pointer */ |
62 | spinlock_t lock; /* hvc_iucv_private lock */ | 67 | spinlock_t lock; /* hvc_iucv_private lock */ |
68 | #define SNDBUF_SIZE (PAGE_SIZE) /* must be < MSG_MAX_DATALEN */ | ||
69 | void *sndbuf; /* send buffer */ | ||
70 | size_t sndbuf_len; /* length of send buffer */ | ||
71 | #define QUEUE_SNDBUF_DELAY (HZ / 25) | ||
72 | struct delayed_work sndbuf_work; /* work: send iucv msg(s) */ | ||
73 | wait_queue_head_t sndbuf_waitq; /* wait for send completion */ | ||
63 | struct list_head tty_outqueue; /* outgoing IUCV messages */ | 74 | struct list_head tty_outqueue; /* outgoing IUCV messages */ |
64 | struct list_head tty_inqueue; /* incoming IUCV messages */ | 75 | struct list_head tty_inqueue; /* incoming IUCV messages */ |
65 | }; | 76 | }; |
66 | 77 | ||
67 | struct iucv_tty_buffer { | 78 | struct iucv_tty_buffer { |
68 | struct list_head list; /* list pointer */ | 79 | struct list_head list; /* list pointer */ |
69 | struct iucv_message msg; /* store an incoming IUCV message */ | 80 | struct iucv_message msg; /* store an IUCV message */ |
70 | size_t offset; /* data buffer offset */ | 81 | size_t offset; /* data buffer offset */ |
71 | struct iucv_tty_msg *mbuf; /* buffer to store input/output data */ | 82 | struct iucv_tty_msg *mbuf; /* buffer to store input/output data */ |
72 | }; | 83 | }; |
@@ -78,11 +89,12 @@ static void hvc_iucv_msg_pending(struct iucv_path *, struct iucv_message *); | |||
78 | static void hvc_iucv_msg_complete(struct iucv_path *, struct iucv_message *); | 89 | static void hvc_iucv_msg_complete(struct iucv_path *, struct iucv_message *); |
79 | 90 | ||
80 | 91 | ||
81 | /* Kernel module parameters */ | 92 | /* Kernel module parameter: use one terminal device as default */ |
82 | static unsigned long hvc_iucv_devices; | 93 | static unsigned long hvc_iucv_devices = 1; |
83 | 94 | ||
84 | /* Array of allocated hvc iucv tty lines... */ | 95 | /* Array of allocated hvc iucv tty lines... */ |
85 | static struct hvc_iucv_private *hvc_iucv_table[MAX_HVC_IUCV_LINES]; | 96 | static struct hvc_iucv_private *hvc_iucv_table[MAX_HVC_IUCV_LINES]; |
97 | #define IUCV_HVC_CON_IDX (0) | ||
86 | 98 | ||
87 | /* Kmem cache and mempool for iucv_tty_buffer elements */ | 99 | /* Kmem cache and mempool for iucv_tty_buffer elements */ |
88 | static struct kmem_cache *hvc_iucv_buffer_cache; | 100 | static struct kmem_cache *hvc_iucv_buffer_cache; |
@@ -112,7 +124,7 @@ struct hvc_iucv_private *hvc_iucv_get_private(uint32_t num) | |||
112 | } | 124 | } |
113 | 125 | ||
114 | /** | 126 | /** |
115 | * alloc_tty_buffer() - Returns a new struct iucv_tty_buffer element. | 127 | * alloc_tty_buffer() - Return a new struct iucv_tty_buffer element. |
116 | * @size: Size of the internal buffer used to store data. | 128 | * @size: Size of the internal buffer used to store data. |
117 | * @flags: Memory allocation flags passed to mempool. | 129 | * @flags: Memory allocation flags passed to mempool. |
118 | * | 130 | * |
@@ -120,7 +132,6 @@ struct hvc_iucv_private *hvc_iucv_get_private(uint32_t num) | |||
120 | * allocates an internal data buffer with the specified size @size. | 132 | * allocates an internal data buffer with the specified size @size. |
121 | * Note: The total message size arises from the internal buffer size and the | 133 | * Note: The total message size arises from the internal buffer size and the |
122 | * members of the iucv_tty_msg structure. | 134 | * members of the iucv_tty_msg structure. |
123 | * | ||
124 | * The function returns NULL if memory allocation has failed. | 135 | * The function returns NULL if memory allocation has failed. |
125 | */ | 136 | */ |
126 | static struct iucv_tty_buffer *alloc_tty_buffer(size_t size, gfp_t flags) | 137 | static struct iucv_tty_buffer *alloc_tty_buffer(size_t size, gfp_t flags) |
@@ -130,7 +141,7 @@ static struct iucv_tty_buffer *alloc_tty_buffer(size_t size, gfp_t flags) | |||
130 | bufp = mempool_alloc(hvc_iucv_mempool, flags); | 141 | bufp = mempool_alloc(hvc_iucv_mempool, flags); |
131 | if (!bufp) | 142 | if (!bufp) |
132 | return NULL; | 143 | return NULL; |
133 | memset(bufp, 0, sizeof(struct iucv_tty_buffer)); | 144 | memset(bufp, 0, sizeof(*bufp)); |
134 | 145 | ||
135 | if (size > 0) { | 146 | if (size > 0) { |
136 | bufp->msg.length = MSG_SIZE(size); | 147 | bufp->msg.length = MSG_SIZE(size); |
@@ -149,9 +160,6 @@ static struct iucv_tty_buffer *alloc_tty_buffer(size_t size, gfp_t flags) | |||
149 | /** | 160 | /** |
150 | * destroy_tty_buffer() - destroy struct iucv_tty_buffer element. | 161 | * destroy_tty_buffer() - destroy struct iucv_tty_buffer element. |
151 | * @bufp: Pointer to a struct iucv_tty_buffer element, SHALL NOT be NULL. | 162 | * @bufp: Pointer to a struct iucv_tty_buffer element, SHALL NOT be NULL. |
152 | * | ||
153 | * The destroy_tty_buffer() function frees the internal data buffer and returns | ||
154 | * the struct iucv_tty_buffer element back to the mempool for freeing. | ||
155 | */ | 163 | */ |
156 | static void destroy_tty_buffer(struct iucv_tty_buffer *bufp) | 164 | static void destroy_tty_buffer(struct iucv_tty_buffer *bufp) |
157 | { | 165 | { |
@@ -161,11 +169,7 @@ static void destroy_tty_buffer(struct iucv_tty_buffer *bufp) | |||
161 | 169 | ||
162 | /** | 170 | /** |
163 | * destroy_tty_buffer_list() - call destroy_tty_buffer() for each list element. | 171 | * destroy_tty_buffer_list() - call destroy_tty_buffer() for each list element. |
164 | * @list: List head pointer to a list containing struct iucv_tty_buffer | 172 | * @list: List containing struct iucv_tty_buffer elements. |
165 | * elements. | ||
166 | * | ||
167 | * Calls destroy_tty_buffer() for each struct iucv_tty_buffer element in the | ||
168 | * list @list. | ||
169 | */ | 173 | */ |
170 | static void destroy_tty_buffer_list(struct list_head *list) | 174 | static void destroy_tty_buffer_list(struct list_head *list) |
171 | { | 175 | { |
@@ -178,24 +182,24 @@ static void destroy_tty_buffer_list(struct list_head *list) | |||
178 | } | 182 | } |
179 | 183 | ||
180 | /** | 184 | /** |
181 | * hvc_iucv_write() - Receive IUCV message write data to HVC console buffer. | 185 | * hvc_iucv_write() - Receive IUCV message & write data to HVC buffer. |
182 | * @priv: Pointer to hvc_iucv_private structure. | 186 | * @priv: Pointer to struct hvc_iucv_private |
183 | * @buf: HVC console buffer for writing received terminal data. | 187 | * @buf: HVC buffer for writing received terminal data. |
184 | * @count: HVC console buffer size. | 188 | * @count: HVC buffer size. |
185 | * @has_more_data: Pointer to an int variable. | 189 | * @has_more_data: Pointer to an int variable. |
186 | * | 190 | * |
187 | * The function picks up pending messages from the input queue and receives | 191 | * The function picks up pending messages from the input queue and receives |
188 | * the message data that is then written to the specified buffer @buf. | 192 | * the message data that is then written to the specified buffer @buf. |
189 | * If the buffer size @count is less than the data message size, then the | 193 | * If the buffer size @count is less than the data message size, the |
190 | * message is kept on the input queue and @has_more_data is set to 1. | 194 | * message is kept on the input queue and @has_more_data is set to 1. |
191 | * If the message data has been entirely written, the message is removed from | 195 | * If all message data has been written, the message is removed from |
192 | * the input queue. | 196 | * the input queue. |
193 | * | 197 | * |
194 | * The function returns the number of bytes written to the terminal, zero if | 198 | * The function returns the number of bytes written to the terminal, zero if |
195 | * there are no pending data messages available or if there is no established | 199 | * there are no pending data messages available or if there is no established |
196 | * IUCV path. | 200 | * IUCV path. |
197 | * If the IUCV path has been severed, then -EPIPE is returned to cause a | 201 | * If the IUCV path has been severed, then -EPIPE is returned to cause a |
198 | * hang up (that is issued by the HVC console layer). | 202 | * hang up (that is issued by the HVC layer). |
199 | */ | 203 | */ |
200 | static int hvc_iucv_write(struct hvc_iucv_private *priv, | 204 | static int hvc_iucv_write(struct hvc_iucv_private *priv, |
201 | char *buf, int count, int *has_more_data) | 205 | char *buf, int count, int *has_more_data) |
@@ -204,12 +208,12 @@ static int hvc_iucv_write(struct hvc_iucv_private *priv, | |||
204 | int written; | 208 | int written; |
205 | int rc; | 209 | int rc; |
206 | 210 | ||
207 | /* Immediately return if there is no IUCV connection */ | 211 | /* immediately return if there is no IUCV connection */ |
208 | if (priv->iucv_state == IUCV_DISCONN) | 212 | if (priv->iucv_state == IUCV_DISCONN) |
209 | return 0; | 213 | return 0; |
210 | 214 | ||
211 | /* If the IUCV path has been severed, return -EPIPE to inform the | 215 | /* if the IUCV path has been severed, return -EPIPE to inform the |
212 | * hvc console layer to hang up the tty device. */ | 216 | * HVC layer to hang up the tty device. */ |
213 | if (priv->iucv_state == IUCV_SEVERED) | 217 | if (priv->iucv_state == IUCV_SEVERED) |
214 | return -EPIPE; | 218 | return -EPIPE; |
215 | 219 | ||
@@ -217,7 +221,7 @@ static int hvc_iucv_write(struct hvc_iucv_private *priv, | |||
217 | if (list_empty(&priv->tty_inqueue)) | 221 | if (list_empty(&priv->tty_inqueue)) |
218 | return 0; | 222 | return 0; |
219 | 223 | ||
220 | /* receive a iucv message and flip data to the tty (ldisc) */ | 224 | /* receive an iucv message and flip data to the tty (ldisc) */ |
221 | rb = list_first_entry(&priv->tty_inqueue, struct iucv_tty_buffer, list); | 225 | rb = list_first_entry(&priv->tty_inqueue, struct iucv_tty_buffer, list); |
222 | 226 | ||
223 | written = 0; | 227 | written = 0; |
@@ -260,7 +264,7 @@ static int hvc_iucv_write(struct hvc_iucv_private *priv, | |||
260 | case MSG_TYPE_WINSIZE: | 264 | case MSG_TYPE_WINSIZE: |
261 | if (rb->mbuf->datalen != sizeof(struct winsize)) | 265 | if (rb->mbuf->datalen != sizeof(struct winsize)) |
262 | break; | 266 | break; |
263 | hvc_resize(priv->hvc, *((struct winsize *)rb->mbuf->data)); | 267 | hvc_resize(priv->hvc, *((struct winsize *) rb->mbuf->data)); |
264 | break; | 268 | break; |
265 | 269 | ||
266 | case MSG_TYPE_ERROR: /* ignored ... */ | 270 | case MSG_TYPE_ERROR: /* ignored ... */ |
@@ -284,10 +288,9 @@ out_written: | |||
284 | * @buf: Pointer to a buffer to store data | 288 | * @buf: Pointer to a buffer to store data |
285 | * @count: Size of buffer available for writing | 289 | * @count: Size of buffer available for writing |
286 | * | 290 | * |
287 | * The hvc_console thread calls this method to read characters from | 291 | * The HVC thread calls this method to read characters from the back-end. |
288 | * the terminal backend. If an IUCV communication path has been established, | 292 | * If an IUCV communication path has been established, pending IUCV messages |
289 | * pending IUCV messages are received and data is copied into buffer @buf | 293 | * are received and data is copied into buffer @buf up to @count bytes. |
290 | * up to @count bytes. | ||
291 | * | 294 | * |
292 | * Locking: The routine gets called under an irqsave() spinlock; and | 295 | * Locking: The routine gets called under an irqsave() spinlock; and |
293 | * the routine locks the struct hvc_iucv_private->lock to call | 296 | * the routine locks the struct hvc_iucv_private->lock to call |
@@ -318,66 +321,122 @@ static int hvc_iucv_get_chars(uint32_t vtermno, char *buf, int count) | |||
318 | } | 321 | } |
319 | 322 | ||
320 | /** | 323 | /** |
321 | * hvc_iucv_send() - Send an IUCV message containing terminal data. | 324 | * hvc_iucv_queue() - Buffer terminal data for sending. |
322 | * @priv: Pointer to struct hvc_iucv_private instance. | 325 | * @priv: Pointer to struct hvc_iucv_private instance. |
323 | * @buf: Buffer containing data to send. | 326 | * @buf: Buffer containing data to send. |
324 | * @size: Size of buffer and amount of data to send. | 327 | * @count: Size of buffer and amount of data to send. |
328 | * | ||
329 | * The function queues data for sending. To actually send the buffered data, | ||
330 | * a work queue function is scheduled (with QUEUE_SNDBUF_DELAY). | ||
331 | * The function returns the number of data bytes that has been buffered. | ||
325 | * | 332 | * |
326 | * If an IUCV communication path is established, the function copies the buffer | 333 | * If the device is not connected, data is ignored and the function returns |
327 | * data to a newly allocated struct iucv_tty_buffer element, sends the data and | 334 | * @count. |
328 | * puts the element to the outqueue. | 335 | * If the buffer is full, the function returns 0. |
336 | * If an existing IUCV communicaton path has been severed, -EPIPE is returned | ||
337 | * (that can be passed to HVC layer to cause a tty hangup). | ||
338 | */ | ||
339 | static int hvc_iucv_queue(struct hvc_iucv_private *priv, const char *buf, | ||
340 | int count) | ||
341 | { | ||
342 | size_t len; | ||
343 | |||
344 | if (priv->iucv_state == IUCV_DISCONN) | ||
345 | return count; /* ignore data */ | ||
346 | |||
347 | if (priv->iucv_state == IUCV_SEVERED) | ||
348 | return -EPIPE; | ||
349 | |||
350 | len = min_t(size_t, count, SNDBUF_SIZE - priv->sndbuf_len); | ||
351 | if (!len) | ||
352 | return 0; | ||
353 | |||
354 | memcpy(priv->sndbuf + priv->sndbuf_len, buf, len); | ||
355 | priv->sndbuf_len += len; | ||
356 | |||
357 | if (priv->iucv_state == IUCV_CONNECTED) | ||
358 | schedule_delayed_work(&priv->sndbuf_work, QUEUE_SNDBUF_DELAY); | ||
359 | |||
360 | return len; | ||
361 | } | ||
362 | |||
363 | /** | ||
364 | * hvc_iucv_send() - Send an IUCV message containing terminal data. | ||
365 | * @priv: Pointer to struct hvc_iucv_private instance. | ||
329 | * | 366 | * |
330 | * If there is no IUCV communication path established, the function returns 0. | 367 | * If an IUCV communication path has been established, the buffered output data |
331 | * If an existing IUCV communicaton path has been severed, the function returns | 368 | * is sent via an IUCV message and the number of bytes sent is returned. |
332 | * -EPIPE (can be passed to HVC layer to cause a tty hangup). | 369 | * Returns 0 if there is no established IUCV communication path or |
370 | * -EPIPE if an existing IUCV communicaton path has been severed. | ||
333 | */ | 371 | */ |
334 | static int hvc_iucv_send(struct hvc_iucv_private *priv, const char *buf, | 372 | static int hvc_iucv_send(struct hvc_iucv_private *priv) |
335 | int count) | ||
336 | { | 373 | { |
337 | struct iucv_tty_buffer *sb; | 374 | struct iucv_tty_buffer *sb; |
338 | int rc; | 375 | int rc, len; |
339 | u16 len; | ||
340 | 376 | ||
341 | if (priv->iucv_state == IUCV_SEVERED) | 377 | if (priv->iucv_state == IUCV_SEVERED) |
342 | return -EPIPE; | 378 | return -EPIPE; |
343 | 379 | ||
344 | if (priv->iucv_state == IUCV_DISCONN) | 380 | if (priv->iucv_state == IUCV_DISCONN) |
345 | return 0; | 381 | return -EIO; |
346 | 382 | ||
347 | len = min_t(u16, MSG_MAX_DATALEN, count); | 383 | if (!priv->sndbuf_len) |
384 | return 0; | ||
348 | 385 | ||
349 | /* allocate internal buffer to store msg data and also compute total | 386 | /* allocate internal buffer to store msg data and also compute total |
350 | * message length */ | 387 | * message length */ |
351 | sb = alloc_tty_buffer(len, GFP_ATOMIC); | 388 | sb = alloc_tty_buffer(priv->sndbuf_len, GFP_ATOMIC); |
352 | if (!sb) | 389 | if (!sb) |
353 | return -ENOMEM; | 390 | return -ENOMEM; |
354 | 391 | ||
355 | sb->mbuf->datalen = len; | 392 | memcpy(sb->mbuf->data, priv->sndbuf, priv->sndbuf_len); |
356 | memcpy(sb->mbuf->data, buf, len); | 393 | sb->mbuf->datalen = (u16) priv->sndbuf_len; |
394 | sb->msg.length = MSG_SIZE(sb->mbuf->datalen); | ||
357 | 395 | ||
358 | list_add_tail(&sb->list, &priv->tty_outqueue); | 396 | list_add_tail(&sb->list, &priv->tty_outqueue); |
359 | 397 | ||
360 | rc = __iucv_message_send(priv->path, &sb->msg, 0, 0, | 398 | rc = __iucv_message_send(priv->path, &sb->msg, 0, 0, |
361 | (void *) sb->mbuf, sb->msg.length); | 399 | (void *) sb->mbuf, sb->msg.length); |
362 | if (rc) { | 400 | if (rc) { |
401 | /* drop the message here; however we might want to handle | ||
402 | * 0x03 (msg limit reached) by trying again... */ | ||
363 | list_del(&sb->list); | 403 | list_del(&sb->list); |
364 | destroy_tty_buffer(sb); | 404 | destroy_tty_buffer(sb); |
365 | len = 0; | ||
366 | } | 405 | } |
406 | len = priv->sndbuf_len; | ||
407 | priv->sndbuf_len = 0; | ||
367 | 408 | ||
368 | return len; | 409 | return len; |
369 | } | 410 | } |
370 | 411 | ||
371 | /** | 412 | /** |
413 | * hvc_iucv_sndbuf_work() - Send buffered data over IUCV | ||
414 | * @work: Work structure. | ||
415 | * | ||
416 | * This work queue function sends buffered output data over IUCV and, | ||
417 | * if not all buffered data could be sent, reschedules itself. | ||
418 | */ | ||
419 | static void hvc_iucv_sndbuf_work(struct work_struct *work) | ||
420 | { | ||
421 | struct hvc_iucv_private *priv; | ||
422 | |||
423 | priv = container_of(work, struct hvc_iucv_private, sndbuf_work.work); | ||
424 | if (!priv) | ||
425 | return; | ||
426 | |||
427 | spin_lock_bh(&priv->lock); | ||
428 | hvc_iucv_send(priv); | ||
429 | spin_unlock_bh(&priv->lock); | ||
430 | } | ||
431 | |||
432 | /** | ||
372 | * hvc_iucv_put_chars() - HVC put_chars operation. | 433 | * hvc_iucv_put_chars() - HVC put_chars operation. |
373 | * @vtermno: HVC virtual terminal number. | 434 | * @vtermno: HVC virtual terminal number. |
374 | * @buf: Pointer to an buffer to read data from | 435 | * @buf: Pointer to an buffer to read data from |
375 | * @count: Size of buffer available for reading | 436 | * @count: Size of buffer available for reading |
376 | * | 437 | * |
377 | * The hvc_console thread calls this method to write characters from | 438 | * The HVC thread calls this method to write characters to the back-end. |
378 | * to the terminal backend. | 439 | * The function calls hvc_iucv_queue() to queue terminal data for sending. |
379 | * The function calls hvc_iucv_send() under the lock of the | ||
380 | * struct hvc_iucv_private instance that corresponds to the tty @vtermno. | ||
381 | * | 440 | * |
382 | * Locking: The method gets called under an irqsave() spinlock; and | 441 | * Locking: The method gets called under an irqsave() spinlock; and |
383 | * locks struct hvc_iucv_private->lock. | 442 | * locks struct hvc_iucv_private->lock. |
@@ -385,7 +444,7 @@ static int hvc_iucv_send(struct hvc_iucv_private *priv, const char *buf, | |||
385 | static int hvc_iucv_put_chars(uint32_t vtermno, const char *buf, int count) | 444 | static int hvc_iucv_put_chars(uint32_t vtermno, const char *buf, int count) |
386 | { | 445 | { |
387 | struct hvc_iucv_private *priv = hvc_iucv_get_private(vtermno); | 446 | struct hvc_iucv_private *priv = hvc_iucv_get_private(vtermno); |
388 | int sent; | 447 | int queued; |
389 | 448 | ||
390 | if (count <= 0) | 449 | if (count <= 0) |
391 | return 0; | 450 | return 0; |
@@ -394,10 +453,10 @@ static int hvc_iucv_put_chars(uint32_t vtermno, const char *buf, int count) | |||
394 | return -ENODEV; | 453 | return -ENODEV; |
395 | 454 | ||
396 | spin_lock(&priv->lock); | 455 | spin_lock(&priv->lock); |
397 | sent = hvc_iucv_send(priv, buf, count); | 456 | queued = hvc_iucv_queue(priv, buf, count); |
398 | spin_unlock(&priv->lock); | 457 | spin_unlock(&priv->lock); |
399 | 458 | ||
400 | return sent; | 459 | return queued; |
401 | } | 460 | } |
402 | 461 | ||
403 | /** | 462 | /** |
@@ -406,7 +465,7 @@ static int hvc_iucv_put_chars(uint32_t vtermno, const char *buf, int count) | |||
406 | * @id: Additional data (originally passed to hvc_alloc): the index of an struct | 465 | * @id: Additional data (originally passed to hvc_alloc): the index of an struct |
407 | * hvc_iucv_private instance. | 466 | * hvc_iucv_private instance. |
408 | * | 467 | * |
409 | * The function sets the tty state to TTY_OPEN for the struct hvc_iucv_private | 468 | * The function sets the tty state to TTY_OPENED for the struct hvc_iucv_private |
410 | * instance that is derived from @id. Always returns 0. | 469 | * instance that is derived from @id. Always returns 0. |
411 | * | 470 | * |
412 | * Locking: struct hvc_iucv_private->lock, spin_lock_bh | 471 | * Locking: struct hvc_iucv_private->lock, spin_lock_bh |
@@ -427,12 +486,8 @@ static int hvc_iucv_notifier_add(struct hvc_struct *hp, int id) | |||
427 | } | 486 | } |
428 | 487 | ||
429 | /** | 488 | /** |
430 | * hvc_iucv_cleanup() - Clean up function if the tty portion is finally closed. | 489 | * hvc_iucv_cleanup() - Clean up and reset a z/VM IUCV HVC instance. |
431 | * @priv: Pointer to the struct hvc_iucv_private instance. | 490 | * @priv: Pointer to the struct hvc_iucv_private instance. |
432 | * | ||
433 | * The functions severs the established IUCV communication path (if any), and | ||
434 | * destroy struct iucv_tty_buffer elements from the in- and outqueue. Finally, | ||
435 | * the functions resets the states to TTY_CLOSED and IUCV_DISCONN. | ||
436 | */ | 491 | */ |
437 | static void hvc_iucv_cleanup(struct hvc_iucv_private *priv) | 492 | static void hvc_iucv_cleanup(struct hvc_iucv_private *priv) |
438 | { | 493 | { |
@@ -441,25 +496,62 @@ static void hvc_iucv_cleanup(struct hvc_iucv_private *priv) | |||
441 | 496 | ||
442 | priv->tty_state = TTY_CLOSED; | 497 | priv->tty_state = TTY_CLOSED; |
443 | priv->iucv_state = IUCV_DISCONN; | 498 | priv->iucv_state = IUCV_DISCONN; |
499 | |||
500 | priv->sndbuf_len = 0; | ||
444 | } | 501 | } |
445 | 502 | ||
446 | /** | 503 | /** |
447 | * hvc_iucv_notifier_hangup() - HVC notifier for tty hangups. | 504 | * tty_outqueue_empty() - Test if the tty outq is empty |
448 | * @hp: Pointer to the HVC device (struct hvc_struct) | 505 | * @priv: Pointer to struct hvc_iucv_private instance. |
449 | * @id: Additional data (originally passed to hvc_alloc): the index of an struct | 506 | */ |
450 | * hvc_iucv_private instance. | 507 | static inline int tty_outqueue_empty(struct hvc_iucv_private *priv) |
508 | { | ||
509 | int rc; | ||
510 | |||
511 | spin_lock_bh(&priv->lock); | ||
512 | rc = list_empty(&priv->tty_outqueue); | ||
513 | spin_unlock_bh(&priv->lock); | ||
514 | |||
515 | return rc; | ||
516 | } | ||
517 | |||
518 | /** | ||
519 | * flush_sndbuf_sync() - Flush send buffer and wait for completion | ||
520 | * @priv: Pointer to struct hvc_iucv_private instance. | ||
451 | * | 521 | * |
452 | * This routine notifies the HVC backend that a tty hangup (carrier loss, | 522 | * The routine cancels a pending sndbuf work, calls hvc_iucv_send() |
453 | * virtual or otherwise) has occured. | 523 | * to flush any buffered terminal output data and waits for completion. |
524 | */ | ||
525 | static void flush_sndbuf_sync(struct hvc_iucv_private *priv) | ||
526 | { | ||
527 | int sync_wait; | ||
528 | |||
529 | cancel_delayed_work_sync(&priv->sndbuf_work); | ||
530 | |||
531 | spin_lock_bh(&priv->lock); | ||
532 | hvc_iucv_send(priv); /* force sending buffered data */ | ||
533 | sync_wait = !list_empty(&priv->tty_outqueue); /* anything queued ? */ | ||
534 | spin_unlock_bh(&priv->lock); | ||
535 | |||
536 | if (sync_wait) | ||
537 | wait_event_timeout(priv->sndbuf_waitq, | ||
538 | tty_outqueue_empty(priv), HZ); | ||
539 | } | ||
540 | |||
541 | /** | ||
542 | * hvc_iucv_notifier_hangup() - HVC notifier for TTY hangups. | ||
543 | * @hp: Pointer to the HVC device (struct hvc_struct) | ||
544 | * @id: Additional data (originally passed to hvc_alloc): | ||
545 | * the index of an struct hvc_iucv_private instance. | ||
454 | * | 546 | * |
455 | * The HVC backend for z/VM IUCV ignores virtual hangups (vhangup()), to keep | 547 | * This routine notifies the HVC back-end that a tty hangup (carrier loss, |
456 | * an existing IUCV communication path established. | 548 | * virtual or otherwise) has occured. |
549 | * The z/VM IUCV HVC device driver ignores virtual hangups (vhangup()) | ||
550 | * to keep an existing IUCV communication path established. | ||
457 | * (Background: vhangup() is called from user space (by getty or login) to | 551 | * (Background: vhangup() is called from user space (by getty or login) to |
458 | * disable writing to the tty by other applications). | 552 | * disable writing to the tty by other applications). |
459 | * | 553 | * If the tty has been opened and an established IUCV path has been severed |
460 | * If the tty has been opened (e.g. getty) and an established IUCV path has been | 554 | * (we caused the tty hangup), the function calls hvc_iucv_cleanup(). |
461 | * severed (we caused the tty hangup in that case), then the functions invokes | ||
462 | * hvc_iucv_cleanup() to clean up. | ||
463 | * | 555 | * |
464 | * Locking: struct hvc_iucv_private->lock | 556 | * Locking: struct hvc_iucv_private->lock |
465 | */ | 557 | */ |
@@ -471,12 +563,12 @@ static void hvc_iucv_notifier_hangup(struct hvc_struct *hp, int id) | |||
471 | if (!priv) | 563 | if (!priv) |
472 | return; | 564 | return; |
473 | 565 | ||
566 | flush_sndbuf_sync(priv); | ||
567 | |||
474 | spin_lock_bh(&priv->lock); | 568 | spin_lock_bh(&priv->lock); |
475 | /* NOTE: If the hangup was scheduled by ourself (from the iucv | 569 | /* NOTE: If the hangup was scheduled by ourself (from the iucv |
476 | * path_servered callback [IUCV_SEVERED]), then we have to | 570 | * path_servered callback [IUCV_SEVERED]), we have to clean up |
477 | * finally clean up the tty backend structure and set state to | 571 | * our structure and to set state to TTY_CLOSED. |
478 | * TTY_CLOSED. | ||
479 | * | ||
480 | * If the tty was hung up otherwise (e.g. vhangup()), then we | 572 | * If the tty was hung up otherwise (e.g. vhangup()), then we |
481 | * ignore this hangup and keep an established IUCV path open... | 573 | * ignore this hangup and keep an established IUCV path open... |
482 | * (...the reason is that we are not able to connect back to the | 574 | * (...the reason is that we are not able to connect back to the |
@@ -494,10 +586,9 @@ static void hvc_iucv_notifier_hangup(struct hvc_struct *hp, int id) | |||
494 | * @id: Additional data (originally passed to hvc_alloc): | 586 | * @id: Additional data (originally passed to hvc_alloc): |
495 | * the index of an struct hvc_iucv_private instance. | 587 | * the index of an struct hvc_iucv_private instance. |
496 | * | 588 | * |
497 | * This routine notifies the HVC backend that the last tty device file | 589 | * This routine notifies the HVC back-end that the last tty device fd has been |
498 | * descriptor has been closed. | 590 | * closed. The function calls hvc_iucv_cleanup() to clean up the struct |
499 | * The function calls hvc_iucv_cleanup() to clean up the struct hvc_iucv_private | 591 | * hvc_iucv_private instance. |
500 | * instance. | ||
501 | * | 592 | * |
502 | * Locking: struct hvc_iucv_private->lock | 593 | * Locking: struct hvc_iucv_private->lock |
503 | */ | 594 | */ |
@@ -510,6 +601,8 @@ static void hvc_iucv_notifier_del(struct hvc_struct *hp, int id) | |||
510 | if (!priv) | 601 | if (!priv) |
511 | return; | 602 | return; |
512 | 603 | ||
604 | flush_sndbuf_sync(priv); | ||
605 | |||
513 | spin_lock_bh(&priv->lock); | 606 | spin_lock_bh(&priv->lock); |
514 | path = priv->path; /* save reference to IUCV path */ | 607 | path = priv->path; /* save reference to IUCV path */ |
515 | priv->path = NULL; | 608 | priv->path = NULL; |
@@ -527,20 +620,18 @@ static void hvc_iucv_notifier_del(struct hvc_struct *hp, int id) | |||
527 | /** | 620 | /** |
528 | * hvc_iucv_path_pending() - IUCV handler to process a connection request. | 621 | * hvc_iucv_path_pending() - IUCV handler to process a connection request. |
529 | * @path: Pending path (struct iucv_path) | 622 | * @path: Pending path (struct iucv_path) |
530 | * @ipvmid: Originator z/VM system identifier | 623 | * @ipvmid: z/VM system identifier of originator |
531 | * @ipuser: User specified data for this path | 624 | * @ipuser: User specified data for this path |
532 | * (AF_IUCV: port/service name and originator port) | 625 | * (AF_IUCV: port/service name and originator port) |
533 | * | 626 | * |
534 | * The function uses the @ipuser data to check to determine if the pending | 627 | * The function uses the @ipuser data to determine if the pending path belongs |
535 | * path belongs to a terminal managed by this HVC backend. | 628 | * to a terminal managed by this device driver. |
536 | * If the check is successful, then an additional check is done to ensure | 629 | * If the path belongs to this driver, ensure that the terminal is not accessed |
537 | * that a terminal cannot be accessed multiple times (only one connection | 630 | * multiple times (only one connection to a terminal is allowed). |
538 | * to a terminal is allowed). In that particular case, the pending path is | 631 | * If the terminal is not yet connected, the pending path is accepted and is |
539 | * severed. If it is the first connection, the pending path is accepted and | 632 | * associated to the appropriate struct hvc_iucv_private instance. |
540 | * associated to the struct hvc_iucv_private. The iucv state is updated to | ||
541 | * reflect that a communication path has been established. | ||
542 | * | 633 | * |
543 | * Returns 0 if the path belongs to a terminal managed by the this HVC backend; | 634 | * Returns 0 if @path belongs to a terminal managed by the this device driver; |
544 | * otherwise returns -ENODEV in order to dispatch this path to other handlers. | 635 | * otherwise returns -ENODEV in order to dispatch this path to other handlers. |
545 | * | 636 | * |
546 | * Locking: struct hvc_iucv_private->lock | 637 | * Locking: struct hvc_iucv_private->lock |
@@ -559,7 +650,6 @@ static int hvc_iucv_path_pending(struct iucv_path *path, | |||
559 | priv = hvc_iucv_table[i]; | 650 | priv = hvc_iucv_table[i]; |
560 | break; | 651 | break; |
561 | } | 652 | } |
562 | |||
563 | if (!priv) | 653 | if (!priv) |
564 | return -ENODEV; | 654 | return -ENODEV; |
565 | 655 | ||
@@ -588,6 +678,9 @@ static int hvc_iucv_path_pending(struct iucv_path *path, | |||
588 | priv->path = path; | 678 | priv->path = path; |
589 | priv->iucv_state = IUCV_CONNECTED; | 679 | priv->iucv_state = IUCV_CONNECTED; |
590 | 680 | ||
681 | /* flush buffered output data... */ | ||
682 | schedule_delayed_work(&priv->sndbuf_work, 5); | ||
683 | |||
591 | out_path_handled: | 684 | out_path_handled: |
592 | spin_unlock(&priv->lock); | 685 | spin_unlock(&priv->lock); |
593 | return 0; | 686 | return 0; |
@@ -603,8 +696,7 @@ out_path_handled: | |||
603 | * sets the iucv state to IUCV_SEVERED for the associated struct | 696 | * sets the iucv state to IUCV_SEVERED for the associated struct |
604 | * hvc_iucv_private instance. Later, the IUCV_SEVERED state triggers a tty | 697 | * hvc_iucv_private instance. Later, the IUCV_SEVERED state triggers a tty |
605 | * hangup (hvc_iucv_get_chars() / hvc_iucv_write()). | 698 | * hangup (hvc_iucv_get_chars() / hvc_iucv_write()). |
606 | * | 699 | * If tty portion of the HVC is closed, clean up the outqueue. |
607 | * If tty portion of the HVC is closed then clean up the outqueue in addition. | ||
608 | * | 700 | * |
609 | * Locking: struct hvc_iucv_private->lock | 701 | * Locking: struct hvc_iucv_private->lock |
610 | */ | 702 | */ |
@@ -615,15 +707,25 @@ static void hvc_iucv_path_severed(struct iucv_path *path, u8 ipuser[16]) | |||
615 | spin_lock(&priv->lock); | 707 | spin_lock(&priv->lock); |
616 | priv->iucv_state = IUCV_SEVERED; | 708 | priv->iucv_state = IUCV_SEVERED; |
617 | 709 | ||
618 | /* NOTE: If the tty has not yet been opened by a getty program | 710 | /* If the tty has not yet been opened, clean up the hvc_iucv_private |
619 | * (e.g. to see console messages), then cleanup the | 711 | * structure to allow re-connects. |
620 | * hvc_iucv_private structure to allow re-connects. | 712 | * This is also done for our console device because console hangups |
713 | * are handled specially and no notifier is called by HVC. | ||
714 | * The tty session is active (TTY_OPEN) and ready for re-connects... | ||
621 | * | 715 | * |
622 | * If the tty has been opened, the get_chars() callback returns | 716 | * If it has been opened, let get_chars() return -EPIPE to signal the |
623 | * -EPIPE to signal the hvc console layer to hang up the tty. */ | 717 | * HVC layer to hang up the tty. |
718 | * If so, we need to wake up the HVC thread to call get_chars()... | ||
719 | */ | ||
624 | priv->path = NULL; | 720 | priv->path = NULL; |
625 | if (priv->tty_state == TTY_CLOSED) | 721 | if (priv->tty_state == TTY_CLOSED) |
626 | hvc_iucv_cleanup(priv); | 722 | hvc_iucv_cleanup(priv); |
723 | else | ||
724 | if (priv->is_console) { | ||
725 | hvc_iucv_cleanup(priv); | ||
726 | priv->tty_state = TTY_OPENED; | ||
727 | } else | ||
728 | hvc_kick(); | ||
627 | spin_unlock(&priv->lock); | 729 | spin_unlock(&priv->lock); |
628 | 730 | ||
629 | /* finally sever path (outside of priv->lock due to lock ordering) */ | 731 | /* finally sever path (outside of priv->lock due to lock ordering) */ |
@@ -636,9 +738,9 @@ static void hvc_iucv_path_severed(struct iucv_path *path, u8 ipuser[16]) | |||
636 | * @path: Pending path (struct iucv_path) | 738 | * @path: Pending path (struct iucv_path) |
637 | * @msg: Pointer to the IUCV message | 739 | * @msg: Pointer to the IUCV message |
638 | * | 740 | * |
639 | * The function stores an incoming message on the input queue for later | 741 | * The function puts an incoming message on the input queue for later |
640 | * processing (by hvc_iucv_get_chars() / hvc_iucv_write()). | 742 | * processing (by hvc_iucv_get_chars() / hvc_iucv_write()). |
641 | * However, if the tty has not yet been opened, the message is rejected. | 743 | * If the tty has not yet been opened, the message is rejected. |
642 | * | 744 | * |
643 | * Locking: struct hvc_iucv_private->lock | 745 | * Locking: struct hvc_iucv_private->lock |
644 | */ | 746 | */ |
@@ -648,6 +750,12 @@ static void hvc_iucv_msg_pending(struct iucv_path *path, | |||
648 | struct hvc_iucv_private *priv = path->private; | 750 | struct hvc_iucv_private *priv = path->private; |
649 | struct iucv_tty_buffer *rb; | 751 | struct iucv_tty_buffer *rb; |
650 | 752 | ||
753 | /* reject messages that exceed max size of iucv_tty_msg->datalen */ | ||
754 | if (msg->length > MSG_SIZE(MSG_MAX_DATALEN)) { | ||
755 | iucv_message_reject(path, msg); | ||
756 | return; | ||
757 | } | ||
758 | |||
651 | spin_lock(&priv->lock); | 759 | spin_lock(&priv->lock); |
652 | 760 | ||
653 | /* reject messages if tty has not yet been opened */ | 761 | /* reject messages if tty has not yet been opened */ |
@@ -656,7 +764,7 @@ static void hvc_iucv_msg_pending(struct iucv_path *path, | |||
656 | goto unlock_return; | 764 | goto unlock_return; |
657 | } | 765 | } |
658 | 766 | ||
659 | /* allocate buffer an empty buffer element */ | 767 | /* allocate tty buffer to save iucv msg only */ |
660 | rb = alloc_tty_buffer(0, GFP_ATOMIC); | 768 | rb = alloc_tty_buffer(0, GFP_ATOMIC); |
661 | if (!rb) { | 769 | if (!rb) { |
662 | iucv_message_reject(path, msg); | 770 | iucv_message_reject(path, msg); |
@@ -666,7 +774,7 @@ static void hvc_iucv_msg_pending(struct iucv_path *path, | |||
666 | 774 | ||
667 | list_add_tail(&rb->list, &priv->tty_inqueue); | 775 | list_add_tail(&rb->list, &priv->tty_inqueue); |
668 | 776 | ||
669 | hvc_kick(); /* wakup hvc console thread */ | 777 | hvc_kick(); /* wake up hvc thread */ |
670 | 778 | ||
671 | unlock_return: | 779 | unlock_return: |
672 | spin_unlock(&priv->lock); | 780 | spin_unlock(&priv->lock); |
@@ -677,10 +785,10 @@ unlock_return: | |||
677 | * @path: Pending path (struct iucv_path) | 785 | * @path: Pending path (struct iucv_path) |
678 | * @msg: Pointer to the IUCV message | 786 | * @msg: Pointer to the IUCV message |
679 | * | 787 | * |
680 | * The function is called upon completion of message delivery and the | 788 | * The function is called upon completion of message delivery to remove the |
681 | * message is removed from the outqueue. Additional delivery information | 789 | * message from the outqueue. Additional delivery information can be found |
682 | * can be found in msg->audit: rejected messages (0x040000 (IPADRJCT)) and | 790 | * msg->audit: rejected messages (0x040000 (IPADRJCT)), and |
683 | * purged messages (0x010000 (IPADPGNR)). | 791 | * purged messages (0x010000 (IPADPGNR)). |
684 | * | 792 | * |
685 | * Locking: struct hvc_iucv_private->lock | 793 | * Locking: struct hvc_iucv_private->lock |
686 | */ | 794 | */ |
@@ -697,6 +805,7 @@ static void hvc_iucv_msg_complete(struct iucv_path *path, | |||
697 | list_move(&ent->list, &list_remove); | 805 | list_move(&ent->list, &list_remove); |
698 | break; | 806 | break; |
699 | } | 807 | } |
808 | wake_up(&priv->sndbuf_waitq); | ||
700 | spin_unlock(&priv->lock); | 809 | spin_unlock(&priv->lock); |
701 | destroy_tty_buffer_list(&list_remove); | 810 | destroy_tty_buffer_list(&list_remove); |
702 | } | 811 | } |
@@ -713,13 +822,14 @@ static struct hv_ops hvc_iucv_ops = { | |||
713 | 822 | ||
714 | /** | 823 | /** |
715 | * hvc_iucv_alloc() - Allocates a new struct hvc_iucv_private instance | 824 | * hvc_iucv_alloc() - Allocates a new struct hvc_iucv_private instance |
716 | * @id: hvc_iucv_table index | 825 | * @id: hvc_iucv_table index |
826 | * @is_console: Flag if the instance is used as Linux console | ||
717 | * | 827 | * |
718 | * This function allocates a new hvc_iucv_private struct and put the | 828 | * This function allocates a new hvc_iucv_private structure and stores |
719 | * instance into hvc_iucv_table at index @id. | 829 | * the instance in hvc_iucv_table at index @id. |
720 | * Returns 0 on success; otherwise non-zero. | 830 | * Returns 0 on success; otherwise non-zero. |
721 | */ | 831 | */ |
722 | static int __init hvc_iucv_alloc(int id) | 832 | static int __init hvc_iucv_alloc(int id, unsigned int is_console) |
723 | { | 833 | { |
724 | struct hvc_iucv_private *priv; | 834 | struct hvc_iucv_private *priv; |
725 | char name[9]; | 835 | char name[9]; |
@@ -732,18 +842,33 @@ static int __init hvc_iucv_alloc(int id) | |||
732 | spin_lock_init(&priv->lock); | 842 | spin_lock_init(&priv->lock); |
733 | INIT_LIST_HEAD(&priv->tty_outqueue); | 843 | INIT_LIST_HEAD(&priv->tty_outqueue); |
734 | INIT_LIST_HEAD(&priv->tty_inqueue); | 844 | INIT_LIST_HEAD(&priv->tty_inqueue); |
845 | INIT_DELAYED_WORK(&priv->sndbuf_work, hvc_iucv_sndbuf_work); | ||
846 | init_waitqueue_head(&priv->sndbuf_waitq); | ||
847 | |||
848 | priv->sndbuf = (void *) get_zeroed_page(GFP_KERNEL); | ||
849 | if (!priv->sndbuf) { | ||
850 | kfree(priv); | ||
851 | return -ENOMEM; | ||
852 | } | ||
853 | |||
854 | /* set console flag */ | ||
855 | priv->is_console = is_console; | ||
735 | 856 | ||
736 | /* Finally allocate hvc */ | 857 | /* finally allocate hvc */ |
737 | priv->hvc = hvc_alloc(HVC_IUCV_MAGIC + id, | 858 | priv->hvc = hvc_alloc(HVC_IUCV_MAGIC + id, /* PAGE_SIZE */ |
738 | HVC_IUCV_MAGIC + id, &hvc_iucv_ops, PAGE_SIZE); | 859 | HVC_IUCV_MAGIC + id, &hvc_iucv_ops, 256); |
739 | if (IS_ERR(priv->hvc)) { | 860 | if (IS_ERR(priv->hvc)) { |
740 | rc = PTR_ERR(priv->hvc); | 861 | rc = PTR_ERR(priv->hvc); |
862 | free_page((unsigned long) priv->sndbuf); | ||
741 | kfree(priv); | 863 | kfree(priv); |
742 | return rc; | 864 | return rc; |
743 | } | 865 | } |
744 | 866 | ||
867 | /* notify HVC thread instead of using polling */ | ||
868 | priv->hvc->irq_requested = 1; | ||
869 | |||
745 | /* setup iucv related information */ | 870 | /* setup iucv related information */ |
746 | snprintf(name, 9, "ihvc%-4d", id); | 871 | snprintf(name, 9, "lnxhvc%-2d", id); |
747 | memcpy(priv->srv_name, name, 8); | 872 | memcpy(priv->srv_name, name, 8); |
748 | ASCEBC(priv->srv_name, 8); | 873 | ASCEBC(priv->srv_name, 8); |
749 | 874 | ||
@@ -752,15 +877,16 @@ static int __init hvc_iucv_alloc(int id) | |||
752 | } | 877 | } |
753 | 878 | ||
754 | /** | 879 | /** |
755 | * hvc_iucv_init() - Initialization of HVC backend for z/VM IUCV | 880 | * hvc_iucv_init() - z/VM IUCV HVC device driver initialization |
756 | */ | 881 | */ |
757 | static int __init hvc_iucv_init(void) | 882 | static int __init hvc_iucv_init(void) |
758 | { | 883 | { |
759 | int rc, i; | 884 | int rc; |
885 | unsigned int i; | ||
760 | 886 | ||
761 | if (!MACHINE_IS_VM) { | 887 | if (!MACHINE_IS_VM) { |
762 | pr_warning("The z/VM IUCV Hypervisor console cannot be " | 888 | pr_info("The z/VM IUCV HVC device driver cannot " |
763 | "used without z/VM.\n"); | 889 | "be used without z/VM\n"); |
764 | return -ENODEV; | 890 | return -ENODEV; |
765 | } | 891 | } |
766 | 892 | ||
@@ -774,26 +900,33 @@ static int __init hvc_iucv_init(void) | |||
774 | sizeof(struct iucv_tty_buffer), | 900 | sizeof(struct iucv_tty_buffer), |
775 | 0, 0, NULL); | 901 | 0, 0, NULL); |
776 | if (!hvc_iucv_buffer_cache) { | 902 | if (!hvc_iucv_buffer_cache) { |
777 | pr_err("Not enough memory for driver initialization " | 903 | pr_err("Allocating memory failed with reason code=%d\n", 1); |
778 | "(rs=%d).\n", 1); | ||
779 | return -ENOMEM; | 904 | return -ENOMEM; |
780 | } | 905 | } |
781 | 906 | ||
782 | hvc_iucv_mempool = mempool_create_slab_pool(MEMPOOL_MIN_NR, | 907 | hvc_iucv_mempool = mempool_create_slab_pool(MEMPOOL_MIN_NR, |
783 | hvc_iucv_buffer_cache); | 908 | hvc_iucv_buffer_cache); |
784 | if (!hvc_iucv_mempool) { | 909 | if (!hvc_iucv_mempool) { |
785 | pr_err("Not enough memory for driver initialization " | 910 | pr_err("Allocating memory failed with reason code=%d\n", 2); |
786 | "(rs=%d).\n", 2); | ||
787 | kmem_cache_destroy(hvc_iucv_buffer_cache); | 911 | kmem_cache_destroy(hvc_iucv_buffer_cache); |
788 | return -ENOMEM; | 912 | return -ENOMEM; |
789 | } | 913 | } |
790 | 914 | ||
915 | /* register the first terminal device as console | ||
916 | * (must be done before allocating hvc terminal devices) */ | ||
917 | rc = hvc_instantiate(HVC_IUCV_MAGIC, IUCV_HVC_CON_IDX, &hvc_iucv_ops); | ||
918 | if (rc) { | ||
919 | pr_err("Registering HVC terminal device as " | ||
920 | "Linux console failed\n"); | ||
921 | goto out_error_memory; | ||
922 | } | ||
923 | |||
791 | /* allocate hvc_iucv_private structs */ | 924 | /* allocate hvc_iucv_private structs */ |
792 | for (i = 0; i < hvc_iucv_devices; i++) { | 925 | for (i = 0; i < hvc_iucv_devices; i++) { |
793 | rc = hvc_iucv_alloc(i); | 926 | rc = hvc_iucv_alloc(i, (i == IUCV_HVC_CON_IDX) ? 1 : 0); |
794 | if (rc) { | 927 | if (rc) { |
795 | pr_err("Could not create new z/VM IUCV HVC backend " | 928 | pr_err("Creating a new HVC terminal device " |
796 | "rc=%d.\n", rc); | 929 | "failed with error code=%d\n", rc); |
797 | goto out_error_hvc; | 930 | goto out_error_hvc; |
798 | } | 931 | } |
799 | } | 932 | } |
@@ -801,7 +934,8 @@ static int __init hvc_iucv_init(void) | |||
801 | /* register IUCV callback handler */ | 934 | /* register IUCV callback handler */ |
802 | rc = iucv_register(&hvc_iucv_handler, 0); | 935 | rc = iucv_register(&hvc_iucv_handler, 0); |
803 | if (rc) { | 936 | if (rc) { |
804 | pr_err("Could not register iucv handler (rc=%d).\n", rc); | 937 | pr_err("Registering IUCV handlers failed with error code=%d\n", |
938 | rc); | ||
805 | goto out_error_iucv; | 939 | goto out_error_iucv; |
806 | } | 940 | } |
807 | 941 | ||
@@ -816,22 +950,13 @@ out_error_hvc: | |||
816 | hvc_remove(hvc_iucv_table[i]->hvc); | 950 | hvc_remove(hvc_iucv_table[i]->hvc); |
817 | kfree(hvc_iucv_table[i]); | 951 | kfree(hvc_iucv_table[i]); |
818 | } | 952 | } |
953 | out_error_memory: | ||
819 | mempool_destroy(hvc_iucv_mempool); | 954 | mempool_destroy(hvc_iucv_mempool); |
820 | kmem_cache_destroy(hvc_iucv_buffer_cache); | 955 | kmem_cache_destroy(hvc_iucv_buffer_cache); |
821 | return rc; | 956 | return rc; |
822 | } | 957 | } |
823 | 958 | ||
824 | /** | 959 | /** |
825 | * hvc_iucv_console_init() - Early console initialization | ||
826 | */ | ||
827 | static int __init hvc_iucv_console_init(void) | ||
828 | { | ||
829 | if (!MACHINE_IS_VM || !hvc_iucv_devices) | ||
830 | return -ENODEV; | ||
831 | return hvc_instantiate(HVC_IUCV_MAGIC, 0, &hvc_iucv_ops); | ||
832 | } | ||
833 | |||
834 | /** | ||
835 | * hvc_iucv_config() - Parsing of hvc_iucv= kernel command line parameter | 960 | * hvc_iucv_config() - Parsing of hvc_iucv= kernel command line parameter |
836 | * @val: Parameter value (numeric) | 961 | * @val: Parameter value (numeric) |
837 | */ | 962 | */ |
@@ -841,10 +966,5 @@ static int __init hvc_iucv_config(char *val) | |||
841 | } | 966 | } |
842 | 967 | ||
843 | 968 | ||
844 | module_init(hvc_iucv_init); | 969 | device_initcall(hvc_iucv_init); |
845 | console_initcall(hvc_iucv_console_init); | ||
846 | __setup("hvc_iucv=", hvc_iucv_config); | 970 | __setup("hvc_iucv=", hvc_iucv_config); |
847 | |||
848 | MODULE_LICENSE("GPL"); | ||
849 | MODULE_DESCRIPTION("HVC back-end for z/VM IUCV."); | ||
850 | MODULE_AUTHOR("Hendrik Brueckner <brueckner@linux.vnet.ibm.com>"); | ||
diff --git a/drivers/firewire/fw-card.c b/drivers/firewire/fw-card.c index 799f94424c8a..6bd91a15d5e6 100644 --- a/drivers/firewire/fw-card.c +++ b/drivers/firewire/fw-card.c | |||
@@ -209,6 +209,8 @@ fw_card_bm_work(struct work_struct *work) | |||
209 | unsigned long flags; | 209 | unsigned long flags; |
210 | int root_id, new_root_id, irm_id, gap_count, generation, grace, rcode; | 210 | int root_id, new_root_id, irm_id, gap_count, generation, grace, rcode; |
211 | bool do_reset = false; | 211 | bool do_reset = false; |
212 | bool root_device_is_running; | ||
213 | bool root_device_is_cmc; | ||
212 | __be32 lock_data[2]; | 214 | __be32 lock_data[2]; |
213 | 215 | ||
214 | spin_lock_irqsave(&card->lock, flags); | 216 | spin_lock_irqsave(&card->lock, flags); |
@@ -224,8 +226,9 @@ fw_card_bm_work(struct work_struct *work) | |||
224 | 226 | ||
225 | generation = card->generation; | 227 | generation = card->generation; |
226 | root_device = root_node->data; | 228 | root_device = root_node->data; |
227 | if (root_device) | 229 | root_device_is_running = root_device && |
228 | fw_device_get(root_device); | 230 | atomic_read(&root_device->state) == FW_DEVICE_RUNNING; |
231 | root_device_is_cmc = root_device && root_device->cmc; | ||
229 | root_id = root_node->node_id; | 232 | root_id = root_node->node_id; |
230 | grace = time_after(jiffies, card->reset_jiffies + DIV_ROUND_UP(HZ, 10)); | 233 | grace = time_after(jiffies, card->reset_jiffies + DIV_ROUND_UP(HZ, 10)); |
231 | 234 | ||
@@ -308,14 +311,14 @@ fw_card_bm_work(struct work_struct *work) | |||
308 | * config rom. In either case, pick another root. | 311 | * config rom. In either case, pick another root. |
309 | */ | 312 | */ |
310 | new_root_id = local_node->node_id; | 313 | new_root_id = local_node->node_id; |
311 | } else if (atomic_read(&root_device->state) != FW_DEVICE_RUNNING) { | 314 | } else if (!root_device_is_running) { |
312 | /* | 315 | /* |
313 | * If we haven't probed this device yet, bail out now | 316 | * If we haven't probed this device yet, bail out now |
314 | * and let's try again once that's done. | 317 | * and let's try again once that's done. |
315 | */ | 318 | */ |
316 | spin_unlock_irqrestore(&card->lock, flags); | 319 | spin_unlock_irqrestore(&card->lock, flags); |
317 | goto out; | 320 | goto out; |
318 | } else if (root_device->cmc) { | 321 | } else if (root_device_is_cmc) { |
319 | /* | 322 | /* |
320 | * FIXME: I suppose we should set the cmstr bit in the | 323 | * FIXME: I suppose we should set the cmstr bit in the |
321 | * STATE_CLEAR register of this node, as described in | 324 | * STATE_CLEAR register of this node, as described in |
@@ -362,8 +365,6 @@ fw_card_bm_work(struct work_struct *work) | |||
362 | fw_core_initiate_bus_reset(card, 1); | 365 | fw_core_initiate_bus_reset(card, 1); |
363 | } | 366 | } |
364 | out: | 367 | out: |
365 | if (root_device) | ||
366 | fw_device_put(root_device); | ||
367 | fw_node_put(root_node); | 368 | fw_node_put(root_node); |
368 | fw_node_put(local_node); | 369 | fw_node_put(local_node); |
369 | out_put_card: | 370 | out_put_card: |
diff --git a/drivers/firewire/fw-device.c b/drivers/firewire/fw-device.c index c173be383725..2af5a8d1e012 100644 --- a/drivers/firewire/fw-device.c +++ b/drivers/firewire/fw-device.c | |||
@@ -159,7 +159,8 @@ static void fw_device_release(struct device *dev) | |||
159 | 159 | ||
160 | /* | 160 | /* |
161 | * Take the card lock so we don't set this to NULL while a | 161 | * Take the card lock so we don't set this to NULL while a |
162 | * FW_NODE_UPDATED callback is being handled. | 162 | * FW_NODE_UPDATED callback is being handled or while the |
163 | * bus manager work looks at this node. | ||
163 | */ | 164 | */ |
164 | spin_lock_irqsave(&card->lock, flags); | 165 | spin_lock_irqsave(&card->lock, flags); |
165 | device->node->data = NULL; | 166 | device->node->data = NULL; |
@@ -695,12 +696,13 @@ static void fw_device_init(struct work_struct *work) | |||
695 | return; | 696 | return; |
696 | } | 697 | } |
697 | 698 | ||
698 | err = -ENOMEM; | 699 | device_initialize(&device->device); |
699 | 700 | ||
700 | fw_device_get(device); | 701 | fw_device_get(device); |
701 | down_write(&fw_device_rwsem); | 702 | down_write(&fw_device_rwsem); |
702 | if (idr_pre_get(&fw_device_idr, GFP_KERNEL)) | 703 | err = idr_pre_get(&fw_device_idr, GFP_KERNEL) ? |
703 | err = idr_get_new(&fw_device_idr, device, &minor); | 704 | idr_get_new(&fw_device_idr, device, &minor) : |
705 | -ENOMEM; | ||
704 | up_write(&fw_device_rwsem); | 706 | up_write(&fw_device_rwsem); |
705 | 707 | ||
706 | if (err < 0) | 708 | if (err < 0) |
@@ -911,13 +913,14 @@ void fw_node_event(struct fw_card *card, struct fw_node *node, int event) | |||
911 | 913 | ||
912 | /* | 914 | /* |
913 | * Do minimal intialization of the device here, the | 915 | * Do minimal intialization of the device here, the |
914 | * rest will happen in fw_device_init(). We need the | 916 | * rest will happen in fw_device_init(). |
915 | * card and node so we can read the config rom and we | 917 | * |
916 | * need to do device_initialize() now so | 918 | * Attention: A lot of things, even fw_device_get(), |
917 | * device_for_each_child() in FW_NODE_UPDATED is | 919 | * cannot be done before fw_device_init() finished! |
918 | * doesn't freak out. | 920 | * You can basically just check device->state and |
921 | * schedule work until then, but only while holding | ||
922 | * card->lock. | ||
919 | */ | 923 | */ |
920 | device_initialize(&device->device); | ||
921 | atomic_set(&device->state, FW_DEVICE_INITIALIZING); | 924 | atomic_set(&device->state, FW_DEVICE_INITIALIZING); |
922 | device->card = fw_card_get(card); | 925 | device->card = fw_card_get(card); |
923 | device->node = fw_node_get(node); | 926 | device->node = fw_node_get(node); |
diff --git a/drivers/isdn/hardware/mISDN/Kconfig b/drivers/isdn/hardware/mISDN/Kconfig index 14793480c453..fd112ae252cf 100644 --- a/drivers/isdn/hardware/mISDN/Kconfig +++ b/drivers/isdn/hardware/mISDN/Kconfig | |||
@@ -23,3 +23,10 @@ config MISDN_HFCMULTI | |||
23 | * HFC-8S (8 S/T interfaces on one chip) | 23 | * HFC-8S (8 S/T interfaces on one chip) |
24 | * HFC-E1 (E1 interface for 2Mbit ISDN) | 24 | * HFC-E1 (E1 interface for 2Mbit ISDN) |
25 | 25 | ||
26 | config MISDN_HFCUSB | ||
27 | tristate "Support for HFC-S USB based TAs" | ||
28 | depends on USB | ||
29 | help | ||
30 | Enable support for USB ISDN TAs with Cologne Chip AG's | ||
31 | HFC-S USB ISDN Controller | ||
32 | |||
diff --git a/drivers/isdn/hardware/mISDN/Makefile b/drivers/isdn/hardware/mISDN/Makefile index 1e7ca5332ad7..b0403526bbba 100644 --- a/drivers/isdn/hardware/mISDN/Makefile +++ b/drivers/isdn/hardware/mISDN/Makefile | |||
@@ -5,3 +5,4 @@ | |||
5 | 5 | ||
6 | obj-$(CONFIG_MISDN_HFCPCI) += hfcpci.o | 6 | obj-$(CONFIG_MISDN_HFCPCI) += hfcpci.o |
7 | obj-$(CONFIG_MISDN_HFCMULTI) += hfcmulti.o | 7 | obj-$(CONFIG_MISDN_HFCMULTI) += hfcmulti.o |
8 | obj-$(CONFIG_MISDN_HFCUSB) += hfcsusb.o | ||
diff --git a/drivers/isdn/hardware/mISDN/hfc_multi.h b/drivers/isdn/hardware/mISDN/hfc_multi.h index 7bbf7300593d..663b77f578be 100644 --- a/drivers/isdn/hardware/mISDN/hfc_multi.h +++ b/drivers/isdn/hardware/mISDN/hfc_multi.h | |||
@@ -2,10 +2,6 @@ | |||
2 | * see notice in hfc_multi.c | 2 | * see notice in hfc_multi.c |
3 | */ | 3 | */ |
4 | 4 | ||
5 | extern void ztdummy_extern_interrupt(void); | ||
6 | extern void ztdummy_register_interrupt(void); | ||
7 | extern int ztdummy_unregister_interrupt(void); | ||
8 | |||
9 | #define DEBUG_HFCMULTI_FIFO 0x00010000 | 5 | #define DEBUG_HFCMULTI_FIFO 0x00010000 |
10 | #define DEBUG_HFCMULTI_CRC 0x00020000 | 6 | #define DEBUG_HFCMULTI_CRC 0x00020000 |
11 | #define DEBUG_HFCMULTI_INIT 0x00040000 | 7 | #define DEBUG_HFCMULTI_INIT 0x00040000 |
@@ -13,6 +9,7 @@ extern int ztdummy_unregister_interrupt(void); | |||
13 | #define DEBUG_HFCMULTI_MODE 0x00100000 | 9 | #define DEBUG_HFCMULTI_MODE 0x00100000 |
14 | #define DEBUG_HFCMULTI_MSG 0x00200000 | 10 | #define DEBUG_HFCMULTI_MSG 0x00200000 |
15 | #define DEBUG_HFCMULTI_STATE 0x00400000 | 11 | #define DEBUG_HFCMULTI_STATE 0x00400000 |
12 | #define DEBUG_HFCMULTI_FILL 0x00800000 | ||
16 | #define DEBUG_HFCMULTI_SYNC 0x01000000 | 13 | #define DEBUG_HFCMULTI_SYNC 0x01000000 |
17 | #define DEBUG_HFCMULTI_DTMF 0x02000000 | 14 | #define DEBUG_HFCMULTI_DTMF 0x02000000 |
18 | #define DEBUG_HFCMULTI_LOCK 0x80000000 | 15 | #define DEBUG_HFCMULTI_LOCK 0x80000000 |
@@ -170,6 +167,8 @@ struct hfc_multi { | |||
170 | 167 | ||
171 | u_long chip; /* chip configuration */ | 168 | u_long chip; /* chip configuration */ |
172 | int masterclk; /* port that provides master clock -1=off */ | 169 | int masterclk; /* port that provides master clock -1=off */ |
170 | unsigned char silence;/* silence byte */ | ||
171 | unsigned char silence_data[128];/* silence block */ | ||
173 | int dtmf; /* flag that dtmf is currently in process */ | 172 | int dtmf; /* flag that dtmf is currently in process */ |
174 | int Flen; /* F-buffer size */ | 173 | int Flen; /* F-buffer size */ |
175 | int Zlen; /* Z-buffer size (must be int for calculation)*/ | 174 | int Zlen; /* Z-buffer size (must be int for calculation)*/ |
@@ -198,6 +197,9 @@ struct hfc_multi { | |||
198 | 197 | ||
199 | spinlock_t lock; /* the lock */ | 198 | spinlock_t lock; /* the lock */ |
200 | 199 | ||
200 | struct mISDNclock *iclock; /* isdn clock support */ | ||
201 | int iclock_on; | ||
202 | |||
201 | /* | 203 | /* |
202 | * the channel index is counted from 0, regardless where the channel | 204 | * the channel index is counted from 0, regardless where the channel |
203 | * is located on the hfc-channel. | 205 | * is located on the hfc-channel. |
diff --git a/drivers/isdn/hardware/mISDN/hfc_pci.h b/drivers/isdn/hardware/mISDN/hfc_pci.h index 5783d22a18fe..3132ddc99fcd 100644 --- a/drivers/isdn/hardware/mISDN/hfc_pci.h +++ b/drivers/isdn/hardware/mISDN/hfc_pci.h | |||
@@ -26,7 +26,7 @@ | |||
26 | * change mask and threshold simultaneously | 26 | * change mask and threshold simultaneously |
27 | */ | 27 | */ |
28 | #define HFCPCI_BTRANS_THRESHOLD 128 | 28 | #define HFCPCI_BTRANS_THRESHOLD 128 |
29 | #define HFCPCI_BTRANS_MAX 256 | 29 | #define HFCPCI_FILLEMPTY 64 |
30 | #define HFCPCI_BTRANS_THRESMASK 0x00 | 30 | #define HFCPCI_BTRANS_THRESMASK 0x00 |
31 | 31 | ||
32 | /* defines for PCI config */ | 32 | /* defines for PCI config */ |
diff --git a/drivers/isdn/hardware/mISDN/hfcmulti.c b/drivers/isdn/hardware/mISDN/hfcmulti.c index c63e2f49da8a..97f4708b3879 100644 --- a/drivers/isdn/hardware/mISDN/hfcmulti.c +++ b/drivers/isdn/hardware/mISDN/hfcmulti.c | |||
@@ -133,6 +133,12 @@ | |||
133 | * Give the value of the clock control register (A_ST_CLK_DLY) | 133 | * Give the value of the clock control register (A_ST_CLK_DLY) |
134 | * of the S/T interfaces in TE mode. | 134 | * of the S/T interfaces in TE mode. |
135 | * This register is needed for the TBR3 certification, so don't change it. | 135 | * This register is needed for the TBR3 certification, so don't change it. |
136 | * | ||
137 | * clock: | ||
138 | * NOTE: only one clock value must be given once | ||
139 | * Selects interface with clock source for mISDN and applications. | ||
140 | * Set to card number starting with 1. Set to -1 to disable. | ||
141 | * By default, the first card is used as clock source. | ||
136 | */ | 142 | */ |
137 | 143 | ||
138 | /* | 144 | /* |
@@ -140,7 +146,7 @@ | |||
140 | * #define HFC_REGISTER_DEBUG | 146 | * #define HFC_REGISTER_DEBUG |
141 | */ | 147 | */ |
142 | 148 | ||
143 | static const char *hfcmulti_revision = "2.02"; | 149 | #define HFC_MULTI_VERSION "2.03" |
144 | 150 | ||
145 | #include <linux/module.h> | 151 | #include <linux/module.h> |
146 | #include <linux/pci.h> | 152 | #include <linux/pci.h> |
@@ -165,10 +171,6 @@ static LIST_HEAD(HFClist); | |||
165 | static spinlock_t HFClock; /* global hfc list lock */ | 171 | static spinlock_t HFClock; /* global hfc list lock */ |
166 | 172 | ||
167 | static void ph_state_change(struct dchannel *); | 173 | static void ph_state_change(struct dchannel *); |
168 | static void (*hfc_interrupt)(void); | ||
169 | static void (*register_interrupt)(void); | ||
170 | static int (*unregister_interrupt)(void); | ||
171 | static int interrupt_registered; | ||
172 | 174 | ||
173 | static struct hfc_multi *syncmaster; | 175 | static struct hfc_multi *syncmaster; |
174 | static int plxsd_master; /* if we have a master card (yet) */ | 176 | static int plxsd_master; /* if we have a master card (yet) */ |
@@ -184,7 +186,6 @@ static int nt_t1_count[] = { 3840, 1920, 960, 480, 240, 120, 60, 30 }; | |||
184 | #define CLKDEL_TE 0x0f /* CLKDEL in TE mode */ | 186 | #define CLKDEL_TE 0x0f /* CLKDEL in TE mode */ |
185 | #define CLKDEL_NT 0x6c /* CLKDEL in NT mode | 187 | #define CLKDEL_NT 0x6c /* CLKDEL in NT mode |
186 | (0x60 MUST be included!) */ | 188 | (0x60 MUST be included!) */ |
187 | static u_char silence = 0xff; /* silence by LAW */ | ||
188 | 189 | ||
189 | #define DIP_4S 0x1 /* DIP Switches for Beronet 1S/2S/4S cards */ | 190 | #define DIP_4S 0x1 /* DIP Switches for Beronet 1S/2S/4S cards */ |
190 | #define DIP_8S 0x2 /* DIP Switches for Beronet 8S+ cards */ | 191 | #define DIP_8S 0x2 /* DIP Switches for Beronet 8S+ cards */ |
@@ -195,12 +196,13 @@ static u_char silence = 0xff; /* silence by LAW */ | |||
195 | */ | 196 | */ |
196 | 197 | ||
197 | static uint type[MAX_CARDS]; | 198 | static uint type[MAX_CARDS]; |
198 | static uint pcm[MAX_CARDS]; | 199 | static int pcm[MAX_CARDS]; |
199 | static uint dslot[MAX_CARDS]; | 200 | static int dslot[MAX_CARDS]; |
200 | static uint iomode[MAX_CARDS]; | 201 | static uint iomode[MAX_CARDS]; |
201 | static uint port[MAX_PORTS]; | 202 | static uint port[MAX_PORTS]; |
202 | static uint debug; | 203 | static uint debug; |
203 | static uint poll; | 204 | static uint poll; |
205 | static int clock; | ||
204 | static uint timer; | 206 | static uint timer; |
205 | static uint clockdelay_te = CLKDEL_TE; | 207 | static uint clockdelay_te = CLKDEL_TE; |
206 | static uint clockdelay_nt = CLKDEL_NT; | 208 | static uint clockdelay_nt = CLKDEL_NT; |
@@ -209,14 +211,16 @@ static int HFC_cnt, Port_cnt, PCM_cnt = 99; | |||
209 | 211 | ||
210 | MODULE_AUTHOR("Andreas Eversberg"); | 212 | MODULE_AUTHOR("Andreas Eversberg"); |
211 | MODULE_LICENSE("GPL"); | 213 | MODULE_LICENSE("GPL"); |
214 | MODULE_VERSION(HFC_MULTI_VERSION); | ||
212 | module_param(debug, uint, S_IRUGO | S_IWUSR); | 215 | module_param(debug, uint, S_IRUGO | S_IWUSR); |
213 | module_param(poll, uint, S_IRUGO | S_IWUSR); | 216 | module_param(poll, uint, S_IRUGO | S_IWUSR); |
217 | module_param(clock, int, S_IRUGO | S_IWUSR); | ||
214 | module_param(timer, uint, S_IRUGO | S_IWUSR); | 218 | module_param(timer, uint, S_IRUGO | S_IWUSR); |
215 | module_param(clockdelay_te, uint, S_IRUGO | S_IWUSR); | 219 | module_param(clockdelay_te, uint, S_IRUGO | S_IWUSR); |
216 | module_param(clockdelay_nt, uint, S_IRUGO | S_IWUSR); | 220 | module_param(clockdelay_nt, uint, S_IRUGO | S_IWUSR); |
217 | module_param_array(type, uint, NULL, S_IRUGO | S_IWUSR); | 221 | module_param_array(type, uint, NULL, S_IRUGO | S_IWUSR); |
218 | module_param_array(pcm, uint, NULL, S_IRUGO | S_IWUSR); | 222 | module_param_array(pcm, int, NULL, S_IRUGO | S_IWUSR); |
219 | module_param_array(dslot, uint, NULL, S_IRUGO | S_IWUSR); | 223 | module_param_array(dslot, int, NULL, S_IRUGO | S_IWUSR); |
220 | module_param_array(iomode, uint, NULL, S_IRUGO | S_IWUSR); | 224 | module_param_array(iomode, uint, NULL, S_IRUGO | S_IWUSR); |
221 | module_param_array(port, uint, NULL, S_IRUGO | S_IWUSR); | 225 | module_param_array(port, uint, NULL, S_IRUGO | S_IWUSR); |
222 | 226 | ||
@@ -1419,19 +1423,6 @@ controller_fail: | |||
1419 | HFC_outb(hc, R_TI_WD, poll_timer); | 1423 | HFC_outb(hc, R_TI_WD, poll_timer); |
1420 | hc->hw.r_irqmsk_misc |= V_TI_IRQMSK; | 1424 | hc->hw.r_irqmsk_misc |= V_TI_IRQMSK; |
1421 | 1425 | ||
1422 | /* | ||
1423 | * set up 125us interrupt, only if function pointer is available | ||
1424 | * and module parameter timer is set | ||
1425 | */ | ||
1426 | if (timer && hfc_interrupt && register_interrupt) { | ||
1427 | /* only one chip should use this interrupt */ | ||
1428 | timer = 0; | ||
1429 | interrupt_registered = 1; | ||
1430 | hc->hw.r_irqmsk_misc |= V_PROC_IRQMSK; | ||
1431 | /* deactivate other interrupts in ztdummy */ | ||
1432 | register_interrupt(); | ||
1433 | } | ||
1434 | |||
1435 | /* set E1 state machine IRQ */ | 1426 | /* set E1 state machine IRQ */ |
1436 | if (hc->type == 1) | 1427 | if (hc->type == 1) |
1437 | hc->hw.r_irqmsk_misc |= V_STA_IRQMSK; | 1428 | hc->hw.r_irqmsk_misc |= V_STA_IRQMSK; |
@@ -1991,6 +1982,17 @@ next_frame: | |||
1991 | return; /* no data */ | 1982 | return; /* no data */ |
1992 | } | 1983 | } |
1993 | 1984 | ||
1985 | /* "fill fifo if empty" feature */ | ||
1986 | if (bch && test_bit(FLG_FILLEMPTY, &bch->Flags) | ||
1987 | && !test_bit(FLG_HDLC, &bch->Flags) && z2 == z1) { | ||
1988 | if (debug & DEBUG_HFCMULTI_FILL) | ||
1989 | printk(KERN_DEBUG "%s: buffer empty, so we have " | ||
1990 | "underrun\n", __func__); | ||
1991 | /* fill buffer, to prevent future underrun */ | ||
1992 | hc->write_fifo(hc, hc->silence_data, poll >> 1); | ||
1993 | Zspace -= (poll >> 1); | ||
1994 | } | ||
1995 | |||
1994 | /* if audio data and connected slot */ | 1996 | /* if audio data and connected slot */ |
1995 | if (bch && (!test_bit(FLG_HDLC, &bch->Flags)) && (!*txpending) | 1997 | if (bch && (!test_bit(FLG_HDLC, &bch->Flags)) && (!*txpending) |
1996 | && slot_tx >= 0) { | 1998 | && slot_tx >= 0) { |
@@ -2027,7 +2029,6 @@ next_frame: | |||
2027 | __func__, hc->id + 1, ch, Zspace, z1, z2, ii-i, len-i, | 2029 | __func__, hc->id + 1, ch, Zspace, z1, z2, ii-i, len-i, |
2028 | temp ? "HDLC":"TRANS"); | 2030 | temp ? "HDLC":"TRANS"); |
2029 | 2031 | ||
2030 | |||
2031 | /* Have to prep the audio data */ | 2032 | /* Have to prep the audio data */ |
2032 | hc->write_fifo(hc, d, ii - i); | 2033 | hc->write_fifo(hc, d, ii - i); |
2033 | *idxp = ii; | 2034 | *idxp = ii; |
@@ -2066,7 +2067,7 @@ next_frame: | |||
2066 | * no more data at all. this prevents sending an undefined value. | 2067 | * no more data at all. this prevents sending an undefined value. |
2067 | */ | 2068 | */ |
2068 | if (bch && test_bit(FLG_TRANSPARENT, &bch->Flags)) | 2069 | if (bch && test_bit(FLG_TRANSPARENT, &bch->Flags)) |
2069 | HFC_outb_nodebug(hc, A_FIFO_DATA0_NOINC, silence); | 2070 | HFC_outb_nodebug(hc, A_FIFO_DATA0_NOINC, hc->silence); |
2070 | } | 2071 | } |
2071 | 2072 | ||
2072 | 2073 | ||
@@ -2583,7 +2584,6 @@ hfcmulti_interrupt(int intno, void *dev_id) | |||
2583 | static int iq1 = 0, iq2 = 0, iq3 = 0, iq4 = 0, | 2584 | static int iq1 = 0, iq2 = 0, iq3 = 0, iq4 = 0, |
2584 | iq5 = 0, iq6 = 0, iqcnt = 0; | 2585 | iq5 = 0, iq6 = 0, iqcnt = 0; |
2585 | #endif | 2586 | #endif |
2586 | static int count; | ||
2587 | struct hfc_multi *hc = dev_id; | 2587 | struct hfc_multi *hc = dev_id; |
2588 | struct dchannel *dch; | 2588 | struct dchannel *dch; |
2589 | u_char r_irq_statech, status, r_irq_misc, r_irq_oview; | 2589 | u_char r_irq_statech, status, r_irq_misc, r_irq_oview; |
@@ -2637,6 +2637,7 @@ hfcmulti_interrupt(int intno, void *dev_id) | |||
2637 | iqcnt = 0; | 2637 | iqcnt = 0; |
2638 | } | 2638 | } |
2639 | #endif | 2639 | #endif |
2640 | |||
2640 | if (!r_irq_statech && | 2641 | if (!r_irq_statech && |
2641 | !(status & (V_DTMF_STA | V_LOST_STA | V_EXT_IRQSTA | | 2642 | !(status & (V_DTMF_STA | V_LOST_STA | V_EXT_IRQSTA | |
2642 | V_MISC_IRQSTA | V_FR_IRQSTA))) { | 2643 | V_MISC_IRQSTA | V_FR_IRQSTA))) { |
@@ -2657,6 +2658,7 @@ hfcmulti_interrupt(int intno, void *dev_id) | |||
2657 | if (status & V_MISC_IRQSTA) { | 2658 | if (status & V_MISC_IRQSTA) { |
2658 | /* misc IRQ */ | 2659 | /* misc IRQ */ |
2659 | r_irq_misc = HFC_inb_nodebug(hc, R_IRQ_MISC); | 2660 | r_irq_misc = HFC_inb_nodebug(hc, R_IRQ_MISC); |
2661 | r_irq_misc &= hc->hw.r_irqmsk_misc; /* ignore disabled irqs */ | ||
2660 | if (r_irq_misc & V_STA_IRQ) { | 2662 | if (r_irq_misc & V_STA_IRQ) { |
2661 | if (hc->type == 1) { | 2663 | if (hc->type == 1) { |
2662 | /* state machine */ | 2664 | /* state machine */ |
@@ -2691,23 +2693,20 @@ hfcmulti_interrupt(int intno, void *dev_id) | |||
2691 | plxsd_checksync(hc, 0); | 2693 | plxsd_checksync(hc, 0); |
2692 | } | 2694 | } |
2693 | } | 2695 | } |
2694 | if (r_irq_misc & V_TI_IRQ) | 2696 | if (r_irq_misc & V_TI_IRQ) { |
2697 | if (hc->iclock_on) | ||
2698 | mISDN_clock_update(hc->iclock, poll, NULL); | ||
2695 | handle_timer_irq(hc); | 2699 | handle_timer_irq(hc); |
2700 | } | ||
2696 | 2701 | ||
2697 | if (r_irq_misc & V_DTMF_IRQ) { | 2702 | if (r_irq_misc & V_DTMF_IRQ) { |
2698 | /* -> DTMF IRQ */ | ||
2699 | hfcmulti_dtmf(hc); | 2703 | hfcmulti_dtmf(hc); |
2700 | } | 2704 | } |
2701 | /* TODO: REPLACE !!!! 125 us Interrupts are not acceptable */ | ||
2702 | if (r_irq_misc & V_IRQ_PROC) { | 2705 | if (r_irq_misc & V_IRQ_PROC) { |
2703 | /* IRQ every 125us */ | 2706 | static int irq_proc_cnt; |
2704 | count++; | 2707 | if (!irq_proc_cnt++) |
2705 | /* generate 1kHz signal */ | 2708 | printk(KERN_WARNING "%s: got V_IRQ_PROC -" |
2706 | if (count == 8) { | 2709 | " this should not happen\n", __func__); |
2707 | if (hfc_interrupt) | ||
2708 | hfc_interrupt(); | ||
2709 | count = 0; | ||
2710 | } | ||
2711 | } | 2710 | } |
2712 | 2711 | ||
2713 | } | 2712 | } |
@@ -2954,7 +2953,7 @@ mode_hfcmulti(struct hfc_multi *hc, int ch, int protocol, int slot_tx, | |||
2954 | HFC_outb(hc, R_INC_RES_FIFO, V_RES_F); | 2953 | HFC_outb(hc, R_INC_RES_FIFO, V_RES_F); |
2955 | HFC_wait(hc); | 2954 | HFC_wait(hc); |
2956 | /* tx silence */ | 2955 | /* tx silence */ |
2957 | HFC_outb_nodebug(hc, A_FIFO_DATA0_NOINC, silence); | 2956 | HFC_outb_nodebug(hc, A_FIFO_DATA0_NOINC, hc->silence); |
2958 | HFC_outb(hc, R_SLOT, (((ch / 4) * 8) + | 2957 | HFC_outb(hc, R_SLOT, (((ch / 4) * 8) + |
2959 | ((ch % 4) * 4)) << 1); | 2958 | ((ch % 4) * 4)) << 1); |
2960 | HFC_outb(hc, A_SL_CFG, 0x80 | 0x20 | (ch << 1)); | 2959 | HFC_outb(hc, A_SL_CFG, 0x80 | 0x20 | (ch << 1)); |
@@ -2969,7 +2968,7 @@ mode_hfcmulti(struct hfc_multi *hc, int ch, int protocol, int slot_tx, | |||
2969 | HFC_outb(hc, R_INC_RES_FIFO, V_RES_F); | 2968 | HFC_outb(hc, R_INC_RES_FIFO, V_RES_F); |
2970 | HFC_wait(hc); | 2969 | HFC_wait(hc); |
2971 | /* tx silence */ | 2970 | /* tx silence */ |
2972 | HFC_outb_nodebug(hc, A_FIFO_DATA0_NOINC, silence); | 2971 | HFC_outb_nodebug(hc, A_FIFO_DATA0_NOINC, hc->silence); |
2973 | /* enable RX fifo */ | 2972 | /* enable RX fifo */ |
2974 | HFC_outb(hc, R_FIFO, (ch<<1)|1); | 2973 | HFC_outb(hc, R_FIFO, (ch<<1)|1); |
2975 | HFC_wait(hc); | 2974 | HFC_wait(hc); |
@@ -3461,7 +3460,7 @@ channel_bctrl(struct bchannel *bch, struct mISDN_ctrl_req *cq) | |||
3461 | switch (cq->op) { | 3460 | switch (cq->op) { |
3462 | case MISDN_CTRL_GETOP: | 3461 | case MISDN_CTRL_GETOP: |
3463 | cq->op = MISDN_CTRL_HFC_OP | MISDN_CTRL_HW_FEATURES_OP | 3462 | cq->op = MISDN_CTRL_HFC_OP | MISDN_CTRL_HW_FEATURES_OP |
3464 | | MISDN_CTRL_RX_OFF; | 3463 | | MISDN_CTRL_RX_OFF | MISDN_CTRL_FILL_EMPTY; |
3465 | break; | 3464 | break; |
3466 | case MISDN_CTRL_RX_OFF: /* turn off / on rx stream */ | 3465 | case MISDN_CTRL_RX_OFF: /* turn off / on rx stream */ |
3467 | hc->chan[bch->slot].rx_off = !!cq->p1; | 3466 | hc->chan[bch->slot].rx_off = !!cq->p1; |
@@ -3476,6 +3475,12 @@ channel_bctrl(struct bchannel *bch, struct mISDN_ctrl_req *cq) | |||
3476 | printk(KERN_DEBUG "%s: RX_OFF request (nr=%d off=%d)\n", | 3475 | printk(KERN_DEBUG "%s: RX_OFF request (nr=%d off=%d)\n", |
3477 | __func__, bch->nr, hc->chan[bch->slot].rx_off); | 3476 | __func__, bch->nr, hc->chan[bch->slot].rx_off); |
3478 | break; | 3477 | break; |
3478 | case MISDN_CTRL_FILL_EMPTY: /* fill fifo, if empty */ | ||
3479 | test_and_set_bit(FLG_FILLEMPTY, &bch->Flags); | ||
3480 | if (debug & DEBUG_HFCMULTI_MSG) | ||
3481 | printk(KERN_DEBUG "%s: FILL_EMPTY request (nr=%d " | ||
3482 | "off=%d)\n", __func__, bch->nr, !!cq->p1); | ||
3483 | break; | ||
3479 | case MISDN_CTRL_HW_FEATURES: /* fill features structure */ | 3484 | case MISDN_CTRL_HW_FEATURES: /* fill features structure */ |
3480 | if (debug & DEBUG_HFCMULTI_MSG) | 3485 | if (debug & DEBUG_HFCMULTI_MSG) |
3481 | printk(KERN_DEBUG "%s: HW_FEATURE request\n", | 3486 | printk(KERN_DEBUG "%s: HW_FEATURE request\n", |
@@ -3992,6 +3997,7 @@ open_bchannel(struct hfc_multi *hc, struct dchannel *dch, | |||
3992 | } | 3997 | } |
3993 | if (test_and_set_bit(FLG_OPEN, &bch->Flags)) | 3998 | if (test_and_set_bit(FLG_OPEN, &bch->Flags)) |
3994 | return -EBUSY; /* b-channel can be only open once */ | 3999 | return -EBUSY; /* b-channel can be only open once */ |
4000 | test_and_clear_bit(FLG_FILLEMPTY, &bch->Flags); | ||
3995 | bch->ch.protocol = rq->protocol; | 4001 | bch->ch.protocol = rq->protocol; |
3996 | hc->chan[ch].rx_off = 0; | 4002 | hc->chan[ch].rx_off = 0; |
3997 | rq->ch = &bch->ch; | 4003 | rq->ch = &bch->ch; |
@@ -4081,6 +4087,15 @@ hfcm_dctrl(struct mISDNchannel *ch, u_int cmd, void *arg) | |||
4081 | return err; | 4087 | return err; |
4082 | } | 4088 | } |
4083 | 4089 | ||
4090 | static int | ||
4091 | clockctl(void *priv, int enable) | ||
4092 | { | ||
4093 | struct hfc_multi *hc = priv; | ||
4094 | |||
4095 | hc->iclock_on = enable; | ||
4096 | return 0; | ||
4097 | } | ||
4098 | |||
4084 | /* | 4099 | /* |
4085 | * initialize the card | 4100 | * initialize the card |
4086 | */ | 4101 | */ |
@@ -4495,10 +4510,14 @@ release_card(struct hfc_multi *hc) | |||
4495 | printk(KERN_WARNING "%s: release card (%d) entered\n", | 4510 | printk(KERN_WARNING "%s: release card (%d) entered\n", |
4496 | __func__, hc->id); | 4511 | __func__, hc->id); |
4497 | 4512 | ||
4513 | /* unregister clock source */ | ||
4514 | if (hc->iclock) | ||
4515 | mISDN_unregister_clock(hc->iclock); | ||
4516 | |||
4517 | /* disable irq */ | ||
4498 | spin_lock_irqsave(&hc->lock, flags); | 4518 | spin_lock_irqsave(&hc->lock, flags); |
4499 | disable_hwirq(hc); | 4519 | disable_hwirq(hc); |
4500 | spin_unlock_irqrestore(&hc->lock, flags); | 4520 | spin_unlock_irqrestore(&hc->lock, flags); |
4501 | |||
4502 | udelay(1000); | 4521 | udelay(1000); |
4503 | 4522 | ||
4504 | /* dimm leds */ | 4523 | /* dimm leds */ |
@@ -4699,7 +4718,7 @@ init_e1_port(struct hfc_multi *hc, struct hm_map *m) | |||
4699 | } else | 4718 | } else |
4700 | hc->chan[hc->dslot].jitter = 2; /* default */ | 4719 | hc->chan[hc->dslot].jitter = 2; /* default */ |
4701 | snprintf(name, MISDN_MAX_IDLEN - 1, "hfc-e1.%d", HFC_cnt + 1); | 4720 | snprintf(name, MISDN_MAX_IDLEN - 1, "hfc-e1.%d", HFC_cnt + 1); |
4702 | ret = mISDN_register_device(&dch->dev, name); | 4721 | ret = mISDN_register_device(&dch->dev, &hc->pci_dev->dev, name); |
4703 | if (ret) | 4722 | if (ret) |
4704 | goto free_chan; | 4723 | goto free_chan; |
4705 | hc->created[0] = 1; | 4724 | hc->created[0] = 1; |
@@ -4807,9 +4826,9 @@ init_multi_port(struct hfc_multi *hc, int pt) | |||
4807 | test_and_set_bit(HFC_CFG_DIS_ECHANNEL, | 4826 | test_and_set_bit(HFC_CFG_DIS_ECHANNEL, |
4808 | &hc->chan[i + 2].cfg); | 4827 | &hc->chan[i + 2].cfg); |
4809 | } | 4828 | } |
4810 | snprintf(name, MISDN_MAX_IDLEN - 1, "hfc-%ds.%d/%d", | 4829 | snprintf(name, MISDN_MAX_IDLEN - 1, "hfc-%ds.%d-%d", |
4811 | hc->type, HFC_cnt + 1, pt + 1); | 4830 | hc->type, HFC_cnt + 1, pt + 1); |
4812 | ret = mISDN_register_device(&dch->dev, name); | 4831 | ret = mISDN_register_device(&dch->dev, &hc->pci_dev->dev, name); |
4813 | if (ret) | 4832 | if (ret) |
4814 | goto free_chan; | 4833 | goto free_chan; |
4815 | hc->created[pt] = 1; | 4834 | hc->created[pt] = 1; |
@@ -4828,6 +4847,7 @@ hfcmulti_init(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
4828 | struct hfc_multi *hc; | 4847 | struct hfc_multi *hc; |
4829 | u_long flags; | 4848 | u_long flags; |
4830 | u_char dips = 0, pmj = 0; /* dip settings, port mode Jumpers */ | 4849 | u_char dips = 0, pmj = 0; /* dip settings, port mode Jumpers */ |
4850 | int i; | ||
4831 | 4851 | ||
4832 | if (HFC_cnt >= MAX_CARDS) { | 4852 | if (HFC_cnt >= MAX_CARDS) { |
4833 | printk(KERN_ERR "too many cards (max=%d).\n", | 4853 | printk(KERN_ERR "too many cards (max=%d).\n", |
@@ -4861,11 +4881,11 @@ hfcmulti_init(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
4861 | hc->id = HFC_cnt; | 4881 | hc->id = HFC_cnt; |
4862 | hc->pcm = pcm[HFC_cnt]; | 4882 | hc->pcm = pcm[HFC_cnt]; |
4863 | hc->io_mode = iomode[HFC_cnt]; | 4883 | hc->io_mode = iomode[HFC_cnt]; |
4864 | if (dslot[HFC_cnt] < 0) { | 4884 | if (dslot[HFC_cnt] < 0 && hc->type == 1) { |
4865 | hc->dslot = 0; | 4885 | hc->dslot = 0; |
4866 | printk(KERN_INFO "HFC-E1 card has disabled D-channel, but " | 4886 | printk(KERN_INFO "HFC-E1 card has disabled D-channel, but " |
4867 | "31 B-channels\n"); | 4887 | "31 B-channels\n"); |
4868 | } if (dslot[HFC_cnt] > 0 && dslot[HFC_cnt] < 32) { | 4888 | } if (dslot[HFC_cnt] > 0 && dslot[HFC_cnt] < 32 && hc->type == 1) { |
4869 | hc->dslot = dslot[HFC_cnt]; | 4889 | hc->dslot = dslot[HFC_cnt]; |
4870 | printk(KERN_INFO "HFC-E1 card has alternating D-channel on " | 4890 | printk(KERN_INFO "HFC-E1 card has alternating D-channel on " |
4871 | "time slot %d\n", dslot[HFC_cnt]); | 4891 | "time slot %d\n", dslot[HFC_cnt]); |
@@ -4876,9 +4896,17 @@ hfcmulti_init(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
4876 | hc->masterclk = -1; | 4896 | hc->masterclk = -1; |
4877 | if (type[HFC_cnt] & 0x100) { | 4897 | if (type[HFC_cnt] & 0x100) { |
4878 | test_and_set_bit(HFC_CHIP_ULAW, &hc->chip); | 4898 | test_and_set_bit(HFC_CHIP_ULAW, &hc->chip); |
4879 | silence = 0xff; /* ulaw silence */ | 4899 | hc->silence = 0xff; /* ulaw silence */ |
4880 | } else | 4900 | } else |
4881 | silence = 0x2a; /* alaw silence */ | 4901 | hc->silence = 0x2a; /* alaw silence */ |
4902 | if ((poll >> 1) > sizeof(hc->silence_data)) { | ||
4903 | printk(KERN_ERR "HFCMULTI error: silence_data too small, " | ||
4904 | "please fix\n"); | ||
4905 | return -EINVAL; | ||
4906 | } | ||
4907 | for (i = 0; i < (poll >> 1); i++) | ||
4908 | hc->silence_data[i] = hc->silence; | ||
4909 | |||
4882 | if (!(type[HFC_cnt] & 0x200)) | 4910 | if (!(type[HFC_cnt] & 0x200)) |
4883 | test_and_set_bit(HFC_CHIP_DTMF, &hc->chip); | 4911 | test_and_set_bit(HFC_CHIP_DTMF, &hc->chip); |
4884 | 4912 | ||
@@ -4945,9 +4973,7 @@ hfcmulti_init(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
4945 | switch (m->dip_type) { | 4973 | switch (m->dip_type) { |
4946 | case DIP_4S: | 4974 | case DIP_4S: |
4947 | /* | 4975 | /* |
4948 | * get DIP Setting for beroNet 1S/2S/4S cards | 4976 | * Get DIP setting for beroNet 1S/2S/4S cards |
4949 | * check if Port Jumper config matches | ||
4950 | * module param 'protocol' | ||
4951 | * DIP Setting: (collect GPIO 13/14/15 (R_GPIO_IN1) + | 4977 | * DIP Setting: (collect GPIO 13/14/15 (R_GPIO_IN1) + |
4952 | * GPI 19/23 (R_GPI_IN2)) | 4978 | * GPI 19/23 (R_GPI_IN2)) |
4953 | */ | 4979 | */ |
@@ -4966,9 +4992,8 @@ hfcmulti_init(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
4966 | break; | 4992 | break; |
4967 | case DIP_8S: | 4993 | case DIP_8S: |
4968 | /* | 4994 | /* |
4969 | * get DIP Setting for beroNet 8S0+ cards | 4995 | * Get DIP Setting for beroNet 8S0+ cards |
4970 | * | 4996 | * Enable PCI auxbridge function |
4971 | * enable PCI auxbridge function | ||
4972 | */ | 4997 | */ |
4973 | HFC_outb(hc, R_BRG_PCM_CFG, 1 | V_PCM_CLK); | 4998 | HFC_outb(hc, R_BRG_PCM_CFG, 1 | V_PCM_CLK); |
4974 | /* prepare access to auxport */ | 4999 | /* prepare access to auxport */ |
@@ -5003,6 +5028,10 @@ hfcmulti_init(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
5003 | list_add_tail(&hc->list, &HFClist); | 5028 | list_add_tail(&hc->list, &HFClist); |
5004 | spin_unlock_irqrestore(&HFClock, flags); | 5029 | spin_unlock_irqrestore(&HFClock, flags); |
5005 | 5030 | ||
5031 | /* use as clock source */ | ||
5032 | if (clock == HFC_cnt + 1) | ||
5033 | hc->iclock = mISDN_register_clock("HFCMulti", 0, clockctl, hc); | ||
5034 | |||
5006 | /* initialize hardware */ | 5035 | /* initialize hardware */ |
5007 | ret_err = init_card(hc); | 5036 | ret_err = init_card(hc); |
5008 | if (ret_err) { | 5037 | if (ret_err) { |
@@ -5137,8 +5166,7 @@ static struct pci_device_id hfmultipci_ids[] __devinitdata = { | |||
5137 | { PCI_VENDOR_ID_CCD, PCI_DEVICE_ID_CCD_HFC8S, PCI_VENDOR_ID_CCD, | 5166 | { PCI_VENDOR_ID_CCD, PCI_DEVICE_ID_CCD_HFC8S, PCI_VENDOR_ID_CCD, |
5138 | PCI_DEVICE_ID_CCD_HFC8S, 0, 0, H(14)}, /* old Eval */ | 5167 | PCI_DEVICE_ID_CCD_HFC8S, 0, 0, H(14)}, /* old Eval */ |
5139 | { PCI_VENDOR_ID_CCD, PCI_DEVICE_ID_CCD_HFC8S, PCI_VENDOR_ID_CCD, | 5168 | { PCI_VENDOR_ID_CCD, PCI_DEVICE_ID_CCD_HFC8S, PCI_VENDOR_ID_CCD, |
5140 | PCI_SUBDEVICE_ID_CCD_IOB8STR, 0, 0, H(15)}, | 5169 | PCI_SUBDEVICE_ID_CCD_IOB8STR, 0, 0, H(15)}, /* IOB8ST Recording */ |
5141 | /* IOB8ST Recording */ | ||
5142 | { PCI_VENDOR_ID_CCD, PCI_DEVICE_ID_CCD_HFC8S, PCI_VENDOR_ID_CCD, | 5170 | { PCI_VENDOR_ID_CCD, PCI_DEVICE_ID_CCD_HFC8S, PCI_VENDOR_ID_CCD, |
5143 | PCI_SUBDEVICE_ID_CCD_IOB8ST, 0, 0, H(16)}, /* IOB8ST */ | 5171 | PCI_SUBDEVICE_ID_CCD_IOB8ST, 0, 0, H(16)}, /* IOB8ST */ |
5144 | { PCI_VENDOR_ID_CCD, PCI_DEVICE_ID_CCD_HFC8S, PCI_VENDOR_ID_CCD, | 5172 | { PCI_VENDOR_ID_CCD, PCI_DEVICE_ID_CCD_HFC8S, PCI_VENDOR_ID_CCD, |
@@ -5188,18 +5216,16 @@ hfcmulti_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
5188 | struct hm_map *m = (struct hm_map *)ent->driver_data; | 5216 | struct hm_map *m = (struct hm_map *)ent->driver_data; |
5189 | int ret; | 5217 | int ret; |
5190 | 5218 | ||
5191 | if (m == NULL) { | 5219 | if (m == NULL && ent->vendor == PCI_VENDOR_ID_CCD && ( |
5192 | if (ent->vendor == PCI_VENDOR_ID_CCD) | 5220 | ent->device == PCI_DEVICE_ID_CCD_HFC4S || |
5193 | if (ent->device == PCI_DEVICE_ID_CCD_HFC4S || | 5221 | ent->device == PCI_DEVICE_ID_CCD_HFC8S || |
5194 | ent->device == PCI_DEVICE_ID_CCD_HFC8S || | 5222 | ent->device == PCI_DEVICE_ID_CCD_HFCE1)) { |
5195 | ent->device == PCI_DEVICE_ID_CCD_HFCE1) | 5223 | printk(KERN_ERR |
5196 | printk(KERN_ERR | 5224 | "Unknown HFC multiport controller (vendor:%x device:%x " |
5197 | "unknown HFC multiport controller " | 5225 | "subvendor:%x subdevice:%x)\n", ent->vendor, ent->device, |
5198 | "(vendor:%x device:%x subvendor:%x " | 5226 | ent->subvendor, ent->subdevice); |
5199 | "subdevice:%x) Please contact the " | 5227 | printk(KERN_ERR |
5200 | "driver maintainer for support.\n", | 5228 | "Please contact the driver maintainer for support.\n"); |
5201 | ent->vendor, ent->device, | ||
5202 | ent->subvendor, ent->subdevice); | ||
5203 | return -ENODEV; | 5229 | return -ENODEV; |
5204 | } | 5230 | } |
5205 | ret = hfcmulti_init(pdev, ent); | 5231 | ret = hfcmulti_init(pdev, ent); |
@@ -5222,22 +5248,9 @@ HFCmulti_cleanup(void) | |||
5222 | { | 5248 | { |
5223 | struct hfc_multi *card, *next; | 5249 | struct hfc_multi *card, *next; |
5224 | 5250 | ||
5225 | /* unload interrupt function symbol */ | 5251 | /* get rid of all devices of this driver */ |
5226 | if (hfc_interrupt) | ||
5227 | symbol_put(ztdummy_extern_interrupt); | ||
5228 | if (register_interrupt) | ||
5229 | symbol_put(ztdummy_register_interrupt); | ||
5230 | if (unregister_interrupt) { | ||
5231 | if (interrupt_registered) { | ||
5232 | interrupt_registered = 0; | ||
5233 | unregister_interrupt(); | ||
5234 | } | ||
5235 | symbol_put(ztdummy_unregister_interrupt); | ||
5236 | } | ||
5237 | |||
5238 | list_for_each_entry_safe(card, next, &HFClist, list) | 5252 | list_for_each_entry_safe(card, next, &HFClist, list) |
5239 | release_card(card); | 5253 | release_card(card); |
5240 | /* get rid of all devices of this driver */ | ||
5241 | pci_unregister_driver(&hfcmultipci_driver); | 5254 | pci_unregister_driver(&hfcmultipci_driver); |
5242 | } | 5255 | } |
5243 | 5256 | ||
@@ -5246,8 +5259,10 @@ HFCmulti_init(void) | |||
5246 | { | 5259 | { |
5247 | int err; | 5260 | int err; |
5248 | 5261 | ||
5262 | printk(KERN_INFO "mISDN: HFC-multi driver %s\n", HFC_MULTI_VERSION); | ||
5263 | |||
5249 | #ifdef IRQ_DEBUG | 5264 | #ifdef IRQ_DEBUG |
5250 | printk(KERN_ERR "%s: IRQ_DEBUG IS ENABLED!\n", __func__); | 5265 | printk(KERN_DEBUG "%s: IRQ_DEBUG IS ENABLED!\n", __func__); |
5251 | #endif | 5266 | #endif |
5252 | 5267 | ||
5253 | spin_lock_init(&HFClock); | 5268 | spin_lock_init(&HFClock); |
@@ -5256,22 +5271,11 @@ HFCmulti_init(void) | |||
5256 | if (debug & DEBUG_HFCMULTI_INIT) | 5271 | if (debug & DEBUG_HFCMULTI_INIT) |
5257 | printk(KERN_DEBUG "%s: init entered\n", __func__); | 5272 | printk(KERN_DEBUG "%s: init entered\n", __func__); |
5258 | 5273 | ||
5259 | hfc_interrupt = symbol_get(ztdummy_extern_interrupt); | ||
5260 | register_interrupt = symbol_get(ztdummy_register_interrupt); | ||
5261 | unregister_interrupt = symbol_get(ztdummy_unregister_interrupt); | ||
5262 | printk(KERN_INFO "mISDN: HFC-multi driver %s\n", | ||
5263 | hfcmulti_revision); | ||
5264 | |||
5265 | switch (poll) { | 5274 | switch (poll) { |
5266 | case 0: | 5275 | case 0: |
5267 | poll_timer = 6; | 5276 | poll_timer = 6; |
5268 | poll = 128; | 5277 | poll = 128; |
5269 | break; | 5278 | break; |
5270 | /* | ||
5271 | * wenn dieses break nochmal verschwindet, | ||
5272 | * gibt es heisse ohren :-) | ||
5273 | * "without the break you will get hot ears ???" | ||
5274 | */ | ||
5275 | case 8: | 5279 | case 8: |
5276 | poll_timer = 2; | 5280 | poll_timer = 2; |
5277 | break; | 5281 | break; |
@@ -5298,20 +5302,12 @@ HFCmulti_init(void) | |||
5298 | 5302 | ||
5299 | } | 5303 | } |
5300 | 5304 | ||
5305 | if (!clock) | ||
5306 | clock = 1; | ||
5307 | |||
5301 | err = pci_register_driver(&hfcmultipci_driver); | 5308 | err = pci_register_driver(&hfcmultipci_driver); |
5302 | if (err < 0) { | 5309 | if (err < 0) { |
5303 | printk(KERN_ERR "error registering pci driver: %x\n", err); | 5310 | printk(KERN_ERR "error registering pci driver: %x\n", err); |
5304 | if (hfc_interrupt) | ||
5305 | symbol_put(ztdummy_extern_interrupt); | ||
5306 | if (register_interrupt) | ||
5307 | symbol_put(ztdummy_register_interrupt); | ||
5308 | if (unregister_interrupt) { | ||
5309 | if (interrupt_registered) { | ||
5310 | interrupt_registered = 0; | ||
5311 | unregister_interrupt(); | ||
5312 | } | ||
5313 | symbol_put(ztdummy_unregister_interrupt); | ||
5314 | } | ||
5315 | return err; | 5311 | return err; |
5316 | } | 5312 | } |
5317 | return 0; | 5313 | return 0; |
diff --git a/drivers/isdn/hardware/mISDN/hfcpci.c b/drivers/isdn/hardware/mISDN/hfcpci.c index cd8302af40eb..917bf41a293b 100644 --- a/drivers/isdn/hardware/mISDN/hfcpci.c +++ b/drivers/isdn/hardware/mISDN/hfcpci.c | |||
@@ -23,6 +23,25 @@ | |||
23 | * along with this program; if not, write to the Free Software | 23 | * along with this program; if not, write to the Free Software |
24 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 24 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
25 | * | 25 | * |
26 | * Module options: | ||
27 | * | ||
28 | * debug: | ||
29 | * NOTE: only one poll value must be given for all cards | ||
30 | * See hfc_pci.h for debug flags. | ||
31 | * | ||
32 | * poll: | ||
33 | * NOTE: only one poll value must be given for all cards | ||
34 | * Give the number of samples for each fifo process. | ||
35 | * By default 128 is used. Decrease to reduce delay, increase to | ||
36 | * reduce cpu load. If unsure, don't mess with it! | ||
37 | * A value of 128 will use controller's interrupt. Other values will | ||
38 | * use kernel timer, because the controller will not allow lower values | ||
39 | * than 128. | ||
40 | * Also note that the value depends on the kernel timer frequency. | ||
41 | * If kernel uses a frequency of 1000 Hz, steps of 8 samples are possible. | ||
42 | * If the kernel uses 100 Hz, steps of 80 samples are possible. | ||
43 | * If the kernel uses 300 Hz, steps of about 26 samples are possible. | ||
44 | * | ||
26 | */ | 45 | */ |
27 | 46 | ||
28 | #include <linux/module.h> | 47 | #include <linux/module.h> |
@@ -34,16 +53,16 @@ | |||
34 | 53 | ||
35 | static const char *hfcpci_revision = "2.0"; | 54 | static const char *hfcpci_revision = "2.0"; |
36 | 55 | ||
37 | #define MAX_CARDS 8 | ||
38 | static int HFC_cnt; | 56 | static int HFC_cnt; |
39 | static uint debug; | 57 | static uint debug; |
58 | static uint poll, tics; | ||
59 | struct timer_list hfc_tl; | ||
60 | u32 hfc_jiffies; | ||
40 | 61 | ||
41 | MODULE_AUTHOR("Karsten Keil"); | 62 | MODULE_AUTHOR("Karsten Keil"); |
42 | MODULE_LICENSE("GPL"); | 63 | MODULE_LICENSE("GPL"); |
43 | module_param(debug, uint, 0); | 64 | module_param(debug, uint, 0); |
44 | 65 | module_param(poll, uint, S_IRUGO | S_IWUSR); | |
45 | static LIST_HEAD(HFClist); | ||
46 | static DEFINE_RWLOCK(HFClock); | ||
47 | 66 | ||
48 | enum { | 67 | enum { |
49 | HFC_CCD_2BD0, | 68 | HFC_CCD_2BD0, |
@@ -114,7 +133,6 @@ struct hfcPCI_hw { | |||
114 | 133 | ||
115 | 134 | ||
116 | struct hfc_pci { | 135 | struct hfc_pci { |
117 | struct list_head list; | ||
118 | u_char subtype; | 136 | u_char subtype; |
119 | u_char chanlimit; | 137 | u_char chanlimit; |
120 | u_char initdone; | 138 | u_char initdone; |
@@ -520,9 +538,9 @@ receive_dmsg(struct hfc_pci *hc) | |||
520 | } | 538 | } |
521 | 539 | ||
522 | /* | 540 | /* |
523 | * check for transparent receive data and read max one threshold size if avail | 541 | * check for transparent receive data and read max one 'poll' size if avail |
524 | */ | 542 | */ |
525 | static int | 543 | static void |
526 | hfcpci_empty_fifo_trans(struct bchannel *bch, struct bzfifo *bz, u_char *bdata) | 544 | hfcpci_empty_fifo_trans(struct bchannel *bch, struct bzfifo *bz, u_char *bdata) |
527 | { | 545 | { |
528 | __le16 *z1r, *z2r; | 546 | __le16 *z1r, *z2r; |
@@ -534,17 +552,19 @@ hfcpci_empty_fifo_trans(struct bchannel *bch, struct bzfifo *bz, u_char *bdata) | |||
534 | 552 | ||
535 | fcnt = le16_to_cpu(*z1r) - le16_to_cpu(*z2r); | 553 | fcnt = le16_to_cpu(*z1r) - le16_to_cpu(*z2r); |
536 | if (!fcnt) | 554 | if (!fcnt) |
537 | return 0; /* no data avail */ | 555 | return; /* no data avail */ |
538 | 556 | ||
539 | if (fcnt <= 0) | 557 | if (fcnt <= 0) |
540 | fcnt += B_FIFO_SIZE; /* bytes actually buffered */ | 558 | fcnt += B_FIFO_SIZE; /* bytes actually buffered */ |
541 | if (fcnt > HFCPCI_BTRANS_THRESHOLD) | ||
542 | fcnt = HFCPCI_BTRANS_THRESHOLD; /* limit size */ | ||
543 | |||
544 | new_z2 = le16_to_cpu(*z2r) + fcnt; /* new position in fifo */ | 559 | new_z2 = le16_to_cpu(*z2r) + fcnt; /* new position in fifo */ |
545 | if (new_z2 >= (B_FIFO_SIZE + B_SUB_VAL)) | 560 | if (new_z2 >= (B_FIFO_SIZE + B_SUB_VAL)) |
546 | new_z2 -= B_FIFO_SIZE; /* buffer wrap */ | 561 | new_z2 -= B_FIFO_SIZE; /* buffer wrap */ |
547 | 562 | ||
563 | if (fcnt > MAX_DATA_SIZE) { /* flush, if oversized */ | ||
564 | *z2r = cpu_to_le16(new_z2); /* new position */ | ||
565 | return; | ||
566 | } | ||
567 | |||
548 | bch->rx_skb = mI_alloc_skb(fcnt, GFP_ATOMIC); | 568 | bch->rx_skb = mI_alloc_skb(fcnt, GFP_ATOMIC); |
549 | if (bch->rx_skb) { | 569 | if (bch->rx_skb) { |
550 | ptr = skb_put(bch->rx_skb, fcnt); | 570 | ptr = skb_put(bch->rx_skb, fcnt); |
@@ -569,7 +589,6 @@ hfcpci_empty_fifo_trans(struct bchannel *bch, struct bzfifo *bz, u_char *bdata) | |||
569 | printk(KERN_WARNING "HFCPCI: receive out of memory\n"); | 589 | printk(KERN_WARNING "HFCPCI: receive out of memory\n"); |
570 | 590 | ||
571 | *z2r = cpu_to_le16(new_z2); /* new position */ | 591 | *z2r = cpu_to_le16(new_z2); /* new position */ |
572 | return 1; | ||
573 | } | 592 | } |
574 | 593 | ||
575 | /* | 594 | /* |
@@ -580,12 +599,11 @@ main_rec_hfcpci(struct bchannel *bch) | |||
580 | { | 599 | { |
581 | struct hfc_pci *hc = bch->hw; | 600 | struct hfc_pci *hc = bch->hw; |
582 | int rcnt, real_fifo; | 601 | int rcnt, real_fifo; |
583 | int receive, count = 5; | 602 | int receive = 0, count = 5; |
584 | struct bzfifo *bz; | 603 | struct bzfifo *bz; |
585 | u_char *bdata; | 604 | u_char *bdata; |
586 | struct zt *zp; | 605 | struct zt *zp; |
587 | 606 | ||
588 | |||
589 | if ((bch->nr & 2) && (!hc->hw.bswapped)) { | 607 | if ((bch->nr & 2) && (!hc->hw.bswapped)) { |
590 | bz = &((union fifo_area *)(hc->hw.fifos))->b_chans.rxbz_b2; | 608 | bz = &((union fifo_area *)(hc->hw.fifos))->b_chans.rxbz_b2; |
591 | bdata = ((union fifo_area *)(hc->hw.fifos))->b_chans.rxdat_b2; | 609 | bdata = ((union fifo_area *)(hc->hw.fifos))->b_chans.rxdat_b2; |
@@ -625,9 +643,10 @@ Begin: | |||
625 | receive = 1; | 643 | receive = 1; |
626 | else | 644 | else |
627 | receive = 0; | 645 | receive = 0; |
628 | } else if (test_bit(FLG_TRANSPARENT, &bch->Flags)) | 646 | } else if (test_bit(FLG_TRANSPARENT, &bch->Flags)) { |
629 | receive = hfcpci_empty_fifo_trans(bch, bz, bdata); | 647 | hfcpci_empty_fifo_trans(bch, bz, bdata); |
630 | else | 648 | return; |
649 | } else | ||
631 | receive = 0; | 650 | receive = 0; |
632 | if (count && receive) | 651 | if (count && receive) |
633 | goto Begin; | 652 | goto Begin; |
@@ -751,11 +770,41 @@ hfcpci_fill_fifo(struct bchannel *bch) | |||
751 | /* fcnt contains available bytes in fifo */ | 770 | /* fcnt contains available bytes in fifo */ |
752 | fcnt = B_FIFO_SIZE - fcnt; | 771 | fcnt = B_FIFO_SIZE - fcnt; |
753 | /* remaining bytes to send (bytes in fifo) */ | 772 | /* remaining bytes to send (bytes in fifo) */ |
773 | |||
774 | /* "fill fifo if empty" feature */ | ||
775 | if (test_bit(FLG_FILLEMPTY, &bch->Flags) && !fcnt) { | ||
776 | /* printk(KERN_DEBUG "%s: buffer empty, so we have " | ||
777 | "underrun\n", __func__); */ | ||
778 | /* fill buffer, to prevent future underrun */ | ||
779 | count = HFCPCI_FILLEMPTY; | ||
780 | new_z1 = le16_to_cpu(*z1t) + count; | ||
781 | /* new buffer Position */ | ||
782 | if (new_z1 >= (B_FIFO_SIZE + B_SUB_VAL)) | ||
783 | new_z1 -= B_FIFO_SIZE; /* buffer wrap */ | ||
784 | dst = bdata + (le16_to_cpu(*z1t) - B_SUB_VAL); | ||
785 | maxlen = (B_FIFO_SIZE + B_SUB_VAL) - le16_to_cpu(*z1t); | ||
786 | /* end of fifo */ | ||
787 | if (bch->debug & DEBUG_HW_BFIFO) | ||
788 | printk(KERN_DEBUG "hfcpci_FFt fillempty " | ||
789 | "fcnt(%d) maxl(%d) nz1(%x) dst(%p)\n", | ||
790 | fcnt, maxlen, new_z1, dst); | ||
791 | fcnt += count; | ||
792 | if (maxlen > count) | ||
793 | maxlen = count; /* limit size */ | ||
794 | memset(dst, 0x2a, maxlen); /* first copy */ | ||
795 | count -= maxlen; /* remaining bytes */ | ||
796 | if (count) { | ||
797 | dst = bdata; /* start of buffer */ | ||
798 | memset(dst, 0x2a, count); | ||
799 | } | ||
800 | *z1t = cpu_to_le16(new_z1); /* now send data */ | ||
801 | } | ||
802 | |||
754 | next_t_frame: | 803 | next_t_frame: |
755 | count = bch->tx_skb->len - bch->tx_idx; | 804 | count = bch->tx_skb->len - bch->tx_idx; |
756 | /* maximum fill shall be HFCPCI_BTRANS_MAX */ | 805 | /* maximum fill shall be poll*2 */ |
757 | if (count > HFCPCI_BTRANS_MAX - fcnt) | 806 | if (count > (poll << 1) - fcnt) |
758 | count = HFCPCI_BTRANS_MAX - fcnt; | 807 | count = (poll << 1) - fcnt; |
759 | if (count <= 0) | 808 | if (count <= 0) |
760 | return; | 809 | return; |
761 | /* data is suitable for fifo */ | 810 | /* data is suitable for fifo */ |
@@ -1135,37 +1184,37 @@ hfcpci_int(int intno, void *dev_id) | |||
1135 | val &= ~0x80; | 1184 | val &= ~0x80; |
1136 | Write_hfc(hc, HFCPCI_CTMT, hc->hw.ctmt | HFCPCI_CLTIMER); | 1185 | Write_hfc(hc, HFCPCI_CTMT, hc->hw.ctmt | HFCPCI_CLTIMER); |
1137 | } | 1186 | } |
1138 | if (val & 0x08) { | 1187 | if (val & 0x08) { /* B1 rx */ |
1139 | bch = Sel_BCS(hc, hc->hw.bswapped ? 2 : 1); | 1188 | bch = Sel_BCS(hc, hc->hw.bswapped ? 2 : 1); |
1140 | if (bch) | 1189 | if (bch) |
1141 | main_rec_hfcpci(bch); | 1190 | main_rec_hfcpci(bch); |
1142 | else if (hc->dch.debug) | 1191 | else if (hc->dch.debug) |
1143 | printk(KERN_DEBUG "hfcpci spurious 0x08 IRQ\n"); | 1192 | printk(KERN_DEBUG "hfcpci spurious 0x08 IRQ\n"); |
1144 | } | 1193 | } |
1145 | if (val & 0x10) { | 1194 | if (val & 0x10) { /* B2 rx */ |
1146 | bch = Sel_BCS(hc, 2); | 1195 | bch = Sel_BCS(hc, 2); |
1147 | if (bch) | 1196 | if (bch) |
1148 | main_rec_hfcpci(bch); | 1197 | main_rec_hfcpci(bch); |
1149 | else if (hc->dch.debug) | 1198 | else if (hc->dch.debug) |
1150 | printk(KERN_DEBUG "hfcpci spurious 0x10 IRQ\n"); | 1199 | printk(KERN_DEBUG "hfcpci spurious 0x10 IRQ\n"); |
1151 | } | 1200 | } |
1152 | if (val & 0x01) { | 1201 | if (val & 0x01) { /* B1 tx */ |
1153 | bch = Sel_BCS(hc, hc->hw.bswapped ? 2 : 1); | 1202 | bch = Sel_BCS(hc, hc->hw.bswapped ? 2 : 1); |
1154 | if (bch) | 1203 | if (bch) |
1155 | tx_birq(bch); | 1204 | tx_birq(bch); |
1156 | else if (hc->dch.debug) | 1205 | else if (hc->dch.debug) |
1157 | printk(KERN_DEBUG "hfcpci spurious 0x01 IRQ\n"); | 1206 | printk(KERN_DEBUG "hfcpci spurious 0x01 IRQ\n"); |
1158 | } | 1207 | } |
1159 | if (val & 0x02) { | 1208 | if (val & 0x02) { /* B2 tx */ |
1160 | bch = Sel_BCS(hc, 2); | 1209 | bch = Sel_BCS(hc, 2); |
1161 | if (bch) | 1210 | if (bch) |
1162 | tx_birq(bch); | 1211 | tx_birq(bch); |
1163 | else if (hc->dch.debug) | 1212 | else if (hc->dch.debug) |
1164 | printk(KERN_DEBUG "hfcpci spurious 0x02 IRQ\n"); | 1213 | printk(KERN_DEBUG "hfcpci spurious 0x02 IRQ\n"); |
1165 | } | 1214 | } |
1166 | if (val & 0x20) | 1215 | if (val & 0x20) /* D rx */ |
1167 | receive_dmsg(hc); | 1216 | receive_dmsg(hc); |
1168 | if (val & 0x04) { /* dframe transmitted */ | 1217 | if (val & 0x04) { /* D tx */ |
1169 | if (test_and_clear_bit(FLG_BUSY_TIMER, &hc->dch.Flags)) | 1218 | if (test_and_clear_bit(FLG_BUSY_TIMER, &hc->dch.Flags)) |
1170 | del_timer(&hc->dch.timer); | 1219 | del_timer(&hc->dch.timer); |
1171 | tx_dirq(&hc->dch); | 1220 | tx_dirq(&hc->dch); |
@@ -1283,14 +1332,16 @@ mode_hfcpci(struct bchannel *bch, int bc, int protocol) | |||
1283 | } | 1332 | } |
1284 | if (fifo2 & 2) { | 1333 | if (fifo2 & 2) { |
1285 | hc->hw.fifo_en |= HFCPCI_FIFOEN_B2; | 1334 | hc->hw.fifo_en |= HFCPCI_FIFOEN_B2; |
1286 | hc->hw.int_m1 |= (HFCPCI_INTS_B2TRANS + | 1335 | if (!tics) |
1287 | HFCPCI_INTS_B2REC); | 1336 | hc->hw.int_m1 |= (HFCPCI_INTS_B2TRANS + |
1337 | HFCPCI_INTS_B2REC); | ||
1288 | hc->hw.ctmt |= 2; | 1338 | hc->hw.ctmt |= 2; |
1289 | hc->hw.conn &= ~0x18; | 1339 | hc->hw.conn &= ~0x18; |
1290 | } else { | 1340 | } else { |
1291 | hc->hw.fifo_en |= HFCPCI_FIFOEN_B1; | 1341 | hc->hw.fifo_en |= HFCPCI_FIFOEN_B1; |
1292 | hc->hw.int_m1 |= (HFCPCI_INTS_B1TRANS + | 1342 | if (!tics) |
1293 | HFCPCI_INTS_B1REC); | 1343 | hc->hw.int_m1 |= (HFCPCI_INTS_B1TRANS + |
1344 | HFCPCI_INTS_B1REC); | ||
1294 | hc->hw.ctmt |= 1; | 1345 | hc->hw.ctmt |= 1; |
1295 | hc->hw.conn &= ~0x03; | 1346 | hc->hw.conn &= ~0x03; |
1296 | } | 1347 | } |
@@ -1398,7 +1449,8 @@ set_hfcpci_rxtest(struct bchannel *bch, int protocol, int chan) | |||
1398 | if (chan & 2) { | 1449 | if (chan & 2) { |
1399 | hc->hw.sctrl_r |= SCTRL_B2_ENA; | 1450 | hc->hw.sctrl_r |= SCTRL_B2_ENA; |
1400 | hc->hw.fifo_en |= HFCPCI_FIFOEN_B2RX; | 1451 | hc->hw.fifo_en |= HFCPCI_FIFOEN_B2RX; |
1401 | hc->hw.int_m1 |= HFCPCI_INTS_B2REC; | 1452 | if (!tics) |
1453 | hc->hw.int_m1 |= HFCPCI_INTS_B2REC; | ||
1402 | hc->hw.ctmt |= 2; | 1454 | hc->hw.ctmt |= 2; |
1403 | hc->hw.conn &= ~0x18; | 1455 | hc->hw.conn &= ~0x18; |
1404 | #ifdef REVERSE_BITORDER | 1456 | #ifdef REVERSE_BITORDER |
@@ -1407,7 +1459,8 @@ set_hfcpci_rxtest(struct bchannel *bch, int protocol, int chan) | |||
1407 | } else { | 1459 | } else { |
1408 | hc->hw.sctrl_r |= SCTRL_B1_ENA; | 1460 | hc->hw.sctrl_r |= SCTRL_B1_ENA; |
1409 | hc->hw.fifo_en |= HFCPCI_FIFOEN_B1RX; | 1461 | hc->hw.fifo_en |= HFCPCI_FIFOEN_B1RX; |
1410 | hc->hw.int_m1 |= HFCPCI_INTS_B1REC; | 1462 | if (!tics) |
1463 | hc->hw.int_m1 |= HFCPCI_INTS_B1REC; | ||
1411 | hc->hw.ctmt |= 1; | 1464 | hc->hw.ctmt |= 1; |
1412 | hc->hw.conn &= ~0x03; | 1465 | hc->hw.conn &= ~0x03; |
1413 | #ifdef REVERSE_BITORDER | 1466 | #ifdef REVERSE_BITORDER |
@@ -1481,11 +1534,17 @@ deactivate_bchannel(struct bchannel *bch) | |||
1481 | static int | 1534 | static int |
1482 | channel_bctrl(struct bchannel *bch, struct mISDN_ctrl_req *cq) | 1535 | channel_bctrl(struct bchannel *bch, struct mISDN_ctrl_req *cq) |
1483 | { | 1536 | { |
1484 | int ret = 0; | 1537 | int ret = 0; |
1485 | 1538 | ||
1486 | switch (cq->op) { | 1539 | switch (cq->op) { |
1487 | case MISDN_CTRL_GETOP: | 1540 | case MISDN_CTRL_GETOP: |
1488 | cq->op = 0; | 1541 | cq->op = MISDN_CTRL_FILL_EMPTY; |
1542 | break; | ||
1543 | case MISDN_CTRL_FILL_EMPTY: /* fill fifo, if empty */ | ||
1544 | test_and_set_bit(FLG_FILLEMPTY, &bch->Flags); | ||
1545 | if (debug & DEBUG_HW_OPEN) | ||
1546 | printk(KERN_DEBUG "%s: FILL_EMPTY request (nr=%d " | ||
1547 | "off=%d)\n", __func__, bch->nr, !!cq->p1); | ||
1489 | break; | 1548 | break; |
1490 | default: | 1549 | default: |
1491 | printk(KERN_WARNING "%s: unknown Op %x\n", __func__, cq->op); | 1550 | printk(KERN_WARNING "%s: unknown Op %x\n", __func__, cq->op); |
@@ -1859,6 +1918,10 @@ open_dchannel(struct hfc_pci *hc, struct mISDNchannel *ch, | |||
1859 | hc->dch.dev.id, __builtin_return_address(0)); | 1918 | hc->dch.dev.id, __builtin_return_address(0)); |
1860 | if (rq->protocol == ISDN_P_NONE) | 1919 | if (rq->protocol == ISDN_P_NONE) |
1861 | return -EINVAL; | 1920 | return -EINVAL; |
1921 | if (rq->adr.channel == 1) { | ||
1922 | /* TODO: E-Channel */ | ||
1923 | return -EINVAL; | ||
1924 | } | ||
1862 | if (!hc->initdone) { | 1925 | if (!hc->initdone) { |
1863 | if (rq->protocol == ISDN_P_TE_S0) { | 1926 | if (rq->protocol == ISDN_P_TE_S0) { |
1864 | err = create_l1(&hc->dch, hfc_l1callback); | 1927 | err = create_l1(&hc->dch, hfc_l1callback); |
@@ -1874,6 +1937,11 @@ open_dchannel(struct hfc_pci *hc, struct mISDNchannel *ch, | |||
1874 | if (rq->protocol != ch->protocol) { | 1937 | if (rq->protocol != ch->protocol) { |
1875 | if (hc->hw.protocol == ISDN_P_TE_S0) | 1938 | if (hc->hw.protocol == ISDN_P_TE_S0) |
1876 | l1_event(hc->dch.l1, CLOSE_CHANNEL); | 1939 | l1_event(hc->dch.l1, CLOSE_CHANNEL); |
1940 | if (rq->protocol == ISDN_P_TE_S0) { | ||
1941 | err = create_l1(&hc->dch, hfc_l1callback); | ||
1942 | if (err) | ||
1943 | return err; | ||
1944 | } | ||
1877 | hc->hw.protocol = rq->protocol; | 1945 | hc->hw.protocol = rq->protocol; |
1878 | ch->protocol = rq->protocol; | 1946 | ch->protocol = rq->protocol; |
1879 | hfcpci_setmode(hc); | 1947 | hfcpci_setmode(hc); |
@@ -1903,6 +1971,7 @@ open_bchannel(struct hfc_pci *hc, struct channel_req *rq) | |||
1903 | bch = &hc->bch[rq->adr.channel - 1]; | 1971 | bch = &hc->bch[rq->adr.channel - 1]; |
1904 | if (test_and_set_bit(FLG_OPEN, &bch->Flags)) | 1972 | if (test_and_set_bit(FLG_OPEN, &bch->Flags)) |
1905 | return -EBUSY; /* b-channel can be only open once */ | 1973 | return -EBUSY; /* b-channel can be only open once */ |
1974 | test_and_clear_bit(FLG_FILLEMPTY, &bch->Flags); | ||
1906 | bch->ch.protocol = rq->protocol; | 1975 | bch->ch.protocol = rq->protocol; |
1907 | rq->ch = &bch->ch; /* TODO: E-channel */ | 1976 | rq->ch = &bch->ch; /* TODO: E-channel */ |
1908 | if (!try_module_get(THIS_MODULE)) | 1977 | if (!try_module_get(THIS_MODULE)) |
@@ -1928,7 +1997,8 @@ hfc_dctrl(struct mISDNchannel *ch, u_int cmd, void *arg) | |||
1928 | switch (cmd) { | 1997 | switch (cmd) { |
1929 | case OPEN_CHANNEL: | 1998 | case OPEN_CHANNEL: |
1930 | rq = arg; | 1999 | rq = arg; |
1931 | if (rq->adr.channel == 0) | 2000 | if ((rq->protocol == ISDN_P_TE_S0) || |
2001 | (rq->protocol == ISDN_P_NT_S0)) | ||
1932 | err = open_dchannel(hc, ch, rq); | 2002 | err = open_dchannel(hc, ch, rq); |
1933 | else | 2003 | else |
1934 | err = open_bchannel(hc, rq); | 2004 | err = open_bchannel(hc, rq); |
@@ -2027,7 +2097,6 @@ release_card(struct hfc_pci *hc) { | |||
2027 | mISDN_freebchannel(&hc->bch[1]); | 2097 | mISDN_freebchannel(&hc->bch[1]); |
2028 | mISDN_freebchannel(&hc->bch[0]); | 2098 | mISDN_freebchannel(&hc->bch[0]); |
2029 | mISDN_freedchannel(&hc->dch); | 2099 | mISDN_freedchannel(&hc->dch); |
2030 | list_del(&hc->list); | ||
2031 | pci_set_drvdata(hc->pdev, NULL); | 2100 | pci_set_drvdata(hc->pdev, NULL); |
2032 | kfree(hc); | 2101 | kfree(hc); |
2033 | } | 2102 | } |
@@ -2037,12 +2106,8 @@ setup_card(struct hfc_pci *card) | |||
2037 | { | 2106 | { |
2038 | int err = -EINVAL; | 2107 | int err = -EINVAL; |
2039 | u_int i; | 2108 | u_int i; |
2040 | u_long flags; | ||
2041 | char name[MISDN_MAX_IDLEN]; | 2109 | char name[MISDN_MAX_IDLEN]; |
2042 | 2110 | ||
2043 | if (HFC_cnt >= MAX_CARDS) | ||
2044 | return -EINVAL; /* maybe better value */ | ||
2045 | |||
2046 | card->dch.debug = debug; | 2111 | card->dch.debug = debug; |
2047 | spin_lock_init(&card->lock); | 2112 | spin_lock_init(&card->lock); |
2048 | mISDN_initdchannel(&card->dch, MAX_DFRAME_LEN_L1, ph_state); | 2113 | mISDN_initdchannel(&card->dch, MAX_DFRAME_LEN_L1, ph_state); |
@@ -2068,13 +2133,10 @@ setup_card(struct hfc_pci *card) | |||
2068 | if (err) | 2133 | if (err) |
2069 | goto error; | 2134 | goto error; |
2070 | snprintf(name, MISDN_MAX_IDLEN - 1, "hfc-pci.%d", HFC_cnt + 1); | 2135 | snprintf(name, MISDN_MAX_IDLEN - 1, "hfc-pci.%d", HFC_cnt + 1); |
2071 | err = mISDN_register_device(&card->dch.dev, name); | 2136 | err = mISDN_register_device(&card->dch.dev, &card->pdev->dev, name); |
2072 | if (err) | 2137 | if (err) |
2073 | goto error; | 2138 | goto error; |
2074 | HFC_cnt++; | 2139 | HFC_cnt++; |
2075 | write_lock_irqsave(&HFClock, flags); | ||
2076 | list_add_tail(&card->list, &HFClist); | ||
2077 | write_unlock_irqrestore(&HFClock, flags); | ||
2078 | printk(KERN_INFO "HFC %d cards installed\n", HFC_cnt); | 2140 | printk(KERN_INFO "HFC %d cards installed\n", HFC_cnt); |
2079 | return 0; | 2141 | return 0; |
2080 | error: | 2142 | error: |
@@ -2210,15 +2272,12 @@ static void __devexit | |||
2210 | hfc_remove_pci(struct pci_dev *pdev) | 2272 | hfc_remove_pci(struct pci_dev *pdev) |
2211 | { | 2273 | { |
2212 | struct hfc_pci *card = pci_get_drvdata(pdev); | 2274 | struct hfc_pci *card = pci_get_drvdata(pdev); |
2213 | u_long flags; | ||
2214 | 2275 | ||
2215 | if (card) { | 2276 | if (card) |
2216 | write_lock_irqsave(&HFClock, flags); | ||
2217 | release_card(card); | 2277 | release_card(card); |
2218 | write_unlock_irqrestore(&HFClock, flags); | 2278 | else |
2219 | } else | ||
2220 | if (debug) | 2279 | if (debug) |
2221 | printk(KERN_WARNING "%s: drvdata allready removed\n", | 2280 | printk(KERN_WARNING "%s: drvdata already removed\n", |
2222 | __func__); | 2281 | __func__); |
2223 | } | 2282 | } |
2224 | 2283 | ||
@@ -2230,25 +2289,97 @@ static struct pci_driver hfc_driver = { | |||
2230 | .id_table = hfc_ids, | 2289 | .id_table = hfc_ids, |
2231 | }; | 2290 | }; |
2232 | 2291 | ||
2292 | static int | ||
2293 | _hfcpci_softirq(struct device *dev, void *arg) | ||
2294 | { | ||
2295 | struct hfc_pci *hc = dev_get_drvdata(dev); | ||
2296 | struct bchannel *bch; | ||
2297 | if (hc == NULL) | ||
2298 | return 0; | ||
2299 | |||
2300 | if (hc->hw.int_m2 & HFCPCI_IRQ_ENABLE) { | ||
2301 | spin_lock(&hc->lock); | ||
2302 | bch = Sel_BCS(hc, hc->hw.bswapped ? 2 : 1); | ||
2303 | if (bch && bch->state == ISDN_P_B_RAW) { /* B1 rx&tx */ | ||
2304 | main_rec_hfcpci(bch); | ||
2305 | tx_birq(bch); | ||
2306 | } | ||
2307 | bch = Sel_BCS(hc, hc->hw.bswapped ? 1 : 2); | ||
2308 | if (bch && bch->state == ISDN_P_B_RAW) { /* B2 rx&tx */ | ||
2309 | main_rec_hfcpci(bch); | ||
2310 | tx_birq(bch); | ||
2311 | } | ||
2312 | spin_unlock(&hc->lock); | ||
2313 | } | ||
2314 | return 0; | ||
2315 | } | ||
2316 | |||
2317 | static void | ||
2318 | hfcpci_softirq(void *arg) | ||
2319 | { | ||
2320 | (void) driver_for_each_device(&hfc_driver.driver, NULL, arg, | ||
2321 | _hfcpci_softirq); | ||
2322 | |||
2323 | /* if next event would be in the past ... */ | ||
2324 | if ((s32)(hfc_jiffies + tics - jiffies) <= 0) | ||
2325 | hfc_jiffies = jiffies + 1; | ||
2326 | else | ||
2327 | hfc_jiffies += tics; | ||
2328 | hfc_tl.expires = hfc_jiffies; | ||
2329 | add_timer(&hfc_tl); | ||
2330 | } | ||
2331 | |||
2233 | static int __init | 2332 | static int __init |
2234 | HFC_init(void) | 2333 | HFC_init(void) |
2235 | { | 2334 | { |
2236 | int err; | 2335 | int err; |
2237 | 2336 | ||
2337 | if (!poll) | ||
2338 | poll = HFCPCI_BTRANS_THRESHOLD; | ||
2339 | |||
2340 | if (poll != HFCPCI_BTRANS_THRESHOLD) { | ||
2341 | tics = (poll * HZ) / 8000; | ||
2342 | if (tics < 1) | ||
2343 | tics = 1; | ||
2344 | poll = (tics * 8000) / HZ; | ||
2345 | if (poll > 256 || poll < 8) { | ||
2346 | printk(KERN_ERR "%s: Wrong poll value %d not in range " | ||
2347 | "of 8..256.\n", __func__, poll); | ||
2348 | err = -EINVAL; | ||
2349 | return err; | ||
2350 | } | ||
2351 | } | ||
2352 | if (poll != HFCPCI_BTRANS_THRESHOLD) { | ||
2353 | printk(KERN_INFO "%s: Using alternative poll value of %d\n", | ||
2354 | __func__, poll); | ||
2355 | hfc_tl.function = (void *)hfcpci_softirq; | ||
2356 | hfc_tl.data = 0; | ||
2357 | init_timer(&hfc_tl); | ||
2358 | hfc_tl.expires = jiffies + tics; | ||
2359 | hfc_jiffies = hfc_tl.expires; | ||
2360 | add_timer(&hfc_tl); | ||
2361 | } else | ||
2362 | tics = 0; /* indicate the use of controller's timer */ | ||
2363 | |||
2238 | err = pci_register_driver(&hfc_driver); | 2364 | err = pci_register_driver(&hfc_driver); |
2365 | if (err) { | ||
2366 | if (timer_pending(&hfc_tl)) | ||
2367 | del_timer(&hfc_tl); | ||
2368 | } | ||
2369 | |||
2239 | return err; | 2370 | return err; |
2240 | } | 2371 | } |
2241 | 2372 | ||
2242 | static void __exit | 2373 | static void __exit |
2243 | HFC_cleanup(void) | 2374 | HFC_cleanup(void) |
2244 | { | 2375 | { |
2245 | struct hfc_pci *card, *next; | 2376 | if (timer_pending(&hfc_tl)) |
2377 | del_timer(&hfc_tl); | ||
2246 | 2378 | ||
2247 | list_for_each_entry_safe(card, next, &HFClist, list) { | ||
2248 | release_card(card); | ||
2249 | } | ||
2250 | pci_unregister_driver(&hfc_driver); | 2379 | pci_unregister_driver(&hfc_driver); |
2251 | } | 2380 | } |
2252 | 2381 | ||
2253 | module_init(HFC_init); | 2382 | module_init(HFC_init); |
2254 | module_exit(HFC_cleanup); | 2383 | module_exit(HFC_cleanup); |
2384 | |||
2385 | MODULE_DEVICE_TABLE(pci, hfc_ids); | ||
diff --git a/drivers/isdn/hardware/mISDN/hfcsusb.c b/drivers/isdn/hardware/mISDN/hfcsusb.c new file mode 100644 index 000000000000..ba6925fbf38a --- /dev/null +++ b/drivers/isdn/hardware/mISDN/hfcsusb.c | |||
@@ -0,0 +1,2196 @@ | |||
1 | /* hfcsusb.c | ||
2 | * mISDN driver for Colognechip HFC-S USB chip | ||
3 | * | ||
4 | * Copyright 2001 by Peter Sprenger (sprenger@moving-bytes.de) | ||
5 | * Copyright 2008 by Martin Bachem (info@bachem-it.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 as published by | ||
9 | * the Free Software Foundation; either version 2, or (at your option) | ||
10 | * any later version. | ||
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., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
20 | * | ||
21 | * | ||
22 | * module params | ||
23 | * debug=<n>, default=0, with n=0xHHHHGGGG | ||
24 | * H - l1 driver flags described in hfcsusb.h | ||
25 | * G - common mISDN debug flags described at mISDNhw.h | ||
26 | * | ||
27 | * poll=<n>, default 128 | ||
28 | * n : burst size of PH_DATA_IND at transparent rx data | ||
29 | * | ||
30 | */ | ||
31 | |||
32 | #include <linux/module.h> | ||
33 | #include <linux/delay.h> | ||
34 | #include <linux/usb.h> | ||
35 | #include <linux/mISDNhw.h> | ||
36 | #include "hfcsusb.h" | ||
37 | |||
38 | const char *hfcsusb_rev = "Revision: 0.3.3 (socket), 2008-11-05"; | ||
39 | |||
40 | static unsigned int debug; | ||
41 | static int poll = DEFAULT_TRANSP_BURST_SZ; | ||
42 | |||
43 | static LIST_HEAD(HFClist); | ||
44 | static DEFINE_RWLOCK(HFClock); | ||
45 | |||
46 | |||
47 | MODULE_AUTHOR("Martin Bachem"); | ||
48 | MODULE_LICENSE("GPL"); | ||
49 | module_param(debug, uint, S_IRUGO | S_IWUSR); | ||
50 | module_param(poll, int, 0); | ||
51 | |||
52 | static int hfcsusb_cnt; | ||
53 | |||
54 | /* some function prototypes */ | ||
55 | static void hfcsusb_ph_command(struct hfcsusb *hw, u_char command); | ||
56 | static void release_hw(struct hfcsusb *hw); | ||
57 | static void reset_hfcsusb(struct hfcsusb *hw); | ||
58 | static void setPortMode(struct hfcsusb *hw); | ||
59 | static void hfcsusb_start_endpoint(struct hfcsusb *hw, int channel); | ||
60 | static void hfcsusb_stop_endpoint(struct hfcsusb *hw, int channel); | ||
61 | static int hfcsusb_setup_bch(struct bchannel *bch, int protocol); | ||
62 | static void deactivate_bchannel(struct bchannel *bch); | ||
63 | static void hfcsusb_ph_info(struct hfcsusb *hw); | ||
64 | |||
65 | /* start next background transfer for control channel */ | ||
66 | static void | ||
67 | ctrl_start_transfer(struct hfcsusb *hw) | ||
68 | { | ||
69 | if (debug & DBG_HFC_CALL_TRACE) | ||
70 | printk(KERN_DEBUG "%s: %s\n", hw->name, __func__); | ||
71 | |||
72 | if (hw->ctrl_cnt) { | ||
73 | hw->ctrl_urb->pipe = hw->ctrl_out_pipe; | ||
74 | hw->ctrl_urb->setup_packet = (u_char *)&hw->ctrl_write; | ||
75 | hw->ctrl_urb->transfer_buffer = NULL; | ||
76 | hw->ctrl_urb->transfer_buffer_length = 0; | ||
77 | hw->ctrl_write.wIndex = | ||
78 | cpu_to_le16(hw->ctrl_buff[hw->ctrl_out_idx].hfcs_reg); | ||
79 | hw->ctrl_write.wValue = | ||
80 | cpu_to_le16(hw->ctrl_buff[hw->ctrl_out_idx].reg_val); | ||
81 | |||
82 | usb_submit_urb(hw->ctrl_urb, GFP_ATOMIC); | ||
83 | } | ||
84 | } | ||
85 | |||
86 | /* | ||
87 | * queue a control transfer request to write HFC-S USB | ||
88 | * chip register using CTRL resuest queue | ||
89 | */ | ||
90 | static int write_reg(struct hfcsusb *hw, __u8 reg, __u8 val) | ||
91 | { | ||
92 | struct ctrl_buf *buf; | ||
93 | |||
94 | if (debug & DBG_HFC_CALL_TRACE) | ||
95 | printk(KERN_DEBUG "%s: %s reg(0x%02x) val(0x%02x)\n", | ||
96 | hw->name, __func__, reg, val); | ||
97 | |||
98 | spin_lock(&hw->ctrl_lock); | ||
99 | if (hw->ctrl_cnt >= HFC_CTRL_BUFSIZE) | ||
100 | return 1; | ||
101 | buf = &hw->ctrl_buff[hw->ctrl_in_idx]; | ||
102 | buf->hfcs_reg = reg; | ||
103 | buf->reg_val = val; | ||
104 | if (++hw->ctrl_in_idx >= HFC_CTRL_BUFSIZE) | ||
105 | hw->ctrl_in_idx = 0; | ||
106 | if (++hw->ctrl_cnt == 1) | ||
107 | ctrl_start_transfer(hw); | ||
108 | spin_unlock(&hw->ctrl_lock); | ||
109 | |||
110 | return 0; | ||
111 | } | ||
112 | |||
113 | /* control completion routine handling background control cmds */ | ||
114 | static void | ||
115 | ctrl_complete(struct urb *urb) | ||
116 | { | ||
117 | struct hfcsusb *hw = (struct hfcsusb *) urb->context; | ||
118 | struct ctrl_buf *buf; | ||
119 | |||
120 | if (debug & DBG_HFC_CALL_TRACE) | ||
121 | printk(KERN_DEBUG "%s: %s\n", hw->name, __func__); | ||
122 | |||
123 | urb->dev = hw->dev; | ||
124 | if (hw->ctrl_cnt) { | ||
125 | buf = &hw->ctrl_buff[hw->ctrl_out_idx]; | ||
126 | hw->ctrl_cnt--; /* decrement actual count */ | ||
127 | if (++hw->ctrl_out_idx >= HFC_CTRL_BUFSIZE) | ||
128 | hw->ctrl_out_idx = 0; /* pointer wrap */ | ||
129 | |||
130 | ctrl_start_transfer(hw); /* start next transfer */ | ||
131 | } | ||
132 | } | ||
133 | |||
134 | /* handle LED bits */ | ||
135 | static void | ||
136 | set_led_bit(struct hfcsusb *hw, signed short led_bits, int set_on) | ||
137 | { | ||
138 | if (set_on) { | ||
139 | if (led_bits < 0) | ||
140 | hw->led_state &= ~abs(led_bits); | ||
141 | else | ||
142 | hw->led_state |= led_bits; | ||
143 | } else { | ||
144 | if (led_bits < 0) | ||
145 | hw->led_state |= abs(led_bits); | ||
146 | else | ||
147 | hw->led_state &= ~led_bits; | ||
148 | } | ||
149 | } | ||
150 | |||
151 | /* handle LED requests */ | ||
152 | static void | ||
153 | handle_led(struct hfcsusb *hw, int event) | ||
154 | { | ||
155 | struct hfcsusb_vdata *driver_info = (struct hfcsusb_vdata *) | ||
156 | hfcsusb_idtab[hw->vend_idx].driver_info; | ||
157 | __u8 tmpled; | ||
158 | |||
159 | if (driver_info->led_scheme == LED_OFF) | ||
160 | return; | ||
161 | tmpled = hw->led_state; | ||
162 | |||
163 | switch (event) { | ||
164 | case LED_POWER_ON: | ||
165 | set_led_bit(hw, driver_info->led_bits[0], 1); | ||
166 | set_led_bit(hw, driver_info->led_bits[1], 0); | ||
167 | set_led_bit(hw, driver_info->led_bits[2], 0); | ||
168 | set_led_bit(hw, driver_info->led_bits[3], 0); | ||
169 | break; | ||
170 | case LED_POWER_OFF: | ||
171 | set_led_bit(hw, driver_info->led_bits[0], 0); | ||
172 | set_led_bit(hw, driver_info->led_bits[1], 0); | ||
173 | set_led_bit(hw, driver_info->led_bits[2], 0); | ||
174 | set_led_bit(hw, driver_info->led_bits[3], 0); | ||
175 | break; | ||
176 | case LED_S0_ON: | ||
177 | set_led_bit(hw, driver_info->led_bits[1], 1); | ||
178 | break; | ||
179 | case LED_S0_OFF: | ||
180 | set_led_bit(hw, driver_info->led_bits[1], 0); | ||
181 | break; | ||
182 | case LED_B1_ON: | ||
183 | set_led_bit(hw, driver_info->led_bits[2], 1); | ||
184 | break; | ||
185 | case LED_B1_OFF: | ||
186 | set_led_bit(hw, driver_info->led_bits[2], 0); | ||
187 | break; | ||
188 | case LED_B2_ON: | ||
189 | set_led_bit(hw, driver_info->led_bits[3], 1); | ||
190 | break; | ||
191 | case LED_B2_OFF: | ||
192 | set_led_bit(hw, driver_info->led_bits[3], 0); | ||
193 | break; | ||
194 | } | ||
195 | |||
196 | if (hw->led_state != tmpled) { | ||
197 | if (debug & DBG_HFC_CALL_TRACE) | ||
198 | printk(KERN_DEBUG "%s: %s reg(0x%02x) val(x%02x)\n", | ||
199 | hw->name, __func__, | ||
200 | HFCUSB_P_DATA, hw->led_state); | ||
201 | |||
202 | write_reg(hw, HFCUSB_P_DATA, hw->led_state); | ||
203 | } | ||
204 | } | ||
205 | |||
206 | /* | ||
207 | * Layer2 -> Layer 1 Bchannel data | ||
208 | */ | ||
209 | static int | ||
210 | hfcusb_l2l1B(struct mISDNchannel *ch, struct sk_buff *skb) | ||
211 | { | ||
212 | struct bchannel *bch = container_of(ch, struct bchannel, ch); | ||
213 | struct hfcsusb *hw = bch->hw; | ||
214 | int ret = -EINVAL; | ||
215 | struct mISDNhead *hh = mISDN_HEAD_P(skb); | ||
216 | u_long flags; | ||
217 | |||
218 | if (debug & DBG_HFC_CALL_TRACE) | ||
219 | printk(KERN_DEBUG "%s: %s\n", hw->name, __func__); | ||
220 | |||
221 | switch (hh->prim) { | ||
222 | case PH_DATA_REQ: | ||
223 | spin_lock_irqsave(&hw->lock, flags); | ||
224 | ret = bchannel_senddata(bch, skb); | ||
225 | spin_unlock_irqrestore(&hw->lock, flags); | ||
226 | if (debug & DBG_HFC_CALL_TRACE) | ||
227 | printk(KERN_DEBUG "%s: %s PH_DATA_REQ ret(%i)\n", | ||
228 | hw->name, __func__, ret); | ||
229 | if (ret > 0) { | ||
230 | /* | ||
231 | * other l1 drivers don't send early confirms on | ||
232 | * transp data, but hfcsusb does because tx_next | ||
233 | * skb is needed in tx_iso_complete() | ||
234 | */ | ||
235 | queue_ch_frame(ch, PH_DATA_CNF, hh->id, NULL); | ||
236 | ret = 0; | ||
237 | } | ||
238 | return ret; | ||
239 | case PH_ACTIVATE_REQ: | ||
240 | if (!test_and_set_bit(FLG_ACTIVE, &bch->Flags)) { | ||
241 | hfcsusb_start_endpoint(hw, bch->nr); | ||
242 | ret = hfcsusb_setup_bch(bch, ch->protocol); | ||
243 | } else | ||
244 | ret = 0; | ||
245 | if (!ret) | ||
246 | _queue_data(ch, PH_ACTIVATE_IND, MISDN_ID_ANY, | ||
247 | 0, NULL, GFP_KERNEL); | ||
248 | break; | ||
249 | case PH_DEACTIVATE_REQ: | ||
250 | deactivate_bchannel(bch); | ||
251 | _queue_data(ch, PH_DEACTIVATE_IND, MISDN_ID_ANY, | ||
252 | 0, NULL, GFP_KERNEL); | ||
253 | ret = 0; | ||
254 | break; | ||
255 | } | ||
256 | if (!ret) | ||
257 | dev_kfree_skb(skb); | ||
258 | return ret; | ||
259 | } | ||
260 | |||
261 | /* | ||
262 | * send full D/B channel status information | ||
263 | * as MPH_INFORMATION_IND | ||
264 | */ | ||
265 | static void | ||
266 | hfcsusb_ph_info(struct hfcsusb *hw) | ||
267 | { | ||
268 | struct ph_info *phi; | ||
269 | struct dchannel *dch = &hw->dch; | ||
270 | int i; | ||
271 | |||
272 | phi = kzalloc(sizeof(struct ph_info) + | ||
273 | dch->dev.nrbchan * sizeof(struct ph_info_ch), GFP_ATOMIC); | ||
274 | phi->dch.ch.protocol = hw->protocol; | ||
275 | phi->dch.ch.Flags = dch->Flags; | ||
276 | phi->dch.state = dch->state; | ||
277 | phi->dch.num_bch = dch->dev.nrbchan; | ||
278 | for (i = 0; i < dch->dev.nrbchan; i++) { | ||
279 | phi->bch[i].protocol = hw->bch[i].ch.protocol; | ||
280 | phi->bch[i].Flags = hw->bch[i].Flags; | ||
281 | } | ||
282 | _queue_data(&dch->dev.D, MPH_INFORMATION_IND, MISDN_ID_ANY, | ||
283 | sizeof(struct ph_info_dch) + dch->dev.nrbchan * | ||
284 | sizeof(struct ph_info_ch), phi, GFP_ATOMIC); | ||
285 | } | ||
286 | |||
287 | /* | ||
288 | * Layer2 -> Layer 1 Dchannel data | ||
289 | */ | ||
290 | static int | ||
291 | hfcusb_l2l1D(struct mISDNchannel *ch, struct sk_buff *skb) | ||
292 | { | ||
293 | struct mISDNdevice *dev = container_of(ch, struct mISDNdevice, D); | ||
294 | struct dchannel *dch = container_of(dev, struct dchannel, dev); | ||
295 | struct mISDNhead *hh = mISDN_HEAD_P(skb); | ||
296 | struct hfcsusb *hw = dch->hw; | ||
297 | int ret = -EINVAL; | ||
298 | u_long flags; | ||
299 | |||
300 | switch (hh->prim) { | ||
301 | case PH_DATA_REQ: | ||
302 | if (debug & DBG_HFC_CALL_TRACE) | ||
303 | printk(KERN_DEBUG "%s: %s: PH_DATA_REQ\n", | ||
304 | hw->name, __func__); | ||
305 | |||
306 | spin_lock_irqsave(&hw->lock, flags); | ||
307 | ret = dchannel_senddata(dch, skb); | ||
308 | spin_unlock_irqrestore(&hw->lock, flags); | ||
309 | if (ret > 0) { | ||
310 | ret = 0; | ||
311 | queue_ch_frame(ch, PH_DATA_CNF, hh->id, NULL); | ||
312 | } | ||
313 | break; | ||
314 | |||
315 | case PH_ACTIVATE_REQ: | ||
316 | if (debug & DBG_HFC_CALL_TRACE) | ||
317 | printk(KERN_DEBUG "%s: %s: PH_ACTIVATE_REQ %s\n", | ||
318 | hw->name, __func__, | ||
319 | (hw->protocol == ISDN_P_NT_S0) ? "NT" : "TE"); | ||
320 | |||
321 | if (hw->protocol == ISDN_P_NT_S0) { | ||
322 | ret = 0; | ||
323 | if (test_bit(FLG_ACTIVE, &dch->Flags)) { | ||
324 | _queue_data(&dch->dev.D, | ||
325 | PH_ACTIVATE_IND, MISDN_ID_ANY, 0, | ||
326 | NULL, GFP_ATOMIC); | ||
327 | } else { | ||
328 | hfcsusb_ph_command(hw, | ||
329 | HFC_L1_ACTIVATE_NT); | ||
330 | test_and_set_bit(FLG_L2_ACTIVATED, | ||
331 | &dch->Flags); | ||
332 | } | ||
333 | } else { | ||
334 | hfcsusb_ph_command(hw, HFC_L1_ACTIVATE_TE); | ||
335 | ret = l1_event(dch->l1, hh->prim); | ||
336 | } | ||
337 | break; | ||
338 | |||
339 | case PH_DEACTIVATE_REQ: | ||
340 | if (debug & DBG_HFC_CALL_TRACE) | ||
341 | printk(KERN_DEBUG "%s: %s: PH_DEACTIVATE_REQ\n", | ||
342 | hw->name, __func__); | ||
343 | test_and_clear_bit(FLG_L2_ACTIVATED, &dch->Flags); | ||
344 | |||
345 | if (hw->protocol == ISDN_P_NT_S0) { | ||
346 | hfcsusb_ph_command(hw, HFC_L1_DEACTIVATE_NT); | ||
347 | spin_lock_irqsave(&hw->lock, flags); | ||
348 | skb_queue_purge(&dch->squeue); | ||
349 | if (dch->tx_skb) { | ||
350 | dev_kfree_skb(dch->tx_skb); | ||
351 | dch->tx_skb = NULL; | ||
352 | } | ||
353 | dch->tx_idx = 0; | ||
354 | if (dch->rx_skb) { | ||
355 | dev_kfree_skb(dch->rx_skb); | ||
356 | dch->rx_skb = NULL; | ||
357 | } | ||
358 | test_and_clear_bit(FLG_TX_BUSY, &dch->Flags); | ||
359 | spin_unlock_irqrestore(&hw->lock, flags); | ||
360 | #ifdef FIXME | ||
361 | if (test_and_clear_bit(FLG_L1_BUSY, &dch->Flags)) | ||
362 | dchannel_sched_event(&hc->dch, D_CLEARBUSY); | ||
363 | #endif | ||
364 | ret = 0; | ||
365 | } else | ||
366 | ret = l1_event(dch->l1, hh->prim); | ||
367 | break; | ||
368 | case MPH_INFORMATION_REQ: | ||
369 | hfcsusb_ph_info(hw); | ||
370 | ret = 0; | ||
371 | break; | ||
372 | } | ||
373 | |||
374 | return ret; | ||
375 | } | ||
376 | |||
377 | /* | ||
378 | * Layer 1 callback function | ||
379 | */ | ||
380 | static int | ||
381 | hfc_l1callback(struct dchannel *dch, u_int cmd) | ||
382 | { | ||
383 | struct hfcsusb *hw = dch->hw; | ||
384 | |||
385 | if (debug & DBG_HFC_CALL_TRACE) | ||
386 | printk(KERN_DEBUG "%s: %s cmd 0x%x\n", | ||
387 | hw->name, __func__, cmd); | ||
388 | |||
389 | switch (cmd) { | ||
390 | case INFO3_P8: | ||
391 | case INFO3_P10: | ||
392 | case HW_RESET_REQ: | ||
393 | case HW_POWERUP_REQ: | ||
394 | break; | ||
395 | |||
396 | case HW_DEACT_REQ: | ||
397 | skb_queue_purge(&dch->squeue); | ||
398 | if (dch->tx_skb) { | ||
399 | dev_kfree_skb(dch->tx_skb); | ||
400 | dch->tx_skb = NULL; | ||
401 | } | ||
402 | dch->tx_idx = 0; | ||
403 | if (dch->rx_skb) { | ||
404 | dev_kfree_skb(dch->rx_skb); | ||
405 | dch->rx_skb = NULL; | ||
406 | } | ||
407 | test_and_clear_bit(FLG_TX_BUSY, &dch->Flags); | ||
408 | break; | ||
409 | case PH_ACTIVATE_IND: | ||
410 | test_and_set_bit(FLG_ACTIVE, &dch->Flags); | ||
411 | _queue_data(&dch->dev.D, cmd, MISDN_ID_ANY, 0, NULL, | ||
412 | GFP_ATOMIC); | ||
413 | break; | ||
414 | case PH_DEACTIVATE_IND: | ||
415 | test_and_clear_bit(FLG_ACTIVE, &dch->Flags); | ||
416 | _queue_data(&dch->dev.D, cmd, MISDN_ID_ANY, 0, NULL, | ||
417 | GFP_ATOMIC); | ||
418 | break; | ||
419 | default: | ||
420 | if (dch->debug & DEBUG_HW) | ||
421 | printk(KERN_DEBUG "%s: %s: unknown cmd %x\n", | ||
422 | hw->name, __func__, cmd); | ||
423 | return -1; | ||
424 | } | ||
425 | hfcsusb_ph_info(hw); | ||
426 | return 0; | ||
427 | } | ||
428 | |||
429 | static int | ||
430 | open_dchannel(struct hfcsusb *hw, struct mISDNchannel *ch, | ||
431 | struct channel_req *rq) | ||
432 | { | ||
433 | int err = 0; | ||
434 | |||
435 | if (debug & DEBUG_HW_OPEN) | ||
436 | printk(KERN_DEBUG "%s: %s: dev(%d) open addr(%i) from %p\n", | ||
437 | hw->name, __func__, hw->dch.dev.id, rq->adr.channel, | ||
438 | __builtin_return_address(0)); | ||
439 | if (rq->protocol == ISDN_P_NONE) | ||
440 | return -EINVAL; | ||
441 | |||
442 | test_and_clear_bit(FLG_ACTIVE, &hw->dch.Flags); | ||
443 | test_and_clear_bit(FLG_ACTIVE, &hw->ech.Flags); | ||
444 | hfcsusb_start_endpoint(hw, HFC_CHAN_D); | ||
445 | |||
446 | /* E-Channel logging */ | ||
447 | if (rq->adr.channel == 1) { | ||
448 | if (hw->fifos[HFCUSB_PCM_RX].pipe) { | ||
449 | hfcsusb_start_endpoint(hw, HFC_CHAN_E); | ||
450 | set_bit(FLG_ACTIVE, &hw->ech.Flags); | ||
451 | _queue_data(&hw->ech.dev.D, PH_ACTIVATE_IND, | ||
452 | MISDN_ID_ANY, 0, NULL, GFP_ATOMIC); | ||
453 | } else | ||
454 | return -EINVAL; | ||
455 | } | ||
456 | |||
457 | if (!hw->initdone) { | ||
458 | hw->protocol = rq->protocol; | ||
459 | if (rq->protocol == ISDN_P_TE_S0) { | ||
460 | err = create_l1(&hw->dch, hfc_l1callback); | ||
461 | if (err) | ||
462 | return err; | ||
463 | } | ||
464 | setPortMode(hw); | ||
465 | ch->protocol = rq->protocol; | ||
466 | hw->initdone = 1; | ||
467 | } else { | ||
468 | if (rq->protocol != ch->protocol) | ||
469 | return -EPROTONOSUPPORT; | ||
470 | } | ||
471 | |||
472 | if (((ch->protocol == ISDN_P_NT_S0) && (hw->dch.state == 3)) || | ||
473 | ((ch->protocol == ISDN_P_TE_S0) && (hw->dch.state == 7))) | ||
474 | _queue_data(ch, PH_ACTIVATE_IND, MISDN_ID_ANY, | ||
475 | 0, NULL, GFP_KERNEL); | ||
476 | rq->ch = ch; | ||
477 | if (!try_module_get(THIS_MODULE)) | ||
478 | printk(KERN_WARNING "%s: %s: cannot get module\n", | ||
479 | hw->name, __func__); | ||
480 | return 0; | ||
481 | } | ||
482 | |||
483 | static int | ||
484 | open_bchannel(struct hfcsusb *hw, struct channel_req *rq) | ||
485 | { | ||
486 | struct bchannel *bch; | ||
487 | |||
488 | if (rq->adr.channel > 2) | ||
489 | return -EINVAL; | ||
490 | if (rq->protocol == ISDN_P_NONE) | ||
491 | return -EINVAL; | ||
492 | |||
493 | if (debug & DBG_HFC_CALL_TRACE) | ||
494 | printk(KERN_DEBUG "%s: %s B%i\n", | ||
495 | hw->name, __func__, rq->adr.channel); | ||
496 | |||
497 | bch = &hw->bch[rq->adr.channel - 1]; | ||
498 | if (test_and_set_bit(FLG_OPEN, &bch->Flags)) | ||
499 | return -EBUSY; /* b-channel can be only open once */ | ||
500 | test_and_clear_bit(FLG_FILLEMPTY, &bch->Flags); | ||
501 | bch->ch.protocol = rq->protocol; | ||
502 | rq->ch = &bch->ch; | ||
503 | |||
504 | /* start USB endpoint for bchannel */ | ||
505 | if (rq->adr.channel == 1) | ||
506 | hfcsusb_start_endpoint(hw, HFC_CHAN_B1); | ||
507 | else | ||
508 | hfcsusb_start_endpoint(hw, HFC_CHAN_B2); | ||
509 | |||
510 | if (!try_module_get(THIS_MODULE)) | ||
511 | printk(KERN_WARNING "%s: %s:cannot get module\n", | ||
512 | hw->name, __func__); | ||
513 | return 0; | ||
514 | } | ||
515 | |||
516 | static int | ||
517 | channel_ctrl(struct hfcsusb *hw, struct mISDN_ctrl_req *cq) | ||
518 | { | ||
519 | int ret = 0; | ||
520 | |||
521 | if (debug & DBG_HFC_CALL_TRACE) | ||
522 | printk(KERN_DEBUG "%s: %s op(0x%x) channel(0x%x)\n", | ||
523 | hw->name, __func__, (cq->op), (cq->channel)); | ||
524 | |||
525 | switch (cq->op) { | ||
526 | case MISDN_CTRL_GETOP: | ||
527 | cq->op = MISDN_CTRL_LOOP | MISDN_CTRL_CONNECT | | ||
528 | MISDN_CTRL_DISCONNECT; | ||
529 | break; | ||
530 | default: | ||
531 | printk(KERN_WARNING "%s: %s: unknown Op %x\n", | ||
532 | hw->name, __func__, cq->op); | ||
533 | ret = -EINVAL; | ||
534 | break; | ||
535 | } | ||
536 | return ret; | ||
537 | } | ||
538 | |||
539 | /* | ||
540 | * device control function | ||
541 | */ | ||
542 | static int | ||
543 | hfc_dctrl(struct mISDNchannel *ch, u_int cmd, void *arg) | ||
544 | { | ||
545 | struct mISDNdevice *dev = container_of(ch, struct mISDNdevice, D); | ||
546 | struct dchannel *dch = container_of(dev, struct dchannel, dev); | ||
547 | struct hfcsusb *hw = dch->hw; | ||
548 | struct channel_req *rq; | ||
549 | int err = 0; | ||
550 | |||
551 | if (dch->debug & DEBUG_HW) | ||
552 | printk(KERN_DEBUG "%s: %s: cmd:%x %p\n", | ||
553 | hw->name, __func__, cmd, arg); | ||
554 | switch (cmd) { | ||
555 | case OPEN_CHANNEL: | ||
556 | rq = arg; | ||
557 | if ((rq->protocol == ISDN_P_TE_S0) || | ||
558 | (rq->protocol == ISDN_P_NT_S0)) | ||
559 | err = open_dchannel(hw, ch, rq); | ||
560 | else | ||
561 | err = open_bchannel(hw, rq); | ||
562 | if (!err) | ||
563 | hw->open++; | ||
564 | break; | ||
565 | case CLOSE_CHANNEL: | ||
566 | hw->open--; | ||
567 | if (debug & DEBUG_HW_OPEN) | ||
568 | printk(KERN_DEBUG | ||
569 | "%s: %s: dev(%d) close from %p (open %d)\n", | ||
570 | hw->name, __func__, hw->dch.dev.id, | ||
571 | __builtin_return_address(0), hw->open); | ||
572 | if (!hw->open) { | ||
573 | hfcsusb_stop_endpoint(hw, HFC_CHAN_D); | ||
574 | if (hw->fifos[HFCUSB_PCM_RX].pipe) | ||
575 | hfcsusb_stop_endpoint(hw, HFC_CHAN_E); | ||
576 | handle_led(hw, LED_POWER_ON); | ||
577 | } | ||
578 | module_put(THIS_MODULE); | ||
579 | break; | ||
580 | case CONTROL_CHANNEL: | ||
581 | err = channel_ctrl(hw, arg); | ||
582 | break; | ||
583 | default: | ||
584 | if (dch->debug & DEBUG_HW) | ||
585 | printk(KERN_DEBUG "%s: %s: unknown command %x\n", | ||
586 | hw->name, __func__, cmd); | ||
587 | return -EINVAL; | ||
588 | } | ||
589 | return err; | ||
590 | } | ||
591 | |||
592 | /* | ||
593 | * S0 TE state change event handler | ||
594 | */ | ||
595 | static void | ||
596 | ph_state_te(struct dchannel *dch) | ||
597 | { | ||
598 | struct hfcsusb *hw = dch->hw; | ||
599 | |||
600 | if (debug & DEBUG_HW) { | ||
601 | if (dch->state <= HFC_MAX_TE_LAYER1_STATE) | ||
602 | printk(KERN_DEBUG "%s: %s: %s\n", hw->name, __func__, | ||
603 | HFC_TE_LAYER1_STATES[dch->state]); | ||
604 | else | ||
605 | printk(KERN_DEBUG "%s: %s: TE F%d\n", | ||
606 | hw->name, __func__, dch->state); | ||
607 | } | ||
608 | |||
609 | switch (dch->state) { | ||
610 | case 0: | ||
611 | l1_event(dch->l1, HW_RESET_IND); | ||
612 | break; | ||
613 | case 3: | ||
614 | l1_event(dch->l1, HW_DEACT_IND); | ||
615 | break; | ||
616 | case 5: | ||
617 | case 8: | ||
618 | l1_event(dch->l1, ANYSIGNAL); | ||
619 | break; | ||
620 | case 6: | ||
621 | l1_event(dch->l1, INFO2); | ||
622 | break; | ||
623 | case 7: | ||
624 | l1_event(dch->l1, INFO4_P8); | ||
625 | break; | ||
626 | } | ||
627 | if (dch->state == 7) | ||
628 | handle_led(hw, LED_S0_ON); | ||
629 | else | ||
630 | handle_led(hw, LED_S0_OFF); | ||
631 | } | ||
632 | |||
633 | /* | ||
634 | * S0 NT state change event handler | ||
635 | */ | ||
636 | static void | ||
637 | ph_state_nt(struct dchannel *dch) | ||
638 | { | ||
639 | struct hfcsusb *hw = dch->hw; | ||
640 | |||
641 | if (debug & DEBUG_HW) { | ||
642 | if (dch->state <= HFC_MAX_NT_LAYER1_STATE) | ||
643 | printk(KERN_DEBUG "%s: %s: %s\n", | ||
644 | hw->name, __func__, | ||
645 | HFC_NT_LAYER1_STATES[dch->state]); | ||
646 | |||
647 | else | ||
648 | printk(KERN_INFO DRIVER_NAME "%s: %s: NT G%d\n", | ||
649 | hw->name, __func__, dch->state); | ||
650 | } | ||
651 | |||
652 | switch (dch->state) { | ||
653 | case (1): | ||
654 | test_and_clear_bit(FLG_ACTIVE, &dch->Flags); | ||
655 | test_and_clear_bit(FLG_L2_ACTIVATED, &dch->Flags); | ||
656 | hw->nt_timer = 0; | ||
657 | hw->timers &= ~NT_ACTIVATION_TIMER; | ||
658 | handle_led(hw, LED_S0_OFF); | ||
659 | break; | ||
660 | |||
661 | case (2): | ||
662 | if (hw->nt_timer < 0) { | ||
663 | hw->nt_timer = 0; | ||
664 | hw->timers &= ~NT_ACTIVATION_TIMER; | ||
665 | hfcsusb_ph_command(dch->hw, HFC_L1_DEACTIVATE_NT); | ||
666 | } else { | ||
667 | hw->timers |= NT_ACTIVATION_TIMER; | ||
668 | hw->nt_timer = NT_T1_COUNT; | ||
669 | /* allow G2 -> G3 transition */ | ||
670 | write_reg(hw, HFCUSB_STATES, 2 | HFCUSB_NT_G2_G3); | ||
671 | } | ||
672 | break; | ||
673 | case (3): | ||
674 | hw->nt_timer = 0; | ||
675 | hw->timers &= ~NT_ACTIVATION_TIMER; | ||
676 | test_and_set_bit(FLG_ACTIVE, &dch->Flags); | ||
677 | _queue_data(&dch->dev.D, PH_ACTIVATE_IND, | ||
678 | MISDN_ID_ANY, 0, NULL, GFP_ATOMIC); | ||
679 | handle_led(hw, LED_S0_ON); | ||
680 | break; | ||
681 | case (4): | ||
682 | hw->nt_timer = 0; | ||
683 | hw->timers &= ~NT_ACTIVATION_TIMER; | ||
684 | break; | ||
685 | default: | ||
686 | break; | ||
687 | } | ||
688 | hfcsusb_ph_info(hw); | ||
689 | } | ||
690 | |||
691 | static void | ||
692 | ph_state(struct dchannel *dch) | ||
693 | { | ||
694 | struct hfcsusb *hw = dch->hw; | ||
695 | |||
696 | if (hw->protocol == ISDN_P_NT_S0) | ||
697 | ph_state_nt(dch); | ||
698 | else if (hw->protocol == ISDN_P_TE_S0) | ||
699 | ph_state_te(dch); | ||
700 | } | ||
701 | |||
702 | /* | ||
703 | * disable/enable BChannel for desired protocoll | ||
704 | */ | ||
705 | static int | ||
706 | hfcsusb_setup_bch(struct bchannel *bch, int protocol) | ||
707 | { | ||
708 | struct hfcsusb *hw = bch->hw; | ||
709 | __u8 conhdlc, sctrl, sctrl_r; | ||
710 | |||
711 | if (debug & DEBUG_HW) | ||
712 | printk(KERN_DEBUG "%s: %s: protocol %x-->%x B%d\n", | ||
713 | hw->name, __func__, bch->state, protocol, | ||
714 | bch->nr); | ||
715 | |||
716 | /* setup val for CON_HDLC */ | ||
717 | conhdlc = 0; | ||
718 | if (protocol > ISDN_P_NONE) | ||
719 | conhdlc = 8; /* enable FIFO */ | ||
720 | |||
721 | switch (protocol) { | ||
722 | case (-1): /* used for init */ | ||
723 | bch->state = -1; | ||
724 | /* fall trough */ | ||
725 | case (ISDN_P_NONE): | ||
726 | if (bch->state == ISDN_P_NONE) | ||
727 | return 0; /* already in idle state */ | ||
728 | bch->state = ISDN_P_NONE; | ||
729 | clear_bit(FLG_HDLC, &bch->Flags); | ||
730 | clear_bit(FLG_TRANSPARENT, &bch->Flags); | ||
731 | break; | ||
732 | case (ISDN_P_B_RAW): | ||
733 | conhdlc |= 2; | ||
734 | bch->state = protocol; | ||
735 | set_bit(FLG_TRANSPARENT, &bch->Flags); | ||
736 | break; | ||
737 | case (ISDN_P_B_HDLC): | ||
738 | bch->state = protocol; | ||
739 | set_bit(FLG_HDLC, &bch->Flags); | ||
740 | break; | ||
741 | default: | ||
742 | if (debug & DEBUG_HW) | ||
743 | printk(KERN_DEBUG "%s: %s: prot not known %x\n", | ||
744 | hw->name, __func__, protocol); | ||
745 | return -ENOPROTOOPT; | ||
746 | } | ||
747 | |||
748 | if (protocol >= ISDN_P_NONE) { | ||
749 | write_reg(hw, HFCUSB_FIFO, (bch->nr == 1) ? 0 : 2); | ||
750 | write_reg(hw, HFCUSB_CON_HDLC, conhdlc); | ||
751 | write_reg(hw, HFCUSB_INC_RES_F, 2); | ||
752 | write_reg(hw, HFCUSB_FIFO, (bch->nr == 1) ? 1 : 3); | ||
753 | write_reg(hw, HFCUSB_CON_HDLC, conhdlc); | ||
754 | write_reg(hw, HFCUSB_INC_RES_F, 2); | ||
755 | |||
756 | sctrl = 0x40 + ((hw->protocol == ISDN_P_TE_S0) ? 0x00 : 0x04); | ||
757 | sctrl_r = 0x0; | ||
758 | if (test_bit(FLG_ACTIVE, &hw->bch[0].Flags)) { | ||
759 | sctrl |= 1; | ||
760 | sctrl_r |= 1; | ||
761 | } | ||
762 | if (test_bit(FLG_ACTIVE, &hw->bch[1].Flags)) { | ||
763 | sctrl |= 2; | ||
764 | sctrl_r |= 2; | ||
765 | } | ||
766 | write_reg(hw, HFCUSB_SCTRL, sctrl); | ||
767 | write_reg(hw, HFCUSB_SCTRL_R, sctrl_r); | ||
768 | |||
769 | if (protocol > ISDN_P_NONE) | ||
770 | handle_led(hw, (bch->nr == 1) ? LED_B1_ON : LED_B2_ON); | ||
771 | else | ||
772 | handle_led(hw, (bch->nr == 1) ? LED_B1_OFF : | ||
773 | LED_B2_OFF); | ||
774 | } | ||
775 | hfcsusb_ph_info(hw); | ||
776 | return 0; | ||
777 | } | ||
778 | |||
779 | static void | ||
780 | hfcsusb_ph_command(struct hfcsusb *hw, u_char command) | ||
781 | { | ||
782 | if (debug & DEBUG_HW) | ||
783 | printk(KERN_DEBUG "%s: %s: %x\n", | ||
784 | hw->name, __func__, command); | ||
785 | |||
786 | switch (command) { | ||
787 | case HFC_L1_ACTIVATE_TE: | ||
788 | /* force sending sending INFO1 */ | ||
789 | write_reg(hw, HFCUSB_STATES, 0x14); | ||
790 | /* start l1 activation */ | ||
791 | write_reg(hw, HFCUSB_STATES, 0x04); | ||
792 | break; | ||
793 | |||
794 | case HFC_L1_FORCE_DEACTIVATE_TE: | ||
795 | write_reg(hw, HFCUSB_STATES, 0x10); | ||
796 | write_reg(hw, HFCUSB_STATES, 0x03); | ||
797 | break; | ||
798 | |||
799 | case HFC_L1_ACTIVATE_NT: | ||
800 | if (hw->dch.state == 3) | ||
801 | _queue_data(&hw->dch.dev.D, PH_ACTIVATE_IND, | ||
802 | MISDN_ID_ANY, 0, NULL, GFP_ATOMIC); | ||
803 | else | ||
804 | write_reg(hw, HFCUSB_STATES, HFCUSB_ACTIVATE | | ||
805 | HFCUSB_DO_ACTION | HFCUSB_NT_G2_G3); | ||
806 | break; | ||
807 | |||
808 | case HFC_L1_DEACTIVATE_NT: | ||
809 | write_reg(hw, HFCUSB_STATES, | ||
810 | HFCUSB_DO_ACTION); | ||
811 | break; | ||
812 | } | ||
813 | } | ||
814 | |||
815 | /* | ||
816 | * Layer 1 B-channel hardware access | ||
817 | */ | ||
818 | static int | ||
819 | channel_bctrl(struct bchannel *bch, struct mISDN_ctrl_req *cq) | ||
820 | { | ||
821 | int ret = 0; | ||
822 | |||
823 | switch (cq->op) { | ||
824 | case MISDN_CTRL_GETOP: | ||
825 | cq->op = MISDN_CTRL_FILL_EMPTY; | ||
826 | break; | ||
827 | case MISDN_CTRL_FILL_EMPTY: /* fill fifo, if empty */ | ||
828 | test_and_set_bit(FLG_FILLEMPTY, &bch->Flags); | ||
829 | if (debug & DEBUG_HW_OPEN) | ||
830 | printk(KERN_DEBUG "%s: FILL_EMPTY request (nr=%d " | ||
831 | "off=%d)\n", __func__, bch->nr, !!cq->p1); | ||
832 | break; | ||
833 | default: | ||
834 | printk(KERN_WARNING "%s: unknown Op %x\n", __func__, cq->op); | ||
835 | ret = -EINVAL; | ||
836 | break; | ||
837 | } | ||
838 | return ret; | ||
839 | } | ||
840 | |||
841 | /* collect data from incoming interrupt or isochron USB data */ | ||
842 | static void | ||
843 | hfcsusb_rx_frame(struct usb_fifo *fifo, __u8 *data, unsigned int len, | ||
844 | int finish) | ||
845 | { | ||
846 | struct hfcsusb *hw = fifo->hw; | ||
847 | struct sk_buff *rx_skb = NULL; | ||
848 | int maxlen = 0; | ||
849 | int fifon = fifo->fifonum; | ||
850 | int i; | ||
851 | int hdlc = 0; | ||
852 | |||
853 | if (debug & DBG_HFC_CALL_TRACE) | ||
854 | printk(KERN_DEBUG "%s: %s: fifo(%i) len(%i) " | ||
855 | "dch(%p) bch(%p) ech(%p)\n", | ||
856 | hw->name, __func__, fifon, len, | ||
857 | fifo->dch, fifo->bch, fifo->ech); | ||
858 | |||
859 | if (!len) | ||
860 | return; | ||
861 | |||
862 | if ((!!fifo->dch + !!fifo->bch + !!fifo->ech) != 1) { | ||
863 | printk(KERN_DEBUG "%s: %s: undefined channel\n", | ||
864 | hw->name, __func__); | ||
865 | return; | ||
866 | } | ||
867 | |||
868 | spin_lock(&hw->lock); | ||
869 | if (fifo->dch) { | ||
870 | rx_skb = fifo->dch->rx_skb; | ||
871 | maxlen = fifo->dch->maxlen; | ||
872 | hdlc = 1; | ||
873 | } | ||
874 | if (fifo->bch) { | ||
875 | rx_skb = fifo->bch->rx_skb; | ||
876 | maxlen = fifo->bch->maxlen; | ||
877 | hdlc = test_bit(FLG_HDLC, &fifo->bch->Flags); | ||
878 | } | ||
879 | if (fifo->ech) { | ||
880 | rx_skb = fifo->ech->rx_skb; | ||
881 | maxlen = fifo->ech->maxlen; | ||
882 | hdlc = 1; | ||
883 | } | ||
884 | |||
885 | if (!rx_skb) { | ||
886 | rx_skb = mI_alloc_skb(maxlen, GFP_ATOMIC); | ||
887 | if (rx_skb) { | ||
888 | if (fifo->dch) | ||
889 | fifo->dch->rx_skb = rx_skb; | ||
890 | if (fifo->bch) | ||
891 | fifo->bch->rx_skb = rx_skb; | ||
892 | if (fifo->ech) | ||
893 | fifo->ech->rx_skb = rx_skb; | ||
894 | skb_trim(rx_skb, 0); | ||
895 | } else { | ||
896 | printk(KERN_DEBUG "%s: %s: No mem for rx_skb\n", | ||
897 | hw->name, __func__); | ||
898 | spin_unlock(&hw->lock); | ||
899 | return; | ||
900 | } | ||
901 | } | ||
902 | |||
903 | if (fifo->dch || fifo->ech) { | ||
904 | /* D/E-Channel SKB range check */ | ||
905 | if ((rx_skb->len + len) >= MAX_DFRAME_LEN_L1) { | ||
906 | printk(KERN_DEBUG "%s: %s: sbk mem exceeded " | ||
907 | "for fifo(%d) HFCUSB_D_RX\n", | ||
908 | hw->name, __func__, fifon); | ||
909 | skb_trim(rx_skb, 0); | ||
910 | spin_unlock(&hw->lock); | ||
911 | return; | ||
912 | } | ||
913 | } else if (fifo->bch) { | ||
914 | /* B-Channel SKB range check */ | ||
915 | if ((rx_skb->len + len) >= (MAX_BCH_SIZE + 3)) { | ||
916 | printk(KERN_DEBUG "%s: %s: sbk mem exceeded " | ||
917 | "for fifo(%d) HFCUSB_B_RX\n", | ||
918 | hw->name, __func__, fifon); | ||
919 | skb_trim(rx_skb, 0); | ||
920 | spin_unlock(&hw->lock); | ||
921 | return; | ||
922 | } | ||
923 | } | ||
924 | |||
925 | memcpy(skb_put(rx_skb, len), data, len); | ||
926 | |||
927 | if (hdlc) { | ||
928 | /* we have a complete hdlc packet */ | ||
929 | if (finish) { | ||
930 | if ((rx_skb->len > 3) && | ||
931 | (!(rx_skb->data[rx_skb->len - 1]))) { | ||
932 | if (debug & DBG_HFC_FIFO_VERBOSE) { | ||
933 | printk(KERN_DEBUG "%s: %s: fifon(%i)" | ||
934 | " new RX len(%i): ", | ||
935 | hw->name, __func__, fifon, | ||
936 | rx_skb->len); | ||
937 | i = 0; | ||
938 | while (i < rx_skb->len) | ||
939 | printk("%02x ", | ||
940 | rx_skb->data[i++]); | ||
941 | printk("\n"); | ||
942 | } | ||
943 | |||
944 | /* remove CRC & status */ | ||
945 | skb_trim(rx_skb, rx_skb->len - 3); | ||
946 | |||
947 | if (fifo->dch) | ||
948 | recv_Dchannel(fifo->dch); | ||
949 | if (fifo->bch) | ||
950 | recv_Bchannel(fifo->bch); | ||
951 | if (fifo->ech) | ||
952 | recv_Echannel(fifo->ech, | ||
953 | &hw->dch); | ||
954 | } else { | ||
955 | if (debug & DBG_HFC_FIFO_VERBOSE) { | ||
956 | printk(KERN_DEBUG | ||
957 | "%s: CRC or minlen ERROR fifon(%i) " | ||
958 | "RX len(%i): ", | ||
959 | hw->name, fifon, rx_skb->len); | ||
960 | i = 0; | ||
961 | while (i < rx_skb->len) | ||
962 | printk("%02x ", | ||
963 | rx_skb->data[i++]); | ||
964 | printk("\n"); | ||
965 | } | ||
966 | skb_trim(rx_skb, 0); | ||
967 | } | ||
968 | } | ||
969 | } else { | ||
970 | /* deliver transparent data to layer2 */ | ||
971 | if (rx_skb->len >= poll) | ||
972 | recv_Bchannel(fifo->bch); | ||
973 | } | ||
974 | spin_unlock(&hw->lock); | ||
975 | } | ||
976 | |||
977 | void | ||
978 | fill_isoc_urb(struct urb *urb, struct usb_device *dev, unsigned int pipe, | ||
979 | void *buf, int num_packets, int packet_size, int interval, | ||
980 | usb_complete_t complete, void *context) | ||
981 | { | ||
982 | int k; | ||
983 | |||
984 | usb_fill_bulk_urb(urb, dev, pipe, buf, packet_size * num_packets, | ||
985 | complete, context); | ||
986 | |||
987 | urb->number_of_packets = num_packets; | ||
988 | urb->transfer_flags = URB_ISO_ASAP; | ||
989 | urb->actual_length = 0; | ||
990 | urb->interval = interval; | ||
991 | |||
992 | for (k = 0; k < num_packets; k++) { | ||
993 | urb->iso_frame_desc[k].offset = packet_size * k; | ||
994 | urb->iso_frame_desc[k].length = packet_size; | ||
995 | urb->iso_frame_desc[k].actual_length = 0; | ||
996 | } | ||
997 | } | ||
998 | |||
999 | /* receive completion routine for all ISO tx fifos */ | ||
1000 | static void | ||
1001 | rx_iso_complete(struct urb *urb) | ||
1002 | { | ||
1003 | struct iso_urb *context_iso_urb = (struct iso_urb *) urb->context; | ||
1004 | struct usb_fifo *fifo = context_iso_urb->owner_fifo; | ||
1005 | struct hfcsusb *hw = fifo->hw; | ||
1006 | int k, len, errcode, offset, num_isoc_packets, fifon, maxlen, | ||
1007 | status, iso_status, i; | ||
1008 | __u8 *buf; | ||
1009 | static __u8 eof[8]; | ||
1010 | __u8 s0_state; | ||
1011 | |||
1012 | fifon = fifo->fifonum; | ||
1013 | status = urb->status; | ||
1014 | |||
1015 | spin_lock(&hw->lock); | ||
1016 | if (fifo->stop_gracefull) { | ||
1017 | fifo->stop_gracefull = 0; | ||
1018 | fifo->active = 0; | ||
1019 | spin_unlock(&hw->lock); | ||
1020 | return; | ||
1021 | } | ||
1022 | spin_unlock(&hw->lock); | ||
1023 | |||
1024 | /* | ||
1025 | * ISO transfer only partially completed, | ||
1026 | * look at individual frame status for details | ||
1027 | */ | ||
1028 | if (status == -EXDEV) { | ||
1029 | if (debug & DEBUG_HW) | ||
1030 | printk(KERN_DEBUG "%s: %s: with -EXDEV " | ||
1031 | "urb->status %d, fifonum %d\n", | ||
1032 | hw->name, __func__, status, fifon); | ||
1033 | |||
1034 | /* clear status, so go on with ISO transfers */ | ||
1035 | status = 0; | ||
1036 | } | ||
1037 | |||
1038 | s0_state = 0; | ||
1039 | if (fifo->active && !status) { | ||
1040 | num_isoc_packets = iso_packets[fifon]; | ||
1041 | maxlen = fifo->usb_packet_maxlen; | ||
1042 | |||
1043 | for (k = 0; k < num_isoc_packets; ++k) { | ||
1044 | len = urb->iso_frame_desc[k].actual_length; | ||
1045 | offset = urb->iso_frame_desc[k].offset; | ||
1046 | buf = context_iso_urb->buffer + offset; | ||
1047 | iso_status = urb->iso_frame_desc[k].status; | ||
1048 | |||
1049 | if (iso_status && (debug & DBG_HFC_FIFO_VERBOSE)) { | ||
1050 | printk(KERN_DEBUG "%s: %s: " | ||
1051 | "ISO packet %i, status: %i\n", | ||
1052 | hw->name, __func__, k, iso_status); | ||
1053 | } | ||
1054 | |||
1055 | /* USB data log for every D ISO in */ | ||
1056 | if ((fifon == HFCUSB_D_RX) && | ||
1057 | (debug & DBG_HFC_USB_VERBOSE)) { | ||
1058 | printk(KERN_DEBUG | ||
1059 | "%s: %s: %d (%d/%d) len(%d) ", | ||
1060 | hw->name, __func__, urb->start_frame, | ||
1061 | k, num_isoc_packets-1, | ||
1062 | len); | ||
1063 | for (i = 0; i < len; i++) | ||
1064 | printk("%x ", buf[i]); | ||
1065 | printk("\n"); | ||
1066 | } | ||
1067 | |||
1068 | if (!iso_status) { | ||
1069 | if (fifo->last_urblen != maxlen) { | ||
1070 | /* | ||
1071 | * save fifo fill-level threshold bits | ||
1072 | * to use them later in TX ISO URB | ||
1073 | * completions | ||
1074 | */ | ||
1075 | hw->threshold_mask = buf[1]; | ||
1076 | |||
1077 | if (fifon == HFCUSB_D_RX) | ||
1078 | s0_state = (buf[0] >> 4); | ||
1079 | |||
1080 | eof[fifon] = buf[0] & 1; | ||
1081 | if (len > 2) | ||
1082 | hfcsusb_rx_frame(fifo, buf + 2, | ||
1083 | len - 2, (len < maxlen) | ||
1084 | ? eof[fifon] : 0); | ||
1085 | } else | ||
1086 | hfcsusb_rx_frame(fifo, buf, len, | ||
1087 | (len < maxlen) ? | ||
1088 | eof[fifon] : 0); | ||
1089 | fifo->last_urblen = len; | ||
1090 | } | ||
1091 | } | ||
1092 | |||
1093 | /* signal S0 layer1 state change */ | ||
1094 | if ((s0_state) && (hw->initdone) && | ||
1095 | (s0_state != hw->dch.state)) { | ||
1096 | hw->dch.state = s0_state; | ||
1097 | schedule_event(&hw->dch, FLG_PHCHANGE); | ||
1098 | } | ||
1099 | |||
1100 | fill_isoc_urb(urb, fifo->hw->dev, fifo->pipe, | ||
1101 | context_iso_urb->buffer, num_isoc_packets, | ||
1102 | fifo->usb_packet_maxlen, fifo->intervall, | ||
1103 | (usb_complete_t)rx_iso_complete, urb->context); | ||
1104 | errcode = usb_submit_urb(urb, GFP_ATOMIC); | ||
1105 | if (errcode < 0) { | ||
1106 | if (debug & DEBUG_HW) | ||
1107 | printk(KERN_DEBUG "%s: %s: error submitting " | ||
1108 | "ISO URB: %d\n", | ||
1109 | hw->name, __func__, errcode); | ||
1110 | } | ||
1111 | } else { | ||
1112 | if (status && (debug & DBG_HFC_URB_INFO)) | ||
1113 | printk(KERN_DEBUG "%s: %s: rx_iso_complete : " | ||
1114 | "urb->status %d, fifonum %d\n", | ||
1115 | hw->name, __func__, status, fifon); | ||
1116 | } | ||
1117 | } | ||
1118 | |||
1119 | /* receive completion routine for all interrupt rx fifos */ | ||
1120 | static void | ||
1121 | rx_int_complete(struct urb *urb) | ||
1122 | { | ||
1123 | int len, status, i; | ||
1124 | __u8 *buf, maxlen, fifon; | ||
1125 | struct usb_fifo *fifo = (struct usb_fifo *) urb->context; | ||
1126 | struct hfcsusb *hw = fifo->hw; | ||
1127 | static __u8 eof[8]; | ||
1128 | |||
1129 | spin_lock(&hw->lock); | ||
1130 | if (fifo->stop_gracefull) { | ||
1131 | fifo->stop_gracefull = 0; | ||
1132 | fifo->active = 0; | ||
1133 | spin_unlock(&hw->lock); | ||
1134 | return; | ||
1135 | } | ||
1136 | spin_unlock(&hw->lock); | ||
1137 | |||
1138 | fifon = fifo->fifonum; | ||
1139 | if ((!fifo->active) || (urb->status)) { | ||
1140 | if (debug & DBG_HFC_URB_ERROR) | ||
1141 | printk(KERN_DEBUG | ||
1142 | "%s: %s: RX-Fifo %i is going down (%i)\n", | ||
1143 | hw->name, __func__, fifon, urb->status); | ||
1144 | |||
1145 | fifo->urb->interval = 0; /* cancel automatic rescheduling */ | ||
1146 | return; | ||
1147 | } | ||
1148 | len = urb->actual_length; | ||
1149 | buf = fifo->buffer; | ||
1150 | maxlen = fifo->usb_packet_maxlen; | ||
1151 | |||
1152 | /* USB data log for every D INT in */ | ||
1153 | if ((fifon == HFCUSB_D_RX) && (debug & DBG_HFC_USB_VERBOSE)) { | ||
1154 | printk(KERN_DEBUG "%s: %s: D RX INT len(%d) ", | ||
1155 | hw->name, __func__, len); | ||
1156 | for (i = 0; i < len; i++) | ||
1157 | printk("%02x ", buf[i]); | ||
1158 | printk("\n"); | ||
1159 | } | ||
1160 | |||
1161 | if (fifo->last_urblen != fifo->usb_packet_maxlen) { | ||
1162 | /* the threshold mask is in the 2nd status byte */ | ||
1163 | hw->threshold_mask = buf[1]; | ||
1164 | |||
1165 | /* signal S0 layer1 state change */ | ||
1166 | if (hw->initdone && ((buf[0] >> 4) != hw->dch.state)) { | ||
1167 | hw->dch.state = (buf[0] >> 4); | ||
1168 | schedule_event(&hw->dch, FLG_PHCHANGE); | ||
1169 | } | ||
1170 | |||
1171 | eof[fifon] = buf[0] & 1; | ||
1172 | /* if we have more than the 2 status bytes -> collect data */ | ||
1173 | if (len > 2) | ||
1174 | hfcsusb_rx_frame(fifo, buf + 2, | ||
1175 | urb->actual_length - 2, | ||
1176 | (len < maxlen) ? eof[fifon] : 0); | ||
1177 | } else { | ||
1178 | hfcsusb_rx_frame(fifo, buf, urb->actual_length, | ||
1179 | (len < maxlen) ? eof[fifon] : 0); | ||
1180 | } | ||
1181 | fifo->last_urblen = urb->actual_length; | ||
1182 | |||
1183 | status = usb_submit_urb(urb, GFP_ATOMIC); | ||
1184 | if (status) { | ||
1185 | if (debug & DEBUG_HW) | ||
1186 | printk(KERN_DEBUG "%s: %s: error resubmitting USB\n", | ||
1187 | hw->name, __func__); | ||
1188 | } | ||
1189 | } | ||
1190 | |||
1191 | /* transmit completion routine for all ISO tx fifos */ | ||
1192 | static void | ||
1193 | tx_iso_complete(struct urb *urb) | ||
1194 | { | ||
1195 | struct iso_urb *context_iso_urb = (struct iso_urb *) urb->context; | ||
1196 | struct usb_fifo *fifo = context_iso_urb->owner_fifo; | ||
1197 | struct hfcsusb *hw = fifo->hw; | ||
1198 | struct sk_buff *tx_skb; | ||
1199 | int k, tx_offset, num_isoc_packets, sink, remain, current_len, | ||
1200 | errcode, hdlc, i; | ||
1201 | int *tx_idx; | ||
1202 | int frame_complete, fifon, status; | ||
1203 | __u8 threshbit; | ||
1204 | |||
1205 | spin_lock(&hw->lock); | ||
1206 | if (fifo->stop_gracefull) { | ||
1207 | fifo->stop_gracefull = 0; | ||
1208 | fifo->active = 0; | ||
1209 | spin_unlock(&hw->lock); | ||
1210 | return; | ||
1211 | } | ||
1212 | |||
1213 | if (fifo->dch) { | ||
1214 | tx_skb = fifo->dch->tx_skb; | ||
1215 | tx_idx = &fifo->dch->tx_idx; | ||
1216 | hdlc = 1; | ||
1217 | } else if (fifo->bch) { | ||
1218 | tx_skb = fifo->bch->tx_skb; | ||
1219 | tx_idx = &fifo->bch->tx_idx; | ||
1220 | hdlc = test_bit(FLG_HDLC, &fifo->bch->Flags); | ||
1221 | } else { | ||
1222 | printk(KERN_DEBUG "%s: %s: neither BCH nor DCH\n", | ||
1223 | hw->name, __func__); | ||
1224 | spin_unlock(&hw->lock); | ||
1225 | return; | ||
1226 | } | ||
1227 | |||
1228 | fifon = fifo->fifonum; | ||
1229 | status = urb->status; | ||
1230 | |||
1231 | tx_offset = 0; | ||
1232 | |||
1233 | /* | ||
1234 | * ISO transfer only partially completed, | ||
1235 | * look at individual frame status for details | ||
1236 | */ | ||
1237 | if (status == -EXDEV) { | ||
1238 | if (debug & DBG_HFC_URB_ERROR) | ||
1239 | printk(KERN_DEBUG "%s: %s: " | ||
1240 | "-EXDEV (%i) fifon (%d)\n", | ||
1241 | hw->name, __func__, status, fifon); | ||
1242 | |||
1243 | /* clear status, so go on with ISO transfers */ | ||
1244 | status = 0; | ||
1245 | } | ||
1246 | |||
1247 | if (fifo->active && !status) { | ||
1248 | /* is FifoFull-threshold set for our channel? */ | ||
1249 | threshbit = (hw->threshold_mask & (1 << fifon)); | ||
1250 | num_isoc_packets = iso_packets[fifon]; | ||
1251 | |||
1252 | /* predict dataflow to avoid fifo overflow */ | ||
1253 | if (fifon >= HFCUSB_D_TX) | ||
1254 | sink = (threshbit) ? SINK_DMIN : SINK_DMAX; | ||
1255 | else | ||
1256 | sink = (threshbit) ? SINK_MIN : SINK_MAX; | ||
1257 | fill_isoc_urb(urb, fifo->hw->dev, fifo->pipe, | ||
1258 | context_iso_urb->buffer, num_isoc_packets, | ||
1259 | fifo->usb_packet_maxlen, fifo->intervall, | ||
1260 | (usb_complete_t)tx_iso_complete, urb->context); | ||
1261 | memset(context_iso_urb->buffer, 0, | ||
1262 | sizeof(context_iso_urb->buffer)); | ||
1263 | frame_complete = 0; | ||
1264 | |||
1265 | for (k = 0; k < num_isoc_packets; ++k) { | ||
1266 | /* analyze tx success of previous ISO packets */ | ||
1267 | if (debug & DBG_HFC_URB_ERROR) { | ||
1268 | errcode = urb->iso_frame_desc[k].status; | ||
1269 | if (errcode) { | ||
1270 | printk(KERN_DEBUG "%s: %s: " | ||
1271 | "ISO packet %i, status: %i\n", | ||
1272 | hw->name, __func__, k, errcode); | ||
1273 | } | ||
1274 | } | ||
1275 | |||
1276 | /* Generate next ISO Packets */ | ||
1277 | if (tx_skb) | ||
1278 | remain = tx_skb->len - *tx_idx; | ||
1279 | else | ||
1280 | remain = 0; | ||
1281 | |||
1282 | if (remain > 0) { | ||
1283 | fifo->bit_line -= sink; | ||
1284 | current_len = (0 - fifo->bit_line) / 8; | ||
1285 | if (current_len > 14) | ||
1286 | current_len = 14; | ||
1287 | if (current_len < 0) | ||
1288 | current_len = 0; | ||
1289 | if (remain < current_len) | ||
1290 | current_len = remain; | ||
1291 | |||
1292 | /* how much bit do we put on the line? */ | ||
1293 | fifo->bit_line += current_len * 8; | ||
1294 | |||
1295 | context_iso_urb->buffer[tx_offset] = 0; | ||
1296 | if (current_len == remain) { | ||
1297 | if (hdlc) { | ||
1298 | /* signal frame completion */ | ||
1299 | context_iso_urb-> | ||
1300 | buffer[tx_offset] = 1; | ||
1301 | /* add 2 byte flags and 16bit | ||
1302 | * CRC at end of ISDN frame */ | ||
1303 | fifo->bit_line += 32; | ||
1304 | } | ||
1305 | frame_complete = 1; | ||
1306 | } | ||
1307 | |||
1308 | /* copy tx data to iso-urb buffer */ | ||
1309 | memcpy(context_iso_urb->buffer + tx_offset + 1, | ||
1310 | (tx_skb->data + *tx_idx), current_len); | ||
1311 | *tx_idx += current_len; | ||
1312 | |||
1313 | urb->iso_frame_desc[k].offset = tx_offset; | ||
1314 | urb->iso_frame_desc[k].length = current_len + 1; | ||
1315 | |||
1316 | /* USB data log for every D ISO out */ | ||
1317 | if ((fifon == HFCUSB_D_RX) && | ||
1318 | (debug & DBG_HFC_USB_VERBOSE)) { | ||
1319 | printk(KERN_DEBUG | ||
1320 | "%s: %s (%d/%d) offs(%d) len(%d) ", | ||
1321 | hw->name, __func__, | ||
1322 | k, num_isoc_packets-1, | ||
1323 | urb->iso_frame_desc[k].offset, | ||
1324 | urb->iso_frame_desc[k].length); | ||
1325 | |||
1326 | for (i = urb->iso_frame_desc[k].offset; | ||
1327 | i < (urb->iso_frame_desc[k].offset | ||
1328 | + urb->iso_frame_desc[k].length); | ||
1329 | i++) | ||
1330 | printk("%x ", | ||
1331 | context_iso_urb->buffer[i]); | ||
1332 | |||
1333 | printk(" skb->len(%i) tx-idx(%d)\n", | ||
1334 | tx_skb->len, *tx_idx); | ||
1335 | } | ||
1336 | |||
1337 | tx_offset += (current_len + 1); | ||
1338 | } else { | ||
1339 | urb->iso_frame_desc[k].offset = tx_offset++; | ||
1340 | urb->iso_frame_desc[k].length = 1; | ||
1341 | /* we lower data margin every msec */ | ||
1342 | fifo->bit_line -= sink; | ||
1343 | if (fifo->bit_line < BITLINE_INF) | ||
1344 | fifo->bit_line = BITLINE_INF; | ||
1345 | } | ||
1346 | |||
1347 | if (frame_complete) { | ||
1348 | frame_complete = 0; | ||
1349 | |||
1350 | if (debug & DBG_HFC_FIFO_VERBOSE) { | ||
1351 | printk(KERN_DEBUG "%s: %s: " | ||
1352 | "fifon(%i) new TX len(%i): ", | ||
1353 | hw->name, __func__, | ||
1354 | fifon, tx_skb->len); | ||
1355 | i = 0; | ||
1356 | while (i < tx_skb->len) | ||
1357 | printk("%02x ", | ||
1358 | tx_skb->data[i++]); | ||
1359 | printk("\n"); | ||
1360 | } | ||
1361 | |||
1362 | dev_kfree_skb(tx_skb); | ||
1363 | tx_skb = NULL; | ||
1364 | if (fifo->dch && get_next_dframe(fifo->dch)) | ||
1365 | tx_skb = fifo->dch->tx_skb; | ||
1366 | else if (fifo->bch && | ||
1367 | get_next_bframe(fifo->bch)) { | ||
1368 | if (test_bit(FLG_TRANSPARENT, | ||
1369 | &fifo->bch->Flags)) | ||
1370 | confirm_Bsend(fifo->bch); | ||
1371 | tx_skb = fifo->bch->tx_skb; | ||
1372 | } | ||
1373 | } | ||
1374 | } | ||
1375 | errcode = usb_submit_urb(urb, GFP_ATOMIC); | ||
1376 | if (errcode < 0) { | ||
1377 | if (debug & DEBUG_HW) | ||
1378 | printk(KERN_DEBUG | ||
1379 | "%s: %s: error submitting ISO URB: %d \n", | ||
1380 | hw->name, __func__, errcode); | ||
1381 | } | ||
1382 | |||
1383 | /* | ||
1384 | * abuse DChannel tx iso completion to trigger NT mode state | ||
1385 | * changes tx_iso_complete is assumed to be called every | ||
1386 | * fifo->intervall (ms) | ||
1387 | */ | ||
1388 | if ((fifon == HFCUSB_D_TX) && (hw->protocol == ISDN_P_NT_S0) | ||
1389 | && (hw->timers & NT_ACTIVATION_TIMER)) { | ||
1390 | if ((--hw->nt_timer) < 0) | ||
1391 | schedule_event(&hw->dch, FLG_PHCHANGE); | ||
1392 | } | ||
1393 | |||
1394 | } else { | ||
1395 | if (status && (debug & DBG_HFC_URB_ERROR)) | ||
1396 | printk(KERN_DEBUG "%s: %s: urb->status %s (%i)" | ||
1397 | "fifonum=%d\n", | ||
1398 | hw->name, __func__, | ||
1399 | symbolic(urb_errlist, status), status, fifon); | ||
1400 | } | ||
1401 | spin_unlock(&hw->lock); | ||
1402 | } | ||
1403 | |||
1404 | /* | ||
1405 | * allocs urbs and start isoc transfer with two pending urbs to avoid | ||
1406 | * gaps in the transfer chain | ||
1407 | */ | ||
1408 | static int | ||
1409 | start_isoc_chain(struct usb_fifo *fifo, int num_packets_per_urb, | ||
1410 | usb_complete_t complete, int packet_size) | ||
1411 | { | ||
1412 | struct hfcsusb *hw = fifo->hw; | ||
1413 | int i, k, errcode; | ||
1414 | |||
1415 | if (debug) | ||
1416 | printk(KERN_DEBUG "%s: %s: fifo %i\n", | ||
1417 | hw->name, __func__, fifo->fifonum); | ||
1418 | |||
1419 | /* allocate Memory for Iso out Urbs */ | ||
1420 | for (i = 0; i < 2; i++) { | ||
1421 | if (!(fifo->iso[i].urb)) { | ||
1422 | fifo->iso[i].urb = | ||
1423 | usb_alloc_urb(num_packets_per_urb, GFP_KERNEL); | ||
1424 | if (!(fifo->iso[i].urb)) { | ||
1425 | printk(KERN_DEBUG | ||
1426 | "%s: %s: alloc urb for fifo %i failed", | ||
1427 | hw->name, __func__, fifo->fifonum); | ||
1428 | } | ||
1429 | fifo->iso[i].owner_fifo = (struct usb_fifo *) fifo; | ||
1430 | fifo->iso[i].indx = i; | ||
1431 | |||
1432 | /* Init the first iso */ | ||
1433 | if (ISO_BUFFER_SIZE >= | ||
1434 | (fifo->usb_packet_maxlen * | ||
1435 | num_packets_per_urb)) { | ||
1436 | fill_isoc_urb(fifo->iso[i].urb, | ||
1437 | fifo->hw->dev, fifo->pipe, | ||
1438 | fifo->iso[i].buffer, | ||
1439 | num_packets_per_urb, | ||
1440 | fifo->usb_packet_maxlen, | ||
1441 | fifo->intervall, complete, | ||
1442 | &fifo->iso[i]); | ||
1443 | memset(fifo->iso[i].buffer, 0, | ||
1444 | sizeof(fifo->iso[i].buffer)); | ||
1445 | |||
1446 | for (k = 0; k < num_packets_per_urb; k++) { | ||
1447 | fifo->iso[i].urb-> | ||
1448 | iso_frame_desc[k].offset = | ||
1449 | k * packet_size; | ||
1450 | fifo->iso[i].urb-> | ||
1451 | iso_frame_desc[k].length = | ||
1452 | packet_size; | ||
1453 | } | ||
1454 | } else { | ||
1455 | printk(KERN_DEBUG | ||
1456 | "%s: %s: ISO Buffer size to small!\n", | ||
1457 | hw->name, __func__); | ||
1458 | } | ||
1459 | } | ||
1460 | fifo->bit_line = BITLINE_INF; | ||
1461 | |||
1462 | errcode = usb_submit_urb(fifo->iso[i].urb, GFP_KERNEL); | ||
1463 | fifo->active = (errcode >= 0) ? 1 : 0; | ||
1464 | fifo->stop_gracefull = 0; | ||
1465 | if (errcode < 0) { | ||
1466 | printk(KERN_DEBUG "%s: %s: %s URB nr:%d\n", | ||
1467 | hw->name, __func__, | ||
1468 | symbolic(urb_errlist, errcode), i); | ||
1469 | } | ||
1470 | } | ||
1471 | return fifo->active; | ||
1472 | } | ||
1473 | |||
1474 | static void | ||
1475 | stop_iso_gracefull(struct usb_fifo *fifo) | ||
1476 | { | ||
1477 | struct hfcsusb *hw = fifo->hw; | ||
1478 | int i, timeout; | ||
1479 | u_long flags; | ||
1480 | |||
1481 | for (i = 0; i < 2; i++) { | ||
1482 | spin_lock_irqsave(&hw->lock, flags); | ||
1483 | if (debug) | ||
1484 | printk(KERN_DEBUG "%s: %s for fifo %i.%i\n", | ||
1485 | hw->name, __func__, fifo->fifonum, i); | ||
1486 | fifo->stop_gracefull = 1; | ||
1487 | spin_unlock_irqrestore(&hw->lock, flags); | ||
1488 | } | ||
1489 | |||
1490 | for (i = 0; i < 2; i++) { | ||
1491 | timeout = 3; | ||
1492 | while (fifo->stop_gracefull && timeout--) | ||
1493 | schedule_timeout_interruptible((HZ/1000)*16); | ||
1494 | if (debug && fifo->stop_gracefull) | ||
1495 | printk(KERN_DEBUG "%s: ERROR %s for fifo %i.%i\n", | ||
1496 | hw->name, __func__, fifo->fifonum, i); | ||
1497 | } | ||
1498 | } | ||
1499 | |||
1500 | static void | ||
1501 | stop_int_gracefull(struct usb_fifo *fifo) | ||
1502 | { | ||
1503 | struct hfcsusb *hw = fifo->hw; | ||
1504 | int timeout; | ||
1505 | u_long flags; | ||
1506 | |||
1507 | spin_lock_irqsave(&hw->lock, flags); | ||
1508 | if (debug) | ||
1509 | printk(KERN_DEBUG "%s: %s for fifo %i\n", | ||
1510 | hw->name, __func__, fifo->fifonum); | ||
1511 | fifo->stop_gracefull = 1; | ||
1512 | spin_unlock_irqrestore(&hw->lock, flags); | ||
1513 | |||
1514 | timeout = 3; | ||
1515 | while (fifo->stop_gracefull && timeout--) | ||
1516 | schedule_timeout_interruptible((HZ/1000)*3); | ||
1517 | if (debug && fifo->stop_gracefull) | ||
1518 | printk(KERN_DEBUG "%s: ERROR %s for fifo %i\n", | ||
1519 | hw->name, __func__, fifo->fifonum); | ||
1520 | } | ||
1521 | |||
1522 | /* start the interrupt transfer for the given fifo */ | ||
1523 | static void | ||
1524 | start_int_fifo(struct usb_fifo *fifo) | ||
1525 | { | ||
1526 | struct hfcsusb *hw = fifo->hw; | ||
1527 | int errcode; | ||
1528 | |||
1529 | if (debug) | ||
1530 | printk(KERN_DEBUG "%s: %s: INT IN fifo:%d\n", | ||
1531 | hw->name, __func__, fifo->fifonum); | ||
1532 | |||
1533 | if (!fifo->urb) { | ||
1534 | fifo->urb = usb_alloc_urb(0, GFP_KERNEL); | ||
1535 | if (!fifo->urb) | ||
1536 | return; | ||
1537 | } | ||
1538 | usb_fill_int_urb(fifo->urb, fifo->hw->dev, fifo->pipe, | ||
1539 | fifo->buffer, fifo->usb_packet_maxlen, | ||
1540 | (usb_complete_t)rx_int_complete, fifo, fifo->intervall); | ||
1541 | fifo->active = 1; | ||
1542 | fifo->stop_gracefull = 0; | ||
1543 | errcode = usb_submit_urb(fifo->urb, GFP_KERNEL); | ||
1544 | if (errcode) { | ||
1545 | printk(KERN_DEBUG "%s: %s: submit URB: status:%i\n", | ||
1546 | hw->name, __func__, errcode); | ||
1547 | fifo->active = 0; | ||
1548 | } | ||
1549 | } | ||
1550 | |||
1551 | static void | ||
1552 | setPortMode(struct hfcsusb *hw) | ||
1553 | { | ||
1554 | if (debug & DEBUG_HW) | ||
1555 | printk(KERN_DEBUG "%s: %s %s\n", hw->name, __func__, | ||
1556 | (hw->protocol == ISDN_P_TE_S0) ? "TE" : "NT"); | ||
1557 | |||
1558 | if (hw->protocol == ISDN_P_TE_S0) { | ||
1559 | write_reg(hw, HFCUSB_SCTRL, 0x40); | ||
1560 | write_reg(hw, HFCUSB_SCTRL_E, 0x00); | ||
1561 | write_reg(hw, HFCUSB_CLKDEL, CLKDEL_TE); | ||
1562 | write_reg(hw, HFCUSB_STATES, 3 | 0x10); | ||
1563 | write_reg(hw, HFCUSB_STATES, 3); | ||
1564 | } else { | ||
1565 | write_reg(hw, HFCUSB_SCTRL, 0x44); | ||
1566 | write_reg(hw, HFCUSB_SCTRL_E, 0x09); | ||
1567 | write_reg(hw, HFCUSB_CLKDEL, CLKDEL_NT); | ||
1568 | write_reg(hw, HFCUSB_STATES, 1 | 0x10); | ||
1569 | write_reg(hw, HFCUSB_STATES, 1); | ||
1570 | } | ||
1571 | } | ||
1572 | |||
1573 | static void | ||
1574 | reset_hfcsusb(struct hfcsusb *hw) | ||
1575 | { | ||
1576 | struct usb_fifo *fifo; | ||
1577 | int i; | ||
1578 | |||
1579 | if (debug & DEBUG_HW) | ||
1580 | printk(KERN_DEBUG "%s: %s\n", hw->name, __func__); | ||
1581 | |||
1582 | /* do Chip reset */ | ||
1583 | write_reg(hw, HFCUSB_CIRM, 8); | ||
1584 | |||
1585 | /* aux = output, reset off */ | ||
1586 | write_reg(hw, HFCUSB_CIRM, 0x10); | ||
1587 | |||
1588 | /* set USB_SIZE to match the wMaxPacketSize for INT or BULK transfers */ | ||
1589 | write_reg(hw, HFCUSB_USB_SIZE, (hw->packet_size / 8) | | ||
1590 | ((hw->packet_size / 8) << 4)); | ||
1591 | |||
1592 | /* set USB_SIZE_I to match the the wMaxPacketSize for ISO transfers */ | ||
1593 | write_reg(hw, HFCUSB_USB_SIZE_I, hw->iso_packet_size); | ||
1594 | |||
1595 | /* enable PCM/GCI master mode */ | ||
1596 | write_reg(hw, HFCUSB_MST_MODE1, 0); /* set default values */ | ||
1597 | write_reg(hw, HFCUSB_MST_MODE0, 1); /* enable master mode */ | ||
1598 | |||
1599 | /* init the fifos */ | ||
1600 | write_reg(hw, HFCUSB_F_THRES, | ||
1601 | (HFCUSB_TX_THRESHOLD / 8) | ((HFCUSB_RX_THRESHOLD / 8) << 4)); | ||
1602 | |||
1603 | fifo = hw->fifos; | ||
1604 | for (i = 0; i < HFCUSB_NUM_FIFOS; i++) { | ||
1605 | write_reg(hw, HFCUSB_FIFO, i); /* select the desired fifo */ | ||
1606 | fifo[i].max_size = | ||
1607 | (i <= HFCUSB_B2_RX) ? MAX_BCH_SIZE : MAX_DFRAME_LEN; | ||
1608 | fifo[i].last_urblen = 0; | ||
1609 | |||
1610 | /* set 2 bit for D- & E-channel */ | ||
1611 | write_reg(hw, HFCUSB_HDLC_PAR, ((i <= HFCUSB_B2_RX) ? 0 : 2)); | ||
1612 | |||
1613 | /* enable all fifos */ | ||
1614 | if (i == HFCUSB_D_TX) | ||
1615 | write_reg(hw, HFCUSB_CON_HDLC, | ||
1616 | (hw->protocol == ISDN_P_NT_S0) ? 0x08 : 0x09); | ||
1617 | else | ||
1618 | write_reg(hw, HFCUSB_CON_HDLC, 0x08); | ||
1619 | write_reg(hw, HFCUSB_INC_RES_F, 2); /* reset the fifo */ | ||
1620 | } | ||
1621 | |||
1622 | write_reg(hw, HFCUSB_SCTRL_R, 0); /* disable both B receivers */ | ||
1623 | handle_led(hw, LED_POWER_ON); | ||
1624 | } | ||
1625 | |||
1626 | /* start USB data pipes dependand on device's endpoint configuration */ | ||
1627 | static void | ||
1628 | hfcsusb_start_endpoint(struct hfcsusb *hw, int channel) | ||
1629 | { | ||
1630 | /* quick check if endpoint already running */ | ||
1631 | if ((channel == HFC_CHAN_D) && (hw->fifos[HFCUSB_D_RX].active)) | ||
1632 | return; | ||
1633 | if ((channel == HFC_CHAN_B1) && (hw->fifos[HFCUSB_B1_RX].active)) | ||
1634 | return; | ||
1635 | if ((channel == HFC_CHAN_B2) && (hw->fifos[HFCUSB_B2_RX].active)) | ||
1636 | return; | ||
1637 | if ((channel == HFC_CHAN_E) && (hw->fifos[HFCUSB_PCM_RX].active)) | ||
1638 | return; | ||
1639 | |||
1640 | /* start rx endpoints using USB INT IN method */ | ||
1641 | if (hw->cfg_used == CNF_3INT3ISO || hw->cfg_used == CNF_4INT3ISO) | ||
1642 | start_int_fifo(hw->fifos + channel*2 + 1); | ||
1643 | |||
1644 | /* start rx endpoints using USB ISO IN method */ | ||
1645 | if (hw->cfg_used == CNF_3ISO3ISO || hw->cfg_used == CNF_4ISO3ISO) { | ||
1646 | switch (channel) { | ||
1647 | case HFC_CHAN_D: | ||
1648 | start_isoc_chain(hw->fifos + HFCUSB_D_RX, | ||
1649 | ISOC_PACKETS_D, | ||
1650 | (usb_complete_t)rx_iso_complete, | ||
1651 | 16); | ||
1652 | break; | ||
1653 | case HFC_CHAN_E: | ||
1654 | start_isoc_chain(hw->fifos + HFCUSB_PCM_RX, | ||
1655 | ISOC_PACKETS_D, | ||
1656 | (usb_complete_t)rx_iso_complete, | ||
1657 | 16); | ||
1658 | break; | ||
1659 | case HFC_CHAN_B1: | ||
1660 | start_isoc_chain(hw->fifos + HFCUSB_B1_RX, | ||
1661 | ISOC_PACKETS_B, | ||
1662 | (usb_complete_t)rx_iso_complete, | ||
1663 | 16); | ||
1664 | break; | ||
1665 | case HFC_CHAN_B2: | ||
1666 | start_isoc_chain(hw->fifos + HFCUSB_B2_RX, | ||
1667 | ISOC_PACKETS_B, | ||
1668 | (usb_complete_t)rx_iso_complete, | ||
1669 | 16); | ||
1670 | break; | ||
1671 | } | ||
1672 | } | ||
1673 | |||
1674 | /* start tx endpoints using USB ISO OUT method */ | ||
1675 | switch (channel) { | ||
1676 | case HFC_CHAN_D: | ||
1677 | start_isoc_chain(hw->fifos + HFCUSB_D_TX, | ||
1678 | ISOC_PACKETS_B, | ||
1679 | (usb_complete_t)tx_iso_complete, 1); | ||
1680 | break; | ||
1681 | case HFC_CHAN_B1: | ||
1682 | start_isoc_chain(hw->fifos + HFCUSB_B1_TX, | ||
1683 | ISOC_PACKETS_D, | ||
1684 | (usb_complete_t)tx_iso_complete, 1); | ||
1685 | break; | ||
1686 | case HFC_CHAN_B2: | ||
1687 | start_isoc_chain(hw->fifos + HFCUSB_B2_TX, | ||
1688 | ISOC_PACKETS_B, | ||
1689 | (usb_complete_t)tx_iso_complete, 1); | ||
1690 | break; | ||
1691 | } | ||
1692 | } | ||
1693 | |||
1694 | /* stop USB data pipes dependand on device's endpoint configuration */ | ||
1695 | static void | ||
1696 | hfcsusb_stop_endpoint(struct hfcsusb *hw, int channel) | ||
1697 | { | ||
1698 | /* quick check if endpoint currently running */ | ||
1699 | if ((channel == HFC_CHAN_D) && (!hw->fifos[HFCUSB_D_RX].active)) | ||
1700 | return; | ||
1701 | if ((channel == HFC_CHAN_B1) && (!hw->fifos[HFCUSB_B1_RX].active)) | ||
1702 | return; | ||
1703 | if ((channel == HFC_CHAN_B2) && (!hw->fifos[HFCUSB_B2_RX].active)) | ||
1704 | return; | ||
1705 | if ((channel == HFC_CHAN_E) && (!hw->fifos[HFCUSB_PCM_RX].active)) | ||
1706 | return; | ||
1707 | |||
1708 | /* rx endpoints using USB INT IN method */ | ||
1709 | if (hw->cfg_used == CNF_3INT3ISO || hw->cfg_used == CNF_4INT3ISO) | ||
1710 | stop_int_gracefull(hw->fifos + channel*2 + 1); | ||
1711 | |||
1712 | /* rx endpoints using USB ISO IN method */ | ||
1713 | if (hw->cfg_used == CNF_3ISO3ISO || hw->cfg_used == CNF_4ISO3ISO) | ||
1714 | stop_iso_gracefull(hw->fifos + channel*2 + 1); | ||
1715 | |||
1716 | /* tx endpoints using USB ISO OUT method */ | ||
1717 | if (channel != HFC_CHAN_E) | ||
1718 | stop_iso_gracefull(hw->fifos + channel*2); | ||
1719 | } | ||
1720 | |||
1721 | |||
1722 | /* Hardware Initialization */ | ||
1723 | int | ||
1724 | setup_hfcsusb(struct hfcsusb *hw) | ||
1725 | { | ||
1726 | int err; | ||
1727 | u_char b; | ||
1728 | |||
1729 | if (debug & DBG_HFC_CALL_TRACE) | ||
1730 | printk(KERN_DEBUG "%s: %s\n", hw->name, __func__); | ||
1731 | |||
1732 | /* check the chip id */ | ||
1733 | if (read_reg_atomic(hw, HFCUSB_CHIP_ID, &b) != 1) { | ||
1734 | printk(KERN_DEBUG "%s: %s: cannot read chip id\n", | ||
1735 | hw->name, __func__); | ||
1736 | return 1; | ||
1737 | } | ||
1738 | if (b != HFCUSB_CHIPID) { | ||
1739 | printk(KERN_DEBUG "%s: %s: Invalid chip id 0x%02x\n", | ||
1740 | hw->name, __func__, b); | ||
1741 | return 1; | ||
1742 | } | ||
1743 | |||
1744 | /* first set the needed config, interface and alternate */ | ||
1745 | err = usb_set_interface(hw->dev, hw->if_used, hw->alt_used); | ||
1746 | |||
1747 | hw->led_state = 0; | ||
1748 | |||
1749 | /* init the background machinery for control requests */ | ||
1750 | hw->ctrl_read.bRequestType = 0xc0; | ||
1751 | hw->ctrl_read.bRequest = 1; | ||
1752 | hw->ctrl_read.wLength = cpu_to_le16(1); | ||
1753 | hw->ctrl_write.bRequestType = 0x40; | ||
1754 | hw->ctrl_write.bRequest = 0; | ||
1755 | hw->ctrl_write.wLength = 0; | ||
1756 | usb_fill_control_urb(hw->ctrl_urb, hw->dev, hw->ctrl_out_pipe, | ||
1757 | (u_char *)&hw->ctrl_write, NULL, 0, | ||
1758 | (usb_complete_t)ctrl_complete, hw); | ||
1759 | |||
1760 | reset_hfcsusb(hw); | ||
1761 | return 0; | ||
1762 | } | ||
1763 | |||
1764 | static void | ||
1765 | release_hw(struct hfcsusb *hw) | ||
1766 | { | ||
1767 | if (debug & DBG_HFC_CALL_TRACE) | ||
1768 | printk(KERN_DEBUG "%s: %s\n", hw->name, __func__); | ||
1769 | |||
1770 | /* | ||
1771 | * stop all endpoints gracefully | ||
1772 | * TODO: mISDN_core should generate CLOSE_CHANNEL | ||
1773 | * signals after calling mISDN_unregister_device() | ||
1774 | */ | ||
1775 | hfcsusb_stop_endpoint(hw, HFC_CHAN_D); | ||
1776 | hfcsusb_stop_endpoint(hw, HFC_CHAN_B1); | ||
1777 | hfcsusb_stop_endpoint(hw, HFC_CHAN_B2); | ||
1778 | if (hw->fifos[HFCUSB_PCM_RX].pipe) | ||
1779 | hfcsusb_stop_endpoint(hw, HFC_CHAN_E); | ||
1780 | if (hw->protocol == ISDN_P_TE_S0) | ||
1781 | l1_event(hw->dch.l1, CLOSE_CHANNEL); | ||
1782 | |||
1783 | mISDN_unregister_device(&hw->dch.dev); | ||
1784 | mISDN_freebchannel(&hw->bch[1]); | ||
1785 | mISDN_freebchannel(&hw->bch[0]); | ||
1786 | mISDN_freedchannel(&hw->dch); | ||
1787 | |||
1788 | if (hw->ctrl_urb) { | ||
1789 | usb_kill_urb(hw->ctrl_urb); | ||
1790 | usb_free_urb(hw->ctrl_urb); | ||
1791 | hw->ctrl_urb = NULL; | ||
1792 | } | ||
1793 | |||
1794 | if (hw->intf) | ||
1795 | usb_set_intfdata(hw->intf, NULL); | ||
1796 | list_del(&hw->list); | ||
1797 | kfree(hw); | ||
1798 | hw = NULL; | ||
1799 | } | ||
1800 | |||
1801 | static void | ||
1802 | deactivate_bchannel(struct bchannel *bch) | ||
1803 | { | ||
1804 | struct hfcsusb *hw = bch->hw; | ||
1805 | u_long flags; | ||
1806 | |||
1807 | if (bch->debug & DEBUG_HW) | ||
1808 | printk(KERN_DEBUG "%s: %s: bch->nr(%i)\n", | ||
1809 | hw->name, __func__, bch->nr); | ||
1810 | |||
1811 | spin_lock_irqsave(&hw->lock, flags); | ||
1812 | if (test_and_clear_bit(FLG_TX_NEXT, &bch->Flags)) { | ||
1813 | dev_kfree_skb(bch->next_skb); | ||
1814 | bch->next_skb = NULL; | ||
1815 | } | ||
1816 | if (bch->tx_skb) { | ||
1817 | dev_kfree_skb(bch->tx_skb); | ||
1818 | bch->tx_skb = NULL; | ||
1819 | } | ||
1820 | bch->tx_idx = 0; | ||
1821 | if (bch->rx_skb) { | ||
1822 | dev_kfree_skb(bch->rx_skb); | ||
1823 | bch->rx_skb = NULL; | ||
1824 | } | ||
1825 | clear_bit(FLG_ACTIVE, &bch->Flags); | ||
1826 | clear_bit(FLG_TX_BUSY, &bch->Flags); | ||
1827 | spin_unlock_irqrestore(&hw->lock, flags); | ||
1828 | hfcsusb_setup_bch(bch, ISDN_P_NONE); | ||
1829 | hfcsusb_stop_endpoint(hw, bch->nr); | ||
1830 | } | ||
1831 | |||
1832 | /* | ||
1833 | * Layer 1 B-channel hardware access | ||
1834 | */ | ||
1835 | static int | ||
1836 | hfc_bctrl(struct mISDNchannel *ch, u_int cmd, void *arg) | ||
1837 | { | ||
1838 | struct bchannel *bch = container_of(ch, struct bchannel, ch); | ||
1839 | int ret = -EINVAL; | ||
1840 | |||
1841 | if (bch->debug & DEBUG_HW) | ||
1842 | printk(KERN_DEBUG "%s: cmd:%x %p\n", __func__, cmd, arg); | ||
1843 | |||
1844 | switch (cmd) { | ||
1845 | case HW_TESTRX_RAW: | ||
1846 | case HW_TESTRX_HDLC: | ||
1847 | case HW_TESTRX_OFF: | ||
1848 | ret = -EINVAL; | ||
1849 | break; | ||
1850 | |||
1851 | case CLOSE_CHANNEL: | ||
1852 | test_and_clear_bit(FLG_OPEN, &bch->Flags); | ||
1853 | if (test_bit(FLG_ACTIVE, &bch->Flags)) | ||
1854 | deactivate_bchannel(bch); | ||
1855 | ch->protocol = ISDN_P_NONE; | ||
1856 | ch->peer = NULL; | ||
1857 | module_put(THIS_MODULE); | ||
1858 | ret = 0; | ||
1859 | break; | ||
1860 | case CONTROL_CHANNEL: | ||
1861 | ret = channel_bctrl(bch, arg); | ||
1862 | break; | ||
1863 | default: | ||
1864 | printk(KERN_WARNING "%s: unknown prim(%x)\n", | ||
1865 | __func__, cmd); | ||
1866 | } | ||
1867 | return ret; | ||
1868 | } | ||
1869 | |||
1870 | static int | ||
1871 | setup_instance(struct hfcsusb *hw, struct device *parent) | ||
1872 | { | ||
1873 | u_long flags; | ||
1874 | int err, i; | ||
1875 | |||
1876 | if (debug & DBG_HFC_CALL_TRACE) | ||
1877 | printk(KERN_DEBUG "%s: %s\n", hw->name, __func__); | ||
1878 | |||
1879 | spin_lock_init(&hw->ctrl_lock); | ||
1880 | spin_lock_init(&hw->lock); | ||
1881 | |||
1882 | mISDN_initdchannel(&hw->dch, MAX_DFRAME_LEN_L1, ph_state); | ||
1883 | hw->dch.debug = debug & 0xFFFF; | ||
1884 | hw->dch.hw = hw; | ||
1885 | hw->dch.dev.Dprotocols = (1 << ISDN_P_TE_S0) | (1 << ISDN_P_NT_S0); | ||
1886 | hw->dch.dev.D.send = hfcusb_l2l1D; | ||
1887 | hw->dch.dev.D.ctrl = hfc_dctrl; | ||
1888 | |||
1889 | /* enable E-Channel logging */ | ||
1890 | if (hw->fifos[HFCUSB_PCM_RX].pipe) | ||
1891 | mISDN_initdchannel(&hw->ech, MAX_DFRAME_LEN_L1, NULL); | ||
1892 | |||
1893 | hw->dch.dev.Bprotocols = (1 << (ISDN_P_B_RAW & ISDN_P_B_MASK)) | | ||
1894 | (1 << (ISDN_P_B_HDLC & ISDN_P_B_MASK)); | ||
1895 | hw->dch.dev.nrbchan = 2; | ||
1896 | for (i = 0; i < 2; i++) { | ||
1897 | hw->bch[i].nr = i + 1; | ||
1898 | set_channelmap(i + 1, hw->dch.dev.channelmap); | ||
1899 | hw->bch[i].debug = debug; | ||
1900 | mISDN_initbchannel(&hw->bch[i], MAX_DATA_MEM); | ||
1901 | hw->bch[i].hw = hw; | ||
1902 | hw->bch[i].ch.send = hfcusb_l2l1B; | ||
1903 | hw->bch[i].ch.ctrl = hfc_bctrl; | ||
1904 | hw->bch[i].ch.nr = i + 1; | ||
1905 | list_add(&hw->bch[i].ch.list, &hw->dch.dev.bchannels); | ||
1906 | } | ||
1907 | |||
1908 | hw->fifos[HFCUSB_B1_TX].bch = &hw->bch[0]; | ||
1909 | hw->fifos[HFCUSB_B1_RX].bch = &hw->bch[0]; | ||
1910 | hw->fifos[HFCUSB_B2_TX].bch = &hw->bch[1]; | ||
1911 | hw->fifos[HFCUSB_B2_RX].bch = &hw->bch[1]; | ||
1912 | hw->fifos[HFCUSB_D_TX].dch = &hw->dch; | ||
1913 | hw->fifos[HFCUSB_D_RX].dch = &hw->dch; | ||
1914 | hw->fifos[HFCUSB_PCM_RX].ech = &hw->ech; | ||
1915 | hw->fifos[HFCUSB_PCM_TX].ech = &hw->ech; | ||
1916 | |||
1917 | err = setup_hfcsusb(hw); | ||
1918 | if (err) | ||
1919 | goto out; | ||
1920 | |||
1921 | snprintf(hw->name, MISDN_MAX_IDLEN - 1, "%s.%d", DRIVER_NAME, | ||
1922 | hfcsusb_cnt + 1); | ||
1923 | printk(KERN_INFO "%s: registered as '%s'\n", | ||
1924 | DRIVER_NAME, hw->name); | ||
1925 | |||
1926 | err = mISDN_register_device(&hw->dch.dev, parent, hw->name); | ||
1927 | if (err) | ||
1928 | goto out; | ||
1929 | |||
1930 | hfcsusb_cnt++; | ||
1931 | write_lock_irqsave(&HFClock, flags); | ||
1932 | list_add_tail(&hw->list, &HFClist); | ||
1933 | write_unlock_irqrestore(&HFClock, flags); | ||
1934 | return 0; | ||
1935 | |||
1936 | out: | ||
1937 | mISDN_freebchannel(&hw->bch[1]); | ||
1938 | mISDN_freebchannel(&hw->bch[0]); | ||
1939 | mISDN_freedchannel(&hw->dch); | ||
1940 | kfree(hw); | ||
1941 | return err; | ||
1942 | } | ||
1943 | |||
1944 | static int | ||
1945 | hfcsusb_probe(struct usb_interface *intf, const struct usb_device_id *id) | ||
1946 | { | ||
1947 | struct hfcsusb *hw; | ||
1948 | struct usb_device *dev = interface_to_usbdev(intf); | ||
1949 | struct usb_host_interface *iface = intf->cur_altsetting; | ||
1950 | struct usb_host_interface *iface_used = NULL; | ||
1951 | struct usb_host_endpoint *ep; | ||
1952 | struct hfcsusb_vdata *driver_info; | ||
1953 | int ifnum = iface->desc.bInterfaceNumber, i, idx, alt_idx, | ||
1954 | probe_alt_setting, vend_idx, cfg_used, *vcf, attr, cfg_found, | ||
1955 | ep_addr, cmptbl[16], small_match, iso_packet_size, packet_size, | ||
1956 | alt_used = 0; | ||
1957 | |||
1958 | vend_idx = 0xffff; | ||
1959 | for (i = 0; hfcsusb_idtab[i].idVendor; i++) { | ||
1960 | if ((le16_to_cpu(dev->descriptor.idVendor) | ||
1961 | == hfcsusb_idtab[i].idVendor) && | ||
1962 | (le16_to_cpu(dev->descriptor.idProduct) | ||
1963 | == hfcsusb_idtab[i].idProduct)) { | ||
1964 | vend_idx = i; | ||
1965 | continue; | ||
1966 | } | ||
1967 | } | ||
1968 | |||
1969 | printk(KERN_DEBUG | ||
1970 | "%s: interface(%d) actalt(%d) minor(%d) vend_idx(%d)\n", | ||
1971 | __func__, ifnum, iface->desc.bAlternateSetting, | ||
1972 | intf->minor, vend_idx); | ||
1973 | |||
1974 | if (vend_idx == 0xffff) { | ||
1975 | printk(KERN_WARNING | ||
1976 | "%s: no valid vendor found in USB descriptor\n", | ||
1977 | __func__); | ||
1978 | return -EIO; | ||
1979 | } | ||
1980 | /* if vendor and product ID is OK, start probing alternate settings */ | ||
1981 | alt_idx = 0; | ||
1982 | small_match = -1; | ||
1983 | |||
1984 | /* default settings */ | ||
1985 | iso_packet_size = 16; | ||
1986 | packet_size = 64; | ||
1987 | |||
1988 | while (alt_idx < intf->num_altsetting) { | ||
1989 | iface = intf->altsetting + alt_idx; | ||
1990 | probe_alt_setting = iface->desc.bAlternateSetting; | ||
1991 | cfg_used = 0; | ||
1992 | |||
1993 | while (validconf[cfg_used][0]) { | ||
1994 | cfg_found = 1; | ||
1995 | vcf = validconf[cfg_used]; | ||
1996 | ep = iface->endpoint; | ||
1997 | memcpy(cmptbl, vcf, 16 * sizeof(int)); | ||
1998 | |||
1999 | /* check for all endpoints in this alternate setting */ | ||
2000 | for (i = 0; i < iface->desc.bNumEndpoints; i++) { | ||
2001 | ep_addr = ep->desc.bEndpointAddress; | ||
2002 | |||
2003 | /* get endpoint base */ | ||
2004 | idx = ((ep_addr & 0x7f) - 1) * 2; | ||
2005 | if (ep_addr & 0x80) | ||
2006 | idx++; | ||
2007 | attr = ep->desc.bmAttributes; | ||
2008 | |||
2009 | if (cmptbl[idx] != EP_NOP) { | ||
2010 | if (cmptbl[idx] == EP_NUL) | ||
2011 | cfg_found = 0; | ||
2012 | if (attr == USB_ENDPOINT_XFER_INT | ||
2013 | && cmptbl[idx] == EP_INT) | ||
2014 | cmptbl[idx] = EP_NUL; | ||
2015 | if (attr == USB_ENDPOINT_XFER_BULK | ||
2016 | && cmptbl[idx] == EP_BLK) | ||
2017 | cmptbl[idx] = EP_NUL; | ||
2018 | if (attr == USB_ENDPOINT_XFER_ISOC | ||
2019 | && cmptbl[idx] == EP_ISO) | ||
2020 | cmptbl[idx] = EP_NUL; | ||
2021 | |||
2022 | if (attr == USB_ENDPOINT_XFER_INT && | ||
2023 | ep->desc.bInterval < vcf[17]) { | ||
2024 | cfg_found = 0; | ||
2025 | } | ||
2026 | } | ||
2027 | ep++; | ||
2028 | } | ||
2029 | |||
2030 | for (i = 0; i < 16; i++) | ||
2031 | if (cmptbl[i] != EP_NOP && cmptbl[i] != EP_NUL) | ||
2032 | cfg_found = 0; | ||
2033 | |||
2034 | if (cfg_found) { | ||
2035 | if (small_match < cfg_used) { | ||
2036 | small_match = cfg_used; | ||
2037 | alt_used = probe_alt_setting; | ||
2038 | iface_used = iface; | ||
2039 | } | ||
2040 | } | ||
2041 | cfg_used++; | ||
2042 | } | ||
2043 | alt_idx++; | ||
2044 | } /* (alt_idx < intf->num_altsetting) */ | ||
2045 | |||
2046 | /* not found a valid USB Ta Endpoint config */ | ||
2047 | if (small_match == -1) | ||
2048 | return -EIO; | ||
2049 | |||
2050 | iface = iface_used; | ||
2051 | hw = kzalloc(sizeof(struct hfcsusb), GFP_KERNEL); | ||
2052 | if (!hw) | ||
2053 | return -ENOMEM; /* got no mem */ | ||
2054 | snprintf(hw->name, MISDN_MAX_IDLEN - 1, "%s", DRIVER_NAME); | ||
2055 | |||
2056 | ep = iface->endpoint; | ||
2057 | vcf = validconf[small_match]; | ||
2058 | |||
2059 | for (i = 0; i < iface->desc.bNumEndpoints; i++) { | ||
2060 | struct usb_fifo *f; | ||
2061 | |||
2062 | ep_addr = ep->desc.bEndpointAddress; | ||
2063 | /* get endpoint base */ | ||
2064 | idx = ((ep_addr & 0x7f) - 1) * 2; | ||
2065 | if (ep_addr & 0x80) | ||
2066 | idx++; | ||
2067 | f = &hw->fifos[idx & 7]; | ||
2068 | |||
2069 | /* init Endpoints */ | ||
2070 | if (vcf[idx] == EP_NOP || vcf[idx] == EP_NUL) { | ||
2071 | ep++; | ||
2072 | continue; | ||
2073 | } | ||
2074 | switch (ep->desc.bmAttributes) { | ||
2075 | case USB_ENDPOINT_XFER_INT: | ||
2076 | f->pipe = usb_rcvintpipe(dev, | ||
2077 | ep->desc.bEndpointAddress); | ||
2078 | f->usb_transfer_mode = USB_INT; | ||
2079 | packet_size = le16_to_cpu(ep->desc.wMaxPacketSize); | ||
2080 | break; | ||
2081 | case USB_ENDPOINT_XFER_BULK: | ||
2082 | if (ep_addr & 0x80) | ||
2083 | f->pipe = usb_rcvbulkpipe(dev, | ||
2084 | ep->desc.bEndpointAddress); | ||
2085 | else | ||
2086 | f->pipe = usb_sndbulkpipe(dev, | ||
2087 | ep->desc.bEndpointAddress); | ||
2088 | f->usb_transfer_mode = USB_BULK; | ||
2089 | packet_size = le16_to_cpu(ep->desc.wMaxPacketSize); | ||
2090 | break; | ||
2091 | case USB_ENDPOINT_XFER_ISOC: | ||
2092 | if (ep_addr & 0x80) | ||
2093 | f->pipe = usb_rcvisocpipe(dev, | ||
2094 | ep->desc.bEndpointAddress); | ||
2095 | else | ||
2096 | f->pipe = usb_sndisocpipe(dev, | ||
2097 | ep->desc.bEndpointAddress); | ||
2098 | f->usb_transfer_mode = USB_ISOC; | ||
2099 | iso_packet_size = le16_to_cpu(ep->desc.wMaxPacketSize); | ||
2100 | break; | ||
2101 | default: | ||
2102 | f->pipe = 0; | ||
2103 | } | ||
2104 | |||
2105 | if (f->pipe) { | ||
2106 | f->fifonum = idx & 7; | ||
2107 | f->hw = hw; | ||
2108 | f->usb_packet_maxlen = | ||
2109 | le16_to_cpu(ep->desc.wMaxPacketSize); | ||
2110 | f->intervall = ep->desc.bInterval; | ||
2111 | } | ||
2112 | ep++; | ||
2113 | } | ||
2114 | hw->dev = dev; /* save device */ | ||
2115 | hw->if_used = ifnum; /* save used interface */ | ||
2116 | hw->alt_used = alt_used; /* and alternate config */ | ||
2117 | hw->ctrl_paksize = dev->descriptor.bMaxPacketSize0; /* control size */ | ||
2118 | hw->cfg_used = vcf[16]; /* store used config */ | ||
2119 | hw->vend_idx = vend_idx; /* store found vendor */ | ||
2120 | hw->packet_size = packet_size; | ||
2121 | hw->iso_packet_size = iso_packet_size; | ||
2122 | |||
2123 | /* create the control pipes needed for register access */ | ||
2124 | hw->ctrl_in_pipe = usb_rcvctrlpipe(hw->dev, 0); | ||
2125 | hw->ctrl_out_pipe = usb_sndctrlpipe(hw->dev, 0); | ||
2126 | hw->ctrl_urb = usb_alloc_urb(0, GFP_KERNEL); | ||
2127 | |||
2128 | driver_info = | ||
2129 | (struct hfcsusb_vdata *)hfcsusb_idtab[vend_idx].driver_info; | ||
2130 | printk(KERN_DEBUG "%s: %s: detected \"%s\" (%s, if=%d alt=%d)\n", | ||
2131 | hw->name, __func__, driver_info->vend_name, | ||
2132 | conf_str[small_match], ifnum, alt_used); | ||
2133 | |||
2134 | if (setup_instance(hw, dev->dev.parent)) | ||
2135 | return -EIO; | ||
2136 | |||
2137 | hw->intf = intf; | ||
2138 | usb_set_intfdata(hw->intf, hw); | ||
2139 | return 0; | ||
2140 | } | ||
2141 | |||
2142 | /* function called when an active device is removed */ | ||
2143 | static void | ||
2144 | hfcsusb_disconnect(struct usb_interface *intf) | ||
2145 | { | ||
2146 | struct hfcsusb *hw = usb_get_intfdata(intf); | ||
2147 | struct hfcsusb *next; | ||
2148 | int cnt = 0; | ||
2149 | |||
2150 | printk(KERN_INFO "%s: device disconnected\n", hw->name); | ||
2151 | |||
2152 | handle_led(hw, LED_POWER_OFF); | ||
2153 | release_hw(hw); | ||
2154 | |||
2155 | list_for_each_entry_safe(hw, next, &HFClist, list) | ||
2156 | cnt++; | ||
2157 | if (!cnt) | ||
2158 | hfcsusb_cnt = 0; | ||
2159 | |||
2160 | usb_set_intfdata(intf, NULL); | ||
2161 | } | ||
2162 | |||
2163 | static struct usb_driver hfcsusb_drv = { | ||
2164 | .name = DRIVER_NAME, | ||
2165 | .id_table = hfcsusb_idtab, | ||
2166 | .probe = hfcsusb_probe, | ||
2167 | .disconnect = hfcsusb_disconnect, | ||
2168 | }; | ||
2169 | |||
2170 | static int __init | ||
2171 | hfcsusb_init(void) | ||
2172 | { | ||
2173 | printk(KERN_INFO DRIVER_NAME " driver Rev. %s debug(0x%x) poll(%i)\n", | ||
2174 | hfcsusb_rev, debug, poll); | ||
2175 | |||
2176 | if (usb_register(&hfcsusb_drv)) { | ||
2177 | printk(KERN_INFO DRIVER_NAME | ||
2178 | ": Unable to register hfcsusb module at usb stack\n"); | ||
2179 | return -ENODEV; | ||
2180 | } | ||
2181 | |||
2182 | return 0; | ||
2183 | } | ||
2184 | |||
2185 | static void __exit | ||
2186 | hfcsusb_cleanup(void) | ||
2187 | { | ||
2188 | if (debug & DBG_HFC_CALL_TRACE) | ||
2189 | printk(KERN_INFO DRIVER_NAME ": %s\n", __func__); | ||
2190 | |||
2191 | /* unregister Hardware */ | ||
2192 | usb_deregister(&hfcsusb_drv); /* release our driver */ | ||
2193 | } | ||
2194 | |||
2195 | module_init(hfcsusb_init); | ||
2196 | module_exit(hfcsusb_cleanup); | ||
diff --git a/drivers/isdn/hardware/mISDN/hfcsusb.h b/drivers/isdn/hardware/mISDN/hfcsusb.h new file mode 100644 index 000000000000..098486b8e8d2 --- /dev/null +++ b/drivers/isdn/hardware/mISDN/hfcsusb.h | |||
@@ -0,0 +1,418 @@ | |||
1 | /* | ||
2 | * hfcsusb.h, HFC-S USB mISDN driver | ||
3 | */ | ||
4 | |||
5 | #ifndef __HFCSUSB_H__ | ||
6 | #define __HFCSUSB_H__ | ||
7 | |||
8 | |||
9 | #define DRIVER_NAME "HFC-S_USB" | ||
10 | |||
11 | #define DBG_HFC_CALL_TRACE 0x00010000 | ||
12 | #define DBG_HFC_FIFO_VERBOSE 0x00020000 | ||
13 | #define DBG_HFC_USB_VERBOSE 0x00100000 | ||
14 | #define DBG_HFC_URB_INFO 0x00200000 | ||
15 | #define DBG_HFC_URB_ERROR 0x00400000 | ||
16 | |||
17 | #define DEFAULT_TRANSP_BURST_SZ 128 | ||
18 | |||
19 | #define HFC_CTRL_TIMEOUT 20 /* 5ms timeout writing/reading regs */ | ||
20 | #define CLKDEL_TE 0x0f /* CLKDEL in TE mode */ | ||
21 | #define CLKDEL_NT 0x6c /* CLKDEL in NT mode */ | ||
22 | |||
23 | /* hfcsusb Layer1 commands */ | ||
24 | #define HFC_L1_ACTIVATE_TE 1 | ||
25 | #define HFC_L1_ACTIVATE_NT 2 | ||
26 | #define HFC_L1_DEACTIVATE_NT 3 | ||
27 | #define HFC_L1_FORCE_DEACTIVATE_TE 4 | ||
28 | |||
29 | /* cmd FLAGS in HFCUSB_STATES register */ | ||
30 | #define HFCUSB_LOAD_STATE 0x10 | ||
31 | #define HFCUSB_ACTIVATE 0x20 | ||
32 | #define HFCUSB_DO_ACTION 0x40 | ||
33 | #define HFCUSB_NT_G2_G3 0x80 | ||
34 | |||
35 | /* timers */ | ||
36 | #define NT_ACTIVATION_TIMER 0x01 /* enables NT mode activation Timer */ | ||
37 | #define NT_T1_COUNT 10 | ||
38 | |||
39 | #define MAX_BCH_SIZE 2048 /* allowed B-channel packet size */ | ||
40 | |||
41 | #define HFCUSB_RX_THRESHOLD 64 /* threshold for fifo report bit rx */ | ||
42 | #define HFCUSB_TX_THRESHOLD 96 /* threshold for fifo report bit tx */ | ||
43 | |||
44 | #define HFCUSB_CHIP_ID 0x16 /* Chip ID register index */ | ||
45 | #define HFCUSB_CIRM 0x00 /* cirm register index */ | ||
46 | #define HFCUSB_USB_SIZE 0x07 /* int length register */ | ||
47 | #define HFCUSB_USB_SIZE_I 0x06 /* iso length register */ | ||
48 | #define HFCUSB_F_CROSS 0x0b /* bit order register */ | ||
49 | #define HFCUSB_CLKDEL 0x37 /* bit delay register */ | ||
50 | #define HFCUSB_CON_HDLC 0xfa /* channel connect register */ | ||
51 | #define HFCUSB_HDLC_PAR 0xfb | ||
52 | #define HFCUSB_SCTRL 0x31 /* S-bus control register (tx) */ | ||
53 | #define HFCUSB_SCTRL_E 0x32 /* same for E and special funcs */ | ||
54 | #define HFCUSB_SCTRL_R 0x33 /* S-bus control register (rx) */ | ||
55 | #define HFCUSB_F_THRES 0x0c /* threshold register */ | ||
56 | #define HFCUSB_FIFO 0x0f /* fifo select register */ | ||
57 | #define HFCUSB_F_USAGE 0x1a /* fifo usage register */ | ||
58 | #define HFCUSB_MST_MODE0 0x14 | ||
59 | #define HFCUSB_MST_MODE1 0x15 | ||
60 | #define HFCUSB_P_DATA 0x1f | ||
61 | #define HFCUSB_INC_RES_F 0x0e | ||
62 | #define HFCUSB_B1_SSL 0x20 | ||
63 | #define HFCUSB_B2_SSL 0x21 | ||
64 | #define HFCUSB_B1_RSL 0x24 | ||
65 | #define HFCUSB_B2_RSL 0x25 | ||
66 | #define HFCUSB_STATES 0x30 | ||
67 | |||
68 | |||
69 | #define HFCUSB_CHIPID 0x40 /* ID value of HFC-S USB */ | ||
70 | |||
71 | /* fifo registers */ | ||
72 | #define HFCUSB_NUM_FIFOS 8 /* maximum number of fifos */ | ||
73 | #define HFCUSB_B1_TX 0 /* index for B1 transmit bulk/int */ | ||
74 | #define HFCUSB_B1_RX 1 /* index for B1 receive bulk/int */ | ||
75 | #define HFCUSB_B2_TX 2 | ||
76 | #define HFCUSB_B2_RX 3 | ||
77 | #define HFCUSB_D_TX 4 | ||
78 | #define HFCUSB_D_RX 5 | ||
79 | #define HFCUSB_PCM_TX 6 | ||
80 | #define HFCUSB_PCM_RX 7 | ||
81 | |||
82 | |||
83 | #define USB_INT 0 | ||
84 | #define USB_BULK 1 | ||
85 | #define USB_ISOC 2 | ||
86 | |||
87 | #define ISOC_PACKETS_D 8 | ||
88 | #define ISOC_PACKETS_B 8 | ||
89 | #define ISO_BUFFER_SIZE 128 | ||
90 | |||
91 | /* defines how much ISO packets are handled in one URB */ | ||
92 | static int iso_packets[8] = | ||
93 | { ISOC_PACKETS_B, ISOC_PACKETS_B, ISOC_PACKETS_B, ISOC_PACKETS_B, | ||
94 | ISOC_PACKETS_D, ISOC_PACKETS_D, ISOC_PACKETS_D, ISOC_PACKETS_D | ||
95 | }; | ||
96 | |||
97 | |||
98 | /* Fifo flow Control for TX ISO */ | ||
99 | #define SINK_MAX 68 | ||
100 | #define SINK_MIN 48 | ||
101 | #define SINK_DMIN 12 | ||
102 | #define SINK_DMAX 18 | ||
103 | #define BITLINE_INF (-96*8) | ||
104 | |||
105 | /* HFC-S USB register access by Control-URSs */ | ||
106 | #define write_reg_atomic(a, b, c) \ | ||
107 | usb_control_msg((a)->dev, (a)->ctrl_out_pipe, 0, 0x40, (c), (b), \ | ||
108 | 0, 0, HFC_CTRL_TIMEOUT) | ||
109 | #define read_reg_atomic(a, b, c) \ | ||
110 | usb_control_msg((a)->dev, (a)->ctrl_in_pipe, 1, 0xC0, 0, (b), (c), \ | ||
111 | 1, HFC_CTRL_TIMEOUT) | ||
112 | #define HFC_CTRL_BUFSIZE 64 | ||
113 | |||
114 | struct ctrl_buf { | ||
115 | __u8 hfcs_reg; /* register number */ | ||
116 | __u8 reg_val; /* value to be written (or read) */ | ||
117 | }; | ||
118 | |||
119 | /* | ||
120 | * URB error codes | ||
121 | * Used to represent a list of values and their respective symbolic names | ||
122 | */ | ||
123 | struct hfcusb_symbolic_list { | ||
124 | const int num; | ||
125 | const char *name; | ||
126 | }; | ||
127 | |||
128 | static struct hfcusb_symbolic_list urb_errlist[] = { | ||
129 | {-ENOMEM, "No memory for allocation of internal structures"}, | ||
130 | {-ENOSPC, "The host controller's bandwidth is already consumed"}, | ||
131 | {-ENOENT, "URB was canceled by unlink_urb"}, | ||
132 | {-EXDEV, "ISO transfer only partially completed"}, | ||
133 | {-EAGAIN, "Too match scheduled for the future"}, | ||
134 | {-ENXIO, "URB already queued"}, | ||
135 | {-EFBIG, "Too much ISO frames requested"}, | ||
136 | {-ENOSR, "Buffer error (overrun)"}, | ||
137 | {-EPIPE, "Specified endpoint is stalled (device not responding)"}, | ||
138 | {-EOVERFLOW, "Babble (bad cable?)"}, | ||
139 | {-EPROTO, "Bit-stuff error (bad cable?)"}, | ||
140 | {-EILSEQ, "CRC/Timeout"}, | ||
141 | {-ETIMEDOUT, "NAK (device does not respond)"}, | ||
142 | {-ESHUTDOWN, "Device unplugged"}, | ||
143 | {-1, NULL} | ||
144 | }; | ||
145 | |||
146 | static inline const char * | ||
147 | symbolic(struct hfcusb_symbolic_list list[], const int num) | ||
148 | { | ||
149 | int i; | ||
150 | for (i = 0; list[i].name != NULL; i++) | ||
151 | if (list[i].num == num) | ||
152 | return list[i].name; | ||
153 | return "<unkown USB Error>"; | ||
154 | } | ||
155 | |||
156 | /* USB descriptor need to contain one of the following EndPoint combination: */ | ||
157 | #define CNF_4INT3ISO 1 /* 4 INT IN, 3 ISO OUT */ | ||
158 | #define CNF_3INT3ISO 2 /* 3 INT IN, 3 ISO OUT */ | ||
159 | #define CNF_4ISO3ISO 3 /* 4 ISO IN, 3 ISO OUT */ | ||
160 | #define CNF_3ISO3ISO 4 /* 3 ISO IN, 3 ISO OUT */ | ||
161 | |||
162 | #define EP_NUL 1 /* Endpoint at this position not allowed */ | ||
163 | #define EP_NOP 2 /* all type of endpoints allowed at this position */ | ||
164 | #define EP_ISO 3 /* Isochron endpoint mandatory at this position */ | ||
165 | #define EP_BLK 4 /* Bulk endpoint mandatory at this position */ | ||
166 | #define EP_INT 5 /* Interrupt endpoint mandatory at this position */ | ||
167 | |||
168 | #define HFC_CHAN_B1 0 | ||
169 | #define HFC_CHAN_B2 1 | ||
170 | #define HFC_CHAN_D 2 | ||
171 | #define HFC_CHAN_E 3 | ||
172 | |||
173 | |||
174 | /* | ||
175 | * List of all supported enpoints configiration sets, used to find the | ||
176 | * best matching endpoint configuration within a devices' USB descriptor. | ||
177 | * We need at least 3 RX endpoints, and 3 TX endpoints, either | ||
178 | * INT-in and ISO-out, or ISO-in and ISO-out) | ||
179 | * with 4 RX endpoints even E-Channel logging is possible | ||
180 | */ | ||
181 | static int | ||
182 | validconf[][19] = { | ||
183 | /* INT in, ISO out config */ | ||
184 | {EP_NUL, EP_INT, EP_NUL, EP_INT, EP_NUL, EP_INT, EP_NOP, EP_INT, | ||
185 | EP_ISO, EP_NUL, EP_ISO, EP_NUL, EP_ISO, EP_NUL, EP_NUL, EP_NUL, | ||
186 | CNF_4INT3ISO, 2, 1}, | ||
187 | {EP_NUL, EP_INT, EP_NUL, EP_INT, EP_NUL, EP_INT, EP_NUL, EP_NUL, | ||
188 | EP_ISO, EP_NUL, EP_ISO, EP_NUL, EP_ISO, EP_NUL, EP_NUL, EP_NUL, | ||
189 | CNF_3INT3ISO, 2, 0}, | ||
190 | /* ISO in, ISO out config */ | ||
191 | {EP_NOP, EP_NOP, EP_NOP, EP_NOP, EP_NOP, EP_NOP, EP_NOP, EP_NOP, | ||
192 | EP_ISO, EP_ISO, EP_ISO, EP_ISO, EP_ISO, EP_ISO, EP_NOP, EP_ISO, | ||
193 | CNF_4ISO3ISO, 2, 1}, | ||
194 | {EP_NUL, EP_NUL, EP_NUL, EP_NUL, EP_NUL, EP_NUL, EP_NUL, EP_NUL, | ||
195 | EP_ISO, EP_ISO, EP_ISO, EP_ISO, EP_ISO, EP_ISO, EP_NUL, EP_NUL, | ||
196 | CNF_3ISO3ISO, 2, 0}, | ||
197 | {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} /* EOL element */ | ||
198 | }; | ||
199 | |||
200 | /* string description of chosen config */ | ||
201 | char *conf_str[] = { | ||
202 | "4 Interrupt IN + 3 Isochron OUT", | ||
203 | "3 Interrupt IN + 3 Isochron OUT", | ||
204 | "4 Isochron IN + 3 Isochron OUT", | ||
205 | "3 Isochron IN + 3 Isochron OUT" | ||
206 | }; | ||
207 | |||
208 | |||
209 | #define LED_OFF 0 /* no LED support */ | ||
210 | #define LED_SCHEME1 1 /* LED standard scheme */ | ||
211 | #define LED_SCHEME2 2 /* not used yet... */ | ||
212 | |||
213 | #define LED_POWER_ON 1 | ||
214 | #define LED_POWER_OFF 2 | ||
215 | #define LED_S0_ON 3 | ||
216 | #define LED_S0_OFF 4 | ||
217 | #define LED_B1_ON 5 | ||
218 | #define LED_B1_OFF 6 | ||
219 | #define LED_B1_DATA 7 | ||
220 | #define LED_B2_ON 8 | ||
221 | #define LED_B2_OFF 9 | ||
222 | #define LED_B2_DATA 10 | ||
223 | |||
224 | #define LED_NORMAL 0 /* LEDs are normal */ | ||
225 | #define LED_INVERTED 1 /* LEDs are inverted */ | ||
226 | |||
227 | /* time in ms to perform a Flashing LED when B-Channel has traffic */ | ||
228 | #define LED_TIME 250 | ||
229 | |||
230 | |||
231 | |||
232 | struct hfcsusb; | ||
233 | struct usb_fifo; | ||
234 | |||
235 | /* structure defining input+output fifos (interrupt/bulk mode) */ | ||
236 | struct iso_urb { | ||
237 | struct urb *urb; | ||
238 | __u8 buffer[ISO_BUFFER_SIZE]; /* buffer rx/tx USB URB data */ | ||
239 | struct usb_fifo *owner_fifo; /* pointer to owner fifo */ | ||
240 | __u8 indx; /* Fifos's ISO double buffer 0 or 1 ? */ | ||
241 | #ifdef ISO_FRAME_START_DEBUG | ||
242 | int start_frames[ISO_FRAME_START_RING_COUNT]; | ||
243 | __u8 iso_frm_strt_pos; /* index in start_frame[] */ | ||
244 | #endif | ||
245 | }; | ||
246 | |||
247 | struct usb_fifo { | ||
248 | int fifonum; /* fifo index attached to this structure */ | ||
249 | int active; /* fifo is currently active */ | ||
250 | struct hfcsusb *hw; /* pointer to main structure */ | ||
251 | int pipe; /* address of endpoint */ | ||
252 | __u8 usb_packet_maxlen; /* maximum length for usb transfer */ | ||
253 | unsigned int max_size; /* maximum size of receive/send packet */ | ||
254 | __u8 intervall; /* interrupt interval */ | ||
255 | struct urb *urb; /* transfer structure for usb routines */ | ||
256 | __u8 buffer[128]; /* buffer USB INT OUT URB data */ | ||
257 | int bit_line; /* how much bits are in the fifo? */ | ||
258 | |||
259 | __u8 usb_transfer_mode; /* switched between ISO and INT */ | ||
260 | struct iso_urb iso[2]; /* two urbs to have one always | ||
261 | one pending */ | ||
262 | |||
263 | struct dchannel *dch; /* link to hfcsusb_t->dch */ | ||
264 | struct bchannel *bch; /* link to hfcsusb_t->bch */ | ||
265 | struct dchannel *ech; /* link to hfcsusb_t->ech, TODO: E-CHANNEL */ | ||
266 | int last_urblen; /* remember length of last packet */ | ||
267 | __u8 stop_gracefull; /* stops URB retransmission */ | ||
268 | }; | ||
269 | |||
270 | struct hfcsusb { | ||
271 | struct list_head list; | ||
272 | struct dchannel dch; | ||
273 | struct bchannel bch[2]; | ||
274 | struct dchannel ech; /* TODO : wait for struct echannel ;) */ | ||
275 | |||
276 | struct usb_device *dev; /* our device */ | ||
277 | struct usb_interface *intf; /* used interface */ | ||
278 | int if_used; /* used interface number */ | ||
279 | int alt_used; /* used alternate config */ | ||
280 | int cfg_used; /* configuration index used */ | ||
281 | int vend_idx; /* index in hfcsusb_idtab */ | ||
282 | int packet_size; | ||
283 | int iso_packet_size; | ||
284 | struct usb_fifo fifos[HFCUSB_NUM_FIFOS]; | ||
285 | |||
286 | /* control pipe background handling */ | ||
287 | struct ctrl_buf ctrl_buff[HFC_CTRL_BUFSIZE]; | ||
288 | int ctrl_in_idx, ctrl_out_idx, ctrl_cnt; | ||
289 | struct urb *ctrl_urb; | ||
290 | struct usb_ctrlrequest ctrl_write; | ||
291 | struct usb_ctrlrequest ctrl_read; | ||
292 | int ctrl_paksize; | ||
293 | int ctrl_in_pipe, ctrl_out_pipe; | ||
294 | spinlock_t ctrl_lock; /* lock for ctrl */ | ||
295 | spinlock_t lock; | ||
296 | |||
297 | __u8 threshold_mask; | ||
298 | __u8 led_state; | ||
299 | |||
300 | __u8 protocol; | ||
301 | int nt_timer; | ||
302 | int open; | ||
303 | __u8 timers; | ||
304 | __u8 initdone; | ||
305 | char name[MISDN_MAX_IDLEN]; | ||
306 | }; | ||
307 | |||
308 | /* private vendor specific data */ | ||
309 | struct hfcsusb_vdata { | ||
310 | __u8 led_scheme; /* led display scheme */ | ||
311 | signed short led_bits[8]; /* array of 8 possible LED bitmask */ | ||
312 | char *vend_name; /* device name */ | ||
313 | }; | ||
314 | |||
315 | |||
316 | #define HFC_MAX_TE_LAYER1_STATE 8 | ||
317 | #define HFC_MAX_NT_LAYER1_STATE 4 | ||
318 | |||
319 | const char *HFC_TE_LAYER1_STATES[HFC_MAX_TE_LAYER1_STATE + 1] = { | ||
320 | "TE F0 - Reset", | ||
321 | "TE F1 - Reset", | ||
322 | "TE F2 - Sensing", | ||
323 | "TE F3 - Deactivated", | ||
324 | "TE F4 - Awaiting signal", | ||
325 | "TE F5 - Identifying input", | ||
326 | "TE F6 - Synchronized", | ||
327 | "TE F7 - Activated", | ||
328 | "TE F8 - Lost framing", | ||
329 | }; | ||
330 | |||
331 | const char *HFC_NT_LAYER1_STATES[HFC_MAX_NT_LAYER1_STATE + 1] = { | ||
332 | "NT G0 - Reset", | ||
333 | "NT G1 - Deactive", | ||
334 | "NT G2 - Pending activation", | ||
335 | "NT G3 - Active", | ||
336 | "NT G4 - Pending deactivation", | ||
337 | }; | ||
338 | |||
339 | /* supported devices */ | ||
340 | static struct usb_device_id hfcsusb_idtab[] = { | ||
341 | { | ||
342 | USB_DEVICE(0x0959, 0x2bd0), | ||
343 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
344 | {LED_OFF, {4, 0, 2, 1}, | ||
345 | "ISDN USB TA (Cologne Chip HFC-S USB based)"}), | ||
346 | }, | ||
347 | { | ||
348 | USB_DEVICE(0x0675, 0x1688), | ||
349 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
350 | {LED_SCHEME1, {1, 2, 0, 0}, | ||
351 | "DrayTek miniVigor 128 USB ISDN TA"}), | ||
352 | }, | ||
353 | { | ||
354 | USB_DEVICE(0x07b0, 0x0007), | ||
355 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
356 | {LED_SCHEME1, {0x80, -64, -32, -16}, | ||
357 | "Billion tiny USB ISDN TA 128"}), | ||
358 | }, | ||
359 | { | ||
360 | USB_DEVICE(0x0742, 0x2008), | ||
361 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
362 | {LED_SCHEME1, {4, 0, 2, 1}, | ||
363 | "Stollmann USB TA"}), | ||
364 | }, | ||
365 | { | ||
366 | USB_DEVICE(0x0742, 0x2009), | ||
367 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
368 | {LED_SCHEME1, {4, 0, 2, 1}, | ||
369 | "Aceex USB ISDN TA"}), | ||
370 | }, | ||
371 | { | ||
372 | USB_DEVICE(0x0742, 0x200A), | ||
373 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
374 | {LED_SCHEME1, {4, 0, 2, 1}, | ||
375 | "OEM USB ISDN TA"}), | ||
376 | }, | ||
377 | { | ||
378 | USB_DEVICE(0x08e3, 0x0301), | ||
379 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
380 | {LED_SCHEME1, {2, 0, 1, 4}, | ||
381 | "Olitec USB RNIS"}), | ||
382 | }, | ||
383 | { | ||
384 | USB_DEVICE(0x07fa, 0x0846), | ||
385 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
386 | {LED_SCHEME1, {0x80, -64, -32, -16}, | ||
387 | "Bewan Modem RNIS USB"}), | ||
388 | }, | ||
389 | { | ||
390 | USB_DEVICE(0x07fa, 0x0847), | ||
391 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
392 | {LED_SCHEME1, {0x80, -64, -32, -16}, | ||
393 | "Djinn Numeris USB"}), | ||
394 | }, | ||
395 | { | ||
396 | USB_DEVICE(0x07b0, 0x0006), | ||
397 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
398 | {LED_SCHEME1, {0x80, -64, -32, -16}, | ||
399 | "Twister ISDN TA"}), | ||
400 | }, | ||
401 | { | ||
402 | USB_DEVICE(0x071d, 0x1005), | ||
403 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
404 | {LED_SCHEME1, {0x02, 0, 0x01, 0x04}, | ||
405 | "Eicon DIVA USB 4.0"}), | ||
406 | }, | ||
407 | { | ||
408 | USB_DEVICE(0x0586, 0x0102), | ||
409 | .driver_info = (unsigned long) &((struct hfcsusb_vdata) | ||
410 | {LED_SCHEME1, {0x88, -64, -32, -16}, | ||
411 | "ZyXEL OMNI.NET USB II"}), | ||
412 | }, | ||
413 | { } | ||
414 | }; | ||
415 | |||
416 | MODULE_DEVICE_TABLE(usb, hfcsusb_idtab); | ||
417 | |||
418 | #endif /* __HFCSUSB_H__ */ | ||
diff --git a/drivers/isdn/mISDN/Makefile b/drivers/isdn/mISDN/Makefile index 1cb5e633cf75..0a6bd2a9e730 100644 --- a/drivers/isdn/mISDN/Makefile +++ b/drivers/isdn/mISDN/Makefile | |||
@@ -8,6 +8,6 @@ obj-$(CONFIG_MISDN_L1OIP) += l1oip.o | |||
8 | 8 | ||
9 | # multi objects | 9 | # multi objects |
10 | 10 | ||
11 | mISDN_core-objs := core.o fsm.o socket.o hwchannel.o stack.o layer1.o layer2.o tei.o timerdev.o | 11 | mISDN_core-objs := core.o fsm.o socket.o clock.o hwchannel.o stack.o layer1.o layer2.o tei.o timerdev.o |
12 | mISDN_dsp-objs := dsp_core.o dsp_cmx.o dsp_tones.o dsp_dtmf.o dsp_audio.o dsp_blowfish.o dsp_pipeline.o dsp_hwec.o | 12 | mISDN_dsp-objs := dsp_core.o dsp_cmx.o dsp_tones.o dsp_dtmf.o dsp_audio.o dsp_blowfish.o dsp_pipeline.o dsp_hwec.o |
13 | l1oip-objs := l1oip_core.o l1oip_codec.o | 13 | l1oip-objs := l1oip_core.o l1oip_codec.o |
diff --git a/drivers/isdn/mISDN/clock.c b/drivers/isdn/mISDN/clock.c new file mode 100644 index 000000000000..44d9c3d5d33d --- /dev/null +++ b/drivers/isdn/mISDN/clock.c | |||
@@ -0,0 +1,216 @@ | |||
1 | /* | ||
2 | * Copyright 2008 by Andreas Eversberg <andreas@eversberg.eu> | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 as | ||
6 | * published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * Quick API description: | ||
14 | * | ||
15 | * A clock source registers using mISDN_register_clock: | ||
16 | * name = text string to name clock source | ||
17 | * priority = value to priorize clock sources (0 = default) | ||
18 | * ctl = callback function to enable/disable clock source | ||
19 | * priv = private pointer of clock source | ||
20 | * return = pointer to clock source structure; | ||
21 | * | ||
22 | * Note: Callback 'ctl' can be called before mISDN_register_clock returns! | ||
23 | * Also it can be called during mISDN_unregister_clock. | ||
24 | * | ||
25 | * A clock source calls mISDN_clock_update with given samples elapsed, if | ||
26 | * enabled. If function call is delayed, tv must be set with the timestamp | ||
27 | * of the actual event. | ||
28 | * | ||
29 | * A clock source unregisters using mISDN_unregister_clock. | ||
30 | * | ||
31 | * To get current clock, call mISDN_clock_get. The signed short value | ||
32 | * counts the number of samples since. Time since last clock event is added. | ||
33 | * | ||
34 | */ | ||
35 | |||
36 | #include <linux/types.h> | ||
37 | #include <linux/stddef.h> | ||
38 | #include <linux/spinlock.h> | ||
39 | #include <linux/mISDNif.h> | ||
40 | #include "core.h" | ||
41 | |||
42 | static u_int *debug; | ||
43 | static LIST_HEAD(iclock_list); | ||
44 | DEFINE_RWLOCK(iclock_lock); | ||
45 | u16 iclock_count; /* counter of last clock */ | ||
46 | struct timeval iclock_tv; /* time stamp of last clock */ | ||
47 | int iclock_tv_valid; /* already received one timestamp */ | ||
48 | struct mISDNclock *iclock_current; | ||
49 | |||
50 | void | ||
51 | mISDN_init_clock(u_int *dp) | ||
52 | { | ||
53 | debug = dp; | ||
54 | do_gettimeofday(&iclock_tv); | ||
55 | } | ||
56 | |||
57 | static void | ||
58 | select_iclock(void) | ||
59 | { | ||
60 | struct mISDNclock *iclock, *bestclock = NULL, *lastclock = NULL; | ||
61 | int pri = -128; | ||
62 | |||
63 | list_for_each_entry(iclock, &iclock_list, list) { | ||
64 | if (iclock->pri > pri) { | ||
65 | pri = iclock->pri; | ||
66 | bestclock = iclock; | ||
67 | } | ||
68 | if (iclock_current == iclock) | ||
69 | lastclock = iclock; | ||
70 | } | ||
71 | if (lastclock && bestclock != lastclock) { | ||
72 | /* last used clock source still exists but changes, disable */ | ||
73 | if (*debug & DEBUG_CLOCK) | ||
74 | printk(KERN_DEBUG "Old clock source '%s' disable.\n", | ||
75 | lastclock->name); | ||
76 | lastclock->ctl(lastclock->priv, 0); | ||
77 | } | ||
78 | if (bestclock && bestclock != iclock_current) { | ||
79 | /* new clock source selected, enable */ | ||
80 | if (*debug & DEBUG_CLOCK) | ||
81 | printk(KERN_DEBUG "New clock source '%s' enable.\n", | ||
82 | bestclock->name); | ||
83 | bestclock->ctl(bestclock->priv, 1); | ||
84 | } | ||
85 | if (bestclock != iclock_current) { | ||
86 | /* no clock received yet */ | ||
87 | iclock_tv_valid = 0; | ||
88 | } | ||
89 | iclock_current = bestclock; | ||
90 | } | ||
91 | |||
92 | struct mISDNclock | ||
93 | *mISDN_register_clock(char *name, int pri, clockctl_func_t *ctl, void *priv) | ||
94 | { | ||
95 | u_long flags; | ||
96 | struct mISDNclock *iclock; | ||
97 | |||
98 | if (*debug & (DEBUG_CORE | DEBUG_CLOCK)) | ||
99 | printk(KERN_DEBUG "%s: %s %d\n", __func__, name, pri); | ||
100 | iclock = kzalloc(sizeof(struct mISDNclock), GFP_ATOMIC); | ||
101 | if (!iclock) { | ||
102 | printk(KERN_ERR "%s: No memory for clock entry.\n", __func__); | ||
103 | return NULL; | ||
104 | } | ||
105 | strncpy(iclock->name, name, sizeof(iclock->name)-1); | ||
106 | iclock->pri = pri; | ||
107 | iclock->priv = priv; | ||
108 | iclock->ctl = ctl; | ||
109 | write_lock_irqsave(&iclock_lock, flags); | ||
110 | list_add_tail(&iclock->list, &iclock_list); | ||
111 | select_iclock(); | ||
112 | write_unlock_irqrestore(&iclock_lock, flags); | ||
113 | return iclock; | ||
114 | } | ||
115 | EXPORT_SYMBOL(mISDN_register_clock); | ||
116 | |||
117 | void | ||
118 | mISDN_unregister_clock(struct mISDNclock *iclock) | ||
119 | { | ||
120 | u_long flags; | ||
121 | |||
122 | if (*debug & (DEBUG_CORE | DEBUG_CLOCK)) | ||
123 | printk(KERN_DEBUG "%s: %s %d\n", __func__, iclock->name, | ||
124 | iclock->pri); | ||
125 | write_lock_irqsave(&iclock_lock, flags); | ||
126 | if (iclock_current == iclock) { | ||
127 | if (*debug & DEBUG_CLOCK) | ||
128 | printk(KERN_DEBUG | ||
129 | "Current clock source '%s' unregisters.\n", | ||
130 | iclock->name); | ||
131 | iclock->ctl(iclock->priv, 0); | ||
132 | } | ||
133 | list_del(&iclock->list); | ||
134 | select_iclock(); | ||
135 | write_unlock_irqrestore(&iclock_lock, flags); | ||
136 | } | ||
137 | EXPORT_SYMBOL(mISDN_unregister_clock); | ||
138 | |||
139 | void | ||
140 | mISDN_clock_update(struct mISDNclock *iclock, int samples, struct timeval *tv) | ||
141 | { | ||
142 | u_long flags; | ||
143 | struct timeval tv_now; | ||
144 | time_t elapsed_sec; | ||
145 | int elapsed_8000th; | ||
146 | |||
147 | write_lock_irqsave(&iclock_lock, flags); | ||
148 | if (iclock_current != iclock) { | ||
149 | printk(KERN_ERR "%s: '%s' sends us clock updates, but we do " | ||
150 | "listen to '%s'. This is a bug!\n", __func__, | ||
151 | iclock->name, | ||
152 | iclock_current ? iclock_current->name : "nothing"); | ||
153 | iclock->ctl(iclock->priv, 0); | ||
154 | write_unlock_irqrestore(&iclock_lock, flags); | ||
155 | return; | ||
156 | } | ||
157 | if (iclock_tv_valid) { | ||
158 | /* increment sample counter by given samples */ | ||
159 | iclock_count += samples; | ||
160 | if (tv) { /* tv must be set, if function call is delayed */ | ||
161 | iclock_tv.tv_sec = tv->tv_sec; | ||
162 | iclock_tv.tv_usec = tv->tv_usec; | ||
163 | } else | ||
164 | do_gettimeofday(&iclock_tv); | ||
165 | } else { | ||
166 | /* calc elapsed time by system clock */ | ||
167 | if (tv) { /* tv must be set, if function call is delayed */ | ||
168 | tv_now.tv_sec = tv->tv_sec; | ||
169 | tv_now.tv_usec = tv->tv_usec; | ||
170 | } else | ||
171 | do_gettimeofday(&tv_now); | ||
172 | elapsed_sec = tv_now.tv_sec - iclock_tv.tv_sec; | ||
173 | elapsed_8000th = (tv_now.tv_usec / 125) | ||
174 | - (iclock_tv.tv_usec / 125); | ||
175 | if (elapsed_8000th < 0) { | ||
176 | elapsed_sec -= 1; | ||
177 | elapsed_8000th += 8000; | ||
178 | } | ||
179 | /* add elapsed time to counter and set new timestamp */ | ||
180 | iclock_count += elapsed_sec * 8000 + elapsed_8000th; | ||
181 | iclock_tv.tv_sec = tv_now.tv_sec; | ||
182 | iclock_tv.tv_usec = tv_now.tv_usec; | ||
183 | iclock_tv_valid = 1; | ||
184 | if (*debug & DEBUG_CLOCK) | ||
185 | printk("Received first clock from source '%s'.\n", | ||
186 | iclock_current ? iclock_current->name : "nothing"); | ||
187 | } | ||
188 | write_unlock_irqrestore(&iclock_lock, flags); | ||
189 | } | ||
190 | EXPORT_SYMBOL(mISDN_clock_update); | ||
191 | |||
192 | unsigned short | ||
193 | mISDN_clock_get(void) | ||
194 | { | ||
195 | u_long flags; | ||
196 | struct timeval tv_now; | ||
197 | time_t elapsed_sec; | ||
198 | int elapsed_8000th; | ||
199 | u16 count; | ||
200 | |||
201 | read_lock_irqsave(&iclock_lock, flags); | ||
202 | /* calc elapsed time by system clock */ | ||
203 | do_gettimeofday(&tv_now); | ||
204 | elapsed_sec = tv_now.tv_sec - iclock_tv.tv_sec; | ||
205 | elapsed_8000th = (tv_now.tv_usec / 125) - (iclock_tv.tv_usec / 125); | ||
206 | if (elapsed_8000th < 0) { | ||
207 | elapsed_sec -= 1; | ||
208 | elapsed_8000th += 8000; | ||
209 | } | ||
210 | /* add elapsed time to counter */ | ||
211 | count = iclock_count + elapsed_sec * 8000 + elapsed_8000th; | ||
212 | read_unlock_irqrestore(&iclock_lock, flags); | ||
213 | return count; | ||
214 | } | ||
215 | EXPORT_SYMBOL(mISDN_clock_get); | ||
216 | |||
diff --git a/drivers/isdn/mISDN/core.c b/drivers/isdn/mISDN/core.c index 751665c448d0..9426c9827e47 100644 --- a/drivers/isdn/mISDN/core.c +++ b/drivers/isdn/mISDN/core.c | |||
@@ -25,39 +25,183 @@ MODULE_AUTHOR("Karsten Keil"); | |||
25 | MODULE_LICENSE("GPL"); | 25 | MODULE_LICENSE("GPL"); |
26 | module_param(debug, uint, S_IRUGO | S_IWUSR); | 26 | module_param(debug, uint, S_IRUGO | S_IWUSR); |
27 | 27 | ||
28 | static LIST_HEAD(devices); | ||
29 | static DEFINE_RWLOCK(device_lock); | ||
30 | static u64 device_ids; | 28 | static u64 device_ids; |
31 | #define MAX_DEVICE_ID 63 | 29 | #define MAX_DEVICE_ID 63 |
32 | 30 | ||
33 | static LIST_HEAD(Bprotocols); | 31 | static LIST_HEAD(Bprotocols); |
34 | static DEFINE_RWLOCK(bp_lock); | 32 | static DEFINE_RWLOCK(bp_lock); |
35 | 33 | ||
34 | static void mISDN_dev_release(struct device *dev) | ||
35 | { | ||
36 | /* nothing to do: the device is part of its parent's data structure */ | ||
37 | } | ||
38 | |||
39 | static ssize_t _show_id(struct device *dev, | ||
40 | struct device_attribute *attr, char *buf) | ||
41 | { | ||
42 | struct mISDNdevice *mdev = dev_to_mISDN(dev); | ||
43 | |||
44 | if (!mdev) | ||
45 | return -ENODEV; | ||
46 | return sprintf(buf, "%d\n", mdev->id); | ||
47 | } | ||
48 | |||
49 | static ssize_t _show_nrbchan(struct device *dev, | ||
50 | struct device_attribute *attr, char *buf) | ||
51 | { | ||
52 | struct mISDNdevice *mdev = dev_to_mISDN(dev); | ||
53 | |||
54 | if (!mdev) | ||
55 | return -ENODEV; | ||
56 | return sprintf(buf, "%d\n", mdev->nrbchan); | ||
57 | } | ||
58 | |||
59 | static ssize_t _show_d_protocols(struct device *dev, | ||
60 | struct device_attribute *attr, char *buf) | ||
61 | { | ||
62 | struct mISDNdevice *mdev = dev_to_mISDN(dev); | ||
63 | |||
64 | if (!mdev) | ||
65 | return -ENODEV; | ||
66 | return sprintf(buf, "%d\n", mdev->Dprotocols); | ||
67 | } | ||
68 | |||
69 | static ssize_t _show_b_protocols(struct device *dev, | ||
70 | struct device_attribute *attr, char *buf) | ||
71 | { | ||
72 | struct mISDNdevice *mdev = dev_to_mISDN(dev); | ||
73 | |||
74 | if (!mdev) | ||
75 | return -ENODEV; | ||
76 | return sprintf(buf, "%d\n", mdev->Bprotocols | get_all_Bprotocols()); | ||
77 | } | ||
78 | |||
79 | static ssize_t _show_protocol(struct device *dev, | ||
80 | struct device_attribute *attr, char *buf) | ||
81 | { | ||
82 | struct mISDNdevice *mdev = dev_to_mISDN(dev); | ||
83 | |||
84 | if (!mdev) | ||
85 | return -ENODEV; | ||
86 | return sprintf(buf, "%d\n", mdev->D.protocol); | ||
87 | } | ||
88 | |||
89 | static ssize_t _show_name(struct device *dev, | ||
90 | struct device_attribute *attr, char *buf) | ||
91 | { | ||
92 | strcpy(buf, dev_name(dev)); | ||
93 | return strlen(buf); | ||
94 | } | ||
95 | |||
96 | #if 0 /* hangs */ | ||
97 | static ssize_t _set_name(struct device *dev, struct device_attribute *attr, | ||
98 | const char *buf, size_t count) | ||
99 | { | ||
100 | int err = 0; | ||
101 | char *out = kmalloc(count + 1, GFP_KERNEL); | ||
102 | |||
103 | if (!out) | ||
104 | return -ENOMEM; | ||
105 | |||
106 | memcpy(out, buf, count); | ||
107 | if (count && out[count - 1] == '\n') | ||
108 | out[--count] = 0; | ||
109 | if (count) | ||
110 | err = device_rename(dev, out); | ||
111 | kfree(out); | ||
112 | |||
113 | return (err < 0) ? err : count; | ||
114 | } | ||
115 | #endif | ||
116 | |||
117 | static ssize_t _show_channelmap(struct device *dev, | ||
118 | struct device_attribute *attr, char *buf) | ||
119 | { | ||
120 | struct mISDNdevice *mdev = dev_to_mISDN(dev); | ||
121 | char *bp = buf; | ||
122 | int i; | ||
123 | |||
124 | for (i = 0; i <= mdev->nrbchan; i++) | ||
125 | *bp++ = test_channelmap(i, mdev->channelmap) ? '1' : '0'; | ||
126 | |||
127 | return bp - buf; | ||
128 | } | ||
129 | |||
130 | static struct device_attribute mISDN_dev_attrs[] = { | ||
131 | __ATTR(id, S_IRUGO, _show_id, NULL), | ||
132 | __ATTR(d_protocols, S_IRUGO, _show_d_protocols, NULL), | ||
133 | __ATTR(b_protocols, S_IRUGO, _show_b_protocols, NULL), | ||
134 | __ATTR(protocol, S_IRUGO, _show_protocol, NULL), | ||
135 | __ATTR(channelmap, S_IRUGO, _show_channelmap, NULL), | ||
136 | __ATTR(nrbchan, S_IRUGO, _show_nrbchan, NULL), | ||
137 | __ATTR(name, S_IRUGO, _show_name, NULL), | ||
138 | /* __ATTR(name, S_IRUGO|S_IWUSR, _show_name, _set_name), */ | ||
139 | {} | ||
140 | }; | ||
141 | |||
142 | #ifdef CONFIG_HOTPLUG | ||
143 | static int mISDN_uevent(struct device *dev, struct kobj_uevent_env *env) | ||
144 | { | ||
145 | struct mISDNdevice *mdev = dev_to_mISDN(dev); | ||
146 | |||
147 | if (!mdev) | ||
148 | return 0; | ||
149 | |||
150 | if (add_uevent_var(env, "nchans=%d", mdev->nrbchan)) | ||
151 | return -ENOMEM; | ||
152 | |||
153 | return 0; | ||
154 | } | ||
155 | #endif | ||
156 | |||
157 | static void mISDN_class_release(struct class *cls) | ||
158 | { | ||
159 | /* do nothing, it's static */ | ||
160 | } | ||
161 | |||
162 | static struct class mISDN_class = { | ||
163 | .name = "mISDN", | ||
164 | .owner = THIS_MODULE, | ||
165 | #ifdef CONFIG_HOTPLUG | ||
166 | .dev_uevent = mISDN_uevent, | ||
167 | #endif | ||
168 | .dev_attrs = mISDN_dev_attrs, | ||
169 | .dev_release = mISDN_dev_release, | ||
170 | .class_release = mISDN_class_release, | ||
171 | }; | ||
172 | |||
173 | static int | ||
174 | _get_mdevice(struct device *dev, void *id) | ||
175 | { | ||
176 | struct mISDNdevice *mdev = dev_to_mISDN(dev); | ||
177 | |||
178 | if (!mdev) | ||
179 | return 0; | ||
180 | if (mdev->id != *(u_int *)id) | ||
181 | return 0; | ||
182 | return 1; | ||
183 | } | ||
184 | |||
36 | struct mISDNdevice | 185 | struct mISDNdevice |
37 | *get_mdevice(u_int id) | 186 | *get_mdevice(u_int id) |
38 | { | 187 | { |
39 | struct mISDNdevice *dev; | 188 | return dev_to_mISDN(class_find_device(&mISDN_class, NULL, &id, |
189 | _get_mdevice)); | ||
190 | } | ||
40 | 191 | ||
41 | read_lock(&device_lock); | 192 | static int |
42 | list_for_each_entry(dev, &devices, D.list) | 193 | _get_mdevice_count(struct device *dev, void *cnt) |
43 | if (dev->id == id) { | 194 | { |
44 | read_unlock(&device_lock); | 195 | *(int *)cnt += 1; |
45 | return dev; | 196 | return 0; |
46 | } | ||
47 | read_unlock(&device_lock); | ||
48 | return NULL; | ||
49 | } | 197 | } |
50 | 198 | ||
51 | int | 199 | int |
52 | get_mdevice_count(void) | 200 | get_mdevice_count(void) |
53 | { | 201 | { |
54 | struct mISDNdevice *dev; | 202 | int cnt = 0; |
55 | int cnt = 0; | ||
56 | 203 | ||
57 | read_lock(&device_lock); | 204 | class_for_each_device(&mISDN_class, NULL, &cnt, _get_mdevice_count); |
58 | list_for_each_entry(dev, &devices, D.list) | ||
59 | cnt++; | ||
60 | read_unlock(&device_lock); | ||
61 | return cnt; | 205 | return cnt; |
62 | } | 206 | } |
63 | 207 | ||
@@ -68,48 +212,66 @@ get_free_devid(void) | |||
68 | 212 | ||
69 | for (i = 0; i <= MAX_DEVICE_ID; i++) | 213 | for (i = 0; i <= MAX_DEVICE_ID; i++) |
70 | if (!test_and_set_bit(i, (u_long *)&device_ids)) | 214 | if (!test_and_set_bit(i, (u_long *)&device_ids)) |
71 | return i; | 215 | break; |
72 | return -1; | 216 | if (i > MAX_DEVICE_ID) |
217 | return -1; | ||
218 | return i; | ||
73 | } | 219 | } |
74 | 220 | ||
75 | int | 221 | int |
76 | mISDN_register_device(struct mISDNdevice *dev, char *name) | 222 | mISDN_register_device(struct mISDNdevice *dev, |
223 | struct device *parent, char *name) | ||
77 | { | 224 | { |
78 | u_long flags; | ||
79 | int err; | 225 | int err; |
80 | 226 | ||
81 | dev->id = get_free_devid(); | 227 | dev->id = get_free_devid(); |
228 | err = -EBUSY; | ||
82 | if (dev->id < 0) | 229 | if (dev->id < 0) |
83 | return -EBUSY; | 230 | goto error1; |
231 | |||
232 | device_initialize(&dev->dev); | ||
84 | if (name && name[0]) | 233 | if (name && name[0]) |
85 | strcpy(dev->name, name); | 234 | dev_set_name(&dev->dev, "%s", name); |
86 | else | 235 | else |
87 | sprintf(dev->name, "mISDN%d", dev->id); | 236 | dev_set_name(&dev->dev, "mISDN%d", dev->id); |
88 | if (debug & DEBUG_CORE) | 237 | if (debug & DEBUG_CORE) |
89 | printk(KERN_DEBUG "mISDN_register %s %d\n", | 238 | printk(KERN_DEBUG "mISDN_register %s %d\n", |
90 | dev->name, dev->id); | 239 | dev_name(&dev->dev), dev->id); |
91 | err = create_stack(dev); | 240 | err = create_stack(dev); |
92 | if (err) | 241 | if (err) |
93 | return err; | 242 | goto error1; |
94 | write_lock_irqsave(&device_lock, flags); | 243 | |
95 | list_add_tail(&dev->D.list, &devices); | 244 | dev->dev.class = &mISDN_class; |
96 | write_unlock_irqrestore(&device_lock, flags); | 245 | dev->dev.platform_data = dev; |
246 | dev->dev.parent = parent; | ||
247 | dev_set_drvdata(&dev->dev, dev); | ||
248 | |||
249 | err = device_add(&dev->dev); | ||
250 | if (err) | ||
251 | goto error3; | ||
97 | return 0; | 252 | return 0; |
253 | |||
254 | error3: | ||
255 | delete_stack(dev); | ||
256 | return err; | ||
257 | error1: | ||
258 | return err; | ||
259 | |||
98 | } | 260 | } |
99 | EXPORT_SYMBOL(mISDN_register_device); | 261 | EXPORT_SYMBOL(mISDN_register_device); |
100 | 262 | ||
101 | void | 263 | void |
102 | mISDN_unregister_device(struct mISDNdevice *dev) { | 264 | mISDN_unregister_device(struct mISDNdevice *dev) { |
103 | u_long flags; | ||
104 | |||
105 | if (debug & DEBUG_CORE) | 265 | if (debug & DEBUG_CORE) |
106 | printk(KERN_DEBUG "mISDN_unregister %s %d\n", | 266 | printk(KERN_DEBUG "mISDN_unregister %s %d\n", |
107 | dev->name, dev->id); | 267 | dev_name(&dev->dev), dev->id); |
108 | write_lock_irqsave(&device_lock, flags); | 268 | /* sysfs_remove_link(&dev->dev.kobj, "device"); */ |
109 | list_del(&dev->D.list); | 269 | device_del(&dev->dev); |
110 | write_unlock_irqrestore(&device_lock, flags); | 270 | dev_set_drvdata(&dev->dev, NULL); |
271 | |||
111 | test_and_clear_bit(dev->id, (u_long *)&device_ids); | 272 | test_and_clear_bit(dev->id, (u_long *)&device_ids); |
112 | delete_stack(dev); | 273 | delete_stack(dev); |
274 | put_device(&dev->dev); | ||
113 | } | 275 | } |
114 | EXPORT_SYMBOL(mISDN_unregister_device); | 276 | EXPORT_SYMBOL(mISDN_unregister_device); |
115 | 277 | ||
@@ -199,43 +361,45 @@ mISDNInit(void) | |||
199 | 361 | ||
200 | printk(KERN_INFO "Modular ISDN core version %d.%d.%d\n", | 362 | printk(KERN_INFO "Modular ISDN core version %d.%d.%d\n", |
201 | MISDN_MAJOR_VERSION, MISDN_MINOR_VERSION, MISDN_RELEASE); | 363 | MISDN_MAJOR_VERSION, MISDN_MINOR_VERSION, MISDN_RELEASE); |
364 | mISDN_init_clock(&debug); | ||
202 | mISDN_initstack(&debug); | 365 | mISDN_initstack(&debug); |
366 | err = class_register(&mISDN_class); | ||
367 | if (err) | ||
368 | goto error1; | ||
203 | err = mISDN_inittimer(&debug); | 369 | err = mISDN_inittimer(&debug); |
204 | if (err) | 370 | if (err) |
205 | goto error; | 371 | goto error2; |
206 | err = l1_init(&debug); | 372 | err = l1_init(&debug); |
207 | if (err) { | 373 | if (err) |
208 | mISDN_timer_cleanup(); | 374 | goto error3; |
209 | goto error; | ||
210 | } | ||
211 | err = Isdnl2_Init(&debug); | 375 | err = Isdnl2_Init(&debug); |
212 | if (err) { | 376 | if (err) |
213 | mISDN_timer_cleanup(); | 377 | goto error4; |
214 | l1_cleanup(); | ||
215 | goto error; | ||
216 | } | ||
217 | err = misdn_sock_init(&debug); | 378 | err = misdn_sock_init(&debug); |
218 | if (err) { | 379 | if (err) |
219 | mISDN_timer_cleanup(); | 380 | goto error5; |
220 | l1_cleanup(); | 381 | return 0; |
221 | Isdnl2_cleanup(); | 382 | |
222 | } | 383 | error5: |
223 | error: | 384 | Isdnl2_cleanup(); |
385 | error4: | ||
386 | l1_cleanup(); | ||
387 | error3: | ||
388 | mISDN_timer_cleanup(); | ||
389 | error2: | ||
390 | class_unregister(&mISDN_class); | ||
391 | error1: | ||
224 | return err; | 392 | return err; |
225 | } | 393 | } |
226 | 394 | ||
227 | static void mISDN_cleanup(void) | 395 | static void mISDN_cleanup(void) |
228 | { | 396 | { |
229 | misdn_sock_cleanup(); | 397 | misdn_sock_cleanup(); |
230 | mISDN_timer_cleanup(); | ||
231 | l1_cleanup(); | ||
232 | Isdnl2_cleanup(); | 398 | Isdnl2_cleanup(); |
399 | l1_cleanup(); | ||
400 | mISDN_timer_cleanup(); | ||
401 | class_unregister(&mISDN_class); | ||
233 | 402 | ||
234 | if (!list_empty(&devices)) | ||
235 | printk(KERN_ERR "%s devices still registered\n", __func__); | ||
236 | |||
237 | if (!list_empty(&Bprotocols)) | ||
238 | printk(KERN_ERR "%s Bprotocols still registered\n", __func__); | ||
239 | printk(KERN_DEBUG "mISDNcore unloaded\n"); | 403 | printk(KERN_DEBUG "mISDNcore unloaded\n"); |
240 | } | 404 | } |
241 | 405 | ||
diff --git a/drivers/isdn/mISDN/core.h b/drivers/isdn/mISDN/core.h index 7da7233b4c1a..7ac2f81a812b 100644 --- a/drivers/isdn/mISDN/core.h +++ b/drivers/isdn/mISDN/core.h | |||
@@ -74,4 +74,6 @@ extern void l1_cleanup(void); | |||
74 | extern int Isdnl2_Init(u_int *); | 74 | extern int Isdnl2_Init(u_int *); |
75 | extern void Isdnl2_cleanup(void); | 75 | extern void Isdnl2_cleanup(void); |
76 | 76 | ||
77 | extern void mISDN_init_clock(u_int *); | ||
78 | |||
77 | #endif | 79 | #endif |
diff --git a/drivers/isdn/mISDN/dsp.h b/drivers/isdn/mISDN/dsp.h index 6c3fed6b8d4f..98a33c58f091 100644 --- a/drivers/isdn/mISDN/dsp.h +++ b/drivers/isdn/mISDN/dsp.h | |||
@@ -15,6 +15,7 @@ | |||
15 | #define DEBUG_DSP_TONE 0x0020 | 15 | #define DEBUG_DSP_TONE 0x0020 |
16 | #define DEBUG_DSP_BLOWFISH 0x0040 | 16 | #define DEBUG_DSP_BLOWFISH 0x0040 |
17 | #define DEBUG_DSP_DELAY 0x0100 | 17 | #define DEBUG_DSP_DELAY 0x0100 |
18 | #define DEBUG_DSP_CLOCK 0x0200 | ||
18 | #define DEBUG_DSP_DTMFCOEFF 0x8000 /* heavy output */ | 19 | #define DEBUG_DSP_DTMFCOEFF 0x8000 /* heavy output */ |
19 | 20 | ||
20 | /* options may be: | 21 | /* options may be: |
@@ -198,6 +199,7 @@ struct dsp { | |||
198 | /* hardware stuff */ | 199 | /* hardware stuff */ |
199 | struct dsp_features features; | 200 | struct dsp_features features; |
200 | int features_rx_off; /* set if rx_off is featured */ | 201 | int features_rx_off; /* set if rx_off is featured */ |
202 | int features_fill_empty; /* set if fill_empty is featured */ | ||
201 | int pcm_slot_rx; /* current PCM slot (or -1) */ | 203 | int pcm_slot_rx; /* current PCM slot (or -1) */ |
202 | int pcm_bank_rx; | 204 | int pcm_bank_rx; |
203 | int pcm_slot_tx; | 205 | int pcm_slot_tx; |
diff --git a/drivers/isdn/mISDN/dsp_cmx.c b/drivers/isdn/mISDN/dsp_cmx.c index c884511e2d49..0ac67bff303a 100644 --- a/drivers/isdn/mISDN/dsp_cmx.c +++ b/drivers/isdn/mISDN/dsp_cmx.c | |||
@@ -137,6 +137,7 @@ | |||
137 | /* #define CMX_CONF_DEBUG */ | 137 | /* #define CMX_CONF_DEBUG */ |
138 | 138 | ||
139 | /*#define CMX_DEBUG * massive read/write pointer output */ | 139 | /*#define CMX_DEBUG * massive read/write pointer output */ |
140 | /*#define CMX_DELAY_DEBUG * gives rx-buffer delay overview */ | ||
140 | /*#define CMX_TX_DEBUG * massive read/write on tx-buffer with content */ | 141 | /*#define CMX_TX_DEBUG * massive read/write on tx-buffer with content */ |
141 | 142 | ||
142 | static inline int | 143 | static inline int |
@@ -744,11 +745,11 @@ conf_software: | |||
744 | if (dsp->pcm_slot_rx >= 0 && | 745 | if (dsp->pcm_slot_rx >= 0 && |
745 | dsp->pcm_slot_rx < | 746 | dsp->pcm_slot_rx < |
746 | sizeof(freeslots)) | 747 | sizeof(freeslots)) |
747 | freeslots[dsp->pcm_slot_tx] = 0; | 748 | freeslots[dsp->pcm_slot_rx] = 0; |
748 | if (dsp->pcm_slot_tx >= 0 && | 749 | if (dsp->pcm_slot_tx >= 0 && |
749 | dsp->pcm_slot_tx < | 750 | dsp->pcm_slot_tx < |
750 | sizeof(freeslots)) | 751 | sizeof(freeslots)) |
751 | freeslots[dsp->pcm_slot_rx] = 0; | 752 | freeslots[dsp->pcm_slot_tx] = 0; |
752 | } | 753 | } |
753 | } | 754 | } |
754 | i = 0; | 755 | i = 0; |
@@ -836,11 +837,11 @@ conf_software: | |||
836 | if (dsp->pcm_slot_rx >= 0 && | 837 | if (dsp->pcm_slot_rx >= 0 && |
837 | dsp->pcm_slot_rx < | 838 | dsp->pcm_slot_rx < |
838 | sizeof(freeslots)) | 839 | sizeof(freeslots)) |
839 | freeslots[dsp->pcm_slot_tx] = 0; | 840 | freeslots[dsp->pcm_slot_rx] = 0; |
840 | if (dsp->pcm_slot_tx >= 0 && | 841 | if (dsp->pcm_slot_tx >= 0 && |
841 | dsp->pcm_slot_tx < | 842 | dsp->pcm_slot_tx < |
842 | sizeof(freeslots)) | 843 | sizeof(freeslots)) |
843 | freeslots[dsp->pcm_slot_rx] = 0; | 844 | freeslots[dsp->pcm_slot_tx] = 0; |
844 | } | 845 | } |
845 | } | 846 | } |
846 | i1 = 0; | 847 | i1 = 0; |
@@ -926,10 +927,6 @@ conf_software: | |||
926 | 927 | ||
927 | /* for more than two members.. */ | 928 | /* for more than two members.. */ |
928 | 929 | ||
929 | /* in case of hdlc, we change to software */ | ||
930 | if (dsp->hdlc) | ||
931 | goto conf_software; | ||
932 | |||
933 | /* if all members already have the same conference */ | 930 | /* if all members already have the same conference */ |
934 | if (all_conf) | 931 | if (all_conf) |
935 | return; | 932 | return; |
@@ -940,6 +937,9 @@ conf_software: | |||
940 | if (current_conf >= 0) { | 937 | if (current_conf >= 0) { |
941 | join_members: | 938 | join_members: |
942 | list_for_each_entry(member, &conf->mlist, list) { | 939 | list_for_each_entry(member, &conf->mlist, list) { |
940 | /* in case of hdlc, change to software */ | ||
941 | if (member->dsp->hdlc) | ||
942 | goto conf_software; | ||
943 | /* join to current conference */ | 943 | /* join to current conference */ |
944 | if (member->dsp->hfc_conf == current_conf) | 944 | if (member->dsp->hfc_conf == current_conf) |
945 | continue; | 945 | continue; |
@@ -1135,6 +1135,25 @@ dsp_cmx_conf(struct dsp *dsp, u32 conf_id) | |||
1135 | return 0; | 1135 | return 0; |
1136 | } | 1136 | } |
1137 | 1137 | ||
1138 | #ifdef CMX_DELAY_DEBUG | ||
1139 | int delaycount; | ||
1140 | static void | ||
1141 | showdelay(struct dsp *dsp, int samples, int delay) | ||
1142 | { | ||
1143 | char bar[] = "--------------------------------------------------|"; | ||
1144 | int sdelay; | ||
1145 | |||
1146 | delaycount += samples; | ||
1147 | if (delaycount < 8000) | ||
1148 | return; | ||
1149 | delaycount = 0; | ||
1150 | |||
1151 | sdelay = delay * 50 / (dsp_poll << 2); | ||
1152 | |||
1153 | printk(KERN_DEBUG "DELAY (%s) %3d >%s\n", dsp->name, delay, | ||
1154 | sdelay > 50 ? "..." : bar + 50 - sdelay); | ||
1155 | } | ||
1156 | #endif | ||
1138 | 1157 | ||
1139 | /* | 1158 | /* |
1140 | * audio data is received from card | 1159 | * audio data is received from card |
@@ -1168,11 +1187,18 @@ dsp_cmx_receive(struct dsp *dsp, struct sk_buff *skb) | |||
1168 | dsp->rx_init = 0; | 1187 | dsp->rx_init = 0; |
1169 | if (dsp->features.unordered) { | 1188 | if (dsp->features.unordered) { |
1170 | dsp->rx_R = (hh->id & CMX_BUFF_MASK); | 1189 | dsp->rx_R = (hh->id & CMX_BUFF_MASK); |
1171 | dsp->rx_W = (dsp->rx_R + dsp->cmx_delay) | 1190 | if (dsp->cmx_delay) |
1172 | & CMX_BUFF_MASK; | 1191 | dsp->rx_W = (dsp->rx_R + dsp->cmx_delay) |
1192 | & CMX_BUFF_MASK; | ||
1193 | else | ||
1194 | dsp->rx_W = (dsp->rx_R + (dsp_poll >> 1)) | ||
1195 | & CMX_BUFF_MASK; | ||
1173 | } else { | 1196 | } else { |
1174 | dsp->rx_R = 0; | 1197 | dsp->rx_R = 0; |
1175 | dsp->rx_W = dsp->cmx_delay; | 1198 | if (dsp->cmx_delay) |
1199 | dsp->rx_W = dsp->cmx_delay; | ||
1200 | else | ||
1201 | dsp->rx_W = dsp_poll >> 1; | ||
1176 | } | 1202 | } |
1177 | } | 1203 | } |
1178 | /* if frame contains time code, write directly */ | 1204 | /* if frame contains time code, write directly */ |
@@ -1185,19 +1211,25 @@ dsp_cmx_receive(struct dsp *dsp, struct sk_buff *skb) | |||
1185 | * we set our new read pointer, and write silence to buffer | 1211 | * we set our new read pointer, and write silence to buffer |
1186 | */ | 1212 | */ |
1187 | if (((dsp->rx_W-dsp->rx_R) & CMX_BUFF_MASK) >= CMX_BUFF_HALF) { | 1213 | if (((dsp->rx_W-dsp->rx_R) & CMX_BUFF_MASK) >= CMX_BUFF_HALF) { |
1188 | if (dsp_debug & DEBUG_DSP_CMX) | 1214 | if (dsp_debug & DEBUG_DSP_CLOCK) |
1189 | printk(KERN_DEBUG | 1215 | printk(KERN_DEBUG |
1190 | "cmx_receive(dsp=%lx): UNDERRUN (or overrun the " | 1216 | "cmx_receive(dsp=%lx): UNDERRUN (or overrun the " |
1191 | "maximum delay), adjusting read pointer! " | 1217 | "maximum delay), adjusting read pointer! " |
1192 | "(inst %s)\n", (u_long)dsp, dsp->name); | 1218 | "(inst %s)\n", (u_long)dsp, dsp->name); |
1193 | /* flush buffer */ | 1219 | /* flush rx buffer and set delay to dsp_poll / 2 */ |
1194 | if (dsp->features.unordered) { | 1220 | if (dsp->features.unordered) { |
1195 | dsp->rx_R = (hh->id & CMX_BUFF_MASK); | 1221 | dsp->rx_R = (hh->id & CMX_BUFF_MASK); |
1196 | dsp->rx_W = (dsp->rx_R + dsp->cmx_delay) | 1222 | if (dsp->cmx_delay) |
1197 | & CMX_BUFF_MASK; | 1223 | dsp->rx_W = (dsp->rx_R + dsp->cmx_delay) |
1224 | & CMX_BUFF_MASK; | ||
1225 | dsp->rx_W = (dsp->rx_R + (dsp_poll >> 1)) | ||
1226 | & CMX_BUFF_MASK; | ||
1198 | } else { | 1227 | } else { |
1199 | dsp->rx_R = 0; | 1228 | dsp->rx_R = 0; |
1200 | dsp->rx_W = dsp->cmx_delay; | 1229 | if (dsp->cmx_delay) |
1230 | dsp->rx_W = dsp->cmx_delay; | ||
1231 | else | ||
1232 | dsp->rx_W = dsp_poll >> 1; | ||
1201 | } | 1233 | } |
1202 | memset(dsp->rx_buff, dsp_silence, sizeof(dsp->rx_buff)); | 1234 | memset(dsp->rx_buff, dsp_silence, sizeof(dsp->rx_buff)); |
1203 | } | 1235 | } |
@@ -1205,7 +1237,7 @@ dsp_cmx_receive(struct dsp *dsp, struct sk_buff *skb) | |||
1205 | if (dsp->cmx_delay) | 1237 | if (dsp->cmx_delay) |
1206 | if (((dsp->rx_W - dsp->rx_R) & CMX_BUFF_MASK) >= | 1238 | if (((dsp->rx_W - dsp->rx_R) & CMX_BUFF_MASK) >= |
1207 | (dsp->cmx_delay << 1)) { | 1239 | (dsp->cmx_delay << 1)) { |
1208 | if (dsp_debug & DEBUG_DSP_CMX) | 1240 | if (dsp_debug & DEBUG_DSP_CLOCK) |
1209 | printk(KERN_DEBUG | 1241 | printk(KERN_DEBUG |
1210 | "cmx_receive(dsp=%lx): OVERRUN (because " | 1242 | "cmx_receive(dsp=%lx): OVERRUN (because " |
1211 | "twice the delay is reached), adjusting " | 1243 | "twice the delay is reached), adjusting " |
@@ -1243,6 +1275,9 @@ dsp_cmx_receive(struct dsp *dsp, struct sk_buff *skb) | |||
1243 | 1275 | ||
1244 | /* increase write-pointer */ | 1276 | /* increase write-pointer */ |
1245 | dsp->rx_W = ((dsp->rx_W+len) & CMX_BUFF_MASK); | 1277 | dsp->rx_W = ((dsp->rx_W+len) & CMX_BUFF_MASK); |
1278 | #ifdef CMX_DELAY_DEBUG | ||
1279 | showdelay(dsp, len, (dsp->rx_W-dsp->rx_R) & CMX_BUFF_MASK); | ||
1280 | #endif | ||
1246 | } | 1281 | } |
1247 | 1282 | ||
1248 | 1283 | ||
@@ -1360,8 +1395,12 @@ dsp_cmx_send_member(struct dsp *dsp, int len, s32 *c, int members) | |||
1360 | t = (t+1) & CMX_BUFF_MASK; | 1395 | t = (t+1) & CMX_BUFF_MASK; |
1361 | r = (r+1) & CMX_BUFF_MASK; | 1396 | r = (r+1) & CMX_BUFF_MASK; |
1362 | } | 1397 | } |
1363 | if (r != rr) | 1398 | if (r != rr) { |
1399 | if (dsp_debug & DEBUG_DSP_CLOCK) | ||
1400 | printk(KERN_DEBUG "%s: RX empty\n", | ||
1401 | __func__); | ||
1364 | memset(d, dsp_silence, (rr-r)&CMX_BUFF_MASK); | 1402 | memset(d, dsp_silence, (rr-r)&CMX_BUFF_MASK); |
1403 | } | ||
1365 | /* -> if echo is enabled */ | 1404 | /* -> if echo is enabled */ |
1366 | } else { | 1405 | } else { |
1367 | /* | 1406 | /* |
@@ -1540,13 +1579,11 @@ send_packet: | |||
1540 | schedule_work(&dsp->workq); | 1579 | schedule_work(&dsp->workq); |
1541 | } | 1580 | } |
1542 | 1581 | ||
1543 | static u32 samplecount; | 1582 | static u32 jittercount; /* counter for jitter check */; |
1544 | struct timer_list dsp_spl_tl; | 1583 | struct timer_list dsp_spl_tl; |
1545 | u32 dsp_spl_jiffies; /* calculate the next time to fire */ | 1584 | u32 dsp_spl_jiffies; /* calculate the next time to fire */ |
1546 | #ifdef UNUSED | 1585 | static u16 dsp_count; /* last sample count */ |
1547 | static u32 dsp_start_jiffies; /* jiffies at the time, the calculation begins */ | 1586 | static int dsp_count_valid ; /* if we have last sample count */ |
1548 | #endif /* UNUSED */ | ||
1549 | static struct timeval dsp_start_tv; /* time at start of calculation */ | ||
1550 | 1587 | ||
1551 | void | 1588 | void |
1552 | dsp_cmx_send(void *arg) | 1589 | dsp_cmx_send(void *arg) |
@@ -1560,38 +1597,32 @@ dsp_cmx_send(void *arg) | |||
1560 | int r, rr; | 1597 | int r, rr; |
1561 | int jittercheck = 0, delay, i; | 1598 | int jittercheck = 0, delay, i; |
1562 | u_long flags; | 1599 | u_long flags; |
1563 | struct timeval tv; | 1600 | u16 length, count; |
1564 | u32 elapsed; | ||
1565 | s16 length; | ||
1566 | 1601 | ||
1567 | /* lock */ | 1602 | /* lock */ |
1568 | spin_lock_irqsave(&dsp_lock, flags); | 1603 | spin_lock_irqsave(&dsp_lock, flags); |
1569 | 1604 | ||
1570 | if (!dsp_start_tv.tv_sec) { | 1605 | if (!dsp_count_valid) { |
1571 | do_gettimeofday(&dsp_start_tv); | 1606 | dsp_count = mISDN_clock_get(); |
1572 | length = dsp_poll; | 1607 | length = dsp_poll; |
1608 | dsp_count_valid = 1; | ||
1573 | } else { | 1609 | } else { |
1574 | do_gettimeofday(&tv); | 1610 | count = mISDN_clock_get(); |
1575 | elapsed = ((tv.tv_sec - dsp_start_tv.tv_sec) * 8000) | 1611 | length = count - dsp_count; |
1576 | + ((s32)(tv.tv_usec / 125) - (dsp_start_tv.tv_usec / 125)); | 1612 | dsp_count = count; |
1577 | dsp_start_tv.tv_sec = tv.tv_sec; | ||
1578 | dsp_start_tv.tv_usec = tv.tv_usec; | ||
1579 | length = elapsed; | ||
1580 | } | 1613 | } |
1581 | if (length > MAX_POLL + 100) | 1614 | if (length > MAX_POLL + 100) |
1582 | length = MAX_POLL + 100; | 1615 | length = MAX_POLL + 100; |
1583 | /* printk(KERN_DEBUG "len=%d dsp_count=0x%x.%04x dsp_poll_diff=0x%x.%04x\n", | 1616 | /* printk(KERN_DEBUG "len=%d dsp_count=0x%x\n", length, dsp_count); */ |
1584 | length, dsp_count >> 16, dsp_count & 0xffff, dsp_poll_diff >> 16, | ||
1585 | dsp_poll_diff & 0xffff); | ||
1586 | */ | ||
1587 | 1617 | ||
1588 | /* | 1618 | /* |
1589 | * check if jitter needs to be checked | 1619 | * check if jitter needs to be checked (this is every second) |
1590 | * (this is about every second = 8192 samples) | ||
1591 | */ | 1620 | */ |
1592 | samplecount += length; | 1621 | jittercount += length; |
1593 | if ((samplecount & 8191) < length) | 1622 | if (jittercount >= 8000) { |
1623 | jittercount -= 8000; | ||
1594 | jittercheck = 1; | 1624 | jittercheck = 1; |
1625 | } | ||
1595 | 1626 | ||
1596 | /* loop all members that do not require conference mixing */ | 1627 | /* loop all members that do not require conference mixing */ |
1597 | list_for_each_entry(dsp, &dsp_ilist, list) { | 1628 | list_for_each_entry(dsp, &dsp_ilist, list) { |
@@ -1704,17 +1735,19 @@ dsp_cmx_send(void *arg) | |||
1704 | } | 1735 | } |
1705 | /* | 1736 | /* |
1706 | * remove rx_delay only if we have delay AND we | 1737 | * remove rx_delay only if we have delay AND we |
1707 | * have not preset cmx_delay | 1738 | * have not preset cmx_delay AND |
1739 | * the delay is greater dsp_poll | ||
1708 | */ | 1740 | */ |
1709 | if (delay && !dsp->cmx_delay) { | 1741 | if (delay > dsp_poll && !dsp->cmx_delay) { |
1710 | if (dsp_debug & DEBUG_DSP_CMX) | 1742 | if (dsp_debug & DEBUG_DSP_CLOCK) |
1711 | printk(KERN_DEBUG | 1743 | printk(KERN_DEBUG |
1712 | "%s lowest rx_delay of %d bytes for" | 1744 | "%s lowest rx_delay of %d bytes for" |
1713 | " dsp %s are now removed.\n", | 1745 | " dsp %s are now removed.\n", |
1714 | __func__, delay, | 1746 | __func__, delay, |
1715 | dsp->name); | 1747 | dsp->name); |
1716 | r = dsp->rx_R; | 1748 | r = dsp->rx_R; |
1717 | rr = (r + delay) & CMX_BUFF_MASK; | 1749 | rr = (r + delay - (dsp_poll >> 1)) |
1750 | & CMX_BUFF_MASK; | ||
1718 | /* delete rx-data */ | 1751 | /* delete rx-data */ |
1719 | while (r != rr) { | 1752 | while (r != rr) { |
1720 | p[r] = dsp_silence; | 1753 | p[r] = dsp_silence; |
@@ -1736,15 +1769,16 @@ dsp_cmx_send(void *arg) | |||
1736 | * remove delay only if we have delay AND we | 1769 | * remove delay only if we have delay AND we |
1737 | * have enabled tx_dejitter | 1770 | * have enabled tx_dejitter |
1738 | */ | 1771 | */ |
1739 | if (delay && dsp->tx_dejitter) { | 1772 | if (delay > dsp_poll && dsp->tx_dejitter) { |
1740 | if (dsp_debug & DEBUG_DSP_CMX) | 1773 | if (dsp_debug & DEBUG_DSP_CLOCK) |
1741 | printk(KERN_DEBUG | 1774 | printk(KERN_DEBUG |
1742 | "%s lowest tx_delay of %d bytes for" | 1775 | "%s lowest tx_delay of %d bytes for" |
1743 | " dsp %s are now removed.\n", | 1776 | " dsp %s are now removed.\n", |
1744 | __func__, delay, | 1777 | __func__, delay, |
1745 | dsp->name); | 1778 | dsp->name); |
1746 | r = dsp->tx_R; | 1779 | r = dsp->tx_R; |
1747 | rr = (r + delay) & CMX_BUFF_MASK; | 1780 | rr = (r + delay - (dsp_poll >> 1)) |
1781 | & CMX_BUFF_MASK; | ||
1748 | /* delete tx-data */ | 1782 | /* delete tx-data */ |
1749 | while (r != rr) { | 1783 | while (r != rr) { |
1750 | q[r] = dsp_silence; | 1784 | q[r] = dsp_silence; |
@@ -1797,14 +1831,16 @@ dsp_cmx_transmit(struct dsp *dsp, struct sk_buff *skb) | |||
1797 | ww = dsp->tx_R; | 1831 | ww = dsp->tx_R; |
1798 | p = dsp->tx_buff; | 1832 | p = dsp->tx_buff; |
1799 | d = skb->data; | 1833 | d = skb->data; |
1800 | space = ww-w; | 1834 | space = (ww - w - 1) & CMX_BUFF_MASK; |
1801 | if (space <= 0) | ||
1802 | space += CMX_BUFF_SIZE; | ||
1803 | /* write-pointer should not overrun nor reach read pointer */ | 1835 | /* write-pointer should not overrun nor reach read pointer */ |
1804 | if (space-1 < skb->len) | 1836 | if (space < skb->len) { |
1805 | /* write to the space we have left */ | 1837 | /* write to the space we have left */ |
1806 | ww = (ww - 1) & CMX_BUFF_MASK; | 1838 | ww = (ww - 1) & CMX_BUFF_MASK; /* end one byte prior tx_R */ |
1807 | else | 1839 | if (dsp_debug & DEBUG_DSP_CLOCK) |
1840 | printk(KERN_DEBUG "%s: TX overflow space=%d skb->len=" | ||
1841 | "%d, w=0x%04x, ww=0x%04x\n", __func__, space, | ||
1842 | skb->len, w, ww); | ||
1843 | } else | ||
1808 | /* write until all byte are copied */ | 1844 | /* write until all byte are copied */ |
1809 | ww = (w + skb->len) & CMX_BUFF_MASK; | 1845 | ww = (w + skb->len) & CMX_BUFF_MASK; |
1810 | dsp->tx_W = ww; | 1846 | dsp->tx_W = ww; |
diff --git a/drivers/isdn/mISDN/dsp_core.c b/drivers/isdn/mISDN/dsp_core.c index 1dc21d803410..3083338716b2 100644 --- a/drivers/isdn/mISDN/dsp_core.c +++ b/drivers/isdn/mISDN/dsp_core.c | |||
@@ -191,6 +191,8 @@ dsp_rx_off_member(struct dsp *dsp) | |||
191 | struct mISDN_ctrl_req cq; | 191 | struct mISDN_ctrl_req cq; |
192 | int rx_off = 1; | 192 | int rx_off = 1; |
193 | 193 | ||
194 | memset(&cq, 0, sizeof(cq)); | ||
195 | |||
194 | if (!dsp->features_rx_off) | 196 | if (!dsp->features_rx_off) |
195 | return; | 197 | return; |
196 | 198 | ||
@@ -249,6 +251,32 @@ dsp_rx_off(struct dsp *dsp) | |||
249 | } | 251 | } |
250 | } | 252 | } |
251 | 253 | ||
254 | /* enable "fill empty" feature */ | ||
255 | static void | ||
256 | dsp_fill_empty(struct dsp *dsp) | ||
257 | { | ||
258 | struct mISDN_ctrl_req cq; | ||
259 | |||
260 | memset(&cq, 0, sizeof(cq)); | ||
261 | |||
262 | if (!dsp->ch.peer) { | ||
263 | if (dsp_debug & DEBUG_DSP_CORE) | ||
264 | printk(KERN_DEBUG "%s: no peer, no fill_empty\n", | ||
265 | __func__); | ||
266 | return; | ||
267 | } | ||
268 | cq.op = MISDN_CTRL_FILL_EMPTY; | ||
269 | cq.p1 = 1; | ||
270 | if (dsp->ch.peer->ctrl(dsp->ch.peer, CONTROL_CHANNEL, &cq)) { | ||
271 | printk(KERN_DEBUG "%s: CONTROL_CHANNEL failed\n", | ||
272 | __func__); | ||
273 | return; | ||
274 | } | ||
275 | if (dsp_debug & DEBUG_DSP_CORE) | ||
276 | printk(KERN_DEBUG "%s: %s set fill_empty = 1\n", | ||
277 | __func__, dsp->name); | ||
278 | } | ||
279 | |||
252 | static int | 280 | static int |
253 | dsp_control_req(struct dsp *dsp, struct mISDNhead *hh, struct sk_buff *skb) | 281 | dsp_control_req(struct dsp *dsp, struct mISDNhead *hh, struct sk_buff *skb) |
254 | { | 282 | { |
@@ -273,8 +301,9 @@ dsp_control_req(struct dsp *dsp, struct mISDNhead *hh, struct sk_buff *skb) | |||
273 | if (dsp_debug & DEBUG_DSP_CORE) | 301 | if (dsp_debug & DEBUG_DSP_CORE) |
274 | printk(KERN_DEBUG "%s: start dtmf\n", __func__); | 302 | printk(KERN_DEBUG "%s: start dtmf\n", __func__); |
275 | if (len == sizeof(int)) { | 303 | if (len == sizeof(int)) { |
276 | printk(KERN_NOTICE "changing DTMF Threshold " | 304 | if (dsp_debug & DEBUG_DSP_CORE) |
277 | "to %d\n", *((int *)data)); | 305 | printk(KERN_NOTICE "changing DTMF Threshold " |
306 | "to %d\n", *((int *)data)); | ||
278 | dsp->dtmf.treshold = (*(int *)data) * 10000; | 307 | dsp->dtmf.treshold = (*(int *)data) * 10000; |
279 | } | 308 | } |
280 | /* init goertzel */ | 309 | /* init goertzel */ |
@@ -593,8 +622,6 @@ get_features(struct mISDNchannel *ch) | |||
593 | struct dsp *dsp = container_of(ch, struct dsp, ch); | 622 | struct dsp *dsp = container_of(ch, struct dsp, ch); |
594 | struct mISDN_ctrl_req cq; | 623 | struct mISDN_ctrl_req cq; |
595 | 624 | ||
596 | if (dsp_options & DSP_OPT_NOHARDWARE) | ||
597 | return; | ||
598 | if (!ch->peer) { | 625 | if (!ch->peer) { |
599 | if (dsp_debug & DEBUG_DSP_CORE) | 626 | if (dsp_debug & DEBUG_DSP_CORE) |
600 | printk(KERN_DEBUG "%s: no peer, no features\n", | 627 | printk(KERN_DEBUG "%s: no peer, no features\n", |
@@ -610,6 +637,10 @@ get_features(struct mISDNchannel *ch) | |||
610 | } | 637 | } |
611 | if (cq.op & MISDN_CTRL_RX_OFF) | 638 | if (cq.op & MISDN_CTRL_RX_OFF) |
612 | dsp->features_rx_off = 1; | 639 | dsp->features_rx_off = 1; |
640 | if (cq.op & MISDN_CTRL_FILL_EMPTY) | ||
641 | dsp->features_fill_empty = 1; | ||
642 | if (dsp_options & DSP_OPT_NOHARDWARE) | ||
643 | return; | ||
613 | if ((cq.op & MISDN_CTRL_HW_FEATURES_OP)) { | 644 | if ((cq.op & MISDN_CTRL_HW_FEATURES_OP)) { |
614 | cq.op = MISDN_CTRL_HW_FEATURES; | 645 | cq.op = MISDN_CTRL_HW_FEATURES; |
615 | *((u_long *)&cq.p1) = (u_long)&dsp->features; | 646 | *((u_long *)&cq.p1) = (u_long)&dsp->features; |
@@ -837,11 +868,14 @@ dsp_function(struct mISDNchannel *ch, struct sk_buff *skb) | |||
837 | } | 868 | } |
838 | if (dsp->hdlc) { | 869 | if (dsp->hdlc) { |
839 | /* hdlc */ | 870 | /* hdlc */ |
840 | spin_lock_irqsave(&dsp_lock, flags); | 871 | if (!dsp->b_active) { |
841 | if (dsp->b_active) { | 872 | ret = -EIO; |
842 | skb_queue_tail(&dsp->sendq, skb); | 873 | break; |
843 | schedule_work(&dsp->workq); | ||
844 | } | 874 | } |
875 | hh->prim = PH_DATA_REQ; | ||
876 | spin_lock_irqsave(&dsp_lock, flags); | ||
877 | skb_queue_tail(&dsp->sendq, skb); | ||
878 | schedule_work(&dsp->workq); | ||
845 | spin_unlock_irqrestore(&dsp_lock, flags); | 879 | spin_unlock_irqrestore(&dsp_lock, flags); |
846 | return 0; | 880 | return 0; |
847 | } | 881 | } |
@@ -865,6 +899,9 @@ dsp_function(struct mISDNchannel *ch, struct sk_buff *skb) | |||
865 | if (dsp->dtmf.hardware || dsp->dtmf.software) | 899 | if (dsp->dtmf.hardware || dsp->dtmf.software) |
866 | dsp_dtmf_goertzel_init(dsp); | 900 | dsp_dtmf_goertzel_init(dsp); |
867 | get_features(ch); | 901 | get_features(ch); |
902 | /* enable fill_empty feature */ | ||
903 | if (dsp->features_fill_empty) | ||
904 | dsp_fill_empty(dsp); | ||
868 | /* send ph_activate */ | 905 | /* send ph_activate */ |
869 | hh->prim = PH_ACTIVATE_REQ; | 906 | hh->prim = PH_ACTIVATE_REQ; |
870 | if (ch->peer) | 907 | if (ch->peer) |
@@ -1105,7 +1142,7 @@ static int dsp_init(void) | |||
1105 | } else { | 1142 | } else { |
1106 | poll = 8; | 1143 | poll = 8; |
1107 | while (poll <= MAX_POLL) { | 1144 | while (poll <= MAX_POLL) { |
1108 | tics = poll * HZ / 8000; | 1145 | tics = (poll * HZ) / 8000; |
1109 | if (tics * 8000 == poll * HZ) { | 1146 | if (tics * 8000 == poll * HZ) { |
1110 | dsp_tics = tics; | 1147 | dsp_tics = tics; |
1111 | dsp_poll = poll; | 1148 | dsp_poll = poll; |
diff --git a/drivers/isdn/mISDN/dsp_pipeline.c b/drivers/isdn/mISDN/dsp_pipeline.c index 83639be7f7ad..bf999bdc41c3 100644 --- a/drivers/isdn/mISDN/dsp_pipeline.c +++ b/drivers/isdn/mISDN/dsp_pipeline.c | |||
@@ -75,6 +75,15 @@ static struct device_attribute element_attributes[] = { | |||
75 | __ATTR(args, 0444, attr_show_args, NULL), | 75 | __ATTR(args, 0444, attr_show_args, NULL), |
76 | }; | 76 | }; |
77 | 77 | ||
78 | static void | ||
79 | mISDN_dsp_dev_release(struct device *dev) | ||
80 | { | ||
81 | struct dsp_element_entry *entry = | ||
82 | container_of(dev, struct dsp_element_entry, dev); | ||
83 | list_del(&entry->list); | ||
84 | kfree(entry); | ||
85 | } | ||
86 | |||
78 | int mISDN_dsp_element_register(struct mISDN_dsp_element *elem) | 87 | int mISDN_dsp_element_register(struct mISDN_dsp_element *elem) |
79 | { | 88 | { |
80 | struct dsp_element_entry *entry; | 89 | struct dsp_element_entry *entry; |
@@ -83,13 +92,14 @@ int mISDN_dsp_element_register(struct mISDN_dsp_element *elem) | |||
83 | if (!elem) | 92 | if (!elem) |
84 | return -EINVAL; | 93 | return -EINVAL; |
85 | 94 | ||
86 | entry = kzalloc(sizeof(struct dsp_element_entry), GFP_KERNEL); | 95 | entry = kzalloc(sizeof(struct dsp_element_entry), GFP_ATOMIC); |
87 | if (!entry) | 96 | if (!entry) |
88 | return -ENOMEM; | 97 | return -ENOMEM; |
89 | 98 | ||
90 | entry->elem = elem; | 99 | entry->elem = elem; |
91 | 100 | ||
92 | entry->dev.class = elements_class; | 101 | entry->dev.class = elements_class; |
102 | entry->dev.release = mISDN_dsp_dev_release; | ||
93 | dev_set_drvdata(&entry->dev, elem); | 103 | dev_set_drvdata(&entry->dev, elem); |
94 | dev_set_name(&entry->dev, elem->name); | 104 | dev_set_name(&entry->dev, elem->name); |
95 | ret = device_register(&entry->dev); | 105 | ret = device_register(&entry->dev); |
@@ -98,6 +108,7 @@ int mISDN_dsp_element_register(struct mISDN_dsp_element *elem) | |||
98 | __func__, elem->name); | 108 | __func__, elem->name); |
99 | goto err1; | 109 | goto err1; |
100 | } | 110 | } |
111 | list_add_tail(&entry->list, &dsp_elements); | ||
101 | 112 | ||
102 | for (i = 0; i < (sizeof(element_attributes) | 113 | for (i = 0; i < (sizeof(element_attributes) |
103 | / sizeof(struct device_attribute)); ++i) | 114 | / sizeof(struct device_attribute)); ++i) |
@@ -109,14 +120,15 @@ int mISDN_dsp_element_register(struct mISDN_dsp_element *elem) | |||
109 | goto err2; | 120 | goto err2; |
110 | } | 121 | } |
111 | 122 | ||
112 | list_add_tail(&entry->list, &dsp_elements); | 123 | #ifdef PIPELINE_DEBUG |
113 | |||
114 | printk(KERN_DEBUG "%s: %s registered\n", __func__, elem->name); | 124 | printk(KERN_DEBUG "%s: %s registered\n", __func__, elem->name); |
125 | #endif | ||
115 | 126 | ||
116 | return 0; | 127 | return 0; |
117 | 128 | ||
118 | err2: | 129 | err2: |
119 | device_unregister(&entry->dev); | 130 | device_unregister(&entry->dev); |
131 | return ret; | ||
120 | err1: | 132 | err1: |
121 | kfree(entry); | 133 | kfree(entry); |
122 | return ret; | 134 | return ret; |
@@ -132,11 +144,11 @@ void mISDN_dsp_element_unregister(struct mISDN_dsp_element *elem) | |||
132 | 144 | ||
133 | list_for_each_entry_safe(entry, n, &dsp_elements, list) | 145 | list_for_each_entry_safe(entry, n, &dsp_elements, list) |
134 | if (entry->elem == elem) { | 146 | if (entry->elem == elem) { |
135 | list_del(&entry->list); | ||
136 | device_unregister(&entry->dev); | 147 | device_unregister(&entry->dev); |
137 | kfree(entry); | 148 | #ifdef PIPELINE_DEBUG |
138 | printk(KERN_DEBUG "%s: %s unregistered\n", | 149 | printk(KERN_DEBUG "%s: %s unregistered\n", |
139 | __func__, elem->name); | 150 | __func__, elem->name); |
151 | #endif | ||
140 | return; | 152 | return; |
141 | } | 153 | } |
142 | printk(KERN_ERR "%s: element %s not in list.\n", __func__, elem->name); | 154 | printk(KERN_ERR "%s: element %s not in list.\n", __func__, elem->name); |
@@ -173,7 +185,9 @@ void dsp_pipeline_module_exit(void) | |||
173 | kfree(entry); | 185 | kfree(entry); |
174 | } | 186 | } |
175 | 187 | ||
188 | #ifdef PIPELINE_DEBUG | ||
176 | printk(KERN_DEBUG "%s: dsp pipeline module exited\n", __func__); | 189 | printk(KERN_DEBUG "%s: dsp pipeline module exited\n", __func__); |
190 | #endif | ||
177 | } | 191 | } |
178 | 192 | ||
179 | int dsp_pipeline_init(struct dsp_pipeline *pipeline) | 193 | int dsp_pipeline_init(struct dsp_pipeline *pipeline) |
@@ -239,7 +253,7 @@ int dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg) | |||
239 | if (!len) | 253 | if (!len) |
240 | return 0; | 254 | return 0; |
241 | 255 | ||
242 | dup = kmalloc(len + 1, GFP_KERNEL); | 256 | dup = kmalloc(len + 1, GFP_ATOMIC); |
243 | if (!dup) | 257 | if (!dup) |
244 | return 0; | 258 | return 0; |
245 | strcpy(dup, cfg); | 259 | strcpy(dup, cfg); |
@@ -256,9 +270,9 @@ int dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg) | |||
256 | elem = entry->elem; | 270 | elem = entry->elem; |
257 | 271 | ||
258 | pipeline_entry = kmalloc(sizeof(struct | 272 | pipeline_entry = kmalloc(sizeof(struct |
259 | dsp_pipeline_entry), GFP_KERNEL); | 273 | dsp_pipeline_entry), GFP_ATOMIC); |
260 | if (!pipeline_entry) { | 274 | if (!pipeline_entry) { |
261 | printk(KERN_DEBUG "%s: failed to add " | 275 | printk(KERN_ERR "%s: failed to add " |
262 | "entry to pipeline: %s (out of " | 276 | "entry to pipeline: %s (out of " |
263 | "memory)\n", __func__, elem->name); | 277 | "memory)\n", __func__, elem->name); |
264 | incomplete = 1; | 278 | incomplete = 1; |
@@ -286,7 +300,7 @@ int dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg) | |||
286 | args : ""); | 300 | args : ""); |
287 | #endif | 301 | #endif |
288 | } else { | 302 | } else { |
289 | printk(KERN_DEBUG "%s: failed " | 303 | printk(KERN_ERR "%s: failed " |
290 | "to add entry to pipeline: " | 304 | "to add entry to pipeline: " |
291 | "%s (new() returned NULL)\n", | 305 | "%s (new() returned NULL)\n", |
292 | __func__, elem->name); | 306 | __func__, elem->name); |
@@ -301,7 +315,7 @@ int dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg) | |||
301 | if (found) | 315 | if (found) |
302 | found = 0; | 316 | found = 0; |
303 | else { | 317 | else { |
304 | printk(KERN_DEBUG "%s: element not found, skipping: " | 318 | printk(KERN_ERR "%s: element not found, skipping: " |
305 | "%s\n", __func__, name); | 319 | "%s\n", __func__, name); |
306 | incomplete = 1; | 320 | incomplete = 1; |
307 | } | 321 | } |
diff --git a/drivers/isdn/mISDN/hwchannel.c b/drivers/isdn/mISDN/hwchannel.c index 2596fba4e614..ab1168a110ae 100644 --- a/drivers/isdn/mISDN/hwchannel.c +++ b/drivers/isdn/mISDN/hwchannel.c | |||
@@ -50,9 +50,6 @@ bchannel_bh(struct work_struct *ws) | |||
50 | 50 | ||
51 | if (test_and_clear_bit(FLG_RECVQUEUE, &bch->Flags)) { | 51 | if (test_and_clear_bit(FLG_RECVQUEUE, &bch->Flags)) { |
52 | while ((skb = skb_dequeue(&bch->rqueue))) { | 52 | while ((skb = skb_dequeue(&bch->rqueue))) { |
53 | if (bch->rcount >= 64) | ||
54 | printk(KERN_WARNING "B-channel %p receive " | ||
55 | "queue if full, but empties...\n", bch); | ||
56 | bch->rcount--; | 53 | bch->rcount--; |
57 | if (likely(bch->ch.peer)) { | 54 | if (likely(bch->ch.peer)) { |
58 | err = bch->ch.recv(bch->ch.peer, skb); | 55 | err = bch->ch.recv(bch->ch.peer, skb); |
@@ -169,6 +166,25 @@ recv_Dchannel(struct dchannel *dch) | |||
169 | EXPORT_SYMBOL(recv_Dchannel); | 166 | EXPORT_SYMBOL(recv_Dchannel); |
170 | 167 | ||
171 | void | 168 | void |
169 | recv_Echannel(struct dchannel *ech, struct dchannel *dch) | ||
170 | { | ||
171 | struct mISDNhead *hh; | ||
172 | |||
173 | if (ech->rx_skb->len < 2) { /* at least 2 for sapi / tei */ | ||
174 | dev_kfree_skb(ech->rx_skb); | ||
175 | ech->rx_skb = NULL; | ||
176 | return; | ||
177 | } | ||
178 | hh = mISDN_HEAD_P(ech->rx_skb); | ||
179 | hh->prim = PH_DATA_E_IND; | ||
180 | hh->id = get_sapi_tei(ech->rx_skb->data); | ||
181 | skb_queue_tail(&dch->rqueue, ech->rx_skb); | ||
182 | ech->rx_skb = NULL; | ||
183 | schedule_event(dch, FLG_RECVQUEUE); | ||
184 | } | ||
185 | EXPORT_SYMBOL(recv_Echannel); | ||
186 | |||
187 | void | ||
172 | recv_Bchannel(struct bchannel *bch) | 188 | recv_Bchannel(struct bchannel *bch) |
173 | { | 189 | { |
174 | struct mISDNhead *hh; | 190 | struct mISDNhead *hh; |
@@ -177,8 +193,10 @@ recv_Bchannel(struct bchannel *bch) | |||
177 | hh->prim = PH_DATA_IND; | 193 | hh->prim = PH_DATA_IND; |
178 | hh->id = MISDN_ID_ANY; | 194 | hh->id = MISDN_ID_ANY; |
179 | if (bch->rcount >= 64) { | 195 | if (bch->rcount >= 64) { |
180 | dev_kfree_skb(bch->rx_skb); | 196 | printk(KERN_WARNING "B-channel %p receive queue overflow, " |
181 | bch->rx_skb = NULL; | 197 | "fushing!\n", bch); |
198 | skb_queue_purge(&bch->rqueue); | ||
199 | bch->rcount = 0; | ||
182 | return; | 200 | return; |
183 | } | 201 | } |
184 | bch->rcount++; | 202 | bch->rcount++; |
@@ -200,8 +218,10 @@ void | |||
200 | recv_Bchannel_skb(struct bchannel *bch, struct sk_buff *skb) | 218 | recv_Bchannel_skb(struct bchannel *bch, struct sk_buff *skb) |
201 | { | 219 | { |
202 | if (bch->rcount >= 64) { | 220 | if (bch->rcount >= 64) { |
203 | dev_kfree_skb(skb); | 221 | printk(KERN_WARNING "B-channel %p receive queue overflow, " |
204 | return; | 222 | "fushing!\n", bch); |
223 | skb_queue_purge(&bch->rqueue); | ||
224 | bch->rcount = 0; | ||
205 | } | 225 | } |
206 | bch->rcount++; | 226 | bch->rcount++; |
207 | skb_queue_tail(&bch->rqueue, skb); | 227 | skb_queue_tail(&bch->rqueue, skb); |
@@ -245,8 +265,12 @@ confirm_Bsend(struct bchannel *bch) | |||
245 | { | 265 | { |
246 | struct sk_buff *skb; | 266 | struct sk_buff *skb; |
247 | 267 | ||
248 | if (bch->rcount >= 64) | 268 | if (bch->rcount >= 64) { |
249 | return; | 269 | printk(KERN_WARNING "B-channel %p receive queue overflow, " |
270 | "fushing!\n", bch); | ||
271 | skb_queue_purge(&bch->rqueue); | ||
272 | bch->rcount = 0; | ||
273 | } | ||
250 | skb = _alloc_mISDN_skb(PH_DATA_CNF, mISDN_HEAD_ID(bch->tx_skb), | 274 | skb = _alloc_mISDN_skb(PH_DATA_CNF, mISDN_HEAD_ID(bch->tx_skb), |
251 | 0, NULL, GFP_ATOMIC); | 275 | 0, NULL, GFP_ATOMIC); |
252 | if (!skb) { | 276 | if (!skb) { |
diff --git a/drivers/isdn/mISDN/l1oip_core.c b/drivers/isdn/mISDN/l1oip_core.c index 0884dd6892f8..abe574989572 100644 --- a/drivers/isdn/mISDN/l1oip_core.c +++ b/drivers/isdn/mISDN/l1oip_core.c | |||
@@ -777,6 +777,8 @@ fail: | |||
777 | static void | 777 | static void |
778 | l1oip_socket_close(struct l1oip *hc) | 778 | l1oip_socket_close(struct l1oip *hc) |
779 | { | 779 | { |
780 | struct dchannel *dch = hc->chan[hc->d_idx].dch; | ||
781 | |||
780 | /* kill thread */ | 782 | /* kill thread */ |
781 | if (hc->socket_thread) { | 783 | if (hc->socket_thread) { |
782 | if (debug & DEBUG_L1OIP_SOCKET) | 784 | if (debug & DEBUG_L1OIP_SOCKET) |
@@ -785,6 +787,16 @@ l1oip_socket_close(struct l1oip *hc) | |||
785 | send_sig(SIGTERM, hc->socket_thread, 0); | 787 | send_sig(SIGTERM, hc->socket_thread, 0); |
786 | wait_for_completion(&hc->socket_complete); | 788 | wait_for_completion(&hc->socket_complete); |
787 | } | 789 | } |
790 | |||
791 | /* if active, we send up a PH_DEACTIVATE and deactivate */ | ||
792 | if (test_bit(FLG_ACTIVE, &dch->Flags)) { | ||
793 | if (debug & (DEBUG_L1OIP_MSG|DEBUG_L1OIP_SOCKET)) | ||
794 | printk(KERN_DEBUG "%s: interface become deactivated " | ||
795 | "due to timeout\n", __func__); | ||
796 | test_and_clear_bit(FLG_ACTIVE, &dch->Flags); | ||
797 | _queue_data(&dch->dev.D, PH_DEACTIVATE_IND, MISDN_ID_ANY, 0, | ||
798 | NULL, GFP_ATOMIC); | ||
799 | } | ||
788 | } | 800 | } |
789 | 801 | ||
790 | static int | 802 | static int |
@@ -944,7 +956,8 @@ channel_dctrl(struct dchannel *dch, struct mISDN_ctrl_req *cq) | |||
944 | 956 | ||
945 | switch (cq->op) { | 957 | switch (cq->op) { |
946 | case MISDN_CTRL_GETOP: | 958 | case MISDN_CTRL_GETOP: |
947 | cq->op = MISDN_CTRL_SETPEER | MISDN_CTRL_UNSETPEER; | 959 | cq->op = MISDN_CTRL_SETPEER | MISDN_CTRL_UNSETPEER |
960 | | MISDN_CTRL_GETPEER; | ||
948 | break; | 961 | break; |
949 | case MISDN_CTRL_SETPEER: | 962 | case MISDN_CTRL_SETPEER: |
950 | hc->remoteip = (u32)cq->p1; | 963 | hc->remoteip = (u32)cq->p1; |
@@ -964,6 +977,13 @@ channel_dctrl(struct dchannel *dch, struct mISDN_ctrl_req *cq) | |||
964 | hc->remoteip = 0; | 977 | hc->remoteip = 0; |
965 | l1oip_socket_open(hc); | 978 | l1oip_socket_open(hc); |
966 | break; | 979 | break; |
980 | case MISDN_CTRL_GETPEER: | ||
981 | if (debug & DEBUG_L1OIP_SOCKET) | ||
982 | printk(KERN_DEBUG "%s: getting ip address.\n", | ||
983 | __func__); | ||
984 | cq->p1 = hc->remoteip; | ||
985 | cq->p2 = hc->remoteport | (hc->localport << 16); | ||
986 | break; | ||
967 | default: | 987 | default: |
968 | printk(KERN_WARNING "%s: unknown Op %x\n", | 988 | printk(KERN_WARNING "%s: unknown Op %x\n", |
969 | __func__, cq->op); | 989 | __func__, cq->op); |
@@ -1413,7 +1433,8 @@ init_card(struct l1oip *hc, int pri, int bundle) | |||
1413 | hc->chan[i + ch].bch = bch; | 1433 | hc->chan[i + ch].bch = bch; |
1414 | set_channelmap(bch->nr, dch->dev.channelmap); | 1434 | set_channelmap(bch->nr, dch->dev.channelmap); |
1415 | } | 1435 | } |
1416 | ret = mISDN_register_device(&dch->dev, hc->name); | 1436 | /* TODO: create a parent device for this driver */ |
1437 | ret = mISDN_register_device(&dch->dev, NULL, hc->name); | ||
1417 | if (ret) | 1438 | if (ret) |
1418 | return ret; | 1439 | return ret; |
1419 | hc->registered = 1; | 1440 | hc->registered = 1; |
diff --git a/drivers/isdn/mISDN/layer1.c b/drivers/isdn/mISDN/layer1.c index b73e952d12cf..e826eeb1ecec 100644 --- a/drivers/isdn/mISDN/layer1.c +++ b/drivers/isdn/mISDN/layer1.c | |||
@@ -101,7 +101,7 @@ l1m_debug(struct FsmInst *fi, char *fmt, ...) | |||
101 | va_list va; | 101 | va_list va; |
102 | 102 | ||
103 | va_start(va, fmt); | 103 | va_start(va, fmt); |
104 | printk(KERN_DEBUG "%s: ", l1->dch->dev.name); | 104 | printk(KERN_DEBUG "%s: ", dev_name(&l1->dch->dev.dev)); |
105 | vprintk(fmt, va); | 105 | vprintk(fmt, va); |
106 | printk("\n"); | 106 | printk("\n"); |
107 | va_end(va); | 107 | va_end(va); |
diff --git a/drivers/isdn/mISDN/socket.c b/drivers/isdn/mISDN/socket.c index 37a2de18cfd0..508945d1b9c1 100644 --- a/drivers/isdn/mISDN/socket.c +++ b/drivers/isdn/mISDN/socket.c | |||
@@ -381,7 +381,7 @@ data_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) | |||
381 | memcpy(di.channelmap, dev->channelmap, | 381 | memcpy(di.channelmap, dev->channelmap, |
382 | sizeof(di.channelmap)); | 382 | sizeof(di.channelmap)); |
383 | di.nrbchan = dev->nrbchan; | 383 | di.nrbchan = dev->nrbchan; |
384 | strcpy(di.name, dev->name); | 384 | strcpy(di.name, dev_name(&dev->dev)); |
385 | if (copy_to_user((void __user *)arg, &di, sizeof(di))) | 385 | if (copy_to_user((void __user *)arg, &di, sizeof(di))) |
386 | err = -EFAULT; | 386 | err = -EFAULT; |
387 | } else | 387 | } else |
@@ -460,6 +460,8 @@ data_sock_bind(struct socket *sock, struct sockaddr *addr, int addr_len) | |||
460 | { | 460 | { |
461 | struct sockaddr_mISDN *maddr = (struct sockaddr_mISDN *) addr; | 461 | struct sockaddr_mISDN *maddr = (struct sockaddr_mISDN *) addr; |
462 | struct sock *sk = sock->sk; | 462 | struct sock *sk = sock->sk; |
463 | struct hlist_node *node; | ||
464 | struct sock *csk; | ||
463 | int err = 0; | 465 | int err = 0; |
464 | 466 | ||
465 | if (*debug & DEBUG_SOCKET) | 467 | if (*debug & DEBUG_SOCKET) |
@@ -480,6 +482,26 @@ data_sock_bind(struct socket *sock, struct sockaddr *addr, int addr_len) | |||
480 | err = -ENODEV; | 482 | err = -ENODEV; |
481 | goto done; | 483 | goto done; |
482 | } | 484 | } |
485 | |||
486 | if (sk->sk_protocol < ISDN_P_B_START) { | ||
487 | read_lock_bh(&data_sockets.lock); | ||
488 | sk_for_each(csk, node, &data_sockets.head) { | ||
489 | if (sk == csk) | ||
490 | continue; | ||
491 | if (_pms(csk)->dev != _pms(sk)->dev) | ||
492 | continue; | ||
493 | if (csk->sk_protocol >= ISDN_P_B_START) | ||
494 | continue; | ||
495 | if (IS_ISDN_P_TE(csk->sk_protocol) | ||
496 | == IS_ISDN_P_TE(sk->sk_protocol)) | ||
497 | continue; | ||
498 | read_unlock_bh(&data_sockets.lock); | ||
499 | err = -EBUSY; | ||
500 | goto done; | ||
501 | } | ||
502 | read_unlock_bh(&data_sockets.lock); | ||
503 | } | ||
504 | |||
483 | _pms(sk)->ch.send = mISDN_send; | 505 | _pms(sk)->ch.send = mISDN_send; |
484 | _pms(sk)->ch.ctrl = mISDN_ctrl; | 506 | _pms(sk)->ch.ctrl = mISDN_ctrl; |
485 | 507 | ||
@@ -639,12 +661,27 @@ base_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) | |||
639 | memcpy(di.channelmap, dev->channelmap, | 661 | memcpy(di.channelmap, dev->channelmap, |
640 | sizeof(di.channelmap)); | 662 | sizeof(di.channelmap)); |
641 | di.nrbchan = dev->nrbchan; | 663 | di.nrbchan = dev->nrbchan; |
642 | strcpy(di.name, dev->name); | 664 | strcpy(di.name, dev_name(&dev->dev)); |
643 | if (copy_to_user((void __user *)arg, &di, sizeof(di))) | 665 | if (copy_to_user((void __user *)arg, &di, sizeof(di))) |
644 | err = -EFAULT; | 666 | err = -EFAULT; |
645 | } else | 667 | } else |
646 | err = -ENODEV; | 668 | err = -ENODEV; |
647 | break; | 669 | break; |
670 | case IMSETDEVNAME: | ||
671 | { | ||
672 | struct mISDN_devrename dn; | ||
673 | if (copy_from_user(&dn, (void __user *)arg, | ||
674 | sizeof(dn))) { | ||
675 | err = -EFAULT; | ||
676 | break; | ||
677 | } | ||
678 | dev = get_mdevice(dn.id); | ||
679 | if (dev) | ||
680 | err = device_rename(&dev->dev, dn.name); | ||
681 | else | ||
682 | err = -ENODEV; | ||
683 | } | ||
684 | break; | ||
648 | default: | 685 | default: |
649 | err = -EINVAL; | 686 | err = -EINVAL; |
650 | } | 687 | } |
diff --git a/drivers/isdn/mISDN/stack.c b/drivers/isdn/mISDN/stack.c index d55b14ae4e99..e2f45019ebf0 100644 --- a/drivers/isdn/mISDN/stack.c +++ b/drivers/isdn/mISDN/stack.c | |||
@@ -172,7 +172,8 @@ send_msg_to_layer(struct mISDNstack *st, struct sk_buff *skb) | |||
172 | else | 172 | else |
173 | printk(KERN_WARNING | 173 | printk(KERN_WARNING |
174 | "%s: dev(%s) prim(%x) id(%x) no channel\n", | 174 | "%s: dev(%s) prim(%x) id(%x) no channel\n", |
175 | __func__, st->dev->name, hh->prim, hh->id); | 175 | __func__, dev_name(&st->dev->dev), hh->prim, |
176 | hh->id); | ||
176 | } else if (lm == 0x8) { | 177 | } else if (lm == 0x8) { |
177 | WARN_ON(lm == 0x8); | 178 | WARN_ON(lm == 0x8); |
178 | ch = get_channel4id(st, hh->id); | 179 | ch = get_channel4id(st, hh->id); |
@@ -181,11 +182,12 @@ send_msg_to_layer(struct mISDNstack *st, struct sk_buff *skb) | |||
181 | else | 182 | else |
182 | printk(KERN_WARNING | 183 | printk(KERN_WARNING |
183 | "%s: dev(%s) prim(%x) id(%x) no channel\n", | 184 | "%s: dev(%s) prim(%x) id(%x) no channel\n", |
184 | __func__, st->dev->name, hh->prim, hh->id); | 185 | __func__, dev_name(&st->dev->dev), hh->prim, |
186 | hh->id); | ||
185 | } else { | 187 | } else { |
186 | /* broadcast not handled yet */ | 188 | /* broadcast not handled yet */ |
187 | printk(KERN_WARNING "%s: dev(%s) prim %x not delivered\n", | 189 | printk(KERN_WARNING "%s: dev(%s) prim %x not delivered\n", |
188 | __func__, st->dev->name, hh->prim); | 190 | __func__, dev_name(&st->dev->dev), hh->prim); |
189 | } | 191 | } |
190 | return -ESRCH; | 192 | return -ESRCH; |
191 | } | 193 | } |
@@ -209,7 +211,8 @@ mISDNStackd(void *data) | |||
209 | unlock_kernel(); | 211 | unlock_kernel(); |
210 | #endif | 212 | #endif |
211 | if (*debug & DEBUG_MSG_THREAD) | 213 | if (*debug & DEBUG_MSG_THREAD) |
212 | printk(KERN_DEBUG "mISDNStackd %s started\n", st->dev->name); | 214 | printk(KERN_DEBUG "mISDNStackd %s started\n", |
215 | dev_name(&st->dev->dev)); | ||
213 | 216 | ||
214 | if (st->notify != NULL) { | 217 | if (st->notify != NULL) { |
215 | complete(st->notify); | 218 | complete(st->notify); |
@@ -245,7 +248,7 @@ mISDNStackd(void *data) | |||
245 | printk(KERN_DEBUG | 248 | printk(KERN_DEBUG |
246 | "%s: %s prim(%x) id(%x) " | 249 | "%s: %s prim(%x) id(%x) " |
247 | "send call(%d)\n", | 250 | "send call(%d)\n", |
248 | __func__, st->dev->name, | 251 | __func__, dev_name(&st->dev->dev), |
249 | mISDN_HEAD_PRIM(skb), | 252 | mISDN_HEAD_PRIM(skb), |
250 | mISDN_HEAD_ID(skb), err); | 253 | mISDN_HEAD_ID(skb), err); |
251 | dev_kfree_skb(skb); | 254 | dev_kfree_skb(skb); |
@@ -288,7 +291,7 @@ mISDNStackd(void *data) | |||
288 | mISDN_STACK_ACTION_MASK)); | 291 | mISDN_STACK_ACTION_MASK)); |
289 | if (*debug & DEBUG_MSG_THREAD) | 292 | if (*debug & DEBUG_MSG_THREAD) |
290 | printk(KERN_DEBUG "%s: %s wake status %08lx\n", | 293 | printk(KERN_DEBUG "%s: %s wake status %08lx\n", |
291 | __func__, st->dev->name, st->status); | 294 | __func__, dev_name(&st->dev->dev), st->status); |
292 | test_and_set_bit(mISDN_STACK_ACTIVE, &st->status); | 295 | test_and_set_bit(mISDN_STACK_ACTIVE, &st->status); |
293 | 296 | ||
294 | test_and_clear_bit(mISDN_STACK_WAKEUP, &st->status); | 297 | test_and_clear_bit(mISDN_STACK_WAKEUP, &st->status); |
@@ -303,15 +306,16 @@ mISDNStackd(void *data) | |||
303 | #ifdef MISDN_MSG_STATS | 306 | #ifdef MISDN_MSG_STATS |
304 | printk(KERN_DEBUG "mISDNStackd daemon for %s proceed %d " | 307 | printk(KERN_DEBUG "mISDNStackd daemon for %s proceed %d " |
305 | "msg %d sleep %d stopped\n", | 308 | "msg %d sleep %d stopped\n", |
306 | st->dev->name, st->msg_cnt, st->sleep_cnt, st->stopped_cnt); | 309 | dev_name(&st->dev->dev), st->msg_cnt, st->sleep_cnt, |
310 | st->stopped_cnt); | ||
307 | printk(KERN_DEBUG | 311 | printk(KERN_DEBUG |
308 | "mISDNStackd daemon for %s utime(%ld) stime(%ld)\n", | 312 | "mISDNStackd daemon for %s utime(%ld) stime(%ld)\n", |
309 | st->dev->name, st->thread->utime, st->thread->stime); | 313 | dev_name(&st->dev->dev), st->thread->utime, st->thread->stime); |
310 | printk(KERN_DEBUG | 314 | printk(KERN_DEBUG |
311 | "mISDNStackd daemon for %s nvcsw(%ld) nivcsw(%ld)\n", | 315 | "mISDNStackd daemon for %s nvcsw(%ld) nivcsw(%ld)\n", |
312 | st->dev->name, st->thread->nvcsw, st->thread->nivcsw); | 316 | dev_name(&st->dev->dev), st->thread->nvcsw, st->thread->nivcsw); |
313 | printk(KERN_DEBUG "mISDNStackd daemon for %s killed now\n", | 317 | printk(KERN_DEBUG "mISDNStackd daemon for %s killed now\n", |
314 | st->dev->name); | 318 | dev_name(&st->dev->dev)); |
315 | #endif | 319 | #endif |
316 | test_and_set_bit(mISDN_STACK_KILLED, &st->status); | 320 | test_and_set_bit(mISDN_STACK_KILLED, &st->status); |
317 | test_and_clear_bit(mISDN_STACK_RUNNING, &st->status); | 321 | test_and_clear_bit(mISDN_STACK_RUNNING, &st->status); |
@@ -401,15 +405,16 @@ create_stack(struct mISDNdevice *dev) | |||
401 | newst->own.send = mISDN_queue_message; | 405 | newst->own.send = mISDN_queue_message; |
402 | newst->own.recv = mISDN_queue_message; | 406 | newst->own.recv = mISDN_queue_message; |
403 | if (*debug & DEBUG_CORE_FUNC) | 407 | if (*debug & DEBUG_CORE_FUNC) |
404 | printk(KERN_DEBUG "%s: st(%s)\n", __func__, newst->dev->name); | 408 | printk(KERN_DEBUG "%s: st(%s)\n", __func__, |
409 | dev_name(&newst->dev->dev)); | ||
405 | newst->notify = &done; | 410 | newst->notify = &done; |
406 | newst->thread = kthread_run(mISDNStackd, (void *)newst, "mISDN_%s", | 411 | newst->thread = kthread_run(mISDNStackd, (void *)newst, "mISDN_%s", |
407 | newst->dev->name); | 412 | dev_name(&newst->dev->dev)); |
408 | if (IS_ERR(newst->thread)) { | 413 | if (IS_ERR(newst->thread)) { |
409 | err = PTR_ERR(newst->thread); | 414 | err = PTR_ERR(newst->thread); |
410 | printk(KERN_ERR | 415 | printk(KERN_ERR |
411 | "mISDN:cannot create kernel thread for %s (%d)\n", | 416 | "mISDN:cannot create kernel thread for %s (%d)\n", |
412 | newst->dev->name, err); | 417 | dev_name(&newst->dev->dev), err); |
413 | delete_teimanager(dev->teimgr); | 418 | delete_teimanager(dev->teimgr); |
414 | kfree(newst); | 419 | kfree(newst); |
415 | } else | 420 | } else |
@@ -428,29 +433,21 @@ connect_layer1(struct mISDNdevice *dev, struct mISDNchannel *ch, | |||
428 | 433 | ||
429 | if (*debug & DEBUG_CORE_FUNC) | 434 | if (*debug & DEBUG_CORE_FUNC) |
430 | printk(KERN_DEBUG "%s: %s proto(%x) adr(%d %d %d %d)\n", | 435 | printk(KERN_DEBUG "%s: %s proto(%x) adr(%d %d %d %d)\n", |
431 | __func__, dev->name, protocol, adr->dev, adr->channel, | 436 | __func__, dev_name(&dev->dev), protocol, adr->dev, |
432 | adr->sapi, adr->tei); | 437 | adr->channel, adr->sapi, adr->tei); |
433 | switch (protocol) { | 438 | switch (protocol) { |
434 | case ISDN_P_NT_S0: | 439 | case ISDN_P_NT_S0: |
435 | case ISDN_P_NT_E1: | 440 | case ISDN_P_NT_E1: |
436 | case ISDN_P_TE_S0: | 441 | case ISDN_P_TE_S0: |
437 | case ISDN_P_TE_E1: | 442 | case ISDN_P_TE_E1: |
438 | #ifdef PROTOCOL_CHECK | ||
439 | /* this should be enhanced */ | ||
440 | if (!list_empty(&dev->D.st->layer2) | ||
441 | && dev->D.protocol != protocol) | ||
442 | return -EBUSY; | ||
443 | if (!hlist_empty(&dev->D.st->l1sock.head) | ||
444 | && dev->D.protocol != protocol) | ||
445 | return -EBUSY; | ||
446 | #endif | ||
447 | ch->recv = mISDN_queue_message; | 443 | ch->recv = mISDN_queue_message; |
448 | ch->peer = &dev->D.st->own; | 444 | ch->peer = &dev->D.st->own; |
449 | ch->st = dev->D.st; | 445 | ch->st = dev->D.st; |
450 | rq.protocol = protocol; | 446 | rq.protocol = protocol; |
451 | rq.adr.channel = 0; | 447 | rq.adr.channel = adr->channel; |
452 | err = dev->D.ctrl(&dev->D, OPEN_CHANNEL, &rq); | 448 | err = dev->D.ctrl(&dev->D, OPEN_CHANNEL, &rq); |
453 | printk(KERN_DEBUG "%s: ret 1 %d\n", __func__, err); | 449 | printk(KERN_DEBUG "%s: ret %d (dev %d)\n", __func__, err, |
450 | dev->id); | ||
454 | if (err) | 451 | if (err) |
455 | return err; | 452 | return err; |
456 | write_lock_bh(&dev->D.st->l1sock.lock); | 453 | write_lock_bh(&dev->D.st->l1sock.lock); |
@@ -473,7 +470,7 @@ connect_Bstack(struct mISDNdevice *dev, struct mISDNchannel *ch, | |||
473 | 470 | ||
474 | if (*debug & DEBUG_CORE_FUNC) | 471 | if (*debug & DEBUG_CORE_FUNC) |
475 | printk(KERN_DEBUG "%s: %s proto(%x) adr(%d %d %d %d)\n", | 472 | printk(KERN_DEBUG "%s: %s proto(%x) adr(%d %d %d %d)\n", |
476 | __func__, dev->name, protocol, | 473 | __func__, dev_name(&dev->dev), protocol, |
477 | adr->dev, adr->channel, adr->sapi, | 474 | adr->dev, adr->channel, adr->sapi, |
478 | adr->tei); | 475 | adr->tei); |
479 | ch->st = dev->D.st; | 476 | ch->st = dev->D.st; |
@@ -529,7 +526,7 @@ create_l2entity(struct mISDNdevice *dev, struct mISDNchannel *ch, | |||
529 | 526 | ||
530 | if (*debug & DEBUG_CORE_FUNC) | 527 | if (*debug & DEBUG_CORE_FUNC) |
531 | printk(KERN_DEBUG "%s: %s proto(%x) adr(%d %d %d %d)\n", | 528 | printk(KERN_DEBUG "%s: %s proto(%x) adr(%d %d %d %d)\n", |
532 | __func__, dev->name, protocol, | 529 | __func__, dev_name(&dev->dev), protocol, |
533 | adr->dev, adr->channel, adr->sapi, | 530 | adr->dev, adr->channel, adr->sapi, |
534 | adr->tei); | 531 | adr->tei); |
535 | rq.protocol = ISDN_P_TE_S0; | 532 | rq.protocol = ISDN_P_TE_S0; |
@@ -541,15 +538,6 @@ create_l2entity(struct mISDNdevice *dev, struct mISDNchannel *ch, | |||
541 | if (dev->Dprotocols & (1 << ISDN_P_NT_E1)) | 538 | if (dev->Dprotocols & (1 << ISDN_P_NT_E1)) |
542 | rq.protocol = ISDN_P_NT_E1; | 539 | rq.protocol = ISDN_P_NT_E1; |
543 | case ISDN_P_LAPD_TE: | 540 | case ISDN_P_LAPD_TE: |
544 | #ifdef PROTOCOL_CHECK | ||
545 | /* this should be enhanced */ | ||
546 | if (!list_empty(&dev->D.st->layer2) | ||
547 | && dev->D.protocol != protocol) | ||
548 | return -EBUSY; | ||
549 | if (!hlist_empty(&dev->D.st->l1sock.head) | ||
550 | && dev->D.protocol != protocol) | ||
551 | return -EBUSY; | ||
552 | #endif | ||
553 | ch->recv = mISDN_queue_message; | 541 | ch->recv = mISDN_queue_message; |
554 | ch->peer = &dev->D.st->own; | 542 | ch->peer = &dev->D.st->own; |
555 | ch->st = dev->D.st; | 543 | ch->st = dev->D.st; |
@@ -590,7 +578,7 @@ delete_channel(struct mISDNchannel *ch) | |||
590 | } | 578 | } |
591 | if (*debug & DEBUG_CORE_FUNC) | 579 | if (*debug & DEBUG_CORE_FUNC) |
592 | printk(KERN_DEBUG "%s: st(%s) protocol(%x)\n", __func__, | 580 | printk(KERN_DEBUG "%s: st(%s) protocol(%x)\n", __func__, |
593 | ch->st->dev->name, ch->protocol); | 581 | dev_name(&ch->st->dev->dev), ch->protocol); |
594 | if (ch->protocol >= ISDN_P_B_START) { | 582 | if (ch->protocol >= ISDN_P_B_START) { |
595 | if (ch->peer) { | 583 | if (ch->peer) { |
596 | ch->peer->ctrl(ch->peer, CLOSE_CHANNEL, NULL); | 584 | ch->peer->ctrl(ch->peer, CLOSE_CHANNEL, NULL); |
@@ -643,7 +631,7 @@ delete_stack(struct mISDNdevice *dev) | |||
643 | 631 | ||
644 | if (*debug & DEBUG_CORE_FUNC) | 632 | if (*debug & DEBUG_CORE_FUNC) |
645 | printk(KERN_DEBUG "%s: st(%s)\n", __func__, | 633 | printk(KERN_DEBUG "%s: st(%s)\n", __func__, |
646 | st->dev->name); | 634 | dev_name(&st->dev->dev)); |
647 | if (dev->teimgr) | 635 | if (dev->teimgr) |
648 | delete_teimanager(dev->teimgr); | 636 | delete_teimanager(dev->teimgr); |
649 | if (st->thread) { | 637 | if (st->thread) { |
diff --git a/drivers/isdn/mISDN/tei.c b/drivers/isdn/mISDN/tei.c index 5c43d19e7c11..b452dead8fd0 100644 --- a/drivers/isdn/mISDN/tei.c +++ b/drivers/isdn/mISDN/tei.c | |||
@@ -968,9 +968,9 @@ create_teimgr(struct manager *mgr, struct channel_req *crq) | |||
968 | 968 | ||
969 | if (*debug & DEBUG_L2_TEI) | 969 | if (*debug & DEBUG_L2_TEI) |
970 | printk(KERN_DEBUG "%s: %s proto(%x) adr(%d %d %d %d)\n", | 970 | printk(KERN_DEBUG "%s: %s proto(%x) adr(%d %d %d %d)\n", |
971 | __func__, mgr->ch.st->dev->name, crq->protocol, | 971 | __func__, dev_name(&mgr->ch.st->dev->dev), |
972 | crq->adr.dev, crq->adr.channel, crq->adr.sapi, | 972 | crq->protocol, crq->adr.dev, crq->adr.channel, |
973 | crq->adr.tei); | 973 | crq->adr.sapi, crq->adr.tei); |
974 | if (crq->adr.sapi != 0) /* not supported yet */ | 974 | if (crq->adr.sapi != 0) /* not supported yet */ |
975 | return -EINVAL; | 975 | return -EINVAL; |
976 | if (crq->adr.tei > GROUP_TEI) | 976 | if (crq->adr.tei > GROUP_TEI) |
diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig index e7fb7d2fcbfc..a4a1ae214630 100644 --- a/drivers/leds/Kconfig +++ b/drivers/leds/Kconfig | |||
@@ -63,6 +63,12 @@ config LEDS_WRAP | |||
63 | help | 63 | help |
64 | This option enables support for the PCEngines WRAP programmable LEDs. | 64 | This option enables support for the PCEngines WRAP programmable LEDs. |
65 | 65 | ||
66 | config LEDS_ALIX2 | ||
67 | tristate "LED Support for ALIX.2 and ALIX.3 series" | ||
68 | depends on LEDS_CLASS && X86 && EXPERIMENTAL | ||
69 | help | ||
70 | This option enables support for the PCEngines ALIX.2 and ALIX.3 LEDs. | ||
71 | |||
66 | config LEDS_H1940 | 72 | config LEDS_H1940 |
67 | tristate "LED Support for iPAQ H1940 device" | 73 | tristate "LED Support for iPAQ H1940 device" |
68 | depends on LEDS_CLASS && ARCH_H1940 | 74 | depends on LEDS_CLASS && ARCH_H1940 |
@@ -77,7 +83,7 @@ config LEDS_COBALT_QUBE | |||
77 | 83 | ||
78 | config LEDS_COBALT_RAQ | 84 | config LEDS_COBALT_RAQ |
79 | bool "LED Support for the Cobalt Raq series" | 85 | bool "LED Support for the Cobalt Raq series" |
80 | depends on LEDS_CLASS && MIPS_COBALT | 86 | depends on LEDS_CLASS=y && MIPS_COBALT |
81 | select LEDS_TRIGGERS | 87 | select LEDS_TRIGGERS |
82 | help | 88 | help |
83 | This option enables support for the Cobalt Raq series LEDs. | 89 | This option enables support for the Cobalt Raq series LEDs. |
@@ -158,6 +164,13 @@ config LEDS_PCA955X | |||
158 | LED driver chips accessed via the I2C bus. Supported | 164 | LED driver chips accessed via the I2C bus. Supported |
159 | devices include PCA9550, PCA9551, PCA9552, and PCA9553. | 165 | devices include PCA9550, PCA9551, PCA9552, and PCA9553. |
160 | 166 | ||
167 | config LEDS_WM8350 | ||
168 | tristate "LED Support for WM8350 AudioPlus PMIC" | ||
169 | depends on LEDS_CLASS && MFD_WM8350 | ||
170 | help | ||
171 | This option enables support for LEDs driven by the Wolfson | ||
172 | Microelectronics WM8350 AudioPlus PMIC. | ||
173 | |||
161 | config LEDS_DA903X | 174 | config LEDS_DA903X |
162 | tristate "LED Support for DA9030/DA9034 PMIC" | 175 | tristate "LED Support for DA9030/DA9034 PMIC" |
163 | depends on LEDS_CLASS && PMIC_DA903X | 176 | depends on LEDS_CLASS && PMIC_DA903X |
diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile index e1967a29850e..bc247cb02e82 100644 --- a/drivers/leds/Makefile +++ b/drivers/leds/Makefile | |||
@@ -11,6 +11,7 @@ obj-$(CONFIG_LEDS_S3C24XX) += leds-s3c24xx.o | |||
11 | obj-$(CONFIG_LEDS_AMS_DELTA) += leds-ams-delta.o | 11 | obj-$(CONFIG_LEDS_AMS_DELTA) += leds-ams-delta.o |
12 | obj-$(CONFIG_LEDS_NET48XX) += leds-net48xx.o | 12 | obj-$(CONFIG_LEDS_NET48XX) += leds-net48xx.o |
13 | obj-$(CONFIG_LEDS_WRAP) += leds-wrap.o | 13 | obj-$(CONFIG_LEDS_WRAP) += leds-wrap.o |
14 | obj-$(CONFIG_LEDS_ALIX2) += leds-alix2.o | ||
14 | obj-$(CONFIG_LEDS_H1940) += leds-h1940.o | 15 | obj-$(CONFIG_LEDS_H1940) += leds-h1940.o |
15 | obj-$(CONFIG_LEDS_COBALT_QUBE) += leds-cobalt-qube.o | 16 | obj-$(CONFIG_LEDS_COBALT_QUBE) += leds-cobalt-qube.o |
16 | obj-$(CONFIG_LEDS_COBALT_RAQ) += leds-cobalt-raq.o | 17 | obj-$(CONFIG_LEDS_COBALT_RAQ) += leds-cobalt-raq.o |
@@ -23,6 +24,7 @@ obj-$(CONFIG_LEDS_FSG) += leds-fsg.o | |||
23 | obj-$(CONFIG_LEDS_PCA955X) += leds-pca955x.o | 24 | obj-$(CONFIG_LEDS_PCA955X) += leds-pca955x.o |
24 | obj-$(CONFIG_LEDS_DA903X) += leds-da903x.o | 25 | obj-$(CONFIG_LEDS_DA903X) += leds-da903x.o |
25 | obj-$(CONFIG_LEDS_HP_DISK) += leds-hp-disk.o | 26 | obj-$(CONFIG_LEDS_HP_DISK) += leds-hp-disk.o |
27 | obj-$(CONFIG_LEDS_WM8350) += leds-wm8350.o | ||
26 | 28 | ||
27 | # LED Triggers | 29 | # LED Triggers |
28 | obj-$(CONFIG_LEDS_TRIGGER_TIMER) += ledtrig-timer.o | 30 | obj-$(CONFIG_LEDS_TRIGGER_TIMER) += ledtrig-timer.o |
diff --git a/drivers/leds/led-class.c b/drivers/leds/led-class.c index 6c4a326176d7..52f82e3ea13a 100644 --- a/drivers/leds/led-class.c +++ b/drivers/leds/led-class.c | |||
@@ -91,9 +91,29 @@ void led_classdev_resume(struct led_classdev *led_cdev) | |||
91 | } | 91 | } |
92 | EXPORT_SYMBOL_GPL(led_classdev_resume); | 92 | EXPORT_SYMBOL_GPL(led_classdev_resume); |
93 | 93 | ||
94 | static int led_suspend(struct device *dev, pm_message_t state) | ||
95 | { | ||
96 | struct led_classdev *led_cdev = dev_get_drvdata(dev); | ||
97 | |||
98 | if (led_cdev->flags & LED_CORE_SUSPENDRESUME) | ||
99 | led_classdev_suspend(led_cdev); | ||
100 | |||
101 | return 0; | ||
102 | } | ||
103 | |||
104 | static int led_resume(struct device *dev) | ||
105 | { | ||
106 | struct led_classdev *led_cdev = dev_get_drvdata(dev); | ||
107 | |||
108 | if (led_cdev->flags & LED_CORE_SUSPENDRESUME) | ||
109 | led_classdev_resume(led_cdev); | ||
110 | |||
111 | return 0; | ||
112 | } | ||
113 | |||
94 | /** | 114 | /** |
95 | * led_classdev_register - register a new object of led_classdev class. | 115 | * led_classdev_register - register a new object of led_classdev class. |
96 | * @dev: The device to register. | 116 | * @parent: The device to register. |
97 | * @led_cdev: the led_classdev structure for this device. | 117 | * @led_cdev: the led_classdev structure for this device. |
98 | */ | 118 | */ |
99 | int led_classdev_register(struct device *parent, struct led_classdev *led_cdev) | 119 | int led_classdev_register(struct device *parent, struct led_classdev *led_cdev) |
@@ -174,6 +194,8 @@ static int __init leds_init(void) | |||
174 | leds_class = class_create(THIS_MODULE, "leds"); | 194 | leds_class = class_create(THIS_MODULE, "leds"); |
175 | if (IS_ERR(leds_class)) | 195 | if (IS_ERR(leds_class)) |
176 | return PTR_ERR(leds_class); | 196 | return PTR_ERR(leds_class); |
197 | leds_class->suspend = led_suspend; | ||
198 | leds_class->resume = led_resume; | ||
177 | return 0; | 199 | return 0; |
178 | } | 200 | } |
179 | 201 | ||
diff --git a/drivers/leds/leds-alix2.c b/drivers/leds/leds-alix2.c new file mode 100644 index 000000000000..ddbd7730dfc8 --- /dev/null +++ b/drivers/leds/leds-alix2.c | |||
@@ -0,0 +1,181 @@ | |||
1 | /* | ||
2 | * LEDs driver for PCEngines ALIX.2 and ALIX.3 | ||
3 | * | ||
4 | * Copyright (C) 2008 Constantin Baranov <const@mimas.ru> | ||
5 | */ | ||
6 | |||
7 | #include <linux/err.h> | ||
8 | #include <linux/io.h> | ||
9 | #include <linux/kernel.h> | ||
10 | #include <linux/leds.h> | ||
11 | #include <linux/module.h> | ||
12 | #include <linux/platform_device.h> | ||
13 | #include <linux/string.h> | ||
14 | |||
15 | static int force = 0; | ||
16 | module_param(force, bool, 0444); | ||
17 | MODULE_PARM_DESC(force, "Assume system has ALIX.2 style LEDs"); | ||
18 | |||
19 | struct alix_led { | ||
20 | struct led_classdev cdev; | ||
21 | unsigned short port; | ||
22 | unsigned int on_value; | ||
23 | unsigned int off_value; | ||
24 | }; | ||
25 | |||
26 | static void alix_led_set(struct led_classdev *led_cdev, | ||
27 | enum led_brightness brightness) | ||
28 | { | ||
29 | struct alix_led *led_dev = | ||
30 | container_of(led_cdev, struct alix_led, cdev); | ||
31 | |||
32 | if (brightness) | ||
33 | outl(led_dev->on_value, led_dev->port); | ||
34 | else | ||
35 | outl(led_dev->off_value, led_dev->port); | ||
36 | } | ||
37 | |||
38 | static struct alix_led alix_leds[] = { | ||
39 | { | ||
40 | .cdev = { | ||
41 | .name = "alix:1", | ||
42 | .brightness_set = alix_led_set, | ||
43 | }, | ||
44 | .port = 0x6100, | ||
45 | .on_value = 1 << 22, | ||
46 | .off_value = 1 << 6, | ||
47 | }, | ||
48 | { | ||
49 | .cdev = { | ||
50 | .name = "alix:2", | ||
51 | .brightness_set = alix_led_set, | ||
52 | }, | ||
53 | .port = 0x6180, | ||
54 | .on_value = 1 << 25, | ||
55 | .off_value = 1 << 9, | ||
56 | }, | ||
57 | { | ||
58 | .cdev = { | ||
59 | .name = "alix:3", | ||
60 | .brightness_set = alix_led_set, | ||
61 | }, | ||
62 | .port = 0x6180, | ||
63 | .on_value = 1 << 27, | ||
64 | .off_value = 1 << 11, | ||
65 | }, | ||
66 | }; | ||
67 | |||
68 | static int __init alix_led_probe(struct platform_device *pdev) | ||
69 | { | ||
70 | int i; | ||
71 | int ret; | ||
72 | |||
73 | for (i = 0; i < ARRAY_SIZE(alix_leds); i++) { | ||
74 | alix_leds[i].cdev.flags |= LED_CORE_SUSPENDRESUME; | ||
75 | ret = led_classdev_register(&pdev->dev, &alix_leds[i].cdev); | ||
76 | if (ret < 0) | ||
77 | goto fail; | ||
78 | } | ||
79 | return 0; | ||
80 | |||
81 | fail: | ||
82 | while (--i >= 0) | ||
83 | led_classdev_unregister(&alix_leds[i].cdev); | ||
84 | return ret; | ||
85 | } | ||
86 | |||
87 | static int alix_led_remove(struct platform_device *pdev) | ||
88 | { | ||
89 | int i; | ||
90 | |||
91 | for (i = 0; i < ARRAY_SIZE(alix_leds); i++) | ||
92 | led_classdev_unregister(&alix_leds[i].cdev); | ||
93 | return 0; | ||
94 | } | ||
95 | |||
96 | static struct platform_driver alix_led_driver = { | ||
97 | .remove = alix_led_remove, | ||
98 | .driver = { | ||
99 | .name = KBUILD_MODNAME, | ||
100 | .owner = THIS_MODULE, | ||
101 | }, | ||
102 | }; | ||
103 | |||
104 | static int __init alix_present(void) | ||
105 | { | ||
106 | const unsigned long bios_phys = 0x000f0000; | ||
107 | const size_t bios_len = 0x00010000; | ||
108 | const char alix_sig[] = "PC Engines ALIX."; | ||
109 | const size_t alix_sig_len = sizeof(alix_sig) - 1; | ||
110 | |||
111 | const char *bios_virt; | ||
112 | const char *scan_end; | ||
113 | const char *p; | ||
114 | int ret = 0; | ||
115 | |||
116 | if (force) { | ||
117 | printk(KERN_NOTICE "%s: forced to skip BIOS test, " | ||
118 | "assume system has ALIX.2 style LEDs\n", | ||
119 | KBUILD_MODNAME); | ||
120 | ret = 1; | ||
121 | goto out; | ||
122 | } | ||
123 | |||
124 | bios_virt = phys_to_virt(bios_phys); | ||
125 | scan_end = bios_virt + bios_len - (alix_sig_len + 2); | ||
126 | for (p = bios_virt; p < scan_end; p++) { | ||
127 | const char *tail; | ||
128 | |||
129 | if (memcmp(p, alix_sig, alix_sig_len) != 0) { | ||
130 | continue; | ||
131 | } | ||
132 | |||
133 | tail = p + alix_sig_len; | ||
134 | if ((tail[0] == '2' || tail[0] == '3') && tail[1] == '\0') { | ||
135 | printk(KERN_INFO | ||
136 | "%s: system is recognized as \"%s\"\n", | ||
137 | KBUILD_MODNAME, p); | ||
138 | ret = 1; | ||
139 | break; | ||
140 | } | ||
141 | } | ||
142 | |||
143 | out: | ||
144 | return ret; | ||
145 | } | ||
146 | |||
147 | static struct platform_device *pdev; | ||
148 | |||
149 | static int __init alix_led_init(void) | ||
150 | { | ||
151 | int ret; | ||
152 | |||
153 | if (!alix_present()) { | ||
154 | ret = -ENODEV; | ||
155 | goto out; | ||
156 | } | ||
157 | |||
158 | pdev = platform_device_register_simple(KBUILD_MODNAME, -1, NULL, 0); | ||
159 | if (!IS_ERR(pdev)) { | ||
160 | ret = platform_driver_probe(&alix_led_driver, alix_led_probe); | ||
161 | if (ret) | ||
162 | platform_device_unregister(pdev); | ||
163 | } else | ||
164 | ret = PTR_ERR(pdev); | ||
165 | |||
166 | out: | ||
167 | return ret; | ||
168 | } | ||
169 | |||
170 | static void __exit alix_led_exit(void) | ||
171 | { | ||
172 | platform_device_unregister(pdev); | ||
173 | platform_driver_unregister(&alix_led_driver); | ||
174 | } | ||
175 | |||
176 | module_init(alix_led_init); | ||
177 | module_exit(alix_led_exit); | ||
178 | |||
179 | MODULE_AUTHOR("Constantin Baranov <const@mimas.ru>"); | ||
180 | MODULE_DESCRIPTION("PCEngines ALIX.2 and ALIX.3 LED driver"); | ||
181 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/leds/leds-ams-delta.c b/drivers/leds/leds-ams-delta.c index 1bd590bb3a6e..446050759b4d 100644 --- a/drivers/leds/leds-ams-delta.c +++ b/drivers/leds/leds-ams-delta.c | |||
@@ -79,37 +79,12 @@ static struct ams_delta_led ams_delta_leds[] = { | |||
79 | }, | 79 | }, |
80 | }; | 80 | }; |
81 | 81 | ||
82 | #ifdef CONFIG_PM | ||
83 | static int ams_delta_led_suspend(struct platform_device *dev, | ||
84 | pm_message_t state) | ||
85 | { | ||
86 | int i; | ||
87 | |||
88 | for (i = 0; i < ARRAY_SIZE(ams_delta_leds); i++) | ||
89 | led_classdev_suspend(&ams_delta_leds[i].cdev); | ||
90 | |||
91 | return 0; | ||
92 | } | ||
93 | |||
94 | static int ams_delta_led_resume(struct platform_device *dev) | ||
95 | { | ||
96 | int i; | ||
97 | |||
98 | for (i = 0; i < ARRAY_SIZE(ams_delta_leds); i++) | ||
99 | led_classdev_resume(&ams_delta_leds[i].cdev); | ||
100 | |||
101 | return 0; | ||
102 | } | ||
103 | #else | ||
104 | #define ams_delta_led_suspend NULL | ||
105 | #define ams_delta_led_resume NULL | ||
106 | #endif | ||
107 | |||
108 | static int ams_delta_led_probe(struct platform_device *pdev) | 82 | static int ams_delta_led_probe(struct platform_device *pdev) |
109 | { | 83 | { |
110 | int i, ret; | 84 | int i, ret; |
111 | 85 | ||
112 | for (i = 0; i < ARRAY_SIZE(ams_delta_leds); i++) { | 86 | for (i = 0; i < ARRAY_SIZE(ams_delta_leds); i++) { |
87 | ams_delta_leds[i].cdev.flags |= LED_CORE_SUSPENDRESUME; | ||
113 | ret = led_classdev_register(&pdev->dev, | 88 | ret = led_classdev_register(&pdev->dev, |
114 | &ams_delta_leds[i].cdev); | 89 | &ams_delta_leds[i].cdev); |
115 | if (ret < 0) | 90 | if (ret < 0) |
@@ -127,7 +102,7 @@ static int ams_delta_led_remove(struct platform_device *pdev) | |||
127 | { | 102 | { |
128 | int i; | 103 | int i; |
129 | 104 | ||
130 | for (i = 0; i < ARRAY_SIZE(ams_delta_leds); i--) | 105 | for (i = 0; i < ARRAY_SIZE(ams_delta_leds); i++) |
131 | led_classdev_unregister(&ams_delta_leds[i].cdev); | 106 | led_classdev_unregister(&ams_delta_leds[i].cdev); |
132 | 107 | ||
133 | return 0; | 108 | return 0; |
@@ -136,8 +111,6 @@ static int ams_delta_led_remove(struct platform_device *pdev) | |||
136 | static struct platform_driver ams_delta_led_driver = { | 111 | static struct platform_driver ams_delta_led_driver = { |
137 | .probe = ams_delta_led_probe, | 112 | .probe = ams_delta_led_probe, |
138 | .remove = ams_delta_led_remove, | 113 | .remove = ams_delta_led_remove, |
139 | .suspend = ams_delta_led_suspend, | ||
140 | .resume = ams_delta_led_resume, | ||
141 | .driver = { | 114 | .driver = { |
142 | .name = "ams-delta-led", | 115 | .name = "ams-delta-led", |
143 | .owner = THIS_MODULE, | 116 | .owner = THIS_MODULE, |
@@ -151,7 +124,7 @@ static int __init ams_delta_led_init(void) | |||
151 | 124 | ||
152 | static void __exit ams_delta_led_exit(void) | 125 | static void __exit ams_delta_led_exit(void) |
153 | { | 126 | { |
154 | return platform_driver_unregister(&ams_delta_led_driver); | 127 | platform_driver_unregister(&ams_delta_led_driver); |
155 | } | 128 | } |
156 | 129 | ||
157 | module_init(ams_delta_led_init); | 130 | module_init(ams_delta_led_init); |
diff --git a/drivers/leds/leds-clevo-mail.c b/drivers/leds/leds-clevo-mail.c index eb3415e88f43..1813c84ea5fc 100644 --- a/drivers/leds/leds-clevo-mail.c +++ b/drivers/leds/leds-clevo-mail.c | |||
@@ -142,6 +142,7 @@ static struct led_classdev clevo_mail_led = { | |||
142 | .name = "clevo::mail", | 142 | .name = "clevo::mail", |
143 | .brightness_set = clevo_mail_led_set, | 143 | .brightness_set = clevo_mail_led_set, |
144 | .blink_set = clevo_mail_led_blink, | 144 | .blink_set = clevo_mail_led_blink, |
145 | .flags = LED_CORE_SUSPENDRESUME, | ||
145 | }; | 146 | }; |
146 | 147 | ||
147 | static int __init clevo_mail_led_probe(struct platform_device *pdev) | 148 | static int __init clevo_mail_led_probe(struct platform_device *pdev) |
@@ -155,29 +156,9 @@ static int clevo_mail_led_remove(struct platform_device *pdev) | |||
155 | return 0; | 156 | return 0; |
156 | } | 157 | } |
157 | 158 | ||
158 | #ifdef CONFIG_PM | ||
159 | static int clevo_mail_led_suspend(struct platform_device *dev, | ||
160 | pm_message_t state) | ||
161 | { | ||
162 | led_classdev_suspend(&clevo_mail_led); | ||
163 | return 0; | ||
164 | } | ||
165 | |||
166 | static int clevo_mail_led_resume(struct platform_device *dev) | ||
167 | { | ||
168 | led_classdev_resume(&clevo_mail_led); | ||
169 | return 0; | ||
170 | } | ||
171 | #else | ||
172 | #define clevo_mail_led_suspend NULL | ||
173 | #define clevo_mail_led_resume NULL | ||
174 | #endif | ||
175 | |||
176 | static struct platform_driver clevo_mail_led_driver = { | 159 | static struct platform_driver clevo_mail_led_driver = { |
177 | .probe = clevo_mail_led_probe, | 160 | .probe = clevo_mail_led_probe, |
178 | .remove = clevo_mail_led_remove, | 161 | .remove = clevo_mail_led_remove, |
179 | .suspend = clevo_mail_led_suspend, | ||
180 | .resume = clevo_mail_led_resume, | ||
181 | .driver = { | 162 | .driver = { |
182 | .name = KBUILD_MODNAME, | 163 | .name = KBUILD_MODNAME, |
183 | .owner = THIS_MODULE, | 164 | .owner = THIS_MODULE, |
diff --git a/drivers/leds/leds-fsg.c b/drivers/leds/leds-fsg.c index 34935155c1c0..5f7c9c5c09b1 100644 --- a/drivers/leds/leds-fsg.c +++ b/drivers/leds/leds-fsg.c | |||
@@ -99,64 +99,43 @@ static void fsg_led_ring_set(struct led_classdev *led_cdev, | |||
99 | } | 99 | } |
100 | 100 | ||
101 | 101 | ||
102 | |||
103 | static struct led_classdev fsg_wlan_led = { | 102 | static struct led_classdev fsg_wlan_led = { |
104 | .name = "fsg:blue:wlan", | 103 | .name = "fsg:blue:wlan", |
105 | .brightness_set = fsg_led_wlan_set, | 104 | .brightness_set = fsg_led_wlan_set, |
105 | .flags = LED_CORE_SUSPENDRESUME, | ||
106 | }; | 106 | }; |
107 | 107 | ||
108 | static struct led_classdev fsg_wan_led = { | 108 | static struct led_classdev fsg_wan_led = { |
109 | .name = "fsg:blue:wan", | 109 | .name = "fsg:blue:wan", |
110 | .brightness_set = fsg_led_wan_set, | 110 | .brightness_set = fsg_led_wan_set, |
111 | .flags = LED_CORE_SUSPENDRESUME, | ||
111 | }; | 112 | }; |
112 | 113 | ||
113 | static struct led_classdev fsg_sata_led = { | 114 | static struct led_classdev fsg_sata_led = { |
114 | .name = "fsg:blue:sata", | 115 | .name = "fsg:blue:sata", |
115 | .brightness_set = fsg_led_sata_set, | 116 | .brightness_set = fsg_led_sata_set, |
117 | .flags = LED_CORE_SUSPENDRESUME, | ||
116 | }; | 118 | }; |
117 | 119 | ||
118 | static struct led_classdev fsg_usb_led = { | 120 | static struct led_classdev fsg_usb_led = { |
119 | .name = "fsg:blue:usb", | 121 | .name = "fsg:blue:usb", |
120 | .brightness_set = fsg_led_usb_set, | 122 | .brightness_set = fsg_led_usb_set, |
123 | .flags = LED_CORE_SUSPENDRESUME, | ||
121 | }; | 124 | }; |
122 | 125 | ||
123 | static struct led_classdev fsg_sync_led = { | 126 | static struct led_classdev fsg_sync_led = { |
124 | .name = "fsg:blue:sync", | 127 | .name = "fsg:blue:sync", |
125 | .brightness_set = fsg_led_sync_set, | 128 | .brightness_set = fsg_led_sync_set, |
129 | .flags = LED_CORE_SUSPENDRESUME, | ||
126 | }; | 130 | }; |
127 | 131 | ||
128 | static struct led_classdev fsg_ring_led = { | 132 | static struct led_classdev fsg_ring_led = { |
129 | .name = "fsg:blue:ring", | 133 | .name = "fsg:blue:ring", |
130 | .brightness_set = fsg_led_ring_set, | 134 | .brightness_set = fsg_led_ring_set, |
135 | .flags = LED_CORE_SUSPENDRESUME, | ||
131 | }; | 136 | }; |
132 | 137 | ||
133 | 138 | ||
134 | |||
135 | #ifdef CONFIG_PM | ||
136 | static int fsg_led_suspend(struct platform_device *dev, pm_message_t state) | ||
137 | { | ||
138 | led_classdev_suspend(&fsg_wlan_led); | ||
139 | led_classdev_suspend(&fsg_wan_led); | ||
140 | led_classdev_suspend(&fsg_sata_led); | ||
141 | led_classdev_suspend(&fsg_usb_led); | ||
142 | led_classdev_suspend(&fsg_sync_led); | ||
143 | led_classdev_suspend(&fsg_ring_led); | ||
144 | return 0; | ||
145 | } | ||
146 | |||
147 | static int fsg_led_resume(struct platform_device *dev) | ||
148 | { | ||
149 | led_classdev_resume(&fsg_wlan_led); | ||
150 | led_classdev_resume(&fsg_wan_led); | ||
151 | led_classdev_resume(&fsg_sata_led); | ||
152 | led_classdev_resume(&fsg_usb_led); | ||
153 | led_classdev_resume(&fsg_sync_led); | ||
154 | led_classdev_resume(&fsg_ring_led); | ||
155 | return 0; | ||
156 | } | ||
157 | #endif | ||
158 | |||
159 | |||
160 | static int fsg_led_probe(struct platform_device *pdev) | 139 | static int fsg_led_probe(struct platform_device *pdev) |
161 | { | 140 | { |
162 | int ret; | 141 | int ret; |
@@ -232,10 +211,6 @@ static int fsg_led_remove(struct platform_device *pdev) | |||
232 | static struct platform_driver fsg_led_driver = { | 211 | static struct platform_driver fsg_led_driver = { |
233 | .probe = fsg_led_probe, | 212 | .probe = fsg_led_probe, |
234 | .remove = fsg_led_remove, | 213 | .remove = fsg_led_remove, |
235 | #ifdef CONFIG_PM | ||
236 | .suspend = fsg_led_suspend, | ||
237 | .resume = fsg_led_resume, | ||
238 | #endif | ||
239 | .driver = { | 214 | .driver = { |
240 | .name = "fsg-led", | 215 | .name = "fsg-led", |
241 | }, | 216 | }, |
diff --git a/drivers/leds/leds-gpio.c b/drivers/leds/leds-gpio.c index b13bd2950e95..2e3df08b649b 100644 --- a/drivers/leds/leds-gpio.c +++ b/drivers/leds/leds-gpio.c | |||
@@ -105,6 +105,7 @@ static int gpio_led_probe(struct platform_device *pdev) | |||
105 | } | 105 | } |
106 | led_dat->cdev.brightness_set = gpio_led_set; | 106 | led_dat->cdev.brightness_set = gpio_led_set; |
107 | led_dat->cdev.brightness = LED_OFF; | 107 | led_dat->cdev.brightness = LED_OFF; |
108 | led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME; | ||
108 | 109 | ||
109 | gpio_direction_output(led_dat->gpio, led_dat->active_low); | 110 | gpio_direction_output(led_dat->gpio, led_dat->active_low); |
110 | 111 | ||
@@ -154,44 +155,9 @@ static int __devexit gpio_led_remove(struct platform_device *pdev) | |||
154 | return 0; | 155 | return 0; |
155 | } | 156 | } |
156 | 157 | ||
157 | #ifdef CONFIG_PM | ||
158 | static int gpio_led_suspend(struct platform_device *pdev, pm_message_t state) | ||
159 | { | ||
160 | struct gpio_led_platform_data *pdata = pdev->dev.platform_data; | ||
161 | struct gpio_led_data *leds_data; | ||
162 | int i; | ||
163 | |||
164 | leds_data = platform_get_drvdata(pdev); | ||
165 | |||
166 | for (i = 0; i < pdata->num_leds; i++) | ||
167 | led_classdev_suspend(&leds_data[i].cdev); | ||
168 | |||
169 | return 0; | ||
170 | } | ||
171 | |||
172 | static int gpio_led_resume(struct platform_device *pdev) | ||
173 | { | ||
174 | struct gpio_led_platform_data *pdata = pdev->dev.platform_data; | ||
175 | struct gpio_led_data *leds_data; | ||
176 | int i; | ||
177 | |||
178 | leds_data = platform_get_drvdata(pdev); | ||
179 | |||
180 | for (i = 0; i < pdata->num_leds; i++) | ||
181 | led_classdev_resume(&leds_data[i].cdev); | ||
182 | |||
183 | return 0; | ||
184 | } | ||
185 | #else | ||
186 | #define gpio_led_suspend NULL | ||
187 | #define gpio_led_resume NULL | ||
188 | #endif | ||
189 | |||
190 | static struct platform_driver gpio_led_driver = { | 158 | static struct platform_driver gpio_led_driver = { |
191 | .probe = gpio_led_probe, | 159 | .probe = gpio_led_probe, |
192 | .remove = __devexit_p(gpio_led_remove), | 160 | .remove = __devexit_p(gpio_led_remove), |
193 | .suspend = gpio_led_suspend, | ||
194 | .resume = gpio_led_resume, | ||
195 | .driver = { | 161 | .driver = { |
196 | .name = "leds-gpio", | 162 | .name = "leds-gpio", |
197 | .owner = THIS_MODULE, | 163 | .owner = THIS_MODULE, |
diff --git a/drivers/leds/leds-hp-disk.c b/drivers/leds/leds-hp-disk.c index 44fa757d8254..d786adc8c5e3 100644 --- a/drivers/leds/leds-hp-disk.c +++ b/drivers/leds/leds-hp-disk.c | |||
@@ -68,25 +68,9 @@ static struct led_classdev hpled_led = { | |||
68 | .name = "hp:red:hddprotection", | 68 | .name = "hp:red:hddprotection", |
69 | .default_trigger = "heartbeat", | 69 | .default_trigger = "heartbeat", |
70 | .brightness_set = hpled_set, | 70 | .brightness_set = hpled_set, |
71 | .flags = LED_CORE_SUSPENDRESUME, | ||
71 | }; | 72 | }; |
72 | 73 | ||
73 | #ifdef CONFIG_PM | ||
74 | static int hpled_suspend(struct acpi_device *dev, pm_message_t state) | ||
75 | { | ||
76 | led_classdev_suspend(&hpled_led); | ||
77 | return 0; | ||
78 | } | ||
79 | |||
80 | static int hpled_resume(struct acpi_device *dev) | ||
81 | { | ||
82 | led_classdev_resume(&hpled_led); | ||
83 | return 0; | ||
84 | } | ||
85 | #else | ||
86 | #define hpled_suspend NULL | ||
87 | #define hpled_resume NULL | ||
88 | #endif | ||
89 | |||
90 | static int hpled_add(struct acpi_device *device) | 74 | static int hpled_add(struct acpi_device *device) |
91 | { | 75 | { |
92 | int ret; | 76 | int ret; |
@@ -121,8 +105,6 @@ static struct acpi_driver leds_hp_driver = { | |||
121 | .ops = { | 105 | .ops = { |
122 | .add = hpled_add, | 106 | .add = hpled_add, |
123 | .remove = hpled_remove, | 107 | .remove = hpled_remove, |
124 | .suspend = hpled_suspend, | ||
125 | .resume = hpled_resume, | ||
126 | } | 108 | } |
127 | }; | 109 | }; |
128 | 110 | ||
diff --git a/drivers/leds/leds-hp6xx.c b/drivers/leds/leds-hp6xx.c index e8fb1baf8a50..e4ce1fd46338 100644 --- a/drivers/leds/leds-hp6xx.c +++ b/drivers/leds/leds-hp6xx.c | |||
@@ -45,30 +45,16 @@ static struct led_classdev hp6xx_red_led = { | |||
45 | .name = "hp6xx:red", | 45 | .name = "hp6xx:red", |
46 | .default_trigger = "hp6xx-charge", | 46 | .default_trigger = "hp6xx-charge", |
47 | .brightness_set = hp6xxled_red_set, | 47 | .brightness_set = hp6xxled_red_set, |
48 | .flags = LED_CORE_SUSPENDRESUME, | ||
48 | }; | 49 | }; |
49 | 50 | ||
50 | static struct led_classdev hp6xx_green_led = { | 51 | static struct led_classdev hp6xx_green_led = { |
51 | .name = "hp6xx:green", | 52 | .name = "hp6xx:green", |
52 | .default_trigger = "ide-disk", | 53 | .default_trigger = "ide-disk", |
53 | .brightness_set = hp6xxled_green_set, | 54 | .brightness_set = hp6xxled_green_set, |
55 | .flags = LED_CORE_SUSPENDRESUME, | ||
54 | }; | 56 | }; |
55 | 57 | ||
56 | #ifdef CONFIG_PM | ||
57 | static int hp6xxled_suspend(struct platform_device *dev, pm_message_t state) | ||
58 | { | ||
59 | led_classdev_suspend(&hp6xx_red_led); | ||
60 | led_classdev_suspend(&hp6xx_green_led); | ||
61 | return 0; | ||
62 | } | ||
63 | |||
64 | static int hp6xxled_resume(struct platform_device *dev) | ||
65 | { | ||
66 | led_classdev_resume(&hp6xx_red_led); | ||
67 | led_classdev_resume(&hp6xx_green_led); | ||
68 | return 0; | ||
69 | } | ||
70 | #endif | ||
71 | |||
72 | static int hp6xxled_probe(struct platform_device *pdev) | 58 | static int hp6xxled_probe(struct platform_device *pdev) |
73 | { | 59 | { |
74 | int ret; | 60 | int ret; |
@@ -98,10 +84,6 @@ MODULE_ALIAS("platform:hp6xx-led"); | |||
98 | static struct platform_driver hp6xxled_driver = { | 84 | static struct platform_driver hp6xxled_driver = { |
99 | .probe = hp6xxled_probe, | 85 | .probe = hp6xxled_probe, |
100 | .remove = hp6xxled_remove, | 86 | .remove = hp6xxled_remove, |
101 | #ifdef CONFIG_PM | ||
102 | .suspend = hp6xxled_suspend, | ||
103 | .resume = hp6xxled_resume, | ||
104 | #endif | ||
105 | .driver = { | 87 | .driver = { |
106 | .name = "hp6xx-led", | 88 | .name = "hp6xx-led", |
107 | .owner = THIS_MODULE, | 89 | .owner = THIS_MODULE, |
diff --git a/drivers/leds/leds-net48xx.c b/drivers/leds/leds-net48xx.c index 054360473c94..93987a12da49 100644 --- a/drivers/leds/leds-net48xx.c +++ b/drivers/leds/leds-net48xx.c | |||
@@ -33,26 +33,9 @@ static void net48xx_error_led_set(struct led_classdev *led_cdev, | |||
33 | static struct led_classdev net48xx_error_led = { | 33 | static struct led_classdev net48xx_error_led = { |
34 | .name = "net48xx::error", | 34 | .name = "net48xx::error", |
35 | .brightness_set = net48xx_error_led_set, | 35 | .brightness_set = net48xx_error_led_set, |
36 | .flags = LED_CORE_SUSPENDRESUME, | ||
36 | }; | 37 | }; |
37 | 38 | ||
38 | #ifdef CONFIG_PM | ||
39 | static int net48xx_led_suspend(struct platform_device *dev, | ||
40 | pm_message_t state) | ||
41 | { | ||
42 | led_classdev_suspend(&net48xx_error_led); | ||
43 | return 0; | ||
44 | } | ||
45 | |||
46 | static int net48xx_led_resume(struct platform_device *dev) | ||
47 | { | ||
48 | led_classdev_resume(&net48xx_error_led); | ||
49 | return 0; | ||
50 | } | ||
51 | #else | ||
52 | #define net48xx_led_suspend NULL | ||
53 | #define net48xx_led_resume NULL | ||
54 | #endif | ||
55 | |||
56 | static int net48xx_led_probe(struct platform_device *pdev) | 39 | static int net48xx_led_probe(struct platform_device *pdev) |
57 | { | 40 | { |
58 | return led_classdev_register(&pdev->dev, &net48xx_error_led); | 41 | return led_classdev_register(&pdev->dev, &net48xx_error_led); |
@@ -67,8 +50,6 @@ static int net48xx_led_remove(struct platform_device *pdev) | |||
67 | static struct platform_driver net48xx_led_driver = { | 50 | static struct platform_driver net48xx_led_driver = { |
68 | .probe = net48xx_led_probe, | 51 | .probe = net48xx_led_probe, |
69 | .remove = net48xx_led_remove, | 52 | .remove = net48xx_led_remove, |
70 | .suspend = net48xx_led_suspend, | ||
71 | .resume = net48xx_led_resume, | ||
72 | .driver = { | 53 | .driver = { |
73 | .name = DRVNAME, | 54 | .name = DRVNAME, |
74 | .owner = THIS_MODULE, | 55 | .owner = THIS_MODULE, |
diff --git a/drivers/leds/leds-pca9532.c b/drivers/leds/leds-pca9532.c index 4064d4f6b33b..76ec7498e2d5 100644 --- a/drivers/leds/leds-pca9532.c +++ b/drivers/leds/leds-pca9532.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/leds.h> | 16 | #include <linux/leds.h> |
17 | #include <linux/input.h> | 17 | #include <linux/input.h> |
18 | #include <linux/mutex.h> | 18 | #include <linux/mutex.h> |
19 | #include <linux/workqueue.h> | ||
19 | #include <linux/leds-pca9532.h> | 20 | #include <linux/leds-pca9532.h> |
20 | 21 | ||
21 | static const unsigned short normal_i2c[] = { /*0x60,*/ I2C_CLIENT_END}; | 22 | static const unsigned short normal_i2c[] = { /*0x60,*/ I2C_CLIENT_END}; |
@@ -34,6 +35,7 @@ struct pca9532_data { | |||
34 | struct pca9532_led leds[16]; | 35 | struct pca9532_led leds[16]; |
35 | struct mutex update_lock; | 36 | struct mutex update_lock; |
36 | struct input_dev *idev; | 37 | struct input_dev *idev; |
38 | struct work_struct work; | ||
37 | u8 pwm[2]; | 39 | u8 pwm[2]; |
38 | u8 psc[2]; | 40 | u8 psc[2]; |
39 | }; | 41 | }; |
@@ -63,7 +65,7 @@ static struct i2c_driver pca9532_driver = { | |||
63 | * as a compromise we average one pwm to the values requested by all | 65 | * as a compromise we average one pwm to the values requested by all |
64 | * leds that are not ON/OFF. | 66 | * leds that are not ON/OFF. |
65 | * */ | 67 | * */ |
66 | static int pca9532_setpwm(struct i2c_client *client, int pwm, int blink, | 68 | static int pca9532_calcpwm(struct i2c_client *client, int pwm, int blink, |
67 | enum led_brightness value) | 69 | enum led_brightness value) |
68 | { | 70 | { |
69 | int a = 0, b = 0, i = 0; | 71 | int a = 0, b = 0, i = 0; |
@@ -84,11 +86,17 @@ static int pca9532_setpwm(struct i2c_client *client, int pwm, int blink, | |||
84 | b = b/a; | 86 | b = b/a; |
85 | if (b > 0xFF) | 87 | if (b > 0xFF) |
86 | return -EINVAL; | 88 | return -EINVAL; |
87 | mutex_lock(&data->update_lock); | ||
88 | data->pwm[pwm] = b; | 89 | data->pwm[pwm] = b; |
90 | data->psc[pwm] = blink; | ||
91 | return 0; | ||
92 | } | ||
93 | |||
94 | static int pca9532_setpwm(struct i2c_client *client, int pwm) | ||
95 | { | ||
96 | struct pca9532_data *data = i2c_get_clientdata(client); | ||
97 | mutex_lock(&data->update_lock); | ||
89 | i2c_smbus_write_byte_data(client, PCA9532_REG_PWM(pwm), | 98 | i2c_smbus_write_byte_data(client, PCA9532_REG_PWM(pwm), |
90 | data->pwm[pwm]); | 99 | data->pwm[pwm]); |
91 | data->psc[pwm] = blink; | ||
92 | i2c_smbus_write_byte_data(client, PCA9532_REG_PSC(pwm), | 100 | i2c_smbus_write_byte_data(client, PCA9532_REG_PSC(pwm), |
93 | data->psc[pwm]); | 101 | data->psc[pwm]); |
94 | mutex_unlock(&data->update_lock); | 102 | mutex_unlock(&data->update_lock); |
@@ -124,11 +132,11 @@ static void pca9532_set_brightness(struct led_classdev *led_cdev, | |||
124 | led->state = PCA9532_ON; | 132 | led->state = PCA9532_ON; |
125 | else { | 133 | else { |
126 | led->state = PCA9532_PWM0; /* Thecus: hardcode one pwm */ | 134 | led->state = PCA9532_PWM0; /* Thecus: hardcode one pwm */ |
127 | err = pca9532_setpwm(led->client, 0, 0, value); | 135 | err = pca9532_calcpwm(led->client, 0, 0, value); |
128 | if (err) | 136 | if (err) |
129 | return; /* XXX: led api doesn't allow error code? */ | 137 | return; /* XXX: led api doesn't allow error code? */ |
130 | } | 138 | } |
131 | pca9532_setled(led); | 139 | schedule_work(&led->work); |
132 | } | 140 | } |
133 | 141 | ||
134 | static int pca9532_set_blink(struct led_classdev *led_cdev, | 142 | static int pca9532_set_blink(struct led_classdev *led_cdev, |
@@ -137,6 +145,7 @@ static int pca9532_set_blink(struct led_classdev *led_cdev, | |||
137 | struct pca9532_led *led = ldev_to_led(led_cdev); | 145 | struct pca9532_led *led = ldev_to_led(led_cdev); |
138 | struct i2c_client *client = led->client; | 146 | struct i2c_client *client = led->client; |
139 | int psc; | 147 | int psc; |
148 | int err = 0; | ||
140 | 149 | ||
141 | if (*delay_on == 0 && *delay_off == 0) { | 150 | if (*delay_on == 0 && *delay_off == 0) { |
142 | /* led subsystem ask us for a blink rate */ | 151 | /* led subsystem ask us for a blink rate */ |
@@ -148,11 +157,15 @@ static int pca9532_set_blink(struct led_classdev *led_cdev, | |||
148 | 157 | ||
149 | /* Thecus specific: only use PSC/PWM 0 */ | 158 | /* Thecus specific: only use PSC/PWM 0 */ |
150 | psc = (*delay_on * 152-1)/1000; | 159 | psc = (*delay_on * 152-1)/1000; |
151 | return pca9532_setpwm(client, 0, psc, led_cdev->brightness); | 160 | err = pca9532_calcpwm(client, 0, psc, led_cdev->brightness); |
161 | if (err) | ||
162 | return err; | ||
163 | schedule_work(&led->work); | ||
164 | return 0; | ||
152 | } | 165 | } |
153 | 166 | ||
154 | int pca9532_event(struct input_dev *dev, unsigned int type, unsigned int code, | 167 | static int pca9532_event(struct input_dev *dev, unsigned int type, |
155 | int value) | 168 | unsigned int code, int value) |
156 | { | 169 | { |
157 | struct pca9532_data *data = input_get_drvdata(dev); | 170 | struct pca9532_data *data = input_get_drvdata(dev); |
158 | 171 | ||
@@ -165,13 +178,28 @@ int pca9532_event(struct input_dev *dev, unsigned int type, unsigned int code, | |||
165 | else | 178 | else |
166 | data->pwm[1] = 0; | 179 | data->pwm[1] = 0; |
167 | 180 | ||
168 | dev_info(&dev->dev, "setting beep to %d \n", data->pwm[1]); | 181 | schedule_work(&data->work); |
182 | |||
183 | return 0; | ||
184 | } | ||
185 | |||
186 | static void pca9532_input_work(struct work_struct *work) | ||
187 | { | ||
188 | struct pca9532_data *data; | ||
189 | data = container_of(work, struct pca9532_data, work); | ||
169 | mutex_lock(&data->update_lock); | 190 | mutex_lock(&data->update_lock); |
170 | i2c_smbus_write_byte_data(data->client, PCA9532_REG_PWM(1), | 191 | i2c_smbus_write_byte_data(data->client, PCA9532_REG_PWM(1), |
171 | data->pwm[1]); | 192 | data->pwm[1]); |
172 | mutex_unlock(&data->update_lock); | 193 | mutex_unlock(&data->update_lock); |
194 | } | ||
173 | 195 | ||
174 | return 0; | 196 | static void pca9532_led_work(struct work_struct *work) |
197 | { | ||
198 | struct pca9532_led *led; | ||
199 | led = container_of(work, struct pca9532_led, work); | ||
200 | if (led->state == PCA9532_PWM0) | ||
201 | pca9532_setpwm(led->client, 0); | ||
202 | pca9532_setled(led); | ||
175 | } | 203 | } |
176 | 204 | ||
177 | static int pca9532_configure(struct i2c_client *client, | 205 | static int pca9532_configure(struct i2c_client *client, |
@@ -204,8 +232,9 @@ static int pca9532_configure(struct i2c_client *client, | |||
204 | led->ldev.brightness = LED_OFF; | 232 | led->ldev.brightness = LED_OFF; |
205 | led->ldev.brightness_set = pca9532_set_brightness; | 233 | led->ldev.brightness_set = pca9532_set_brightness; |
206 | led->ldev.blink_set = pca9532_set_blink; | 234 | led->ldev.blink_set = pca9532_set_blink; |
207 | if (led_classdev_register(&client->dev, | 235 | INIT_WORK(&led->work, pca9532_led_work); |
208 | &led->ldev) < 0) { | 236 | err = led_classdev_register(&client->dev, &led->ldev); |
237 | if (err < 0) { | ||
209 | dev_err(&client->dev, | 238 | dev_err(&client->dev, |
210 | "couldn't register LED %s\n", | 239 | "couldn't register LED %s\n", |
211 | led->name); | 240 | led->name); |
@@ -233,9 +262,11 @@ static int pca9532_configure(struct i2c_client *client, | |||
233 | BIT_MASK(SND_TONE); | 262 | BIT_MASK(SND_TONE); |
234 | data->idev->event = pca9532_event; | 263 | data->idev->event = pca9532_event; |
235 | input_set_drvdata(data->idev, data); | 264 | input_set_drvdata(data->idev, data); |
265 | INIT_WORK(&data->work, pca9532_input_work); | ||
236 | err = input_register_device(data->idev); | 266 | err = input_register_device(data->idev); |
237 | if (err) { | 267 | if (err) { |
238 | input_free_device(data->idev); | 268 | input_free_device(data->idev); |
269 | cancel_work_sync(&data->work); | ||
239 | data->idev = NULL; | 270 | data->idev = NULL; |
240 | goto exit; | 271 | goto exit; |
241 | } | 272 | } |
@@ -252,18 +283,19 @@ exit: | |||
252 | break; | 283 | break; |
253 | case PCA9532_TYPE_LED: | 284 | case PCA9532_TYPE_LED: |
254 | led_classdev_unregister(&data->leds[i].ldev); | 285 | led_classdev_unregister(&data->leds[i].ldev); |
286 | cancel_work_sync(&data->leds[i].work); | ||
255 | break; | 287 | break; |
256 | case PCA9532_TYPE_N2100_BEEP: | 288 | case PCA9532_TYPE_N2100_BEEP: |
257 | if (data->idev != NULL) { | 289 | if (data->idev != NULL) { |
258 | input_unregister_device(data->idev); | 290 | input_unregister_device(data->idev); |
259 | input_free_device(data->idev); | 291 | input_free_device(data->idev); |
292 | cancel_work_sync(&data->work); | ||
260 | data->idev = NULL; | 293 | data->idev = NULL; |
261 | } | 294 | } |
262 | break; | 295 | break; |
263 | } | 296 | } |
264 | 297 | ||
265 | return err; | 298 | return err; |
266 | |||
267 | } | 299 | } |
268 | 300 | ||
269 | static int pca9532_probe(struct i2c_client *client, | 301 | static int pca9532_probe(struct i2c_client *client, |
@@ -271,12 +303,16 @@ static int pca9532_probe(struct i2c_client *client, | |||
271 | { | 303 | { |
272 | struct pca9532_data *data = i2c_get_clientdata(client); | 304 | struct pca9532_data *data = i2c_get_clientdata(client); |
273 | struct pca9532_platform_data *pca9532_pdata = client->dev.platform_data; | 305 | struct pca9532_platform_data *pca9532_pdata = client->dev.platform_data; |
306 | int err; | ||
307 | |||
308 | if (!pca9532_pdata) | ||
309 | return -EIO; | ||
274 | 310 | ||
275 | if (!i2c_check_functionality(client->adapter, | 311 | if (!i2c_check_functionality(client->adapter, |
276 | I2C_FUNC_SMBUS_BYTE_DATA)) | 312 | I2C_FUNC_SMBUS_BYTE_DATA)) |
277 | return -EIO; | 313 | return -EIO; |
278 | 314 | ||
279 | data = kzalloc(sizeof(struct pca9532_data), GFP_KERNEL); | 315 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
280 | if (!data) | 316 | if (!data) |
281 | return -ENOMEM; | 317 | return -ENOMEM; |
282 | 318 | ||
@@ -285,12 +321,13 @@ static int pca9532_probe(struct i2c_client *client, | |||
285 | data->client = client; | 321 | data->client = client; |
286 | mutex_init(&data->update_lock); | 322 | mutex_init(&data->update_lock); |
287 | 323 | ||
288 | if (pca9532_pdata == NULL) | 324 | err = pca9532_configure(client, data, pca9532_pdata); |
289 | return -EIO; | 325 | if (err) { |
290 | 326 | kfree(data); | |
291 | pca9532_configure(client, data, pca9532_pdata); | 327 | i2c_set_clientdata(client, NULL); |
292 | return 0; | 328 | } |
293 | 329 | ||
330 | return err; | ||
294 | } | 331 | } |
295 | 332 | ||
296 | static int pca9532_remove(struct i2c_client *client) | 333 | static int pca9532_remove(struct i2c_client *client) |
@@ -303,11 +340,13 @@ static int pca9532_remove(struct i2c_client *client) | |||
303 | break; | 340 | break; |
304 | case PCA9532_TYPE_LED: | 341 | case PCA9532_TYPE_LED: |
305 | led_classdev_unregister(&data->leds[i].ldev); | 342 | led_classdev_unregister(&data->leds[i].ldev); |
343 | cancel_work_sync(&data->leds[i].work); | ||
306 | break; | 344 | break; |
307 | case PCA9532_TYPE_N2100_BEEP: | 345 | case PCA9532_TYPE_N2100_BEEP: |
308 | if (data->idev != NULL) { | 346 | if (data->idev != NULL) { |
309 | input_unregister_device(data->idev); | 347 | input_unregister_device(data->idev); |
310 | input_free_device(data->idev); | 348 | input_free_device(data->idev); |
349 | cancel_work_sync(&data->work); | ||
311 | data->idev = NULL; | 350 | data->idev = NULL; |
312 | } | 351 | } |
313 | break; | 352 | break; |
diff --git a/drivers/leds/leds-s3c24xx.c b/drivers/leds/leds-s3c24xx.c index 25a07f2643ad..4d81131542ae 100644 --- a/drivers/leds/leds-s3c24xx.c +++ b/drivers/leds/leds-s3c24xx.c | |||
@@ -82,6 +82,7 @@ static int s3c24xx_led_probe(struct platform_device *dev) | |||
82 | led->cdev.brightness_set = s3c24xx_led_set; | 82 | led->cdev.brightness_set = s3c24xx_led_set; |
83 | led->cdev.default_trigger = pdata->def_trigger; | 83 | led->cdev.default_trigger = pdata->def_trigger; |
84 | led->cdev.name = pdata->name; | 84 | led->cdev.name = pdata->name; |
85 | led->cdev.flags |= LED_CORE_SUSPENDRESUME; | ||
85 | 86 | ||
86 | led->pdata = pdata; | 87 | led->pdata = pdata; |
87 | 88 | ||
@@ -111,33 +112,9 @@ static int s3c24xx_led_probe(struct platform_device *dev) | |||
111 | return ret; | 112 | return ret; |
112 | } | 113 | } |
113 | 114 | ||
114 | |||
115 | #ifdef CONFIG_PM | ||
116 | static int s3c24xx_led_suspend(struct platform_device *dev, pm_message_t state) | ||
117 | { | ||
118 | struct s3c24xx_gpio_led *led = pdev_to_gpio(dev); | ||
119 | |||
120 | led_classdev_suspend(&led->cdev); | ||
121 | return 0; | ||
122 | } | ||
123 | |||
124 | static int s3c24xx_led_resume(struct platform_device *dev) | ||
125 | { | ||
126 | struct s3c24xx_gpio_led *led = pdev_to_gpio(dev); | ||
127 | |||
128 | led_classdev_resume(&led->cdev); | ||
129 | return 0; | ||
130 | } | ||
131 | #else | ||
132 | #define s3c24xx_led_suspend NULL | ||
133 | #define s3c24xx_led_resume NULL | ||
134 | #endif | ||
135 | |||
136 | static struct platform_driver s3c24xx_led_driver = { | 115 | static struct platform_driver s3c24xx_led_driver = { |
137 | .probe = s3c24xx_led_probe, | 116 | .probe = s3c24xx_led_probe, |
138 | .remove = s3c24xx_led_remove, | 117 | .remove = s3c24xx_led_remove, |
139 | .suspend = s3c24xx_led_suspend, | ||
140 | .resume = s3c24xx_led_resume, | ||
141 | .driver = { | 118 | .driver = { |
142 | .name = "s3c24xx_led", | 119 | .name = "s3c24xx_led", |
143 | .owner = THIS_MODULE, | 120 | .owner = THIS_MODULE, |
diff --git a/drivers/leds/leds-wm8350.c b/drivers/leds/leds-wm8350.c new file mode 100644 index 000000000000..38c6bcb07e6c --- /dev/null +++ b/drivers/leds/leds-wm8350.c | |||
@@ -0,0 +1,311 @@ | |||
1 | /* | ||
2 | * LED driver for WM8350 driven LEDS. | ||
3 | * | ||
4 | * Copyright(C) 2007, 2008 Wolfson Microelectronics PLC. | ||
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 | |||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/init.h> | ||
14 | #include <linux/platform_device.h> | ||
15 | #include <linux/leds.h> | ||
16 | #include <linux/err.h> | ||
17 | #include <linux/mfd/wm8350/pmic.h> | ||
18 | #include <linux/regulator/consumer.h> | ||
19 | |||
20 | /* Microamps */ | ||
21 | static const int isink_cur[] = { | ||
22 | 4, | ||
23 | 5, | ||
24 | 6, | ||
25 | 7, | ||
26 | 8, | ||
27 | 10, | ||
28 | 11, | ||
29 | 14, | ||
30 | 16, | ||
31 | 19, | ||
32 | 23, | ||
33 | 27, | ||
34 | 32, | ||
35 | 39, | ||
36 | 46, | ||
37 | 54, | ||
38 | 65, | ||
39 | 77, | ||
40 | 92, | ||
41 | 109, | ||
42 | 130, | ||
43 | 154, | ||
44 | 183, | ||
45 | 218, | ||
46 | 259, | ||
47 | 308, | ||
48 | 367, | ||
49 | 436, | ||
50 | 518, | ||
51 | 616, | ||
52 | 733, | ||
53 | 872, | ||
54 | 1037, | ||
55 | 1233, | ||
56 | 1466, | ||
57 | 1744, | ||
58 | 2073, | ||
59 | 2466, | ||
60 | 2933, | ||
61 | 3487, | ||
62 | 4147, | ||
63 | 4932, | ||
64 | 5865, | ||
65 | 6975, | ||
66 | 8294, | ||
67 | 9864, | ||
68 | 11730, | ||
69 | 13949, | ||
70 | 16589, | ||
71 | 19728, | ||
72 | 23460, | ||
73 | 27899, | ||
74 | 33178, | ||
75 | 39455, | ||
76 | 46920, | ||
77 | 55798, | ||
78 | 66355, | ||
79 | 78910, | ||
80 | 93840, | ||
81 | 111596, | ||
82 | 132710, | ||
83 | 157820, | ||
84 | 187681, | ||
85 | 223191 | ||
86 | }; | ||
87 | |||
88 | #define to_wm8350_led(led_cdev) \ | ||
89 | container_of(led_cdev, struct wm8350_led, cdev) | ||
90 | |||
91 | static void wm8350_led_enable(struct wm8350_led *led) | ||
92 | { | ||
93 | int ret; | ||
94 | |||
95 | if (led->enabled) | ||
96 | return; | ||
97 | |||
98 | ret = regulator_enable(led->isink); | ||
99 | if (ret != 0) { | ||
100 | dev_err(led->cdev.dev, "Failed to enable ISINK: %d\n", ret); | ||
101 | return; | ||
102 | } | ||
103 | |||
104 | ret = regulator_enable(led->dcdc); | ||
105 | if (ret != 0) { | ||
106 | dev_err(led->cdev.dev, "Failed to enable DCDC: %d\n", ret); | ||
107 | regulator_disable(led->isink); | ||
108 | return; | ||
109 | } | ||
110 | |||
111 | led->enabled = 1; | ||
112 | } | ||
113 | |||
114 | static void wm8350_led_disable(struct wm8350_led *led) | ||
115 | { | ||
116 | int ret; | ||
117 | |||
118 | if (!led->enabled) | ||
119 | return; | ||
120 | |||
121 | ret = regulator_disable(led->dcdc); | ||
122 | if (ret != 0) { | ||
123 | dev_err(led->cdev.dev, "Failed to disable DCDC: %d\n", ret); | ||
124 | return; | ||
125 | } | ||
126 | |||
127 | ret = regulator_disable(led->isink); | ||
128 | if (ret != 0) { | ||
129 | dev_err(led->cdev.dev, "Failed to disable ISINK: %d\n", ret); | ||
130 | regulator_enable(led->dcdc); | ||
131 | return; | ||
132 | } | ||
133 | |||
134 | led->enabled = 0; | ||
135 | } | ||
136 | |||
137 | static void led_work(struct work_struct *work) | ||
138 | { | ||
139 | struct wm8350_led *led = container_of(work, struct wm8350_led, work); | ||
140 | int ret; | ||
141 | int uA; | ||
142 | unsigned long flags; | ||
143 | |||
144 | mutex_lock(&led->mutex); | ||
145 | |||
146 | spin_lock_irqsave(&led->value_lock, flags); | ||
147 | |||
148 | if (led->value == LED_OFF) { | ||
149 | spin_unlock_irqrestore(&led->value_lock, flags); | ||
150 | wm8350_led_disable(led); | ||
151 | goto out; | ||
152 | } | ||
153 | |||
154 | /* This scales linearly into the index of valid current | ||
155 | * settings which results in a linear scaling of perceived | ||
156 | * brightness due to the non-linear current settings provided | ||
157 | * by the hardware. | ||
158 | */ | ||
159 | uA = (led->max_uA_index * led->value) / LED_FULL; | ||
160 | spin_unlock_irqrestore(&led->value_lock, flags); | ||
161 | BUG_ON(uA >= ARRAY_SIZE(isink_cur)); | ||
162 | |||
163 | ret = regulator_set_current_limit(led->isink, isink_cur[uA], | ||
164 | isink_cur[uA]); | ||
165 | if (ret != 0) | ||
166 | dev_err(led->cdev.dev, "Failed to set %duA: %d\n", | ||
167 | isink_cur[uA], ret); | ||
168 | |||
169 | wm8350_led_enable(led); | ||
170 | |||
171 | out: | ||
172 | mutex_unlock(&led->mutex); | ||
173 | } | ||
174 | |||
175 | static void wm8350_led_set(struct led_classdev *led_cdev, | ||
176 | enum led_brightness value) | ||
177 | { | ||
178 | struct wm8350_led *led = to_wm8350_led(led_cdev); | ||
179 | unsigned long flags; | ||
180 | |||
181 | spin_lock_irqsave(&led->value_lock, flags); | ||
182 | led->value = value; | ||
183 | schedule_work(&led->work); | ||
184 | spin_unlock_irqrestore(&led->value_lock, flags); | ||
185 | } | ||
186 | |||
187 | static void wm8350_led_shutdown(struct platform_device *pdev) | ||
188 | { | ||
189 | struct wm8350_led *led = platform_get_drvdata(pdev); | ||
190 | |||
191 | mutex_lock(&led->mutex); | ||
192 | led->value = LED_OFF; | ||
193 | wm8350_led_disable(led); | ||
194 | mutex_unlock(&led->mutex); | ||
195 | } | ||
196 | |||
197 | static int wm8350_led_probe(struct platform_device *pdev) | ||
198 | { | ||
199 | struct regulator *isink, *dcdc; | ||
200 | struct wm8350_led *led; | ||
201 | struct wm8350_led_platform_data *pdata = pdev->dev.platform_data; | ||
202 | int ret, i; | ||
203 | |||
204 | if (pdata == NULL) { | ||
205 | dev_err(&pdev->dev, "no platform data\n"); | ||
206 | return -ENODEV; | ||
207 | } | ||
208 | |||
209 | if (pdata->max_uA < isink_cur[0]) { | ||
210 | dev_err(&pdev->dev, "Invalid maximum current %duA\n", | ||
211 | pdata->max_uA); | ||
212 | return -EINVAL; | ||
213 | } | ||
214 | |||
215 | isink = regulator_get(&pdev->dev, "led_isink"); | ||
216 | if (IS_ERR(isink)) { | ||
217 | printk(KERN_ERR "%s: cant get ISINK\n", __func__); | ||
218 | return PTR_ERR(isink); | ||
219 | } | ||
220 | |||
221 | dcdc = regulator_get(&pdev->dev, "led_vcc"); | ||
222 | if (IS_ERR(dcdc)) { | ||
223 | printk(KERN_ERR "%s: cant get DCDC\n", __func__); | ||
224 | ret = PTR_ERR(dcdc); | ||
225 | goto err_isink; | ||
226 | } | ||
227 | |||
228 | led = kzalloc(sizeof(*led), GFP_KERNEL); | ||
229 | if (led == NULL) { | ||
230 | ret = -ENOMEM; | ||
231 | goto err_dcdc; | ||
232 | } | ||
233 | |||
234 | led->cdev.brightness_set = wm8350_led_set; | ||
235 | led->cdev.default_trigger = pdata->default_trigger; | ||
236 | led->cdev.name = pdata->name; | ||
237 | led->cdev.flags |= LED_CORE_SUSPENDRESUME; | ||
238 | led->enabled = regulator_is_enabled(isink); | ||
239 | led->isink = isink; | ||
240 | led->dcdc = dcdc; | ||
241 | |||
242 | for (i = 0; i < ARRAY_SIZE(isink_cur) - 1; i++) | ||
243 | if (isink_cur[i] >= pdata->max_uA) | ||
244 | break; | ||
245 | led->max_uA_index = i; | ||
246 | if (pdata->max_uA != isink_cur[i]) | ||
247 | dev_warn(&pdev->dev, | ||
248 | "Maximum current %duA is not directly supported," | ||
249 | " check platform data\n", | ||
250 | pdata->max_uA); | ||
251 | |||
252 | spin_lock_init(&led->value_lock); | ||
253 | mutex_init(&led->mutex); | ||
254 | INIT_WORK(&led->work, led_work); | ||
255 | led->value = LED_OFF; | ||
256 | platform_set_drvdata(pdev, led); | ||
257 | |||
258 | ret = led_classdev_register(&pdev->dev, &led->cdev); | ||
259 | if (ret < 0) | ||
260 | goto err_led; | ||
261 | |||
262 | return 0; | ||
263 | |||
264 | err_led: | ||
265 | kfree(led); | ||
266 | err_dcdc: | ||
267 | regulator_put(dcdc); | ||
268 | err_isink: | ||
269 | regulator_put(isink); | ||
270 | return ret; | ||
271 | } | ||
272 | |||
273 | static int wm8350_led_remove(struct platform_device *pdev) | ||
274 | { | ||
275 | struct wm8350_led *led = platform_get_drvdata(pdev); | ||
276 | |||
277 | led_classdev_unregister(&led->cdev); | ||
278 | flush_scheduled_work(); | ||
279 | wm8350_led_disable(led); | ||
280 | regulator_put(led->dcdc); | ||
281 | regulator_put(led->isink); | ||
282 | kfree(led); | ||
283 | return 0; | ||
284 | } | ||
285 | |||
286 | static struct platform_driver wm8350_led_driver = { | ||
287 | .driver = { | ||
288 | .name = "wm8350-led", | ||
289 | .owner = THIS_MODULE, | ||
290 | }, | ||
291 | .probe = wm8350_led_probe, | ||
292 | .remove = wm8350_led_remove, | ||
293 | .shutdown = wm8350_led_shutdown, | ||
294 | }; | ||
295 | |||
296 | static int __devinit wm8350_led_init(void) | ||
297 | { | ||
298 | return platform_driver_register(&wm8350_led_driver); | ||
299 | } | ||
300 | module_init(wm8350_led_init); | ||
301 | |||
302 | static void wm8350_led_exit(void) | ||
303 | { | ||
304 | platform_driver_unregister(&wm8350_led_driver); | ||
305 | } | ||
306 | module_exit(wm8350_led_exit); | ||
307 | |||
308 | MODULE_AUTHOR("Mark Brown"); | ||
309 | MODULE_DESCRIPTION("WM8350 LED driver"); | ||
310 | MODULE_LICENSE("GPL"); | ||
311 | MODULE_ALIAS("platform:wm8350-led"); | ||
diff --git a/drivers/leds/leds-wrap.c b/drivers/leds/leds-wrap.c index 2f3aa87f2a1f..2982c86ac4cf 100644 --- a/drivers/leds/leds-wrap.c +++ b/drivers/leds/leds-wrap.c | |||
@@ -56,40 +56,21 @@ static struct led_classdev wrap_power_led = { | |||
56 | .name = "wrap::power", | 56 | .name = "wrap::power", |
57 | .brightness_set = wrap_power_led_set, | 57 | .brightness_set = wrap_power_led_set, |
58 | .default_trigger = "default-on", | 58 | .default_trigger = "default-on", |
59 | .flags = LED_CORE_SUSPENDRESUME, | ||
59 | }; | 60 | }; |
60 | 61 | ||
61 | static struct led_classdev wrap_error_led = { | 62 | static struct led_classdev wrap_error_led = { |
62 | .name = "wrap::error", | 63 | .name = "wrap::error", |
63 | .brightness_set = wrap_error_led_set, | 64 | .brightness_set = wrap_error_led_set, |
65 | .flags = LED_CORE_SUSPENDRESUME, | ||
64 | }; | 66 | }; |
65 | 67 | ||
66 | static struct led_classdev wrap_extra_led = { | 68 | static struct led_classdev wrap_extra_led = { |
67 | .name = "wrap::extra", | 69 | .name = "wrap::extra", |
68 | .brightness_set = wrap_extra_led_set, | 70 | .brightness_set = wrap_extra_led_set, |
71 | .flags = LED_CORE_SUSPENDRESUME, | ||
69 | }; | 72 | }; |
70 | 73 | ||
71 | #ifdef CONFIG_PM | ||
72 | static int wrap_led_suspend(struct platform_device *dev, | ||
73 | pm_message_t state) | ||
74 | { | ||
75 | led_classdev_suspend(&wrap_power_led); | ||
76 | led_classdev_suspend(&wrap_error_led); | ||
77 | led_classdev_suspend(&wrap_extra_led); | ||
78 | return 0; | ||
79 | } | ||
80 | |||
81 | static int wrap_led_resume(struct platform_device *dev) | ||
82 | { | ||
83 | led_classdev_resume(&wrap_power_led); | ||
84 | led_classdev_resume(&wrap_error_led); | ||
85 | led_classdev_resume(&wrap_extra_led); | ||
86 | return 0; | ||
87 | } | ||
88 | #else | ||
89 | #define wrap_led_suspend NULL | ||
90 | #define wrap_led_resume NULL | ||
91 | #endif | ||
92 | |||
93 | static int wrap_led_probe(struct platform_device *pdev) | 74 | static int wrap_led_probe(struct platform_device *pdev) |
94 | { | 75 | { |
95 | int ret; | 76 | int ret; |
@@ -127,8 +108,6 @@ static int wrap_led_remove(struct platform_device *pdev) | |||
127 | static struct platform_driver wrap_led_driver = { | 108 | static struct platform_driver wrap_led_driver = { |
128 | .probe = wrap_led_probe, | 109 | .probe = wrap_led_probe, |
129 | .remove = wrap_led_remove, | 110 | .remove = wrap_led_remove, |
130 | .suspend = wrap_led_suspend, | ||
131 | .resume = wrap_led_resume, | ||
132 | .driver = { | 111 | .driver = { |
133 | .name = DRVNAME, | 112 | .name = DRVNAME, |
134 | .owner = THIS_MODULE, | 113 | .owner = THIS_MODULE, |
diff --git a/drivers/leds/ledtrig-timer.c b/drivers/leds/ledtrig-timer.c index db681962d7bb..3d6531396dda 100644 --- a/drivers/leds/ledtrig-timer.c +++ b/drivers/leds/ledtrig-timer.c | |||
@@ -199,6 +199,7 @@ err_out: | |||
199 | static void timer_trig_deactivate(struct led_classdev *led_cdev) | 199 | static void timer_trig_deactivate(struct led_classdev *led_cdev) |
200 | { | 200 | { |
201 | struct timer_trig_data *timer_data = led_cdev->trigger_data; | 201 | struct timer_trig_data *timer_data = led_cdev->trigger_data; |
202 | unsigned long on = 0, off = 0; | ||
202 | 203 | ||
203 | if (timer_data) { | 204 | if (timer_data) { |
204 | device_remove_file(led_cdev->dev, &dev_attr_delay_on); | 205 | device_remove_file(led_cdev->dev, &dev_attr_delay_on); |
@@ -206,6 +207,10 @@ static void timer_trig_deactivate(struct led_classdev *led_cdev) | |||
206 | del_timer_sync(&timer_data->timer); | 207 | del_timer_sync(&timer_data->timer); |
207 | kfree(timer_data); | 208 | kfree(timer_data); |
208 | } | 209 | } |
210 | |||
211 | /* If there is hardware support for blinking, stop it */ | ||
212 | if (led_cdev->blink_set) | ||
213 | led_cdev->blink_set(led_cdev, &on, &off); | ||
209 | } | 214 | } |
210 | 215 | ||
211 | static struct led_trigger timer_led_trigger = { | 216 | static struct led_trigger timer_led_trigger = { |
diff --git a/drivers/mfd/wm8350-core.c b/drivers/mfd/wm8350-core.c index 3a273ccef3f2..f92595c8f165 100644 --- a/drivers/mfd/wm8350-core.c +++ b/drivers/mfd/wm8350-core.c | |||
@@ -1453,6 +1453,9 @@ void wm8350_device_exit(struct wm8350 *wm8350) | |||
1453 | { | 1453 | { |
1454 | int i; | 1454 | int i; |
1455 | 1455 | ||
1456 | for (i = 0; i < ARRAY_SIZE(wm8350->pmic.led); i++) | ||
1457 | platform_device_unregister(wm8350->pmic.led[i].pdev); | ||
1458 | |||
1456 | for (i = 0; i < ARRAY_SIZE(wm8350->pmic.pdev); i++) | 1459 | for (i = 0; i < ARRAY_SIZE(wm8350->pmic.pdev); i++) |
1457 | platform_device_unregister(wm8350->pmic.pdev[i]); | 1460 | platform_device_unregister(wm8350->pmic.pdev[i]); |
1458 | 1461 | ||
diff --git a/drivers/regulator/wm8350-regulator.c b/drivers/regulator/wm8350-regulator.c index c68c496b2c49..7aa35248181b 100644 --- a/drivers/regulator/wm8350-regulator.c +++ b/drivers/regulator/wm8350-regulator.c | |||
@@ -1412,6 +1412,97 @@ int wm8350_register_regulator(struct wm8350 *wm8350, int reg, | |||
1412 | } | 1412 | } |
1413 | EXPORT_SYMBOL_GPL(wm8350_register_regulator); | 1413 | EXPORT_SYMBOL_GPL(wm8350_register_regulator); |
1414 | 1414 | ||
1415 | /** | ||
1416 | * wm8350_register_led - Register a WM8350 LED output | ||
1417 | * | ||
1418 | * @param wm8350 The WM8350 device to configure. | ||
1419 | * @param lednum LED device index to create. | ||
1420 | * @param dcdc The DCDC to use for the LED. | ||
1421 | * @param isink The ISINK to use for the LED. | ||
1422 | * @param pdata Configuration for the LED. | ||
1423 | * | ||
1424 | * The WM8350 supports the use of an ISINK together with a DCDC to | ||
1425 | * provide a power-efficient LED driver. This function registers the | ||
1426 | * regulators and instantiates the platform device for a LED. The | ||
1427 | * operating modes for the LED regulators must be configured using | ||
1428 | * wm8350_isink_set_flash(), wm8350_dcdc25_set_mode() and | ||
1429 | * wm8350_dcdc_set_slot() prior to calling this function. | ||
1430 | */ | ||
1431 | int wm8350_register_led(struct wm8350 *wm8350, int lednum, int dcdc, int isink, | ||
1432 | struct wm8350_led_platform_data *pdata) | ||
1433 | { | ||
1434 | struct wm8350_led *led; | ||
1435 | struct platform_device *pdev; | ||
1436 | int ret; | ||
1437 | |||
1438 | if (lednum > ARRAY_SIZE(wm8350->pmic.led) || lednum < 0) { | ||
1439 | dev_err(wm8350->dev, "Invalid LED index %d\n", lednum); | ||
1440 | return -ENODEV; | ||
1441 | } | ||
1442 | |||
1443 | led = &wm8350->pmic.led[lednum]; | ||
1444 | |||
1445 | if (led->pdev) { | ||
1446 | dev_err(wm8350->dev, "LED %d already allocated\n", lednum); | ||
1447 | return -EINVAL; | ||
1448 | } | ||
1449 | |||
1450 | pdev = platform_device_alloc("wm8350-led", lednum); | ||
1451 | if (pdev == NULL) { | ||
1452 | dev_err(wm8350->dev, "Failed to allocate LED %d\n", lednum); | ||
1453 | return -ENOMEM; | ||
1454 | } | ||
1455 | |||
1456 | led->isink_consumer.dev = &pdev->dev; | ||
1457 | led->isink_consumer.supply = "led_isink"; | ||
1458 | led->isink_init.num_consumer_supplies = 1; | ||
1459 | led->isink_init.consumer_supplies = &led->isink_consumer; | ||
1460 | led->isink_init.constraints.min_uA = 0; | ||
1461 | led->isink_init.constraints.max_uA = pdata->max_uA; | ||
1462 | led->isink_init.constraints.valid_ops_mask = REGULATOR_CHANGE_CURRENT; | ||
1463 | led->isink_init.constraints.valid_modes_mask = REGULATOR_MODE_NORMAL; | ||
1464 | ret = wm8350_register_regulator(wm8350, isink, &led->isink_init); | ||
1465 | if (ret != 0) { | ||
1466 | platform_device_put(pdev); | ||
1467 | return ret; | ||
1468 | } | ||
1469 | |||
1470 | led->dcdc_consumer.dev = &pdev->dev; | ||
1471 | led->dcdc_consumer.supply = "led_vcc"; | ||
1472 | led->dcdc_init.num_consumer_supplies = 1; | ||
1473 | led->dcdc_init.consumer_supplies = &led->dcdc_consumer; | ||
1474 | led->dcdc_init.constraints.valid_modes_mask = REGULATOR_MODE_NORMAL; | ||
1475 | ret = wm8350_register_regulator(wm8350, dcdc, &led->dcdc_init); | ||
1476 | if (ret != 0) { | ||
1477 | platform_device_put(pdev); | ||
1478 | return ret; | ||
1479 | } | ||
1480 | |||
1481 | switch (isink) { | ||
1482 | case WM8350_ISINK_A: | ||
1483 | wm8350->pmic.isink_A_dcdc = dcdc; | ||
1484 | break; | ||
1485 | case WM8350_ISINK_B: | ||
1486 | wm8350->pmic.isink_B_dcdc = dcdc; | ||
1487 | break; | ||
1488 | } | ||
1489 | |||
1490 | pdev->dev.platform_data = pdata; | ||
1491 | pdev->dev.parent = wm8350->dev; | ||
1492 | ret = platform_device_add(pdev); | ||
1493 | if (ret != 0) { | ||
1494 | dev_err(wm8350->dev, "Failed to register LED %d: %d\n", | ||
1495 | lednum, ret); | ||
1496 | platform_device_put(pdev); | ||
1497 | return ret; | ||
1498 | } | ||
1499 | |||
1500 | led->pdev = pdev; | ||
1501 | |||
1502 | return 0; | ||
1503 | } | ||
1504 | EXPORT_SYMBOL_GPL(wm8350_register_led); | ||
1505 | |||
1415 | static struct platform_driver wm8350_regulator_driver = { | 1506 | static struct platform_driver wm8350_regulator_driver = { |
1416 | .probe = wm8350_regulator_probe, | 1507 | .probe = wm8350_regulator_probe, |
1417 | .remove = wm8350_regulator_remove, | 1508 | .remove = wm8350_regulator_remove, |
diff --git a/drivers/s390/block/dasd.c b/drivers/s390/block/dasd.c index 570ae59c1d5e..bd5914994142 100644 --- a/drivers/s390/block/dasd.c +++ b/drivers/s390/block/dasd.c | |||
@@ -336,6 +336,9 @@ static int | |||
336 | dasd_state_ready_to_online(struct dasd_device * device) | 336 | dasd_state_ready_to_online(struct dasd_device * device) |
337 | { | 337 | { |
338 | int rc; | 338 | int rc; |
339 | struct gendisk *disk; | ||
340 | struct disk_part_iter piter; | ||
341 | struct hd_struct *part; | ||
339 | 342 | ||
340 | if (device->discipline->ready_to_online) { | 343 | if (device->discipline->ready_to_online) { |
341 | rc = device->discipline->ready_to_online(device); | 344 | rc = device->discipline->ready_to_online(device); |
@@ -343,8 +346,14 @@ dasd_state_ready_to_online(struct dasd_device * device) | |||
343 | return rc; | 346 | return rc; |
344 | } | 347 | } |
345 | device->state = DASD_STATE_ONLINE; | 348 | device->state = DASD_STATE_ONLINE; |
346 | if (device->block) | 349 | if (device->block) { |
347 | dasd_schedule_block_bh(device->block); | 350 | dasd_schedule_block_bh(device->block); |
351 | disk = device->block->bdev->bd_disk; | ||
352 | disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0); | ||
353 | while ((part = disk_part_iter_next(&piter))) | ||
354 | kobject_uevent(&part_to_dev(part)->kobj, KOBJ_CHANGE); | ||
355 | disk_part_iter_exit(&piter); | ||
356 | } | ||
348 | return 0; | 357 | return 0; |
349 | } | 358 | } |
350 | 359 | ||
@@ -354,6 +363,9 @@ dasd_state_ready_to_online(struct dasd_device * device) | |||
354 | static int dasd_state_online_to_ready(struct dasd_device *device) | 363 | static int dasd_state_online_to_ready(struct dasd_device *device) |
355 | { | 364 | { |
356 | int rc; | 365 | int rc; |
366 | struct gendisk *disk; | ||
367 | struct disk_part_iter piter; | ||
368 | struct hd_struct *part; | ||
357 | 369 | ||
358 | if (device->discipline->online_to_ready) { | 370 | if (device->discipline->online_to_ready) { |
359 | rc = device->discipline->online_to_ready(device); | 371 | rc = device->discipline->online_to_ready(device); |
@@ -361,6 +373,13 @@ static int dasd_state_online_to_ready(struct dasd_device *device) | |||
361 | return rc; | 373 | return rc; |
362 | } | 374 | } |
363 | device->state = DASD_STATE_READY; | 375 | device->state = DASD_STATE_READY; |
376 | if (device->block) { | ||
377 | disk = device->block->bdev->bd_disk; | ||
378 | disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0); | ||
379 | while ((part = disk_part_iter_next(&piter))) | ||
380 | kobject_uevent(&part_to_dev(part)->kobj, KOBJ_CHANGE); | ||
381 | disk_part_iter_exit(&piter); | ||
382 | } | ||
364 | return 0; | 383 | return 0; |
365 | } | 384 | } |
366 | 385 | ||
diff --git a/drivers/s390/block/dasd_devmap.c b/drivers/s390/block/dasd_devmap.c index 2ef25731d197..300e28a531f8 100644 --- a/drivers/s390/block/dasd_devmap.c +++ b/drivers/s390/block/dasd_devmap.c | |||
@@ -206,6 +206,8 @@ dasd_feature_list(char *str, char **endp) | |||
206 | features |= DASD_FEATURE_USEDIAG; | 206 | features |= DASD_FEATURE_USEDIAG; |
207 | else if (len == 6 && !strncmp(str, "erplog", 6)) | 207 | else if (len == 6 && !strncmp(str, "erplog", 6)) |
208 | features |= DASD_FEATURE_ERPLOG; | 208 | features |= DASD_FEATURE_ERPLOG; |
209 | else if (len == 8 && !strncmp(str, "failfast", 8)) | ||
210 | features |= DASD_FEATURE_FAILFAST; | ||
209 | else { | 211 | else { |
210 | MESSAGE(KERN_WARNING, | 212 | MESSAGE(KERN_WARNING, |
211 | "unsupported feature: %*s, " | 213 | "unsupported feature: %*s, " |
@@ -667,6 +669,51 @@ dasd_device_from_cdev(struct ccw_device *cdev) | |||
667 | */ | 669 | */ |
668 | 670 | ||
669 | /* | 671 | /* |
672 | * failfast controls the behaviour, if no path is available | ||
673 | */ | ||
674 | static ssize_t dasd_ff_show(struct device *dev, struct device_attribute *attr, | ||
675 | char *buf) | ||
676 | { | ||
677 | struct dasd_devmap *devmap; | ||
678 | int ff_flag; | ||
679 | |||
680 | devmap = dasd_find_busid(dev->bus_id); | ||
681 | if (!IS_ERR(devmap)) | ||
682 | ff_flag = (devmap->features & DASD_FEATURE_FAILFAST) != 0; | ||
683 | else | ||
684 | ff_flag = (DASD_FEATURE_DEFAULT & DASD_FEATURE_FAILFAST) != 0; | ||
685 | return snprintf(buf, PAGE_SIZE, ff_flag ? "1\n" : "0\n"); | ||
686 | } | ||
687 | |||
688 | static ssize_t dasd_ff_store(struct device *dev, struct device_attribute *attr, | ||
689 | const char *buf, size_t count) | ||
690 | { | ||
691 | struct dasd_devmap *devmap; | ||
692 | int val; | ||
693 | char *endp; | ||
694 | |||
695 | devmap = dasd_devmap_from_cdev(to_ccwdev(dev)); | ||
696 | if (IS_ERR(devmap)) | ||
697 | return PTR_ERR(devmap); | ||
698 | |||
699 | val = simple_strtoul(buf, &endp, 0); | ||
700 | if (((endp + 1) < (buf + count)) || (val > 1)) | ||
701 | return -EINVAL; | ||
702 | |||
703 | spin_lock(&dasd_devmap_lock); | ||
704 | if (val) | ||
705 | devmap->features |= DASD_FEATURE_FAILFAST; | ||
706 | else | ||
707 | devmap->features &= ~DASD_FEATURE_FAILFAST; | ||
708 | if (devmap->device) | ||
709 | devmap->device->features = devmap->features; | ||
710 | spin_unlock(&dasd_devmap_lock); | ||
711 | return count; | ||
712 | } | ||
713 | |||
714 | static DEVICE_ATTR(failfast, 0644, dasd_ff_show, dasd_ff_store); | ||
715 | |||
716 | /* | ||
670 | * readonly controls the readonly status of a dasd | 717 | * readonly controls the readonly status of a dasd |
671 | */ | 718 | */ |
672 | static ssize_t | 719 | static ssize_t |
@@ -1020,6 +1067,7 @@ static struct attribute * dasd_attrs[] = { | |||
1020 | &dev_attr_use_diag.attr, | 1067 | &dev_attr_use_diag.attr, |
1021 | &dev_attr_eer_enabled.attr, | 1068 | &dev_attr_eer_enabled.attr, |
1022 | &dev_attr_erplog.attr, | 1069 | &dev_attr_erplog.attr, |
1070 | &dev_attr_failfast.attr, | ||
1023 | NULL, | 1071 | NULL, |
1024 | }; | 1072 | }; |
1025 | 1073 | ||
diff --git a/drivers/s390/block/dasd_diag.c b/drivers/s390/block/dasd_diag.c index 7844461a995b..ef2a56952054 100644 --- a/drivers/s390/block/dasd_diag.c +++ b/drivers/s390/block/dasd_diag.c | |||
@@ -544,7 +544,8 @@ static struct dasd_ccw_req *dasd_diag_build_cp(struct dasd_device *memdev, | |||
544 | } | 544 | } |
545 | cqr->retries = DIAG_MAX_RETRIES; | 545 | cqr->retries = DIAG_MAX_RETRIES; |
546 | cqr->buildclk = get_clock(); | 546 | cqr->buildclk = get_clock(); |
547 | if (blk_noretry_request(req)) | 547 | if (blk_noretry_request(req) || |
548 | block->base->features & DASD_FEATURE_FAILFAST) | ||
548 | set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags); | 549 | set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags); |
549 | cqr->startdev = memdev; | 550 | cqr->startdev = memdev; |
550 | cqr->memdev = memdev; | 551 | cqr->memdev = memdev; |
diff --git a/drivers/s390/block/dasd_eckd.c b/drivers/s390/block/dasd_eckd.c index bd2c52e20762..bdb87998f364 100644 --- a/drivers/s390/block/dasd_eckd.c +++ b/drivers/s390/block/dasd_eckd.c | |||
@@ -1700,7 +1700,8 @@ static struct dasd_ccw_req *dasd_eckd_build_cp(struct dasd_device *startdev, | |||
1700 | recid++; | 1700 | recid++; |
1701 | } | 1701 | } |
1702 | } | 1702 | } |
1703 | if (blk_noretry_request(req)) | 1703 | if (blk_noretry_request(req) || |
1704 | block->base->features & DASD_FEATURE_FAILFAST) | ||
1704 | set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags); | 1705 | set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags); |
1705 | cqr->startdev = startdev; | 1706 | cqr->startdev = startdev; |
1706 | cqr->memdev = startdev; | 1707 | cqr->memdev = startdev; |
diff --git a/drivers/s390/block/dasd_fba.c b/drivers/s390/block/dasd_fba.c index 7d442aeff3d1..f1d176021694 100644 --- a/drivers/s390/block/dasd_fba.c +++ b/drivers/s390/block/dasd_fba.c | |||
@@ -355,7 +355,8 @@ static struct dasd_ccw_req *dasd_fba_build_cp(struct dasd_device * memdev, | |||
355 | recid++; | 355 | recid++; |
356 | } | 356 | } |
357 | } | 357 | } |
358 | if (blk_noretry_request(req)) | 358 | if (blk_noretry_request(req) || |
359 | block->base->features & DASD_FEATURE_FAILFAST) | ||
359 | set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags); | 360 | set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags); |
360 | cqr->startdev = memdev; | 361 | cqr->startdev = memdev; |
361 | cqr->memdev = memdev; | 362 | cqr->memdev = memdev; |
diff --git a/drivers/s390/char/Kconfig b/drivers/s390/char/Kconfig index 643033890e34..0769ced52dbd 100644 --- a/drivers/s390/char/Kconfig +++ b/drivers/s390/char/Kconfig | |||
@@ -100,7 +100,7 @@ comment "S/390 tape interface support" | |||
100 | 100 | ||
101 | config S390_TAPE_BLOCK | 101 | config S390_TAPE_BLOCK |
102 | bool "Support for tape block devices" | 102 | bool "Support for tape block devices" |
103 | depends on S390_TAPE | 103 | depends on S390_TAPE && BLOCK |
104 | help | 104 | help |
105 | Select this option if you want to access your channel-attached tape | 105 | Select this option if you want to access your channel-attached tape |
106 | devices using the block device interface. This interface is similar | 106 | devices using the block device interface. This interface is similar |
diff --git a/drivers/s390/cio/qdio_debug.c b/drivers/s390/cio/qdio_debug.c index f8a3b6967f69..da7afb04e71f 100644 --- a/drivers/s390/cio/qdio_debug.c +++ b/drivers/s390/cio/qdio_debug.c | |||
@@ -169,6 +169,8 @@ static void setup_debugfs_entry(struct qdio_q *q, struct ccw_device *cdev) | |||
169 | q->nr); | 169 | q->nr); |
170 | debugfs_queues[i] = debugfs_create_file(name, S_IFREG | S_IRUGO | S_IWUSR, | 170 | debugfs_queues[i] = debugfs_create_file(name, S_IFREG | S_IRUGO | S_IWUSR, |
171 | debugfs_root, q, &debugfs_fops); | 171 | debugfs_root, q, &debugfs_fops); |
172 | if (IS_ERR(debugfs_queues[i])) | ||
173 | debugfs_queues[i] = NULL; | ||
172 | } | 174 | } |
173 | 175 | ||
174 | void qdio_setup_debug_entries(struct qdio_irq *irq_ptr, struct ccw_device *cdev) | 176 | void qdio_setup_debug_entries(struct qdio_irq *irq_ptr, struct ccw_device *cdev) |
diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig index 4a4dd9adc328..72facb9eb7db 100644 --- a/drivers/video/backlight/Kconfig +++ b/drivers/video/backlight/Kconfig | |||
@@ -52,11 +52,11 @@ config LCD_ILI9320 | |||
52 | then say y to include a power driver for it. | 52 | then say y to include a power driver for it. |
53 | 53 | ||
54 | config LCD_TDO24M | 54 | config LCD_TDO24M |
55 | tristate "Toppoly TDO24M LCD Panels support" | 55 | tristate "Toppoly TDO24M and TDO35S LCD Panels support" |
56 | depends on LCD_CLASS_DEVICE && SPI_MASTER | 56 | depends on LCD_CLASS_DEVICE && SPI_MASTER |
57 | default n | 57 | default n |
58 | help | 58 | help |
59 | If you have a Toppoly TDO24M series LCD panel, say y here to | 59 | If you have a Toppoly TDO24M/TDO35S series LCD panel, say y here to |
60 | include the support for it. | 60 | include the support for it. |
61 | 61 | ||
62 | config LCD_VGG2432A4 | 62 | config LCD_VGG2432A4 |
@@ -123,17 +123,14 @@ config BACKLIGHT_ATMEL_PWM | |||
123 | To compile this driver as a module, choose M here: the module will be | 123 | To compile this driver as a module, choose M here: the module will be |
124 | called atmel-pwm-bl. | 124 | called atmel-pwm-bl. |
125 | 125 | ||
126 | config BACKLIGHT_CORGI | 126 | config BACKLIGHT_GENERIC |
127 | tristate "Generic (aka Sharp Corgi) Backlight Driver (DEPRECATED)" | 127 | tristate "Generic (aka Sharp Corgi) Backlight Driver" |
128 | depends on BACKLIGHT_CLASS_DEVICE | 128 | depends on BACKLIGHT_CLASS_DEVICE |
129 | default n | 129 | default y |
130 | help | 130 | help |
131 | Say y to enable the generic platform backlight driver previously | 131 | Say y to enable the generic platform backlight driver previously |
132 | known as the Corgi backlight driver. If you have a Sharp Zaurus | 132 | known as the Corgi backlight driver. If you have a Sharp Zaurus |
133 | SL-C7xx, SL-Cxx00 or SL-6000x say y. Most users can say n. | 133 | SL-C7xx, SL-Cxx00 or SL-6000x say y. |
134 | |||
135 | Note: this driver is marked as deprecated, try enable SPI and | ||
136 | use the new corgi_lcd driver with integrated backlight control | ||
137 | 134 | ||
138 | config BACKLIGHT_LOCOMO | 135 | config BACKLIGHT_LOCOMO |
139 | tristate "Sharp LOCOMO LCD/Backlight Driver" | 136 | tristate "Sharp LOCOMO LCD/Backlight Driver" |
diff --git a/drivers/video/backlight/Makefile b/drivers/video/backlight/Makefile index 103427de6703..363b3cb2f01b 100644 --- a/drivers/video/backlight/Makefile +++ b/drivers/video/backlight/Makefile | |||
@@ -11,7 +11,7 @@ obj-$(CONFIG_LCD_TOSA) += tosa_lcd.o | |||
11 | 11 | ||
12 | obj-$(CONFIG_BACKLIGHT_CLASS_DEVICE) += backlight.o | 12 | obj-$(CONFIG_BACKLIGHT_CLASS_DEVICE) += backlight.o |
13 | obj-$(CONFIG_BACKLIGHT_ATMEL_PWM) += atmel-pwm-bl.o | 13 | obj-$(CONFIG_BACKLIGHT_ATMEL_PWM) += atmel-pwm-bl.o |
14 | obj-$(CONFIG_BACKLIGHT_CORGI) += corgi_bl.o | 14 | obj-$(CONFIG_BACKLIGHT_GENERIC) += generic_bl.o |
15 | obj-$(CONFIG_BACKLIGHT_HP680) += hp680_bl.o | 15 | obj-$(CONFIG_BACKLIGHT_HP680) += hp680_bl.o |
16 | obj-$(CONFIG_BACKLIGHT_LOCOMO) += locomolcd.o | 16 | obj-$(CONFIG_BACKLIGHT_LOCOMO) += locomolcd.o |
17 | obj-$(CONFIG_BACKLIGHT_OMAP1) += omap1_bl.o | 17 | obj-$(CONFIG_BACKLIGHT_OMAP1) += omap1_bl.o |
diff --git a/drivers/video/backlight/backlight.c b/drivers/video/backlight/backlight.c index 0664fc032235..157057c79ca3 100644 --- a/drivers/video/backlight/backlight.c +++ b/drivers/video/backlight/backlight.c | |||
@@ -40,6 +40,10 @@ static int fb_notifier_callback(struct notifier_block *self, | |||
40 | if (!bd->ops->check_fb || | 40 | if (!bd->ops->check_fb || |
41 | bd->ops->check_fb(evdata->info)) { | 41 | bd->ops->check_fb(evdata->info)) { |
42 | bd->props.fb_blank = *(int *)evdata->data; | 42 | bd->props.fb_blank = *(int *)evdata->data; |
43 | if (bd->props.fb_blank == FB_BLANK_UNBLANK) | ||
44 | bd->props.state &= ~BL_CORE_FBBLANK; | ||
45 | else | ||
46 | bd->props.state |= BL_CORE_FBBLANK; | ||
43 | backlight_update_status(bd); | 47 | backlight_update_status(bd); |
44 | } | 48 | } |
45 | mutex_unlock(&bd->ops_lock); | 49 | mutex_unlock(&bd->ops_lock); |
@@ -80,20 +84,18 @@ static ssize_t backlight_show_power(struct device *dev, | |||
80 | static ssize_t backlight_store_power(struct device *dev, | 84 | static ssize_t backlight_store_power(struct device *dev, |
81 | struct device_attribute *attr, const char *buf, size_t count) | 85 | struct device_attribute *attr, const char *buf, size_t count) |
82 | { | 86 | { |
83 | int rc = -ENXIO; | 87 | int rc; |
84 | char *endp; | ||
85 | struct backlight_device *bd = to_backlight_device(dev); | 88 | struct backlight_device *bd = to_backlight_device(dev); |
86 | int power = simple_strtoul(buf, &endp, 0); | 89 | unsigned long power; |
87 | size_t size = endp - buf; | ||
88 | 90 | ||
89 | if (*endp && isspace(*endp)) | 91 | rc = strict_strtoul(buf, 0, &power); |
90 | size++; | 92 | if (rc) |
91 | if (size != count) | 93 | return rc; |
92 | return -EINVAL; | ||
93 | 94 | ||
95 | rc = -ENXIO; | ||
94 | mutex_lock(&bd->ops_lock); | 96 | mutex_lock(&bd->ops_lock); |
95 | if (bd->ops) { | 97 | if (bd->ops) { |
96 | pr_debug("backlight: set power to %d\n", power); | 98 | pr_debug("backlight: set power to %lu\n", power); |
97 | if (bd->props.power != power) { | 99 | if (bd->props.power != power) { |
98 | bd->props.power = power; | 100 | bd->props.power = power; |
99 | backlight_update_status(bd); | 101 | backlight_update_status(bd); |
@@ -116,28 +118,25 @@ static ssize_t backlight_show_brightness(struct device *dev, | |||
116 | static ssize_t backlight_store_brightness(struct device *dev, | 118 | static ssize_t backlight_store_brightness(struct device *dev, |
117 | struct device_attribute *attr, const char *buf, size_t count) | 119 | struct device_attribute *attr, const char *buf, size_t count) |
118 | { | 120 | { |
119 | int rc = -ENXIO; | 121 | int rc; |
120 | char *endp; | ||
121 | struct backlight_device *bd = to_backlight_device(dev); | 122 | struct backlight_device *bd = to_backlight_device(dev); |
122 | int brightness = simple_strtoul(buf, &endp, 0); | 123 | unsigned long brightness; |
123 | size_t size = endp - buf; | 124 | |
125 | rc = strict_strtoul(buf, 0, &brightness); | ||
126 | if (rc) | ||
127 | return rc; | ||
124 | 128 | ||
125 | if (*endp && isspace(*endp)) | 129 | rc = -ENXIO; |
126 | size++; | ||
127 | if (size != count) | ||
128 | return -EINVAL; | ||
129 | 130 | ||
130 | mutex_lock(&bd->ops_lock); | 131 | mutex_lock(&bd->ops_lock); |
131 | if (bd->ops) { | 132 | if (bd->ops) { |
132 | if (brightness > bd->props.max_brightness) | 133 | if (brightness > bd->props.max_brightness) |
133 | rc = -EINVAL; | 134 | rc = -EINVAL; |
134 | else { | 135 | else { |
135 | pr_debug("backlight: set brightness to %d\n", | 136 | pr_debug("backlight: set brightness to %lu\n", |
136 | brightness); | 137 | brightness); |
137 | if (bd->props.brightness != brightness) { | 138 | bd->props.brightness = brightness; |
138 | bd->props.brightness = brightness; | 139 | backlight_update_status(bd); |
139 | backlight_update_status(bd); | ||
140 | } | ||
141 | rc = count; | 140 | rc = count; |
142 | } | 141 | } |
143 | } | 142 | } |
@@ -170,6 +169,34 @@ static ssize_t backlight_show_actual_brightness(struct device *dev, | |||
170 | 169 | ||
171 | static struct class *backlight_class; | 170 | static struct class *backlight_class; |
172 | 171 | ||
172 | static int backlight_suspend(struct device *dev, pm_message_t state) | ||
173 | { | ||
174 | struct backlight_device *bd = to_backlight_device(dev); | ||
175 | |||
176 | if (bd->ops->options & BL_CORE_SUSPENDRESUME) { | ||
177 | mutex_lock(&bd->ops_lock); | ||
178 | bd->props.state |= BL_CORE_SUSPENDED; | ||
179 | backlight_update_status(bd); | ||
180 | mutex_unlock(&bd->ops_lock); | ||
181 | } | ||
182 | |||
183 | return 0; | ||
184 | } | ||
185 | |||
186 | static int backlight_resume(struct device *dev) | ||
187 | { | ||
188 | struct backlight_device *bd = to_backlight_device(dev); | ||
189 | |||
190 | if (bd->ops->options & BL_CORE_SUSPENDRESUME) { | ||
191 | mutex_lock(&bd->ops_lock); | ||
192 | bd->props.state &= ~BL_CORE_SUSPENDED; | ||
193 | backlight_update_status(bd); | ||
194 | mutex_unlock(&bd->ops_lock); | ||
195 | } | ||
196 | |||
197 | return 0; | ||
198 | } | ||
199 | |||
173 | static void bl_device_release(struct device *dev) | 200 | static void bl_device_release(struct device *dev) |
174 | { | 201 | { |
175 | struct backlight_device *bd = to_backlight_device(dev); | 202 | struct backlight_device *bd = to_backlight_device(dev); |
@@ -286,6 +313,8 @@ static int __init backlight_class_init(void) | |||
286 | } | 313 | } |
287 | 314 | ||
288 | backlight_class->dev_attrs = bl_device_attributes; | 315 | backlight_class->dev_attrs = bl_device_attributes; |
316 | backlight_class->suspend = backlight_suspend; | ||
317 | backlight_class->resume = backlight_resume; | ||
289 | return 0; | 318 | return 0; |
290 | } | 319 | } |
291 | 320 | ||
diff --git a/drivers/video/backlight/corgi_bl.c b/drivers/video/backlight/corgi_bl.c deleted file mode 100644 index 4d4d037e3ec9..000000000000 --- a/drivers/video/backlight/corgi_bl.c +++ /dev/null | |||
@@ -1,169 +0,0 @@ | |||
1 | /* | ||
2 | * Backlight Driver for Sharp Zaurus Handhelds (various models) | ||
3 | * | ||
4 | * Copyright (c) 2004-2006 Richard Purdie | ||
5 | * | ||
6 | * Based on Sharp's 2.4 Backlight Driver | ||
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/kernel.h> | ||
16 | #include <linux/init.h> | ||
17 | #include <linux/platform_device.h> | ||
18 | #include <linux/mutex.h> | ||
19 | #include <linux/fb.h> | ||
20 | #include <linux/backlight.h> | ||
21 | |||
22 | static int corgibl_intensity; | ||
23 | static struct backlight_properties corgibl_data; | ||
24 | static struct backlight_device *corgi_backlight_device; | ||
25 | static struct generic_bl_info *bl_machinfo; | ||
26 | |||
27 | static unsigned long corgibl_flags; | ||
28 | #define CORGIBL_SUSPENDED 0x01 | ||
29 | #define CORGIBL_BATTLOW 0x02 | ||
30 | |||
31 | static int corgibl_send_intensity(struct backlight_device *bd) | ||
32 | { | ||
33 | int intensity = bd->props.brightness; | ||
34 | |||
35 | if (bd->props.power != FB_BLANK_UNBLANK) | ||
36 | intensity = 0; | ||
37 | if (bd->props.fb_blank != FB_BLANK_UNBLANK) | ||
38 | intensity = 0; | ||
39 | if (corgibl_flags & CORGIBL_SUSPENDED) | ||
40 | intensity = 0; | ||
41 | if (corgibl_flags & CORGIBL_BATTLOW) | ||
42 | intensity &= bl_machinfo->limit_mask; | ||
43 | |||
44 | bl_machinfo->set_bl_intensity(intensity); | ||
45 | |||
46 | corgibl_intensity = intensity; | ||
47 | |||
48 | if (bl_machinfo->kick_battery) | ||
49 | bl_machinfo->kick_battery(); | ||
50 | |||
51 | return 0; | ||
52 | } | ||
53 | |||
54 | #ifdef CONFIG_PM | ||
55 | static int corgibl_suspend(struct platform_device *pdev, pm_message_t state) | ||
56 | { | ||
57 | struct backlight_device *bd = platform_get_drvdata(pdev); | ||
58 | |||
59 | corgibl_flags |= CORGIBL_SUSPENDED; | ||
60 | backlight_update_status(bd); | ||
61 | return 0; | ||
62 | } | ||
63 | |||
64 | static int corgibl_resume(struct platform_device *pdev) | ||
65 | { | ||
66 | struct backlight_device *bd = platform_get_drvdata(pdev); | ||
67 | |||
68 | corgibl_flags &= ~CORGIBL_SUSPENDED; | ||
69 | backlight_update_status(bd); | ||
70 | return 0; | ||
71 | } | ||
72 | #else | ||
73 | #define corgibl_suspend NULL | ||
74 | #define corgibl_resume NULL | ||
75 | #endif | ||
76 | |||
77 | static int corgibl_get_intensity(struct backlight_device *bd) | ||
78 | { | ||
79 | return corgibl_intensity; | ||
80 | } | ||
81 | |||
82 | /* | ||
83 | * Called when the battery is low to limit the backlight intensity. | ||
84 | * If limit==0 clear any limit, otherwise limit the intensity | ||
85 | */ | ||
86 | void corgibl_limit_intensity(int limit) | ||
87 | { | ||
88 | if (limit) | ||
89 | corgibl_flags |= CORGIBL_BATTLOW; | ||
90 | else | ||
91 | corgibl_flags &= ~CORGIBL_BATTLOW; | ||
92 | backlight_update_status(corgi_backlight_device); | ||
93 | } | ||
94 | EXPORT_SYMBOL(corgibl_limit_intensity); | ||
95 | |||
96 | |||
97 | static struct backlight_ops corgibl_ops = { | ||
98 | .get_brightness = corgibl_get_intensity, | ||
99 | .update_status = corgibl_send_intensity, | ||
100 | }; | ||
101 | |||
102 | static int corgibl_probe(struct platform_device *pdev) | ||
103 | { | ||
104 | struct generic_bl_info *machinfo = pdev->dev.platform_data; | ||
105 | const char *name = "generic-bl"; | ||
106 | |||
107 | bl_machinfo = machinfo; | ||
108 | if (!machinfo->limit_mask) | ||
109 | machinfo->limit_mask = -1; | ||
110 | |||
111 | if (machinfo->name) | ||
112 | name = machinfo->name; | ||
113 | |||
114 | corgi_backlight_device = backlight_device_register (name, | ||
115 | &pdev->dev, NULL, &corgibl_ops); | ||
116 | if (IS_ERR (corgi_backlight_device)) | ||
117 | return PTR_ERR (corgi_backlight_device); | ||
118 | |||
119 | platform_set_drvdata(pdev, corgi_backlight_device); | ||
120 | |||
121 | corgi_backlight_device->props.max_brightness = machinfo->max_intensity; | ||
122 | corgi_backlight_device->props.power = FB_BLANK_UNBLANK; | ||
123 | corgi_backlight_device->props.brightness = machinfo->default_intensity; | ||
124 | backlight_update_status(corgi_backlight_device); | ||
125 | |||
126 | printk("Corgi Backlight Driver Initialized.\n"); | ||
127 | return 0; | ||
128 | } | ||
129 | |||
130 | static int corgibl_remove(struct platform_device *pdev) | ||
131 | { | ||
132 | struct backlight_device *bd = platform_get_drvdata(pdev); | ||
133 | |||
134 | corgibl_data.power = 0; | ||
135 | corgibl_data.brightness = 0; | ||
136 | backlight_update_status(bd); | ||
137 | |||
138 | backlight_device_unregister(bd); | ||
139 | |||
140 | printk("Corgi Backlight Driver Unloaded\n"); | ||
141 | return 0; | ||
142 | } | ||
143 | |||
144 | static struct platform_driver corgibl_driver = { | ||
145 | .probe = corgibl_probe, | ||
146 | .remove = corgibl_remove, | ||
147 | .suspend = corgibl_suspend, | ||
148 | .resume = corgibl_resume, | ||
149 | .driver = { | ||
150 | .name = "generic-bl", | ||
151 | }, | ||
152 | }; | ||
153 | |||
154 | static int __init corgibl_init(void) | ||
155 | { | ||
156 | return platform_driver_register(&corgibl_driver); | ||
157 | } | ||
158 | |||
159 | static void __exit corgibl_exit(void) | ||
160 | { | ||
161 | platform_driver_unregister(&corgibl_driver); | ||
162 | } | ||
163 | |||
164 | module_init(corgibl_init); | ||
165 | module_exit(corgibl_exit); | ||
166 | |||
167 | MODULE_AUTHOR("Richard Purdie <rpurdie@rpsys.net>"); | ||
168 | MODULE_DESCRIPTION("Corgi Backlight Driver"); | ||
169 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/video/backlight/cr_bllcd.c b/drivers/video/backlight/cr_bllcd.c index 26add8898605..b9fe62b475c6 100644 --- a/drivers/video/backlight/cr_bllcd.c +++ b/drivers/video/backlight/cr_bllcd.c | |||
@@ -259,22 +259,18 @@ static int __init cr_backlight_init(void) | |||
259 | { | 259 | { |
260 | int ret = platform_driver_register(&cr_backlight_driver); | 260 | int ret = platform_driver_register(&cr_backlight_driver); |
261 | 261 | ||
262 | if (!ret) { | 262 | if (ret) |
263 | crp = platform_device_alloc("cr_backlight", -1); | 263 | return ret; |
264 | if (!crp) | ||
265 | return -ENOMEM; | ||
266 | 264 | ||
267 | ret = platform_device_add(crp); | 265 | crp = platform_device_register_simple("cr_backlight", -1, NULL, 0); |
268 | 266 | if (IS_ERR(crp)) { | |
269 | if (ret) { | 267 | platform_driver_unregister(&cr_backlight_driver); |
270 | platform_device_put(crp); | 268 | return PTR_ERR(crp); |
271 | platform_driver_unregister(&cr_backlight_driver); | ||
272 | } | ||
273 | } | 269 | } |
274 | 270 | ||
275 | printk("Carillo Ranch Backlight Driver Initialized.\n"); | 271 | printk("Carillo Ranch Backlight Driver Initialized.\n"); |
276 | 272 | ||
277 | return ret; | 273 | return 0; |
278 | } | 274 | } |
279 | 275 | ||
280 | static void __exit cr_backlight_exit(void) | 276 | static void __exit cr_backlight_exit(void) |
diff --git a/drivers/video/backlight/generic_bl.c b/drivers/video/backlight/generic_bl.c new file mode 100644 index 000000000000..6d27f62fdcd0 --- /dev/null +++ b/drivers/video/backlight/generic_bl.c | |||
@@ -0,0 +1,147 @@ | |||
1 | /* | ||
2 | * Generic Backlight Driver | ||
3 | * | ||
4 | * Copyright (c) 2004-2008 Richard Purdie | ||
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 | |||
12 | #include <linux/module.h> | ||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/init.h> | ||
15 | #include <linux/platform_device.h> | ||
16 | #include <linux/mutex.h> | ||
17 | #include <linux/fb.h> | ||
18 | #include <linux/backlight.h> | ||
19 | |||
20 | static int genericbl_intensity; | ||
21 | static struct backlight_device *generic_backlight_device; | ||
22 | static struct generic_bl_info *bl_machinfo; | ||
23 | |||
24 | /* Flag to signal when the battery is low */ | ||
25 | #define GENERICBL_BATTLOW BL_CORE_DRIVER1 | ||
26 | |||
27 | static int genericbl_send_intensity(struct backlight_device *bd) | ||
28 | { | ||
29 | int intensity = bd->props.brightness; | ||
30 | |||
31 | if (bd->props.power != FB_BLANK_UNBLANK) | ||
32 | intensity = 0; | ||
33 | if (bd->props.state & BL_CORE_FBBLANK) | ||
34 | intensity = 0; | ||
35 | if (bd->props.state & BL_CORE_SUSPENDED) | ||
36 | intensity = 0; | ||
37 | if (bd->props.state & GENERICBL_BATTLOW) | ||
38 | intensity &= bl_machinfo->limit_mask; | ||
39 | |||
40 | bl_machinfo->set_bl_intensity(intensity); | ||
41 | |||
42 | genericbl_intensity = intensity; | ||
43 | |||
44 | if (bl_machinfo->kick_battery) | ||
45 | bl_machinfo->kick_battery(); | ||
46 | |||
47 | return 0; | ||
48 | } | ||
49 | |||
50 | static int genericbl_get_intensity(struct backlight_device *bd) | ||
51 | { | ||
52 | return genericbl_intensity; | ||
53 | } | ||
54 | |||
55 | /* | ||
56 | * Called when the battery is low to limit the backlight intensity. | ||
57 | * If limit==0 clear any limit, otherwise limit the intensity | ||
58 | */ | ||
59 | void corgibl_limit_intensity(int limit) | ||
60 | { | ||
61 | struct backlight_device *bd = generic_backlight_device; | ||
62 | |||
63 | mutex_lock(&bd->ops_lock); | ||
64 | if (limit) | ||
65 | bd->props.state |= GENERICBL_BATTLOW; | ||
66 | else | ||
67 | bd->props.state &= ~GENERICBL_BATTLOW; | ||
68 | backlight_update_status(generic_backlight_device); | ||
69 | mutex_unlock(&bd->ops_lock); | ||
70 | } | ||
71 | EXPORT_SYMBOL(corgibl_limit_intensity); | ||
72 | |||
73 | static struct backlight_ops genericbl_ops = { | ||
74 | .options = BL_CORE_SUSPENDRESUME, | ||
75 | .get_brightness = genericbl_get_intensity, | ||
76 | .update_status = genericbl_send_intensity, | ||
77 | }; | ||
78 | |||
79 | static int genericbl_probe(struct platform_device *pdev) | ||
80 | { | ||
81 | struct generic_bl_info *machinfo = pdev->dev.platform_data; | ||
82 | const char *name = "generic-bl"; | ||
83 | struct backlight_device *bd; | ||
84 | |||
85 | bl_machinfo = machinfo; | ||
86 | if (!machinfo->limit_mask) | ||
87 | machinfo->limit_mask = -1; | ||
88 | |||
89 | if (machinfo->name) | ||
90 | name = machinfo->name; | ||
91 | |||
92 | bd = backlight_device_register (name, | ||
93 | &pdev->dev, NULL, &genericbl_ops); | ||
94 | if (IS_ERR (bd)) | ||
95 | return PTR_ERR (bd); | ||
96 | |||
97 | platform_set_drvdata(pdev, bd); | ||
98 | |||
99 | bd->props.max_brightness = machinfo->max_intensity; | ||
100 | bd->props.power = FB_BLANK_UNBLANK; | ||
101 | bd->props.brightness = machinfo->default_intensity; | ||
102 | backlight_update_status(bd); | ||
103 | |||
104 | generic_backlight_device = bd; | ||
105 | |||
106 | printk("Generic Backlight Driver Initialized.\n"); | ||
107 | return 0; | ||
108 | } | ||
109 | |||
110 | static int genericbl_remove(struct platform_device *pdev) | ||
111 | { | ||
112 | struct backlight_device *bd = platform_get_drvdata(pdev); | ||
113 | |||
114 | bd->props.power = 0; | ||
115 | bd->props.brightness = 0; | ||
116 | backlight_update_status(bd); | ||
117 | |||
118 | backlight_device_unregister(bd); | ||
119 | |||
120 | printk("Generic Backlight Driver Unloaded\n"); | ||
121 | return 0; | ||
122 | } | ||
123 | |||
124 | static struct platform_driver genericbl_driver = { | ||
125 | .probe = genericbl_probe, | ||
126 | .remove = genericbl_remove, | ||
127 | .driver = { | ||
128 | .name = "generic-bl", | ||
129 | }, | ||
130 | }; | ||
131 | |||
132 | static int __init genericbl_init(void) | ||
133 | { | ||
134 | return platform_driver_register(&genericbl_driver); | ||
135 | } | ||
136 | |||
137 | static void __exit genericbl_exit(void) | ||
138 | { | ||
139 | platform_driver_unregister(&genericbl_driver); | ||
140 | } | ||
141 | |||
142 | module_init(genericbl_init); | ||
143 | module_exit(genericbl_exit); | ||
144 | |||
145 | MODULE_AUTHOR("Richard Purdie <rpurdie@rpsys.net>"); | ||
146 | MODULE_DESCRIPTION("Generic Backlight Driver"); | ||
147 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/video/backlight/hp680_bl.c b/drivers/video/backlight/hp680_bl.c index d4cfed0b26d5..5be55a20d8c7 100644 --- a/drivers/video/backlight/hp680_bl.c +++ b/drivers/video/backlight/hp680_bl.c | |||
@@ -151,19 +151,15 @@ static int __init hp680bl_init(void) | |||
151 | int ret; | 151 | int ret; |
152 | 152 | ||
153 | ret = platform_driver_register(&hp680bl_driver); | 153 | ret = platform_driver_register(&hp680bl_driver); |
154 | if (!ret) { | 154 | if (ret) |
155 | hp680bl_device = platform_device_alloc("hp680-bl", -1); | 155 | return ret; |
156 | if (!hp680bl_device) | 156 | hp680bl_device = platform_device_register_simple("hp680-bl", -1, |
157 | return -ENOMEM; | 157 | NULL, 0); |
158 | 158 | if (IS_ERR(hp680bl_device)) { | |
159 | ret = platform_device_add(hp680bl_device); | 159 | platform_driver_unregister(&hp680bl_driver); |
160 | 160 | return PTR_ERR(hp680bl_device); | |
161 | if (ret) { | ||
162 | platform_device_put(hp680bl_device); | ||
163 | platform_driver_unregister(&hp680bl_driver); | ||
164 | } | ||
165 | } | 161 | } |
166 | return ret; | 162 | return 0; |
167 | } | 163 | } |
168 | 164 | ||
169 | static void __exit hp680bl_exit(void) | 165 | static void __exit hp680bl_exit(void) |
diff --git a/drivers/video/backlight/mbp_nvidia_bl.c b/drivers/video/backlight/mbp_nvidia_bl.c index 06964af761c6..65864c500455 100644 --- a/drivers/video/backlight/mbp_nvidia_bl.c +++ b/drivers/video/backlight/mbp_nvidia_bl.c | |||
@@ -70,6 +70,7 @@ static int mbp_get_intensity(struct backlight_device *bd) | |||
70 | } | 70 | } |
71 | 71 | ||
72 | static struct backlight_ops mbp_ops = { | 72 | static struct backlight_ops mbp_ops = { |
73 | .options = BL_CORE_SUSPENDRESUME, | ||
73 | .get_brightness = mbp_get_intensity, | 74 | .get_brightness = mbp_get_intensity, |
74 | .update_status = mbp_send_intensity, | 75 | .update_status = mbp_send_intensity, |
75 | }; | 76 | }; |
diff --git a/drivers/video/backlight/progear_bl.c b/drivers/video/backlight/progear_bl.c index 15fb4d58b5bc..9edaf24fd82d 100644 --- a/drivers/video/backlight/progear_bl.c +++ b/drivers/video/backlight/progear_bl.c | |||
@@ -119,20 +119,16 @@ static int __init progearbl_init(void) | |||
119 | { | 119 | { |
120 | int ret = platform_driver_register(&progearbl_driver); | 120 | int ret = platform_driver_register(&progearbl_driver); |
121 | 121 | ||
122 | if (!ret) { | 122 | if (ret) |
123 | progearbl_device = platform_device_alloc("progear-bl", -1); | 123 | return ret; |
124 | if (!progearbl_device) | 124 | progearbl_device = platform_device_register_simple("progear-bl", -1, |
125 | return -ENOMEM; | 125 | NULL, 0); |
126 | 126 | if (IS_ERR(progearbl_device)) { | |
127 | ret = platform_device_add(progearbl_device); | 127 | platform_driver_unregister(&progearbl_driver); |
128 | 128 | return PTR_ERR(progearbl_device); | |
129 | if (ret) { | ||
130 | platform_device_put(progearbl_device); | ||
131 | platform_driver_unregister(&progearbl_driver); | ||
132 | } | ||
133 | } | 129 | } |
134 | 130 | ||
135 | return ret; | 131 | return 0; |
136 | } | 132 | } |
137 | 133 | ||
138 | static void __exit progearbl_exit(void) | 134 | static void __exit progearbl_exit(void) |
diff --git a/drivers/video/backlight/tdo24m.c b/drivers/video/backlight/tdo24m.c index 8427669162ea..1dae7f8f3c6b 100644 --- a/drivers/video/backlight/tdo24m.c +++ b/drivers/video/backlight/tdo24m.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/device.h> | 15 | #include <linux/device.h> |
16 | #include <linux/spi/spi.h> | 16 | #include <linux/spi/spi.h> |
17 | #include <linux/spi/tdo24m.h> | ||
17 | #include <linux/fb.h> | 18 | #include <linux/fb.h> |
18 | #include <linux/lcd.h> | 19 | #include <linux/lcd.h> |
19 | 20 | ||
@@ -31,6 +32,9 @@ struct tdo24m { | |||
31 | struct spi_transfer xfer; | 32 | struct spi_transfer xfer; |
32 | uint8_t *buf; | 33 | uint8_t *buf; |
33 | 34 | ||
35 | int (*adj_mode)(struct tdo24m *lcd, int mode); | ||
36 | int color_invert; | ||
37 | |||
34 | int power; | 38 | int power; |
35 | int mode; | 39 | int mode; |
36 | }; | 40 | }; |
@@ -66,7 +70,7 @@ static uint32_t lcd_panel_off[] = { | |||
66 | CMD_NULL, | 70 | CMD_NULL, |
67 | }; | 71 | }; |
68 | 72 | ||
69 | static uint32_t lcd_vga_pass_through[] = { | 73 | static uint32_t lcd_vga_pass_through_tdo24m[] = { |
70 | CMD1(0xB0, 0x16), | 74 | CMD1(0xB0, 0x16), |
71 | CMD1(0xBC, 0x80), | 75 | CMD1(0xBC, 0x80), |
72 | CMD1(0xE1, 0x00), | 76 | CMD1(0xE1, 0x00), |
@@ -75,7 +79,7 @@ static uint32_t lcd_vga_pass_through[] = { | |||
75 | CMD_NULL, | 79 | CMD_NULL, |
76 | }; | 80 | }; |
77 | 81 | ||
78 | static uint32_t lcd_qvga_pass_through[] = { | 82 | static uint32_t lcd_qvga_pass_through_tdo24m[] = { |
79 | CMD1(0xB0, 0x16), | 83 | CMD1(0xB0, 0x16), |
80 | CMD1(0xBC, 0x81), | 84 | CMD1(0xBC, 0x81), |
81 | CMD1(0xE1, 0x00), | 85 | CMD1(0xE1, 0x00), |
@@ -84,7 +88,7 @@ static uint32_t lcd_qvga_pass_through[] = { | |||
84 | CMD_NULL, | 88 | CMD_NULL, |
85 | }; | 89 | }; |
86 | 90 | ||
87 | static uint32_t lcd_vga_transfer[] = { | 91 | static uint32_t lcd_vga_transfer_tdo24m[] = { |
88 | CMD1(0xcf, 0x02), /* Blanking period control (1) */ | 92 | CMD1(0xcf, 0x02), /* Blanking period control (1) */ |
89 | CMD2(0xd0, 0x08, 0x04), /* Blanking period control (2) */ | 93 | CMD2(0xd0, 0x08, 0x04), /* Blanking period control (2) */ |
90 | CMD1(0xd1, 0x01), /* CKV timing control on/off */ | 94 | CMD1(0xd1, 0x01), /* CKV timing control on/off */ |
@@ -110,6 +114,35 @@ static uint32_t lcd_qvga_transfer[] = { | |||
110 | CMD_NULL, | 114 | CMD_NULL, |
111 | }; | 115 | }; |
112 | 116 | ||
117 | static uint32_t lcd_vga_pass_through_tdo35s[] = { | ||
118 | CMD1(0xB0, 0x16), | ||
119 | CMD1(0xBC, 0x80), | ||
120 | CMD1(0xE1, 0x00), | ||
121 | CMD1(0x3B, 0x00), | ||
122 | CMD_NULL, | ||
123 | }; | ||
124 | |||
125 | static uint32_t lcd_qvga_pass_through_tdo35s[] = { | ||
126 | CMD1(0xB0, 0x16), | ||
127 | CMD1(0xBC, 0x81), | ||
128 | CMD1(0xE1, 0x00), | ||
129 | CMD1(0x3B, 0x22), | ||
130 | CMD_NULL, | ||
131 | }; | ||
132 | |||
133 | static uint32_t lcd_vga_transfer_tdo35s[] = { | ||
134 | CMD1(0xcf, 0x02), /* Blanking period control (1) */ | ||
135 | CMD2(0xd0, 0x08, 0x04), /* Blanking period control (2) */ | ||
136 | CMD1(0xd1, 0x01), /* CKV timing control on/off */ | ||
137 | CMD2(0xd2, 0x00, 0x1e), /* CKV 1,2 timing control */ | ||
138 | CMD2(0xd3, 0x14, 0x28), /* OEV timing control */ | ||
139 | CMD2(0xd4, 0x28, 0x64), /* ASW timing control (1) */ | ||
140 | CMD1(0xd5, 0x28), /* ASW timing control (2) */ | ||
141 | CMD0(0x21), /* Invert for normally black display */ | ||
142 | CMD0(0x29), /* Display on */ | ||
143 | CMD_NULL, | ||
144 | }; | ||
145 | |||
113 | static uint32_t lcd_panel_config[] = { | 146 | static uint32_t lcd_panel_config[] = { |
114 | CMD2(0xb8, 0xff, 0xf9), /* Output control */ | 147 | CMD2(0xb8, 0xff, 0xf9), /* Output control */ |
115 | CMD0(0x11), /* sleep out */ | 148 | CMD0(0x11), /* sleep out */ |
@@ -148,6 +181,8 @@ static int tdo24m_writes(struct tdo24m *lcd, uint32_t *array) | |||
148 | int nparams, err = 0; | 181 | int nparams, err = 0; |
149 | 182 | ||
150 | for (; *p != CMD_NULL; p++) { | 183 | for (; *p != CMD_NULL; p++) { |
184 | if (!lcd->color_invert && *p == CMD0(0x21)) | ||
185 | continue; | ||
151 | 186 | ||
152 | nparams = (*p >> 30) & 0x3; | 187 | nparams = (*p >> 30) & 0x3; |
153 | 188 | ||
@@ -184,12 +219,33 @@ static int tdo24m_adj_mode(struct tdo24m *lcd, int mode) | |||
184 | { | 219 | { |
185 | switch (mode) { | 220 | switch (mode) { |
186 | case MODE_VGA: | 221 | case MODE_VGA: |
187 | tdo24m_writes(lcd, lcd_vga_pass_through); | 222 | tdo24m_writes(lcd, lcd_vga_pass_through_tdo24m); |
188 | tdo24m_writes(lcd, lcd_panel_config); | 223 | tdo24m_writes(lcd, lcd_panel_config); |
189 | tdo24m_writes(lcd, lcd_vga_transfer); | 224 | tdo24m_writes(lcd, lcd_vga_transfer_tdo24m); |
190 | break; | 225 | break; |
191 | case MODE_QVGA: | 226 | case MODE_QVGA: |
192 | tdo24m_writes(lcd, lcd_qvga_pass_through); | 227 | tdo24m_writes(lcd, lcd_qvga_pass_through_tdo24m); |
228 | tdo24m_writes(lcd, lcd_panel_config); | ||
229 | tdo24m_writes(lcd, lcd_qvga_transfer); | ||
230 | break; | ||
231 | default: | ||
232 | return -EINVAL; | ||
233 | } | ||
234 | |||
235 | lcd->mode = mode; | ||
236 | return 0; | ||
237 | } | ||
238 | |||
239 | static int tdo35s_adj_mode(struct tdo24m *lcd, int mode) | ||
240 | { | ||
241 | switch (mode) { | ||
242 | case MODE_VGA: | ||
243 | tdo24m_writes(lcd, lcd_vga_pass_through_tdo35s); | ||
244 | tdo24m_writes(lcd, lcd_panel_config); | ||
245 | tdo24m_writes(lcd, lcd_vga_transfer_tdo35s); | ||
246 | break; | ||
247 | case MODE_QVGA: | ||
248 | tdo24m_writes(lcd, lcd_qvga_pass_through_tdo35s); | ||
193 | tdo24m_writes(lcd, lcd_panel_config); | 249 | tdo24m_writes(lcd, lcd_panel_config); |
194 | tdo24m_writes(lcd, lcd_qvga_transfer); | 250 | tdo24m_writes(lcd, lcd_qvga_transfer); |
195 | break; | 251 | break; |
@@ -213,7 +269,7 @@ static int tdo24m_power_on(struct tdo24m *lcd) | |||
213 | if (err) | 269 | if (err) |
214 | goto out; | 270 | goto out; |
215 | 271 | ||
216 | err = tdo24m_adj_mode(lcd, lcd->mode); | 272 | err = lcd->adj_mode(lcd, lcd->mode); |
217 | out: | 273 | out: |
218 | return err; | 274 | return err; |
219 | } | 275 | } |
@@ -262,7 +318,7 @@ static int tdo24m_set_mode(struct lcd_device *ld, struct fb_videomode *m) | |||
262 | if (lcd->mode == mode) | 318 | if (lcd->mode == mode) |
263 | return 0; | 319 | return 0; |
264 | 320 | ||
265 | return tdo24m_adj_mode(lcd, mode); | 321 | return lcd->adj_mode(lcd, mode); |
266 | } | 322 | } |
267 | 323 | ||
268 | static struct lcd_ops tdo24m_ops = { | 324 | static struct lcd_ops tdo24m_ops = { |
@@ -276,8 +332,16 @@ static int __devinit tdo24m_probe(struct spi_device *spi) | |||
276 | struct tdo24m *lcd; | 332 | struct tdo24m *lcd; |
277 | struct spi_message *m; | 333 | struct spi_message *m; |
278 | struct spi_transfer *x; | 334 | struct spi_transfer *x; |
335 | struct tdo24m_platform_data *pdata; | ||
336 | enum tdo24m_model model; | ||
279 | int err; | 337 | int err; |
280 | 338 | ||
339 | pdata = spi->dev.platform_data; | ||
340 | if (pdata) | ||
341 | model = pdata->model; | ||
342 | else | ||
343 | model = TDO24M; | ||
344 | |||
281 | spi->bits_per_word = 8; | 345 | spi->bits_per_word = 8; |
282 | spi->mode = SPI_MODE_3; | 346 | spi->mode = SPI_MODE_3; |
283 | err = spi_setup(spi); | 347 | err = spi_setup(spi); |
@@ -306,6 +370,20 @@ static int __devinit tdo24m_probe(struct spi_device *spi) | |||
306 | x->tx_buf = &lcd->buf[0]; | 370 | x->tx_buf = &lcd->buf[0]; |
307 | spi_message_add_tail(x, m); | 371 | spi_message_add_tail(x, m); |
308 | 372 | ||
373 | switch (model) { | ||
374 | case TDO24M: | ||
375 | lcd->color_invert = 1; | ||
376 | lcd->adj_mode = tdo24m_adj_mode; | ||
377 | break; | ||
378 | case TDO35S: | ||
379 | lcd->adj_mode = tdo35s_adj_mode; | ||
380 | lcd->color_invert = 0; | ||
381 | break; | ||
382 | default: | ||
383 | dev_err(&spi->dev, "Unsupported model"); | ||
384 | goto out_free; | ||
385 | } | ||
386 | |||
309 | lcd->lcd_dev = lcd_device_register("tdo24m", &spi->dev, | 387 | lcd->lcd_dev = lcd_device_register("tdo24m", &spi->dev, |
310 | lcd, &tdo24m_ops); | 388 | lcd, &tdo24m_ops); |
311 | if (IS_ERR(lcd->lcd_dev)) { | 389 | if (IS_ERR(lcd->lcd_dev)) { |
diff --git a/drivers/video/backlight/tosa_lcd.c b/drivers/video/backlight/tosa_lcd.c index 57a26649f1a5..b7fbc75a62fc 100644 --- a/drivers/video/backlight/tosa_lcd.c +++ b/drivers/video/backlight/tosa_lcd.c | |||
@@ -39,6 +39,7 @@ struct tosa_lcd_data { | |||
39 | struct i2c_client *i2c; | 39 | struct i2c_client *i2c; |
40 | 40 | ||
41 | int lcd_power; | 41 | int lcd_power; |
42 | bool is_vga; | ||
42 | }; | 43 | }; |
43 | 44 | ||
44 | static int tosa_tg_send(struct spi_device *spi, int adrs, uint8_t data) | 45 | static int tosa_tg_send(struct spi_device *spi, int adrs, uint8_t data) |
@@ -81,8 +82,12 @@ static void tosa_lcd_tg_init(struct tosa_lcd_data *data) | |||
81 | static void tosa_lcd_tg_on(struct tosa_lcd_data *data) | 82 | static void tosa_lcd_tg_on(struct tosa_lcd_data *data) |
82 | { | 83 | { |
83 | struct spi_device *spi = data->spi; | 84 | struct spi_device *spi = data->spi; |
84 | const int value = TG_REG0_COLOR | TG_REG0_UD | TG_REG0_LR; | 85 | int value = TG_REG0_COLOR | TG_REG0_UD | TG_REG0_LR; |
85 | tosa_tg_send(spi, TG_PNLCTL, value | TG_REG0_VQV); /* this depends on mode */ | 86 | |
87 | if (data->is_vga) | ||
88 | value |= TG_REG0_VQV; | ||
89 | |||
90 | tosa_tg_send(spi, TG_PNLCTL, value); | ||
86 | 91 | ||
87 | /* TG LCD pannel power up */ | 92 | /* TG LCD pannel power up */ |
88 | tosa_tg_send(spi, TG_PINICTL,0x4); | 93 | tosa_tg_send(spi, TG_PINICTL,0x4); |
@@ -142,9 +147,25 @@ static int tosa_lcd_get_power(struct lcd_device *lcd) | |||
142 | return data->lcd_power; | 147 | return data->lcd_power; |
143 | } | 148 | } |
144 | 149 | ||
150 | static int tosa_lcd_set_mode(struct lcd_device *lcd, struct fb_videomode *mode) | ||
151 | { | ||
152 | struct tosa_lcd_data *data = lcd_get_data(lcd); | ||
153 | |||
154 | if (mode->xres == 320 || mode->yres == 320) | ||
155 | data->is_vga = false; | ||
156 | else | ||
157 | data->is_vga = true; | ||
158 | |||
159 | if (POWER_IS_ON(data->lcd_power)) | ||
160 | tosa_lcd_tg_on(data); | ||
161 | |||
162 | return 0; | ||
163 | } | ||
164 | |||
145 | static struct lcd_ops tosa_lcd_ops = { | 165 | static struct lcd_ops tosa_lcd_ops = { |
146 | .set_power = tosa_lcd_set_power, | 166 | .set_power = tosa_lcd_set_power, |
147 | .get_power = tosa_lcd_get_power, | 167 | .get_power = tosa_lcd_get_power, |
168 | .set_mode = tosa_lcd_set_mode, | ||
148 | }; | 169 | }; |
149 | 170 | ||
150 | static int __devinit tosa_lcd_probe(struct spi_device *spi) | 171 | static int __devinit tosa_lcd_probe(struct spi_device *spi) |
@@ -156,6 +177,8 @@ static int __devinit tosa_lcd_probe(struct spi_device *spi) | |||
156 | if (!data) | 177 | if (!data) |
157 | return -ENOMEM; | 178 | return -ENOMEM; |
158 | 179 | ||
180 | data->is_vga = true; /* defaut to VGA mode */ | ||
181 | |||
159 | /* | 182 | /* |
160 | * bits_per_word cannot be configured in platform data | 183 | * bits_per_word cannot be configured in platform data |
161 | */ | 184 | */ |
diff --git a/drivers/video/backlight/vgg2432a4.c b/drivers/video/backlight/vgg2432a4.c index 593c7687d54a..8e653b8a6f17 100644 --- a/drivers/video/backlight/vgg2432a4.c +++ b/drivers/video/backlight/vgg2432a4.c | |||
@@ -137,7 +137,7 @@ static int vgg2432a4_lcd_init(struct ili9320 *lcd, | |||
137 | 137 | ||
138 | ili9320_write(lcd, ILI9320_RGB_IF1, cfg->rgb_if1); | 138 | ili9320_write(lcd, ILI9320_RGB_IF1, cfg->rgb_if1); |
139 | ili9320_write(lcd, ILI9320_FRAMEMAKER, 0x0); | 139 | ili9320_write(lcd, ILI9320_FRAMEMAKER, 0x0); |
140 | ili9320_write(lcd, ILI9320_RGB_IF2, ILI9320_RGBIF2_DPL); | 140 | ili9320_write(lcd, ILI9320_RGB_IF2, cfg->rgb_if2); |
141 | 141 | ||
142 | ret = ili9320_write_regs(lcd, vgg_init1, ARRAY_SIZE(vgg_init1)); | 142 | ret = ili9320_write_regs(lcd, vgg_init1, ARRAY_SIZE(vgg_init1)); |
143 | if (ret != 0) | 143 | if (ret != 0) |