From patchwork Mon Feb 4 08:19:45 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: "Life is hard, and then you die" X-Patchwork-Id: 10795051 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 F25411669 for ; Mon, 4 Feb 2019 08:20:29 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E53B62AFD0 for ; Mon, 4 Feb 2019 08:20:29 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D9C172AFDA; Mon, 4 Feb 2019 08:20:29 +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=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,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 493C22AFD7 for ; Mon, 4 Feb 2019 08:20:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728215AbfBDIT5 (ORCPT ); Mon, 4 Feb 2019 03:19:57 -0500 Received: from chill.innovation.ch ([216.218.245.220]:56390 "EHLO chill.innovation.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726103AbfBDITz (ORCPT ); Mon, 4 Feb 2019 03:19:55 -0500 Received: from localhost (localhost [127.0.0.1]) by chill.innovation.ch (Postfix) with ESMTP id 6C1E164013A; Mon, 4 Feb 2019 00:19:54 -0800 (PST) X-Virus-Scanned: amavisd-new at Received: from chill.innovation.ch ([127.0.0.1]) by localhost (chill.innovation.ch [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xI81bttMYJGj; Mon, 4 Feb 2019 00:19:52 -0800 (PST) From: =?utf-8?q?Ronald_Tschal=C3=A4r?= DKIM-Filter: OpenDKIM Filter v2.10.3 chill.innovation.ch C7EA7640132 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=innovation.ch; s=default; t=1549268392; bh=5q2qbhsxgYrOmW2H24j9M9uerx04Cxb7KBz33NpNA3U=; h=From:To:Cc:Subject:Date:From; b=M1Eu6upY7wjEKajPP05/jdEJGe+ktWm3kxfiZbmieve/QnsbaLCfCOkxyhh2h3vrD +NG4fjSFdseo7YNj0J2f2XEKLNMiy/6l2HlebZ6H6ZS1m41WPrJa01hwZA21Rf/x6z 01VLzuMEEhyt2pqWPVghbQQfpJyLiHA4QA54zWdFrpqitMu0jQlb5tlira0aCuuN2A AXlIGU7SpD5VA+oy/UgXjUc4YjCABTYD4eeVuON5fNG8SD0TYtxb6mZ3nphQ5E4C/C tL50npwl/YFYg6RmrWS/4feR1KvzkhQdDYKAUw1TLooDlu+liqTKdJX8967MnGzIKt y94Qh3WiPdIKA== To: Dmitry Torokhov , Henrik Rydberg Cc: Lukas Wunner , Federico Lorenzi , Andy Shevchenko , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 0/2] Add Apple SPI keyboard and trackpad driver Date: Mon, 4 Feb 2019 00:19:45 -0800 Message-Id: <20190204081947.25152-1-ronald@innovation.ch> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This changeset adds a driver for the SPI keyboard and trackpad on recent MacBook's and MacBook Pro's. The driver has seen a fair amount of use over the last 2 years (basically anybody running linux on these machines), with only relatively small changes in the last year or so. For those interested, the driver development has been hosted at https://github.com/cb22/macbook12-spi-driver/ (as well as my clone at https://github.com/roadrunner2/macbook12-spi-driver/). The first patch is just a placeholder for now and is provided in case somebody wants to compile the driver while it's being reviewed here; the real patch has been submitted to dri-devel and is being discussed there, with the intent/hope that I can get an Ack and permission to merge it through the input subsystem tree here as part of this patch series. Ronald Tschalär (2): drm/bridge: sil_sii8620: depend on INPUT instead of selecting it. Input: add Apple SPI keyboard and trackpad driver. drivers/gpu/drm/bridge/Kconfig | 2 +- drivers/input/keyboard/Kconfig | 13 + drivers/input/keyboard/Makefile | 1 + drivers/input/keyboard/applespi.c | 1919 +++++++++++++++++++++++++++++ 4 files changed, 1934 insertions(+), 1 deletion(-) create mode 100644 drivers/input/keyboard/applespi.c