[RFC] net: stmmac: keep RXC running in LPI mode to avoid system overload

2013-10-08 Thread Romain Baeriswyl
In order to avoid system overload, the clock RXC from the Phy should not be stopped when in LPI mode. With the RTL8211E PHY which support EEE mode and with Apple Airport Extreme that supports it also, the kernel get frozen as soon as some Ethernet transfers are on-going. System seems to be ove

[PATCH 1/2] i2c designware make SCL and SDA falling time configurable

2013-10-08 Thread Romain Baeriswyl
increased by increasing the SCL falling time which is by default set at 300ns. The same applies for tHIGH period with the help of SDA falling time. Signed-off-by: Romain Baeriswyl Reviewed-by: Christian Ruppert --- .../devicetree/bindings/i2c/i2c-designware.txt |8 + drivers/i2c/busses

[PATCH 2/2] i2c designware add support of I2C standard mode

2013-10-08 Thread Romain Baeriswyl
standard mode is selected. Signed-off-by: Romain Baeriswyl Reviewed-by: Christian Ruppert --- .../devicetree/bindings/i2c/i2c-designware.txt |1 + drivers/i2c/busses/i2c-designware-platdrv.c| 17 +++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a

Re: [PATCH] i2c: designware: Fix falling time bindings doc

2014-12-08 Thread Romain Baeriswyl
Acked-by: Romain Baeriswyl On 2014-12-05 19:49, Doug Anderson wrote: In (6468276 i2c: designware: make SCL and SDA falling time configurable) new device tree properties were added for setting the falling time of SDA and SCL. The device tree bindings doc had a typo in it: it forgot the &quo

Re: [PATCH] added device tree support to gpio-generic driver

2015-06-24 Thread Romain Baeriswyl
>> --- > > Your patch is missing a detailed commit message. > >> .../devicetree/bindings/gpio/gpio-generic.txt | 19 + >> drivers/gpio/gpio-generic.c| 81 >> ++- >> 2 files changed, 78 insertions(+), 22 deletions(-) >> create mode 100644 Doc

[PATCH V3] added device tree support to gpio-generic driver

2015-06-24 Thread Romain Baeriswyl
This patch adds support of device tree to the gpio-generic driver. Signed-off-by: Romain Baeriswyl --- .../devicetree/bindings/gpio/gpio-generic.txt | 62 drivers/gpio/gpio-generic.c| 60 ++- include/linux/basic_mmio_gpio.h

[PATCH] added device tree support to gpio-generic driver

2015-06-05 Thread Romain Baeriswyl
--- .../devicetree/bindings/gpio/gpio-generic.txt | 19 + drivers/gpio/gpio-generic.c| 81 ++- 2 files changed, 78 insertions(+), 22 deletions(-) create mode 100644 Documentation/devicetree/bindings/gpio/gpio-generic.txt diff --git a/Documenta

Re: [PATCH] added device tree support to gpio-generic driver

2015-06-07 Thread Romain Baeriswyl
On 2015-06-08 06:19, Alexandre Courbot wrote: > On Fri, Jun 5, 2015 at 3:51 PM, Romain Baeriswyl > wrote: >> --- > > Your patch is missing a detailed commit message. > >> .../devicetree/bindings/gpio/gpio-generic.txt | 19 + >

[PATCH V2] added device tree support to gpio-generic driver

2015-06-11 Thread Romain Baeriswyl
This patch adds support of device tree to the gpio-generic driver. Signed-off-by: Romain Baeriswyl --- .../devicetree/bindings/gpio/gpio-generic.txt | 17 + drivers/gpio/gpio-generic.c| 72 +++ include/linux/basic_mmio_gpio.h

Re: [RFC] net: stmmac: keep RXC running in LPI mode to avoid system overload

2013-10-13 Thread Romain Baeriswyl
Hello Guiseppe, Thanks for your answer. Please find below some details and answers. > > In order to avoid system overload, the clock RXC from the Phy > > should not be > > stopped when in LPI mode. > > > > With the RTL8211E PHY which support EEE mode and with Apple Airport > > Extreme that > > su

[PATCH v2 1/2] i2c designware make SCL and SDA falling time configurable

2014-01-20 Thread Romain Baeriswyl
by increasing the SCL falling time which is by default set at 300ns. The same applies for tHIGH period with the help of SDA falling time. Signed-off-by: Romain Baeriswyl Reviewed-by: Christian Ruppert --- .../devicetree/bindings/i2c/i2c-designware.txt |8 ++ drivers/i2c/busses/i2c

[PATCH v2 2/2] i2c designware add support of I2C standard mode

2014-01-20 Thread Romain Baeriswyl
standard mode is selected. Signed-off-by: Romain Baeriswyl Reviewed-by: Christian Ruppert --- drivers/i2c/busses/i2c-designware-platdrv.c | 21 +++-- 1 files changed, 19 insertions(+), 2 deletions(-) diff --git a/drivers/i2c/busses/i2c-designware-platdrv.c b/drivers/i2c/busses

[PATCH V3 2/2] i2c designware add support of I2C standard mode

2014-03-25 Thread Romain Baeriswyl
From: Romain Baeriswyl Some legacy devices support ony I2C standard mode at 100kHz. This patch allows to select the standard mode through the DTS with the use of the existing clock-frequency parameter. When clock-frequency parameter is not set, the fast mode is selected. Only when the parameter

Re: [PATCH] i2c: designware: deduce speed mode from device tree setting

2014-08-20 Thread Romain Baeriswyl
in - Original Message - From: "Mark Rutland" To: at...@opensource.altera.com Cc: w...@the-dreams.de, bar...@tkos.co.il, "mika westerberg" , "grant likely" , robh...@kernel.org, skuri...@pobox.com, "Romain Baeriswyl" , "rafael j wysocki" , a

Re: [PATCH] i2c: designware: deduce speed mode from device tree setting

2014-08-20 Thread Romain Baeriswyl
? Romain - Original Message - From: "Romain Baeriswyl" To: "Mark Rutland" , at...@opensource.altera.com Cc: w...@the-dreams.de, bar...@tkos.co.il, "mika westerberg" , "grant likely" , robh...@kernel.org, skuri...@pobox.com, "raf

[PATCH] i2c designware add support of I2C standard mode

2014-08-20 Thread Romain Baeriswyl
From: Romain Baeriswyl Some legacy devices support ony I2C standard mode at 100kHz. This patch allows to select the standard mode through the DTS with the use of the existing clock-frequency parameter. When clock-frequency parameter is not set, the fast mode is selected. Only when the parameter

Re: [PATCH] i2c: designware: deduce speed mode from device tree setting

2014-08-20 Thread Romain Baeriswyl
atull" To: "Romain Baeriswyl" Cc: "Mark Rutland" , w...@the-dreams.de, bar...@tkos.co.il, "mika westerberg" , "grant likely" , robh...@kernel.org, skuri...@pobox.com, "rafael j wysocki" , a...@linux.intel.com, linux-...@vger.kernel.or