diff options
Diffstat (limited to 'drivers/media/common/ir-keymaps.c')
-rw-r--r-- | drivers/media/common/ir-keymaps.c | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/drivers/media/common/ir-keymaps.c b/drivers/media/common/ir-keymaps.c index 3534cdc1f953..d8229a0e9a9c 100644 --- a/drivers/media/common/ir-keymaps.c +++ b/drivers/media/common/ir-keymaps.c | |||
@@ -2391,6 +2391,67 @@ IR_KEYTAB_TYPE ir_codes_powercolor_real_angel[IR_KEYTAB_SIZE] = { | |||
2391 | }; | 2391 | }; |
2392 | EXPORT_SYMBOL_GPL(ir_codes_powercolor_real_angel); | 2392 | EXPORT_SYMBOL_GPL(ir_codes_powercolor_real_angel); |
2393 | 2393 | ||
2394 | /* Kworld Plus TV Analog Lite PCI IR | ||
2395 | Mauro Carvalho Chehab <mchehab@infradead.org> | ||
2396 | */ | ||
2397 | IR_KEYTAB_TYPE ir_codes_kworld_plus_tv_analog[IR_KEYTAB_SIZE] = { | ||
2398 | [0x0c] = KEY_PROG1, /* Kworld key */ | ||
2399 | [0x16] = KEY_CLOSECD, /* -> ) */ | ||
2400 | [0x1d] = KEY_POWER2, | ||
2401 | |||
2402 | [0x00] = KEY_1, | ||
2403 | [0x01] = KEY_2, | ||
2404 | [0x02] = KEY_3, /* Two keys have the same code: 3 and left */ | ||
2405 | [0x03] = KEY_4, /* Two keys have the same code: 3 and right */ | ||
2406 | [0x04] = KEY_5, | ||
2407 | [0x05] = KEY_6, | ||
2408 | [0x06] = KEY_7, | ||
2409 | [0x07] = KEY_8, | ||
2410 | [0x08] = KEY_9, | ||
2411 | [0x0a] = KEY_0, | ||
2412 | |||
2413 | [0x09] = KEY_AGAIN, | ||
2414 | [0x14] = KEY_MUTE, | ||
2415 | |||
2416 | [0x20] = KEY_UP, | ||
2417 | [0x21] = KEY_DOWN, | ||
2418 | [0x0b] = KEY_ENTER, | ||
2419 | |||
2420 | [0x10] = KEY_CHANNELUP, | ||
2421 | [0x11] = KEY_CHANNELDOWN, | ||
2422 | |||
2423 | /* Couldn't map key left/key right since those | ||
2424 | conflict with '3' and '4' scancodes | ||
2425 | I dunno what the original driver does | ||
2426 | */ | ||
2427 | |||
2428 | [0x13] = KEY_VOLUMEUP, | ||
2429 | [0x12] = KEY_VOLUMEDOWN, | ||
2430 | |||
2431 | /* The lower part of the IR | ||
2432 | There are several duplicated keycodes there. | ||
2433 | Most of them conflict with digits. | ||
2434 | Add mappings just to the unused scancodes. | ||
2435 | Somehow, the original driver has a way to know, | ||
2436 | but this doesn't seem to be on some GPIO. | ||
2437 | Also, it is not related to the time between keyup | ||
2438 | and keydown. | ||
2439 | */ | ||
2440 | [0x19] = KEY_PAUSE, /* Timeshift */ | ||
2441 | [0x1a] = KEY_STOP, | ||
2442 | [0x1b] = KEY_RECORD, | ||
2443 | |||
2444 | [0x22] = KEY_TEXT, | ||
2445 | |||
2446 | [0x15] = KEY_AUDIO, /* ((*)) */ | ||
2447 | [0x0f] = KEY_ZOOM, | ||
2448 | [0x1c] = KEY_SHUFFLE, /* snapshot */ | ||
2449 | |||
2450 | [0x18] = KEY_RED, /* B */ | ||
2451 | [0x23] = KEY_GREEN, /* C */ | ||
2452 | }; | ||
2453 | EXPORT_SYMBOL_GPL(ir_codes_kworld_plus_tv_analog); | ||
2454 | |||
2394 | IR_KEYTAB_TYPE ir_codes_avermedia_a16d[IR_KEYTAB_SIZE] = { | 2455 | IR_KEYTAB_TYPE ir_codes_avermedia_a16d[IR_KEYTAB_SIZE] = { |
2395 | [0x20] = KEY_LIST, | 2456 | [0x20] = KEY_LIST, |
2396 | [0x00] = KEY_POWER, | 2457 | [0x00] = KEY_POWER, |