From patchwork Sat Sep 15 09:41:20 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Young X-Patchwork-Id: 10601431 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 1793F15A7 for ; Sat, 15 Sep 2018 09:41:29 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 03AD32B120 for ; Sat, 15 Sep 2018 09:41:29 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id E84822B15F; Sat, 15 Sep 2018 09:41:28 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 445532B120 for ; Sat, 15 Sep 2018 09:41:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727020AbeIOO7o (ORCPT ); Sat, 15 Sep 2018 10:59:44 -0400 Received: from gofer.mess.org ([88.97.38.141]:38753 "EHLO gofer.mess.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726923AbeIOO7o (ORCPT ); Sat, 15 Sep 2018 10:59:44 -0400 Received: by gofer.mess.org (Postfix, from userid 1000) id 9F4F6600EC; Sat, 15 Sep 2018 10:41:21 +0100 (BST) From: Sean Young To: linux-media@vger.kernel.org Cc: VDR User Subject: [PATCH v4l-utils 1/2] keytable: keymap for Network Dish Date: Sat, 15 Sep 2018 10:41:20 +0100 Message-Id: <20180915094121.3590-1-sean@mess.org> X-Mailer: git-send-email 2.11.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP BPF keymap, see: https://www.mythtv.org/wiki/DISHNetworkLIRCConfiguration Cc: VDR User Signed-off-by: Sean Young --- .../rc_keymaps_userspace/dish_network.toml | 62 +++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 utils/keytable/rc_keymaps_userspace/dish_network.toml diff --git a/utils/keytable/rc_keymaps_userspace/dish_network.toml b/utils/keytable/rc_keymaps_userspace/dish_network.toml new file mode 100644 index 00000000..9614edae --- /dev/null +++ b/utils/keytable/rc_keymaps_userspace/dish_network.toml @@ -0,0 +1,62 @@ +# See https://www.mythtv.org/wiki/DISHNetworkLIRCConfiguration +[[protocols]] +name = 'Dish Network' +protocol = 'pulse_distance' +trailer_pulse = 450 +header_optional = 1 +header_pulse = 525 +header_space = 6045 +bits = 16 +bit_pulse = 440 +bit_1_space = 1645 +bit_0_space = 2780 +[protocols.scancodes] +0x0400 = 'KEY_SAT' +0xa801 = 'KEY_TV' +0xac02 = 'KEY_DVD' +0xb003 = 'KEY_AUX' +0x0800 = 'KEY_POWER' +0x2c00 = 'KEY_MENU' +0x5c00 = 'KEY_SWITCHVIDEOMODE' # Input +0x3c10 = 'KEY_PAGEUP' +0x1c10 = 'KEY_PAGEDOWN' +0x5000 = 'KEY_EPG' +0x6800 = 'KEY_UP' +0x7000 = 'KEY_LEFT' +0x4000 = 'KEY_SELECT' +0x6000 = 'KEY_RIGHT' +0x7800 = 'KEY_DOWN' +0x6c00 = 'KEY_LAST' +0x0000 = 'KEY_INFO' +0xb400 = 'KEY_SEARCH' +0x5800 = 'KEY_TV' # View Live TV +0x4800 = 'KEY_CANCEL' +0x4c00 = 'KEY_RED' +0xd400 = 'KEY_GREEN' +0x8800 = 'KEY_YELLOW' +0x8c00 = 'KEY_BLUE' +0xd810 = 'KEY_PREVIOUS' +0xe410 = 'KEY_PVR' +0xdc10 = 'KEY_NEXT' +0xc410 = 'KEY_REWIND' +0x8000 = 'KEY_PAUSE' +0xc810 = 'KEY_FASTFORWARD' +0x8400 = 'KEY_STOP' +0x7c00 = 'KEY_RECORD' +0x0c10 = 'KEY_PLAY' +0x1000 = 'KEY_NUMERIC_1' +0x1400 = 'KEY_NUMERIC_2' +0x1800 = 'KEY_NUMERIC_3' +0x2000 = 'KEY_NUMERIC_4' +0x2400 = 'KEY_NUMERIC_5' +0x2800 = 'KEY_NUMERIC_6' +0x3000 = 'KEY_NUMERIC_7' +0x3400 = 'KEY_NUMERIC_8' +0x3800 = 'KEY_NUMERIC_9' +0x4400 = 'KEY_NUMERIC_0' +0x9400 = 'KEY_NUMERIC_STAR' +0x9800 = 'KEY_NUMERIC_POUND' +0xf410 = 'KEY_AB' +0xe810 = 'KEY_VIDEO' # PIP (Picture-in-picture) +0xec10 = 'KEY_SCREEN' # Position +0xd010 = 'KEY_MEDIA' # Dish From patchwork Sat Sep 15 09:41:21 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Young X-Patchwork-Id: 10601433 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 6E5FB15A7 for ; Sat, 15 Sep 2018 09:41:30 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5D8382B120 for ; Sat, 15 Sep 2018 09:41:30 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 51ADC2B137; Sat, 15 Sep 2018 09:41:30 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 656E42B125 for ; Sat, 15 Sep 2018 09:41:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727025AbeIOO7o (ORCPT ); Sat, 15 Sep 2018 10:59:44 -0400 Received: from gofer.mess.org ([88.97.38.141]:54709 "EHLO gofer.mess.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726996AbeIOO7o (ORCPT ); Sat, 15 Sep 2018 10:59:44 -0400 Received: by gofer.mess.org (Postfix, from userid 1000) id BA91060086; Sat, 15 Sep 2018 10:41:21 +0100 (BST) From: Sean Young To: linux-media@vger.kernel.org Subject: [PATCH v4l-utils 2/2] keytable: keymap for Windows Remote Keyboard for MCE Date: Sat, 15 Sep 2018 10:41:21 +0100 Message-Id: <20180915094121.3590-2-sean@mess.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180915094121.3590-1-sean@mess.org> References: <20180915094121.3590-1-sean@mess.org> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This keymap differs from rc6_mce in that it also enables the mce_kbd protocol. Signed-off-by: Sean Young --- .../rc_keymaps_userspace/mce_keyboard.toml | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 utils/keytable/rc_keymaps_userspace/mce_keyboard.toml diff --git a/utils/keytable/rc_keymaps_userspace/mce_keyboard.toml b/utils/keytable/rc_keymaps_userspace/mce_keyboard.toml new file mode 100644 index 00000000..ed69c2f4 --- /dev/null +++ b/utils/keytable/rc_keymaps_userspace/mce_keyboard.toml @@ -0,0 +1,75 @@ +# Microsoft Remote Keyboard for Windows Media Center Edition +# The keyboard uses both rc-6 and mce_kbd protocols. The mce_kbd protocol +# is used for the standard keyboard keys (e.g. qwerty, return etc) and the +# other keys like "messager", volume up etc are sent using rc-6 (mce variant). +[[protocols]] +name = "rc6_mce" +protocol = "rc6" +variant = "rc6_mce" +[protocols.scancodes] +0x800f0400 = "KEY_NUMERIC_0" +0x800f0401 = "KEY_NUMERIC_1" +0x800f0402 = "KEY_NUMERIC_2" +0x800f0403 = "KEY_NUMERIC_3" +0x800f0404 = "KEY_NUMERIC_4" +0x800f0405 = "KEY_NUMERIC_5" +0x800f0406 = "KEY_NUMERIC_6" +0x800f0407 = "KEY_NUMERIC_7" +0x800f0408 = "KEY_NUMERIC_8" +0x800f0409 = "KEY_NUMERIC_9" +0x800f040a = "KEY_DELETE" +0x800f040b = "KEY_ENTER" +0x800f040c = "KEY_SLEEP" +0x800f040d = "KEY_MEDIA" +0x800f040e = "KEY_MUTE" +0x800f040f = "KEY_INFO" +0x800f0410 = "KEY_VOLUMEUP" +0x800f0411 = "KEY_VOLUMEDOWN" +0x800f0412 = "KEY_CHANNELUP" +0x800f0413 = "KEY_CHANNELDOWN" +0x800f0414 = "KEY_FASTFORWARD" +0x800f0415 = "KEY_REWIND" +0x800f0416 = "KEY_PLAY" +0x800f0417 = "KEY_RECORD" +0x800f0418 = "KEY_PAUSE" +0x800f0419 = "KEY_STOP" +0x800f041a = "KEY_NEXT" +0x800f041b = "KEY_PREVIOUS" +0x800f041c = "KEY_NUMERIC_POUND" +0x800f041d = "KEY_NUMERIC_STAR" +0x800f041e = "KEY_UP" +0x800f041f = "KEY_DOWN" +0x800f0420 = "KEY_LEFT" +0x800f0421 = "KEY_RIGHT" +0x800f0422 = "KEY_OK" +0x800f0423 = "KEY_EXIT" +0x800f0424 = "KEY_DVD" +0x800f0425 = "KEY_TUNER" +0x800f0426 = "KEY_EPG" +0x800f0427 = "KEY_ZOOM" +0x800f0432 = "KEY_MODE" +0x800f0433 = "KEY_PRESENTATION" +0x800f0434 = "KEY_EJECTCD" +0x800f043a = "KEY_BRIGHTNESSUP" +0x800f0446 = "KEY_TV" +0x800f0447 = "KEY_AUDIO" +0x800f0448 = "KEY_PVR" +0x800f0449 = "KEY_CAMERA" +0x800f044a = "KEY_VIDEO" +0x800f044c = "KEY_LANGUAGE" +0x800f044d = "KEY_TITLE" +0x800f044e = "KEY_PRINT" +0x800f0450 = "KEY_RADIO" +0x800f045a = "KEY_SUBTITLE" +0x800f045b = "KEY_RED" +0x800f045c = "KEY_GREEN" +0x800f045d = "KEY_YELLOW" +0x800f045e = "KEY_BLUE" +0x800f0465 = "KEY_POWER2" +0x800f0469 = "KEY_MESSENGER" +0x800f046e = "KEY_PLAYPAUSE" +0x800f046f = "KEY_PLAYER" +0x800f0480 = "KEY_BRIGHTNESSDOWN" +0x800f0481 = "KEY_PLAYPAUSE" +[[protocols]] +protocol = "mce_kbd"