2 Copyright 2010,2011,2012,2013 Jun WAKO <wakojun@gmail.com>
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.
10 Redistribution and use in source and binary forms, with or without
11 modification, are permitted provided that the following conditions are met:
13 * Redistributions of source code must retain the above copyright
14 notice, this list of conditions and the following disclaimer.
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
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.
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.
39 * PS/2 protocol Pin interrupt version
43 #include <avr/interrupt.h>
44 #include <util/delay.h>
49 #define WAIT(stat, us, err) do { \
50 if (!wait_##stat(us)) { \
57 uint8_t ps2_error = PS2_ERR_NONE;
60 static inline uint8_t pbuf_dequeue(void);
61 static inline void pbuf_enqueue(uint8_t data);
62 static inline bool pbuf_has_data(void);
63 static inline void pbuf_clear(void);
66 void ps2_host_init(void)
71 // POR(150-2000ms) plus BAT(300-500ms) may take 2.5sec([3]p.20)
75 uint8_t ps2_host_send(uint8_t data)
78 ps2_error = PS2_ERR_NONE;
82 /* terminate a transmission if we have */
84 _delay_us(100); // 100us [4]p.13, [5]p.50
86 /* 'Request to Send' and Start bit */
89 WAIT(clock_lo, 10000, 10); // 10ms [5]p.50
92 for (uint8_t i = 0; i < 8; i++) {
100 WAIT(clock_hi, 50, 2);
101 WAIT(clock_lo, 50, 3);
106 if (parity) { data_hi(); } else { data_lo(); }
107 WAIT(clock_hi, 50, 4);
108 WAIT(clock_lo, 50, 5);
115 WAIT(data_lo, 50, 6);
116 WAIT(clock_lo, 50, 7);
118 /* wait for idle state */
119 WAIT(clock_hi, 50, 8);
120 WAIT(data_hi, 50, 9);
124 return ps2_host_recv_response();
131 uint8_t ps2_host_recv_response(void)
133 // Command may take 25ms/20ms at most([5]p.46, [3]p.21)
135 while (retry-- && !pbuf_has_data()) {
138 return pbuf_dequeue();
141 /* get data received by interrupt */
142 uint8_t ps2_host_recv(void)
144 if (pbuf_has_data()) {
145 ps2_error = PS2_ERR_NONE;
146 return pbuf_dequeue();
148 ps2_error = PS2_ERR_NODATA;
158 BIT0, BIT1, BIT2, BIT3, BIT4, BIT5, BIT6, BIT7,
162 static uint8_t data = 0;
163 static uint8_t parity = 1;
165 // TODO: abort if elapse 100us from previous interrupt
167 // return unless falling edge
194 if (!(parity & 0x01))
221 /* send LED state to keyboard */
222 void ps2_host_set_led(uint8_t led)
229 /*--------------------------------------------------------------------
230 * Ring buffer to store scan codes from keyboard
231 *------------------------------------------------------------------*/
233 static uint8_t pbuf[PBUF_SIZE];
234 static uint8_t pbuf_head = 0;
235 static uint8_t pbuf_tail = 0;
236 static inline void pbuf_enqueue(uint8_t data)
240 uint8_t next = (pbuf_head + 1) % PBUF_SIZE;
241 if (next != pbuf_tail) {
242 pbuf[pbuf_head] = data;
245 print("pbuf: full\n");
249 static inline uint8_t pbuf_dequeue(void)
255 if (pbuf_head != pbuf_tail) {
256 val = pbuf[pbuf_tail];
257 pbuf_tail = (pbuf_tail + 1) % PBUF_SIZE;
263 static inline bool pbuf_has_data(void)
267 bool has_data = (pbuf_head != pbuf_tail);
271 static inline void pbuf_clear(void)
275 pbuf_head = pbuf_tail = 0;