]> git.gir.st - tmk_keyboard.git/blob - protocol/adb.c
Merge branch 'keymap2'
[tmk_keyboard.git] / protocol / adb.c
1 /*
2 Copyright 2011 Jun WAKO <wakojun@gmail.com>
3
4 This software is licensed with a Modified BSD License.
5 All of this is supposed to be Free Software, Open Source, DFSG-free,
6 GPL-compatible, and OK to use in both free and proprietary applications.
7 Additions and corrections to this file are welcome.
8
9
10 Redistribution and use in source and binary forms, with or without
11 modification, are permitted provided that the following conditions are met:
12
13 * Redistributions of source code must retain the above copyright
14 notice, this list of conditions and the following disclaimer.
15
16 * Redistributions in binary form must reproduce the above copyright
17 notice, this list of conditions and the following disclaimer in
18 the documentation and/or other materials provided with the
19 distribution.
20
21 * Neither the name of the copyright holders nor the names of
22 contributors may be used to endorse or promote products derived
23 from this software without specific prior written permission.
24
25 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 POSSIBILITY OF SUCH DAMAGE.
36 */
37
38 #include <stdbool.h>
39 #include <util/delay.h>
40 #include <avr/io.h>
41 #include <avr/interrupt.h>
42 #include "adb.h"
43
44
45 static inline void data_lo(void);
46 static inline void data_hi(void);
47 static inline bool data_in(void);
48 #ifdef ADB_PSW_BIT
49 static inline void psw_lo(void);
50 static inline void psw_hi(void);
51 static inline bool psw_in(void);
52 #endif
53
54 static inline void attention(void);
55 static inline void place_bit0(void);
56 static inline void place_bit1(void);
57 static inline void send_byte(uint8_t data);
58 static inline bool read_bit(void);
59 static inline uint8_t read_byte(void);
60 static inline uint8_t wait_data_lo(uint8_t us);
61 static inline uint8_t wait_data_hi(uint8_t us);
62
63
64 void adb_host_init(void)
65 {
66 data_hi();
67 #ifdef ADB_PSW_BIT
68 psw_hi();
69 #endif
70
71 // Enable keyboard left/right modifier distinction
72 // Addr:Keyboard(0010), Cmd:Listen(10), Register3(11)
73 // upper byte: reserved bits 0000, device address 0010
74 // lower byte: device handler 00000011
75 adb_host_listen(0x2B,0x02,0x03);
76 }
77
78 #ifdef ADB_PSW_BIT
79 bool adb_host_psw(void)
80 {
81 return psw_in();
82 }
83 #endif
84
85 uint16_t adb_host_kbd_recv(void)
86 {
87 uint16_t data = 0;
88 attention();
89 send_byte(0x2C); // Addr:Keyboard(0010), Cmd:Talk(11), Register0(00)
90 place_bit0(); // Stopbit(0)
91 if (!wait_data_lo(0xFF)) // Tlt/Stop to Start(140-260us)
92 return 0; // No data to send
93 if (!read_bit()) // Startbit(1)
94 return -2;
95
96 // ad hoc fix: without block inerrupt read wrong bit occasionally and get keys stuck
97 cli();
98 data = read_byte();
99 data = (data<<8) | read_byte();
100 sei();
101
102 if (read_bit()) // Stopbit(0)
103 return -3;
104 return data;
105 }
106
107 void adb_host_listen(uint8_t cmd, uint8_t data_h, uint8_t data_l)
108 {
109 attention();
110 send_byte(cmd);
111 place_bit0(); // Stopbit(0)
112 _delay_us(200); // Tlt/Stop to Start
113 place_bit1(); // Startbit(1)
114 send_byte(data_h);
115 send_byte(data_l);
116 place_bit0(); // Stopbit(0);
117 }
118
119 // send state of LEDs
120 void adb_host_kbd_led(uint8_t led)
121 {
122 // Addr:Keyboard(0010), Cmd:Listen(10), Register2(10)
123 // send upper byte (not used)
124 // send lower byte (bit2: ScrollLock, bit1: CapsLock, bit0:
125 adb_host_listen(0x2A,0,led&0x07);
126 }
127
128
129 static inline void data_lo()
130 {
131 ADB_DDR |= (1<<ADB_DATA_BIT);
132 ADB_PORT &= ~(1<<ADB_DATA_BIT);
133 }
134 static inline void data_hi()
135 {
136 ADB_PORT |= (1<<ADB_DATA_BIT);
137 ADB_DDR &= ~(1<<ADB_DATA_BIT);
138 }
139 static inline bool data_in()
140 {
141 ADB_PORT |= (1<<ADB_DATA_BIT);
142 ADB_DDR &= ~(1<<ADB_DATA_BIT);
143 return ADB_PIN&(1<<ADB_DATA_BIT);
144 }
145
146 #ifdef ADB_PSW_BIT
147 static inline void psw_lo()
148 {
149 ADB_DDR |= (1<<ADB_PSW_BIT);
150 ADB_PORT &= ~(1<<ADB_PSW_BIT);
151 }
152 static inline void psw_hi()
153 {
154 ADB_PORT |= (1<<ADB_PSW_BIT);
155 ADB_DDR &= ~(1<<ADB_PSW_BIT);
156 }
157 static inline bool psw_in()
158 {
159 ADB_PORT |= (1<<ADB_PSW_BIT);
160 ADB_DDR &= ~(1<<ADB_PSW_BIT);
161 return ADB_PIN&(1<<ADB_PSW_BIT);
162 }
163 #endif
164
165 static inline void attention(void)
166 {
167 data_lo();
168 _delay_us(700);
169 place_bit1();
170 }
171
172 static inline void place_bit0(void)
173 {
174 data_lo();
175 _delay_us(65);
176 data_hi();
177 _delay_us(35);
178 }
179
180 static inline void place_bit1(void)
181 {
182 data_lo();
183 _delay_us(35);
184 data_hi();
185 _delay_us(65);
186 }
187
188 static inline void send_byte(uint8_t data)
189 {
190 for (int i = 0; i < 8; i++) {
191 if (data&(0x80>>i))
192 place_bit1();
193 else
194 place_bit0();
195 }
196 }
197
198 static inline bool read_bit(void)
199 {
200 // ADB Bit Cells
201 //
202 // bit0: ______~~~
203 // 65 :35us
204 //
205 // bit1: ___~~~~~~
206 // 35 :65us
207 //
208 // bit0 low time: 60-70% of bit cell(42-91us)
209 // bit1 low time: 30-40% of bit cell(21-52us)
210 // bit cell time: 70-130us
211 // [from Apple IIgs Hardware Reference Second Edition]
212 //
213 // After 55us if data line is low/high then bit is 0/1.
214 // Too simple to rely on?
215 bool bit;
216 wait_data_lo(75); // wait the beginning of bit cell
217 _delay_us(55);
218 bit = data_in();
219 wait_data_hi(36); // wait high part of bit cell
220 return bit;
221 }
222
223 static inline uint8_t read_byte(void)
224 {
225 uint8_t data = 0;
226 for (int i = 0; i < 8; i++) {
227 data <<= 1;
228 if (read_bit())
229 data = data | 1;
230 }
231 return data;
232 }
233
234 static inline uint8_t wait_data_lo(uint8_t us)
235 {
236 while (data_in() && us) {
237 _delay_us(1);
238 us--;
239 }
240 return us;
241 }
242
243 static inline uint8_t wait_data_hi(uint8_t us)
244 {
245 while (!data_in() && us) {
246 _delay_us(1);
247 us--;
248 }
249 return us;
250 }
251
252
253 /*
254 ADB Protocol
255 ============
256
257 Resources
258 ---------
259 ADB - The Untold Story: Space Aliens Ate My Mouse
260 http://developer.apple.com/legacy/mac/library/#technotes/hw/hw_01.html
261 Apple IIgs Hardware Reference Second Edition [p80(Chapter6 p121)]
262 ftp://ftp.apple.asimov.net/pub/apple_II/documentation/Apple%20IIgs%20Hardware%20Reference.pdf
263 ADB Keycode
264 http://72.0.193.250/Documentation/macppc/adbkeycodes/
265 http://m0115.web.fc2.com/m0115.jpg
266 [Inside Macintosh volume V, pages 191-192]
267 http://www.opensource.apple.com/source/IOHIDFamily/IOHIDFamily-421.18.3/IOHIDFamily/Cosmo_USB2ADB.c
268 ADB Signaling
269 http://kbdbabel.sourceforge.net/doc/kbd_signaling_pcxt_ps2_adb.pdf
270 ADB Overview & History
271 http://en.wikipedia.org/wiki/Apple_Desktop_Bus
272 Microchip Application Note: ADB device(with code for PIC16C)
273 http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=1824&appnote=en011062
274 AVR ATtiny2131 ADB to PS/2 converter(Japanese)
275 http://hp.vector.co.jp/authors/VA000177/html/KeyBoardA5DEA5CBA5A2II.html
276
277
278 Pinouts
279 -------
280 ADB female socket from the front:
281 __________
282 | | <--- top
283 | 4o o3 |
284 |2o o1|
285 | == |
286 |________| <--- bottom
287 | | <--- 4pins
288
289
290 ADB female socket from bottom:
291
292 ========== <--- front
293 | |
294 | |
295 |2o o1|
296 |4o o3|
297 ---------- <--- back
298
299 1: Data
300 2: Power SW(low when press Power key)
301 3: Vcc(5V)
302 4: GND
303
304
305 Commands
306 --------
307 ADB command is 1byte and consists of 4bit-address, 2bit-command
308 type and 2bit-register. The commands are always sent by Host.
309
310 Command format:
311 7 6 5 4 3 2 1 0
312 | | | |------------ address
313 | |-------- command type
314 | |---- register
315
316 bits commands
317 ------------------------------------------------------
318 - - - - 0 0 0 0 Send Request(reset all devices)
319 A A A A 0 0 0 1 Flush(reset a device)
320 - - - - 0 0 1 0 Reserved
321 - - - - 0 0 1 1 Reserved
322 - - - - 0 1 - - Reserved
323 A A A A 1 0 R R Listen(write to a device)
324 A A A A 1 1 R R Talk(read from a device)
325
326 The command to read keycodes from keyboard is 0x2C which
327 consist of keyboard address 2 and Talk against register 0.
328
329 Address:
330 2: keyboard
331 3: mice
332
333 Registers:
334 0: application(keyobard uses this to store its data.)
335 1: application
336 2: application(keyboard uses this for LEDs and state of modifiers)
337 3: status and command
338
339
340 Communication
341 -------------
342 This is a minimum information for keyboard communication.
343 See "Resources" for detail.
344
345 Signaling:
346
347 ~~~~____________~~||||||||||||__~~~~~_~~|||||||||||||||__~~~~
348
349 |800us | |7 Command 0| | | |15-64 Data 0|Stopbit(0)
350 +Attention | | | +Startbit(1)
351 +Startbit(1) | +Tlt(140-260us)
352 +stopbit(0)
353
354 Bit cells:
355
356 bit0: ______~~~
357 65 :35us
358
359 bit1: ___~~~~~~
360 35 :65us
361
362 bit0 low time: 60-70% of bit cell(42-91us)
363 bit1 low time: 30-40% of bit cell(21-52us)
364 bit cell time: 70-130us
365 [from Apple IIgs Hardware Reference Second Edition]
366
367 Criterion for bit0/1:
368 After 55us if line is low/high then bit is 0/1.
369
370 Attention & start bit:
371 Host asserts low in 560-1040us then places start bit(1).
372
373 Tlt(Stop to Start):
374 Bus stays high in 140-260us then device places start bit(1).
375
376 Global reset:
377 Host asserts low in 2.8-5.2ms. All devices are forced to reset.
378
379 Send request from device(Srq):
380 Device can request to send at commad(Global only?) stop bit.
381 keep low for 300us to request.
382
383
384 Keyboard Data(Register0)
385 This 16bit data can contains two keycodes and two released flags.
386 First keycode is palced in upper byte. When one keyocode is sent,
387 lower byte is 0xFF.
388 Release flag is 1 when key is released.
389
390 1514 . . . . . 8 7 6 . . . . . 0
391 | | | | | | | | | +-+-+-+-+-+-+- Keycode2
392 | | | | | | | | +--------------- Released2(1 when the key is released)
393 | +-+-+-+-+-+-+----------------- Keycode1
394 +------------------------------- Released1(1 when the key is released)
395
396 Keycodes:
397 Scancode consists of 7bit keycode and 1bit release flag.
398 Device can send two keycodes at once. If just one keycode is sent
399 keycode1 contains it and keyocode2 is 0xFF.
400
401 Power switch:
402 You can read the state from PSW line(active low) however
403 the switch has a special scancode 0x7F7F, so you can
404 also read from Data line. It uses 0xFFFF for release scancode.
405
406 Keyboard LEDs & state of keys(Register2)
407 This register hold current state of three LEDs and nine keys.
408 The state of LEDs can be changed by sending Listen command.
409
410 1514 . . . . . . 7 6 5 . 3 2 1 0
411 | | | | | | | | | | | | | | | +- LED1(NumLock)
412 | | | | | | | | | | | | | | +--- LED2(CapsLock)
413 | | | | | | | | | | | | | +----- LED3(ScrollLock)
414 | | | | | | | | | | +-+-+------- Reserved
415 | | | | | | | | | +------------- ScrollLock
416 | | | | | | | | +--------------- NumLock
417 | | | | | | | +----------------- Apple/Command
418 | | | | | | +------------------- Option
419 | | | | | +--------------------- Shift
420 | | | | +----------------------- Control
421 | | | +------------------------- Reset/Power
422 | | +--------------------------- CapsLock
423 | +----------------------------- Delete
424 +------------------------------- Reserved
425
426 END_OF_ADB
427 */
Imprint / Impressum