Re: [PATCH v2 4/4] leds: no longer use unnamed gpios

2015-01-22 Thread Olliver Schinagl
Hey Rojhalat, On 22-01-15 10:32, Rojhalat Ibrahim wrote: On Wednesday 21 January 2015 22:33:48 Olliver Schinagl wrote: From: Olliver Schinagl The gpio document says we should not use unnamed bindings for gpios. This patch uses the 'led-' prefix to the gpios and updates code and documents

Re: [PATCH v2 4/4] leds: no longer use unnamed gpios

2015-01-22 Thread Olliver Schinagl
Hey Rojhalat, On 22-01-15 10:32, Rojhalat Ibrahim wrote: On Wednesday 21 January 2015 22:33:48 Olliver Schinagl wrote: From: Olliver Schinagl oli...@schinagl.nl The gpio document says we should not use unnamed bindings for gpios. This patch uses the 'led-' prefix to the gpios and updates code

Re: [PATCH] hrtimer: add hrtimer_start_now()

2015-01-22 Thread Olliver Schinagl
Hey Thomas, On 22-01-15 12:01, Thomas Gleixner wrote: On Thu, 22 Jan 2015, Olliver Schinagl wrote: From: Olliver Schinagl oli...@schinagl.nl When using a hrtimer for repeating periodic ticks, hrtimer_forward_now() is often used. Quite possibly the timer loop is thus probably fully controlled

[PATCH] hrtimer: add hrtimer_start_now()

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl When using a hrtimer for repeating periodic ticks, hrtimer_forward_now() is often used. Quite possibly the timer loop is thus probably fully controlled by hrtimer_forward_now() and we don't really care when the timer is started. With hrtimer_start() we need to define

Re: [PATCH v1 2/4] gpio: add parameter to allow the use named gpios

2015-01-21 Thread Olliver Schinagl
Hey Alexandre, On 01/19/2015 05:04 AM, Alexandre Courbot wrote: On Wed, Jan 7, 2015 at 6:08 PM, Olliver Schinagl wrote: From: Olliver Schinagl The gpio binding document says that new code should always use named gpios. Patch 40b73183 added support to parse a list of gpios from child nodes

[PATCH v2 4/4] leds: no longer use unnamed gpios

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl The gpio document says we should not use unnamed bindings for gpios. This patch uses the 'led-' prefix to the gpios and updates code and documents. Because the devm_get_gpiod_from_child() falls back to using old-style unnamed gpios, we can update the code first, and update

[PATCH v2 3/4] leds: Let the binding document example for leds-gpio follow the gpio bindings

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl In the gpio bindings documents it is requested to use the marco's in include/dt-bindings/gpio/gpio.h whenever possible. The gpios in the led drivers don't seem to form an exception, so update the example in the document bindings. Signed-off-by: Olliver Schinagl Acked

[PATCH v2 2/4] gpio: add parameter to allow the use named gpios

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl The gpio binding document says that new code should always use named gpios. Patch 40b73183 added support to parse a list of gpios from child nodes, but does not make it possible to use named gpios. This patch adds the con_id property and implements it is done in gpiolib.c

[PATCH v2 1/4] gpio: use sizeof() instead of hardcoded values

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl gpiolib uses a fixed string for the suffixes and defines it at 32 bytes. Later in the code snprintf is used with this fixed value of 32. Using sizeof() is safer in case the size for the suffixes is ever changed. Signed-off-by: Olliver Schinagl --- drivers/gpio/gpiolib.c

[PATCH v2 0/4] Let leds use named gpios

2015-01-21 Thread Olliver Schinagl
and if that fails, fall back to standard gpios for the users of devm_get_gpiod_from_child. Olliver Schinagl (4): gpio: use sizeof() instead of hardcoded values gpio: add parameter to allow the use named gpios leds: Let the binding document example for leds-gpio follow the gpio bindings

[PATCH] gpio: correctly use const char * const

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl On my previous patch I was overly hasty and made the suffixes string array const char const *suffixes, instaed of const char * const suffixes. This patch corrects that Signed-off-by: Olliver Schinagl --- drivers/gpio/gpiolib.c | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH] gpio: correctly use const char * const

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl On my previous patch I was overly hasty and made the suffixes string array const char const *suffixes, instaed of const char * const suffixes. This patch corrects that Signed-off-by: Olliver Schinagl oli...@schinagl.nl --- drivers/gpio/gpiolib.c | 2

[PATCH v2 1/4] gpio: use sizeof() instead of hardcoded values

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl gpiolib uses a fixed string for the suffixes and defines it at 32 bytes. Later in the code snprintf is used with this fixed value of 32. Using sizeof() is safer in case the size for the suffixes is ever changed. Signed-off-by: Olliver Schinagl oli

[PATCH v2 0/4] Let leds use named gpios

2015-01-21 Thread Olliver Schinagl
and if that fails, fall back to standard gpios for the users of devm_get_gpiod_from_child. Olliver Schinagl (4): gpio: use sizeof() instead of hardcoded values gpio: add parameter to allow the use named gpios leds: Let the binding document example for leds-gpio follow the gpio bindings

Re: [PATCH v1 2/4] gpio: add parameter to allow the use named gpios

2015-01-21 Thread Olliver Schinagl
Hey Alexandre, On 01/19/2015 05:04 AM, Alexandre Courbot wrote: On Wed, Jan 7, 2015 at 6:08 PM, Olliver Schinagl oliver+l...@schinagl.nl wrote: From: Olliver Schinagl oli...@schinagl.nl The gpio binding document says that new code should always use named gpios. Patch 40b73183 added support

[PATCH v2 4/4] leds: no longer use unnamed gpios

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl The gpio document says we should not use unnamed bindings for gpios. This patch uses the 'led-' prefix to the gpios and updates code and documents. Because the devm_get_gpiod_from_child() falls back to using old-style unnamed gpios, we can update the code

[PATCH v2 2/4] gpio: add parameter to allow the use named gpios

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl The gpio binding document says that new code should always use named gpios. Patch 40b73183 added support to parse a list of gpios from child nodes, but does not make it possible to use named gpios. This patch adds the con_id property and implements

[PATCH v2 3/4] leds: Let the binding document example for leds-gpio follow the gpio bindings

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl In the gpio bindings documents it is requested to use the marco's in include/dt-bindings/gpio/gpio.h whenever possible. The gpios in the led drivers don't seem to form an exception, so update the example in the document bindings. Signed-off-by: Olliver

[PATCH] hrtimer: add hrtimer_start_now()

2015-01-21 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl When using a hrtimer for repeating periodic ticks, hrtimer_forward_now() is often used. Quite possibly the timer loop is thus probably fully controlled by hrtimer_forward_now() and we don't really care when the timer is started. With hrtimer_start() we

Re: [PATCHv10 1/2] pwm: Add Allwinner SoC support

2015-01-19 Thread Olliver Schinagl
Hey Alexandre, I'll pull your v10 and start testing that hopefully this week. I've been using an older version, v8 I think, without any trouble so far. On 19-01-15 10:21, Chen-Yu Tsai wrote: On Thu, Dec 18, 2014 at 5:15 AM, Alexandre Belloni wrote: This adds a generic PWM framework driver

Re: [PATCHv10 1/2] pwm: Add Allwinner SoC support

2015-01-19 Thread Olliver Schinagl
Hey Alexandre, I'll pull your v10 and start testing that hopefully this week. I've been using an older version, v8 I think, without any trouble so far. On 19-01-15 10:21, Chen-Yu Tsai wrote: On Thu, Dec 18, 2014 at 5:15 AM, Alexandre Belloni alexandre.bell...@free-electrons.com wrote: This

Re: [PATCH v1 4/4] leds: no longer use unnamed gpios

2015-01-14 Thread Olliver Schinagl
On 14-01-15 13:45, Linus Walleij wrote: On Thu, Jan 8, 2015 at 11:12 PM, Dmitry Torokhov wrote: On Thu, Jan 08, 2015 at 08:40:20AM -0600, Rob Herring wrote: On Thu, Jan 8, 2015 at 2:45 AM, Olliver Schinagl wrote: --- a/drivers/leds/leds-gpio.c +++ b/drivers/leds/leds-gpio.c @@ -184,7

Re: [PATCH v1 4/4] leds: no longer use unnamed gpios

2015-01-14 Thread Olliver Schinagl
On 14-01-15 13:45, Linus Walleij wrote: On Thu, Jan 8, 2015 at 11:12 PM, Dmitry Torokhov dmitry.torok...@gmail.com wrote: On Thu, Jan 08, 2015 at 08:40:20AM -0600, Rob Herring wrote: On Thu, Jan 8, 2015 at 2:45 AM, Olliver Schinagl oli...@schinagl.nl wrote: --- a/drivers/leds/leds-gpio.c

Re: [PATCH v1 4/4] leds: no longer use unnamed gpios

2015-01-08 Thread Olliver Schinagl
Hey Dmitry, On 08-01-15 00:55, Dmitry Torokhov wrote: On Wed, Jan 07, 2015 at 10:08:42AM +0100, Olliver Schinagl wrote: From: Olliver Schinagl The gpio document says we should not use unnamed bindings for gpios. This patch uses the 'led-' prefix to the gpios and updates code and documents

Re: [PATCH v1 4/4] leds: no longer use unnamed gpios

2015-01-08 Thread Olliver Schinagl
Hey Dmitry, On 08-01-15 00:55, Dmitry Torokhov wrote: On Wed, Jan 07, 2015 at 10:08:42AM +0100, Olliver Schinagl wrote: From: Olliver Schinagl oli...@schinagl.nl The gpio document says we should not use unnamed bindings for gpios. This patch uses the 'led-' prefix to the gpios and updates

Re: [PATCH v1] input: make use of the input_set_capability helper

2015-01-07 Thread Olliver Schinagl
HEy Dmitry, On 07-01-15 09:26, Dmitry Torokhov wrote: On Wed, Jan 07, 2015 at 09:19:28AM +0100, Olliver Schinagl wrote: Hey Dmitry, On 07-01-15 08:57, Dmitry Torokhov wrote: Hi Olliver, On Wed, Jan 07, 2015 at 08:31:06AM +0100, Olliver Schinagl wrote: From: Olliver Schinagl Almost all

Re: [PATCH v1] ARM:sunxi:sid: Make use of the of_match_ptr

2015-01-07 Thread Olliver Schinagl
Hey Arnd, On 07-01-15 10:00, Arnd Bergmann wrote: On Wednesday 07 January 2015 08:41:08 Olliver Schinagl wrote: From: Olliver Schinagl I probably have forgotten to use this macro for the of_match pointer, so this patch adds the of_match_ptr macro. Signed-off-by: Olliver Schinagl

[PATCH v1 1/4] gpio:gpiolib: use static const char const * for a suffixes array

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl Checkpatch complains, and probably with good reason that we should use const char const * for the static constant array that never gets changed. Signed-off-by: Olliver Schinagl --- drivers/gpio/gpiolib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH v1 2/4] gpio: add parameter to allow the use named gpios

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl The gpio binding document says that new code should always use named gpios. Patch 40b73183 added support to parse a list of gpios from child nodes, but does not make it possible to use named gpios. This patch adds the con_id property and implements it is done in gpiolib.c

[PATCH v1 4/4] leds: no longer use unnamed gpios

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl The gpio document says we should not use unnamed bindings for gpios. This patch uses the 'led-' prefix to the gpios and updates code and documents. Because the devm_get_gpiod_from_child() falls back to using old-style unnamed gpios, we can update the code first, and update

[PATCH v1 0/4] Let leds use named gpios

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl The gpio binding docs ask to use named-gpios wherever possible, however 40b73183 probably forgot that. This patch makes the new devm_get_gpiod_from_child use named gpios. Olliver Schinagl (4): gpio:gpiolib: use static const char const * for a suffixes array gpio

[PATCH v1 3/4] leds: Let the binding document example for leds-gpio follow the gpio bindings

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl In the gpio bindings documents it is requested to use the marco's in include/dt-bindings/gpio/gpio.h whenever possible. The gpios in the led drivers don't seem to form an exception, so update the example in the document bindings. Signed-off-by: Olliver Schinagl

[PATCH v1] gpio: Make the vararg hacks not pass magic values

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl Right now, in consumer.h, there's some vararg hacks that pass 0 as the flags. What actually is passed however is GPIOD_ASIS, which naturally is also 0. Using the define/enum rather then the magic 0 makes it the define more readable to a passer by. Signed-off-by: Olliver

Re: [PATCH v1] input: make use of the input_set_capability helper

2015-01-07 Thread Olliver Schinagl
Hey Dmitry, On 07-01-15 08:57, Dmitry Torokhov wrote: Hi Olliver, On Wed, Jan 07, 2015 at 08:31:06AM +0100, Olliver Schinagl wrote: From: Olliver Schinagl Almost all of the speaker drivers under input manipulate the ev bits directly, which is not needed, as there is a helper available

Re: [PATCH v1] input: make use of the input_set_capability helper

2015-01-07 Thread Olliver Schinagl
HEy Dmitry, On 07-01-15 09:26, Dmitry Torokhov wrote: On Wed, Jan 07, 2015 at 09:19:28AM +0100, Olliver Schinagl wrote: Hey Dmitry, On 07-01-15 08:57, Dmitry Torokhov wrote: Hi Olliver, On Wed, Jan 07, 2015 at 08:31:06AM +0100, Olliver Schinagl wrote: From: Olliver Schinagl oli

[PATCH v1 2/4] gpio: add parameter to allow the use named gpios

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl The gpio binding document says that new code should always use named gpios. Patch 40b73183 added support to parse a list of gpios from child nodes, but does not make it possible to use named gpios. This patch adds the con_id property and implements

[PATCH v1 4/4] leds: no longer use unnamed gpios

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl The gpio document says we should not use unnamed bindings for gpios. This patch uses the 'led-' prefix to the gpios and updates code and documents. Because the devm_get_gpiod_from_child() falls back to using old-style unnamed gpios, we can update the code

[PATCH v1 3/4] leds: Let the binding document example for leds-gpio follow the gpio bindings

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl In the gpio bindings documents it is requested to use the marco's in include/dt-bindings/gpio/gpio.h whenever possible. The gpios in the led drivers don't seem to form an exception, so update the example in the document bindings. Signed-off-by: Olliver

[PATCH v1 0/4] Let leds use named gpios

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl o.schin...@ultimaker.com The gpio binding docs ask to use named-gpios wherever possible, however 40b73183 probably forgot that. This patch makes the new devm_get_gpiod_from_child use named gpios. Olliver Schinagl (4): gpio:gpiolib: use static const char const

[PATCH v1 1/4] gpio:gpiolib: use static const char const * for a suffixes array

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl Checkpatch complains, and probably with good reason that we should use const char const * for the static constant array that never gets changed. Signed-off-by: Olliver Schinagl oli...@schinagl.nl --- drivers/gpio/gpiolib.c | 2 +- 1 file changed, 1

Re: [PATCH v1] ARM:sunxi:sid: Make use of the of_match_ptr

2015-01-07 Thread Olliver Schinagl
Hey Arnd, On 07-01-15 10:00, Arnd Bergmann wrote: On Wednesday 07 January 2015 08:41:08 Olliver Schinagl wrote: From: Olliver Schinagl oli...@schinagl.nl I probably have forgotten to use this macro for the of_match pointer, so this patch adds the of_match_ptr macro. Signed-off-by: Olliver

[PATCH v1] gpio: Make the vararg hacks not pass magic values

2015-01-07 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl Right now, in consumer.h, there's some vararg hacks that pass 0 as the flags. What actually is passed however is GPIOD_ASIS, which naturally is also 0. Using the define/enum rather then the magic 0 makes it the define more readable to a passer by. Signed

Re: [PATCH v1] input: make use of the input_set_capability helper

2015-01-07 Thread Olliver Schinagl
Hey Dmitry, On 07-01-15 08:57, Dmitry Torokhov wrote: Hi Olliver, On Wed, Jan 07, 2015 at 08:31:06AM +0100, Olliver Schinagl wrote: From: Olliver Schinagl oli...@schinagl.nl Almost all of the speaker drivers under input manipulate the ev bits directly, which is not needed

[PATCH v1] ARM:sunxi:sid: Make use of the of_match_ptr

2015-01-06 Thread Olliver Schinagl
From: Olliver Schinagl I probably have forgotten to use this macro for the of_match pointer, so this patch adds the of_match_ptr macro. Signed-off-by: Olliver Schinagl --- drivers/misc/eeprom/sunxi_sid.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/misc/eeprom

[PATCH v1] input: make use of the input_set_capability helper

2015-01-06 Thread Olliver Schinagl
From: Olliver Schinagl Almost all of the speaker drivers under input manipulate the ev bits directly, which is not needed, as there is a helper available. This patch makes use of the helper for the speaker drivers. Signed-off-by: Olliver Schinagl --- drivers/input/misc/cm109.c | 4

[PATCH v1] input: make use of the input_set_capability helper

2015-01-06 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl Almost all of the speaker drivers under input manipulate the ev bits directly, which is not needed, as there is a helper available. This patch makes use of the helper for the speaker drivers. Signed-off-by: Olliver Schinagl oli...@schinagl.nl

[PATCH v1] ARM:sunxi:sid: Make use of the of_match_ptr

2015-01-06 Thread Olliver Schinagl
From: Olliver Schinagl oli...@schinagl.nl I probably have forgotten to use this macro for the of_match pointer, so this patch adds the of_match_ptr macro. Signed-off-by: Olliver Schinagl oli...@schinagl.nl --- drivers/misc/eeprom/sunxi_sid.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion

Re: [PATCHv9 0/2] Add Allwinner SoCs PWM support

2014-12-19 Thread Olliver Schinagl
Hey Alexandre! On 17-12-14 20:58, Alexandre Belloni wrote: Hi, I finally got some time to work on that again. awesome :D On 18/11/2014 at 14:47:33 +0100, Olliver Schinagl wrote : What I get from the datasheet is, that sun4i and sun5i are exactly the same, with the exception that sun5i only

Re: [PATCHv9 0/2] Add Allwinner SoCs PWM support

2014-12-19 Thread Olliver Schinagl
Hey Alexandre! On 17-12-14 20:58, Alexandre Belloni wrote: Hi, I finally got some time to work on that again. awesome :D On 18/11/2014 at 14:47:33 +0100, Olliver Schinagl wrote : What I get from the datasheet is, that sun4i and sun5i are exactly the same, with the exception that sun5i only

Re: [PATCHv9 0/2] Add Allwinner SoCs PWM support

2014-11-18 Thread Olliver Schinagl
On 18-11-14 15:55, Maxime Ripard wrote: On Tue, Nov 18, 2014 at 03:11:26PM +0100, Olliver Schinagl wrote: On 18-11-14 14:54, Maxime Ripard wrote: On Tue, Nov 18, 2014 at 02:47:33PM +0100, Olliver Schinagl wrote: Hey Alexandre, On 05-11-14 16:15, Alexandre Belloni wrote: Hi, This patch

Re: [PATCHv9 0/2] Add Allwinner SoCs PWM support

2014-11-18 Thread Olliver Schinagl
On 18-11-14 14:54, Maxime Ripard wrote: On Tue, Nov 18, 2014 at 02:47:33PM +0100, Olliver Schinagl wrote: Hey Alexandre, On 05-11-14 16:15, Alexandre Belloni wrote: Hi, This patch series adds support for the PWM controller found on the Allwinner SoCs. The first patch adds the driver itself

Re: [PATCHv9 0/2] Add Allwinner SoCs PWM support

2014-11-18 Thread Olliver Schinagl
Hey Alexandre, On 05-11-14 16:15, Alexandre Belloni wrote: Hi, This patch series adds support for the PWM controller found on the Allwinner SoCs. The first patch adds the driver itself. The second patch adds the DT binding documentation Changes in v8: - renamed the driver sun4i as the PWM

Re: [PATCHv9 0/2] Add Allwinner SoCs PWM support

2014-11-18 Thread Olliver Schinagl
On 18-11-14 15:55, Maxime Ripard wrote: On Tue, Nov 18, 2014 at 03:11:26PM +0100, Olliver Schinagl wrote: On 18-11-14 14:54, Maxime Ripard wrote: On Tue, Nov 18, 2014 at 02:47:33PM +0100, Olliver Schinagl wrote: Hey Alexandre, On 05-11-14 16:15, Alexandre Belloni wrote: Hi, This patch

Re: [PATCHv9 0/2] Add Allwinner SoCs PWM support

2014-11-18 Thread Olliver Schinagl
Hey Alexandre, On 05-11-14 16:15, Alexandre Belloni wrote: Hi, This patch series adds support for the PWM controller found on the Allwinner SoCs. The first patch adds the driver itself. The second patch adds the DT binding documentation Changes in v8: - renamed the driver sun4i as the PWM

Re: [PATCHv9 0/2] Add Allwinner SoCs PWM support

2014-11-18 Thread Olliver Schinagl
On 18-11-14 14:54, Maxime Ripard wrote: On Tue, Nov 18, 2014 at 02:47:33PM +0100, Olliver Schinagl wrote: Hey Alexandre, On 05-11-14 16:15, Alexandre Belloni wrote: Hi, This patch series adds support for the PWM controller found on the Allwinner SoCs. The first patch adds the driver itself

Re: [PATCH 2/3] ARM: sunxi: Add an ahci-platform compatible AHCI driver for the Allwinner SUNXi series of SoCs

2013-12-12 Thread Olliver Schinagl
On 12-12-13 07:40, Shawn Guo wrote: On Wed, Dec 11, 2013 at 03:51:51PM +0100, Olliver Schinagl wrote: Working on this and studying the existing ahci_platform/shci_platform drivers the last few days and was figuring out why ahci_platform only supports 1 clock. IMX handles this by having 3

Re: [PATCH 2/3] ARM: sunxi: Add an ahci-platform compatible AHCI driver for the Allwinner SUNXi series of SoCs

2013-12-12 Thread Olliver Schinagl
On 12-12-13 07:40, Shawn Guo wrote: On Wed, Dec 11, 2013 at 03:51:51PM +0100, Olliver Schinagl wrote: Working on this and studying the existing ahci_platform/shci_platform drivers the last few days and was figuring out why ahci_platform only supports 1 clock. IMX handles this by having 3

Re: [PATCH 2/3] ARM: sunxi: Add an ahci-platform compatible AHCI driver for the Allwinner SUNXi series of SoCs

2013-12-11 Thread Olliver Schinagl
Hey all, On 04-12-13 14:23, Tejun Heo wrote: Hello, (cc'ing Richard and Shawn, hi!) On Wed, Dec 04, 2013 at 02:16:49PM +0100, Olliver Schinagl wrote: On 04-12-13 14:14, Tejun Heo wrote: Hello, On Wed, Dec 04, 2013 at 01:56:23PM +0100, Oliver Schinagl wrote: I took the imx driver

Re: [PATCH 2/3] ARM: sunxi: Add an ahci-platform compatible AHCI driver for the Allwinner SUNXi series of SoCs

2013-12-11 Thread Olliver Schinagl
Hey all, On 04-12-13 14:23, Tejun Heo wrote: Hello, (cc'ing Richard and Shawn, hi!) On Wed, Dec 04, 2013 at 02:16:49PM +0100, Olliver Schinagl wrote: On 04-12-13 14:14, Tejun Heo wrote: Hello, On Wed, Dec 04, 2013 at 01:56:23PM +0100, Oliver Schinagl wrote: I took the imx driver

Re: [PATCH 3/3] ARM: sunxi: dts: Add ahci support to a few A10 and A20 boards

2013-12-07 Thread Olliver Schinagl
and support for this is also added. Signed-off-by: Olliver Schinagl Your git setup seems to be pretty uncertain about how your first name is spelled :) I should have formally mention it to confuse less people, This is how officially my name is spelled (I left out any 'middle' letters. I never

Re: [PATCH 3/3] ARM: sunxi: dts: Add ahci support to a few A10 and A20 boards

2013-12-07 Thread Olliver Schinagl
via a GPIO and support for this is also added. Signed-off-by: Olliver Schinagl oli...@schinagl.nl Your git setup seems to be pretty uncertain about how your first name is spelled :) I should have formally mention it to confuse less people, This is how officially my name is spelled (I left out

Re: [PATCH 2/3] ARM: sunxi: Add an ahci-platform compatible AHCI driver for the Allwinner SUNXi series of SoCs

2013-12-04 Thread Olliver Schinagl
On 04-12-13 14:14, Tejun Heo wrote: Hello, On Wed, Dec 04, 2013 at 01:56:23PM +0100, Oliver Schinagl wrote: I took the imx driver as example, as I wasn't sure on where to start. But I don't think it's possible yet without improving ahci_platform as I suggested in the cover letter. So if

Re: [PATCH 0/3] AHCI: sunxi: Add sunxi AHCI driver

2013-12-04 Thread Olliver Schinagl
And I've spotted my first mistake (one of many I'm sure) I typo'ed Rob's e-mail address. Sorry Rob. Oliver On 04-12-13 13:10, oli...@schinagl.nl wrote: From: Olliver Schinagl This patch series adds Allwinner sunxi support to platform_ahci. There are a few quirks here however that will need

Re: [PATCH 0/3] AHCI: sunxi: Add sunxi AHCI driver

2013-12-04 Thread Olliver Schinagl
And I've spotted my first mistake (one of many I'm sure) I typo'ed Rob's e-mail address. Sorry Rob. Oliver On 04-12-13 13:10, oli...@schinagl.nl wrote: From: Olliver Schinagl oli...@schinagl.nl This patch series adds Allwinner sunxi support to platform_ahci. There are a few quirks here

Re: [PATCH 2/3] ARM: sunxi: Add an ahci-platform compatible AHCI driver for the Allwinner SUNXi series of SoCs

2013-12-04 Thread Olliver Schinagl
On 04-12-13 14:14, Tejun Heo wrote: Hello, On Wed, Dec 04, 2013 at 01:56:23PM +0100, Oliver Schinagl wrote: I took the imx driver as example, as I wasn't sure on where to start. But I don't think it's possible yet without improving ahci_platform as I suggested in the cover letter. So if

<    1   2   3   4