[PATCH 1/8] ARM: support for Moschip MCS814x SoCs
Florian Fainelli
florian at openwrt.org
Tue Jul 17 05:35:20 EDT 2012
On Tuesday 17 July 2012 00:12:01 Linus Walleij wrote:
> On Mon, Jul 16, 2012 at 5:54 PM, Arnd Bergmann <arnd at arndb.de> wrote:
>
> >> +static const struct cpu_mode cpu_modes[] = {
> >> + {
> >> + .name = "I2S",
> >> + .gpio_start = 4,
> >> + .gpio_end = 8,
> >> + },
> >> + {
> >> + .name = "UART",
> >> + .gpio_start = 4,
> >> + .gpio_end = 9,
> >> + },
> >> + {
> >> + .name = "External MII",
> >> + .gpio_start = 0,
> >> + .gpio_end = 16,
> >> + },
> >> + {
> >> + .name = "Normal",
> >> + .gpio_start = -1,
> >> + .gpio_end = -1,
> >> + },
> >> +};
> >> +
> >> +void __init mcs814x_init_machine(void)
> >> +{
> >> + u32 bs2, cpu_mode;
> >> + int gpio;
> >> +
> >> + bs2 = __raw_readl(mcs814x_sysdbg_base + SYSDBG_BS2);
> >> + cpu_mode = (bs2 >> CPU_MODE_SHIFT) & CPU_MODE_MASK;
> >> +
> >> + pr_info("CPU mode: %s\n", cpu_modes[cpu_mode].name);
> >> +
> >> + /* request the gpios since the pins are muxed for functionnality */
> >> + for (gpio = cpu_modes[cpu_mode].gpio_start;
> >> + gpio == cpu_modes[cpu_mode].gpio_end; gpio++) {
> >> + if (gpio != -1)
> >> + gpio_request(gpio, cpu_modes[cpu_mode].name);
> >> + }
> >> +}
> >
> > This looks like a very simple instance of a pinmux driver. I wonder
> > if it's worth doing an actual pinctrl driver that knows about these
> > modes and about the gpio handling of the platform. Maybe Linus Walleij
> > can comment on that.
>
> It is worth, because usually it is not simple at all but these are,
> as I highly suspect, the first few entries to get the platform up and
> running. Then it's going to need to add another one, and then
> another one, and then break it into a separate file, and then it's a
> custom pin controller implementation all over again
>
> Nothing is forbidding a simple pin controller implementation
> in drivers/pinctrl, just a few tens of lines is perfectly OK
> with me.
In this particular case, I do not think it is even worth having a pinctrl
driver since the settings are hardwired using bootstrap registers, so we
cannot runtime change them afterwards.
>
> Documentation/pinctrl.txt is the friend at all times.
> arch/arm/mach-u300/core.c shows how a simple set-up
> at boot time can be achieved using so-called pinctrl
> hogs.
>
> Yours,
> Linus Walleij
More information about the linux-arm-kernel
mailing list