Received: by 10.213.65.68 with SMTP id h4csp665177imn; Sat, 31 Mar 2018 07:05:33 -0700 (PDT) X-Google-Smtp-Source: AIpwx4+Koy+OFcdgg+XAxz0U2Dtb0waDdFqFT31Xav+0tRXND5Yo20WiswORqRthrehsFkIHEmqX X-Received: by 10.99.165.66 with SMTP id r2mr1972213pgu.452.1522505133807; Sat, 31 Mar 2018 07:05:33 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1522505133; cv=none; d=google.com; s=arc-20160816; b=pDWuQoy4ME+I2iJ3CP67BBbvhuCkMN+H/WLVlVhC6+0S7dBzFJpoD1AI0ghgwI3+Nu ZcgVrVF1yACD5Dt03OiuYUZgyzGIGoyxBtaFoxlYF4K0abagwv32aXF97POvdo04Qhri w/wSd2jU1hZW13SaGtXKEQLWVVvqs1CAkJ2DEg2ii4ZWje1WH9HMa3QnyiSq+rtNgeRM z0HOhiOuwb01TQF/P9kU9m7g9/vlgo2Us5A0hRBj2muxWQlNNd2yVqeSC7WMUO/0/V/A xn7SjICNsE1zforc07KUAu2cT/BuAESQBha4WI54RlmWipgaewPbwcmLHoT4jJzf0UAU QvhA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:date:message-id:subject:cc:from:to :in-reply-to:arc-authentication-results; bh=nM27z5JcHbddJiIn4OkkMWOiw2pziXYyIYiYhx7fvNU=; b=OJHiYXksoNnHEurSZE3bBphw4os4pz9Go/TYBx/fCh4Aua5gVthiZ8ReLNSmV4U2Zt lR3YS0LpKFB10X++HrimkUnMKCv106u1QLEudNw8KU9vyON00nEyJpcVhhZ1b9kwvfkQ qHMMApgoEiGSw7Dg9wvx0+emgKM0uqt3DBsjCWIaSDC9q+ikmEU3y46M1O9tR+6n3o9K InJC5HDVOAxs83qCo2VhXFOL2KSzuCN9W/EyFmg0h6anQDgtUMRvK9xEO2GcGujSj17m CfT508aKpNY7dnvFT+z/tTGh0X3dwbubu5bQJcTNAYH2KP3lnWQiJrPleGXYR6UWXThw KZGA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d3-v6si6404968plo.110.2018.03.31.07.05.20; Sat, 31 Mar 2018 07:05:33 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752358AbeCaODy (ORCPT + 99 others); Sat, 31 Mar 2018 10:03:54 -0400 Received: from ozlabs.org ([103.22.144.67]:55067 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752949AbeCaODw (ORCPT ); Sat, 31 Mar 2018 10:03:52 -0400 Received: by ozlabs.org (Postfix, from userid 1034) id 40D0Zr5ldZz9s2b; Sun, 1 Apr 2018 01:03:45 +1100 (AEDT) X-powerpc-patch-notification: thanks X-powerpc-patch-commit: 9cbaaec1cf0c9f4861c4c1dd65f3ede218c1ab2f In-Reply-To: <20180209120732.17863-2-j.neuschaefer@gmx.net> To: =?utf-8?q?Jonathan_Neusch=C3=A4fer?= , linux-kernel@vger.kernel.org From: Michael Ellerman Cc: devicetree@vger.kernel.org, =?utf-8?q?Jonathan_Neusch=C3=A4fer?= , linux-gpio@vger.kernel.org, Paul Mackerras , Joel Stanley , linuxppc-dev@lists.ozlabs.org Subject: Re: [v3, 1/4] powerpc: wii: Explicitly configure GPIO owner for poweroff pin Message-Id: <40D0Zr5ldZz9s2b@ozlabs.org> Date: Sun, 1 Apr 2018 01:03:45 +1100 (AEDT) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 2018-02-09 at 12:07:28 UTC, =?utf-8?q?Jonathan_Neusch=C3=A4fer?= wrote: > The Hollywood chipset's GPIO controller has two sets of registers: One > for access by the PowerPC CPU, and one for access by the ARM coprocessor > (but both are accessible from the PPC because the memory firewall > (AHBPROT) is usually disabled when booting Linux, today). > > The wii_power_off function currently assumes that the poweroff GPIO pin > is configured for use via the ARM side, but the upcoming GPIO driver > configures all pins for use via the PPC side, breaking poweroff. > > Configure the owner register explicitly in wii_power_off to make > wii_power_off work with and without the new GPIO driver. > > I think the Wii can be switched to the generic gpio-poweroff driver, > after the GPIO driver is merged. > > Signed-off-by: Jonathan Neuschäfer Patches 1, 3 and 4 applied to powerpc next, thanks. https://git.kernel.org/powerpc/c/9cbaaec1cf0c9f4861c4c1dd65f3ed cheers