adb_direct.c revision 1.2 1 1.2 scottr /* $NetBSD: adb_direct.c,v 1.2 1997/04/08 06:53:28 scottr Exp $ */
2 1.1 scottr
3 1.1 scottr /*
4 1.1 scottr * Copyright (C) 1996, 1997 John P. Wittkoski
5 1.1 scottr * All rights reserved.
6 1.1 scottr *
7 1.1 scottr * Redistribution and use in source and binary forms, with or without
8 1.1 scottr * modification, are permitted provided that the following conditions
9 1.1 scottr * are met:
10 1.1 scottr * 1. Redistributions of source code must retain the above copyright
11 1.1 scottr * notice, this list of conditions and the following disclaimer.
12 1.1 scottr * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 scottr * notice, this list of conditions and the following disclaimer in the
14 1.1 scottr * documentation and/or other materials provided with the distribution.
15 1.1 scottr * 3. All advertising materials mentioning features or use of this software
16 1.1 scottr * must display the following acknowledgement:
17 1.1 scottr * This product includes software developed by John P. Wittkoski.
18 1.1 scottr * 4. The name of the author may not be used to endorse or promote products
19 1.1 scottr * derived from this software without specific prior written permission.
20 1.1 scottr *
21 1.1 scottr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.1 scottr * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.1 scottr * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.1 scottr * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.1 scottr * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.1 scottr * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1 scottr * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1 scottr * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1 scottr * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 1.1 scottr * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 scottr */
32 1.1 scottr /* From: adb_direct.c 1.91 1/20/97 jpw */
33 1.1 scottr
34 1.1 scottr /* This code is rather messy, but I don't have time right now
35 1.1 scottr * to clean it up as much as I would like.
36 1.1 scottr * But it works, so I'm happy. :-) jpw */
37 1.1 scottr
38 1.1 scottr #ifdef __NetBSD__
39 1.1 scottr #include <sys/param.h>
40 1.1 scottr #include <sys/cdefs.h>
41 1.1 scottr #include <sys/systm.h>
42 1.1 scottr
43 1.1 scottr #include <machine/viareg.h>
44 1.1 scottr #include <machine/param.h>
45 1.1 scottr #include <machine/cpu.h>
46 1.1 scottr #include <machine/adbsys.h> /* required for adbvar.h */
47 1.1 scottr
48 1.1 scottr #include <arch/mac68k/mac68k/macrom.h>
49 1.1 scottr #include "adb_direct.h"
50 1.1 scottr #include "adbvar.h"
51 1.1 scottr #define printf_intr printf
52 1.1 scottr #else
53 1.1 scottr #include "via.h" /* for macos based testing */
54 1.1 scottr #endif
55 1.1 scottr
56 1.1 scottr /* more verbose for testing */
57 1.1 scottr /*#define DEBUG*/
58 1.1 scottr
59 1.1 scottr /* include changes to work with Takashi's Power Manager support */
60 1.1 scottr /*#define ADB_PB_TESTING*/
61 1.1 scottr
62 1.1 scottr /* some misc. leftovers */
63 1.1 scottr #define vPB 0x0000
64 1.1 scottr #define vPB3 0x08
65 1.1 scottr #define vPB4 0x10
66 1.1 scottr #define vPB5 0x20
67 1.1 scottr #define vSR_INT 0x04
68 1.1 scottr #define vSR_OUT 0x10
69 1.1 scottr
70 1.1 scottr /* types of adb hardware that we (will eventually) support */
71 1.1 scottr #define ADB_HW_UNKNOWN 0x01 /* don't know */
72 1.1 scottr #define ADB_HW_II 0x02 /* Mac II series */
73 1.1 scottr #define ADB_HW_IISI 0x03 /* Mac IIsi series */
74 1.1 scottr #define ADB_HW_PB 0x04 /* PowerBook series */
75 1.1 scottr #define ADB_HW_CUDA 0x05 /* Machines with a Cuda chip */
76 1.1 scottr
77 1.1 scottr /* the type of ADB action that we are currently preforming */
78 1.1 scottr #define ADB_ACTION_NOTREADY 0x01 /* has not been initialized yet */
79 1.1 scottr #define ADB_ACTION_IDLE 0x02 /* the bus is currently idle */
80 1.1 scottr #define ADB_ACTION_OUT 0x03 /* sending out a command */
81 1.1 scottr #define ADB_ACTION_IN 0x04 /* receiving data */
82 1.1 scottr
83 1.1 scottr /*
84 1.1 scottr * These describe the state of the ADB bus itself, although they
85 1.1 scottr * don't necessarily correspond directly to ADB states.
86 1.1 scottr * Note: these are not really used in the IIsi code.
87 1.1 scottr */
88 1.1 scottr #define ADB_BUS_UNKNOWN 0x01 /* we don't know yet - all models */
89 1.1 scottr #define ADB_BUS_IDLE 0x02 /* bus is idle - all models */
90 1.1 scottr #define ADB_BUS_CMD 0x03 /* starting a command - II models */
91 1.1 scottr #define ADB_BUS_ODD 0x04 /* the "odd" state - II models */
92 1.1 scottr #define ADB_BUS_EVEN 0x05 /* the "even" state - II models */
93 1.1 scottr #define ADB_BUS_ACTIVE 0x06 /* active state - IIsi models */
94 1.1 scottr #define ADB_BUS_ACK 0x07 /* currently ACKing - IIsi models */
95 1.1 scottr
96 1.1 scottr /*
97 1.1 scottr * Shortcuts for setting or testing the VIA bit states.
98 1.1 scottr * Not all shortcuts are used for every type of ADB hardware.
99 1.1 scottr */
100 1.1 scottr #define ADB_SET_STATE_IDLE_II() via_reg(VIA1, vBufB) |= (vPB4 | vPB5)
101 1.1 scottr #define ADB_SET_STATE_IDLE_IISI() via_reg(VIA1, vBufB) &= ~(vPB4 | vPB5)
102 1.1 scottr #define ADB_SET_STATE_IDLE_CUDA() via_reg(VIA1, vBufB) |= (vPB4 | vPB5)
103 1.1 scottr #define ADB_SET_STATE_CMD() via_reg(VIA1, vBufB) &= ~(vPB4 | vPB5)
104 1.1 scottr #define ADB_SET_STATE_EVEN() via_reg(VIA1, vBufB) = ( (via_reg(VIA1, \
105 1.1 scottr vBufB) | vPB4) & ~vPB5 )
106 1.1 scottr #define ADB_SET_STATE_ODD() via_reg(VIA1, vBufB) = ( (via_reg(VIA1, \
107 1.1 scottr vBufB) | vPB5) & ~vPB4 )
108 1.1 scottr #define ADB_SET_STATE_ACTIVE() via_reg(VIA1, vBufB) |= vPB5
109 1.1 scottr #define ADB_SET_STATE_INACTIVE() via_reg(VIA1, vBufB) &= ~vPB5
110 1.1 scottr #define ADB_SET_STATE_TIP() via_reg(VIA1, vBufB) &= ~vPB5
111 1.1 scottr #define ADB_CLR_STATE_TIP() via_reg(VIA1, vBufB) |= vPB5
112 1.1 scottr #define ADB_SET_STATE_ACKON() via_reg(VIA1, vBufB) |= vPB4
113 1.1 scottr #define ADB_SET_STATE_ACKOFF() via_reg(VIA1, vBufB) &= ~vPB4
114 1.1 scottr #define ADB_TOGGLE_STATE_ACK_CUDA() via_reg(VIA1, vBufB) ^= vPB4
115 1.1 scottr #define ADB_SET_STATE_ACKON_CUDA() via_reg(VIA1, vBufB) &= ~vPB4
116 1.1 scottr #define ADB_SET_STATE_ACKOFF_CUDA() via_reg(VIA1, vBufB) |= vPB4
117 1.1 scottr #define ADB_SET_SR_INPUT() via_reg(VIA1, vACR) &= ~vSR_OUT
118 1.1 scottr #define ADB_SET_SR_OUTPUT() via_reg(VIA1, vACR) |= vSR_OUT
119 1.1 scottr #define ADB_SR() via_reg(VIA1, vSR)
120 1.1 scottr #define ADB_VIA_INTR_ENABLE() via_reg(VIA1, vIER) = 0x84
121 1.1 scottr #define ADB_VIA_INTR_DISABLE() via_reg(VIA1, vIER) = 0x04
122 1.1 scottr #define ADB_VIA_CLR_INTR() via_reg(VIA1, vIFR) = 0x04
123 1.1 scottr #define ADB_INTR_IS_OFF ( vPB3 == (via_reg(VIA1, vBufB) & vPB3) )
124 1.1 scottr #define ADB_INTR_IS_ON ( 0 == (via_reg(VIA1, vBufB) & vPB3) )
125 1.1 scottr #define ADB_SR_INTR_IS_OFF ( 0 == (via_reg(VIA1, vIFR) & vSR_INT) )
126 1.1 scottr #define ADB_SR_INTR_IS_ON ( vSR_INT == (via_reg(VIA1, vIFR) & vSR_INT) )
127 1.1 scottr
128 1.1 scottr /*
129 1.1 scottr * This is the delay that is required (in uS) between certain
130 1.1 scottr * ADB transactions. The actual timing delay for for each uS is
131 1.1 scottr * calculated at boot time to account for differences in machine speed.
132 1.1 scottr */
133 1.1 scottr #define ADB_ACK_DELAY 150
134 1.1 scottr
135 1.1 scottr /*
136 1.1 scottr * Maximum ADB message length; includes space for data, result, and
137 1.1 scottr * device code - plus a little for safety.
138 1.1 scottr */
139 1.1 scottr #define MAX_ADB_MSG_LENGTH 20
140 1.1 scottr
141 1.1 scottr /*
142 1.1 scottr * A structure for storing information about each ADB device.
143 1.1 scottr */
144 1.1 scottr struct ADBDevEntry {
145 1.1 scottr void (*ServiceRtPtr) __P((void));
146 1.1 scottr void *DataAreaAddr;
147 1.1 scottr char devType;
148 1.1 scottr char origAddr;
149 1.1 scottr char currentAddr;
150 1.1 scottr };
151 1.1 scottr
152 1.1 scottr /*
153 1.1 scottr * Used to hold ADB commands that are waiting to be sent out.
154 1.1 scottr */
155 1.1 scottr struct adbCmdHoldEntry {
156 1.1 scottr u_char outBuf[MAX_ADB_MSG_LENGTH]; /* our message */
157 1.1 scottr u_char *saveBuf; /* buffer to know where to save result */
158 1.1 scottr u_char *compRout; /* completion routine pointer */
159 1.1 scottr u_char *data; /* completion routine data pointer */
160 1.1 scottr };
161 1.1 scottr
162 1.1 scottr /*
163 1.1 scottr * A few variables that we need and their initial values.
164 1.1 scottr */
165 1.1 scottr int adbHardware = ADB_HW_UNKNOWN;
166 1.1 scottr int adbActionState = ADB_ACTION_NOTREADY;
167 1.1 scottr int adbBusState = ADB_BUS_UNKNOWN;
168 1.1 scottr int adbWaiting = 0; /* waiting for return data from the device */
169 1.1 scottr int adbWriteDelay = 0; /* working on (or waiting to do) a write */
170 1.1 scottr int adbOutQueueHasData = 0; /* something in the "queue" waiting to go out */
171 1.1 scottr int adbNextEnd = 0; /* the next incoming bute is the last (II) */
172 1.1 scottr
173 1.1 scottr int adbWaitingCmd = 0; /* ADB command we are waiting for */
174 1.1 scottr u_char *adbBuffer = (long) 0; /* pointer to user data area */
175 1.1 scottr void *adbCompRout = (long) 0; /* pointer to the completion routine */
176 1.1 scottr void *adbCompData = (long) 0; /* pointer to the completion routine data */
177 1.1 scottr long adbFakeInts = 0; /* keeps track of fake ADB interrupts for
178 1.1 scottr * timeouts (II) */
179 1.1 scottr int adbStarting = 0; /* doing ADB reinit, so do "polling" differently */
180 1.1 scottr int adbSendTalk = 0; /* the intr routine is sending the talk, not
181 1.1 scottr * the user (II) */
182 1.1 scottr int adbPolling = 0; /* we are polling for service request */
183 1.1 scottr int adbPollCmd = 0; /* the last poll command we sent */
184 1.1 scottr
185 1.1 scottr u_char adbInputBuffer[MAX_ADB_MSG_LENGTH]; /* data input buffer */
186 1.1 scottr u_char adbOutputBuffer[MAX_ADB_MSG_LENGTH]; /* data output buffer */
187 1.1 scottr struct adbCmdHoldEntry adbOutQueue; /* our 1 entry output "queue" */
188 1.1 scottr
189 1.1 scottr int adbSentChars = 0; /* how many characters we have sent */
190 1.1 scottr int adbLastDevice = 0; /* last ADB device we heard from (II ONLY) */
191 1.1 scottr int adbLastDevIndex = 0; /* last ADB device loc. in device table (II ONLY) */
192 1.1 scottr int adbLastCommand = 0; /* the last ADB command we sent (II) */
193 1.1 scottr int adbWaitingSubDev = 0; /* ADB sub-device (RTC, PRAM, etc) - IIsi ONLY - unused */
194 1.1 scottr int adbWaitingDevice = 0; /* ADB device we are waiting for - unused */
195 1.1 scottr
196 1.1 scottr struct ADBDevEntry ADBDevTable[16]; /* our ADB device table */
197 1.1 scottr int ADBNumDevices; /* number of ADB devices found with ADBReInit */
198 1.1 scottr
199 1.1 scottr extern struct mac68k_machine_S mac68k_machine;
200 1.1 scottr extern int zshard(int);
201 1.1 scottr
202 1.1 scottr #ifdef ADB_PB_TESTING
203 1.1 scottr extern void pm_setup_adb(void);
204 1.1 scottr extern void pm_check_adb_devices(int);
205 1.1 scottr extern void pm_intr(void);
206 1.1 scottr extern int pm_adb_op(u_char *, void *, void *, int);
207 1.1 scottr extern void pm_init_adb_device(void);
208 1.1 scottr #endif
209 1.1 scottr
210 1.1 scottr
211 1.1 scottr /*
212 1.1 scottr * The following are private routines.
213 1.1 scottr */
214 1.1 scottr void print_single __P((unsigned char *));
215 1.1 scottr void adb_intr __P((void));
216 1.1 scottr void adb_intr_II __P((void));
217 1.1 scottr void adb_intr_IIsi __P((void));
218 1.1 scottr void adb_intr_cuda __P((void));
219 1.1 scottr int send_adb_II __P((unsigned char *, unsigned char *, void *, void *, int));
220 1.1 scottr int send_adb_IIsi __P((unsigned char *, unsigned char *, void *, void *, int));
221 1.1 scottr int send_adb_cuda __P((unsigned char *, unsigned char *, void *, void *, int));
222 1.1 scottr void adb_intr_cuda_test __P((void));
223 1.1 scottr void adb_handle_unsol __P((unsigned char *));
224 1.1 scottr void adb_op_comprout __P((void));
225 1.1 scottr void adb_reinit __P((void));
226 1.1 scottr int count_adbs __P((void));
227 1.1 scottr int get_ind_adb_info __P((ADBDataBlock *, int));
228 1.1 scottr int get_adb_info __P((ADBDataBlock *, int));
229 1.1 scottr int set_adb_info __P((ADBSetInfoBlock *, int));
230 1.1 scottr void adb_setup_hw_type __P((void));
231 1.1 scottr int adb_op __P((Ptr, Ptr, Ptr, short));
232 1.1 scottr void adb_handle_unsol __P((unsigned char *));
233 1.1 scottr int adb_op_sync __P((Ptr, Ptr, Ptr, short));
234 1.1 scottr void adb_read_II __P((unsigned char *));
235 1.1 scottr void adb_cleanup __P((unsigned char *));
236 1.1 scottr void adb_cleanup_IIsi __P((unsigned char *));
237 1.1 scottr void adb_comp_exec __P((void));
238 1.1 scottr int adb_cmd_result __P((unsigned char *));
239 1.1 scottr int adb_cmd_extra __P((unsigned char *));
240 1.1 scottr int adb_guess_next_device __P((void));
241 1.1 scottr int adb_prog_switch_enable __P((void));
242 1.1 scottr int adb_prog_switch_disable __P((void));
243 1.1 scottr /* we should create this and it will be the public version */
244 1.1 scottr int send_adb __P((unsigned char *, void *, void *));
245 1.1 scottr
246 1.1 scottr
247 1.1 scottr /*
248 1.1 scottr * print_single
249 1.1 scottr * Diagnostic display routine. Displays the hex values of the
250 1.1 scottr * specified elements of the u_char. The length of the "string"
251 1.1 scottr * is in [0].
252 1.1 scottr */
253 1.1 scottr void
254 1.1 scottr print_single(thestring)
255 1.1 scottr u_char *thestring;
256 1.1 scottr {
257 1.1 scottr int x;
258 1.1 scottr
259 1.1 scottr if (thestring == 0) {
260 1.1 scottr printf_intr("no data - null pointer\n");
261 1.1 scottr return;
262 1.1 scottr }
263 1.1 scottr if ((int)(thestring[0]) == 0) {
264 1.1 scottr printf_intr("nothing returned\n");
265 1.1 scottr return;
266 1.1 scottr }
267 1.1 scottr if (thestring[0] > 20) {
268 1.1 scottr printf_intr("ADB: ACK > 20 no way!\n");
269 1.1 scottr thestring[0] = 20;
270 1.1 scottr }
271 1.1 scottr printf_intr("(length=0x%x):", thestring[0]);
272 1.1 scottr for (x = 0; x < thestring[0]; x++)
273 1.1 scottr printf_intr(" 0x%02x", thestring[x + 1]);
274 1.1 scottr printf_intr("\n");
275 1.1 scottr }
276 1.1 scottr
277 1.1 scottr
278 1.1 scottr /*
279 1.1 scottr * called when when an adb interrupt happens
280 1.1 scottr *
281 1.1 scottr * Cuda version of adb_intr
282 1.1 scottr * TO DO: can probably reduce the number of zshard calls in here
283 1.1 scottr */
284 1.1 scottr void
285 1.1 scottr adb_intr_cuda(void)
286 1.1 scottr {
287 1.1 scottr int i, ending, len;
288 1.1 scottr unsigned int s;
289 1.1 scottr
290 1.1 scottr s = splhigh(); /* can't be too careful - might be called */
291 1.1 scottr /* from a routine, NOT an interrupt */
292 1.1 scottr
293 1.1 scottr ADB_VIA_CLR_INTR(); /* clear interrupt */
294 1.1 scottr
295 1.1 scottr ADB_VIA_INTR_DISABLE(); /* disable ADB interrupt on IIs. */
296 1.1 scottr
297 1.1 scottr switch_start:
298 1.1 scottr switch (adbActionState) {
299 1.1 scottr case ADB_ACTION_IDLE:
300 1.1 scottr adbInputBuffer[1] = ADB_SR(); /* get byte */
301 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
302 1.1 scottr ADB_SET_STATE_TIP(); /* signal start of data frame */
303 1.1 scottr printf_intr("idle 0x%02x ", adbInputBuffer[1]);
304 1.1 scottr adbInputBuffer[0] = 1;
305 1.1 scottr adbActionState = ADB_ACTION_IN; /* set next state */
306 1.1 scottr break;
307 1.1 scottr
308 1.1 scottr case ADB_ACTION_IN:
309 1.1 scottr adbInputBuffer[++adbInputBuffer[0]] = ADB_SR(); /* get byte */
310 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
311 1.1 scottr if (ADB_INTR_IS_OFF) /* check for end of frame */
312 1.1 scottr ending = 1;
313 1.1 scottr else
314 1.1 scottr ending = 0;
315 1.1 scottr
316 1.1 scottr if (1 == ending) { /* end of message? */
317 1.1 scottr ADB_CLR_STATE_TIP(); /* signal end of frame */
318 1.1 scottr printf_intr("in end 0x%02x ", adbInputBuffer[adbInputBuffer[0]]);
319 1.1 scottr print_single(adbInputBuffer);
320 1.1 scottr /* this section _should_ handle all ADB and RTC/PRAM type commands, */
321 1.1 scottr /* but there may be more... */
322 1.1 scottr /* note: commands are always at [4], even for rtc/pram commands */
323 1.1 scottr if ((adbWaiting == 1) && /* are we waiting AND */
324 1.1 scottr (adbInputBuffer[4] == adbWaitingCmd) && /* the cmd we sent AND */
325 1.1 scottr ((adbInputBuffer[2] == 0x00) || /* it's from the
326 1.1 scottr * ADB device OR */
327 1.1 scottr (adbInputBuffer[2] == 0x01))) { /* it's from the PRAM/RTC device */
328 1.1 scottr
329 1.1 scottr /* is this data we are waiting for? */
330 1.1 scottr if (adbBuffer != (long) 0) { /* if valid return data pointer */
331 1.1 scottr /* get return length minus extras */
332 1.1 scottr len = adbInputBuffer[0] - 4;
333 1.1 scottr /* if adb_op is ever made to be called from a user
334 1.1 scottr * routine, we should use a copyout or copyin
335 1.1 scottr * here to be sure we're in the correct context */
336 1.1 scottr for (i = 1; i <= len; i++)
337 1.1 scottr adbBuffer[i] = adbInputBuffer[4 + i];
338 1.1 scottr if (len < 0)
339 1.1 scottr len = 0;
340 1.1 scottr adbBuffer[0] = len;
341 1.1 scottr }
342 1.1 scottr adb_comp_exec(); /* call completion routine */
343 1.1 scottr
344 1.1 scottr adbWaitingCmd = 0; /* reset "waiting" vars */
345 1.1 scottr adbWaiting = 0;
346 1.1 scottr adbBuffer = (long) 0;
347 1.1 scottr adbCompRout = (long) 0;
348 1.1 scottr adbCompData = (long) 0;
349 1.1 scottr } else {
350 1.1 scottr /* pass the data off to the handler */
351 1.1 scottr /* This section IGNORES all data that is not from
352 1.1 scottr * the ADB sub-device. That is, not from rtc or pram.
353 1.1 scottr * Maybe we should fix later, but do the other
354 1.1 scottr * devices every send things without
355 1.1 scottr * being asked? */
356 1.1 scottr if (adbStarting == 0) /* ignore if during adbreinit */
357 1.1 scottr if (adbInputBuffer[2] == 0x00)
358 1.1 scottr adb_handle_unsol(adbInputBuffer);
359 1.1 scottr }
360 1.1 scottr
361 1.1 scottr adbActionState = ADB_ACTION_IDLE;
362 1.1 scottr adbInputBuffer[0] = 0; /* reset length */
363 1.1 scottr
364 1.1 scottr if (adbWriteDelay == 1) { /* were we waiting to write? */\
365 1.1 scottr printf_intr("WRITE DELAY ");
366 1.1 scottr adbSentChars = 0; /* nothing sent yet */
367 1.1 scottr adbActionState = ADB_ACTION_OUT; /* set next state */
368 1.1 scottr
369 1.1 scottr if (ADB_INTR_IS_ON) { /* ADB intr low during write */
370 1.1 scottr ADB_CLR_STATE_TIP(); /* reset */
371 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
372 1.1 scottr adbSentChars = 0; /* must start all over */
373 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* new state */
374 1.1 scottr adbInputBuffer[0] = 0;
375 1.1 scottr break;
376 1.1 scottr }
377 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
378 1.1 scottr ADB_SR() = adbOutputBuffer[adbSentChars + 1];
379 1.1 scottr ADB_SET_STATE_TIP(); /* tell ADB that we want to send */
380 1.1 scottr }
381 1.1 scottr } else {
382 1.1 scottr ADB_TOGGLE_STATE_ACK_CUDA();
383 1.1 scottr printf_intr("in 0x%02x ", adbInputBuffer[adbInputBuffer[0]]);
384 1.1 scottr }
385 1.1 scottr
386 1.1 scottr break;
387 1.1 scottr
388 1.1 scottr case ADB_ACTION_OUT:
389 1.1 scottr i = ADB_SR(); /* reset SR-intr in IFR */
390 1.1 scottr printf_intr("intr out 0x%02x ", i);
391 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
392 1.1 scottr
393 1.1 scottr adbSentChars++;
394 1.1 scottr if (ADB_INTR_IS_ON) { /* ADB intr low during write */
395 1.1 scottr printf_intr("intr was on ");
396 1.1 scottr ADB_CLR_STATE_TIP(); /* reset */
397 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
398 1.1 scottr adbSentChars = 0; /* must start all over */
399 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* new state */
400 1.1 scottr adbInputBuffer[0] = 0;
401 1.1 scottr adbWriteDelay = 1; /* must retry when done with read */
402 1.1 scottr delay(ADB_ACK_DELAY); /* delay */
403 1.1 scottr /* TO DO: not sure if this is the right thing to do for Cuda */
404 1.1 scottr goto switch_start; /* process next state right now */
405 1.1 scottr break;
406 1.1 scottr }
407 1.1 scottr
408 1.1 scottr if (adbOutputBuffer[0] == adbSentChars) { /* check for done */
409 1.1 scottr if (0 == adb_cmd_result(adbOutputBuffer)) { /* do we expect data back? */
410 1.1 scottr adbWaiting = 1; /* signal waiting for return */
411 1.1 scottr adbWaitingCmd = adbOutputBuffer[2]; /* save waiting command */
412 1.1 scottr } else { /* no talk, so done */
413 1.1 scottr adb_comp_exec(); /* call completion routine */
414 1.1 scottr adbWaitingCmd = 0; /* reset "waiting" vars, just in case */
415 1.1 scottr adbBuffer = (long) 0;
416 1.1 scottr adbCompRout = (long) 0;
417 1.1 scottr adbCompData = (long) 0;
418 1.1 scottr }
419 1.1 scottr
420 1.1 scottr adbWriteDelay = 0; /* done writing */
421 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* signal bus is idle */
422 1.1 scottr /*ADB_SET_SR_INPUT();*/ /* make sure SR is set to IN */
423 1.1 scottr ADB_TOGGLE_STATE_ACK_CUDA();
424 1.1 scottr ADB_CLR_STATE_TIP(); /* end of frame */
425 1.1 scottr printf_intr("write done ");
426 1.1 scottr } else {
427 1.1 scottr ADB_SR() = adbOutputBuffer[adbSentChars + 1]; /* send next byte */
428 1.1 scottr ADB_TOGGLE_STATE_ACK_CUDA(); /* signal byte ready to shift */
429 1.1 scottr printf_intr("toggle ");
430 1.1 scottr }
431 1.1 scottr break;
432 1.1 scottr
433 1.1 scottr case ADB_ACTION_NOTREADY:
434 1.1 scottr printf_intr("adb: not yet initialized\n");
435 1.1 scottr break;
436 1.1 scottr
437 1.1 scottr default:
438 1.1 scottr printf_intr("intr: unknown ADB state\n");
439 1.1 scottr }
440 1.1 scottr
441 1.1 scottr ADB_VIA_INTR_ENABLE(); /* enable ADB interrupt on IIs. */
442 1.1 scottr
443 1.1 scottr splx(s); /* restore */
444 1.1 scottr
445 1.1 scottr return;
446 1.1 scottr } /* end adb_intr_IIsi */
447 1.1 scottr
448 1.1 scottr
449 1.1 scottr int
450 1.1 scottr send_adb_cuda(u_char *in, u_char *buffer, void *compRout, void *data, int
451 1.1 scottr command)
452 1.1 scottr {
453 1.1 scottr int i, s, len;
454 1.1 scottr
455 1.1 scottr if (adbActionState == ADB_ACTION_NOTREADY)
456 1.1 scottr return 1;
457 1.1 scottr
458 1.1 scottr s = splhigh(); /* don't interrupt while we are messing with the ADB */
459 1.1 scottr
460 1.1 scottr if ((adbActionState == ADB_ACTION_IDLE) && /* ADB available? */
461 1.1 scottr (ADB_INTR_IS_OFF)) { /* and no incoming interrupt? */
462 1.1 scottr
463 1.1 scottr } else if (adbWriteDelay == 0) /* it's busy, but is anything waiting? */
464 1.1 scottr adbWriteDelay = 1; /* if no, then we'll "queue" it up */
465 1.1 scottr else {
466 1.1 scottr splx(s);
467 1.1 scottr return 1; /* really busy! */
468 1.1 scottr }
469 1.1 scottr
470 1.1 scottr if ((long) in == (long) 0) { /* need to convert? */
471 1.1 scottr /* don't need to use adb_cmd_extra here because this section will be called */
472 1.1 scottr /* ONLY when it is an ADB command (no RTC or PRAM) */
473 1.1 scottr if ((command & 0x0c) == 0x08) /* copy addl data ONLY if doing a listen! */
474 1.1 scottr len = buffer[0]; /* length of additional data */
475 1.1 scottr else
476 1.1 scottr len = 0; /* no additional data */
477 1.1 scottr
478 1.1 scottr adbOutputBuffer[0] = 2 + len; /* dev. type + command + addl. data */
479 1.1 scottr adbOutputBuffer[1] = 0x00; /* mark as an ADB command */
480 1.1 scottr adbOutputBuffer[2] = (u_char) command; /* load command */
481 1.1 scottr
482 1.1 scottr for (i = 1; i <= len; i++) /* copy additional output data, if any */
483 1.1 scottr adbOutputBuffer[2 + i] = buffer[i];
484 1.1 scottr } else
485 1.1 scottr for (i = 0; i <= (adbOutputBuffer[0] + 1); i++)
486 1.1 scottr adbOutputBuffer[i] = in[i];
487 1.1 scottr
488 1.1 scottr adbSentChars = 0; /* nothing sent yet */
489 1.1 scottr adbBuffer = buffer; /* save buffer to know where to save result */
490 1.1 scottr adbCompRout = compRout; /* save completion routine pointer */
491 1.1 scottr adbCompData = data; /* save completion routine data pointer */
492 1.1 scottr adbWaitingCmd = adbOutputBuffer[2]; /* save wait command */
493 1.1 scottr
494 1.1 scottr if (adbWriteDelay != 1) { /* start command now? */
495 1.1 scottr printf_intr("out start ");
496 1.1 scottr adbActionState = ADB_ACTION_OUT; /* set next state */
497 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
498 1.1 scottr ADB_SR() = adbOutputBuffer[adbSentChars + 1]; /* load byte for output */
499 1.1 scottr ADB_SET_STATE_ACKOFF_CUDA();
500 1.1 scottr ADB_SET_STATE_TIP(); /* tell ADB that we want to send */
501 1.1 scottr }
502 1.1 scottr adbWriteDelay = 1; /* something in the write "queue" */
503 1.1 scottr
504 1.1 scottr splx(s);
505 1.1 scottr
506 1.1 scottr if (0x0100 <= (s & 0x0700)) /* were VIA1 interrupts blocked ? */
507 1.1 scottr /* poll until byte done */
508 1.1 scottr while ((adbActionState != ADB_ACTION_IDLE) || (ADB_INTR_IS_ON)
509 1.1 scottr || (adbWaiting == 1))
510 1.1 scottr if (ADB_SR_INTR_IS_ON) /* wait for "interrupt" */
511 1.1 scottr adb_intr_cuda(); /* go process "interrupt" */
512 1.1 scottr
513 1.1 scottr return 0;
514 1.1 scottr } /* send_adb_cuda */
515 1.1 scottr
516 1.1 scottr
517 1.1 scottr /*
518 1.1 scottr * called when when an adb interrupt happens
519 1.1 scottr *
520 1.1 scottr * Cuda version of adb_intr
521 1.1 scottr *
522 1.1 scottr */
523 1.1 scottr void
524 1.1 scottr adb_intr_cuda_test(void)
525 1.1 scottr {
526 1.1 scottr int i, ending;
527 1.1 scottr unsigned int s;
528 1.1 scottr
529 1.1 scottr s = splhigh(); /* can't be too careful - might be called */
530 1.1 scottr /* from a routine, NOT an interrupt */
531 1.1 scottr
532 1.1 scottr ADB_VIA_CLR_INTR(); /* clear interrupt */
533 1.1 scottr
534 1.1 scottr ADB_VIA_INTR_DISABLE(); /* disable ADB interrupt on IIs. */
535 1.1 scottr
536 1.1 scottr printf_intr("intr ");
537 1.1 scottr switch_start:
538 1.1 scottr switch (adbActionState) {
539 1.1 scottr case ADB_ACTION_IDLE:
540 1.1 scottr adbInputBuffer[1] = ADB_SR(); /* get byte */
541 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
542 1.1 scottr ADB_SET_STATE_TIP(); /* signal start of data frame */
543 1.1 scottr printf_intr("idle 0x%02x ", adbInputBuffer[1]);
544 1.1 scottr adbInputBuffer[0] = 1;
545 1.1 scottr adbActionState = ADB_ACTION_IN; /* set next state */
546 1.1 scottr break;
547 1.1 scottr
548 1.1 scottr case ADB_ACTION_IN:
549 1.1 scottr adbInputBuffer[++adbInputBuffer[0]] = ADB_SR(); /* get byte */
550 1.1 scottr if (ADB_INTR_IS_OFF) /* check for end of frame */
551 1.1 scottr ending = 1;
552 1.1 scottr else
553 1.1 scottr ending = 0;
554 1.1 scottr
555 1.1 scottr if (1 == ending) { /* end of message? */
556 1.1 scottr ADB_CLR_STATE_TIP(); /* signal end of frame */
557 1.1 scottr
558 1.1 scottr printf_intr("in end 0x%02x ", adbInputBuffer[adbInputBuffer[0]]);
559 1.1 scottr print_single(adbInputBuffer);
560 1.1 scottr
561 1.1 scottr adbActionState = ADB_ACTION_IDLE;
562 1.1 scottr adbInputBuffer[0] = 0; /* reset length */
563 1.1 scottr } else {
564 1.1 scottr ADB_TOGGLE_STATE_ACK_CUDA();
565 1.1 scottr printf_intr("in 0x%02x ", adbInputBuffer[adbInputBuffer[0]]);
566 1.1 scottr }
567 1.1 scottr
568 1.1 scottr
569 1.1 scottr #if 0
570 1.1 scottr /* this section _should_ handle all ADB and RTC/PRAM type commands, */
571 1.1 scottr /* but there may be more... */
572 1.1 scottr /* note: commands are always at [4], even for rtc/pram commands */
573 1.1 scottr if ((adbWaiting == 1) && /* are we waiting AND */
574 1.1 scottr (adbInputBuffer[4] == adbWaitingCmd) && /* the cmd we sent AND */
575 1.1 scottr ((adbInputBuffer[2] == 0x00) || /* it's from the
576 1.1 scottr * ADB device OR */
577 1.1 scottr (adbInputBuffer[2] == 0x01))) { /* it's from the PRAM/RTC device */
578 1.1 scottr
579 1.1 scottr /* is this data we are waiting for? */
580 1.1 scottr if (adbBuffer != (long) 0) { /* if valid return data pointer */
581 1.1 scottr /* get return length minus extras */
582 1.1 scottr len = adbInputBuffer[0] - 4;
583 1.1 scottr /* if adb_op is ever made to be called from a user
584 1.1 scottr * routine, we should use a copyout or copyin
585 1.1 scottr * here to be sure we're in the correct context */
586 1.1 scottr for (i = 1; i <= len; i++)
587 1.1 scottr adbBuffer[i] = adbInputBuffer[4 + i];
588 1.1 scottr if (len < 0)
589 1.1 scottr len = 0;
590 1.1 scottr adbBuffer[0] = len;
591 1.1 scottr }
592 1.1 scottr adb_comp_exec(); /* call completion routine */
593 1.1 scottr print_single(adbInputBuffer);
594 1.1 scottr
595 1.1 scottr adbWaitingCmd = 0; /* reset "waiting" vars */
596 1.1 scottr adbWaiting = 0;
597 1.1 scottr adbBuffer = (long) 0;
598 1.1 scottr adbCompRout = (long) 0;
599 1.1 scottr adbCompData = (long) 0;
600 1.1 scottr } else {
601 1.1 scottr /* pass the data off to the handler */
602 1.1 scottr /* This section IGNORES all data that is not from
603 1.1 scottr * the ADB sub-device. That is, not from rtc or pram.
604 1.1 scottr * Maybe we should fix later, but do the other
605 1.1 scottr * devices every send things without
606 1.1 scottr * being asked? */
607 1.1 scottr if (adbStarting == 0) /* ignore if during adbreinit */
608 1.1 scottr if (adbInputBuffer[2] == 0x00)
609 1.1 scottr adb_handle_unsol(adbInputBuffer);
610 1.1 scottr }
611 1.1 scottr
612 1.1 scottr adbActionState = ADB_ACTION_IDLE;
613 1.1 scottr adbInputBuffer[0] = 0; /* reset length */
614 1.1 scottr
615 1.1 scottr if (adbWriteDelay == 1) { /* were we waiting to write? */
616 1.1 scottr adbSentChars = 0; /* nothing sent yet */
617 1.1 scottr adbActionState = ADB_ACTION_OUT; /* set next state */
618 1.1 scottr
619 1.1 scottr zshard(0); /* grab any serial interrupts */
620 1.1 scottr
621 1.1 scottr if (ADB_INTR_IS_ON) { /* ADB intr low during write */
622 1.1 scottr ADB_SET_STATE_IDLE_CUDA(); /* reset */
623 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
624 1.1 scottr adbSentChars = 0; /* must start all over */
625 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* new state */
626 1.1 scottr adbInputBuffer[0] = 0;
627 1.1 scottr /* may be able to take this out later */
628 1.1 scottr delay(ADB_ACK_DELAY); /* delay */
629 1.1 scottr break;
630 1.1 scottr }
631 1.1 scottr ADB_SET_STATE_TIP(); /* tell ADB that we want to send */
632 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
633 1.1 scottr ADB_SR() = adbOutputBuffer[adbSentChars + 1];
634 1.1 scottr ADB_TOGGLE_STATE_ACK_CUDA();
635 1.1 scottr }
636 1.1 scottr }
637 1.1 scottr #endif
638 1.1 scottr break;
639 1.1 scottr
640 1.1 scottr case ADB_ACTION_OUT:
641 1.1 scottr i = ADB_SR(); /* reset SR-intr in IFR */
642 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
643 1.1 scottr
644 1.1 scottr adbSentChars++;
645 1.1 scottr if (ADB_INTR_IS_ON) { /* ADB intr low during write */
646 1.1 scottr ADB_SET_STATE_IDLE_CUDA(); /* reset */
647 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
648 1.1 scottr adbSentChars = 0; /* must start all over */
649 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* new state */
650 1.1 scottr adbInputBuffer[0] = 0;
651 1.1 scottr adbWriteDelay = 1; /* must retry when done with read */
652 1.1 scottr delay(ADB_ACK_DELAY); /* delay */
653 1.1 scottr zshard(0); /* grab any serial interrupts */
654 1.1 scottr goto switch_start; /* process next state right now */
655 1.1 scottr break;
656 1.1 scottr }
657 1.1 scottr delay(ADB_ACK_DELAY); /* required delay */
658 1.1 scottr zshard(0); /* grab any serial interrupts */
659 1.1 scottr
660 1.1 scottr if (adbOutputBuffer[0] == adbSentChars) { /* check for done */
661 1.1 scottr if (0 == adb_cmd_result(adbOutputBuffer)) { /* do we expect data back? */
662 1.1 scottr adbWaiting = 1; /* signal waiting for return */
663 1.1 scottr adbWaitingCmd = adbOutputBuffer[2]; /* save waiting command */
664 1.1 scottr } else { /* no talk, so done */
665 1.1 scottr adb_comp_exec(); /* call completion routine */
666 1.1 scottr adbWaitingCmd = 0; /* reset "waiting" vars, just in case */
667 1.1 scottr adbBuffer = (long) 0;
668 1.1 scottr adbCompRout = (long) 0;
669 1.1 scottr adbCompData = (long) 0;
670 1.1 scottr }
671 1.1 scottr
672 1.1 scottr adbWriteDelay = 0; /* done writing */
673 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* signal bus is idle */
674 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
675 1.1 scottr ADB_SET_STATE_IDLE_CUDA(); /* end of frame */
676 1.1 scottr } else {
677 1.1 scottr ADB_SR() = adbOutputBuffer[adbSentChars + 1]; /* send next byte */
678 1.1 scottr ADB_TOGGLE_STATE_ACK_CUDA();
679 1.1 scottr }
680 1.1 scottr break;
681 1.1 scottr
682 1.1 scottr case ADB_ACTION_NOTREADY:
683 1.1 scottr printf_intr("adb: not yet initialized\n");
684 1.1 scottr break;
685 1.1 scottr
686 1.1 scottr default:
687 1.1 scottr printf_intr("intr: unknown ADB state\n");
688 1.1 scottr }
689 1.1 scottr
690 1.1 scottr ADB_VIA_INTR_ENABLE(); /* enable ADB interrupt on IIs. */
691 1.1 scottr
692 1.1 scottr splx(s); /* restore */
693 1.1 scottr
694 1.1 scottr return;
695 1.1 scottr } /* end adb_intr_cuda_test */
696 1.1 scottr
697 1.1 scottr
698 1.1 scottr /* TO DO: add one or two zshard calls in here */
699 1.1 scottr void
700 1.1 scottr adb_intr_II(void)
701 1.1 scottr {
702 1.1 scottr int i, len, intr_on = 0;
703 1.1 scottr int send = 0, do_srq = 0;
704 1.1 scottr unsigned int s;
705 1.1 scottr
706 1.1 scottr s = splhigh(); /* can't be too careful - might be called */
707 1.1 scottr /* from a routine, NOT an interrupt */
708 1.1 scottr
709 1.1 scottr ADB_VIA_CLR_INTR(); /* clear interrupt */
710 1.1 scottr
711 1.1 scottr ADB_VIA_INTR_DISABLE(); /* disable ADB interrupt on IIs. */
712 1.1 scottr
713 1.1 scottr /*if (ADB_INTR_IS_ON)*/
714 1.1 scottr /* printf_intr("INTR ON ");*/
715 1.1 scottr if (ADB_INTR_IS_ON)
716 1.1 scottr intr_on=1; /* save for later */
717 1.1 scottr
718 1.1 scottr switch (adbActionState) {
719 1.1 scottr case ADB_ACTION_IDLE:
720 1.1 scottr if ( !intr_on ) {
721 1.1 scottr /*printf_intr("FAKE DROPPED \n");*/
722 1.1 scottr /*printf_intr(" XX ");*/
723 1.1 scottr i=ADB_SR();
724 1.1 scottr break;
725 1.1 scottr }
726 1.1 scottr adbNextEnd=0;
727 1.1 scottr /*printf_intr("idle ");*/
728 1.1 scottr adbInputBuffer[0] = 1;
729 1.1 scottr adbInputBuffer[1] = ADB_SR(); /* get first byte */
730 1.1 scottr /*printf_intr("0x%02x ", adbInputBuffer[1]);*/
731 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
732 1.1 scottr adbActionState = ADB_ACTION_IN; /* set next state */
733 1.1 scottr ADB_SET_STATE_EVEN(); /* set bus state to even */
734 1.1 scottr adbBusState = ADB_BUS_EVEN;
735 1.1 scottr break;
736 1.1 scottr
737 1.1 scottr case ADB_ACTION_IN:
738 1.1 scottr adbInputBuffer[++adbInputBuffer[0]] = ADB_SR(); /* get byte */
739 1.1 scottr /*printf_intr("in 0x%02x ", adbInputBuffer[adbInputBuffer[0]]);*/
740 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
741 1.1 scottr
742 1.1 scottr /*
743 1.1 scottr * Check for an unsolicited Service Request (SRQ).
744 1.1 scottr * An empty SRQ packet NEVER ends, so we must manually
745 1.1 scottr * check for the following condition.
746 1.1 scottr */
747 1.1 scottr if ( adbInputBuffer[0]==4 && adbInputBuffer[2]==0xff &&
748 1.1 scottr adbInputBuffer[3]==0xff && adbInputBuffer[4]==0xff &&
749 1.1 scottr intr_on && !adbNextEnd )
750 1.1 scottr do_srq=1;
751 1.1 scottr
752 1.1 scottr if (adbNextEnd==1) { /* process last byte of packet */
753 1.1 scottr adbNextEnd=0;
754 1.1 scottr /*printf_intr("done: ");*/
755 1.1 scottr
756 1.1 scottr /*
757 1.1 scottr * If the following conditions are true (4 byte
758 1.1 scottr * message, last 3 bytes are 0xff) then we
759 1.1 scottr * basically got a "no response" from the ADB chip,
760 1.1 scottr * so change the message to an empty one.
761 1.1 scottr * We also clear intr_on to stop the SRQ send later
762 1.1 scottr * on because these packets normally have the SRQ
763 1.1 scottr * bit set even when there is NOT a pending SRQ.
764 1.1 scottr */
765 1.1 scottr if ( adbInputBuffer[0]==4 && adbInputBuffer[2]==0xff &&
766 1.1 scottr adbInputBuffer[3]==0xff && adbInputBuffer[4]==0xff ) {
767 1.1 scottr /*printf_intr("NO RESP ");*/
768 1.1 scottr intr_on=0;
769 1.1 scottr adbInputBuffer[0]=0;
770 1.1 scottr }
771 1.1 scottr
772 1.1 scottr adbLastDevice=(adbInputBuffer[1] & 0xf0) >> 4;
773 1.1 scottr
774 1.1 scottr if ((!adbWaiting || adbPolling )
775 1.1 scottr && (adbInputBuffer[0] != 0)) {
776 1.1 scottr /* unsolicided - ignore if starting */
777 1.1 scottr if (!adbStarting)
778 1.1 scottr adb_handle_unsol(adbInputBuffer);
779 1.1 scottr } else if ( !adbPolling ) { /* someone asked for it */
780 1.1 scottr /*printf_intr("SOL: ");*/
781 1.1 scottr /*print_single(adbInputBuffer);*/
782 1.1 scottr if (adbBuffer != (long) 0) { /* if valid return data pointer */
783 1.1 scottr /* get return length minus extras */
784 1.1 scottr len = adbInputBuffer[0] - 1;
785 1.1 scottr
786 1.1 scottr /* if adb_op is ever made to be called from a user
787 1.1 scottr * routine, we should use a copyout or copyin
788 1.1 scottr * here to be sure we're in the correct context. */
789 1.1 scottr for (i = 1; i <= len; i++)
790 1.1 scottr adbBuffer[i] = adbInputBuffer[i + 1];
791 1.1 scottr if (len < 0)
792 1.1 scottr len = 0;
793 1.1 scottr adbBuffer[0] = len;
794 1.1 scottr }
795 1.1 scottr adb_comp_exec();
796 1.1 scottr }
797 1.1 scottr
798 1.1 scottr adbWaiting=0;
799 1.1 scottr adbPolling=0;
800 1.1 scottr adbInputBuffer[0]=0;
801 1.1 scottr adbBuffer = (long) 0;
802 1.1 scottr adbCompRout = (long) 0;
803 1.1 scottr adbCompData = (long) 0;
804 1.1 scottr /*
805 1.1 scottr * Since we are done, check whether there is any data
806 1.1 scottr * waiting to do out. If so, start the sending the data.
807 1.1 scottr */
808 1.1 scottr if (adbOutQueueHasData == 1) {
809 1.1 scottr /*printf_intr("XXX: DOING OUT QUEUE\n");*/
810 1.1 scottr /* copy over data */
811 1.1 scottr for (i = 0; i <= (adbOutQueue.outBuf[0] + 1); i++)
812 1.1 scottr adbOutputBuffer[i] = adbOutQueue.outBuf[i];
813 1.1 scottr adbBuffer = adbOutQueue.saveBuf; /* user data area */
814 1.1 scottr adbCompRout = adbOutQueue.compRout; /* completion routine */
815 1.1 scottr adbCompData = adbOutQueue.data; /* comp. rout. data */
816 1.1 scottr adbOutQueueHasData = 0; /* currently processing "queue" entry */
817 1.1 scottr adbPolling=0;
818 1.1 scottr send=1;
819 1.1 scottr /* if intr_on is true, then it's a SRQ
820 1.1 scottr * so poll other devices. */
821 1.1 scottr } else if (intr_on) {
822 1.1 scottr /*printf_intr("starting POLL ");*/
823 1.1 scottr do_srq=1;
824 1.1 scottr adbPolling=1;
825 1.1 scottr } else if ( (adbInputBuffer[1] & 0x0f) != 0x0c) {
826 1.1 scottr /*printf_intr("xC HACK ");*/
827 1.1 scottr adbPolling=1;
828 1.1 scottr send=1;
829 1.1 scottr adbOutputBuffer[0]=1;
830 1.1 scottr adbOutputBuffer[1]=(adbInputBuffer[1] & 0xf0) | 0x0c;
831 1.1 scottr } else {
832 1.1 scottr /*printf_intr("ending ");*/
833 1.1 scottr adbBusState=ADB_BUS_IDLE;
834 1.1 scottr adbActionState=ADB_ACTION_IDLE;
835 1.1 scottr ADB_SET_STATE_IDLE_II();
836 1.1 scottr break;
837 1.1 scottr }
838 1.1 scottr }
839 1.1 scottr
840 1.1 scottr /*
841 1.1 scottr * If do_srq is true then something above determined that
842 1.1 scottr * the message has ended and some device is sending a
843 1.1 scottr * service request. So we need to determine the next device
844 1.1 scottr * and send a poll to it. (If the device we send to isn't the
845 1.1 scottr * one that sent the SRQ, that ok as it will be caught
846 1.1 scottr * the next time though.)
847 1.1 scottr */
848 1.1 scottr if ( do_srq ) {
849 1.1 scottr /*printf_intr("SRQ! ");*/
850 1.1 scottr adbPolling=1;
851 1.1 scottr adb_guess_next_device();
852 1.1 scottr adbOutputBuffer[0]=1;
853 1.1 scottr adbOutputBuffer[1]=((adbLastDevice & 0x0f) << 4) | 0x0c;
854 1.1 scottr send=1;
855 1.1 scottr }
856 1.1 scottr
857 1.1 scottr /*
858 1.1 scottr * If send is true then something above determined that
859 1.1 scottr * the message has ended and we need to start sending out
860 1.1 scottr * a new message immediately. This could be because there
861 1.1 scottr * is data waiting to go out or because an SRQ was seen.
862 1.1 scottr */
863 1.1 scottr if ( send ) {
864 1.1 scottr adbNextEnd = 0;
865 1.1 scottr adbSentChars = 0; /* nothing sent yet */
866 1.1 scottr adbActionState = ADB_ACTION_OUT; /* set next state */
867 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
868 1.1 scottr ADB_SR() = adbOutputBuffer[1]; /* load byte for output */
869 1.1 scottr adbBusState = ADB_BUS_CMD; /* set bus to cmd state */
870 1.1 scottr ADB_SET_STATE_CMD(); /* tell ADB that we want to send */
871 1.1 scottr break;
872 1.1 scottr }
873 1.1 scottr
874 1.1 scottr /*
875 1.1 scottr * We only get this far if the message hasn't
876 1.1 scottr * ended yet.
877 1.1 scottr */
878 1.1 scottr if (!intr_on) /* if adb intr. on then the */
879 1.1 scottr adbNextEnd=1; /* NEXT byte is the last */
880 1.1 scottr
881 1.1 scottr switch (adbBusState) { /* set to next state */
882 1.1 scottr case ADB_BUS_EVEN:
883 1.1 scottr ADB_SET_STATE_ODD(); /* set state to odd */
884 1.1 scottr adbBusState = ADB_BUS_ODD;
885 1.1 scottr break;
886 1.1 scottr
887 1.1 scottr case ADB_BUS_ODD:
888 1.1 scottr ADB_SET_STATE_EVEN(); /* set state to even */
889 1.1 scottr adbBusState = ADB_BUS_EVEN;
890 1.1 scottr break;
891 1.1 scottr default:
892 1.1 scottr printf_intr("strange state!!!\n"); /* huh? */
893 1.1 scottr break;
894 1.1 scottr }
895 1.1 scottr break;
896 1.1 scottr
897 1.1 scottr case ADB_ACTION_OUT:
898 1.1 scottr adbNextEnd=0;
899 1.1 scottr if (!adbPolling)
900 1.1 scottr adbWaiting=1; /* not unsolicited */
901 1.1 scottr i=ADB_SR(); /* clear interrupt */
902 1.1 scottr adbSentChars++;
903 1.1 scottr /*
904 1.1 scottr * If the outgoing data was a TALK, we must
905 1.1 scottr * switch to input mode to get the result.
906 1.1 scottr */
907 1.1 scottr if ( (adbOutputBuffer[1] & 0x0c) == 0x0c ) {
908 1.1 scottr adbInputBuffer[0]=1;
909 1.1 scottr adbInputBuffer[1]=i;
910 1.1 scottr adbActionState=ADB_ACTION_IN;
911 1.1 scottr ADB_SET_SR_INPUT();
912 1.1 scottr adbBusState= ADB_BUS_EVEN;
913 1.1 scottr ADB_SET_STATE_EVEN();
914 1.1 scottr /*printf_intr("talk out 0x%02x ", i);*/
915 1.1 scottr break;
916 1.1 scottr }
917 1.1 scottr
918 1.1 scottr /*
919 1.1 scottr * If it's not a TALK, check whether all data has been
920 1.1 scottr * sent. If so, call the completion routine and clean up.
921 1.1 scottr * If not, advance to the next state.
922 1.1 scottr */
923 1.1 scottr /*printf_intr("non-talk out 0x%0x ", i);*/
924 1.1 scottr ADB_SET_SR_OUTPUT();
925 1.1 scottr if (adbOutputBuffer[0] == adbSentChars) { /* check for done */
926 1.1 scottr /*printf_intr("done \n");*/
927 1.1 scottr adb_comp_exec();
928 1.1 scottr adbBuffer = (long) 0;
929 1.1 scottr adbCompRout = (long) 0;
930 1.1 scottr adbCompData = (long) 0;
931 1.1 scottr if (adbOutQueueHasData == 1) {
932 1.1 scottr /* copy over data */
933 1.1 scottr for (i = 0; i <= (adbOutQueue.outBuf[0] + 1); i++)
934 1.1 scottr adbOutputBuffer[i] = adbOutQueue.outBuf[i];
935 1.1 scottr adbBuffer = adbOutQueue.saveBuf; /* user data area */
936 1.1 scottr adbCompRout = adbOutQueue.compRout; /* completion routine */
937 1.1 scottr adbCompData = adbOutQueue.data; /* comp. rout. data */
938 1.1 scottr adbOutQueueHasData = 0; /* currently processing "queue" entry */
939 1.1 scottr adbPolling=0;
940 1.1 scottr } else {
941 1.1 scottr adbOutputBuffer[0]=1;
942 1.1 scottr adbOutputBuffer[1]=(adbOutputBuffer[1] & 0xf0) | 0x0c;
943 1.1 scottr adbPolling=1; /* non-user poll */
944 1.1 scottr }
945 1.1 scottr adbNextEnd = 0;
946 1.1 scottr adbSentChars = 0; /* nothing sent yet */
947 1.1 scottr adbActionState = ADB_ACTION_OUT; /* set next state */
948 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
949 1.1 scottr ADB_SR() = adbOutputBuffer[1]; /* load byte for output */
950 1.1 scottr adbBusState = ADB_BUS_CMD; /* set bus to cmd state */
951 1.1 scottr ADB_SET_STATE_CMD(); /* tell ADB that we want to send */
952 1.1 scottr break;
953 1.1 scottr }
954 1.1 scottr
955 1.1 scottr ADB_SR() = adbOutputBuffer[adbSentChars + 1];
956 1.1 scottr switch (adbBusState) { /* advance to next state */
957 1.1 scottr case ADB_BUS_EVEN:
958 1.1 scottr ADB_SET_STATE_ODD(); /* set state to odd */
959 1.1 scottr adbBusState = ADB_BUS_ODD;
960 1.1 scottr break;
961 1.1 scottr
962 1.1 scottr case ADB_BUS_CMD:
963 1.1 scottr case ADB_BUS_ODD:
964 1.1 scottr ADB_SET_STATE_EVEN(); /* set state to even */
965 1.1 scottr adbBusState = ADB_BUS_EVEN;
966 1.1 scottr break;
967 1.1 scottr
968 1.1 scottr default:
969 1.1 scottr printf_intr("strange state!!! (0x%x)\n", adbBusState);
970 1.1 scottr break;
971 1.1 scottr }
972 1.1 scottr break;
973 1.1 scottr
974 1.1 scottr default:
975 1.1 scottr printf_intr("adb: unknown ADB state (during intr)\n");
976 1.1 scottr }
977 1.1 scottr
978 1.1 scottr ADB_VIA_INTR_ENABLE(); /* enable ADB interrupt on IIs. */
979 1.1 scottr
980 1.1 scottr splx(s); /* restore */
981 1.1 scottr
982 1.1 scottr return;
983 1.1 scottr
984 1.1 scottr }
985 1.1 scottr
986 1.1 scottr
987 1.1 scottr /*
988 1.1 scottr * send_adb version for II series machines
989 1.1 scottr */
990 1.1 scottr int
991 1.1 scottr send_adb_II(u_char *in, u_char *buffer, void *compRout, void *data, int command)
992 1.1 scottr {
993 1.1 scottr int i, s, len;
994 1.1 scottr
995 1.1 scottr if (adbActionState == ADB_ACTION_NOTREADY) /* return if ADB not available */
996 1.1 scottr return 1;
997 1.1 scottr
998 1.1 scottr s = splhigh(); /* don't interrupt while we are messing with the ADB */
999 1.1 scottr
1000 1.1 scottr if (0 != adbOutQueueHasData) { /* right now, "has data" means "full" */
1001 1.1 scottr splx(s); /* sorry, try again later */
1002 1.1 scottr return 1;
1003 1.1 scottr }
1004 1.1 scottr if ((long) in == (long) 0) { /* need to convert? */
1005 1.1 scottr /*
1006 1.1 scottr * Don't need to use adb_cmd_extra here because this section
1007 1.1 scottr * will be called ONLY when it is an ADB command (no RTC or
1008 1.1 scottr * PRAM), especially on II series!
1009 1.1 scottr */
1010 1.1 scottr if ((command & 0x0c) == 0x08) /* copy addl data ONLY if doing a listen! */
1011 1.1 scottr len = buffer[0]; /* length of additional data */
1012 1.1 scottr else
1013 1.1 scottr len = 0; /* no additional data */
1014 1.1 scottr
1015 1.1 scottr adbOutQueue.outBuf[0] = 1 + len; /* command + addl. data */
1016 1.1 scottr adbOutQueue.outBuf[1] = (u_char) command; /* load command */
1017 1.1 scottr
1018 1.1 scottr for (i = 1; i <= len; i++) /* copy additional output data, if any */
1019 1.1 scottr adbOutQueue.outBuf[1 + i] = buffer[i];
1020 1.1 scottr } else
1021 1.1 scottr /* if data ready, just copy over */
1022 1.1 scottr for (i = 0; i <= (adbOutQueue.outBuf[0] + 1); i++)
1023 1.1 scottr adbOutQueue.outBuf[i] = in[i];
1024 1.1 scottr
1025 1.1 scottr adbOutQueue.saveBuf = buffer; /* save buffer to know where to save result */
1026 1.1 scottr adbOutQueue.compRout = compRout; /* save completion routine pointer */
1027 1.1 scottr adbOutQueue.data = data; /* save completion routine data pointer */
1028 1.1 scottr
1029 1.1 scottr if ((adbActionState == ADB_ACTION_IDLE) && /* is ADB available? */
1030 1.1 scottr (ADB_INTR_IS_OFF) && /* and no incoming interrupts? */
1031 1.1 scottr (adbPolling == 0)) { /* and we are not currently polling */
1032 1.1 scottr /* then start command now */
1033 1.1 scottr for (i = 0; i <= (adbOutQueue.outBuf[0] + 1); i++) /* copy over data */
1034 1.1 scottr adbOutputBuffer[i] = adbOutQueue.outBuf[i];
1035 1.1 scottr
1036 1.1 scottr adbBuffer = adbOutQueue.saveBuf; /* pointer to user data area */
1037 1.1 scottr adbCompRout = adbOutQueue.compRout; /* pointer to the completion routine */
1038 1.1 scottr adbCompData = adbOutQueue.data; /* pointer to the completion routine data */
1039 1.1 scottr
1040 1.1 scottr adbSentChars = 0; /* nothing sent yet */
1041 1.1 scottr adbActionState = ADB_ACTION_OUT; /* set next state */
1042 1.1 scottr adbBusState = ADB_BUS_CMD; /* set bus to cmd state */
1043 1.1 scottr
1044 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
1045 1.1 scottr
1046 1.1 scottr ADB_SR() = adbOutputBuffer[adbSentChars + 1]; /* load byte for output */
1047 1.1 scottr ADB_SET_STATE_CMD(); /* tell ADB that we want to send */
1048 1.1 scottr adbOutQueueHasData = 0; /* currently processing "queue" entry */
1049 1.1 scottr } else
1050 1.1 scottr adbOutQueueHasData = 1; /* something in the write "queue" */
1051 1.1 scottr
1052 1.1 scottr splx(s);
1053 1.1 scottr
1054 1.1 scottr if (0x0100 <= (s & 0x0700)) /* were VIA1 interrupts blocked ? */
1055 1.1 scottr /* poll until message done */
1056 1.1 scottr while ((adbActionState != ADB_ACTION_IDLE) || (ADB_INTR_IS_ON)
1057 1.1 scottr || (adbWaiting == 1) || (adbPolling == 1))
1058 1.1 scottr if (ADB_SR_INTR_IS_ON) /* wait for "interrupt" */
1059 1.1 scottr adb_intr_II(); /* go process "interrupt" */
1060 1.1 scottr
1061 1.1 scottr return 0;
1062 1.1 scottr }
1063 1.1 scottr
1064 1.1 scottr
1065 1.1 scottr /*
1066 1.1 scottr * This routine is called from the II series interrupt routine
1067 1.1 scottr * to determine what the "next" device is that should be polled.
1068 1.1 scottr */
1069 1.1 scottr int
1070 1.1 scottr adb_guess_next_device(void)
1071 1.1 scottr {
1072 1.1 scottr int last, i, dummy;
1073 1.1 scottr
1074 1.1 scottr if (adbStarting) {
1075 1.1 scottr /* start polling EVERY device, since we can't
1076 1.1 scottr * be sure there is anything in the device table yet */
1077 1.1 scottr if (adbLastDevice < 1 || adbLastDevice > 15)
1078 1.1 scottr adbLastDevice = 1;
1079 1.1 scottr if (++adbLastDevice > 15) /* point to next one */
1080 1.1 scottr adbLastDevice = 1;
1081 1.1 scottr } else {
1082 1.1 scottr /* find the next device using the device table */
1083 1.1 scottr if (adbLastDevice < 1 || adbLastDevice > 15) /* let's be parinoid */
1084 1.1 scottr adbLastDevice = 2;
1085 1.1 scottr last = 1; /* default index location */
1086 1.1 scottr
1087 1.1 scottr for (i = 1; i < 16; i++) /* find index entry */
1088 1.1 scottr if (ADBDevTable[i].currentAddr == adbLastDevice) { /* look for device */
1089 1.1 scottr last = i; /* found it */
1090 1.1 scottr break;
1091 1.1 scottr }
1092 1.1 scottr
1093 1.1 scottr dummy = last; /* index to start at */
1094 1.1 scottr for (;;) { /* find next device in index */
1095 1.1 scottr if (++dummy > 15) /* wrap around if needed */
1096 1.1 scottr dummy = 1;
1097 1.1 scottr if (dummy == last) { /* didn't find any other
1098 1.1 scottr * device! This can happen if there
1099 1.1 scottr * are no devices on the bus */
1100 1.1 scottr dummy = 2;
1101 1.1 scottr break;
1102 1.1 scottr }
1103 1.1 scottr /* found the next device */
1104 1.1 scottr if (ADBDevTable[dummy].devType != 0)
1105 1.1 scottr break;
1106 1.1 scottr }
1107 1.1 scottr adbLastDevice=ADBDevTable[dummy].currentAddr;
1108 1.1 scottr }
1109 1.1 scottr return adbLastDevice;
1110 1.1 scottr }
1111 1.1 scottr
1112 1.1 scottr /*
1113 1.1 scottr * Called when when an adb interrupt happens.
1114 1.1 scottr * This routine simply transfers control over to the appropriate
1115 1.1 scottr * code for the machine we are running on.
1116 1.1 scottr */
1117 1.1 scottr void
1118 1.1 scottr adb_intr(void)
1119 1.1 scottr {
1120 1.1 scottr switch (adbHardware) {
1121 1.1 scottr case ADB_HW_II:
1122 1.1 scottr adb_intr_II();
1123 1.1 scottr break;
1124 1.1 scottr
1125 1.1 scottr case ADB_HW_IISI:
1126 1.1 scottr adb_intr_IIsi();
1127 1.1 scottr break;
1128 1.1 scottr
1129 1.1 scottr case ADB_HW_PB:
1130 1.1 scottr break;
1131 1.1 scottr
1132 1.1 scottr case ADB_HW_CUDA:
1133 1.1 scottr adb_intr_cuda();
1134 1.1 scottr break;
1135 1.1 scottr
1136 1.1 scottr case ADB_HW_UNKNOWN:
1137 1.1 scottr break;
1138 1.1 scottr }
1139 1.1 scottr }
1140 1.1 scottr
1141 1.1 scottr
1142 1.1 scottr /*
1143 1.1 scottr * called when when an adb interrupt happens
1144 1.1 scottr *
1145 1.1 scottr * IIsi version of adb_intr
1146 1.1 scottr *
1147 1.1 scottr */
1148 1.1 scottr void
1149 1.1 scottr adb_intr_IIsi(void)
1150 1.1 scottr {
1151 1.1 scottr int i, ending, len;
1152 1.1 scottr unsigned int s;
1153 1.1 scottr
1154 1.1 scottr s = splhigh(); /* can't be too careful - might be called */
1155 1.1 scottr /* from a routine, NOT an interrupt */
1156 1.1 scottr
1157 1.1 scottr ADB_VIA_CLR_INTR(); /* clear interrupt */
1158 1.1 scottr
1159 1.1 scottr ADB_VIA_INTR_DISABLE(); /* disable ADB interrupt on IIs. */
1160 1.1 scottr
1161 1.1 scottr switch_start:
1162 1.1 scottr switch (adbActionState) {
1163 1.1 scottr case ADB_ACTION_IDLE:
1164 1.1 scottr delay(ADB_ACK_DELAY); /* short delay is required
1165 1.1 scottr * before the first byte */
1166 1.1 scottr
1167 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
1168 1.1 scottr ADB_SET_STATE_ACTIVE(); /* signal start of data frame */
1169 1.1 scottr adbInputBuffer[1] = ADB_SR(); /* get byte */
1170 1.1 scottr adbInputBuffer[0] = 1;
1171 1.1 scottr adbActionState = ADB_ACTION_IN; /* set next state */
1172 1.1 scottr
1173 1.1 scottr ADB_SET_STATE_ACKON(); /* start ACK to ADB chip */
1174 1.1 scottr delay(ADB_ACK_DELAY); /* delay */
1175 1.1 scottr ADB_SET_STATE_ACKOFF(); /* end ACK to ADB chip */
1176 1.1 scottr zshard(0); /* grab any serial interrupts */
1177 1.1 scottr break;
1178 1.1 scottr
1179 1.1 scottr case ADB_ACTION_IN:
1180 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
1181 1.1 scottr adbInputBuffer[++adbInputBuffer[0]] = ADB_SR(); /* get byte */
1182 1.1 scottr if (ADB_INTR_IS_OFF) /* check for end of frame */
1183 1.1 scottr ending = 1;
1184 1.1 scottr else
1185 1.1 scottr ending = 0;
1186 1.1 scottr
1187 1.1 scottr ADB_SET_STATE_ACKON(); /* start ACK to ADB chip */
1188 1.1 scottr delay(ADB_ACK_DELAY); /* delay */
1189 1.1 scottr ADB_SET_STATE_ACKOFF(); /* end ACK to ADB chip */
1190 1.1 scottr zshard(0); /* grab any serial interrupts */
1191 1.1 scottr
1192 1.1 scottr if (1 == ending) { /* end of message? */
1193 1.1 scottr ADB_SET_STATE_INACTIVE(); /* signal end of frame */
1194 1.1 scottr /* this section _should_ handle all ADB and RTC/PRAM type commands, */
1195 1.1 scottr /* but there may be more... */
1196 1.1 scottr /* note: commands are always at [4], even for rtc/pram commands */
1197 1.1 scottr if ((adbWaiting == 1) && /* are we waiting AND */
1198 1.1 scottr (adbInputBuffer[4] == adbWaitingCmd) && /* the cmd we sent AND */
1199 1.1 scottr ((adbInputBuffer[2] == 0x00) || /* it's from the
1200 1.1 scottr * ADB device OR */
1201 1.1 scottr (adbInputBuffer[2] == 0x01))) { /* it's from the PRAM/RTC device */
1202 1.1 scottr
1203 1.1 scottr /* is this data we are waiting for? */
1204 1.1 scottr if (adbBuffer != (long) 0) { /* if valid return data pointer */
1205 1.1 scottr /* get return length minus extras */
1206 1.1 scottr len = adbInputBuffer[0] - 4;
1207 1.1 scottr /* if adb_op is ever made to be called from a user
1208 1.1 scottr * routine, we should use a copyout or copyin
1209 1.1 scottr * here to be sure we're in the correct context */
1210 1.1 scottr for (i = 1; i <= len; i++)
1211 1.1 scottr adbBuffer[i] = adbInputBuffer[4 + i];
1212 1.1 scottr if (len < 0)
1213 1.1 scottr len = 0;
1214 1.1 scottr adbBuffer[0] = len;
1215 1.1 scottr }
1216 1.1 scottr adb_comp_exec(); /* call completion routine */
1217 1.1 scottr
1218 1.1 scottr adbWaitingCmd = 0; /* reset "waiting" vars */
1219 1.1 scottr adbWaiting = 0;
1220 1.1 scottr adbBuffer = (long) 0;
1221 1.1 scottr adbCompRout = (long) 0;
1222 1.1 scottr adbCompData = (long) 0;
1223 1.1 scottr } else {
1224 1.1 scottr /* pass the data off to the handler */
1225 1.1 scottr /* This section IGNORES all data that is not from
1226 1.1 scottr * the ADB sub-device. That is, not from rtc or pram.
1227 1.1 scottr * Maybe we should fix later, but do the other
1228 1.1 scottr * devices every send things without
1229 1.1 scottr * being asked? */
1230 1.1 scottr if (adbStarting == 0) /* ignore if during adbreinit */
1231 1.1 scottr if (adbInputBuffer[2] == 0x00)
1232 1.1 scottr adb_handle_unsol(adbInputBuffer);
1233 1.1 scottr }
1234 1.1 scottr
1235 1.1 scottr adbActionState = ADB_ACTION_IDLE;
1236 1.1 scottr adbInputBuffer[0] = 0; /* reset length */
1237 1.1 scottr
1238 1.1 scottr if (adbWriteDelay == 1) { /* were we waiting to write? */
1239 1.1 scottr adbSentChars = 0; /* nothing sent yet */
1240 1.1 scottr adbActionState = ADB_ACTION_OUT; /* set next state */
1241 1.1 scottr
1242 1.1 scottr delay(ADB_ACK_DELAY); /* delay */
1243 1.1 scottr zshard(0); /* grab any serial interrupts */
1244 1.1 scottr
1245 1.1 scottr if (ADB_INTR_IS_ON) { /* ADB intr low during write */
1246 1.1 scottr ADB_SET_STATE_IDLE_IISI(); /* reset */
1247 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
1248 1.1 scottr adbSentChars = 0; /* must start all over */
1249 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* new state */
1250 1.1 scottr adbInputBuffer[0] = 0;
1251 1.1 scottr /* may be able to take this out later */
1252 1.1 scottr delay(ADB_ACK_DELAY); /* delay */
1253 1.1 scottr break;
1254 1.1 scottr }
1255 1.1 scottr ADB_SET_STATE_ACTIVE(); /* tell ADB that we want to send */
1256 1.1 scottr ADB_SET_STATE_ACKOFF(); /* make sure */
1257 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
1258 1.1 scottr ADB_SR() = adbOutputBuffer[adbSentChars + 1];
1259 1.1 scottr ADB_SET_STATE_ACKON(); /* tell ADB byte ready to shift */
1260 1.1 scottr }
1261 1.1 scottr }
1262 1.1 scottr break;
1263 1.1 scottr
1264 1.1 scottr case ADB_ACTION_OUT:
1265 1.1 scottr i = ADB_SR(); /* reset SR-intr in IFR */
1266 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
1267 1.1 scottr
1268 1.1 scottr ADB_SET_STATE_ACKOFF(); /* finish ACK */
1269 1.1 scottr adbSentChars++;
1270 1.1 scottr if (ADB_INTR_IS_ON) { /* ADB intr low during write */
1271 1.1 scottr ADB_SET_STATE_IDLE_IISI(); /* reset */
1272 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
1273 1.1 scottr adbSentChars = 0; /* must start all over */
1274 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* new state */
1275 1.1 scottr adbInputBuffer[0] = 0;
1276 1.1 scottr adbWriteDelay = 1; /* must retry when done with read */
1277 1.1 scottr delay(ADB_ACK_DELAY); /* delay */
1278 1.1 scottr zshard(0); /* grab any serial interrupts */
1279 1.1 scottr goto switch_start; /* process next state right now */
1280 1.1 scottr break;
1281 1.1 scottr }
1282 1.1 scottr delay(ADB_ACK_DELAY); /* required delay */
1283 1.1 scottr zshard(0); /* grab any serial interrupts */
1284 1.1 scottr
1285 1.1 scottr if (adbOutputBuffer[0] == adbSentChars) { /* check for done */
1286 1.1 scottr if (0 == adb_cmd_result(adbOutputBuffer)) { /* do we expect data back? */
1287 1.1 scottr adbWaiting = 1; /* signal waiting for return */
1288 1.1 scottr adbWaitingCmd = adbOutputBuffer[2]; /* save waiting command */
1289 1.1 scottr } else { /* no talk, so done */
1290 1.1 scottr adb_comp_exec(); /* call completion routine */
1291 1.1 scottr adbWaitingCmd = 0; /* reset "waiting" vars, just in case */
1292 1.1 scottr adbBuffer = (long) 0;
1293 1.1 scottr adbCompRout = (long) 0;
1294 1.1 scottr adbCompData = (long) 0;
1295 1.1 scottr }
1296 1.1 scottr
1297 1.1 scottr adbWriteDelay = 0; /* done writing */
1298 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* signal bus is idle */
1299 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
1300 1.1 scottr ADB_SET_STATE_INACTIVE(); /* end of frame */
1301 1.1 scottr } else {
1302 1.1 scottr ADB_SR() = adbOutputBuffer[adbSentChars + 1]; /* send next byte */
1303 1.1 scottr ADB_SET_STATE_ACKON(); /* signal byte ready to shift */
1304 1.1 scottr }
1305 1.1 scottr break;
1306 1.1 scottr
1307 1.1 scottr case ADB_ACTION_NOTREADY:
1308 1.1 scottr printf_intr("adb: not yet initialized\n");
1309 1.1 scottr break;
1310 1.1 scottr
1311 1.1 scottr default:
1312 1.1 scottr printf_intr("intr: unknown ADB state\n");
1313 1.1 scottr }
1314 1.1 scottr
1315 1.1 scottr ADB_VIA_INTR_ENABLE(); /* enable ADB interrupt on IIs. */
1316 1.1 scottr
1317 1.1 scottr splx(s); /* restore */
1318 1.1 scottr
1319 1.1 scottr return;
1320 1.1 scottr } /* end adb_intr_IIsi */
1321 1.1 scottr
1322 1.1 scottr
1323 1.1 scottr /*****************************************************************************
1324 1.1 scottr * if the device is currently busy, and there is no data waiting to go out, then
1325 1.1 scottr * the data is "queued" in the outgoing buffer. If we are already waiting, then
1326 1.1 scottr * we return.
1327 1.1 scottr * in: if (in==0) then the command string is built from command and buffer
1328 1.1 scottr * if (in!=0) then in is used as the command string
1329 1.1 scottr * buffer: additional data to be sent (used only if in==0)
1330 1.1 scottr * this is also where return data is stored
1331 1.1 scottr * compRout: the completion routine that is called when then return value
1332 1.1 scottr * is received (if a return value is expected)
1333 1.1 scottr * data: a data pointer that can be used by the completion routine
1334 1.1 scottr * command: an ADB command to be sent (used only if in==0)
1335 1.1 scottr *
1336 1.1 scottr */
1337 1.1 scottr int
1338 1.1 scottr send_adb_IIsi(u_char *in, u_char *buffer, void *compRout, void *data, int
1339 1.1 scottr command)
1340 1.1 scottr {
1341 1.2 scottr int i, s, len;
1342 1.1 scottr
1343 1.1 scottr if (adbActionState == ADB_ACTION_NOTREADY)
1344 1.1 scottr return 1;
1345 1.1 scottr
1346 1.1 scottr s = splhigh(); /* don't interrupt while we are messing with the ADB */
1347 1.1 scottr
1348 1.1 scottr if ((adbActionState == ADB_ACTION_IDLE) && /* ADB available? */
1349 1.1 scottr (ADB_INTR_IS_OFF)) { /* and no incoming interrupt? */
1350 1.1 scottr
1351 1.1 scottr } else if (adbWriteDelay == 0) /* it's busy, but is anything waiting? */
1352 1.1 scottr adbWriteDelay = 1; /* if no, then we'll "queue" it up */
1353 1.1 scottr else {
1354 1.1 scottr splx(s);
1355 1.1 scottr return 1; /* really busy! */
1356 1.1 scottr }
1357 1.1 scottr
1358 1.1 scottr if ((long) in == (long) 0) { /* need to convert? */
1359 1.1 scottr /* don't need to use adb_cmd_extra here because this section will be called */
1360 1.1 scottr /* ONLY when it is an ADB command (no RTC or PRAM) */
1361 1.1 scottr if ((command & 0x0c) == 0x08) /* copy addl data ONLY if doing a listen! */
1362 1.1 scottr len = buffer[0]; /* length of additional data */
1363 1.1 scottr else
1364 1.1 scottr len = 0; /* no additional data */
1365 1.1 scottr
1366 1.1 scottr adbOutputBuffer[0] = 2 + len; /* dev. type + command + addl. data */
1367 1.1 scottr adbOutputBuffer[1] = 0x00; /* mark as an ADB command */
1368 1.1 scottr adbOutputBuffer[2] = (u_char) command; /* load command */
1369 1.1 scottr
1370 1.1 scottr for (i = 1; i <= len; i++) /* copy additional output data, if any */
1371 1.1 scottr adbOutputBuffer[2 + i] = buffer[i];
1372 1.1 scottr } else
1373 1.1 scottr for (i = 0; i <= (adbOutputBuffer[0] + 1); i++)
1374 1.1 scottr adbOutputBuffer[i] = in[i];
1375 1.1 scottr
1376 1.1 scottr adbSentChars = 0; /* nothing sent yet */
1377 1.1 scottr adbBuffer = buffer; /* save buffer to know where to save result */
1378 1.1 scottr adbCompRout = compRout; /* save completion routine pointer */
1379 1.1 scottr adbCompData = data; /* save completion routine data pointer */
1380 1.1 scottr adbWaitingCmd = adbOutputBuffer[2]; /* save wait command */
1381 1.1 scottr
1382 1.1 scottr if (adbWriteDelay != 1) { /* start command now? */
1383 1.1 scottr adbActionState = ADB_ACTION_OUT; /* set next state */
1384 1.1 scottr
1385 1.1 scottr ADB_SET_STATE_ACTIVE(); /* tell ADB that we want to send */
1386 1.1 scottr ADB_SET_STATE_ACKOFF(); /* make sure */
1387 1.1 scottr
1388 1.1 scottr ADB_SET_SR_OUTPUT(); /* set shift register for OUT */
1389 1.1 scottr
1390 1.1 scottr ADB_SR() = adbOutputBuffer[adbSentChars + 1]; /* load byte for output */
1391 1.1 scottr
1392 1.1 scottr ADB_SET_STATE_ACKON(); /* tell ADB byte ready to shift */
1393 1.1 scottr }
1394 1.1 scottr adbWriteDelay = 1; /* something in the write "queue" */
1395 1.1 scottr
1396 1.1 scottr splx(s);
1397 1.1 scottr
1398 1.1 scottr if (0x0100 <= (s & 0x0700)) /* were VIA1 interrupts blocked ? */
1399 1.1 scottr /* poll until byte done */
1400 1.1 scottr while ((adbActionState != ADB_ACTION_IDLE) || (ADB_INTR_IS_ON)
1401 1.1 scottr || (adbWaiting == 1))
1402 1.1 scottr if (ADB_SR_INTR_IS_ON) /* wait for "interrupt" */
1403 1.1 scottr adb_intr_IIsi(); /* go process "interrupt" */
1404 1.1 scottr
1405 1.1 scottr return 0;
1406 1.1 scottr } /* send_adb_IIsi */
1407 1.1 scottr
1408 1.1 scottr
1409 1.1 scottr /*
1410 1.1 scottr * adb_comp_exec
1411 1.1 scottr * This is a general routine that calls the completion routine if there is one.
1412 1.1 scottr */
1413 1.1 scottr void adb_comp_exec(void)
1414 1.1 scottr {
1415 1.1 scottr if ( (long)0 != adbCompRout ) /* don't call if empty return location */
1416 1.1 scottr #ifdef __NetBSD__
1417 1.1 scottr asm ( "
1418 1.1 scottr movml #0xffff, sp@- | save all registers
1419 1.1 scottr movl %0,a2 | adbCompData
1420 1.1 scottr movl %1,a1 | adbCompRout
1421 1.1 scottr movl %2,a0 | adbBuffer
1422 1.1 scottr movl %3,d0 | adbWaitingCmd
1423 1.1 scottr jbsr a1@ | go call the routine
1424 1.1 scottr movml sp@+, #0xffff | restore all registers"
1425 1.1 scottr : : "g" (adbCompData), "g" (adbCompRout), "g" (adbBuffer), "g" (adbWaitingCmd) );
1426 1.1 scottr #else /* for macos based testing */
1427 1.1 scottr asm
1428 1.1 scottr {
1429 1.1 scottr movem.l a0/a1/a2/d0,-(a7)
1430 1.1 scottr move.l adbCompData,a2
1431 1.1 scottr move.l adbCompRout,a1
1432 1.1 scottr move.l adbBuffer,a0
1433 1.1 scottr move.w adbWaitingCmd,d0
1434 1.1 scottr jsr (a1)
1435 1.1 scottr movem.l (a7)+,d0/a2/a1/a0
1436 1.1 scottr }
1437 1.1 scottr #endif
1438 1.1 scottr }
1439 1.1 scottr
1440 1.1 scottr
1441 1.1 scottr /*
1442 1.1 scottr * this routine handles what needs to be done after a message is read
1443 1.1 scottr * from the adb data points to the raw data received from the device,
1444 1.1 scottr * including device number (on IIsi) and result code.
1445 1.1 scottr */
1446 1.1 scottr void
1447 1.1 scottr adb_handle_unsol(u_char *in)
1448 1.1 scottr {
1449 1.1 scottr int i, cmd;
1450 1.1 scottr u_char data[MAX_ADB_MSG_LENGTH];
1451 1.1 scottr
1452 1.1 scottr /* make local copy so we don't destroy the real one - it may
1453 1.1 scottr * be needed later. */
1454 1.1 scottr for (i = 0; i <= (in[0] + 1); i++)
1455 1.1 scottr data[i] = in[i];
1456 1.1 scottr
1457 1.1 scottr switch (adbHardware) {
1458 1.1 scottr case ADB_HW_II:
1459 1.1 scottr /* adjust the "length" byte */
1460 1.1 scottr cmd = data[1];
1461 1.1 scottr if (data[0] < 2)
1462 1.1 scottr data[1] = 0;
1463 1.1 scottr else
1464 1.1 scottr data[1] = data[0] - 1;
1465 1.1 scottr
1466 1.1 scottr adb_complete((data + 1), (long) 0, cmd);
1467 1.1 scottr
1468 1.1 scottr break;
1469 1.1 scottr
1470 1.1 scottr case ADB_HW_IISI:
1471 1.1 scottr case ADB_HW_CUDA:
1472 1.1 scottr /* only handles ADB for now */
1473 1.1 scottr if (0 != *(data + 2))
1474 1.1 scottr return;
1475 1.1 scottr
1476 1.1 scottr /* adjust the "length" byte */
1477 1.1 scottr cmd = data[4];
1478 1.1 scottr if (data[0] < 5)
1479 1.1 scottr data[4] = 0;
1480 1.1 scottr else
1481 1.1 scottr data[4] = data[0] - 4;
1482 1.1 scottr
1483 1.1 scottr adb_complete((data + 4), (long) 0, cmd);
1484 1.1 scottr
1485 1.1 scottr break;
1486 1.1 scottr
1487 1.1 scottr case ADB_HW_PB:
1488 1.1 scottr return; /* how does PM handle "unsolicited" messages? */
1489 1.1 scottr case ADB_HW_UNKNOWN:
1490 1.1 scottr return;
1491 1.1 scottr }
1492 1.1 scottr
1493 1.1 scottr return;
1494 1.1 scottr
1495 1.1 scottr #if 0
1496 1.1 scottr /* this should really be used later, once it is set up properly */
1497 1.1 scottr /* AND we need to make sure that we DON'T call it if it is zero! */
1498 1.1 scottr if ( 0 != ADBDevTable[i].devType )
1499 1.1 scottr (*(ADBDevTable[i].ServiceRtPtr))();
1500 1.1 scottr #endif
1501 1.1 scottr }
1502 1.1 scottr
1503 1.1 scottr
1504 1.1 scottr /*
1505 1.1 scottr * This is my version of the ADBOp routine. It mainly just calls the hardware-specific
1506 1.1 scottr * routine.
1507 1.1 scottr *
1508 1.1 scottr * data : pointer to data area to be used by compRout
1509 1.1 scottr * compRout : completion routine
1510 1.1 scottr * buffer : for LISTEN: points to data to send - MAX 8 data bytes, byte 0 = # of bytes
1511 1.1 scottr * : for TALK: points to place to save return data
1512 1.1 scottr * command : the adb command to send
1513 1.1 scottr
1514 1.1 scottr * result : 0 = success
1515 1.1 scottr * : -1 = could not complete
1516 1.1 scottr */
1517 1.1 scottr int
1518 1.1 scottr adb_op(Ptr buffer, Ptr compRout, Ptr data, short command)
1519 1.1 scottr {
1520 1.1 scottr int result;
1521 1.1 scottr
1522 1.1 scottr switch (adbHardware) {
1523 1.1 scottr case ADB_HW_II:
1524 1.1 scottr result = send_adb_II((u_char *) 0,
1525 1.1 scottr (u_char *) buffer, (void *) compRout,
1526 1.1 scottr (void *) data, (int) command);
1527 1.1 scottr if (result == 0)
1528 1.1 scottr return 0;
1529 1.1 scottr else
1530 1.1 scottr return -1;
1531 1.1 scottr break;
1532 1.1 scottr
1533 1.1 scottr case ADB_HW_IISI:
1534 1.1 scottr result = send_adb_IIsi((u_char *) 0,
1535 1.1 scottr (u_char *) buffer, (void *) compRout,
1536 1.1 scottr (void *) data, (int) command);
1537 1.1 scottr /*
1538 1.1 scottr * I wish I knew why this delay is needed. It usually needs to
1539 1.1 scottr * be here when several commands are sent in close succession,
1540 1.1 scottr * especially early in device probes when doing collision
1541 1.1 scottr * detection. It must be some race condition. Sigh. - jpw
1542 1.1 scottr */
1543 1.1 scottr delay(100);
1544 1.1 scottr if (result == 0)
1545 1.1 scottr return 0;
1546 1.1 scottr else
1547 1.1 scottr return -1;
1548 1.1 scottr break;
1549 1.1 scottr
1550 1.1 scottr case ADB_HW_PB:
1551 1.1 scottr return -1;
1552 1.1 scottr break;
1553 1.1 scottr
1554 1.1 scottr case ADB_HW_CUDA:
1555 1.1 scottr result = send_adb_cuda((u_char *) 0,
1556 1.1 scottr (u_char *) buffer, (void *) compRout,
1557 1.1 scottr (void *) data, (int) command);
1558 1.1 scottr if (result == 0)
1559 1.1 scottr return 0;
1560 1.1 scottr else
1561 1.1 scottr return -1;
1562 1.1 scottr break;
1563 1.1 scottr
1564 1.1 scottr case ADB_HW_UNKNOWN:
1565 1.1 scottr default:
1566 1.1 scottr return -1;
1567 1.1 scottr }
1568 1.1 scottr }
1569 1.1 scottr
1570 1.1 scottr
1571 1.1 scottr /*
1572 1.1 scottr * adb_cleanup
1573 1.1 scottr * This routine simply calls the appropriate version of the adb_cleanup routine.
1574 1.1 scottr */
1575 1.1 scottr void
1576 1.1 scottr adb_cleanup(u_char *in)
1577 1.1 scottr {
1578 1.1 scottr switch (adbHardware) {
1579 1.1 scottr case ADB_HW_II:
1580 1.1 scottr ADB_VIA_CLR_INTR(); /* clear interrupt */
1581 1.1 scottr break;
1582 1.1 scottr
1583 1.1 scottr case ADB_HW_IISI:
1584 1.1 scottr /* get those pesky clock ticks we missed while booting */
1585 1.1 scottr adb_cleanup_IIsi(in);
1586 1.1 scottr break;
1587 1.1 scottr
1588 1.1 scottr case ADB_HW_PB:
1589 1.1 scottr #ifdef ADB_PB_TESTING
1590 1.1 scottr /* TO DO: really PM_VIA_CLR_INTR - should we put it in pm_direct.h? */
1591 1.1 scottr via_reg(VIA1, vIFR) = 0x90; /* clear interrupt */
1592 1.1 scottr #endif
1593 1.1 scottr break;
1594 1.1 scottr
1595 1.1 scottr case ADB_HW_CUDA:
1596 1.1 scottr /* TO DO: probably need some sort of cleanup for Cuda */
1597 1.1 scottr ADB_VIA_CLR_INTR();
1598 1.1 scottr ADB_SET_STATE_IDLE_CUDA();
1599 1.1 scottr break;
1600 1.1 scottr
1601 1.1 scottr case ADB_HW_UNKNOWN:
1602 1.1 scottr return;
1603 1.1 scottr }
1604 1.1 scottr }
1605 1.1 scottr
1606 1.1 scottr
1607 1.1 scottr /*
1608 1.1 scottr * adb_cleanup_IIsi
1609 1.1 scottr * This is sort of a "read" routine that forces the adb hardware through a read cycle
1610 1.1 scottr * if there is something waiting. This helps "clean up" any commands that may have gotten
1611 1.1 scottr * stuck or stopped during the boot process.
1612 1.1 scottr *
1613 1.1 scottr */
1614 1.1 scottr void
1615 1.1 scottr adb_cleanup_IIsi(u_char *buffer)
1616 1.1 scottr {
1617 1.1 scottr int i;
1618 1.1 scottr int dummy;
1619 1.1 scottr int s;
1620 1.1 scottr long my_time;
1621 1.1 scottr int endofframe;
1622 1.1 scottr
1623 1.1 scottr delay(ADB_ACK_DELAY);
1624 1.1 scottr
1625 1.1 scottr i = 1; /* skip over [0] */
1626 1.1 scottr s = splhigh(); /* block ALL interrupts while we are working */
1627 1.1 scottr ADB_SET_SR_INPUT(); /* make sure SR is set to IN */
1628 1.1 scottr ADB_VIA_INTR_DISABLE(); /* disable ADB interrupt on IIs. */
1629 1.1 scottr /* this is required, especially on faster machines */
1630 1.1 scottr delay(ADB_ACK_DELAY);
1631 1.1 scottr
1632 1.1 scottr if (ADB_INTR_IS_ON) {
1633 1.1 scottr ADB_SET_STATE_ACTIVE(); /* signal start of data frame */
1634 1.1 scottr
1635 1.1 scottr endofframe = 0;
1636 1.1 scottr while (0 == endofframe) {
1637 1.1 scottr /* poll for ADB interrupt and watch for timeout */
1638 1.1 scottr /* if time out, keep going in hopes of not hanging the ADB chip - I think */
1639 1.1 scottr my_time = ADB_ACK_DELAY * 5;
1640 1.1 scottr while ((ADB_SR_INTR_IS_OFF) && (my_time-- > 0))
1641 1.1 scottr dummy = via_reg(VIA1, vBufB);
1642 1.1 scottr
1643 1.1 scottr buffer[i++] = ADB_SR(); /* reset interrupt flag by reading vSR */
1644 1.1 scottr /* perhaps put in a check here that ignores all data
1645 1.1 scottr * after the first MAX_ADB_MSG_LENGTH bytes ??? */
1646 1.1 scottr if (ADB_INTR_IS_OFF) /* check for end of frame */
1647 1.1 scottr endofframe = 1;
1648 1.1 scottr
1649 1.1 scottr ADB_SET_STATE_ACKON(); /* send ACK to ADB chip */
1650 1.1 scottr delay(ADB_ACK_DELAY); /* delay */
1651 1.1 scottr ADB_SET_STATE_ACKOFF(); /* send ACK to ADB chip */
1652 1.1 scottr }
1653 1.1 scottr ADB_SET_STATE_INACTIVE(); /* signal end of frame and delay */
1654 1.1 scottr
1655 1.1 scottr /* probably don't need to delay this long */
1656 1.1 scottr delay(ADB_ACK_DELAY);
1657 1.1 scottr }
1658 1.1 scottr buffer[0] = --i; /* [0] is length of message */
1659 1.1 scottr ADB_VIA_INTR_ENABLE(); /* enable ADB interrupt on IIs. */
1660 1.1 scottr splx(s); /* restore interrupts */
1661 1.1 scottr
1662 1.1 scottr return;
1663 1.1 scottr } /* adb_cleanup_IIsi */
1664 1.1 scottr
1665 1.1 scottr
1666 1.1 scottr /*
1667 1.1 scottr * adb_reinit sets up the adb stuff
1668 1.1 scottr *
1669 1.1 scottr */
1670 1.1 scottr void
1671 1.1 scottr adb_reinit(void)
1672 1.1 scottr {
1673 1.1 scottr u_char send_string[MAX_ADB_MSG_LENGTH];
1674 1.1 scottr int s;
1675 1.1 scottr int i, x;
1676 1.1 scottr int command;
1677 1.1 scottr int result;
1678 1.1 scottr int saveptr; /* point to next free relocation address */
1679 1.1 scottr int device;
1680 1.1 scottr int nonewtimes; /* times thru loop w/o any new devices */
1681 1.1 scottr ADBDataBlock data; /* temp. holder for getting device info */
1682 1.1 scottr
1683 1.1 scottr /* Make sure we are not interrupted while building the table. */
1684 1.1 scottr #ifdef ADB_PB_TESTING /* later this ifdef should come out */
1685 1.1 scottr if (adbHardware != ADB_HW_PB ) /* ints must be on for PB? */
1686 1.1 scottr #endif
1687 1.1 scottr s = splhigh();
1688 1.1 scottr
1689 1.1 scottr ADBNumDevices=0; /* no devices yet */
1690 1.1 scottr
1691 1.1 scottr /* Let intr routines know we are running reinit */
1692 1.1 scottr adbStarting = 1;
1693 1.1 scottr
1694 1.1 scottr /* Initialize the ADB table. For now, we'll always use the same
1695 1.1 scottr * table that is defined at the beginning of this file - no mallocs.
1696 1.1 scottr */
1697 1.1 scottr for (i = 0; i < 16; i++)
1698 1.1 scottr ADBDevTable[i].devType = 0;
1699 1.1 scottr
1700 1.1 scottr adb_setup_hw_type(); /* setup hardware type */
1701 1.1 scottr
1702 1.1 scottr /* Set up all the VIA bits we need to do the ADB stuff.
1703 1.1 scottr */
1704 1.1 scottr switch (adbHardware) {
1705 1.1 scottr case ADB_HW_II:
1706 1.1 scottr via_reg(VIA1, vDirB) |= 0x30; /* register B bits 4 and 5: outputs */
1707 1.1 scottr via_reg(VIA1, vDirB) &= 0xf7; /* register B bit 3: input */
1708 1.1 scottr via_reg(VIA1, vACR) &= ~vSR_OUT; /* make sure SR is set to IN (II, IIsi) */
1709 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* used by all types of hardware (II, IIsi) */
1710 1.1 scottr adbBusState = ADB_BUS_IDLE; /* this var. used in II-series code only */
1711 1.1 scottr via_reg(VIA1, vIER) = 0x84; /* make sure VIA interrupts are on (II, IIsi) */
1712 1.1 scottr ADB_SET_STATE_IDLE_II(); /* set ADB bus state to idle */
1713 1.1 scottr break;
1714 1.1 scottr
1715 1.1 scottr case ADB_HW_IISI:
1716 1.1 scottr via_reg(VIA1, vDirB) |= 0x30; /* register B bits 4 and 5: outputs */
1717 1.1 scottr via_reg(VIA1, vDirB) &= 0xf7; /* register B bit 3: input */
1718 1.1 scottr via_reg(VIA1, vACR) &= ~vSR_OUT; /* make sure SR is set to IN (II, IIsi) */
1719 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* used by all types of hardware (II, IIsi) */
1720 1.1 scottr adbBusState = ADB_BUS_IDLE; /* this var. used in II-series code only */
1721 1.1 scottr via_reg(VIA1, vIER) = 0x84; /* make sure VIA interrupts are on (II, IIsi) */
1722 1.1 scottr ADB_SET_STATE_IDLE_IISI(); /* set ADB bus state to idle */
1723 1.1 scottr break;
1724 1.1 scottr
1725 1.1 scottr case ADB_HW_PB:
1726 1.1 scottr break; /* there has to be more than this? */
1727 1.1 scottr
1728 1.1 scottr case ADB_HW_CUDA:
1729 1.1 scottr via_reg(VIA1, vDirB) |= 0x30; /* register B bits 4 and 5: outputs */
1730 1.1 scottr via_reg(VIA1, vDirB) &= 0xf7; /* register B bit 3: input */
1731 1.1 scottr via_reg(VIA1, vACR) &= ~vSR_OUT; /* make sure SR is set to IN */
1732 1.1 scottr adbActionState = ADB_ACTION_IDLE; /* used by all types of hardware */
1733 1.1 scottr adbBusState = ADB_BUS_IDLE; /* this var. used in II-series code only */
1734 1.1 scottr via_reg(VIA1, vIER) = 0x84; /* make sure VIA interrupts are on */
1735 1.1 scottr ADB_SET_STATE_IDLE_CUDA(); /* set ADB bus state to idle */
1736 1.1 scottr break;
1737 1.1 scottr
1738 1.1 scottr case ADB_HW_UNKNOWN: /* if type unknown then skip out */
1739 1.1 scottr default:
1740 1.1 scottr via_reg(VIA1, vIER) = 0x04; /* turn interrupts off - TO DO: turn PB ints off? */
1741 1.1 scottr return;
1742 1.1 scottr break;
1743 1.1 scottr }
1744 1.1 scottr
1745 1.1 scottr /*
1746 1.1 scottr * Clear out any "leftover" commands. Remember that up until this
1747 1.1 scottr * point, the interrupt routine will be either off or it should be
1748 1.1 scottr * able to ignore inputs until the device table is built.
1749 1.1 scottr */
1750 1.1 scottr for (i = 0; i < 30; i++) {
1751 1.1 scottr delay(ADB_ACK_DELAY);
1752 1.1 scottr adb_cleanup(send_string);
1753 1.1 scottr printf_intr("adb: cleanup: ");
1754 1.1 scottr print_single(send_string);
1755 1.1 scottr delay(ADB_ACK_DELAY);
1756 1.1 scottr if (ADB_INTR_IS_OFF)
1757 1.1 scottr break;
1758 1.1 scottr }
1759 1.1 scottr
1760 1.1 scottr /* send an ADB reset first */
1761 1.1 scottr adb_op_sync((Ptr) 0, (Ptr) 0, (Ptr) 0, (short) 0x00);
1762 1.1 scottr
1763 1.1 scottr /*
1764 1.1 scottr * Probe for ADB devices.
1765 1.1 scottr * Probe devices 1-15 quickly to determine which
1766 1.1 scottr * device addresses are in use and which are free.
1767 1.1 scottr * For each address that is in use, move the device
1768 1.1 scottr * at that address to a higher free address.
1769 1.1 scottr * Continue doing this at that address until
1770 1.1 scottr * no device responds at that address. Then move
1771 1.1 scottr * the last device that was moved back to the
1772 1.1 scottr * original address. Do this for the remaining
1773 1.1 scottr * addresses that we determined were in use.
1774 1.1 scottr *
1775 1.1 scottr * When finished, do this entire process over again
1776 1.1 scottr * with the updated list of in use addresses. Do this
1777 1.1 scottr * until no new devices have been found in 20 passes
1778 1.1 scottr * though the in use address list.
1779 1.1 scottr * (This probably seems long and complicated, but it's
1780 1.1 scottr * the best way to detect multiple devices at the
1781 1.1 scottr * same address - sometimes it takes a couple of tries
1782 1.1 scottr * before the collision is detected.)
1783 1.1 scottr */
1784 1.1 scottr
1785 1.1 scottr /* initial scan through the devices */
1786 1.1 scottr for ( i=1; i<16; i++) {
1787 1.1 scottr command = (int) (0x0f | ((int) (i & 0x000f) << 4)); /* talk R3 */
1788 1.1 scottr result = adb_op_sync((Ptr) send_string, (Ptr) 0, (Ptr) 0, (short) command);
1789 1.1 scottr if (0x00 != send_string[0]) { /* anything come back ?? */
1790 1.1 scottr ADBDevTable[++ADBNumDevices].devType = (u_char) send_string[2];
1791 1.1 scottr ADBDevTable[ADBNumDevices].origAddr = i;
1792 1.1 scottr ADBDevTable[ADBNumDevices].currentAddr = i;
1793 1.1 scottr ADBDevTable[ADBNumDevices].DataAreaAddr = (long) 0;
1794 1.1 scottr ADBDevTable[ADBNumDevices].ServiceRtPtr = NULL;
1795 1.1 scottr /*printf_intr("initial device found (at index %i)\n", ADBNumDevices);*/
1796 1.1 scottr }
1797 1.1 scottr }
1798 1.1 scottr
1799 1.1 scottr /* find highest unused address */
1800 1.1 scottr for ( saveptr=15; saveptr>0; saveptr-- )
1801 1.1 scottr if ( -1 == get_adb_info(&data, saveptr) )
1802 1.1 scottr break;
1803 1.1 scottr
1804 1.1 scottr if ( saveptr==0 ) /* no free addresses??? */
1805 1.1 scottr saveptr=15;
1806 1.1 scottr
1807 1.1 scottr /*printf_intr("first free is: 0x%02x\n", saveptr);*/
1808 1.1 scottr /*printf_intr("devices: %i\n", ADBNumDevices);*/
1809 1.1 scottr
1810 1.1 scottr nonewtimes=0; /* no loops w/o new devices */
1811 1.1 scottr while ( nonewtimes++ < 11 ) {
1812 1.1 scottr for ( i=1; i <= ADBNumDevices; i++ ) {
1813 1.1 scottr device=ADBDevTable[i].currentAddr;
1814 1.1 scottr /*printf_intr("moving device 0x%02x to 0x%02x (index 0x%02x) ", device, saveptr, i);*/
1815 1.1 scottr
1816 1.1 scottr /* send TALK R3 to address */
1817 1.1 scottr command = (int) (0x0f | ((int) (device & 0x000f) << 4));
1818 1.1 scottr adb_op_sync((Ptr) send_string, (Ptr) 0, (Ptr) 0, (short) command);
1819 1.1 scottr
1820 1.1 scottr /* move device to higher address */
1821 1.1 scottr command = (int) (0x0b | ((int) (device & 0x000f) << 4));
1822 1.1 scottr send_string[0]=2;
1823 1.1 scottr send_string[1]=(u_char) (saveptr | 0x60 );
1824 1.1 scottr send_string[2]=0xfe;
1825 1.1 scottr adb_op_sync((Ptr) send_string, (Ptr) 0, (Ptr) 0, (short) command);
1826 1.1 scottr
1827 1.1 scottr /* send TALK R3 - anything at old address? */
1828 1.1 scottr command = (int) (0x0f | ((int) (device & 0x000f) << 4));
1829 1.1 scottr result = adb_op_sync((Ptr) send_string, (Ptr) 0, (Ptr) 0, (short) command);
1830 1.1 scottr if ( send_string[0] != 0 ) {
1831 1.1 scottr /* new device found */
1832 1.1 scottr /* update data for previously moved device */
1833 1.1 scottr ADBDevTable[i].currentAddr=saveptr;
1834 1.1 scottr /*printf_intr("old device at index %i\n",i);*/
1835 1.1 scottr /* add new device in table */
1836 1.1 scottr /*printf_intr("new device found\n");*/
1837 1.1 scottr ADBDevTable[++ADBNumDevices].devType = (u_char) send_string[2];
1838 1.1 scottr ADBDevTable[ADBNumDevices].origAddr = device;
1839 1.1 scottr ADBDevTable[ADBNumDevices].currentAddr = device;
1840 1.1 scottr ADBDevTable[ADBNumDevices].DataAreaAddr = (long) 0;
1841 1.1 scottr ADBDevTable[ADBNumDevices].ServiceRtPtr = NULL;
1842 1.1 scottr /* find next unused address */
1843 1.1 scottr for ( x=saveptr; x>0; x-- )
1844 1.1 scottr if ( -1 == get_adb_info(&data, x) ) {
1845 1.1 scottr saveptr=x;
1846 1.1 scottr break;
1847 1.1 scottr }
1848 1.1 scottr /*printf_intr("new free is 0x%02x\n", saveptr);*/
1849 1.1 scottr nonewtimes=0;
1850 1.1 scottr } else {
1851 1.1 scottr /*printf_intr("moving back...\n");*/
1852 1.1 scottr /* move old device back */
1853 1.1 scottr command = (int) (0x0b | ((int) (saveptr & 0x000f) << 4));
1854 1.1 scottr send_string[0]=2;
1855 1.1 scottr send_string[1]=(u_char) (device | 0x60 );
1856 1.1 scottr send_string[2]=0xfe;
1857 1.1 scottr adb_op_sync((Ptr) send_string, (Ptr) 0, (Ptr) 0, (short) command);
1858 1.1 scottr }
1859 1.1 scottr }
1860 1.1 scottr }
1861 1.1 scottr
1862 1.1 scottr adb_prog_switch_enable(); /* enable the programmer's switch, if we have one */
1863 1.1 scottr
1864 1.1 scottr if (0 == ADBNumDevices) /* tell user if no devices found */
1865 1.1 scottr printf_intr("adb: no devices found\n");
1866 1.1 scottr
1867 1.1 scottr adbStarting = 0; /* not starting anymore */
1868 1.1 scottr printf_intr("adb: ADBReInit complete\n");
1869 1.1 scottr
1870 1.1 scottr #ifdef ADB_PB_TESTING /* later this ifdef should come out */
1871 1.1 scottr if (adbHardware != ADB_HW_PB ) /* ints must be on for PB? */
1872 1.1 scottr #endif
1873 1.1 scottr splx(s);
1874 1.1 scottr return;
1875 1.1 scottr }
1876 1.1 scottr
1877 1.1 scottr
1878 1.1 scottr /* adb_cmd_result
1879 1.1 scottr * This routine lets the caller know whether the specified adb command string should
1880 1.1 scottr * expect a returned result, such as a TALK command.
1881 1.1 scottr * returns: 0 if a result should be expected
1882 1.1 scottr * 1 if a result should NOT be expected
1883 1.1 scottr */
1884 1.1 scottr int
1885 1.1 scottr adb_cmd_result(u_char *in)
1886 1.1 scottr {
1887 1.1 scottr switch (adbHardware) {
1888 1.1 scottr case ADB_HW_II:
1889 1.1 scottr /* was it an ADB talk command? */
1890 1.1 scottr if ((in[1] & 0x0c) == 0x0c)
1891 1.1 scottr return 0;
1892 1.1 scottr else
1893 1.1 scottr return 1;
1894 1.1 scottr break;
1895 1.1 scottr
1896 1.1 scottr case ADB_HW_IISI:
1897 1.1 scottr case ADB_HW_CUDA:
1898 1.1 scottr /* was is an ADB talk command? */
1899 1.1 scottr if ((in[1] == 0x00) && ((in[2] & 0x0c) == 0x0c))
1900 1.1 scottr return 0;
1901 1.1 scottr else
1902 1.1 scottr /* was is an RTC/PRAM read date/time? */
1903 1.1 scottr if ((in[1] == 0x01) && (in[2] == 0x03))
1904 1.1 scottr return 0;
1905 1.1 scottr else
1906 1.1 scottr return 1;
1907 1.1 scottr break;
1908 1.1 scottr
1909 1.1 scottr case ADB_HW_PB:
1910 1.1 scottr return 1;
1911 1.1 scottr break;
1912 1.1 scottr
1913 1.1 scottr case ADB_HW_UNKNOWN:
1914 1.1 scottr default:
1915 1.1 scottr return 1;
1916 1.1 scottr }
1917 1.1 scottr }
1918 1.1 scottr
1919 1.1 scottr
1920 1.1 scottr /* adb_cmd_extra
1921 1.1 scottr * This routine lets the caller know whether the specified adb command string may have
1922 1.1 scottr * extra data appended to the end of it, such as a LISTEN command.
1923 1.1 scottr * returns: 0 if extra data is allowed
1924 1.1 scottr * 1 if extra data is NOT allowed
1925 1.1 scottr */
1926 1.1 scottr int
1927 1.1 scottr adb_cmd_extra(u_char *in)
1928 1.1 scottr {
1929 1.1 scottr switch (adbHardware) {
1930 1.1 scottr case ADB_HW_II:
1931 1.1 scottr if ((in[1] & 0x0c) == 0x08) /* was it a listen command? */
1932 1.1 scottr return 0;
1933 1.1 scottr else
1934 1.1 scottr return 1;
1935 1.1 scottr break;
1936 1.1 scottr
1937 1.1 scottr case ADB_HW_IISI:
1938 1.1 scottr case ADB_HW_CUDA:
1939 1.1 scottr /* TO DO: support needs to be added to recognize RTC
1940 1.1 scottr * and PRAM commands */
1941 1.1 scottr if ((in[2] & 0x0c) == 0x08) /* was it a listen command? */
1942 1.1 scottr return 0;
1943 1.1 scottr else /* add others later */
1944 1.1 scottr return 1;
1945 1.1 scottr break;
1946 1.1 scottr
1947 1.1 scottr case ADB_HW_PB:
1948 1.1 scottr return 1;
1949 1.1 scottr break;
1950 1.1 scottr
1951 1.1 scottr case ADB_HW_UNKNOWN:
1952 1.1 scottr default:
1953 1.1 scottr return 1;
1954 1.1 scottr }
1955 1.1 scottr }
1956 1.1 scottr
1957 1.1 scottr
1958 1.1 scottr /* adb_op_sync
1959 1.1 scottr * This routine does exactly what the adb_op routine does, except that after the
1960 1.1 scottr * adb_op is called, it waits until the return value is present before returning
1961 1.1 scottr */
1962 1.1 scottr int
1963 1.1 scottr adb_op_sync(Ptr buffer, Ptr compRout, Ptr data, short command)
1964 1.1 scottr {
1965 1.1 scottr int result;
1966 1.1 scottr int flag;
1967 1.1 scottr
1968 1.1 scottr flag = 0;
1969 1.1 scottr result = adb_op(buffer, (void *) adb_op_comprout,
1970 1.1 scottr (void *) &flag, command); /* send command */
1971 1.1 scottr if (result == 0) { /* send ok? */
1972 1.1 scottr /* Don't need to use adb_cmd_result since this section is
1973 1.1 scottr * hardware independent, and for ADB commands only (no RTC or PRAM) */
1974 1.1 scottr /*if ((command & 0x0c) == 0x0c)*/ /* was it a talk? */
1975 1.1 scottr while (0 == flag) ;
1976 1.1 scottr
1977 1.1 scottr return 0;
1978 1.1 scottr } else
1979 1.1 scottr return result;
1980 1.1 scottr }
1981 1.1 scottr
1982 1.1 scottr
1983 1.1 scottr /* adb_op_comprout
1984 1.1 scottr * This function is used by the adb_op_sync routine so it knows when the function is
1985 1.1 scottr * done.
1986 1.1 scottr */
1987 1.1 scottr void adb_op_comprout(void)
1988 1.1 scottr {
1989 1.1 scottr #ifdef __NetBSD__
1990 1.1 scottr asm ( "movw #1,a2@ | update flag value" );
1991 1.1 scottr #else /* for macos based testing */
1992 1.1 scottr asm { move.w #1,(a2) } /* update flag value */
1993 1.1 scottr #endif
1994 1.1 scottr }
1995 1.1 scottr
1996 1.1 scottr void
1997 1.1 scottr adb_setup_hw_type(void)
1998 1.1 scottr {
1999 1.1 scottr long response;
2000 1.1 scottr
2001 1.1 scottr response = mac68k_machine.machineid;
2002 1.1 scottr
2003 1.1 scottr switch (response) {
2004 1.1 scottr case 6: /* II */
2005 1.1 scottr case 7: /* IIx */
2006 1.1 scottr case 8: /* IIcx */
2007 1.1 scottr case 9: /* SE/30 */
2008 1.1 scottr case 11: /* IIci */
2009 1.1 scottr case 22: /* Quadra 700 */
2010 1.1 scottr case 30: /* Centris 650 */
2011 1.1 scottr case 35: /* Quadra 800 */
2012 1.1 scottr case 36: /* Quadra 650 */
2013 1.1 scottr case 52: /* Centris 610 */
2014 1.1 scottr case 53: /* Centris 650 */
2015 1.1 scottr adbHardware = ADB_HW_II;
2016 1.1 scottr printf_intr("adb: using II series hardware support\n");
2017 1.1 scottr break;
2018 1.1 scottr case 18: /* IIsi */
2019 1.1 scottr case 20: /* Quadra 900 - not sure if IIsi or not */
2020 1.1 scottr case 23: /* Classic II */
2021 1.1 scottr case 26: /* Quadra 950 - not sure if IIsi or not */
2022 1.1 scottr case 27: /* LC III, Performa 450 */
2023 1.1 scottr case 37: /* LC II, Performa 400/405/430 */
2024 1.1 scottr case 44: /* IIvi */
2025 1.1 scottr case 45: /* Performa 600 */
2026 1.1 scottr case 48: /* IIvx */
2027 1.1 scottr case 49: /* Color Classic - not sure if IIsi or not */
2028 1.1 scottr case 62: /* Performa 460/465/467 */
2029 1.1 scottr case 83: /* Color Classic II (number right?) - not sure if IIsi or not */
2030 1.1 scottr adbHardware = ADB_HW_IISI;
2031 1.1 scottr printf_intr("adb: using IIsi series hardware support\n");
2032 1.1 scottr break;
2033 1.1 scottr case 21: /* PowerBook 170 */
2034 1.1 scottr case 25: /* PowerBook 140 */
2035 1.1 scottr case 54: /* PowerBook 145 */
2036 1.1 scottr case 34: /* PowerBook 160 */
2037 1.1 scottr case 84: /* PowerBook 165 */
2038 1.1 scottr case 50: /* PowerBook 165c */
2039 1.1 scottr case 33: /* PowerBook 180 */
2040 1.1 scottr case 71: /* PowerBook 180c */
2041 1.1 scottr case 115: /* PowerBook 150 */
2042 1.1 scottr #ifdef ADB_PB_TESTING
2043 1.1 scottr adbHardware=ADB_HW_PB;
2044 1.1 scottr pm_setup_adb();
2045 1.1 scottr printf_intr("adb: using PowerBook 100-series hardware support\n");
2046 1.1 scottr #else
2047 1.1 scottr adbHardware = ADB_HW_UNKNOWN; /* really ADB_HW_PB, but that's not done yet */
2048 1.1 scottr printf_intr("adb: hardware type (PowerBook 1xx) not yet supported for this machine\n");
2049 1.1 scottr printf_intr("adb: ADB support is disabled\n");
2050 1.1 scottr #endif
2051 1.1 scottr break;
2052 1.1 scottr case 29: /* PowerBook Duo 210 */
2053 1.1 scottr case 32: /* PowerBook Duo 230 */
2054 1.1 scottr case 38: /* PowerBook Duo 250 */
2055 1.1 scottr case 72: /* PowerBook 500 series */
2056 1.1 scottr case 77: /* PowerBook Duo 270 */
2057 1.1 scottr case 102: /* PowerBook Duo 280 */
2058 1.1 scottr case 103: /* PowerBook Duo 280c */
2059 1.1 scottr #ifdef ADB_PB_TESTING
2060 1.1 scottr adbHardware=ADB_HW_PB;
2061 1.1 scottr pm_setup_adb();
2062 1.1 scottr printf_intr("adb: using PowerBook Duo-series and PowerBook 500-series hardware support\n");
2063 1.1 scottr #else
2064 1.1 scottr adbHardware = ADB_HW_UNKNOWN; /* really ADB_HW_PB, but that's not done yet */
2065 1.1 scottr printf_intr("adb: hardware type (PowerBook Duo/5xx) not yet supported for this machine\n");
2066 1.1 scottr printf_intr("adb: ADB support is disabled\n");
2067 1.1 scottr #endif
2068 1.1 scottr break;
2069 1.1 scottr case 60: /* Centris 660AV */
2070 1.1 scottr case 78: /* Quadra 840AV */
2071 1.1 scottr case 89: /* LC 475, Performa 475/476 */
2072 1.1 scottr case 92: /* LC 575, Performa 575/577/578 */
2073 1.1 scottr case 94: /* Quadra 605 */
2074 1.1 scottr case 98: /* LC 630, Performa 630, Quadra 630 */
2075 1.1 scottr adbHardware = ADB_HW_CUDA;
2076 1.1 scottr printf_intr("adb: using Cuda series hardware support\n");
2077 1.1 scottr break;
2078 1.1 scottr default:
2079 1.1 scottr adbHardware = ADB_HW_UNKNOWN;
2080 1.1 scottr printf_intr("adb: hardware type unknown for this machine\n");
2081 1.1 scottr printf_intr("adb: ADB support is disabled\n");
2082 1.1 scottr break;
2083 1.1 scottr }
2084 1.1 scottr }
2085 1.1 scottr
2086 1.1 scottr int
2087 1.1 scottr count_adbs(void)
2088 1.1 scottr {
2089 1.1 scottr int i;
2090 1.1 scottr int found;
2091 1.1 scottr
2092 1.1 scottr found = 0;
2093 1.1 scottr
2094 1.1 scottr for (i = 1; i < 16; i++)
2095 1.1 scottr if (0 != ADBDevTable[i].devType)
2096 1.1 scottr found++;
2097 1.1 scottr
2098 1.1 scottr return found;
2099 1.1 scottr }
2100 1.1 scottr
2101 1.1 scottr int
2102 1.1 scottr get_ind_adb_info(ADBDataBlock * info, int index)
2103 1.1 scottr {
2104 1.1 scottr if ((index < 1) || (index > 15)) /* check range 1-15 */
2105 1.1 scottr return (-1);
2106 1.1 scottr
2107 1.1 scottr /* printf_intr("index 0x%x devType is: 0x%x\n", index,
2108 1.1 scottr ADBDevTable[index].devType); */
2109 1.1 scottr if (0 == ADBDevTable[index].devType) /* make sure it's a valid entry */
2110 1.1 scottr return (-1);
2111 1.1 scottr
2112 1.1 scottr info->devType = ADBDevTable[index].devType;
2113 1.1 scottr info->origADBAddr = ADBDevTable[index].origAddr;
2114 1.1 scottr info->dbServiceRtPtr = (Ptr) ADBDevTable[index].ServiceRtPtr;
2115 1.1 scottr info->dbDataAreaAddr = (Ptr) ADBDevTable[index].DataAreaAddr;
2116 1.1 scottr
2117 1.1 scottr return (ADBDevTable[index].currentAddr);
2118 1.1 scottr }
2119 1.1 scottr
2120 1.1 scottr int
2121 1.1 scottr get_adb_info(ADBDataBlock * info, int adbAddr)
2122 1.1 scottr {
2123 1.1 scottr int i;
2124 1.1 scottr
2125 1.1 scottr if ((adbAddr < 1) || (adbAddr > 15)) /* check range 1-15 */
2126 1.1 scottr return (-1);
2127 1.1 scottr
2128 1.1 scottr for (i = 1; i < 15; i++)
2129 1.1 scottr if (ADBDevTable[i].currentAddr == adbAddr) {
2130 1.1 scottr info->devType = ADBDevTable[i].devType;
2131 1.1 scottr info->origADBAddr = ADBDevTable[i].origAddr;
2132 1.1 scottr info->dbServiceRtPtr = (Ptr)ADBDevTable[i].ServiceRtPtr;
2133 1.1 scottr info->dbDataAreaAddr = ADBDevTable[i].DataAreaAddr;
2134 1.1 scottr return 0; /* found */
2135 1.1 scottr }
2136 1.1 scottr
2137 1.1 scottr return (-1); /* not found */
2138 1.1 scottr }
2139 1.1 scottr
2140 1.1 scottr int
2141 1.1 scottr set_adb_info(ADBSetInfoBlock * info, int adbAddr)
2142 1.1 scottr {
2143 1.1 scottr int i;
2144 1.1 scottr
2145 1.1 scottr if ((adbAddr < 1) || (adbAddr > 15)) /* check range 1-15 */
2146 1.1 scottr return (-1);
2147 1.1 scottr
2148 1.1 scottr for (i = 1; i < 15; i++)
2149 1.1 scottr if (ADBDevTable[i].currentAddr == adbAddr) {
2150 1.1 scottr ADBDevTable[i].ServiceRtPtr =
2151 1.1 scottr (void *)(info->siServiceRtPtr);
2152 1.1 scottr ADBDevTable[i].DataAreaAddr = info->siDataAreaAddr;
2153 1.1 scottr return 0; /* found */
2154 1.1 scottr }
2155 1.1 scottr
2156 1.1 scottr return (-1); /* not found */
2157 1.1 scottr
2158 1.1 scottr }
2159 1.1 scottr
2160 1.1 scottr #ifndef MRG_ADB
2161 1.1 scottr long
2162 1.1 scottr mrg_adbintr(void)
2163 1.1 scottr {
2164 1.1 scottr adb_intr();
2165 1.1 scottr return 1; /* mimic mrg_adbintr in macrom.h just in case */
2166 1.1 scottr }
2167 1.1 scottr
2168 1.1 scottr long
2169 1.1 scottr mrg_pmintr(void) /* we don't do this yet */
2170 1.1 scottr {
2171 1.1 scottr #ifdef ADB_PB_TESTING
2172 1.1 scottr pm_intr();
2173 1.1 scottr #endif
2174 1.1 scottr return 1; /* mimic mrg_pmintr in macrom.h just in case */
2175 1.1 scottr }
2176 1.1 scottr #endif /* !MRG_ADB */
2177 1.1 scottr
2178 1.1 scottr /* caller should really use machine-independant version: getPramTime */
2179 1.1 scottr /* this version does pseudo-adb access only */
2180 1.1 scottr int
2181 1.1 scottr adb_read_date_time(unsigned long *time)
2182 1.1 scottr {
2183 1.1 scottr u_char output[MAX_ADB_MSG_LENGTH];
2184 1.1 scottr int result;
2185 1.1 scottr volatile int flag = 0;
2186 1.1 scottr
2187 1.1 scottr switch (adbHardware) {
2188 1.1 scottr case ADB_HW_II:
2189 1.1 scottr return -1;
2190 1.1 scottr
2191 1.1 scottr case ADB_HW_IISI:
2192 1.1 scottr output[0] = 0x02; /* 2 byte message */
2193 1.1 scottr output[1] = 0x01; /* to pram/rtc device */
2194 1.1 scottr output[2] = 0x03; /* read date/time */
2195 1.1 scottr result = send_adb_IIsi((u_char *) output,
2196 1.1 scottr (u_char *) output, (void *) adb_op_comprout,
2197 1.1 scottr (void *) &flag, (int) 0);
2198 1.1 scottr if (result != 0) /* exit if not sent */
2199 1.1 scottr return -1;
2200 1.1 scottr
2201 1.1 scottr while (0 == flag) ; /* wait for result */
2202 1.1 scottr
2203 1.1 scottr *time = (long) (*(long *) (output + 1));
2204 1.1 scottr return 0;
2205 1.1 scottr
2206 1.1 scottr case ADB_HW_PB:
2207 1.1 scottr return -1;
2208 1.1 scottr
2209 1.1 scottr case ADB_HW_CUDA:
2210 1.1 scottr output[0] = 0x02; /* 2 byte message */
2211 1.1 scottr output[1] = 0x01; /* to pram/rtc device */
2212 1.1 scottr output[2] = 0x03; /* read date/time */
2213 1.1 scottr result = send_adb_cuda((u_char *) output,
2214 1.1 scottr (u_char *) output, (void *) adb_op_comprout,
2215 1.1 scottr (void *) &flag, (int) 0);
2216 1.1 scottr if (result != 0) /* exit if not sent */
2217 1.1 scottr return -1;
2218 1.1 scottr
2219 1.1 scottr while (0 == flag) ; /* wait for result */
2220 1.1 scottr
2221 1.1 scottr *time = (long) (*(long *) (output + 1));
2222 1.1 scottr return 0;
2223 1.1 scottr
2224 1.1 scottr case ADB_HW_UNKNOWN:
2225 1.1 scottr default:
2226 1.1 scottr return -1;
2227 1.1 scottr }
2228 1.1 scottr }
2229 1.1 scottr
2230 1.1 scottr /* caller should really use machine-independant version: setPramTime */
2231 1.1 scottr /* this version does pseudo-adb access only */
2232 1.1 scottr int
2233 1.1 scottr adb_set_date_time(unsigned long time)
2234 1.1 scottr {
2235 1.1 scottr u_char output[MAX_ADB_MSG_LENGTH];
2236 1.2 scottr int result;
2237 1.2 scottr volatile int flag = 0;
2238 1.1 scottr
2239 1.1 scottr switch (adbHardware) {
2240 1.1 scottr case ADB_HW_II:
2241 1.1 scottr return -1;
2242 1.1 scottr
2243 1.1 scottr case ADB_HW_IISI:
2244 1.1 scottr output[0] = 0x06; /* 6 byte message */
2245 1.1 scottr output[1] = 0x01; /* to pram/rtc device */
2246 1.1 scottr output[2] = 0x09; /* set date/time */
2247 1.1 scottr output[3] = (u_char) (time >> 24);
2248 1.1 scottr output[4] = (u_char) (time >> 16);
2249 1.1 scottr output[5] = (u_char) (time >> 8);
2250 1.1 scottr output[6] = (u_char) (time);
2251 1.1 scottr result = send_adb_IIsi((u_char *) output,
2252 1.1 scottr (u_char *) 0, (void *) adb_op_comprout,
2253 1.1 scottr (void *) &flag, (int) 0);
2254 1.1 scottr if (result != 0) /* exit if not sent */
2255 1.1 scottr return -1;
2256 1.1 scottr
2257 1.1 scottr while (0 == flag) ; /* wait for send to finish */
2258 1.1 scottr
2259 1.1 scottr return 0;
2260 1.1 scottr
2261 1.1 scottr case ADB_HW_PB:
2262 1.1 scottr return -1;
2263 1.1 scottr
2264 1.1 scottr case ADB_HW_CUDA:
2265 1.1 scottr output[0] = 0x06; /* 6 byte message */
2266 1.1 scottr output[1] = 0x01; /* to pram/rtc device */
2267 1.1 scottr output[2] = 0x09; /* set date/time */
2268 1.1 scottr output[3] = (u_char) (time >> 24);
2269 1.1 scottr output[4] = (u_char) (time >> 16);
2270 1.1 scottr output[5] = (u_char) (time >> 8);
2271 1.1 scottr output[6] = (u_char) (time);
2272 1.1 scottr result = send_adb_cuda((u_char *) output,
2273 1.1 scottr (u_char *) 0, (void *) adb_op_comprout,
2274 1.1 scottr (void *) &flag, (int) 0);
2275 1.1 scottr if (result != 0) /* exit if not sent */
2276 1.1 scottr return -1;
2277 1.1 scottr
2278 1.1 scottr while (0 == flag) ; /* wait for send to finish */
2279 1.1 scottr
2280 1.1 scottr return 0;
2281 1.1 scottr
2282 1.1 scottr case ADB_HW_UNKNOWN:
2283 1.1 scottr default:
2284 1.1 scottr return -1;
2285 1.1 scottr }
2286 1.1 scottr }
2287 1.1 scottr
2288 1.1 scottr
2289 1.1 scottr int
2290 1.1 scottr adb_poweroff(void)
2291 1.1 scottr {
2292 1.1 scottr u_char output[MAX_ADB_MSG_LENGTH];
2293 1.1 scottr int result;
2294 1.1 scottr
2295 1.1 scottr switch (adbHardware) {
2296 1.1 scottr case ADB_HW_IISI:
2297 1.1 scottr output[0] = 0x02; /* 2 byte message */
2298 1.1 scottr output[1] = 0x01; /* to pram/rtc/soft-power device */
2299 1.1 scottr output[2] = 0x0a; /* set date/time */
2300 1.1 scottr result = send_adb_IIsi((u_char *) output,
2301 1.1 scottr (u_char *) 0, (void *) 0, (void *) 0, (int) 0);
2302 1.1 scottr if (result != 0) /* exit if not sent */
2303 1.1 scottr return -1;
2304 1.1 scottr
2305 1.1 scottr for (;;) ; /* wait for power off */
2306 1.1 scottr
2307 1.1 scottr return 0;
2308 1.1 scottr
2309 1.1 scottr case ADB_HW_PB:
2310 1.1 scottr return -1;
2311 1.1 scottr
2312 1.1 scottr /* TO DO: some cuda models claim to do soft power - check out */
2313 1.1 scottr case ADB_HW_II: /* II models don't do soft power */
2314 1.1 scottr case ADB_HW_CUDA: /* cuda doesn't do soft power */
2315 1.1 scottr case ADB_HW_UNKNOWN:
2316 1.1 scottr default:
2317 1.1 scottr return -1;
2318 1.1 scottr }
2319 1.1 scottr } /* adb_poweroff */
2320 1.1 scottr
2321 1.1 scottr int
2322 1.1 scottr adb_prog_switch_enable(void)
2323 1.1 scottr {
2324 1.1 scottr u_char output[MAX_ADB_MSG_LENGTH];
2325 1.2 scottr int result;
2326 1.2 scottr volatile int flag = 0;
2327 1.1 scottr
2328 1.1 scottr switch (adbHardware) {
2329 1.1 scottr case ADB_HW_IISI:
2330 1.1 scottr output[0] = 0x03; /* 3 byte message */
2331 1.1 scottr output[1] = 0x01; /* to pram/rtc/soft-power device */
2332 1.1 scottr output[2] = 0x1c; /* prog. switch control */
2333 1.1 scottr output[3] = 0x01; /* enable */
2334 1.1 scottr result = send_adb_IIsi((u_char *) output,
2335 1.1 scottr (u_char *) 0, (void *) adb_op_comprout,
2336 1.1 scottr (void *) &flag, (int) 0);
2337 1.1 scottr if (result != 0) /* exit if not sent */
2338 1.1 scottr return -1;
2339 1.1 scottr
2340 1.1 scottr while (0 == flag) ; /* wait for send to finish */
2341 1.1 scottr
2342 1.1 scottr return 0;
2343 1.1 scottr
2344 1.1 scottr case ADB_HW_PB:
2345 1.1 scottr return -1;
2346 1.1 scottr
2347 1.1 scottr case ADB_HW_II: /* II models don't do prog. switch */
2348 1.1 scottr case ADB_HW_CUDA: /* cuda doesn't do prog. switch */
2349 1.1 scottr case ADB_HW_UNKNOWN:
2350 1.1 scottr default:
2351 1.1 scottr return -1;
2352 1.1 scottr }
2353 1.1 scottr } /* adb_prog_switch_enable */
2354 1.1 scottr
2355 1.1 scottr int
2356 1.1 scottr adb_prog_switch_disable(void)
2357 1.1 scottr {
2358 1.1 scottr u_char output[MAX_ADB_MSG_LENGTH];
2359 1.2 scottr int result;
2360 1.2 scottr volatile int flag = 0;
2361 1.1 scottr
2362 1.1 scottr switch (adbHardware) {
2363 1.1 scottr case ADB_HW_IISI:
2364 1.1 scottr output[0] = 0x03; /* 3 byte message */
2365 1.1 scottr output[1] = 0x01; /* to pram/rtc/soft-power device */
2366 1.1 scottr output[2] = 0x1c; /* prog. switch control */
2367 1.1 scottr output[3] = 0x01; /* disable */
2368 1.1 scottr result = send_adb_IIsi((u_char *) output,
2369 1.1 scottr (u_char *) 0, (void *) adb_op_comprout,
2370 1.1 scottr (void *) &flag, (int) 0);
2371 1.1 scottr if (result != 0) /* exit if not sent */
2372 1.1 scottr return -1;
2373 1.1 scottr
2374 1.1 scottr while (0 == flag) ; /* wait for send to finish */
2375 1.1 scottr
2376 1.1 scottr return 0;
2377 1.1 scottr
2378 1.1 scottr case ADB_HW_PB:
2379 1.1 scottr return -1;
2380 1.1 scottr
2381 1.1 scottr case ADB_HW_II: /* II models don't do prog. switch */
2382 1.1 scottr case ADB_HW_CUDA: /* cuda doesn't do prog. switch */
2383 1.1 scottr case ADB_HW_UNKNOWN:
2384 1.1 scottr default:
2385 1.1 scottr return -1;
2386 1.1 scottr }
2387 1.1 scottr } /* adb_prog_switch_disable */
2388 1.1 scottr
2389 1.1 scottr #ifndef MRG_ADB
2390 1.1 scottr int
2391 1.1 scottr CountADBs(void)
2392 1.1 scottr {
2393 1.1 scottr return (count_adbs());
2394 1.1 scottr }
2395 1.1 scottr
2396 1.1 scottr void
2397 1.1 scottr ADBReInit(void)
2398 1.1 scottr {
2399 1.1 scottr adb_reinit();
2400 1.1 scottr }
2401 1.1 scottr
2402 1.1 scottr int
2403 1.1 scottr GetIndADB(ADBDataBlock * info, int index)
2404 1.1 scottr {
2405 1.1 scottr return (get_ind_adb_info(info, index));
2406 1.1 scottr }
2407 1.1 scottr
2408 1.1 scottr int
2409 1.1 scottr GetADBInfo(ADBDataBlock * info, int adbAddr)
2410 1.1 scottr {
2411 1.1 scottr return (get_adb_info(info, adbAddr));
2412 1.1 scottr }
2413 1.1 scottr
2414 1.1 scottr int
2415 1.1 scottr SetADBInfo(ADBSetInfoBlock * info, int adbAddr)
2416 1.1 scottr {
2417 1.1 scottr return (set_adb_info(info, adbAddr));
2418 1.1 scottr }
2419 1.1 scottr
2420 1.1 scottr int
2421 1.1 scottr ADBOp(Ptr buffer, Ptr compRout, Ptr data, short commandNum)
2422 1.1 scottr {
2423 1.1 scottr return (adb_op(buffer, compRout, data, commandNum));
2424 1.1 scottr }
2425 1.1 scottr #endif /* !MRG_ADB */
2426