blob: e0a664333425ce9824bfd9617b1d12660153734b [file] [log] [blame]
Marc Jonesecd176f2008-09-26 19:15:38 +00001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauer094198c2009-07-21 21:24:22 +00004 * Copyright (C) 2009 coresystems GmbH
Marc Jonesecd176f2008-09-26 19:15:38 +00005 * Copyright (C) 2008 Advanced Micro Devices, Inc.
Stefan Reinauer094198c2009-07-21 21:24:22 +00006 * Copyright (C) 2003 Ollie Lo <ollielo@hotmail.com>
Marc Jonesecd176f2008-09-26 19:15:38 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22
Eric Biederman5cd81732004-03-11 15:01:31 +000023#include <console/console.h>
24#include <pc80/keyboard.h>
25#include <device/device.h>
Ronald G. Minnichef5f2182003-09-26 15:24:54 +000026#include <arch/io.h>
Stefan Reinauer094198c2009-07-21 21:24:22 +000027#include <delay.h>
28
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +000029#define KBD_DATA 0x60
30#define KBD_COMMAND 0x64
31#define KBD_STATUS 0x64
32#define KBD_IBF (1 << 1) // 1: input buffer full (data ready for ec)
33#define KBD_OBF (1 << 0) // 1: output buffer full (data ready for host)
34
35// Keyboard Controller Commands
36#define KBC_CMD_READ_COMMAND 0x20 // Read command byte
37#define KBC_CMD_WRITE_COMMAND 0x60 // Write command byte
38#define KBC_CMD_SELF_TEST 0xAA // Controller self-test
Mathias Krause1c80cf02011-12-14 08:40:48 +010039#define KBC_CMD_KBD_TEST 0xAB // Keyboard Interface test
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +000040
41/* The Keyboard controller command byte
42 * BIT | Description
43 * ----+-------------------------------------------------------
44 * 7 | reserved, must be zero
45 * 6 | XT Translation, (1 = on, 0 = off)
46 * 5 | Disable Mouse Port (1 = disable, 0 = enable)
47 * 4 | Disable Keyboard Port (1 = disable, 0 = enable)
48 * 3 | reserved, must be zero
49 * 2 | System Flag (1 = self-test passed. DO NOT SET TO ZERO)
50 * 1 | Mouse Port Interrupts (1 = enable, 0 = disable)
51 * 0 | Keyboard Port Interrupts (1 = enable, 0 = disable)
52 */
53
54// Keyboard Controller Replies
55#define KBC_REPLY_SELFTEST_OK 0x55 // controller self-test succeeded
56
57//
58// Keyboard Replies
59//
60#define KBD_REPLY_POR 0xAA // Power on reset
61#define KBD_REPLY_ACK 0xFA // Command ACK
62#define KBD_REPLY_RESEND 0xFE // Command NACK, send command again
63
Stefan Reinauerd1149d72010-03-24 21:24:17 +000064/* Wait 400ms for keyboard controller answers */
65#define KBC_TIMEOUT_IN_MS 400
Ronald G. Minnich430111b2003-09-26 16:12:23 +000066
Marc Jonesecd176f2008-09-26 19:15:38 +000067static int kbc_input_buffer_empty(void)
Eric Biederman029517c2004-11-11 11:56:00 +000068{
Marc Jonesecd176f2008-09-26 19:15:38 +000069 u32 timeout;
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +000070 for(timeout = KBC_TIMEOUT_IN_MS; timeout && (inb(KBD_STATUS) & KBD_IBF); timeout--) {
Stefan Reinauer094198c2009-07-21 21:24:22 +000071 mdelay(1);
Marc Jonesecd176f2008-09-26 19:15:38 +000072 }
73
74 if (!timeout) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000075 printk(BIOS_WARNING, "Unexpected Keyboard controller input buffer full\n");
Eric Biederman029517c2004-11-11 11:56:00 +000076 }
77 return !!timeout;
78}
79
Marc Jonesecd176f2008-09-26 19:15:38 +000080
81static int kbc_output_buffer_full(void)
Eric Biederman029517c2004-11-11 11:56:00 +000082{
Marc Jonesecd176f2008-09-26 19:15:38 +000083 u32 timeout;
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +000084 for(timeout = KBC_TIMEOUT_IN_MS; timeout && ((inb(KBD_STATUS) & KBD_OBF) == 0); timeout--) {
Stefan Reinauer094198c2009-07-21 21:24:22 +000085 mdelay(1);
Marc Jonesecd176f2008-09-26 19:15:38 +000086 }
87
88 if (!timeout) {
Stefan Reinauerd1149d72010-03-24 21:24:17 +000089 printk(BIOS_INFO, "Keyboard controller output buffer result timeout\n");
Eric Biederman029517c2004-11-11 11:56:00 +000090 }
91 return !!timeout;
92}
93
Marc Jonesecd176f2008-09-26 19:15:38 +000094
95static int kbc_cleanup_buffers(void)
96{
97 u32 timeout;
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +000098 for(timeout = KBC_TIMEOUT_IN_MS; timeout && (inb(KBD_STATUS) & (KBD_OBF | KBD_IBF)); timeout--) {
Stefan Reinauer094198c2009-07-21 21:24:22 +000099 mdelay(1);
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000100 inb(KBD_DATA);
Marc Jonesecd176f2008-09-26 19:15:38 +0000101 }
102
103 if (!timeout) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000104 printk(BIOS_ERR, "Couldn't cleanup the keyboard controller buffers\n");
105 printk(BIOS_ERR, "Status (0x%x): 0x%x, Buffer (0x%x): 0x%x\n",
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000106 KBD_STATUS, inb(KBD_STATUS), KBD_DATA, inb(KBD_DATA));
Marc Jonesecd176f2008-09-26 19:15:38 +0000107 }
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000108
Marc Jonesecd176f2008-09-26 19:15:38 +0000109 return !!timeout;
110}
111
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000112static int kbc_self_test(void)
113{
114 u8 self_test;
115
116 /* Clean up any junk that might have been in the KBC.
117 * Both input and output buffers must be empty.
118 */
119 if (!kbc_cleanup_buffers())
120 return 0;
121
122 /* reset/self test 8042 - send cmd 0xAA */
123 outb(KBC_CMD_SELF_TEST, KBD_COMMAND);
124
125 if (!kbc_output_buffer_full()) {
126 /* There probably is no keyboard controller. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000127 printk(BIOS_ERR, "Could not reset keyboard controller.\n");
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000128 return 0;
129 }
130
131 /* read self-test result, 0x55 is returned in the output buffer */
132 self_test = inb(KBD_DATA);
133
134 if (self_test != 0x55) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000135 printk(BIOS_ERR, "Keyboard Controller self-test failed: 0x%x\n",
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000136 self_test);
137 return 0;
138 }
139
Mathias Krause1c80cf02011-12-14 08:40:48 +0100140 /* ensure the buffers are empty */
141 kbc_cleanup_buffers();
142
143 /* keyboard interface test */
144 outb(KBC_CMD_KBD_TEST, KBD_COMMAND);
145
146 if (!kbc_output_buffer_full()) {
147 printk(BIOS_ERR, "Keyboard Interface test timed out.\n");
148 return 0;
149 }
150
151 /* read test result, 0x00 should be returned in case of no failures */
152 self_test = inb(KBD_DATA);
153
154 if (self_test != 0x00) {
155 printk(BIOS_ERR, "Keyboard Interface test failed: 0x%x\n",
156 self_test);
157 return 0;
158 }
159
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000160 return 1;
161}
Marc Jonesecd176f2008-09-26 19:15:38 +0000162
163static u8 send_keyboard(u8 command)
164{
165 u8 regval = 0;
166 u8 resend = 10;
167
168 do {
169 if (!kbc_input_buffer_empty()) return 0;
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000170 outb(command, KBD_DATA);
Mathias Krause1c80cf02011-12-14 08:40:48 +0100171 /* the reset command takes much longer then normal commands and
172 * even worse, some keyboards do send the ACK _after_ doing the
173 * reset */
174 if (command == 0xFF) {
175 u8 retries;
176 for (retries = 9; retries && !kbc_output_buffer_full(); retries--)
177 ;
178 }
Stefan Reinauer094198c2009-07-21 21:24:22 +0000179 if (!kbc_output_buffer_full()) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000180 printk(BIOS_ERR, "Could not send keyboard command %02x\n",
Stefan Reinauer094198c2009-07-21 21:24:22 +0000181 command);
182 return 0;
183 }
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000184 regval = inb(KBD_DATA);
Marc Jonesecd176f2008-09-26 19:15:38 +0000185 --resend;
Stefan Reinauer9c3e8b52010-02-28 19:12:37 +0000186 } while (regval == KBD_REPLY_RESEND && resend > 0);
Marc Jonesecd176f2008-09-26 19:15:38 +0000187
188 return regval;
189}
190
Stefan Reinauer740b5872010-02-23 20:31:37 +0000191void pc_keyboard_init(struct pc_keyboard *keyboard)
Ronald G. Minnichef5f2182003-09-26 15:24:54 +0000192{
Mathias Krause1c80cf02011-12-14 08:40:48 +0100193 u8 retries;
Marc Jonesecd176f2008-09-26 19:15:38 +0000194 u8 regval;
Kevin O'Connor9c35c842010-09-09 08:34:02 +0000195 if (!CONFIG_DRIVERS_PS2_KEYBOARD)
196 return;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000197 printk(BIOS_DEBUG, "Keyboard init...\n");
Ronald G. Minnichef5f2182003-09-26 15:24:54 +0000198
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000199 /* Run a keyboard controller self-test */
200 if (!kbc_self_test())
Ronald G. Minnichef5f2182003-09-26 15:24:54 +0000201 return;
Stefan Reinauer094198c2009-07-21 21:24:22 +0000202
203 /* Enable keyboard interface - No IRQ */
Marc Jonese59f2e12009-09-29 19:12:23 +0000204 if (!kbc_input_buffer_empty()) return;
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000205 outb(0x60, KBD_COMMAND);
Marc Jonese59f2e12009-09-29 19:12:23 +0000206 if (!kbc_input_buffer_empty()) return;
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000207 outb(0x20, KBD_DATA); /* send cmd: enable keyboard */
Marc Jonese59f2e12009-09-29 19:12:23 +0000208 if (!kbc_input_buffer_empty()) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000209 printk(BIOS_INFO, "Timeout while enabling keyboard\n");
Marc Jonese59f2e12009-09-29 19:12:23 +0000210 return;
211 }
Ronald G. Minnichef5f2182003-09-26 15:24:54 +0000212
Marc Jonesecd176f2008-09-26 19:15:38 +0000213 /* clean up any junk that might have been in the keyboard */
214 if (!kbc_cleanup_buffers()) return;
Ronald G. Minnichef5f2182003-09-26 15:24:54 +0000215
Marc Jonesecd176f2008-09-26 19:15:38 +0000216 /* reset keyboard and self test (keyboard side) */
217 regval = send_keyboard(0xFF);
Stefan Reinauer9c3e8b52010-02-28 19:12:37 +0000218 if (regval == KBD_REPLY_RESEND) {
219 /* keeps sending RESENDs, probably no keyboard. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000220 printk(BIOS_INFO, "No PS/2 keyboard detected.\n");
Stefan Reinauer9c3e8b52010-02-28 19:12:37 +0000221 return;
222 }
223
224 if (regval != KBD_REPLY_ACK) {
Mathias Krause1c80cf02011-12-14 08:40:48 +0100225 printk(BIOS_ERR, "Keyboard reset failed ACK: 0x%x\n", regval);
Ronald G. Minnichef5f2182003-09-26 15:24:54 +0000226 return;
Marc Jonesecd176f2008-09-26 19:15:38 +0000227 }
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000228
Mathias Krause1c80cf02011-12-14 08:40:48 +0100229 /* the reset command takes some time, so wait a little longer */
230 for (retries = 9; retries && !kbc_output_buffer_full(); retries--)
231 ;
232
Stefan Reinauer094198c2009-07-21 21:24:22 +0000233 if (!kbc_output_buffer_full()) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000234 printk(BIOS_ERR, "Timeout waiting for keyboard after reset.\n");
Stefan Reinauer094198c2009-07-21 21:24:22 +0000235 return;
236 }
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000237
238 regval = inb(KBD_DATA);
Marc Jonesecd176f2008-09-26 19:15:38 +0000239 if (regval != 0xAA) {
Mathias Krause1c80cf02011-12-14 08:40:48 +0100240 printk(BIOS_ERR, "Keyboard reset selftest failed: 0x%x\n", regval);
Ronald G. Minnichef5f2182003-09-26 15:24:54 +0000241 return;
Marc Jonesecd176f2008-09-26 19:15:38 +0000242 }
243
244 /*
245 * The following set scancode stuff is what normal BIOS do. It could be
246 * argued that coreboot shouldn't set the scan code.....
247 */
248
249 /* disable the keyboard */
250 regval = send_keyboard(0xF5);
Stefan Reinauer9c3e8b52010-02-28 19:12:37 +0000251 if (regval != KBD_REPLY_ACK) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000252 printk(BIOS_ERR, "Keyboard disable failed ACK: 0x%x\n", regval);
Marc Jonesecd176f2008-09-26 19:15:38 +0000253 return;
254 }
255
256 /* Set scancode command */
257 regval = send_keyboard(0xF0);
Stefan Reinauer9c3e8b52010-02-28 19:12:37 +0000258 if (regval != KBD_REPLY_ACK) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000259 printk(BIOS_ERR, "Keyboard set scancode cmd failed ACK: 0x%x\n", regval);
Marc Jonesecd176f2008-09-26 19:15:38 +0000260 return;
261 }
262 /* Set scancode mode 2 */
263 regval = send_keyboard(0x02);
Stefan Reinauer9c3e8b52010-02-28 19:12:37 +0000264 if (regval != KBD_REPLY_ACK) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000265 printk(BIOS_ERR, "Keyboard set scancode mode failed ACK: 0x%x\n", regval);
Marc Jonesecd176f2008-09-26 19:15:38 +0000266 return;
267 }
268
Marc Jonesecd176f2008-09-26 19:15:38 +0000269 /* All is well - enable keyboard interface */
Marc Jonese59f2e12009-09-29 19:12:23 +0000270 if (!kbc_input_buffer_empty()) return;
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000271 outb(0x60, KBD_COMMAND);
Marc Jonese59f2e12009-09-29 19:12:23 +0000272 if (!kbc_input_buffer_empty()) return;
Mathias Krause1c80cf02011-12-14 08:40:48 +0100273 outb(0x65, KBD_DATA); /* send cmd: enable keyboard and IRQ 1 */
Scott Duplichan9c934d12010-09-09 20:37:00 +0000274 if (!kbc_input_buffer_empty()) {
Mathias Krause1c80cf02011-12-14 08:40:48 +0100275 printk(BIOS_ERR, "Timeout during keyboard enable\n");
276 return;
277 }
278
279 /* enable the keyboard */
280 regval = send_keyboard(0xF4);
281 if (regval != KBD_REPLY_ACK) {
282 printk(BIOS_ERR, "Keyboard enable failed ACK: 0x%x\n", regval);
Marc Jonese59f2e12009-09-29 19:12:23 +0000283 return;
284 }
Ronald G. Minnichef5f2182003-09-26 15:24:54 +0000285}
286
Marc Jonesecd176f2008-09-26 19:15:38 +0000287/*
288 * Support PS/2 mode - oddball SIOs(KBC) need this setup
289 * Not well documented. Google - 0xcb keyboard controller
290 * This is called before pc_keyboard_init().
291 */
Stefan Reinauerbbe29ee2009-05-23 22:02:31 +0000292void set_kbc_ps2_mode(void)
Marc Jonesecd176f2008-09-26 19:15:38 +0000293{
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000294 /* Run a keyboard controller self-test */
295 if (!kbc_self_test())
Marc Jonesecd176f2008-09-26 19:15:38 +0000296 return;
Marc Jonesecd176f2008-09-26 19:15:38 +0000297
298 /* Support PS/2 mode */
299 if (!kbc_input_buffer_empty()) return;
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000300 outb(0xcb, KBD_COMMAND);
301
Marc Jonesecd176f2008-09-26 19:15:38 +0000302 if (!kbc_input_buffer_empty()) return;
Stefan Reinauerdd3e82a2009-10-24 18:15:07 +0000303 outb(0x01, KBD_DATA);
304
Marc Jonesecd176f2008-09-26 19:15:38 +0000305 kbc_cleanup_buffers();
306}