Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932468AbbD0JE2 (ORCPT ); Mon, 27 Apr 2015 05:04:28 -0400 Received: from mout.kundenserver.de ([212.227.17.24]:54615 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932169AbbD0JEZ (ORCPT ); Mon, 27 Apr 2015 05:04:25 -0400 From: Arnd Bergmann To: Yoshinori Sato Cc: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org Subject: Re: [PATCH v9 11/17] h8300: clock driver Date: Mon, 27 Apr 2015 11:04:19 +0200 Message-ID: <2321574.fdIMjhZdv2@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <1430112924-1134-12-git-send-email-ysato@users.sourceforge.jp> References: <1430112924-1134-1-git-send-email-ysato@users.sourceforge.jp> <1430112924-1134-12-git-send-email-ysato@users.sourceforge.jp> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:O6e5ccCpVJZNpYCOBjBw4lDHaZSPyTE/npLpp5i0/dXqnUYDavq R89vJ5rhB5lVJPQL9D11cIp4WCqwTMIDtRQ8yZsGKmVuCkSP/cak11312XSZcLQwXYKoRen zaFj2ZJQV8lEk5IJrWQFHT6dHp+fleSwpM1dHt0PQE6cCES4OABzWrJSTBEDQDVz+cgMr4t Nk950XcKsNF4sasXJ38jA== X-UI-Out-Filterresults: notjunk:1; Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2798 Lines: 96 On Monday 27 April 2015 14:35:18 Yoshinori Sato wrote: > +static struct platform_driver cpg_driver = { > + .driver = { > + .name = DEVNAME, > + }, > + .probe = clk_probe, > +}; > + > +early_platform_init(DEVNAME, &cpg_driver); > + > +static struct platform_device clk_device = { > + .name = DEVNAME, > + .id = 0, > +}; > + > +static struct platform_device *devices[] __initdata = { > + &clk_device, > +}; > + > +int __init h8300_clk_init(int hz) > +{ > + static int master_hz; > + > + master_hz = hz; > + clk_device.dev.platform_data = &master_hz; > + early_platform_add_devices(devices, > + ARRAY_SIZE(devices)); > + early_platform_driver_register_all(DEVNAME); > + early_platform_driver_probe(DEVNAME, 1, 0); > + return 0; > +} Clock drivers are generally not 'platform_drivers'. Please do one of two things: a) use CLK_OF_DECLARE() to register a probe function, and use a device tree for describing your hardware b) rename clk_probe() to h8300_clk_init() and just call that function from the architecture code. > +int __init h8300_clk_init(int hz) > +{ > + static int master_hz; > + > + master_hz = hz; > + clk_device.dev.platform_data = &master_hz; > + early_platform_add_devices(devices, > + ARRAY_SIZE(devices)); > + early_platform_driver_register_all(DEVNAME); > + early_platform_driver_probe(DEVNAME, 1, 0); > + return 0; > +} Here you have the same code again, which means the two files are mutually exclusive. This is generally not a good idea. Instead, it's better to make it possible to build a kernel that supports all the hardware, even if in practice you would not want to run that kernel. If you use CLK_OF_DECLARE(), it becomes trivial to make the two files coexist, otherwise use two different function names here and make the architecture code decide which one to call. > diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h > index df69531..931860b 100644 > --- a/include/linux/clk-provider.h > +++ b/include/linux/clk-provider.h > @@ -675,6 +675,18 @@ static inline void clk_writel(u32 val, u32 __iomem *reg) > iowrite32be(val, reg); > } > > +#elif IS_ENABLED(CONFIG_H8300) > + > +static inline u32 clk_readl(u32 __iomem *reg) > +{ > + return __raw_readb(reg); > +} > + > +static inline void clk_writel(u32 val, u32 __iomem *reg) > +{ > + __raw_writeb(val, reg); > +} > + > #else /* platform dependent I/O accessors */ Why not use the same code as powerpc here? Drivers should normally not use __raw_* accessors, and the ioread32be on powerpc should work here as well. Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/