blob: 7ba9f2b2c0414c1e7389fef80045e7c61a9a6d01 [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>
61#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/list.h>
63
64MODULE_AUTHOR("Brian S. Julin <bri@calyx.com>");
65MODULE_DESCRIPTION("HIL MLC serio");
66MODULE_LICENSE("Dual BSD/GPL");
67
68EXPORT_SYMBOL(hil_mlc_register);
69EXPORT_SYMBOL(hil_mlc_unregister);
70
71#define PREFIX "HIL MLC: "
72
73static LIST_HEAD(hil_mlcs);
74static DEFINE_RWLOCK(hil_mlcs_lock);
75static struct timer_list hil_mlcs_kicker;
76static int hil_mlcs_probe;
77
78static void hil_mlcs_process(unsigned long unused);
Adrian Bunk0486dc12008-06-26 10:46:38 -040079static DECLARE_TASKLET_DISABLED(hil_mlcs_tasklet, hil_mlcs_process, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81
82/* #define HIL_MLC_DEBUG */
83
84/********************** Device info/instance management **********************/
85
Helge Dellerffd51f42007-02-28 23:51:29 -050086static void hil_mlc_clear_di_map(hil_mlc *mlc, int val)
87{
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 int j;
Helge Dellerffd51f42007-02-28 23:51:29 -050089
90 for (j = val; j < 7 ; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 mlc->di_map[j] = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Helge Dellerffd51f42007-02-28 23:51:29 -050094static void hil_mlc_clear_di_scratch(hil_mlc *mlc)
95{
96 memset(&mlc->di_scratch, 0, sizeof(mlc->di_scratch));
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Helge Dellerffd51f42007-02-28 23:51:29 -050099static void hil_mlc_copy_di_scratch(hil_mlc *mlc, int idx)
100{
101 memcpy(&mlc->di[idx], &mlc->di_scratch, sizeof(mlc->di_scratch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Helge Dellerffd51f42007-02-28 23:51:29 -0500104static int hil_mlc_match_di_scratch(hil_mlc *mlc)
105{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 int idx;
107
108 for (idx = 0; idx < HIL_MLC_DEVMEM; idx++) {
Helge Dellerffd51f42007-02-28 23:51:29 -0500109 int j, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 /* In-use slots are not eligible. */
Helge Dellerffd51f42007-02-28 23:51:29 -0500112 for (j = 0; j < 7 ; j++)
113 if (mlc->di_map[j] == idx)
114 found++;
115
116 if (found)
117 continue;
118
119 if (!memcmp(mlc->di + idx, &mlc->di_scratch,
120 sizeof(mlc->di_scratch)))
121 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500123 return idx >= HIL_MLC_DEVMEM ? -1 : idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Helge Dellerffd51f42007-02-28 23:51:29 -0500126static int hil_mlc_find_free_di(hil_mlc *mlc)
127{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 int idx;
Helge Dellerffd51f42007-02-28 23:51:29 -0500129
130 /* TODO: Pick all-zero slots first, failing that,
131 * randomize the slot picked among those eligible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 */
133 for (idx = 0; idx < HIL_MLC_DEVMEM; idx++) {
Helge Dellerffd51f42007-02-28 23:51:29 -0500134 int j, found = 0;
135
136 for (j = 0; j < 7 ; j++)
137 if (mlc->di_map[j] == idx)
138 found++;
139
140 if (!found)
141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500143
144 return idx; /* Note: It is guaranteed at least one above will match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Helge Dellerffd51f42007-02-28 23:51:29 -0500147static inline void hil_mlc_clean_serio_map(hil_mlc *mlc)
148{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 int idx;
Helge Dellerffd51f42007-02-28 23:51:29 -0500150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 for (idx = 0; idx < HIL_MLC_DEVMEM; idx++) {
Helge Dellerffd51f42007-02-28 23:51:29 -0500152 int j, found = 0;
153
154 for (j = 0; j < 7 ; j++)
155 if (mlc->di_map[j] == idx)
156 found++;
157
158 if (!found)
159 mlc->serio_map[idx].di_revmap = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161}
162
Helge Dellerffd51f42007-02-28 23:51:29 -0500163static void hil_mlc_send_polls(hil_mlc *mlc)
164{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 int did, i, cnt;
166 struct serio *serio;
167 struct serio_driver *drv;
168
169 i = cnt = 0;
170 did = (mlc->ipacket[0] & HIL_PKT_ADDR_MASK) >> 8;
171 serio = did ? mlc->serio[mlc->di_map[did - 1]] : NULL;
172 drv = (serio != NULL) ? serio->drv : NULL;
173
174 while (mlc->icount < 15 - i) {
175 hil_packet p;
Helge Dellerffd51f42007-02-28 23:51:29 -0500176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 p = mlc->ipacket[i];
178 if (did != (p & HIL_PKT_ADDR_MASK) >> 8) {
Helge Dellerffd51f42007-02-28 23:51:29 -0500179 if (drv && drv->interrupt) {
180 drv->interrupt(serio, 0, 0);
181 drv->interrupt(serio, HIL_ERR_INT >> 16, 0);
182 drv->interrupt(serio, HIL_PKT_CMD >> 8, 0);
183 drv->interrupt(serio, HIL_CMD_POL + cnt, 0);
184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 did = (p & HIL_PKT_ADDR_MASK) >> 8;
187 serio = did ? mlc->serio[mlc->di_map[did-1]] : NULL;
188 drv = (serio != NULL) ? serio->drv : NULL;
189 cnt = 0;
190 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500191
192 cnt++;
193 i++;
194
195 if (drv && drv->interrupt) {
196 drv->interrupt(serio, (p >> 24), 0);
197 drv->interrupt(serio, (p >> 16) & 0xff, 0);
198 drv->interrupt(serio, (p >> 8) & ~HIL_PKT_ADDR_MASK, 0);
199 drv->interrupt(serio, p & 0xff, 0);
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202}
203
204/*************************** State engine *********************************/
205
206#define HILSEN_SCHED 0x000100 /* Schedule the tasklet */
207#define HILSEN_BREAK 0x000200 /* Wait until next pass */
208#define HILSEN_UP 0x000400 /* relative node#, decrement */
209#define HILSEN_DOWN 0x000800 /* relative node#, increment */
210#define HILSEN_FOLLOW 0x001000 /* use retval as next node# */
211
212#define HILSEN_MASK 0x0000ff
213#define HILSEN_START 0
214#define HILSEN_RESTART 1
215#define HILSEN_DHR 9
216#define HILSEN_DHR2 10
217#define HILSEN_IFC 14
218#define HILSEN_HEAL0 16
219#define HILSEN_HEAL 18
220#define HILSEN_ACF 21
221#define HILSEN_ACF2 22
222#define HILSEN_DISC0 25
223#define HILSEN_DISC 27
224#define HILSEN_MATCH 40
225#define HILSEN_OPERATE 41
226#define HILSEN_PROBE 44
227#define HILSEN_DSR 52
228#define HILSEN_REPOLL 55
229#define HILSEN_IFCACF 58
230#define HILSEN_END 60
231
232#define HILSEN_NEXT (HILSEN_DOWN | 1)
233#define HILSEN_SAME (HILSEN_DOWN | 0)
234#define HILSEN_LAST (HILSEN_UP | 1)
235
236#define HILSEN_DOZE (HILSEN_SAME | HILSEN_SCHED | HILSEN_BREAK)
237#define HILSEN_SLEEP (HILSEN_SAME | HILSEN_BREAK)
238
Helge Dellerffd51f42007-02-28 23:51:29 -0500239static int hilse_match(hil_mlc *mlc, int unused)
240{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 int rc;
Helge Dellerffd51f42007-02-28 23:51:29 -0500242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 rc = hil_mlc_match_di_scratch(mlc);
244 if (rc == -1) {
245 rc = hil_mlc_find_free_di(mlc);
Helge Dellerffd51f42007-02-28 23:51:29 -0500246 if (rc == -1)
247 goto err;
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#ifdef HIL_MLC_DEBUG
250 printk(KERN_DEBUG PREFIX "new in slot %i\n", rc);
251#endif
252 hil_mlc_copy_di_scratch(mlc, rc);
253 mlc->di_map[mlc->ddi] = rc;
254 mlc->serio_map[rc].di_revmap = mlc->ddi;
255 hil_mlc_clean_serio_map(mlc);
256 serio_rescan(mlc->serio[rc]);
257 return -1;
258 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 mlc->di_map[mlc->ddi] = rc;
261#ifdef HIL_MLC_DEBUG
262 printk(KERN_DEBUG PREFIX "same in slot %i\n", rc);
263#endif
264 mlc->serio_map[rc].di_revmap = mlc->ddi;
265 hil_mlc_clean_serio_map(mlc);
266 return 0;
Helge Dellerffd51f42007-02-28 23:51:29 -0500267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 err:
269 printk(KERN_ERR PREFIX "Residual device slots exhausted, close some serios!\n");
270 return 1;
271}
272
273/* An LCV used to prevent runaway loops, forces 5 second sleep when reset. */
Helge Dellerffd51f42007-02-28 23:51:29 -0500274static int hilse_init_lcv(hil_mlc *mlc, int unused)
275{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 struct timeval tv;
277
278 do_gettimeofday(&tv);
279
Helge Dellerffd51f42007-02-28 23:51:29 -0500280 if (mlc->lcv && (tv.tv_sec - mlc->lcv_tv.tv_sec) < 5)
281 return -1;
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 mlc->lcv_tv = tv;
284 mlc->lcv = 0;
Helge Dellerffd51f42007-02-28 23:51:29 -0500285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return 0;
287}
288
Helge Dellerffd51f42007-02-28 23:51:29 -0500289static int hilse_inc_lcv(hil_mlc *mlc, int lim)
290{
291 return mlc->lcv++ >= lim ? -1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294#if 0
Helge Dellerffd51f42007-02-28 23:51:29 -0500295static int hilse_set_lcv(hil_mlc *mlc, int val)
296{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 mlc->lcv = val;
Helge Dellerffd51f42007-02-28 23:51:29 -0500298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return 0;
300}
301#endif
302
303/* Management of the discovered device index (zero based, -1 means no devs) */
Helge Dellerffd51f42007-02-28 23:51:29 -0500304static int hilse_set_ddi(hil_mlc *mlc, int val)
305{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 mlc->ddi = val;
307 hil_mlc_clear_di_map(mlc, val + 1);
Helge Dellerffd51f42007-02-28 23:51:29 -0500308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return 0;
310}
311
Helge Dellerffd51f42007-02-28 23:51:29 -0500312static int hilse_dec_ddi(hil_mlc *mlc, int unused)
313{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 mlc->ddi--;
Helge Dellerffd51f42007-02-28 23:51:29 -0500315 if (mlc->ddi <= -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 mlc->ddi = -1;
317 hil_mlc_clear_di_map(mlc, 0);
318 return -1;
319 }
320 hil_mlc_clear_di_map(mlc, mlc->ddi + 1);
Helge Dellerffd51f42007-02-28 23:51:29 -0500321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return 0;
323}
324
Helge Dellerffd51f42007-02-28 23:51:29 -0500325static int hilse_inc_ddi(hil_mlc *mlc, int unused)
326{
327 BUG_ON(mlc->ddi >= 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 mlc->ddi++;
Helge Dellerffd51f42007-02-28 23:51:29 -0500329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return 0;
331}
332
Helge Dellerffd51f42007-02-28 23:51:29 -0500333static int hilse_take_idd(hil_mlc *mlc, int unused)
334{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 int i;
336
Helge Dellerffd51f42007-02-28 23:51:29 -0500337 /* Help the state engine:
338 * Is this a real IDD response or just an echo?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 *
Helge Dellerffd51f42007-02-28 23:51:29 -0500340 * Real IDD response does not start with a command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 */
Helge Dellerffd51f42007-02-28 23:51:29 -0500342 if (mlc->ipacket[0] & HIL_PKT_CMD)
343 goto bail;
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 /* Should have the command echoed further down. */
346 for (i = 1; i < 16; i++) {
Helge Dellerffd51f42007-02-28 23:51:29 -0500347 if (((mlc->ipacket[i] & HIL_PKT_ADDR_MASK) ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 (mlc->ipacket[0] & HIL_PKT_ADDR_MASK)) &&
Helge Dellerffd51f42007-02-28 23:51:29 -0500349 (mlc->ipacket[i] & HIL_PKT_CMD) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 ((mlc->ipacket[i] & HIL_PKT_DATA_MASK) == HIL_CMD_IDD))
351 break;
352 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500353 if (i > 15)
354 goto bail;
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 /* And the rest of the packets should still be clear. */
Helge Dellerffd51f42007-02-28 23:51:29 -0500357 while (++i < 16)
358 if (mlc->ipacket[i])
359 break;
360
361 if (i < 16)
362 goto bail;
363
364 for (i = 0; i < 16; i++)
365 mlc->di_scratch.idd[i] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 mlc->ipacket[i] & HIL_PKT_DATA_MASK;
Helge Dellerffd51f42007-02-28 23:51:29 -0500367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 /* Next step is to see if RSC supported */
Helge Dellerffd51f42007-02-28 23:51:29 -0500369 if (mlc->di_scratch.idd[1] & HIL_IDD_HEADER_RSC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return HILSEN_NEXT;
Helge Dellerffd51f42007-02-28 23:51:29 -0500371
372 if (mlc->di_scratch.idd[1] & HIL_IDD_HEADER_EXD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return HILSEN_DOWN | 4;
Helge Dellerffd51f42007-02-28 23:51:29 -0500374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return 0;
Helge Dellerffd51f42007-02-28 23:51:29 -0500376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 bail:
378 mlc->ddi--;
Helge Dellerffd51f42007-02-28 23:51:29 -0500379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return -1; /* This should send us off to ACF */
381}
382
Helge Dellerffd51f42007-02-28 23:51:29 -0500383static int hilse_take_rsc(hil_mlc *mlc, int unused)
384{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 int i;
386
Helge Dellerffd51f42007-02-28 23:51:29 -0500387 for (i = 0; i < 16; i++)
388 mlc->di_scratch.rsc[i] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 mlc->ipacket[i] & HIL_PKT_DATA_MASK;
Helge Dellerffd51f42007-02-28 23:51:29 -0500390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 /* Next step is to see if EXD supported (IDD has already been read) */
Helge Dellerffd51f42007-02-28 23:51:29 -0500392 if (mlc->di_scratch.idd[1] & HIL_IDD_HEADER_EXD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return HILSEN_NEXT;
Helge Dellerffd51f42007-02-28 23:51:29 -0500394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return 0;
396}
397
Helge Dellerffd51f42007-02-28 23:51:29 -0500398static int hilse_take_exd(hil_mlc *mlc, int unused)
399{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 int i;
401
Helge Dellerffd51f42007-02-28 23:51:29 -0500402 for (i = 0; i < 16; i++)
403 mlc->di_scratch.exd[i] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 mlc->ipacket[i] & HIL_PKT_DATA_MASK;
Helge Dellerffd51f42007-02-28 23:51:29 -0500405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 /* Next step is to see if RNM supported. */
Helge Dellerffd51f42007-02-28 23:51:29 -0500407 if (mlc->di_scratch.exd[0] & HIL_EXD_HEADER_RNM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return HILSEN_NEXT;
Helge Dellerffd51f42007-02-28 23:51:29 -0500409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return 0;
411}
412
Helge Dellerffd51f42007-02-28 23:51:29 -0500413static int hilse_take_rnm(hil_mlc *mlc, int unused)
414{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 int i;
416
Helge Dellerffd51f42007-02-28 23:51:29 -0500417 for (i = 0; i < 16; i++)
418 mlc->di_scratch.rnm[i] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 mlc->ipacket[i] & HIL_PKT_DATA_MASK;
Helge Dellerffd51f42007-02-28 23:51:29 -0500420
421 printk(KERN_INFO PREFIX "Device name gotten: %16s\n",
422 mlc->di_scratch.rnm);
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 0;
425}
426
Helge Dellerffd51f42007-02-28 23:51:29 -0500427static int hilse_operate(hil_mlc *mlc, int repoll)
428{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Helge Dellerffd51f42007-02-28 23:51:29 -0500430 if (mlc->opercnt == 0)
431 hil_mlcs_probe = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 mlc->opercnt = 1;
433
434 hil_mlc_send_polls(mlc);
435
Helge Dellerffd51f42007-02-28 23:51:29 -0500436 if (!hil_mlcs_probe)
437 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 hil_mlcs_probe = 0;
439 mlc->opercnt = 0;
440 return 1;
441}
442
443#define FUNC(funct, funct_arg, zero_rc, neg_rc, pos_rc) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100444{ HILSE_FUNC, { .func = funct }, funct_arg, zero_rc, neg_rc, pos_rc },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445#define OUT(pack) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100446{ HILSE_OUT, { .packet = pack }, 0, HILSEN_NEXT, HILSEN_DOZE, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447#define CTS \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100448{ HILSE_CTS, { .packet = 0 }, 0, HILSEN_NEXT | HILSEN_SCHED | HILSEN_BREAK, HILSEN_DOZE, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449#define EXPECT(comp, to, got, got_wrong, timed_out) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100450{ HILSE_EXPECT, { .packet = comp }, to, got, got_wrong, timed_out },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451#define EXPECT_LAST(comp, to, got, got_wrong, timed_out) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100452{ HILSE_EXPECT_LAST, { .packet = comp }, to, got, got_wrong, timed_out },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453#define EXPECT_DISC(comp, to, got, got_wrong, timed_out) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100454{ HILSE_EXPECT_DISC, { .packet = comp }, to, got, got_wrong, timed_out },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455#define IN(to, got, got_error, timed_out) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100456{ HILSE_IN, { .packet = 0 }, to, got, got_error, timed_out },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457#define OUT_DISC(pack) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100458{ HILSE_OUT_DISC, { .packet = pack }, 0, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459#define OUT_LAST(pack) \
Al Viro6ce6b3a2006-10-14 16:52:36 +0100460{ HILSE_OUT_LAST, { .packet = pack }, 0, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Adrian Bunk0486dc12008-06-26 10:46:38 -0400462static const struct hilse_node hil_mlc_se[HILSEN_END] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 /* 0 HILSEN_START */
465 FUNC(hilse_init_lcv, 0, HILSEN_NEXT, HILSEN_SLEEP, 0)
466
467 /* 1 HILSEN_RESTART */
468 FUNC(hilse_inc_lcv, 10, HILSEN_NEXT, HILSEN_START, 0)
469 OUT(HIL_CTRL_ONLY) /* Disable APE */
470 CTS
471
472#define TEST_PACKET(x) \
473(HIL_PKT_CMD | (x << HIL_PKT_ADDR_SHIFT) | x << 4 | x)
474
475 OUT(HIL_DO_ALTER_CTRL | HIL_CTRL_TEST | TEST_PACKET(0x5))
476 EXPECT(HIL_ERR_INT | TEST_PACKET(0x5),
477 2000, HILSEN_NEXT, HILSEN_RESTART, HILSEN_RESTART)
478 OUT(HIL_DO_ALTER_CTRL | HIL_CTRL_TEST | TEST_PACKET(0xa))
479 EXPECT(HIL_ERR_INT | TEST_PACKET(0xa),
480 2000, HILSEN_NEXT, HILSEN_RESTART, HILSEN_RESTART)
481 OUT(HIL_CTRL_ONLY | 0) /* Disable test mode */
Helge Dellerffd51f42007-02-28 23:51:29 -0500482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 /* 9 HILSEN_DHR */
484 FUNC(hilse_init_lcv, 0, HILSEN_NEXT, HILSEN_SLEEP, 0)
485
486 /* 10 HILSEN_DHR2 */
487 FUNC(hilse_inc_lcv, 10, HILSEN_NEXT, HILSEN_START, 0)
488 FUNC(hilse_set_ddi, -1, HILSEN_NEXT, 0, 0)
489 OUT(HIL_PKT_CMD | HIL_CMD_DHR)
490 IN(300000, HILSEN_DHR2, HILSEN_DHR2, HILSEN_NEXT)
491
492 /* 14 HILSEN_IFC */
Helge Dellerffd51f42007-02-28 23:51:29 -0500493 OUT(HIL_PKT_CMD | HIL_CMD_IFC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 EXPECT(HIL_PKT_CMD | HIL_CMD_IFC | HIL_ERR_INT,
495 20000, HILSEN_DISC, HILSEN_DHR2, HILSEN_NEXT )
496
497 /* If devices are there, they weren't in PUP or other loopback mode.
498 * We're more concerned at this point with restoring operation
499 * to devices than discovering new ones, so we try to salvage
500 * the loop configuration by closing off the loop.
501 */
502
503 /* 16 HILSEN_HEAL0 */
504 FUNC(hilse_dec_ddi, 0, HILSEN_NEXT, HILSEN_ACF, 0)
505 FUNC(hilse_inc_ddi, 0, HILSEN_NEXT, 0, 0)
506
507 /* 18 HILSEN_HEAL */
508 OUT_LAST(HIL_CMD_ELB)
Helge Dellerffd51f42007-02-28 23:51:29 -0500509 EXPECT_LAST(HIL_CMD_ELB | HIL_ERR_INT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 20000, HILSEN_REPOLL, HILSEN_DSR, HILSEN_NEXT)
511 FUNC(hilse_dec_ddi, 0, HILSEN_HEAL, HILSEN_NEXT, 0)
512
513 /* 21 HILSEN_ACF */
514 FUNC(hilse_init_lcv, 0, HILSEN_NEXT, HILSEN_DOZE, 0)
515
516 /* 22 HILSEN_ACF2 */
517 FUNC(hilse_inc_lcv, 10, HILSEN_NEXT, HILSEN_START, 0)
518 OUT(HIL_PKT_CMD | HIL_CMD_ACF | 1)
519 IN(20000, HILSEN_NEXT, HILSEN_DSR, HILSEN_NEXT)
520
521 /* 25 HILSEN_DISC0 */
522 OUT_DISC(HIL_PKT_CMD | HIL_CMD_ELB)
523 EXPECT_DISC(HIL_PKT_CMD | HIL_CMD_ELB | HIL_ERR_INT,
524 20000, HILSEN_NEXT, HILSEN_DSR, HILSEN_DSR)
525
526 /* Only enter here if response just received */
527 /* 27 HILSEN_DISC */
528 OUT_DISC(HIL_PKT_CMD | HIL_CMD_IDD)
529 EXPECT_DISC(HIL_PKT_CMD | HIL_CMD_IDD | HIL_ERR_INT,
530 20000, HILSEN_NEXT, HILSEN_DSR, HILSEN_START)
531 FUNC(hilse_inc_ddi, 0, HILSEN_NEXT, HILSEN_START, 0)
532 FUNC(hilse_take_idd, 0, HILSEN_MATCH, HILSEN_IFCACF, HILSEN_FOLLOW)
533 OUT_LAST(HIL_PKT_CMD | HIL_CMD_RSC)
534 EXPECT_LAST(HIL_PKT_CMD | HIL_CMD_RSC | HIL_ERR_INT,
535 30000, HILSEN_NEXT, HILSEN_DSR, HILSEN_DSR)
536 FUNC(hilse_take_rsc, 0, HILSEN_MATCH, 0, HILSEN_FOLLOW)
537 OUT_LAST(HIL_PKT_CMD | HIL_CMD_EXD)
538 EXPECT_LAST(HIL_PKT_CMD | HIL_CMD_EXD | HIL_ERR_INT,
539 30000, HILSEN_NEXT, HILSEN_DSR, HILSEN_DSR)
540 FUNC(hilse_take_exd, 0, HILSEN_MATCH, 0, HILSEN_FOLLOW)
541 OUT_LAST(HIL_PKT_CMD | HIL_CMD_RNM)
542 EXPECT_LAST(HIL_PKT_CMD | HIL_CMD_RNM | HIL_ERR_INT,
543 30000, HILSEN_NEXT, HILSEN_DSR, HILSEN_DSR)
544 FUNC(hilse_take_rnm, 0, HILSEN_MATCH, 0, 0)
545
546 /* 40 HILSEN_MATCH */
547 FUNC(hilse_match, 0, HILSEN_NEXT, HILSEN_NEXT, /* TODO */ 0)
548
549 /* 41 HILSEN_OPERATE */
550 OUT(HIL_PKT_CMD | HIL_CMD_POL)
551 EXPECT(HIL_PKT_CMD | HIL_CMD_POL | HIL_ERR_INT,
552 20000, HILSEN_NEXT, HILSEN_DSR, HILSEN_NEXT)
553 FUNC(hilse_operate, 0, HILSEN_OPERATE, HILSEN_IFC, HILSEN_NEXT)
554
555 /* 44 HILSEN_PROBE */
556 OUT_LAST(HIL_PKT_CMD | HIL_CMD_EPT)
Helge Dellerffd51f42007-02-28 23:51:29 -0500557 IN(10000, HILSEN_DISC, HILSEN_DSR, HILSEN_NEXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 OUT_DISC(HIL_PKT_CMD | HIL_CMD_ELB)
559 IN(10000, HILSEN_DISC, HILSEN_DSR, HILSEN_NEXT)
560 OUT(HIL_PKT_CMD | HIL_CMD_ACF | 1)
561 IN(10000, HILSEN_DISC0, HILSEN_DSR, HILSEN_NEXT)
562 OUT_LAST(HIL_PKT_CMD | HIL_CMD_ELB)
563 IN(10000, HILSEN_OPERATE, HILSEN_DSR, HILSEN_DSR)
564
565 /* 52 HILSEN_DSR */
566 FUNC(hilse_set_ddi, -1, HILSEN_NEXT, 0, 0)
567 OUT(HIL_PKT_CMD | HIL_CMD_DSR)
Helge Dellerffd51f42007-02-28 23:51:29 -0500568 IN(20000, HILSEN_DHR, HILSEN_DHR, HILSEN_IFC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /* 55 HILSEN_REPOLL */
571 OUT(HIL_PKT_CMD | HIL_CMD_RPL)
572 EXPECT(HIL_PKT_CMD | HIL_CMD_RPL | HIL_ERR_INT,
573 20000, HILSEN_NEXT, HILSEN_DSR, HILSEN_NEXT)
574 FUNC(hilse_operate, 1, HILSEN_OPERATE, HILSEN_IFC, HILSEN_PROBE)
575
576 /* 58 HILSEN_IFCACF */
Helge Dellerffd51f42007-02-28 23:51:29 -0500577 OUT(HIL_PKT_CMD | HIL_CMD_IFC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 EXPECT(HIL_PKT_CMD | HIL_CMD_IFC | HIL_ERR_INT,
579 20000, HILSEN_ACF2, HILSEN_DHR2, HILSEN_HEAL)
580
581 /* 60 HILSEN_END */
582};
583
Helge Dellerffd51f42007-02-28 23:51:29 -0500584static inline void hilse_setup_input(hil_mlc *mlc, const struct hilse_node *node)
585{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 switch (node->act) {
588 case HILSE_EXPECT_DISC:
589 mlc->imatch = node->object.packet;
590 mlc->imatch |= ((mlc->ddi + 2) << HIL_PKT_ADDR_SHIFT);
591 break;
592 case HILSE_EXPECT_LAST:
593 mlc->imatch = node->object.packet;
594 mlc->imatch |= ((mlc->ddi + 1) << HIL_PKT_ADDR_SHIFT);
595 break;
596 case HILSE_EXPECT:
597 mlc->imatch = node->object.packet;
598 break;
599 case HILSE_IN:
600 mlc->imatch = 0;
601 break;
602 default:
603 BUG();
604 }
605 mlc->istarted = 1;
606 mlc->intimeout = node->arg;
607 do_gettimeofday(&(mlc->instart));
608 mlc->icount = 15;
609 memset(mlc->ipacket, 0, 16 * sizeof(hil_packet));
Helge Dellerffd51f42007-02-28 23:51:29 -0500610 BUG_ON(down_trylock(&mlc->isem));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
613#ifdef HIL_MLC_DEBUG
Helge Dellerffd51f42007-02-28 23:51:29 -0500614static int doze;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615static int seidx; /* For debug */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616#endif
617
Helge Dellerffd51f42007-02-28 23:51:29 -0500618static int hilse_donode(hil_mlc *mlc)
619{
Helge Deller3acaf542007-02-28 23:51:19 -0500620 const struct hilse_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 int nextidx = 0;
622 int sched_long = 0;
623 unsigned long flags;
624
625#ifdef HIL_MLC_DEBUG
Helge Dellerffd51f42007-02-28 23:51:29 -0500626 if (mlc->seidx && mlc->seidx != seidx &&
627 mlc->seidx != 41 && mlc->seidx != 42 && mlc->seidx != 43) {
628 printk(KERN_DEBUG PREFIX "z%i \n {%i}", doze, mlc->seidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 doze = 0;
630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 seidx = mlc->seidx;
633#endif
634 node = hil_mlc_se + mlc->seidx;
635
636 switch (node->act) {
637 int rc;
638 hil_packet pack;
639
640 case HILSE_FUNC:
Helge Deller3acaf542007-02-28 23:51:19 -0500641 BUG_ON(node->object.func == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 rc = node->object.func(mlc, node->arg);
Helge Dellerffd51f42007-02-28 23:51:29 -0500643 nextidx = (rc > 0) ? node->ugly :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 ((rc < 0) ? node->bad : node->good);
Helge Dellerffd51f42007-02-28 23:51:29 -0500645 if (nextidx == HILSEN_FOLLOW)
646 nextidx = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 break;
Helge Dellerffd51f42007-02-28 23:51:29 -0500648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 case HILSE_EXPECT_LAST:
650 case HILSE_EXPECT_DISC:
651 case HILSE_EXPECT:
652 case HILSE_IN:
653 /* Already set up from previous HILSE_OUT_* */
Helge Dellerffd51f42007-02-28 23:51:29 -0500654 write_lock_irqsave(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 rc = mlc->in(mlc, node->arg);
656 if (rc == 2) {
657 nextidx = HILSEN_DOZE;
658 sched_long = 1;
Helge Dellerffd51f42007-02-28 23:51:29 -0500659 write_unlock_irqrestore(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 break;
661 }
Helge Dellerffd51f42007-02-28 23:51:29 -0500662 if (rc == 1)
663 nextidx = node->ugly;
664 else if (rc == 0)
665 nextidx = node->good;
666 else
667 nextidx = node->bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 mlc->istarted = 0;
Helge Dellerffd51f42007-02-28 23:51:29 -0500669 write_unlock_irqrestore(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 break;
Helge Dellerffd51f42007-02-28 23:51:29 -0500671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 case HILSE_OUT_LAST:
Helge Dellerffd51f42007-02-28 23:51:29 -0500673 write_lock_irqsave(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 pack = node->object.packet;
675 pack |= ((mlc->ddi + 1) << HIL_PKT_ADDR_SHIFT);
676 goto out;
Helge Dellerffd51f42007-02-28 23:51:29 -0500677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 case HILSE_OUT_DISC:
Helge Dellerffd51f42007-02-28 23:51:29 -0500679 write_lock_irqsave(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 pack = node->object.packet;
681 pack |= ((mlc->ddi + 2) << HIL_PKT_ADDR_SHIFT);
682 goto out;
Helge Dellerffd51f42007-02-28 23:51:29 -0500683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 case HILSE_OUT:
Helge Dellerffd51f42007-02-28 23:51:29 -0500685 write_lock_irqsave(&mlc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 pack = node->object.packet;
687 out:
Helge Dellerffd51f42007-02-28 23:51:29 -0500688 if (mlc->istarted)
689 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /* Prepare to receive input */
691 if ((node + 1)->act & HILSE_IN)
692 hilse_setup_input(mlc, node + 1);
693
694 out2:
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);
917 init_MUTEX(&mlc->osem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Helge Dellerffd51f42007-02-28 23:51:29 -0500919 init_MUTEX(&mlc->isem);
920 mlc->icount = -1;
921 mlc->imatch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 mlc->opercnt = 0;
924
Helge Dellerffd51f42007-02-28 23:51:29 -0500925 init_MUTEX_LOCKED(&(mlc->csem));
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;
Helge Deller3acaf542007-02-28 23:51:19 -0500934 snprintf(mlc_serio->name, sizeof(mlc_serio->name)-1, "HIL_SERIO%d", i);
935 snprintf(mlc_serio->phys, sizeof(mlc_serio->phys)-1, "HIL%d", i);
Matthew Wilcox6ab0f5c2005-10-21 22:58:51 -0400936 mlc_serio->id = hil_mlc_serio_id;
Helge Dellerc10a93a2008-12-29 04:44:44 -0800937 mlc_serio->id.id = i; /* HIL port no. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 mlc_serio->write = hil_mlc_serio_write;
939 mlc_serio->open = hil_mlc_serio_open;
940 mlc_serio->close = hil_mlc_serio_close;
941 mlc_serio->port_data = &(mlc->serio_map[i]);
942 mlc->serio_map[i].mlc = mlc;
943 mlc->serio_map[i].didx = i;
944 mlc->serio_map[i].di_revmap = -1;
945 mlc->serio_opacket[i] = 0;
946 mlc->serio_oidx[i] = 0;
947 serio_register_port(mlc_serio);
948 }
949
950 mlc->tasklet = &hil_mlcs_tasklet;
951
952 write_lock_irqsave(&hil_mlcs_lock, flags);
953 list_add_tail(&mlc->list, &hil_mlcs);
954 mlc->seidx = HILSEN_START;
955 write_unlock_irqrestore(&hil_mlcs_lock, flags);
956
957 tasklet_schedule(&hil_mlcs_tasklet);
958 return 0;
959}
960
Helge Dellerffd51f42007-02-28 23:51:29 -0500961int hil_mlc_unregister(hil_mlc *mlc)
962{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 struct list_head *tmp;
Helge Dellerffd51f42007-02-28 23:51:29 -0500964 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 int i;
966
Helge Dellerffd51f42007-02-28 23:51:29 -0500967 BUG_ON(mlc == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 write_lock_irqsave(&hil_mlcs_lock, flags);
Helge Dellerffd51f42007-02-28 23:51:29 -0500970 list_for_each(tmp, &hil_mlcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (list_entry(tmp, hil_mlc, list) == mlc)
972 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 /* not found in list */
975 write_unlock_irqrestore(&hil_mlcs_lock, flags);
976 tasklet_schedule(&hil_mlcs_tasklet);
977 return -ENODEV;
978
979 found:
980 list_del(tmp);
Helge Dellerffd51f42007-02-28 23:51:29 -0500981 write_unlock_irqrestore(&hil_mlcs_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 for (i = 0; i < HIL_MLC_DEVMEM; i++) {
984 serio_unregister_port(mlc->serio[i]);
985 mlc->serio[i] = NULL;
986 }
987
988 tasklet_schedule(&hil_mlcs_tasklet);
989 return 0;
990}
991
992/**************************** Module interface *************************/
993
994static int __init hil_mlc_init(void)
995{
996 init_timer(&hil_mlcs_kicker);
997 hil_mlcs_kicker.expires = jiffies + HZ;
998 hil_mlcs_kicker.function = &hil_mlcs_timer;
999 add_timer(&hil_mlcs_kicker);
1000
1001 tasklet_enable(&hil_mlcs_tasklet);
1002
1003 return 0;
1004}
Helge Dellerffd51f42007-02-28 23:51:29 -05001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006static void __exit hil_mlc_exit(void)
1007{
1008 del_timer(&hil_mlcs_kicker);
1009
1010 tasklet_disable(&hil_mlcs_tasklet);
1011 tasklet_kill(&hil_mlcs_tasklet);
1012}
Helge Dellerffd51f42007-02-28 23:51:29 -05001013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014module_init(hil_mlc_init);
1015module_exit(hil_mlc_exit);