From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 760DCC55185 for ; Thu, 23 Apr 2020 00:54:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4B2052075A for ; Thu, 23 Apr 2020 00:54:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587603270; bh=EdeAQ2EdBIQEUfUEWY+K0rWxiAbfj3atcOU3hxgWKyQ=; h=References:In-Reply-To:From:Date:Subject:To:Cc:List-ID:From; b=lJtKSBs3bB/tzrRaxdjJxlaR+mkQYWlq4lcVshpQW7ZGZ/kI8EPKD9n66QzdEBUAs oJNek1ktEv79CSWF2z0lOfO6qH3NbPF3Yt1SXs+T34rqoNmG5LEIvRjOfKT+BZ2B1F 0wYVmx6MuvjwtruwO63KSHVH459sf/sn0VZrRSig= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726384AbgDWAya (ORCPT ); Wed, 22 Apr 2020 20:54:30 -0400 Received: from mail.kernel.org ([198.145.29.99]:56546 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725895AbgDWAy3 (ORCPT ); Wed, 22 Apr 2020 20:54:29 -0400 Received: from mail-qt1-f171.google.com (mail-qt1-f171.google.com [209.85.160.171]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 1B13E2075A; Thu, 23 Apr 2020 00:54:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587603269; bh=EdeAQ2EdBIQEUfUEWY+K0rWxiAbfj3atcOU3hxgWKyQ=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=U6eIpZ4dnkMiG9rnK5P7Ne5VcVRJzLtgh6wGjJ421bhNj3OJyq6TyzpmwccXDczX8 GZm6rDL3BmglFyz3Ru8xJp4K1LbRYEpPLDdT4rYXMFF1MalxjWggEkrG4/otS1kk9V 6Yu2Mt/XZpKjosxzTyls8cNSfzU74NEVM4xcS3Rc= Received: by mail-qt1-f171.google.com with SMTP id x8so3481488qtp.13; Wed, 22 Apr 2020 17:54:29 -0700 (PDT) X-Gm-Message-State: AGi0PuYjIcf2BTZ6YG4sgP7GhVHTRbdlpxJlC2wK16R2XY5TzgFBTkey KRwfAnnEQsQZj5xPotU/AD+SaER3abmnWEq2rg== X-Google-Smtp-Source: APiQypLM57Lkh8iAgNUZnacihwoOR74d09qQ7Q5sY/K/hAUmznUbIS0nhBAnRSBkMJUqszGyIlIZBbd7gRjPBC5mzIc= X-Received: by 2002:ac8:47cb:: with SMTP id d11mr496433qtr.136.1587603268256; Wed, 22 Apr 2020 17:54:28 -0700 (PDT) MIME-Version: 1.0 References: <20200419170810.5738-1-robh@kernel.org> <20200419170810.5738-16-robh@kernel.org> <158754906803.132238.5380277174069330915@swboyd.mtv.corp.google.com> In-Reply-To: <158754906803.132238.5380277174069330915@swboyd.mtv.corp.google.com> From: Rob Herring Date: Wed, 22 Apr 2020 19:54:16 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH 15/17] vexpress: Move site master init to vexpress-config bus To: Stephen Boyd Cc: Linus Walleij , Liviu Dudau , Lorenzo Pieralisi , Sudeep Holla , Arnd Bergmann , Catalin Marinas , Greg Kroah-Hartman , Lee Jones , Sebastian Reichel , Will Deacon , Kevin Brodsky , "moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE" , linux-clk , "open list:THERMAL" Content-Type: text/plain; charset="UTF-8" Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org On Wed, Apr 22, 2020 at 4:51 AM Stephen Boyd wrote: > > Is the subject supposed to say 'set master' vs. 'site master'? Humm, maybe 'master site' instead. > > Quoting Rob Herring (2020-04-19 10:08:08) > > There's only a single caller of vexpress_config_set_master() from > > vexpress-sysreg.c. Let's just make the registers needed available to > > vexpress-config and move all the code there. The registers needed aren't > > used anywhere else either. With this, we can get rid of the private API > > between these 2 drivers. > > > > Cc: Liviu Dudau > > Cc: Sudeep Holla > > Cc: Lorenzo Pieralisi > > Cc: Linus Walleij > > Cc: Lee Jones > > Cc: Greg Kroah-Hartman > > Signed-off-by: Rob Herring From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 50886C55185 for ; Thu, 23 Apr 2020 00:54:50 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id D1D962075A for ; Thu, 23 Apr 2020 00:54:49 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="EyMkXgco"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="U6eIpZ4d" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org D1D962075A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:To:Subject:Message-ID:Date:From: In-Reply-To:References:MIME-Version:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=RkikpoxOqtvOP+r0A+qmG2PIbm/z94VDy59oOIQoVm4=; b=EyMkXgcoqtZagb F8S9adhpYQFstUqrv2VZNjWHnID3S3z44PEtLM6im/nRlKkWAmOAvBiDaQ8STulpBCMaSIQt5r1uc IxLVHu46dhczevEIb9xfmtiKe5QMNtvi0OEc2hKHt03dXdDhn+Q7NEhwBFNYI3wKqcs+uAq/f9bGF betzwRt7J+PXRTkABO9AxFrSasD3XmXqeDGaeCTkD76ojMFCaWvqRVctElpaZlzKb5TeaJvfZQSKf bcaaDqm6JjyGZv8xIDqF6duDdsSWyQ78i/1kgKTsuu2yHhBqp1C49WXNgal0WX6AYtDT7lomJm3Sg tCeSHbis27sOIvBx9dsQ==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jRQ8b-0004Bd-8I; Thu, 23 Apr 2020 00:54:45 +0000 Received: from mail.kernel.org ([198.145.29.99]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1jRQ8P-00042d-IS for linux-arm-kernel@lists.infradead.org; Thu, 23 Apr 2020 00:54:39 +0000 Received: from mail-qt1-f171.google.com (mail-qt1-f171.google.com [209.85.160.171]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 2D8A620857 for ; Thu, 23 Apr 2020 00:54:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587603269; bh=EdeAQ2EdBIQEUfUEWY+K0rWxiAbfj3atcOU3hxgWKyQ=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=U6eIpZ4dnkMiG9rnK5P7Ne5VcVRJzLtgh6wGjJ421bhNj3OJyq6TyzpmwccXDczX8 GZm6rDL3BmglFyz3Ru8xJp4K1LbRYEpPLDdT4rYXMFF1MalxjWggEkrG4/otS1kk9V 6Yu2Mt/XZpKjosxzTyls8cNSfzU74NEVM4xcS3Rc= Received: by mail-qt1-f171.google.com with SMTP id z90so3494449qtd.10 for ; Wed, 22 Apr 2020 17:54:29 -0700 (PDT) X-Gm-Message-State: AGi0PuZ/ZX3pxBrWHVjNEKF1WCpqXU0ufEF9YbztJprlvqlxqohdMpVQ dv7Dd/zyFrgi994ZxSUUt4AR3Ahsb4n4A+/TvQ== X-Google-Smtp-Source: APiQypLM57Lkh8iAgNUZnacihwoOR74d09qQ7Q5sY/K/hAUmznUbIS0nhBAnRSBkMJUqszGyIlIZBbd7gRjPBC5mzIc= X-Received: by 2002:ac8:47cb:: with SMTP id d11mr496433qtr.136.1587603268256; Wed, 22 Apr 2020 17:54:28 -0700 (PDT) MIME-Version: 1.0 References: <20200419170810.5738-1-robh@kernel.org> <20200419170810.5738-16-robh@kernel.org> <158754906803.132238.5380277174069330915@swboyd.mtv.corp.google.com> In-Reply-To: <158754906803.132238.5380277174069330915@swboyd.mtv.corp.google.com> From: Rob Herring Date: Wed, 22 Apr 2020 19:54:16 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH 15/17] vexpress: Move site master init to vexpress-config bus To: Stephen Boyd X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200422_175433_657359_2758B07F X-CRM114-Status: GOOD ( 12.02 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Lorenzo Pieralisi , Arnd Bergmann , Greg Kroah-Hartman , Catalin Marinas , Linus Walleij , Kevin Brodsky , Liviu Dudau , Sebastian Reichel , Will Deacon , Sudeep Holla , "open list:THERMAL" , Lee Jones , linux-clk , "moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE" Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Wed, Apr 22, 2020 at 4:51 AM Stephen Boyd wrote: > > Is the subject supposed to say 'set master' vs. 'site master'? Humm, maybe 'master site' instead. > > Quoting Rob Herring (2020-04-19 10:08:08) > > There's only a single caller of vexpress_config_set_master() from > > vexpress-sysreg.c. Let's just make the registers needed available to > > vexpress-config and move all the code there. The registers needed aren't > > used anywhere else either. With this, we can get rid of the private API > > between these 2 drivers. > > > > Cc: Liviu Dudau > > Cc: Sudeep Holla > > Cc: Lorenzo Pieralisi > > Cc: Linus Walleij > > Cc: Lee Jones > > Cc: Greg Kroah-Hartman > > Signed-off-by: Rob Herring _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel