blob: 65605e4ef3cf6f7b085816ffeb8b2c11af0f4fc4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * HIL MLC state machine and serio interface driver
3 *
4 * Copyright (c) 2001 Brian S. Julin
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification.
13 * 2. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * Alternatively, this software may be distributed under the terms of the
17 * GNU General Public License ("GPL").
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
23 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 *
29 * References:
30 * HP-HIL Technical Reference Manual. Hewlett Packard Product No. 45918A
31 *
32 *
33 * Driver theory of operation:
34 *
Helge Dellerffd51f42007-02-28 23:51:29 -050035 * Some access methods and an ISR is defined by the sub-driver
36 * (e.g. hp_sdc_mlc.c). These methods are expected to provide a
37 * few bits of logic in addition to raw access to the HIL MLC,
38 * specifically, the ISR, which is entirely registered by the
39 * sub-driver and invoked directly, must check for record
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * termination or packet match, at which point a semaphore must
41 * be cleared and then the hil_mlcs_tasklet must be scheduled.
42 *
43 * The hil_mlcs_tasklet processes the state machine for all MLCs
44 * each time it runs, checking each MLC's progress at the current
45 * node in the state machine, and moving the MLC to subsequent nodes
46 * in the state machine when appropriate. It will reschedule
47 * itself if output is pending. (This rescheduling should be replaced
48 * at some point with a sub-driver-specific mechanism.)
49 *
Helge Dellerffd51f42007-02-28 23:51:29 -050050 * A timer task prods the tasklet once per second to prevent
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * hangups when attached devices do not return expected data
52 * and to initiate probes of the loop for new devices.
53 */
54
55#include <linux/hil_mlc.h>
56#include <linux/errno.h>
57#include <linux/kernel.h>
58#include <linux/module.h>
59#include <linux/init.h>
60#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090061#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/list.h>
64
65MODULE_AUTHOR("Brian S. Julin <bri@calyx.com>");
66MODULE_DESCRIPTION("HIL MLC serio");
67MODULE_LICENSE("Dual BSD/GPL");
68
69EXPORT_SYMBOL(hil_mlc_register);
70EXPORT_SYMBOL(hil_mlc_unregister);
71
72#define PREFIX "HIL MLC: "
73
74static LIST_HEAD(hil_mlcs);
75static DEFINE_RWLOCK(hil_mlcs_lock);
76static struct timer_list hil_mlcs_kicker;
77static int hil_mlcs_probe;
78
79static void hil_mlcs_process(unsigned long unused);
Adrian Bunk0486dc12008-06-26 10:46:38 -040080static DECLARE_TASKLET_DISABLED(hil_mlcs_tasklet, hil_mlcs_process, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82
83/* #define HIL_MLC_DEBUG */
84
85/********************** Device info/instance management **********************/
86
Helge Dellerffd51f42007-02-28 23:51:29 -050087static void hil_mlc_clear_di_map(hil_mlc *mlc, int val)
88{
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int j;
Helge Dellerffd51f42007-02-28 23:51:29 -050090
91 for (j = val; j < 7 ; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 mlc->di_map[j] = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Helge Dellerffd51f42007-02-28 23:51:29 -050095static void hil_mlc_clear_di_scratch(hil_mlc *mlc)
96{
97 memset(&mlc->di_scratch, 0, sizeof(mlc->di_scratch));
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Helge Dellerffd51f42007-02-28 23:51:29 -0500100static void hil_mlc_copy_di_scratch(hil_mlc *mlc, int idx)
101{
102 memcpy(&mlc->di[idx], &mlc->di_scratch, sizeof(mlc->di_scratch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Helge Dellerffd51f42007-02-28 23:51:29 -0500105static int hil_mlc_match_di_scratch(hil_mlc *mlc)
106{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 int idx;
108
109 for (idx = 0; idx < HIL_MLC_DEVMEM; idx++) {
Helge Dellerffd51f42007-02-28 23:51:29 -0500110 int j, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 /* In-use slots are not eligible. */
Helge Dellerffd51f42007-02-28 23:51:29 -0500113 for (j = 0; j < 7 ; j++)
114 if (mlc->di_map[j] == idx)
115 found++;
116
117 if (found)
118 continue;
119
120 if (!memcmp(mlc->di + idx, &mlc->di_scratch,
121 sizeof(mlc->di_scratch)))
122 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500124 return idx >= HIL_MLC_DEVMEM ? -1 : idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Helge Dellerffd51f42007-02-28 23:51:29 -0500127static int hil_mlc_find_free_di(hil_mlc *mlc)
128{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int idx;
Helge Dellerffd51f42007-02-28 23:51:29 -0500130
131 /* TODO: Pick all-zero slots first, failing that,
132 * randomize the slot picked among those eligible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 */
134 for (idx = 0; idx < HIL_MLC_DEVMEM; idx++) {
Helge Dellerffd51f42007-02-28 23:51:29 -0500135 int j, found = 0;
136
137 for (j = 0; j < 7 ; j++)
138 if (mlc->di_map[j] == idx)
139 found++;
140
141 if (!found)
142 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500144
145 return idx; /* Note: It is guaranteed at least one above will match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Helge Dellerffd51f42007-02-28 23:51:29 -0500148static inline void hil_mlc_clean_serio_map(hil_mlc *mlc)
149{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 int idx;
Helge Dellerffd51f42007-02-28 23:51:29 -0500151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 for (idx = 0; idx < HIL_MLC_DEVMEM; idx++) {
Helge Dellerffd51f42007-02-28 23:51:29 -0500153 int j, found = 0;
154
155 for (j = 0; j < 7 ; j++)
156 if (mlc->di_map[j] == idx)
157 found++;
158
159 if (!found)
160 mlc->serio_map[idx].di_revmap = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
162}
163
Helge Dellerffd51f42007-02-28 23:51:29 -0500164static void hil_mlc_send_polls(hil_mlc *mlc)
165{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 int did, i, cnt;
167 struct serio *serio;
168 struct serio_driver *drv;
169
170 i = cnt = 0;
171 did = (mlc->ipacket[0] & HIL_PKT_ADDR_MASK) >> 8;
172 serio = did ? mlc->serio[mlc->di_map[did - 1]] : NULL;
173 drv = (serio != NULL) ? serio->drv : NULL;
174
175 while (mlc->icount < 15 - i) {
176 hil_packet p;
Helge Dellerffd51f42007-02-28 23:51:29 -0500177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 p = mlc->ipacket[i];
179 if (did != (p & HIL_PKT_ADDR_MASK) >> 8) {
Helge Dellerffd51f42007-02-28 23:51:29 -0500180 if (drv && drv->interrupt) {
181 drv->interrupt(serio, 0, 0);
182 drv->interrupt(serio, HIL_ERR_INT >> 16, 0);
183 drv->interrupt(serio, HIL_PKT_CMD >> 8, 0);
184 drv->interrupt(serio, HIL_CMD_POL + cnt, 0);
185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 did = (p & HIL_PKT_ADDR_MASK) >> 8;
188 serio = did ? mlc->serio[mlc->di_map[did-1]] : NULL;
189 drv = (serio != NULL) ? serio->drv : NULL;
190 cnt = 0;
191 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500192
193 cnt++;
194 i++;
195
196 if (drv && drv->interrupt) {
197 drv->interrupt(serio, (p >> 24), 0);
198 drv->interrupt(serio, (p >> 16) & 0xff, 0);
199 drv->interrupt(serio, (p >> 8) & ~HIL_PKT_ADDR_MASK, 0);
200 drv->interrupt(serio, p & 0xff, 0);
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203}
204
205/*************************** State engine *********************************/
206
207#define HILSEN_SCHED 0x000100 /* Schedule the tasklet */
208#define HILSEN_BREAK 0x000200 /* Wait until next pass */
209#define HILSEN_UP 0x000400 /* relative node#, decrement */
210#define HILSEN_DOWN 0x000800 /* relative node#, increment */
211#define HILSEN_FOLLOW 0x001000 /* use retval as next node# */
212
213#define HILSEN_MASK 0x0000ff
214#define HILSEN_START 0
215#define HILSEN_RESTART 1
216#define HILSEN_DHR 9
217#define HILSEN_DHR2 10
218#define HILSEN_IFC 14
219#define HILSEN_HEAL0 16
220#define HILSEN_HEAL 18
221#define HILSEN_ACF 21
222#define HILSEN_ACF2 22
223#define HILSEN_DISC0 25
224#define HILSEN_DISC 27
225#define HILSEN_MATCH 40
226#define HILSEN_OPERATE 41
227#define HILSEN_PROBE 44
228#define HILSEN_DSR 52
229#define HILSEN_REPOLL 55
230#define HILSEN_IFCACF 58
231#define HILSEN_END 60
232
233#define HILSEN_NEXT (HILSEN_DOWN | 1)
234#define HILSEN_SAME (HILSEN_DOWN | 0)
235#define HILSEN_LAST (HILSEN_UP | 1)
236
237#define HILSEN_DOZE (HILSEN_SAME | HILSEN_SCHED | HILSEN_BREAK)
238#define HILSEN_SLEEP (HILSEN_SAME | HILSEN_BREAK)
239
Helge Dellerffd51f42007-02-28 23:51:29 -0500240static int hilse_match(hil_mlc *mlc, int unused)
241{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 int rc;
Helge Dellerffd51f42007-02-28 23:51:29 -0500243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 rc = hil_mlc_match_di_scratch(mlc);
245 if (rc == -1) {
246 rc = hil_mlc_find_free_di(mlc);
Helge Dellerffd51f42007-02-28 23:51:29 -0500247 if (rc == -1)
248 goto err;
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#ifdef HIL_MLC_DEBUG
251 printk(KERN_DEBUG PREFIX "new in slot %i\n", rc);
252#endif
253 hil_mlc_copy_di_scratch(mlc, rc);
254 mlc->di_map[mlc->ddi] = rc;
255 mlc->serio_map[rc].di_revmap = mlc->ddi;
256 hil_mlc_clean_serio_map(mlc);
257 serio_rescan(mlc->serio[rc]);
258 return -1;
259 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 mlc->di_map[mlc->ddi] = rc;
262#ifdef HIL_MLC_DEBUG
263 printk(KERN_DEBUG PREFIX "same in slot %i\n", rc);
264#endif
265 mlc->serio_map[rc].di_revmap = mlc->ddi;
266 hil_mlc_clean_serio_map(mlc);
267 return 0;
Helge Dellerffd51f42007-02-28 23:51:29 -0500268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 err:
270 printk(KERN_ERR PREFIX "Residual device slots exhausted, close some serios!\n");
271 return 1;
272}
273
274/* An LCV used to prevent runaway loops, forces 5 second sleep when reset. */
Helge Dellerffd51f42007-02-28 23:51:29 -0500275static int hilse_init_lcv(hil_mlc *mlc, int unused)
276{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 struct timeval tv;
278
279 do_gettimeofday(&tv);
280
Helge Dellerffd51f42007-02-28 23:51:29 -0500281 if (mlc->lcv && (tv.tv_sec - mlc->lcv_tv.tv_sec) < 5)
282 return -1;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 mlc->lcv_tv = tv;
285 mlc->lcv = 0;
Helge Dellerffd51f42007-02-28 23:51:29 -0500286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
288}
289
Helge Dellerffd51f42007-02-28 23:51:29 -0500290static int hilse_inc_lcv(hil_mlc *mlc, int lim)
291{
292 return mlc->lcv++ >= lim ? -1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295#if 0
Helge Dellerffd51f42007-02-28 23:51:29 -0500296static int hilse_set_lcv(hil_mlc *mlc, int val)
297{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 mlc->lcv = val;
Helge Dellerffd51f42007-02-28 23:51:29 -0500299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return 0;
301}
302#endif
303
304/* Management of the discovered device index (zero based, -1 means no devs) */
Helge Dellerffd51f42007-02-28 23:51:29 -0500305static int hilse_set_ddi(hil_mlc *mlc, int val)
306{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 mlc->ddi = val;
308 hil_mlc_clear_di_map(mlc, val + 1);
Helge Dellerffd51f42007-02-28 23:51:29 -0500309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return 0;
311}
312
Helge Dellerffd51f42007-02-28 23:51:29 -0500313static int hilse_dec_ddi(hil_mlc *mlc, int unused)
314{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 mlc->ddi--;
Helge Dellerffd51f42007-02-28 23:51:29 -0500316 if (mlc->ddi <= -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 mlc->ddi = -1;
318 hil_mlc_clear_di_map(mlc, 0);
319 return -1;
320 }
321 hil_mlc_clear_di_map(mlc, mlc->ddi + 1);
Helge Dellerffd51f42007-02-28 23:51:29 -0500322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return 0;
324}
325
Helge Dellerffd51f42007-02-28 23:51:29 -0500326static int hilse_inc_ddi(hil_mlc *mlc, int unused)
327{
328 BUG_ON(mlc->ddi >= 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 mlc->ddi++;
Helge Dellerffd51f42007-02-28 23:51:29 -0500330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return 0;
332}
333
Helge Dellerffd51f42007-02-28 23:51:29 -0500334static int hilse_take_idd(hil_mlc *mlc, int unused)
335{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 int i;
337
Helge Dellerffd51f42007-02-28 23:51:29 -0500338 /* Help the state engine:
339 * Is this a real IDD response or just an echo?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 *
Helge Dellerffd51f42007-02-28 23:51:29 -0500341 * Real IDD response does not start with a command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 */
Helge Dellerffd51f42007-02-28 23:51:29 -0500343 if (mlc->ipacket[0] & HIL_PKT_CMD)
344 goto bail;
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 /* Should have the command echoed further down. */
347 for (i = 1; i < 16; i++) {
Helge Dellerffd51f42007-02-28 23:51:29 -0500348 if (((mlc->ipacket[i] & HIL_PKT_ADDR_MASK) ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 (mlc->ipacket[0] & HIL_PKT_ADDR_MASK)) &&
Helge Dellerffd51f42007-02-28 23:51:29 -0500350 (mlc->ipacket[i] & HIL_PKT_CMD) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 ((mlc->ipacket[i] & HIL_PKT_DATA_MASK) == HIL_CMD_IDD))
352 break;
353 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500354 if (i > 15)
355 goto bail;
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /* And the rest of the packets should still be clear. */
Helge Dellerffd51f42007-02-28 23:51:29 -0500358 while (++i < 16)
359 if (mlc->ipacket[i])
360 break;
361
362 if (i < 16)
363 goto bail;
364
365 for (i = 0; i < 16; i++)
366 mlc->di_scratch.idd[i] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 mlc->ipacket[i] & HIL_PKT_DATA_MASK;
Helge Dellerffd51f42007-02-28 23:51:29 -0500368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /* Next step is to see if RSC supported */
Helge Dellerffd51f42007-02-28 23:51:29 -0500370 if (mlc->di_scratch.idd[1] & HIL_IDD_HEADER_RSC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return HILSEN_NEXT;
Helge Dellerffd51f42007-02-28 23:51:29 -0500372
373 if (mlc->di_scratch.idd[1] & HIL_IDD_HEADER_EXD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return HILSEN_DOWN | 4;
Helge Dellerffd51f42007-02-28 23:51:29 -0500375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
Helge Dellerffd51f42007-02-28 23:51:29 -0500377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 bail:
379 mlc->ddi--;
Helge Dellerffd51f42007-02-28 23:51:29 -0500380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return -1; /* This should send us off to ACF */
382}
383
Helge Dellerffd51f42007-02-28 23:51:29 -0500384static int hilse_take_rsc(hil_mlc *mlc, int unused)
385{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 int i;
387
Helge Dellerffd51f42007-02-28 23:51:29 -0500388 for (i = 0; i < 16; i++)
389 mlc->di_scratch.rsc[i] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 mlc->ipacket[i] & HIL_PKT_DATA_MASK;
Helge Dellerffd51f42007-02-28 23:51:29 -0500391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* Next step is to see if EXD supported (IDD has already been read) */
Helge Dellerffd51f42007-02-28 23:51:29 -0500393 if (mlc->di_scratch.idd[1] & HIL_IDD_HEADER_EXD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return HILSEN_NEXT;
Helge Dellerffd51f42007-02-28 23:51:29 -0500395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return 0;
397}
398
Helge Dellerffd51f42007-02-28 23:51:29 -0500399static int hilse_take_exd(hil_mlc *mlc, int unused)
400{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 int i;
402
Helge Dellerffd51f42007-02-28 23:51:29 -0500403 for (i = 0; i < 16; i++)
404 mlc->di_scratch.exd[i] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 mlc->ipacket[i] & HIL_PKT_DATA_MASK;
Helge Dellerffd51f42007-02-28 23:51:29 -0500406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* Next step is to see if RNM supported. */
Helge Dellerffd51f42007-02-28 23:51:29 -0500408 if (mlc->di_scratch.exd[0] & HIL_EXD_HEADER_RNM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return HILSEN_NEXT;
Helge Dellerffd51f42007-02-28 23:51:29 -0500410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return 0;
412}
413
Helge Dellerffd51f42007-02-28 23:51:29 -0500414static int hilse_take_rnm(hil_mlc *mlc, int unused)
415{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 int i;
417
Helge Dellerffd51f42007-02-28 23:51:29 -0500418 for (i = 0; i < 16; i++)
419 mlc->di_scratch.rnm[i] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 mlc->ipacket[i] & HIL_PKT_DATA_MASK;
Helge Dellerffd51f42007-02-28 23:51:29 -0500421
422 printk(KERN_INFO PREFIX "Device name gotten: %16s\n",
423 mlc->di_scratch.rnm);
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return 0;
426}
427
Helge Dellerffd51f42007-02-28 23:51:29 -0500428static int hilse_operate(hil_mlc *mlc, int repoll)
429{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Helge Dellerffd51f42007-02-28 23:51:29 -0500431 if (mlc->opercnt == 0)
432 hil_mlcs_probe = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 mlc->opercnt = 1;
434
435 hil_mlc_send_polls(mlc);
436
Helge Dellerffd51f42007-02-28 23:51:29 -0500437 if (!hil_mlcs_probe)
438 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 hil_mlcs_probe = 0;
440 mlc->opercnt = 0;
441 return 1;
442}
443
444#define FUNC(funct, funct_arg, zero_rc, neg_rc, pos_rc) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100445{ HILSE_FUNC, { .func = funct }, funct_arg, zero_rc, neg_rc, pos_rc },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#define OUT(pack) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100447{ HILSE_OUT, { .packet = pack }, 0, HILSEN_NEXT, HILSEN_DOZE, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448#define CTS \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100449{ HILSE_CTS, { .packet = 0 }, 0, HILSEN_NEXT | HILSEN_SCHED | HILSEN_BREAK, HILSEN_DOZE, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450#define EXPECT(comp, to, got, got_wrong, timed_out) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100451{ HILSE_EXPECT, { .packet = comp }, to, got, got_wrong, timed_out },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452#define EXPECT_LAST(comp, to, got, got_wrong, timed_out) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100453{ HILSE_EXPECT_LAST, { .packet = comp }, to, got, got_wrong, timed_out },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454#define EXPECT_DISC(comp, to, got, got_wrong, timed_out) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100455{ HILSE_EXPECT_DISC, { .packet = comp }, to, got, got_wrong, timed_out },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456#define IN(to, got, got_error, timed_out) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100457{ HILSE_IN, { .packet = 0 }, to, got, got_error, timed_out },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458#define OUT_DISC(pack) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100459{ HILSE_OUT_DISC, { .packet = pack }, 0, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460#define OUT_LAST(pack) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100461{ HILSE_OUT_LAST, { .packet = pack }, 0, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Adrian Bunk0486dc12008-06-26 10:46:38 -0400463static const struct hilse_node hil_mlc_se[HILSEN_END] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 /* 0 HILSEN_START */
466 FUNC(hilse_init_lcv, 0, HILSEN_NEXT, HILSEN_SLEEP, 0)
467
468 /* 1 HILSEN_RESTART */
469 FUNC(hilse_inc_lcv, 10, HILSEN_NEXT, HILSEN_START, 0)
470 OUT(HIL_CTRL_ONLY) /* Disable APE */
471 CTS
472
473#define TEST_PACKET(x) \
474(HIL_PKT_CMD | (x << HIL_PKT_ADDR_SHIFT) | x << 4 | x)
475
476 OUT(HIL_DO_ALTER_CTRL | HIL_CTRL_TEST | TEST_PACKET(0x5))
477 EXPECT(HIL_ERR_INT | TEST_PACKET(0x5),
478 2000, HILSEN_NEXT, HILSEN_RESTART, HILSEN_RESTART)
479 OUT(HIL_DO_ALTER_CTRL | HIL_CTRL_TEST | TEST_PACKET(0xa))
480 EXPECT(HIL_ERR_INT | TEST_PACKET(0xa),
481 2000, HILSEN_NEXT, HILSEN_RESTART, HILSEN_RESTART)
482 OUT(HIL_CTRL_ONLY | 0) /* Disable test mode */
Helge Dellerffd51f42007-02-28 23:51:29 -0500483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 /* 9 HILSEN_DHR */
485 FUNC(hilse_init_lcv, 0, HILSEN_NEXT, HILSEN_SLEEP, 0)
486
487 /* 10 HILSEN_DHR2 */
488 FUNC(hilse_inc_lcv, 10, HILSEN_NEXT, HILSEN_START, 0)
489 FUNC(hilse_set_ddi, -1, HILSEN_NEXT, 0, 0)
490 OUT(HIL_PKT_CMD | HIL_CMD_DHR)
491 IN(300000, HILSEN_DHR2, HILSEN_DHR2, HILSEN_NEXT)
492
493 /* 14 HILSEN_IFC */
Helge Dellerffd51f42007-02-28 23:51:29 -0500494 OUT(HIL_PKT_CMD | HIL_CMD_IFC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 EXPECT(HIL_PKT_CMD | HIL_CMD_IFC | HIL_ERR_INT,
496 20000, HILSEN_DISC, HILSEN_DHR2, HILSEN_NEXT )
497
498 /* If devices are there, they weren't in PUP or other loopback mode.
499 * We're more concerned at this point with restoring operation
500 * to devices than discovering new ones, so we try to salvage
501 * the loop configuration by closing off the loop.
502 */
503
504 /* 16 HILSEN_HEAL0 */
505 FUNC(hilse_dec_ddi, 0, HILSEN_NEXT, HILSEN_ACF, 0)
506 FUNC(hilse_inc_ddi, 0, HILSEN_NEXT, 0, 0)
507
508 /* 18 HILSEN_HEAL */
509 OUT_LAST(HIL_CMD_ELB)
Helge Dellerffd51f42007-02-28 23:51:29 -0500510 EXPECT_LAST(HIL_CMD_ELB | HIL_ERR_INT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 20000, HILSEN_REPOLL, HILSEN_DSR, HILSEN_NEXT)
512 FUNC(hilse_dec_ddi, 0, HILSEN_HEAL, HILSEN_NEXT, 0)
513
514 /* 21 HILSEN_ACF */
515 FUNC(hilse_init_lcv, 0, HILSEN_NEXT, HILSEN_DOZE, 0)
516
517 /* 22 HILSEN_ACF2 */
518 FUNC(hilse_inc_lcv, 10, HILSEN_NEXT, HILSEN_START, 0)
519 OUT(HIL_PKT_CMD | HIL_CMD_ACF | 1)
520 IN(20000, HILSEN_NEXT, HILSEN_DSR, HILSEN_NEXT)
521
522 /* 25 HILSEN_DISC0 */
523 OUT_DISC(HIL_PKT_CMD | HIL_CMD_ELB)
524 EXPECT_DISC(HIL_PKT_CMD | HIL_CMD_ELB | HIL_ERR_INT,
525 20000, HILSEN_NEXT, HILSEN_DSR, HILSEN_DSR)
526
527 /* Only enter here if response just received */
528 /* 27 HILSEN_DISC */
529 OUT_DISC(HIL_PKT_CMD | HIL_CMD_IDD)
530 EXPECT_DISC(HIL_PKT_CMD | HIL_CMD_IDD | HIL_ERR_INT,
531 20000, HILSEN_NEXT, HILSEN_DSR, HILSEN_START)
532 FUNC(hilse_inc_ddi, 0, HILSEN_NEXT, HILSEN_START, 0)
533 FUNC(hilse_take_idd, 0, HILSEN_MATCH, HILSEN_IFCACF, HILSEN_FOLLOW)
534 OUT_LAST(HIL_PKT_CMD | HIL_CMD_RSC)
535 EXPECT_LAST(HIL_PKT_CMD | HIL_CMD_RSC | HIL_ERR_INT,
536 30000, HILSEN_NEXT, HILSEN_DSR, HILSEN_DSR)
537 FUNC(hilse_take_rsc, 0, HILSEN_MATCH, 0, HILSEN_FOLLOW)
538 OUT_LAST(HIL_PKT_CMD | HIL_CMD_EXD)
539 EXPECT_LAST(HIL_PKT_CMD | HIL_CMD_EXD | HIL_ERR_INT,
540 30000, HILSEN_NEXT, HILSEN_DSR, HILSEN_DSR)
541 FUNC(hilse_take_exd, 0, HILSEN_MATCH, 0, HILSEN_FOLLOW)
542 OUT_LAST(HIL_PKT_CMD | HIL_CMD_RNM)
543 EXPECT_LAST(HIL_PKT_CMD | HIL_CMD_RNM | HIL_ERR_INT,
544 30000, HILSEN_NEXT, HILSEN_DSR, HILSEN_DSR)
545 FUNC(hilse_take_rnm, 0, HILSEN_MATCH, 0, 0)
546
547 /* 40 HILSEN_MATCH */
548 FUNC(hilse_match, 0, HILSEN_NEXT, HILSEN_NEXT, /* TODO */ 0)
549
550 /* 41 HILSEN_OPERATE */
551 OUT(HIL_PKT_CMD | HIL_CMD_POL)
552 EXPECT(HIL_PKT_CMD | HIL_CMD_POL | HIL_ERR_INT,
553 20000, HILSEN_NEXT, HILSEN_DSR, HILSEN_NEXT)
554 FUNC(hilse_operate, 0, HILSEN_OPERATE, HILSEN_IFC, HILSEN_NEXT)
555
556 /* 44 HILSEN_PROBE */
557 OUT_LAST(HIL_PKT_CMD | HIL_CMD_EPT)
Helge Dellerffd51f42007-02-28 23:51:29 -0500558 IN(10000, HILSEN_DISC, HILSEN_DSR, HILSEN_NEXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 OUT_DISC(HIL_PKT_CMD | HIL_CMD_ELB)
560 IN(10000, HILSEN_DISC, HILSEN_DSR, HILSEN_NEXT)
561 OUT(HIL_PKT_CMD | HIL_CMD_ACF | 1)
562 IN(10000, HILSEN_DISC0, HILSEN_DSR, HILSEN_NEXT)
563 OUT_LAST(HIL_PKT_CMD | HIL_CMD_ELB)
564 IN(10000, HILSEN_OPERATE, HILSEN_DSR, HILSEN_DSR)
565
566 /* 52 HILSEN_DSR */
567 FUNC(hilse_set_ddi, -1, HILSEN_NEXT, 0, 0)
568 OUT(HIL_PKT_CMD | HIL_CMD_DSR)
Helge Dellerffd51f42007-02-28 23:51:29 -0500569 IN(20000, HILSEN_DHR, HILSEN_DHR, HILSEN_IFC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 /* 55 HILSEN_REPOLL */
572 OUT(HIL_PKT_CMD | HIL_CMD_RPL)
573 EXPECT(HIL_PKT_CMD | HIL_CMD_RPL | HIL_ERR_INT,
574 20000, HILSEN_NEXT, HILSEN_DSR, HILSEN_NEXT)
575 FUNC(hilse_operate, 1, HILSEN_OPERATE, HILSEN_IFC, HILSEN_PROBE)
576
577 /* 58 HILSEN_IFCACF */
Helge Dellerffd51f42007-02-28 23:51:29 -0500578 OUT(HIL_PKT_CMD | HIL_CMD_IFC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 EXPECT(HIL_PKT_CMD | HIL_CMD_IFC | HIL_ERR_INT,
580 20000, HILSEN_ACF2, HILSEN_DHR2, HILSEN_HEAL)
581
582 /* 60 HILSEN_END */
583};
584
Helge Dellerffd51f42007-02-28 23:51:29 -0500585static inline void hilse_setup_input(hil_mlc *mlc, const struct hilse_node *node)
586{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 switch (node->act) {
589 case HILSE_EXPECT_DISC:
590 mlc->imatch = node->object.packet;
591 mlc->imatch |= ((mlc->ddi + 2) << HIL_PKT_ADDR_SHIFT);
592 break;
593 case HILSE_EXPECT_LAST:
594 mlc->imatch = node->object.packet;
595 mlc->imatch |= ((mlc->ddi + 1) << HIL_PKT_ADDR_SHIFT);
596 break;
597 case HILSE_EXPECT:
598 mlc->imatch = node->object.packet;
599 break;
600 case HILSE_IN:
601 mlc->imatch = 0;
602 break;
603 default:
604 BUG();
605 }
606 mlc->istarted = 1;
607 mlc->intimeout = node->arg;
608 do_gettimeofday(&(mlc->instart));
609 mlc->icount = 15;
610 memset(mlc->ipacket, 0, 16 * sizeof(hil_packet));
Helge Dellerffd51f42007-02-28 23:51:29 -0500611 BUG_ON(down_trylock(&mlc->isem));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
614#ifdef HIL_MLC_DEBUG
Helge Dellerffd51f42007-02-28 23:51:29 -0500615static int doze;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616static int seidx; /* For debug */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617#endif
618
Helge Dellerffd51f42007-02-28 23:51:29 -0500619static int hilse_donode(hil_mlc *mlc)
620{
Helge Deller3acaf542007-02-28 23:51:19 -0500621 const struct hilse_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 int nextidx = 0;
623 int sched_long = 0;
624 unsigned long flags;
625
626#ifdef HIL_MLC_DEBUG
Helge Dellerffd51f42007-02-28 23:51:29 -0500627 if (mlc->seidx && mlc->seidx != seidx &&
628 mlc->seidx != 41 && mlc->seidx != 42 && mlc->seidx != 43) {
629 printk(KERN_DEBUG PREFIX "z%i \n {%i}", doze, mlc->seidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 doze = 0;
631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 seidx = mlc->seidx;
634#endif
635 node = hil_mlc_se + mlc->seidx;
636
637 switch (node->act) {
638 int rc;
639 hil_packet pack;
640
641 case HILSE_FUNC:
Helge Deller3acaf542007-02-28 23:51:19 -0500642 BUG_ON(node->object.func == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 rc = node->object.func(mlc, node->arg);
Helge Dellerffd51f42007-02-28 23:51:29 -0500644 nextidx = (rc > 0) ? node->ugly :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ((rc < 0) ? node->bad : node->good);
Helge Dellerffd51f42007-02-28 23:51:29 -0500646 if (nextidx == HILSEN_FOLLOW)
647 nextidx = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 break;
Helge Dellerffd51f42007-02-28 23:51:29 -0500649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 case HILSE_EXPECT_LAST:
651 case HILSE_EXPECT_DISC:
652 case HILSE_EXPECT:
653 case HILSE_IN:
654 /* Already set up from previous HILSE_OUT_* */
Helge Dellerffd51f42007-02-28 23:51:29 -0500655 write_lock_irqsave(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 rc = mlc->in(mlc, node->arg);
657 if (rc == 2) {
658 nextidx = HILSEN_DOZE;
659 sched_long = 1;
Helge Dellerffd51f42007-02-28 23:51:29 -0500660 write_unlock_irqrestore(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 break;
662 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500663 if (rc == 1)
664 nextidx = node->ugly;
665 else if (rc == 0)
666 nextidx = node->good;
667 else
668 nextidx = node->bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 mlc->istarted = 0;
Helge Dellerffd51f42007-02-28 23:51:29 -0500670 write_unlock_irqrestore(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 break;
Helge Dellerffd51f42007-02-28 23:51:29 -0500672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 case HILSE_OUT_LAST:
Helge Dellerffd51f42007-02-28 23:51:29 -0500674 write_lock_irqsave(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 pack = node->object.packet;
676 pack |= ((mlc->ddi + 1) << HIL_PKT_ADDR_SHIFT);
677 goto out;
Helge Dellerffd51f42007-02-28 23:51:29 -0500678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 case HILSE_OUT_DISC:
Helge Dellerffd51f42007-02-28 23:51:29 -0500680 write_lock_irqsave(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 pack = node->object.packet;
682 pack |= ((mlc->ddi + 2) << HIL_PKT_ADDR_SHIFT);
683 goto out;
Helge Dellerffd51f42007-02-28 23:51:29 -0500684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 case HILSE_OUT:
Helge Dellerffd51f42007-02-28 23:51:29 -0500686 write_lock_irqsave(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 pack = node->object.packet;
688 out:
Rolf Eike Beer71a129f2012-11-10 00:47:13 -0800689 if (!mlc->istarted) {
690 /* Prepare to receive input */
691 if ((node + 1)->act & HILSE_IN)
692 hilse_setup_input(mlc, node + 1);
693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Helge Dellerffd51f42007-02-28 23:51:29 -0500695 write_unlock_irqrestore(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 if (down_trylock(&mlc->osem)) {
698 nextidx = HILSEN_DOZE;
699 break;
700 }
701 up(&mlc->osem);
702
Helge Dellerffd51f42007-02-28 23:51:29 -0500703 write_lock_irqsave(&mlc->lock, flags);
704 if (!mlc->ostarted) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 mlc->ostarted = 1;
706 mlc->opacket = pack;
707 mlc->out(mlc);
708 nextidx = HILSEN_DOZE;
Helge Dellerffd51f42007-02-28 23:51:29 -0500709 write_unlock_irqrestore(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 break;
711 }
712 mlc->ostarted = 0;
713 do_gettimeofday(&(mlc->instart));
Helge Dellerffd51f42007-02-28 23:51:29 -0500714 write_unlock_irqrestore(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 nextidx = HILSEN_NEXT;
716 break;
Helge Dellerffd51f42007-02-28 23:51:29 -0500717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 case HILSE_CTS:
Helge Deller95754992007-03-16 00:59:29 -0400719 write_lock_irqsave(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 nextidx = mlc->cts(mlc) ? node->bad : node->good;
Helge Deller95754992007-03-16 00:59:29 -0400721 write_unlock_irqrestore(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 break;
Helge Dellerffd51f42007-02-28 23:51:29 -0500723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 default:
725 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
727
728#ifdef HIL_MLC_DEBUG
Helge Dellerffd51f42007-02-28 23:51:29 -0500729 if (nextidx == HILSEN_DOZE)
730 doze++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731#endif
732
733 while (nextidx & HILSEN_SCHED) {
734 struct timeval tv;
735
Helge Dellerffd51f42007-02-28 23:51:29 -0500736 if (!sched_long)
737 goto sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 do_gettimeofday(&tv);
Helge Deller3acaf542007-02-28 23:51:19 -0500740 tv.tv_usec += USEC_PER_SEC * (tv.tv_sec - mlc->instart.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 tv.tv_usec -= mlc->instart.tv_usec;
742 if (tv.tv_usec >= mlc->intimeout) goto sched;
Helge Deller3acaf542007-02-28 23:51:19 -0500743 tv.tv_usec = (mlc->intimeout - tv.tv_usec) * HZ / USEC_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (!tv.tv_usec) goto sched;
745 mod_timer(&hil_mlcs_kicker, jiffies + tv.tv_usec);
746 break;
747 sched:
748 tasklet_schedule(&hil_mlcs_tasklet);
749 break;
Helge Dellerffd51f42007-02-28 23:51:29 -0500750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Helge Dellerffd51f42007-02-28 23:51:29 -0500752 if (nextidx & HILSEN_DOWN)
753 mlc->seidx += nextidx & HILSEN_MASK;
754 else if (nextidx & HILSEN_UP)
755 mlc->seidx -= nextidx & HILSEN_MASK;
756 else
757 mlc->seidx = nextidx & HILSEN_MASK;
758
759 if (nextidx & HILSEN_BREAK)
760 return 1;
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return 0;
763}
764
765/******************** tasklet context functions **************************/
Helge Dellerffd51f42007-02-28 23:51:29 -0500766static void hil_mlcs_process(unsigned long unused)
767{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 struct list_head *tmp;
769
770 read_lock(&hil_mlcs_lock);
771 list_for_each(tmp, &hil_mlcs) {
772 struct hil_mlc *mlc = list_entry(tmp, hil_mlc, list);
773 while (hilse_donode(mlc) == 0) {
774#ifdef HIL_MLC_DEBUG
Helge Dellerffd51f42007-02-28 23:51:29 -0500775 if (mlc->seidx != 41 &&
776 mlc->seidx != 42 &&
777 mlc->seidx != 43)
778 printk(KERN_DEBUG PREFIX " + ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779#endif
Helge Dellerffd51f42007-02-28 23:51:29 -0500780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782 read_unlock(&hil_mlcs_lock);
783}
784
785/************************* Keepalive timer task *********************/
786
Adrian Bunk0486dc12008-06-26 10:46:38 -0400787static void hil_mlcs_timer(unsigned long data)
Helge Dellerffd51f42007-02-28 23:51:29 -0500788{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 hil_mlcs_probe = 1;
790 tasklet_schedule(&hil_mlcs_tasklet);
791 /* Re-insert the periodic task. */
792 if (!timer_pending(&hil_mlcs_kicker))
793 mod_timer(&hil_mlcs_kicker, jiffies + HZ);
794}
795
796/******************** user/kernel context functions **********************/
797
Helge Dellerffd51f42007-02-28 23:51:29 -0500798static int hil_mlc_serio_write(struct serio *serio, unsigned char c)
799{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 struct hil_mlc_serio_map *map;
801 struct hil_mlc *mlc;
802 struct serio_driver *drv;
803 uint8_t *idx, *last;
804
805 map = serio->port_data;
Helge Dellerffd51f42007-02-28 23:51:29 -0500806 BUG_ON(map == NULL);
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 mlc = map->mlc;
Helge Dellerffd51f42007-02-28 23:51:29 -0500809 BUG_ON(mlc == NULL);
810
811 mlc->serio_opacket[map->didx] |=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 ((hil_packet)c) << (8 * (3 - mlc->serio_oidx[map->didx]));
813
814 if (mlc->serio_oidx[map->didx] >= 3) {
815 /* for now only commands */
Helge Dellerffd51f42007-02-28 23:51:29 -0500816 if (!(mlc->serio_opacket[map->didx] & HIL_PKT_CMD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return -EIO;
818 switch (mlc->serio_opacket[map->didx] & HIL_PKT_DATA_MASK) {
819 case HIL_CMD_IDD:
820 idx = mlc->di[map->didx].idd;
821 goto emu;
822 case HIL_CMD_RSC:
823 idx = mlc->di[map->didx].rsc;
824 goto emu;
825 case HIL_CMD_EXD:
826 idx = mlc->di[map->didx].exd;
827 goto emu;
828 case HIL_CMD_RNM:
829 idx = mlc->di[map->didx].rnm;
830 goto emu;
831 default:
832 break;
833 }
834 mlc->serio_oidx[map->didx] = 0;
835 mlc->serio_opacket[map->didx] = 0;
836 }
837
838 mlc->serio_oidx[map->didx]++;
839 return -EIO;
840 emu:
841 drv = serio->drv;
Helge Dellerffd51f42007-02-28 23:51:29 -0500842 BUG_ON(drv == NULL);
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 last = idx + 15;
Helge Dellerffd51f42007-02-28 23:51:29 -0500845 while ((last != idx) && (*last == 0))
846 last--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 while (idx != last) {
Matthew Wilcoxbe577a52006-10-06 20:47:23 -0600849 drv->interrupt(serio, 0, 0);
850 drv->interrupt(serio, HIL_ERR_INT >> 16, 0);
851 drv->interrupt(serio, 0, 0);
852 drv->interrupt(serio, *idx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 idx++;
854 }
Matthew Wilcoxbe577a52006-10-06 20:47:23 -0600855 drv->interrupt(serio, 0, 0);
856 drv->interrupt(serio, HIL_ERR_INT >> 16, 0);
857 drv->interrupt(serio, HIL_PKT_CMD >> 8, 0);
858 drv->interrupt(serio, *idx, 0);
Helge Dellerffd51f42007-02-28 23:51:29 -0500859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 mlc->serio_oidx[map->didx] = 0;
861 mlc->serio_opacket[map->didx] = 0;
862
863 return 0;
864}
865
Helge Dellerffd51f42007-02-28 23:51:29 -0500866static int hil_mlc_serio_open(struct serio *serio)
867{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct hil_mlc_serio_map *map;
869 struct hil_mlc *mlc;
870
Matthew Wilcox6ab0f5c2005-10-21 22:58:51 -0400871 if (serio_get_drvdata(serio) != NULL)
872 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 map = serio->port_data;
Helge Dellerffd51f42007-02-28 23:51:29 -0500875 BUG_ON(map == NULL);
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 mlc = map->mlc;
Helge Dellerffd51f42007-02-28 23:51:29 -0500878 BUG_ON(mlc == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 return 0;
881}
882
Helge Dellerffd51f42007-02-28 23:51:29 -0500883static void hil_mlc_serio_close(struct serio *serio)
884{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 struct hil_mlc_serio_map *map;
886 struct hil_mlc *mlc;
887
888 map = serio->port_data;
Helge Dellerffd51f42007-02-28 23:51:29 -0500889 BUG_ON(map == NULL);
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 mlc = map->mlc;
Helge Dellerffd51f42007-02-28 23:51:29 -0500892 BUG_ON(mlc == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Matthew Wilcox6ab0f5c2005-10-21 22:58:51 -0400894 serio_set_drvdata(serio, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 serio->drv = NULL;
896 /* TODO wake up interruptable */
897}
898
Helge Deller3acaf542007-02-28 23:51:19 -0500899static const struct serio_device_id hil_mlc_serio_id = {
Matthew Wilcox6ab0f5c2005-10-21 22:58:51 -0400900 .type = SERIO_HIL_MLC,
901 .proto = SERIO_HIL,
902 .extra = SERIO_ANY,
903 .id = SERIO_ANY,
904};
905
Helge Dellerffd51f42007-02-28 23:51:29 -0500906int hil_mlc_register(hil_mlc *mlc)
907{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 int i;
Helge Dellerffd51f42007-02-28 23:51:29 -0500909 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Helge Dellerffd51f42007-02-28 23:51:29 -0500911 BUG_ON(mlc == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 mlc->istarted = 0;
Helge Dellerffd51f42007-02-28 23:51:29 -0500914 mlc->ostarted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Helge Dellerffd51f42007-02-28 23:51:29 -0500916 rwlock_init(&mlc->lock);
Thomas Gleixner45e84922010-09-07 14:32:01 +0000917 sema_init(&mlc->osem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Thomas Gleixner45e84922010-09-07 14:32:01 +0000919 sema_init(&mlc->isem, 1);
Helge Dellerffd51f42007-02-28 23:51:29 -0500920 mlc->icount = -1;
921 mlc->imatch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 mlc->opercnt = 0;
924
Thomas Gleixner45e84922010-09-07 14:32:01 +0000925 sema_init(&(mlc->csem), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 hil_mlc_clear_di_scratch(mlc);
928 hil_mlc_clear_di_map(mlc, 0);
929 for (i = 0; i < HIL_MLC_DEVMEM; i++) {
930 struct serio *mlc_serio;
931 hil_mlc_copy_di_scratch(mlc, i);
Eric Sesterhennb39787a2006-03-14 00:09:16 -0500932 mlc_serio = kzalloc(sizeof(*mlc_serio), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 mlc->serio[i] = mlc_serio;
Jesper Juhl39de5212010-11-20 13:36:49 -0800934 if (!mlc->serio[i]) {
935 for (; i >= 0; i--)
936 kfree(mlc->serio[i]);
937 return -ENOMEM;
938 }
Helge Deller3acaf542007-02-28 23:51:19 -0500939 snprintf(mlc_serio->name, sizeof(mlc_serio->name)-1, "HIL_SERIO%d", i);
940 snprintf(mlc_serio->phys, sizeof(mlc_serio->phys)-1, "HIL%d", i);
Matthew Wilcox6ab0f5c2005-10-21 22:58:51 -0400941 mlc_serio->id = hil_mlc_serio_id;
Helge Dellerc10a93a2008-12-29 04:44:44 -0800942 mlc_serio->id.id = i; /* HIL port no. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 mlc_serio->write = hil_mlc_serio_write;
944 mlc_serio->open = hil_mlc_serio_open;
945 mlc_serio->close = hil_mlc_serio_close;
946 mlc_serio->port_data = &(mlc->serio_map[i]);
947 mlc->serio_map[i].mlc = mlc;
948 mlc->serio_map[i].didx = i;
949 mlc->serio_map[i].di_revmap = -1;
950 mlc->serio_opacket[i] = 0;
951 mlc->serio_oidx[i] = 0;
952 serio_register_port(mlc_serio);
953 }
954
955 mlc->tasklet = &hil_mlcs_tasklet;
956
957 write_lock_irqsave(&hil_mlcs_lock, flags);
958 list_add_tail(&mlc->list, &hil_mlcs);
959 mlc->seidx = HILSEN_START;
960 write_unlock_irqrestore(&hil_mlcs_lock, flags);
961
962 tasklet_schedule(&hil_mlcs_tasklet);
963 return 0;
964}
965
Helge Dellerffd51f42007-02-28 23:51:29 -0500966int hil_mlc_unregister(hil_mlc *mlc)
967{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 struct list_head *tmp;
Helge Dellerffd51f42007-02-28 23:51:29 -0500969 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 int i;
971
Helge Dellerffd51f42007-02-28 23:51:29 -0500972 BUG_ON(mlc == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 write_lock_irqsave(&hil_mlcs_lock, flags);
Helge Dellerffd51f42007-02-28 23:51:29 -0500975 list_for_each(tmp, &hil_mlcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (list_entry(tmp, hil_mlc, list) == mlc)
977 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 /* not found in list */
980 write_unlock_irqrestore(&hil_mlcs_lock, flags);
981 tasklet_schedule(&hil_mlcs_tasklet);
982 return -ENODEV;
983
984 found:
985 list_del(tmp);
Helge Dellerffd51f42007-02-28 23:51:29 -0500986 write_unlock_irqrestore(&hil_mlcs_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 for (i = 0; i < HIL_MLC_DEVMEM; i++) {
989 serio_unregister_port(mlc->serio[i]);
990 mlc->serio[i] = NULL;
991 }
992
993 tasklet_schedule(&hil_mlcs_tasklet);
994 return 0;
995}
996
997/**************************** Module interface *************************/
998
999static int __init hil_mlc_init(void)
1000{
Dmitry Torokhove40ec6f2009-12-11 21:39:51 -08001001 setup_timer(&hil_mlcs_kicker, &hil_mlcs_timer, 0);
1002 mod_timer(&hil_mlcs_kicker, jiffies + HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 tasklet_enable(&hil_mlcs_tasklet);
1005
1006 return 0;
1007}
Helge Dellerffd51f42007-02-28 23:51:29 -05001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009static void __exit hil_mlc_exit(void)
1010{
Dmitry Torokhove40ec6f2009-12-11 21:39:51 -08001011 del_timer_sync(&hil_mlcs_kicker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 tasklet_kill(&hil_mlcs_tasklet);
1013}
Helge Dellerffd51f42007-02-28 23:51:29 -05001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015module_init(hil_mlc_init);
1016module_exit(hil_mlc_exit);