Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 ELTEC Elektronik AG |
| 4 | * Frank Gottschling <fgottschling@eltec.de> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* i8042.c - Intel 8042 keyboard driver routines */ |
| 8 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 9 | #include <common.h> |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 10 | #include <dm.h> |
| 11 | #include <errno.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 12 | #include <i8042.h> |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 13 | #include <input.h> |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 14 | #include <keyboard.h> |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 15 | #include <asm/io.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 16 | |
Simon Glass | 011d89d | 2015-11-11 10:05:46 -0700 | [diff] [blame] | 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 19 | /* defines */ |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 20 | #define in8(p) inb(p) |
| 21 | #define out8(p, v) outb(v, p) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 22 | |
Simon Glass | 011d89d | 2015-11-11 10:05:46 -0700 | [diff] [blame] | 23 | enum { |
| 24 | QUIRK_DUP_POR = 1 << 0, |
| 25 | }; |
| 26 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 27 | /* locals */ |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 28 | struct i8042_kbd_priv { |
| 29 | bool extended; /* true if an extended keycode is expected next */ |
Simon Glass | 011d89d | 2015-11-11 10:05:46 -0700 | [diff] [blame] | 30 | int quirks; /* quirks that we support */ |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 31 | }; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 32 | |
Gabe Black | dd4a5b2 | 2011-11-14 19:24:14 +0000 | [diff] [blame] | 33 | static unsigned char ext_key_map[] = { |
| 34 | 0x1c, /* keypad enter */ |
| 35 | 0x1d, /* right control */ |
| 36 | 0x35, /* keypad slash */ |
| 37 | 0x37, /* print screen */ |
| 38 | 0x38, /* right alt */ |
| 39 | 0x46, /* break */ |
| 40 | 0x47, /* editpad home */ |
| 41 | 0x48, /* editpad up */ |
| 42 | 0x49, /* editpad pgup */ |
| 43 | 0x4b, /* editpad left */ |
| 44 | 0x4d, /* editpad right */ |
| 45 | 0x4f, /* editpad end */ |
| 46 | 0x50, /* editpad dn */ |
| 47 | 0x51, /* editpad pgdn */ |
| 48 | 0x52, /* editpad ins */ |
| 49 | 0x53, /* editpad del */ |
| 50 | 0x00 /* map end */ |
| 51 | }; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 52 | |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 53 | static int kbd_input_empty(void) |
| 54 | { |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 55 | int kbd_timeout = KBD_TIMEOUT * 1000; |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 56 | |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 57 | while ((in8(I8042_STS_REG) & STATUS_IBF) && kbd_timeout--) |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 58 | udelay(1); |
| 59 | |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 60 | return kbd_timeout != -1; |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 63 | static int kbd_output_full(void) |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 64 | { |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 65 | int kbd_timeout = KBD_TIMEOUT * 1000; |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 66 | |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 67 | while (((in8(I8042_STS_REG) & STATUS_OBF) == 0) && kbd_timeout--) |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 68 | udelay(1); |
| 69 | |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 70 | return kbd_timeout != -1; |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 73 | /** |
| 74 | * check_leds() - Check the keyboard LEDs and update them it needed |
| 75 | * |
| 76 | * @ret: Value to return |
| 77 | * @return value of @ret |
| 78 | */ |
| 79 | static int i8042_kbd_update_leds(struct udevice *dev, int leds) |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 80 | { |
| 81 | kbd_input_empty(); |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 82 | out8(I8042_DATA_REG, CMD_SET_KBD_LED); |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 83 | kbd_input_empty(); |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 84 | out8(I8042_DATA_REG, leds & 0x7); |
| 85 | |
| 86 | return 0; |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 87 | } |
| 88 | |
Simon Glass | 31d38ee | 2015-10-18 21:17:19 -0600 | [diff] [blame] | 89 | static int kbd_write(int reg, int value) |
| 90 | { |
| 91 | if (!kbd_input_empty()) |
| 92 | return -1; |
| 93 | out8(reg, value); |
| 94 | |
| 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | static int kbd_read(int reg) |
| 99 | { |
| 100 | if (!kbd_output_full()) |
| 101 | return -1; |
| 102 | |
| 103 | return in8(reg); |
| 104 | } |
| 105 | |
| 106 | static int kbd_cmd_read(int cmd) |
| 107 | { |
| 108 | if (kbd_write(I8042_CMD_REG, cmd)) |
| 109 | return -1; |
| 110 | |
| 111 | return kbd_read(I8042_DATA_REG); |
| 112 | } |
| 113 | |
| 114 | static int kbd_cmd_write(int cmd, int data) |
| 115 | { |
| 116 | if (kbd_write(I8042_CMD_REG, cmd)) |
| 117 | return -1; |
| 118 | |
| 119 | return kbd_write(I8042_DATA_REG, data); |
| 120 | } |
| 121 | |
Simon Glass | 011d89d | 2015-11-11 10:05:46 -0700 | [diff] [blame] | 122 | static int kbd_reset(int quirk) |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 123 | { |
Simon Glass | 31d38ee | 2015-10-18 21:17:19 -0600 | [diff] [blame] | 124 | int config; |
Bin Meng | 7d96166 | 2015-08-24 01:00:06 -0700 | [diff] [blame] | 125 | |
| 126 | /* controller self test */ |
Simon Glass | 31d38ee | 2015-10-18 21:17:19 -0600 | [diff] [blame] | 127 | if (kbd_cmd_read(CMD_SELF_TEST) != KBC_TEST_OK) |
Simon Glass | 4f087ba | 2015-10-18 21:17:20 -0600 | [diff] [blame] | 128 | goto err; |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 129 | |
Bin Meng | 7d96166 | 2015-08-24 01:00:06 -0700 | [diff] [blame] | 130 | /* keyboard reset */ |
Simon Glass | 31d38ee | 2015-10-18 21:17:19 -0600 | [diff] [blame] | 131 | if (kbd_write(I8042_DATA_REG, CMD_RESET_KBD) || |
| 132 | kbd_read(I8042_DATA_REG) != KBD_ACK || |
| 133 | kbd_read(I8042_DATA_REG) != KBD_POR) |
Simon Glass | 4f087ba | 2015-10-18 21:17:20 -0600 | [diff] [blame] | 134 | goto err; |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 135 | |
Simon Glass | 8226a3e | 2016-03-11 22:06:50 -0700 | [diff] [blame] | 136 | if (kbd_write(I8042_DATA_REG, CMD_DRAIN_OUTPUT) || |
| 137 | kbd_read(I8042_DATA_REG) != KBD_ACK) |
| 138 | goto err; |
| 139 | |
Bin Meng | 7d96166 | 2015-08-24 01:00:06 -0700 | [diff] [blame] | 140 | /* set AT translation and disable irq */ |
Simon Glass | 31d38ee | 2015-10-18 21:17:19 -0600 | [diff] [blame] | 141 | config = kbd_cmd_read(CMD_RD_CONFIG); |
| 142 | if (config == -1) |
Simon Glass | 4f087ba | 2015-10-18 21:17:20 -0600 | [diff] [blame] | 143 | goto err; |
Simon Glass | 31d38ee | 2015-10-18 21:17:19 -0600 | [diff] [blame] | 144 | |
Simon Glass | 011d89d | 2015-11-11 10:05:46 -0700 | [diff] [blame] | 145 | /* Sometimes get a second byte */ |
| 146 | else if ((quirk & QUIRK_DUP_POR) && config == KBD_POR) |
| 147 | config = kbd_cmd_read(CMD_RD_CONFIG); |
| 148 | |
Bin Meng | 7d96166 | 2015-08-24 01:00:06 -0700 | [diff] [blame] | 149 | config |= CONFIG_AT_TRANS; |
| 150 | config &= ~(CONFIG_KIRQ_EN | CONFIG_MIRQ_EN); |
Simon Glass | 31d38ee | 2015-10-18 21:17:19 -0600 | [diff] [blame] | 151 | if (kbd_cmd_write(CMD_WR_CONFIG, config)) |
Simon Glass | 4f087ba | 2015-10-18 21:17:20 -0600 | [diff] [blame] | 152 | goto err; |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 153 | |
Bin Meng | 7d96166 | 2015-08-24 01:00:06 -0700 | [diff] [blame] | 154 | /* enable keyboard */ |
Simon Glass | 31d38ee | 2015-10-18 21:17:19 -0600 | [diff] [blame] | 155 | if (kbd_write(I8042_CMD_REG, CMD_KBD_EN) || |
| 156 | !kbd_input_empty()) |
Simon Glass | 4f087ba | 2015-10-18 21:17:20 -0600 | [diff] [blame] | 157 | goto err; |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 158 | |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 159 | return 0; |
Simon Glass | 4f087ba | 2015-10-18 21:17:20 -0600 | [diff] [blame] | 160 | err: |
| 161 | debug("%s: Keyboard failure\n", __func__); |
| 162 | return -1; |
Bin Meng | 3928d66 | 2015-08-24 01:00:04 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Gabe Black | 22e0f5a | 2011-11-14 20:18:12 +0000 | [diff] [blame] | 165 | static int kbd_controller_present(void) |
| 166 | { |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 167 | return in8(I8042_STS_REG) != 0xff; |
Gabe Black | 22e0f5a | 2011-11-14 20:18:12 +0000 | [diff] [blame] | 168 | } |
| 169 | |
Simon Glass | 165be50 | 2018-11-23 21:29:38 -0700 | [diff] [blame] | 170 | /** Flush all buffer from keyboard controller to host*/ |
| 171 | static void i8042_flush(void) |
Louis Yung-Chieh Lo | 45fe668 | 2012-10-11 15:15:51 +0000 | [diff] [blame] | 172 | { |
| 173 | int timeout; |
| 174 | |
| 175 | /* |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 176 | * The delay is to give the keyboard controller some time |
| 177 | * to fill the next byte. |
Louis Yung-Chieh Lo | 45fe668 | 2012-10-11 15:15:51 +0000 | [diff] [blame] | 178 | */ |
| 179 | while (1) { |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 180 | timeout = 100; /* wait for no longer than 100us */ |
| 181 | while (timeout > 0 && !(in8(I8042_STS_REG) & STATUS_OBF)) { |
Louis Yung-Chieh Lo | 45fe668 | 2012-10-11 15:15:51 +0000 | [diff] [blame] | 182 | udelay(1); |
| 183 | timeout--; |
| 184 | } |
| 185 | |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 186 | /* Try to pull next byte if not timeout */ |
| 187 | if (in8(I8042_STS_REG) & STATUS_OBF) |
Louis Yung-Chieh Lo | 45fe668 | 2012-10-11 15:15:51 +0000 | [diff] [blame] | 188 | in8(I8042_DATA_REG); |
| 189 | else |
| 190 | break; |
| 191 | } |
| 192 | } |
| 193 | |
Simon Glass | 165be50 | 2018-11-23 21:29:38 -0700 | [diff] [blame] | 194 | /** |
| 195 | * Disables the keyboard so that key strokes no longer generate scancodes to |
| 196 | * the host. |
| 197 | * |
| 198 | * @return 0 if ok, -1 if keyboard input was found while disabling |
| 199 | */ |
| 200 | static int i8042_disable(void) |
Louis Yung-Chieh Lo | 45fe668 | 2012-10-11 15:15:51 +0000 | [diff] [blame] | 201 | { |
| 202 | if (kbd_input_empty() == 0) |
| 203 | return -1; |
| 204 | |
| 205 | /* Disable keyboard */ |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 206 | out8(I8042_CMD_REG, CMD_KBD_DIS); |
Louis Yung-Chieh Lo | 45fe668 | 2012-10-11 15:15:51 +0000 | [diff] [blame] | 207 | |
| 208 | if (kbd_input_empty() == 0) |
| 209 | return -1; |
| 210 | |
| 211 | return 0; |
| 212 | } |
| 213 | |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 214 | static int i8042_kbd_check(struct input_config *input) |
| 215 | { |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 216 | struct i8042_kbd_priv *priv = dev_get_priv(input->dev); |
| 217 | |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 218 | if ((in8(I8042_STS_REG) & STATUS_OBF) == 0) { |
| 219 | return 0; |
| 220 | } else { |
| 221 | bool release = false; |
| 222 | int scan_code; |
| 223 | int i; |
| 224 | |
| 225 | scan_code = in8(I8042_DATA_REG); |
| 226 | if (scan_code == 0xfa) { |
| 227 | return 0; |
| 228 | } else if (scan_code == 0xe0) { |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 229 | priv->extended = true; |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 230 | return 0; |
| 231 | } |
| 232 | if (scan_code & 0x80) { |
| 233 | scan_code &= 0x7f; |
| 234 | release = true; |
| 235 | } |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 236 | if (priv->extended) { |
| 237 | priv->extended = false; |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 238 | for (i = 0; ext_key_map[i]; i++) { |
| 239 | if (ext_key_map[i] == scan_code) { |
| 240 | scan_code = 0x60 + i; |
| 241 | break; |
| 242 | } |
| 243 | } |
| 244 | /* not found ? */ |
| 245 | if (!ext_key_map[i]) |
| 246 | return 0; |
| 247 | } |
| 248 | |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 249 | input_add_keycode(input, scan_code, release); |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 250 | return 1; |
| 251 | } |
| 252 | } |
| 253 | |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 254 | /* i8042_kbd_init - reset keyboard and init state flags */ |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 255 | static int i8042_start(struct udevice *dev) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 256 | { |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 257 | struct keyboard_priv *uc_priv = dev_get_uclass_priv(dev); |
Simon Glass | 011d89d | 2015-11-11 10:05:46 -0700 | [diff] [blame] | 258 | struct i8042_kbd_priv *priv = dev_get_priv(dev); |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 259 | struct input_config *input = &uc_priv->input; |
Gabe Black | dd4a5b2 | 2011-11-14 19:24:14 +0000 | [diff] [blame] | 260 | int keymap, try; |
| 261 | char *penv; |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 262 | int ret; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 263 | |
Simon Glass | 165be50 | 2018-11-23 21:29:38 -0700 | [diff] [blame] | 264 | if (!kbd_controller_present()) { |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 265 | debug("i8042 keyboard controller is not present\n"); |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 266 | return -ENOENT; |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 267 | } |
Gabe Black | 22e0f5a | 2011-11-14 20:18:12 +0000 | [diff] [blame] | 268 | |
Gabe Black | dd4a5b2 | 2011-11-14 19:24:14 +0000 | [diff] [blame] | 269 | /* Init keyboard device (default US layout) */ |
| 270 | keymap = KBD_US; |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 271 | penv = env_get("keymap"); |
Gabe Black | dd4a5b2 | 2011-11-14 19:24:14 +0000 | [diff] [blame] | 272 | if (penv != NULL) { |
| 273 | if (strncmp(penv, "de", 3) == 0) |
| 274 | keymap = KBD_GER; |
| 275 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 276 | |
Simon Glass | 011d89d | 2015-11-11 10:05:46 -0700 | [diff] [blame] | 277 | for (try = 0; kbd_reset(priv->quirks) != 0; try++) { |
Simon Glass | c5d257f | 2015-10-18 21:17:21 -0600 | [diff] [blame] | 278 | if (try >= KBD_RESET_TRIES) |
| 279 | return -1; |
Gabe Black | dd4a5b2 | 2011-11-14 19:24:14 +0000 | [diff] [blame] | 280 | } |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 281 | |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 282 | ret = input_add_tables(input, keymap == KBD_GER); |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 283 | if (ret) |
| 284 | return ret; |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 285 | |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 286 | i8042_kbd_update_leds(dev, NORMAL); |
| 287 | debug("%s: started\n", __func__); |
Simon Glass | c5d257f | 2015-10-18 21:17:21 -0600 | [diff] [blame] | 288 | |
| 289 | return 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 290 | } |
| 291 | |
Simon Glass | 165be50 | 2018-11-23 21:29:38 -0700 | [diff] [blame] | 292 | static int i8042_kbd_remove(struct udevice *dev) |
| 293 | { |
| 294 | if (i8042_disable()) |
| 295 | log_debug("i8042_disable() failed. fine, continue.\n"); |
| 296 | i8042_flush(); |
| 297 | |
| 298 | return 0; |
| 299 | } |
| 300 | |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 301 | /** |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 302 | * Set up the i8042 keyboard. This is called by the stdio device handler |
Bin Meng | 835dd00 | 2015-08-24 01:00:05 -0700 | [diff] [blame] | 303 | * |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 304 | * We want to do this init when the keyboard is actually used rather than |
| 305 | * at start-up, since keyboard input may not currently be selected. |
| 306 | * |
| 307 | * Once the keyboard starts there will be a period during which we must |
| 308 | * wait for the keyboard to init. We do this only when a key is first |
| 309 | * read - see kbd_wait_for_fifo_init(). |
| 310 | * |
| 311 | * @return 0 if ok, -ve on error |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 312 | */ |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 313 | static int i8042_kbd_probe(struct udevice *dev) |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 314 | { |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 315 | struct keyboard_priv *uc_priv = dev_get_uclass_priv(dev); |
Simon Glass | 011d89d | 2015-11-11 10:05:46 -0700 | [diff] [blame] | 316 | struct i8042_kbd_priv *priv = dev_get_priv(dev); |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 317 | struct stdio_dev *sdev = &uc_priv->sdev; |
| 318 | struct input_config *input = &uc_priv->input; |
| 319 | int ret; |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 320 | |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 321 | if (fdtdec_get_bool(gd->fdt_blob, dev_of_offset(dev), |
Simon Glass | 011d89d | 2015-11-11 10:05:46 -0700 | [diff] [blame] | 322 | "intel,duplicate-por")) |
| 323 | priv->quirks |= QUIRK_DUP_POR; |
| 324 | |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 325 | /* Register the device. i8042_start() will be called soon */ |
| 326 | input->dev = dev; |
| 327 | input->read_keys = i8042_kbd_check; |
| 328 | input_allow_repeats(input, true); |
| 329 | strcpy(sdev->name, "i8042-kbd"); |
| 330 | ret = input_stdio_register(sdev); |
| 331 | if (ret) { |
| 332 | debug("%s: input_stdio_register() failed\n", __func__); |
| 333 | return ret; |
| 334 | } |
| 335 | debug("%s: ready\n", __func__); |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 336 | |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 337 | return 0; |
Simon Glass | 2ec739d | 2015-11-11 10:05:41 -0700 | [diff] [blame] | 338 | } |
| 339 | |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 340 | static const struct keyboard_ops i8042_kbd_ops = { |
| 341 | .start = i8042_start, |
| 342 | .update_leds = i8042_kbd_update_leds, |
| 343 | }; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 344 | |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 345 | static const struct udevice_id i8042_kbd_ids[] = { |
| 346 | { .compatible = "intel,i8042-keyboard" }, |
| 347 | { } |
| 348 | }; |
| 349 | |
| 350 | U_BOOT_DRIVER(i8042_kbd) = { |
| 351 | .name = "i8042_kbd", |
| 352 | .id = UCLASS_KEYBOARD, |
| 353 | .of_match = i8042_kbd_ids, |
| 354 | .probe = i8042_kbd_probe, |
Simon Glass | 165be50 | 2018-11-23 21:29:38 -0700 | [diff] [blame] | 355 | .remove = i8042_kbd_remove, |
Simon Glass | dcbf825 | 2015-11-11 10:05:45 -0700 | [diff] [blame] | 356 | .ops = &i8042_kbd_ops, |
| 357 | .priv_auto_alloc_size = sizeof(struct i8042_kbd_priv), |
| 358 | }; |