From: Arnd Bergmann <arnd@arndb.de>
To: linux-arm-kernel@lists.infradead.org
Cc: Pankaj Dubey <pankaj.dubey@samsung.com>,
linux-samsung-soc@vger.kernel.org, linux@arm.linux.org.uk,
t.figa@samsung.com, linux-kernel@vger.kernel.org,
kgene.kim@samsung.com
Subject: Re: [PATCH 0/4] Introducing Exynos ChipId driver
Date: Tue, 06 May 2014 09:24:42 +0200 [thread overview]
Message-ID: <20694329.WZS2oIXA4v@wuerfel> (raw)
In-Reply-To: <536887D4.90808@samsung.com>
On Tuesday 06 May 2014 15:57:24 Pankaj Dubey wrote:
> On 05/05/2014 11:58 PM, Arnd Bergmann wrote:
> > On Monday 05 May 2014 18:23:55 Pankaj Dubey wrote:
> >> On 05/04/2014 12:02 AM, Arnd Bergmann wrote:
> >>> Ideally this should be done by slightly restructuring the DT
> >>> source to make all on-chip devices appear below the soc node.
> >> Currently I can't see soc nodes in exynos4 and exynos5 DT files.
> >> So isn't it should be a separate patch first to modify all exynos4
> >> exynos5 DT files to move all devices under soc node?
> >> In that case existing chipid node will be also moved under soc node.
> > Yes, that would be good. In fact the soc node could be identical
> > to the chipid node, effectively moving everything under chipid.
>
> OK, in that case I would like to keep this as separate patch once
> I do all other modifications.
Yes, makes sense. Let's see if we can convince Rob first though, he
has some reservations.
> >> Also even if we get some way to preserve existing compatibility, I afraid
> >> in chipid driver that implementation will not look good, at least I am not
> >> able to think of any good way. Any suggestions?
> > The compatibility I mean is to ensure everything keeps working if
> > the node is not present.
> >
> >>> Regarding patch 4, this is not what I meant when I asked for
> >>> removing the soc_is_exynos* macros. You basically do a 1:1 replacement
> >>> using a different interface, but you still have code that does
> >>> things differently based on a global identification.
> >> I agree with what you are trying to say. But if you see recently we had some
> >> patches (cpu_idle.c: [2], pmu.c: [3]) to remove usage of such macros from
> >> exynos machine files. So only leftover files using these macros are exynos.c
> >> platsmp.c and pm.c.
> >>
> >> For exynos.c I have tried to remove soc_is_exynos4/exynos5 by matching with
> >> compatible string in patch 1 of this series. Please let me know if that is OK?
> > I've taken a closer look at that file now. My preferred solution
> > would be to go back to having two machine descriptors as it
> > was before Sachin Kamat's "ARM: EXYNOS: Consolidate exynos4 and
> > exynos5 machine files", but keep it all in one file and consolidated
> > as much as possible, e.g.
>
> Yes, that case I do not need to add another function to compare compatible
> strings.
> So if there is no issues in having two separate machine descriptor I will
> do this
> modification in next version of patch.
ok.
> > static void __init exynos_dt_machine_init(void)
> > {
> > exynos_cpuidle_init();
> > exynos_cpufreq_init();
> >
> > of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
> > }
> >
> > static void __init exynos5_dt_machine_init(void)
> > {
> > /*
> > * Exynos5's legacy i2c controller and new high speed i2c
> > * controller have muxed interrupt sources. By default the
> > * interrupts for 4-channel HS-I2C controller are enabled.
> > * If node for first four channels of legacy i2c controller
> > * are available then re-configure the interrupts via the
> > * system register.
> > */
> > struct device_node *i2c_np;
> > const char *i2c_compat = "samsung,s3c2440-i2c";
> > unsigned int tmp;
> > int id;
> >
> > for_each_compatible_node(i2c_np, NULL, i2c_compat) {
> > if (of_device_is_available(i2c_np)) {
> > id = of_alias_get_id(i2c_np, "i2c");
> > if (id < 4) {
> > tmp = readl(EXYNOS5_SYS_I2C_CFG);
> > writel(tmp & ~(0x1 << id), EXYNOS5_SYS_I2C_CFG);
> > }
> > }
> > }
> >
> > exynos_dt_machine_init();
> > }
> >
> > This way you can avoid having another check of the compatible node.
> > In the long run, all of the this code should go away: The cpuidle
> > and cpufreq drivers should become normal platform drivers that
> > get probed when the devices are present (just like it's required
> > for arm64 anyway), and the EXYNOS5_SYS_I2C_CFG register should
> > get set up by an appropriate driver, e.g. the i2c driver through
> > syscon, or a pinmux driver that changes the mux between the
> > sources based on DT information, whatever fits best.
>
> OK, will move this in i2c driver and will use sysreg as syscon phandle.
Ok, cool.
> >> Also for platsmp.c and pm.c I can think of following approaches
> >> 1: Keep these macros till we get generic solution?
> >> 2: Allow chipid driver to expose APIs to check SoC id and SoC revisions
> >> till we get
> >> generic solution. So that at least we can remove #ifdef based macros
> >> as soc_is_exynosXYZ.
> >> 3: Use of "of_flat_dt_is_compatible" or similar APIs in these machine files
> >> till we get
> >> generic solution. For some cases where we want to know SoC revision let us
> >> map chipid register and get revision there itself.
> >>
> >> Please let me know what approach you think will be good?
> > I think 1 or 2 would be better than 3. Between those two, I'm undecided,
> > but I think either way the SoC specific values would be better kept in the
> > mach-samsung directory than in plat/cpu.h or linux/exynos-chipid.h.
>
> OK, let me introduce this driver via "drivers/soc" in second revision,
> there also if we think it's not proper to expose such APIs or variable
> outside of the driver, I will be think to move it in under machine
> directory itself.
Ok.
Arnd
next prev parent reply other threads:[~2014-05-06 7:25 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-03 6:11 [PATCH 0/4] Introducing Exynos ChipId driver Pankaj Dubey
2014-05-03 6:11 ` [PATCH 1/4] ARM: EXYNOS: remove soc_is_exynos4/5 from exynos.c Pankaj Dubey
2014-05-03 6:11 ` [PATCH 2/4] ARM: EXYNOS: remove unused header inclusion from hotplug.c Pankaj Dubey
2014-05-03 6:11 ` [PATCH 3/4] misc: exynos-chipid: Add Exynos Chipid driver support Pankaj Dubey
2014-05-05 7:57 ` Krzysztof Kozlowski
2014-05-05 9:28 ` Pankaj Dubey
2014-05-03 15:02 ` [PATCH 0/4] Introducing Exynos ChipId driver Arnd Bergmann
2014-05-05 9:23 ` Pankaj Dubey
2014-05-05 14:58 ` Arnd Bergmann
2014-05-05 15:01 ` Arnd Bergmann
2014-05-06 6:57 ` Pankaj Dubey
2014-05-06 7:24 ` Arnd Bergmann [this message]
2014-05-12 1:47 ` Olof Johansson
2014-05-12 9:47 ` Arnd Bergmann
2014-05-05 15:34 ` Rob Herring
2014-05-06 7:22 ` Arnd Bergmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20694329.WZS2oIXA4v@wuerfel \
--to=arnd@arndb.de \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=pankaj.dubey@samsung.com \
--cc=t.figa@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox