Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
Input: matrix_keypad - make matrix keymap size dynamic
Input: wistron_btns - support Prestigio Wifi RF kill button
Input: i8042 - add Asus G1S to noloop exception list

+40 -15
+9 -9
drivers/input/keyboard/matrix_keypad.c
··· 27 27 const struct matrix_keypad_platform_data *pdata; 28 28 struct input_dev *input_dev; 29 29 unsigned short *keycodes; 30 + unsigned int row_shift; 30 31 31 32 uint32_t last_key_state[MATRIX_MAX_COLS]; 32 33 struct delayed_work work; ··· 137 136 if ((bits_changed & (1 << row)) == 0) 138 137 continue; 139 138 140 - code = (row << 4) + col; 139 + code = MATRIX_SCAN_CODE(row, col, keypad->row_shift); 141 140 input_event(input_dev, EV_MSC, MSC_SCAN, code); 142 141 input_report_key(input_dev, 143 142 keypad->keycodes[code], ··· 318 317 struct matrix_keypad *keypad; 319 318 struct input_dev *input_dev; 320 319 unsigned short *keycodes; 320 + unsigned int row_shift; 321 321 int i; 322 322 int err; 323 323 ··· 334 332 return -EINVAL; 335 333 } 336 334 337 - if (!keymap_data->max_keymap_size) { 338 - dev_err(&pdev->dev, "invalid keymap data supplied\n"); 339 - return -EINVAL; 340 - } 335 + row_shift = get_count_order(pdata->num_col_gpios); 341 336 342 337 keypad = kzalloc(sizeof(struct matrix_keypad), GFP_KERNEL); 343 - keycodes = kzalloc(keymap_data->max_keymap_size * 344 - sizeof(keypad->keycodes), 338 + keycodes = kzalloc((pdata->num_row_gpios << row_shift) * 339 + sizeof(*keycodes), 345 340 GFP_KERNEL); 346 341 input_dev = input_allocate_device(); 347 342 if (!keypad || !keycodes || !input_dev) { ··· 349 350 keypad->input_dev = input_dev; 350 351 keypad->pdata = pdata; 351 352 keypad->keycodes = keycodes; 353 + keypad->row_shift = row_shift; 352 354 keypad->stopped = true; 353 355 INIT_DELAYED_WORK(&keypad->work, matrix_keypad_scan); 354 356 spin_lock_init(&keypad->lock); ··· 363 363 364 364 input_dev->keycode = keycodes; 365 365 input_dev->keycodesize = sizeof(*keycodes); 366 - input_dev->keycodemax = keymap_data->max_keymap_size; 366 + input_dev->keycodemax = pdata->num_row_gpios << keypad->row_shift; 367 367 368 368 for (i = 0; i < keymap_data->keymap_size; i++) { 369 369 unsigned int key = keymap_data->keymap[i]; ··· 371 371 unsigned int col = KEY_COL(key); 372 372 unsigned short code = KEY_VAL(key); 373 373 374 - keycodes[(row << 4) + col] = code; 374 + keycodes[MATRIX_SCAN_CODE(row, col, row_shift)] = code; 375 375 __set_bit(code, input_dev->keybit); 376 376 } 377 377 __clear_bit(KEY_RESERVED, input_dev->keybit);
+16
drivers/input/misc/wistron_btns.c
··· 611 611 { KE_END, 0 } 612 612 }; 613 613 614 + static struct key_entry keymap_prestigio[] __initdata = { 615 + { KE_KEY, 0x11, {KEY_PROG1} }, 616 + { KE_KEY, 0x12, {KEY_PROG2} }, 617 + { KE_WIFI, 0x30 }, 618 + { KE_KEY, 0x22, {KEY_REWIND} }, 619 + { KE_KEY, 0x23, {KEY_FORWARD} }, 620 + { KE_KEY, 0x24, {KEY_PLAYPAUSE} }, 621 + { KE_KEY, 0x25, {KEY_STOPCD} }, 622 + { KE_KEY, 0x31, {KEY_MAIL} }, 623 + { KE_KEY, 0x36, {KEY_WWW} }, 624 + { KE_END, 0 } 625 + }; 626 + 627 + 614 628 /* 615 629 * If your machine is not here (which is currently rather likely), please send 616 630 * a list of buttons and their key codes (reported when loading this module ··· 985 971 if (keymap_name != NULL) { 986 972 if (strcmp (keymap_name, "1557/MS2141") == 0) 987 973 keymap = keymap_wistron_ms2141; 974 + else if (strcmp (keymap_name, "prestigio") == 0) 975 + keymap = keymap_prestigio; 988 976 else if (strcmp (keymap_name, "generic") == 0) 989 977 keymap = keymap_wistron_generic; 990 978 else {
+8
drivers/input/serio/i8042-x86ia64io.h
··· 78 78 }, 79 79 }, 80 80 { 81 + .ident = "ASUS G1S", 82 + .matches = { 83 + DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer Inc."), 84 + DMI_MATCH(DMI_BOARD_NAME, "G1S"), 85 + DMI_MATCH(DMI_BOARD_VERSION, "1.0"), 86 + }, 87 + }, 88 + { 81 89 /* AUX LOOP command does not raise AUX IRQ */ 82 90 .ident = "ASUS P65UP5", 83 91 .matches = {
+7 -6
include/linux/input/matrix_keypad.h
··· 15 15 #define KEY_COL(k) (((k) >> 16) & 0xff) 16 16 #define KEY_VAL(k) ((k) & 0xffff) 17 17 18 + #define MATRIX_SCAN_CODE(row, col, row_shift) (((row) << (row_shift)) + (col)) 19 + 18 20 /** 19 21 * struct matrix_keymap_data - keymap for matrix keyboards 20 22 * @keymap: pointer to array of uint32 values encoded with KEY() macro 21 23 * representing keymap 22 24 * @keymap_size: number of entries (initialized) in this keymap 23 - * @max_keymap_size: maximum size of keymap supported by the device 24 25 * 25 26 * This structure is supposed to be used by platform code to supply 26 27 * keymaps to drivers that implement matrix-like keypads/keyboards. ··· 29 28 struct matrix_keymap_data { 30 29 const uint32_t *keymap; 31 30 unsigned int keymap_size; 32 - unsigned int max_keymap_size; 33 31 }; 34 32 35 33 /** 36 34 * struct matrix_keypad_platform_data - platform-dependent keypad data 37 35 * @keymap_data: pointer to &matrix_keymap_data 38 - * @row_gpios: array of gpio numbers reporesenting rows 39 - * @col_gpios: array of gpio numbers reporesenting colums 36 + * @row_gpios: pointer to array of gpio numbers representing rows 37 + * @col_gpios: pointer to array of gpio numbers reporesenting colums 40 38 * @num_row_gpios: actual number of row gpios used by device 41 39 * @num_col_gpios: actual number of col gpios used by device 42 40 * @col_scan_delay_us: delay, measured in microseconds, that is ··· 48 48 struct matrix_keypad_platform_data { 49 49 const struct matrix_keymap_data *keymap_data; 50 50 51 - unsigned int row_gpios[MATRIX_MAX_ROWS]; 52 - unsigned int col_gpios[MATRIX_MAX_COLS]; 51 + const unsigned int *row_gpios; 52 + const unsigned int *col_gpios; 53 + 53 54 unsigned int num_row_gpios; 54 55 unsigned int num_col_gpios; 55 56