From patchwork Wed Apr 24 07:43:43 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lubomir Rintel X-Patchwork-Id: 10914263 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 42DB9922 for ; Wed, 24 Apr 2019 07:44:25 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 363AF2884B for ; Wed, 24 Apr 2019 07:44:25 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2A0A9288AE; Wed, 24 Apr 2019 07:44:25 +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=unavailable 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 9B6E828875 for ; Wed, 24 Apr 2019 07:44:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729281AbfDXHoW (ORCPT ); Wed, 24 Apr 2019 03:44:22 -0400 Received: from shell.v3.sk ([90.176.6.54]:39465 "EHLO shell.v3.sk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726880AbfDXHoW (ORCPT ); Wed, 24 Apr 2019 03:44:22 -0400 Received: from localhost (localhost [127.0.0.1]) by zimbra.v3.sk (Postfix) with ESMTP id BF0FB102E7D; Wed, 24 Apr 2019 09:44:16 +0200 (CEST) Received: from shell.v3.sk ([127.0.0.1]) by localhost (zimbra.v3.sk [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id yRCO-58-N-WB; Wed, 24 Apr 2019 09:44:03 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by zimbra.v3.sk (Postfix) with ESMTP id C35A1102E46; Wed, 24 Apr 2019 09:44:02 +0200 (CEST) X-Virus-Scanned: amavisd-new at zimbra.v3.sk Received: from shell.v3.sk ([127.0.0.1]) by localhost (zimbra.v3.sk [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id g2tevjlc7OYb; Wed, 24 Apr 2019 09:43:59 +0200 (CEST) Received: from belphegor.brq.redhat.com (nat-pool-brq-t.redhat.com [213.175.37.10]) by zimbra.v3.sk (Postfix) with ESMTPSA id 3FEFD102D4D; Wed, 24 Apr 2019 09:43:59 +0200 (CEST) From: Lubomir Rintel To: Andy Shevchenko , Darren Hart Cc: Rob Herring , Russell King , Mark Rutland , platform-driver-x86@vger.kernel.org, linux-pm@vger.kernel.org, Sebastian Reichel Subject: [PATCH v6 0/10] Add support for OLPC XO 1.75 Embedded Controller Date: Wed, 24 Apr 2019 09:43:43 +0200 Message-Id: <20190424074353.458446-1-lkundrak@v3.sk> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hello! This is a sixth spin of the patch set that adds support for the Embedded Controller on an OLPC XO 1.75 machine. Compared to the previous version there are only some trivial-ish changes to [06/10] and addition of Reviewd-by tags; as indicated in changelogs of individual patches. In my opinion the first seven patches are ready for merge as they are: [01/10] dt-bindings: olpc,xo1.75-ec: Add OLPC XO-1.75 EC [02/10] Platform: OLPC: Remove an unused include [03/10] Platform: OLPC: Move EC-specific functionality out from [04/10] Platform: OLPC: Avoid a warning if the EC didn't [05/10] Platform: OLPC: Use BIT() and GENMASK() for event masks [06/10] Platform: OLPC: Add XO-1.75 EC driver [07/10] Platform: OLPC: Add a regulator for the DCON The patch [08/10] relies on changes to the OLPC battery driver that have recently landed in the power-supply tree (without them enabling CONFIG_BATTERY_OLPC on ARM would break build): [08/10] power: supply: olpc_battery: Allow building the driver Sebastian Reichel provided an signed tag of an immutable branch that has the necessary bits and was merged into the power-supply tree for 5.2: git pull git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git psy-olpc-1.75-battery-signed The patch [10/10] was split of from the rest because Russell King found the patch [09/10] it depends on possibly objectionable. They should not be applied without further input from Russell: [09/10] ARM: export arm_pm_restart [10/10] Platform: OLPC: Add restart support to XO-1.75 EC Tested to work on an OLPC XO 1.75 and also tested not to break x86 support with an OLPC XO 1 machine. I don't have a XO 1.5, but it's unlikely this breaks it when XO 1 works. Lubo