From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751521AbcEJL0K (ORCPT ); Tue, 10 May 2016 07:26:10 -0400 Received: from mail-lf0-f44.google.com ([209.85.215.44]:36110 "EHLO mail-lf0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751304AbcEJL0I (ORCPT ); Tue, 10 May 2016 07:26:08 -0400 Subject: Re: [PATCH v5 2/5] ARM: davinci: da8xx: Add CFGCHIP syscon platform declaration. To: David Lechner , nsekhar@ti.com, khilman@kernel.org References: <1462837612-7803-1-git-send-email-david@lechnology.com> <1462837612-7803-3-git-send-email-david@lechnology.com> Cc: petr@barix.com, Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Kishon Vijay Abraham I , Greg Kroah-Hartman , Alan Stern , Bin Liu , Lee Jones , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org From: Sergei Shtylyov Message-ID: <7e0373cf-2ae9-e205-2226-0ded6894b709@cogentembedded.com> Date: Tue, 10 May 2016 14:26:05 +0300 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.0 MIME-Version: 1.0 In-Reply-To: <1462837612-7803-3-git-send-email-david@lechnology.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 5/10/2016 2:46 AM, David Lechner wrote: > The CFGCHIP registers are used by a number of devices, so using a syscon > device to share them. The first consumer of this will by the phy-da8xx-usb > driver. > > Signed-off-by: David Lechner [...] > diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c > index 725e693..69d11a1 100644 > --- a/arch/arm/mach-davinci/devices-da8xx.c > +++ b/arch/arm/mach-davinci/devices-da8xx.c > @@ -11,6 +11,7 @@ > * (at your option) any later version. > */ > #include > +#include > #include > #include > #include > @@ -1109,3 +1110,30 @@ int __init da850_register_sata(unsigned long refclkpn) > return platform_device_register(&da850_sata_device); > } > #endif > + > +static struct syscon_platform_data da8xx_cfgchip_platform_data = { > + .label = "cfgchip", > +}; > + > +static struct resource da8xx_cfgchip_resources[] = { > + { > + .start = DA8XX_SYSCFG0_BASE + DA8XX_CFGCHIP0_REG, > + .end = DA8XX_SYSCFG0_BASE + DA8XX_CFGCHIP4_REG + 3, > + .flags = IORESOURCE_MEM, > + }, > +}; > + > +static struct platform_device da8xx_cfgchip_device = { > + .name = "syscon", > + .id = 0, Again, -1. [...] MBR, Sergei