lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 15 May 2013 18:12:34 -0600
From:	Stephen Warren <swarren@...dotorg.org>
To:	Christian Ruppert <christian.ruppert@...lis.com>
CC:	Linus Walleij <linus.walleij@...aro.org>,
	Patrice CHOTARD <patrice.chotard@...com>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
	Grant Likely <grant.likely@...retlab.ca>,
	Rob Herring <rob.herring@...xeda.com>,
	Rob Landley <rob@...dley.net>,
	Sascha Leuenberger <sascha.leuenberger@...lis.com>,
	Pierrick Hascoet <pierrick.hascoet@...lis.com>,
	"devicetree-discuss@...ts.ozlabs.org" 
	<devicetree-discuss@...ts.ozlabs.org>,
	"linux-doc@...r.kernel.org" <linux-doc@...r.kernel.org>
Subject: Re: [PATCH 1/2] pinmux: Add TB10x pinmux driver

On 05/10/2013 02:25 AM, Christian Ruppert wrote:
> On Wed, May 08, 2013 at 02:01:53PM -0600, Stephen Warren wrote:
>> On 05/08/2013 10:41 AM, Christian Ruppert wrote:
>> ...
>>> What do you think about the following modification to the pinctrl/GPIO
>>> frameworks instead (not yet a formal patch, more a request for comment
>>> to illustrate what I mean. If you agree, I will clean it up and submit a
>>> proper patch after discussion).
>>>
>>> It adds a dt_gpiorange_xlate function to the pinctrl callbacks which
>>> defaults to the conventional behaviour using kernel logical pin numbers.
>>> However, pin controllers which provide more complex mechanisms can
>>> define #gpio-range-cells and provide this callback in order to keep
>>> Linux pin numbering inside the kernel.
>>
>> Can you provide an example of the DT content, and explain exactly what
>> this patch does with it; what effect it has on the existing GPIO or
>> pinctrl code?
> 
> The patch does not change the default behaviour of the kernel: In case
> no dt_gpiorange_xlate callback is defined for a given driver (e.g. for
> pre-existing drivers), the default function simply interprets the first
> argument as Linux pin number and the second as pin count, same as now.
> New drivers can use the callback to translate device specific pin
> references to Linux pin numbers (in the idea of of_xlate in the GPIO
> framework or xlate in the irqchip framework).
> 
> In the case of TB10x, I was thinking of something in the lines of
> 
> iomux: iomux@...0601c {
> 	#gpio-range-cells = <1>;   /* one cell used for gpiorange phandle */
> 	compatible = "abilis,tb10x-iomux";
> 	reg = <0xFF10601c 0x4>;
> 	pctl_gpio_a: pctl-gpio-a { /* define phandle to GPIOA I/O function */
> 		pingrp = "gpioa_pins";
> 	};

These aren't phandles at all; they're just plain old nodes and properties.

> 	pctl_gpio_b: pctl-gpio-b { /* define phandle to GPIOB I/O function */
> 		pingrp = "gpiob_pins";
> 	};
> 	pctl_uart0: pctl-uart0 {   /* define phandle to UART0 I/O function */
> 		pingrp = "uart0_pins";
> 	};
> };
> uart@...00000 {
> 	compatible = "snps,dw-apb-uart";
> 	reg = <0xFF100000 0x100>;
> 	clock-frequency = <166666666>;
> 	interrupts = <25 1>;
> 	reg-shift = <2>;
> 	reg-io-width = <4>;
> 	pinctrl-names = "default";  /* For non-GPIO modules, request I/O */
> 	pinctrl-0 = <&pctl_uart0>;  /* functions normally */
> };
> gpioa: gpio@...40000 {
> 	compatible = "abilis,tb10x-gpio";
> 	reg = <0xFF140000 0x1000>;
> 	gpio-controller;
> 	#gpio-cells = <2>;
> 	gpio-ranges = <&iomux &pctl_gpio_a>; /* (*1) */

I guess you had to make the pctl_gpio_a a DT node, because to reference
it by phandle, it has to be a node; a phandle can't point at a property.

> };
> 
> gpioa: gpio@...40000 {
> 	compatible = "abilis,tb10x-gpio";
> 	reg = <0xFF140000 0x1000>;
> 	gpio-controller;
> 	#gpio-cells = <2>;
> 	pinctrl-names = "default"   /* here the GPIO controller requests */
> 	pinctrl-0 = <&pctl_gpio_b>; /* the entire GPIOB port explicitly */
> 	gpio-ranges = <&iomux &pctl_gpio_b>; /* (*2) */
> };
> 
> (*1) TB100 GPIO ranges are defined as a phandle to the I/O function
>      which provides all pins of a given GPIO port. This function is not
>      necessarily requested from pinctrl and GPIO ports may overlap with
>      other functions. The pin controller knows about this and provides
>      whatever GPIO pin is available after mapping other requested
>      functions.
> (*2) Here, the entire GPIOB port is explicitly requested by the GPIO
>      module, i.e. all pins of the port are made available as GPIOs.

So I think all you're looking for is a way in DT to represent GPIO
ranges? I don't think that should be by string name, but rather numbers:

(actually, doesn't pinctrl-simple already have this?)

The GPIO driver exposes N GPIOs, probably numbered 0..n-1, but I guess
it can number them in whatever sparse way it wants.

The pinctrl driver exposes N pins, again probably numbered 0..n-1, but I
guess it can number them in whatever sparse way it wants.

You want a way to represent the mapping between the various GPIO HW
modules' internal GPIO IDs and the various pinctrl HW modules' pin IDs.
That mapping should be just by integer GPIO/pin ID, I think. What about
the following:

iomux: iomux@...0601c {
    ...
};
gpio@...40000 {
    gpio-ranges = <GPIO_BASE SIZE &iomux IOMUX_PIN_BASE>;
};

where:

GPIO_BASE: GPIO ID (within gpioa, not global) for the start of the range
covered by this entry.

SIZE: Number of GPIO IDs (and pinctrl pin IDs) covered by this entry.

&iomux: The pin controller related to this range.

IOMUX_PIN_BASE: The pinctrl pin ID (within the iomux pin controller, not
global) for the start of the range covered by this entry.

You could easily have more complex setups, with multiple disjoint ranges:

iomuxa: iomux@...0 {
    ...
};
iomuxb: iomux@...0 {
    ...
};
gpio@...0 {
    gpio-ranges =
        <0 16 &iomuxa 0>,
        /* disjoint here */
        <32 16 &iomuxb 0>,
        <48 5 &iomuxa 16>,
};
gpio@...0 {
    gpio-ranges = <GPIO_BASE SIZE &iomux IOMUX_PIN_BASE>;
    gpio-ranges =
        <1 16 &iomuxb 16>,
        /* iomuxa's pin IDs are disjoint, hence not 21 here */
        <32 8 &iomuxa 32>,
};

The final version of this may require e.g. #gpio-range-pin-cells in the
iomux nodes, and #gpio-range-gpio-cells in the GPIO nodes to aid
automated parsing.

That way, these properties simply end up being parsed into standard and
already extant pinctrl_add_gpio_range() calls, or the other similar API.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists