2 Copyright 2012 Jun Wako <wakojun@gmail.com>
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include <util/delay.h>
27 #include "protocol/serial.h"
46 static uint8_t matrix[MATRIX_ROWS];
47 #define ROW(code) ((code>>3)&0xF)
48 #define COL(code) (code&0x07)
51 static void pc98_send(uint8_t data)
53 PC98_RDY_PORT |= (1<<PC98_RDY_BIT);
57 PC98_RDY_PORT &= ~(1<<PC98_RDY_BIT);
60 static int16_t pc98_wait_response(void)
63 uint8_t timeout = 255;
64 while (timeout-- && (code = serial_recv2()) == -1) _delay_ms(1);
68 static void pc98_inhibit_repeat(void)
73 code = pc98_wait_response();
74 if (code != -1) dprintf("send 9C: %02X\n", code);
75 if (code != 0xFA) return;
78 code = pc98_wait_response();
79 if (code != -1) dprintf("send 70: %02X\n", code);
80 if (code != 0xFA) goto RETRY;
83 static uint8_t pc98_led = 0;
84 static void pc98_led_set(void)
89 code = pc98_wait_response();
90 if (code != -1) dprintf("send 9D: %02X\n", code);
91 if (code != 0xFA) return;
94 code = pc98_wait_response();
95 if (code != -1) dprintf("send %02X: %02X\n", pc98_led, code);
96 if (code != 0xFA) goto RETRY;
99 void matrix_init(void)
101 PC98_RST_DDR |= (1<<PC98_RST_BIT);
102 PC98_RDY_DDR |= (1<<PC98_RDY_BIT);
103 PC98_RTY_DDR |= (1<<PC98_RTY_BIT);
104 PC98_RST_PORT |= (1<<PC98_RST_BIT);
105 PC98_RDY_PORT |= (1<<PC98_RDY_BIT);
106 PC98_RTY_PORT |= (1<<PC98_RTY_BIT);
112 // https://archive.org/stream/PC9800TechnicalDataBookHARDWARE1993/PC-9800TechnicalDataBook_HARDWARE1993#page/n359
113 PC98_RDY_PORT |= (1<<PC98_RDY_BIT); // RDY: high
114 PC98_RST_PORT &= ~(1<<PC98_RST_BIT); // RST: low
115 _delay_us(15); // > 13us
116 PC98_RST_PORT |= (1<<PC98_RST_BIT); // RST: high
119 pc98_inhibit_repeat();
121 // initialize matrix state: all keys off
122 for (uint8_t i=0; i < MATRIX_ROWS; i++) matrix[i] = 0x00;
124 // ready to receive from keyboard
125 PC98_RDY_PORT &= ~(1<<PC98_RDY_BIT); // RDY: low
130 uint8_t matrix_scan(void)
133 code = serial_recv2();
135 #ifdef PC98_LED_CONTROL
136 // Before sending command we have to make sure that there is no unprocessed key in queue
137 // otherwise keys will be missed during sending command
146 dprintf("%02X ", code);
150 if (matrix_is_on(ROW(code), COL(code))) {
151 matrix[ROW(code)] &= ~(1<<COL(code));
155 if (!matrix_is_on(ROW(code), COL(code))) {
156 matrix[ROW(code)] |= (1<<COL(code));
160 // PC-9801V keyboard requires RDY pulse.
161 // This is not optimal place though, it works.
162 PC98_RDY_PORT |= (1<<PC98_RDY_BIT); // RDY: high
164 PC98_RDY_PORT &= ~(1<<PC98_RDY_BIT); // RDY: low
169 uint8_t matrix_get_row(uint8_t row)
174 void led_set(uint8_t usb_led)
176 // https://archive.org/stream/PC9800TechnicalDataBookHARDWARE1993/PC-9800TechnicalDataBook_HARDWARE1993#page/n161
177 // http://www.webtech.co.jp/company/doc/undocumented_mem/io_kb.txt
179 if (usb_led & (1<<USB_LED_NUM_LOCK)) pc98_led |= (1<<0);
180 if (usb_led & (1<<USB_LED_CAPS_LOCK)) pc98_led |= (1<<2);
181 dprintf("usb_led: %02X\n", usb_led);
182 dprintf("pc98_led: %02X\n", pc98_led);