[linux-sunxi] Re: [PATCH v3 3/8] phy: sunxi: Rework phy initialization

2014-05-12 Thread Hans de Goede
Hi, On 05/12/2014 09:34 PM, Maxime Ripard wrote: > Move the phy initialization and variables declaration to the loop itself, > since > it is where it really belongs. Also remove all the temporary variables, we can > use the structure members directly. > > Signed-off-by: Maxime Ripard > --- > d

Re: [linux-sunxi] [PATCH sunxi-boards] Update cubieboard2/cubietruck dcdc2/dcdc3 voltages and dvfs data

2014-05-12 Thread Michael Fritscher
Just an idea: Can the convince the most popular distros to add an automatic stability test which sends the data to a server? It could be advertised by e.g. the mod banner. I think thatn then we could become enough data to set this right. What a pitty that AllWinner can't provide us with safe number

[linux-sunxi] TCP connection hangs with sunxi-3.4.75 at 1Gbit/s

2014-05-12 Thread Stefan Monnier
I'm experiencing hangs in TCP connections on a cubietruck running the 3.4.75 kernel (IOW the "Fedora 20" kernel). Something like "ssh machine du /home" (with a large enough /home, e.g. containing the Linux source) rarely finishes without freezing. The freeze is only for a single TCP connection:

[linux-sunxi] Re: [PATCH v3 1/8] clk: sunxi: Implement A31 USB clock

2014-05-12 Thread Mike Turquette
Quoting Maxime Ripard (2014-05-12 12:34:27) > The A31 USB clock slightly differ from its older counterparts, mostly because > it has a different gate for each PHY, while the older one had a single gate > for > all the phy. > > Signed-off-by: Maxime Ripard > Reviewed-by: Hans de Goede Acked-by:

[linux-sunxi] Re: [PATCH v6 3/8] ARM: sunxi: Move the clock protection to machine hooks

2014-05-12 Thread Mike Turquette
Quoting Arnd Bergmann (2014-04-23 06:31:06) > On Wednesday 23 April 2014 15:17:20 Maxime Ripard wrote: > > > > +#include > > > > #include > > > > #include > > > > > > > > @@ -19,9 +20,17 @@ > > > > > > > > static void __init sun4i_dt_init(void) > > > > { > > > > + struct clk *clk;

Re: [linux-sunxi] [PATCH 0/6] sunxi: clk: Various cleanup and rework

2014-05-12 Thread Mike Turquette
Quoting Emilio López (2014-05-10 10:22:15) > Hi Maxime, > > El 10/05/14 00:33, Maxime Ripard escribió: > > Hi everyone, > > > > This patchset fixes a few things that have been pending for quite a > > while in the clock driver. > > > > First, it removes the clk_put calls in the clock protection > >

Re: [linux-sunxi] [PATCH sunxi-boards] Update cubieboard2/cubietruck dcdc2/dcdc3 voltages and dvfs data

2014-05-12 Thread Siarhei Siamashka
On Sun, 11 May 2014 22:58:31 +0200 Hans de Goede wrote: > Hi, > > On 05/11/2014 10:43 PM, Hans de Goede wrote: > > Hi, > > > > On 05/11/2014 11:53 AM, Siarhei Siamashka wrote: > >> It has been confirmed that a substantial percentage of cubieboard2 > >> and cubietruck users are having stability

Re: [linux-sunxi] [PATCH u-boot] Add iNet technologies 86VS tablet.

2014-05-12 Thread riccardo . artoni
Hello, I recently bought a second hand Inet 86vs, selled in France as a Lenco CoolTab 70. I tried to compile u-boot arriving at the same settings as Michal but it didn't work. However, good news, an image for the A13-Olinuxino worked for me; we have an a13-olinuxino in our lab so I tried... t

Re: [linux-sunxi] [PATCH 3/6] clk: sunxi: Move the GMAC clock to a file of its own

2014-05-12 Thread Maxime Ripard
On Mon, May 12, 2014 at 04:45:08PM -0300, Emilio López wrote: > >>>+ clk = clk_register_composite(NULL, clk_name, > >>>+ parents, SUN7I_A20_GMAC_PARENTS, > >>>+ &mux->hw, &clk_mux_ops, > >>>+ NULL, NULL, > >>>+ &gate->hw, &clk_gat

[linux-sunxi] Re: [PATCH v3 5/8] usb: ehci-platform: add optional reset controller retrieval

2014-05-12 Thread Alan Stern
On Mon, 12 May 2014, Maxime Ripard wrote: > From: Boris BREZILLON > > On the Allwinner's A31 SoC the reset line connected to the EHCI IP has to > be deasserted for the EHCI block to be usable. > > Add support for an optional reset controller that will be deasserted on > power off and asserted o

Re: [linux-sunxi] [PATCH 3/6] clk: sunxi: Move the GMAC clock to a file of its own

2014-05-12 Thread Emilio López
Hi, El 12/05/14 16:36, Maxime Ripard escribió: On Sat, May 10, 2014 at 02:07:07PM -0300, Emilio López wrote: + + clk = clk_register_composite(NULL, clk_name, + parents, SUN7I_A20_GMAC_PARENTS, + &mux->hw, &clk_mux_ops, + NU

Re: [linux-sunxi] [PATCH 3/6] clk: sunxi: Move the GMAC clock to a file of its own

2014-05-12 Thread Maxime Ripard
On Sat, May 10, 2014 at 02:07:07PM -0300, Emilio López wrote: > >+ > >+clk = clk_register_composite(NULL, clk_name, > >+parents, SUN7I_A20_GMAC_PARENTS, > >+&mux->hw, &clk_mux_ops, > >+NULL, NULL, > >+&gate->hw, &cl

[linux-sunxi] [PATCH v3 5/8] usb: ehci-platform: add optional reset controller retrieval

2014-05-12 Thread Maxime Ripard
From: Boris BREZILLON On the Allwinner's A31 SoC the reset line connected to the EHCI IP has to be deasserted for the EHCI block to be usable. Add support for an optional reset controller that will be deasserted on power off and asserted on power on. Signed-off-by: Boris BREZILLON Signed-off-b

[linux-sunxi] [PATCH v3 7/8] ARM: sun6i: dt: Add support for the USB controllers

2014-05-12 Thread Maxime Ripard
The A31 has two ECHI/OHCI controllers, and one OHCI-only phy-less controller. Signed-off-by: Maxime Ripard Reviewed-by: Hans de Goede --- arch/arm/boot/dts/sun6i-a31.dtsi | 77 1 file changed, 77 insertions(+) diff --git a/arch/arm/boot/dts/sun6i-a31.dt

[linux-sunxi] [PATCH v3 4/8] phy: usb: sunxi: Introduce Allwinner A31 USB PHY support

2014-05-12 Thread Maxime Ripard
The USB phy controller in the A31 differs mostly from the older controllers because it has a clock dedicated for each phy, while the older ones were having a single clock for all the phys. Signed-off-by: Maxime Ripard Reviewed-by: Hans de Goede --- drivers/phy/phy-sun4i-usb.c | 33 +

[linux-sunxi] [PATCH v3 0/8] Add Allwinner A31 USB support

2014-05-12 Thread Maxime Ripard
Hi everyone, This patchset adds support for the USB controllers found in the Allwinner A31. While the design is similar to the earlier Allwinner SoCs that are already supported, a few details here and there change, like the fact that the PHYs now have one clock per phy, while it used to be only o

[linux-sunxi] [PATCH v3 8/8] ARM: sunxi: dt: add APP4-EVB1 board support

2014-05-12 Thread Maxime Ripard
From: Boris BREZILLON The APP4 EVB1 development boards embeds an A31, together with some NAND, one SD card slot, and one SDIO + UART WiFi and Bluetooth chip, a few I2C buses, USB, and a LCD display. Signed-off-by: Boris BREZILLON Signed-off-by: Maxime Ripard Reviewed-by: Hans de Goede --- ar

[linux-sunxi] [PATCH v3 2/8] ARM: sun6i: Add the USB clocks to the DTSI.

2014-05-12 Thread Maxime Ripard
The USB clocks of the A31 seems to be parented to the 24MHz oscillator, and handle the clocks for the USB phys and OHCI devices. Signed-off-by: Maxime Ripard Reviewed-by: Hans de Goede --- arch/arm/boot/dts/sun6i-a31.dtsi | 11 +++ 1 file changed, 11 insertions(+) diff --git a/arch/arm

[linux-sunxi] [PATCH v3 3/8] phy: sunxi: Rework phy initialization

2014-05-12 Thread Maxime Ripard
Move the phy initialization and variables declaration to the loop itself, since it is where it really belongs. Also remove all the temporary variables, we can use the structure members directly. Signed-off-by: Maxime Ripard --- drivers/phy/phy-sun4i-usb.c | 44 ---

[linux-sunxi] [PATCH v3 6/8] usb: ohci-platform: Enable optional use of reset controller

2014-05-12 Thread Maxime Ripard
The OHCI controllers used in the Allwinner A31 are asserted in reset using a global reset controller. Add optional support for such a controller in the OHCI platform driver. Signed-off-by: Maxime Ripard Reviewed-by: Hans de Goede --- Documentation/devicetree/bindings/usb/usb-ohci.txt | 1 + d

[linux-sunxi] [PATCH v3 1/8] clk: sunxi: Implement A31 USB clock

2014-05-12 Thread Maxime Ripard
The A31 USB clock slightly differ from its older counterparts, mostly because it has a different gate for each PHY, while the older one had a single gate for all the phy. Signed-off-by: Maxime Ripard Reviewed-by: Hans de Goede --- drivers/clk/sunxi/clk-sunxi.c | 6 ++ 1 file changed, 6 inse

[linux-sunxi] Re: [PATCH v13 2/2] ARM: sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs

2014-05-12 Thread Arend van Spriel
On 05/12/2014 02:04 PM, Hans de Goede wrote: From: David Lanzendörfer The Allwinner sunxi mmc host uses dma in bus-master mode using a built-in designware idmac controller, which is identical to the one found in the mmc-dw hosts. However the rest of the host is not identical to mmc-dw, it deals

[linux-sunxi] Re: Allwinner A10: the L2 cache may not keep up with the speed at 1GHz

2014-05-12 Thread Siarhei Siamashka
On Tue, 6 May 2014 12:34:45 +0300 Siarhei Siamashka wrote: > Implemented an automated script for running tests at different > operating points: > https://github.com/ssvb/cpuburn-arm/blob/master/cpufreq-ljt-stress-test And also added a script to parse the cpufreq tables from the sunxi-3.4 ker

[linux-sunxi] Re: [PATCH] ARM: dts: sun5i: Add new A10s r7 hdmi tv dongle board

2014-05-12 Thread Maxime Ripard
On Mon, May 12, 2014 at 02:11:06PM +0200, Hans de Goede wrote: > The R7 tv-dongle is an A10s based hdmi tv dongle, with 1G RAM, 4G nand flash, > and rtl8189es sdio wifi. It has a standard male hdmi connector, an USB host > port using an USB-A receptacle and a micro-usb receptacle for both power > a

Re: [linux-sunxi] [PATCH v2 3/7] phy: usb: sunxi: Introduce Allwinner A31 USB PHY support

2014-05-12 Thread Maxime Ripard
On Mon, May 12, 2014 at 05:14:26PM +0800, Chen-Yu Tsai wrote: > Hi, > > On Sat, May 10, 2014 at 8:56 PM, Maxime Ripard > wrote: > > The USB phy controller in the A31 differs mostly from the older controllers > > because it has a clock dedicated for each phy, while the older ones were > > having

[linux-sunxi] Re: [PATCH v2 4/7] usb: ehci-platform: add optional reset controller retrieval

2014-05-12 Thread Maxime Ripard
Hi Alan, On Sat, May 10, 2014 at 10:35:49AM -0400, Alan Stern wrote: > > @@ -206,6 +208,19 @@ static int ehci_platform_probe(struct platform_device > > *dev) > > break; > > } > > } > > + > > + priv->rst = devm_reset_control_get

Re: [linux-sunxi] [PATCH] ARM: dts: sun5i: Add new A10s r7 hdmi tv dongle board

2014-05-12 Thread Luc Verhaegen
On Mon, May 12, 2014 at 02:29:19PM +0200, Hans de Goede wrote: > Hi, > > It isn't. I'm sorry but I don't have time to go and create linux-sunxi.org > wiki pages for all the devices I have. Then why bother creating dts files when no-one can find out what devices they really are for? Luc Verhaege

[linux-sunxi] Re: [PATCH v13 2/2] ARM: sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs

2014-05-12 Thread Arnd Bergmann
On Monday 12 May 2014 14:04:48 Hans de Goede wrote: > From: David Lanzendörfer > > The Allwinner sunxi mmc host uses dma in bus-master mode using a built-in > designware idmac controller, which is identical to the one found in the mmc-dw > hosts. However the rest of the host is not identical to m

Re: [linux-sunxi] [PATCH] ARM: dts: sun5i: Add new A10s r7 hdmi tv dongle board

2014-05-12 Thread Hans de Goede
Hi, On 05/12/2014 02:15 PM, Luc Verhaegen wrote: > On Mon, May 12, 2014 at 02:11:06PM +0200, Hans de Goede wrote: >> The R7 tv-dongle is an A10s based hdmi tv dongle, with 1G RAM, 4G nand flash, >> and rtl8189es sdio wifi. It has a standard male hdmi connector, an USB host >> port using an USB-A r

Re: [linux-sunxi] [PATCH v2 3/7] phy: usb: sunxi: Introduce Allwinner A31 USB PHY support

2014-05-12 Thread Hans de Goede
Hi, On 05/12/2014 02:24 PM, Kishon Vijay Abraham I wrote: > Hi, > > On Monday 12 May 2014 05:29 PM, Hans de Goede wrote: >> Hi, >> >> On 05/12/2014 11:14 AM, Chen-Yu Tsai wrote: >>> Hi, >>> >>> On Sat, May 10, 2014 at 8:56 PM, Maxime Ripard >>> wrote: The USB phy controller in the A31 diffe

Re: [linux-sunxi] [PATCH v2 3/7] phy: usb: sunxi: Introduce Allwinner A31 USB PHY support

2014-05-12 Thread Kishon Vijay Abraham I
Hi, On Monday 12 May 2014 05:29 PM, Hans de Goede wrote: > Hi, > > On 05/12/2014 11:14 AM, Chen-Yu Tsai wrote: >> Hi, >> >> On Sat, May 10, 2014 at 8:56 PM, Maxime Ripard >> wrote: >>> The USB phy controller in the A31 differs mostly from the older controllers >>> because it has a clock dedicate

Re: [linux-sunxi] [PATCH u-boot-sunxi 0/3] Make things slower but safe

2014-05-12 Thread Hans de Goede
Hi, On 05/12/2014 10:38 AM, Siarhei Siamashka wrote: > On Sun, 11 May 2014 10:36:23 +0200 > Hans de Goede wrote: > >> I know some people have been working very hard on understanding the dram >> controller better, but until we get some patches as a result of that, this >> seems the best route to

Re: [linux-sunxi] [PATCH] ARM: dts: sun5i: Add new A10s r7 hdmi tv dongle board

2014-05-12 Thread Luc Verhaegen
On Mon, May 12, 2014 at 02:11:06PM +0200, Hans de Goede wrote: > The R7 tv-dongle is an A10s based hdmi tv dongle, with 1G RAM, 4G nand flash, > and rtl8189es sdio wifi. It has a standard male hdmi connector, an USB host > port using an USB-A receptacle and a micro-usb receptacle for both power > a

[linux-sunxi] [PATCH] ARM: dts: sun5i: Add new A10s r7 hdmi tv dongle board

2014-05-12 Thread Hans de Goede
The R7 tv-dongle is an A10s based hdmi tv dongle, with 1G RAM, 4G nand flash, and rtl8189es sdio wifi. It has a standard male hdmi connector, an USB host port using an USB-A receptacle and a micro-usb receptacle for both power and USB OTG. Signed-off-by: Hans de Goede --- arch/arm/boot/dts/Makef

Re: [linux-sunxi] [PATCH u-boot-sunxi 2/3] sun7i: Drop FAST_MBUS

2014-05-12 Thread Siarhei Siamashka
On Mon, 12 May 2014 13:32:32 +0200 Hans de Goede wrote: > Hi, > > On 05/12/2014 09:54 AM, Siarhei Siamashka wrote: > > On Sun, 11 May 2014 22:47:03 +0200 > > Hans de Goede wrote: > > > > > > >> So what is your opinion no the 3th patch in this series which drops the > >> DRAM clk on the cubi

[linux-sunxi] [PATCH v13 0/2] ARM: sunxi: Add driver for SD/MMC hosts found on sunxi SoCs

2014-05-12 Thread Hans de Goede
Hi All, Here is lucky number v13 of the sunxi-mmc patch-set David Lanzendörfer and I have been working on, with the __clk_get_hw call moved from sunxi-mmc.c to clk-sunxi.c where it belongs. Mike, the first patch in this series modifies clk_sunxi_mmc_phase_control to take a struct clk * as argumen

[linux-sunxi] [PATCH v13 1/2] clk: sunxi: Fixup clk_sunxi_mmc_phase_control to take a clk rather then a hw_clk

2014-05-12 Thread Hans de Goede
__clk_get_hw is supposed to be used by clk providers, not clk consumers. Signed-off-by: Hans de Goede --- drivers/clk/sunxi/clk-sunxi.c | 3 ++- include/linux/clk/sunxi.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/clk/sunxi/clk-sunxi.c b/drivers/clk/sunxi/

[linux-sunxi] [PATCH v13 2/2] ARM: sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs

2014-05-12 Thread Hans de Goede
From: David Lanzendörfer The Allwinner sunxi mmc host uses dma in bus-master mode using a built-in designware idmac controller, which is identical to the one found in the mmc-dw hosts. However the rest of the host is not identical to mmc-dw, it deals with sending stop commands in hardware which m

Re: [linux-sunxi] [PATCH v2 3/7] phy: usb: sunxi: Introduce Allwinner A31 USB PHY support

2014-05-12 Thread Hans de Goede
Hi, On 05/12/2014 11:14 AM, Chen-Yu Tsai wrote: > Hi, > > On Sat, May 10, 2014 at 8:56 PM, Maxime Ripard > wrote: >> The USB phy controller in the A31 differs mostly from the older controllers >> because it has a clock dedicated for each phy, while the older ones were >> having >> a single cloc

[linux-sunxi] Re: [PATCH v12 1/6] ARM: sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs

2014-05-12 Thread Hans de Goede
Hi, On 05/12/2014 01:34 PM, Ulf Hansson wrote: > On 12 May 2014 13:20, Hans de Goede wrote: >> Hi, >> >> On 05/12/2014 11:15 AM, Ulf Hansson wrote: >>> On 11 May 2014 09:46, Hans de Goede wrote: From: David Lanzendörfer The Allwinner sunxi mmc host uses dma in bus-master mode usi

[linux-sunxi] Re: [PATCH v12 1/6] ARM: sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs

2014-05-12 Thread Ulf Hansson
On 12 May 2014 13:20, Hans de Goede wrote: > Hi, > > On 05/12/2014 11:15 AM, Ulf Hansson wrote: >> On 11 May 2014 09:46, Hans de Goede wrote: >>> From: David Lanzendörfer >>> >>> The Allwinner sunxi mmc host uses dma in bus-master mode using a built-in >>> designware idmac controller, which is i

Re: [linux-sunxi] [PATCH u-boot-sunxi 2/3] sun7i: Drop FAST_MBUS

2014-05-12 Thread Hans de Goede
Hi, On 05/12/2014 09:54 AM, Siarhei Siamashka wrote: > On Sun, 11 May 2014 22:47:03 +0200 > Hans de Goede wrote: > >> So what is your opinion no the 3th patch in this series which drops the >> DRAM clk on the cubieboard2 to 432 MHz ? > > It's all very complicated. We also had a report about

[linux-sunxi] Re: [PATCH v12 1/6] ARM: sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs

2014-05-12 Thread Hans de Goede
Hi, On 05/12/2014 11:15 AM, Ulf Hansson wrote: > On 11 May 2014 09:46, Hans de Goede wrote: >> From: David Lanzendörfer >> >> The Allwinner sunxi mmc host uses dma in bus-master mode using a built-in >> designware idmac controller, which is identical to the one found in the >> mmc-dw >> hosts.

[linux-sunxi] How to get access to the boot loader

2014-05-12 Thread uli . raich
Hi, I am trying to get hold of the first part of an A10 tablet flash. The tablet runs and Android 4.0.3 system and when looking into /dev/block I only see nanda .. nandi and mmcblk0, mmcblk0p1 but mot /dev/nand. How do I get hold of the bootloader files in such a case? Thanks for any help Uli --

Re: [linux-sunxi] [PATCH u-boot-sunxi 2/3] sun7i: Drop FAST_MBUS

2014-05-12 Thread Siarhei Siamashka
On Mon, 12 May 2014 10:45:44 +0200 Olliver Schinagl wrote: > > On 12-05-14 09:54, Siarhei Siamashka wrote: > > On Sun, 11 May 2014 22:47:03 +0200 > > Hans de Goede wrote: > > > >> Hi, > >> > >> On 05/11/2014 12:31 PM, Siarhei Siamashka wrote: > >>> On Sun, 11 May 2014 10:36:25 +0200 > >>> Hans

[linux-sunxi] Re: [PATCH v12 1/6] ARM: sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs

2014-05-12 Thread Ulf Hansson
On 11 May 2014 09:46, Hans de Goede wrote: > From: David Lanzendörfer > > The Allwinner sunxi mmc host uses dma in bus-master mode using a built-in > designware idmac controller, which is identical to the one found in the mmc-dw > hosts. However the rest of the host is not identical to mmc-dw, it

Re: [linux-sunxi] [PATCH v2 3/7] phy: usb: sunxi: Introduce Allwinner A31 USB PHY support

2014-05-12 Thread Chen-Yu Tsai
Hi, On Sat, May 10, 2014 at 8:56 PM, Maxime Ripard wrote: > The USB phy controller in the A31 differs mostly from the older controllers > because it has a clock dedicated for each phy, while the older ones were > having > a single clock for all the phys. > > Signed-off-by: Maxime Ripard > Revie

[linux-sunxi] [PATCH u-boot-sunxi] sunxi: initialize DRAM after AXP

2014-05-12 Thread Siarhei Siamashka
The default dcdc3 voltage is only 1.2V after reset on the Cubietruck. This might be too low for correct DRAM controller operation at high clock frequencies and even the initialization itself may theoretically fail. So we initialize AXP first. And only then move on to the DRAM setup. Signed-off-by:

Re: [linux-sunxi] Re: [PATCH v4 01/03] ARM: sunxi: Add documentation for sunxi consumer infrared devices

2014-05-12 Thread Chen-Yu Tsai
Hi, On Wed, Apr 30, 2014 at 6:54 PM, Александр Берсенев wrote: > [PATCH v4 01/03] ARM: sunxi: Add documentation for sunxi consumer infrared > devices > > This patch adds documentation for Device-Tree bindings for sunxi IR > controller. > > Signed-off-by: Alexander Bersenev > Signed-off-by: Alexs

Re: [linux-sunxi] [PATCH u-boot-sunxi 1/3] sun4i: Remove Cubieboard_512 board

2014-05-12 Thread Siarhei Siamashka
On Sun, 11 May 2014 10:36:24 +0200 Hans de Goede wrote: > It uses the exact same memory timings as the regular cubieboard, it just > has lower density dram chips. > > get_ram_size will detect that only 512 MB is available on these boards, so > they will work fine with the regular Cubieboard boar

Re: [linux-sunxi] [PATCH u-boot-sunxi 2/3] sun7i: Drop FAST_MBUS

2014-05-12 Thread Olliver Schinagl
On 12-05-14 09:54, Siarhei Siamashka wrote: On Sun, 11 May 2014 22:47:03 +0200 Hans de Goede wrote: Hi, On 05/11/2014 12:31 PM, Siarhei Siamashka wrote: On Sun, 11 May 2014 10:36:25 +0200 Hans de Goede wrote: We've several bug reports indicating that this causes stability issues, so lets

Re: [linux-sunxi] [PATCH v4 2/2] input: sun4i-ts: Add support for temperature sensor

2014-05-12 Thread Chen-Yu Tsai
Hi, On Sun, May 11, 2014 at 4:06 PM, Hans de Goede wrote: > The sun4i resisitive touchscreen controller also comes with a built-in > temperature sensor. This commit adds support for it. > > This commit also introduces a new "ts-attached" device-tree property, > when this is not set, the input par

Re: [linux-sunxi] [PATCH u-boot-sunxi 0/3] Make things slower but safe

2014-05-12 Thread Siarhei Siamashka
On Sun, 11 May 2014 10:36:23 +0200 Hans de Goede wrote: > I know some people have been working very hard on understanding the dram > controller better, but until we get some patches as a result of that, this > seems the best route to take. I have bought an A13 board a while ago and it is expecte

Re: [linux-sunxi] [PATCH u-boot-sunxi 2/3] sun7i: Drop FAST_MBUS

2014-05-12 Thread Siarhei Siamashka
On Sun, 11 May 2014 22:47:03 +0200 Hans de Goede wrote: > Hi, > > On 05/11/2014 12:31 PM, Siarhei Siamashka wrote: > > On Sun, 11 May 2014 10:36:25 +0200 > > Hans de Goede wrote: > > > >> We've several bug reports indicating that this causes stability issues, > >> so lets just drop it. > > >

Re: [linux-sunxi] [PATCH sunxi-boards] Update cubieboard2/cubietruck dcdc2/dcdc3 voltages and dvfs data

2014-05-12 Thread Koen Kooi
Op 12 mei 2014, om 09:19 heeft Hans de Goede het volgende geschreven: > Hi, > > On 05/12/2014 09:16 AM, Koen Kooi wrote: >> >> Op 11 mei 2014, om 22:43 heeft Hans de Goede het >> volgende geschreven: >> >>> Hi, >>> >>> On 05/11/2014 11:53 AM, Siarhei Siamashka wrote: It has been conf

Re: [linux-sunxi] Re: [PATCH 1/1] uboot: add support for pcDuino3

2014-05-12 Thread Chen-Yu Tsai
Hi, On Mon, May 12, 2014 at 3:12 PM, Zoltan HERPAI wrote: > Hi Hans, > > On Mon, 12 May 2014, Hans de Goede wrote: > > *snip* > > >>> +Active arm armv7 sunxi - sunxi >>> pcDuino3 sun7i:PCDUINO3,SPL,SUNXI_EMAC,FAST_MBUS >>> - >> >>

[linux-sunxi] Re: [PATCH 1/1] uboot: add support for pcDuino3

2014-05-12 Thread Hans de Goede
Hi, On 05/12/2014 09:12 AM, Zoltan HERPAI wrote: > Hi Hans, > > On Mon, 12 May 2014, Hans de Goede wrote: > > *snip* > >>> +Active arm armv7 sunxi - sunxi >>> pcDuino3 >>> sun7i:PCDUINO3,SPL,SUNXI_EMAC,FAST_MBUS

Re: [linux-sunxi] [PATCH sunxi-boards] Update cubieboard2/cubietruck dcdc2/dcdc3 voltages and dvfs data

2014-05-12 Thread Hans de Goede
Hi, On 05/12/2014 09:16 AM, Koen Kooi wrote: > > Op 11 mei 2014, om 22:43 heeft Hans de Goede het > volgende geschreven: > >> Hi, >> >> On 05/11/2014 11:53 AM, Siarhei Siamashka wrote: >>> It has been confirmed that a substantial percentage of cubieboard2 >>> and cubietruck users are having st

Re: [linux-sunxi] [PATCH sunxi-boards] Update cubieboard2/cubietruck dcdc2/dcdc3 voltages and dvfs data

2014-05-12 Thread Koen Kooi
Op 11 mei 2014, om 22:43 heeft Hans de Goede het volgende geschreven: > Hi, > > On 05/11/2014 11:53 AM, Siarhei Siamashka wrote: >> It has been confirmed that a substantial percentage of cubieboard2 >> and cubietruck users are having stability issues. These issues are >> caused by having vario

[linux-sunxi] Re: [PATCH 1/1] uboot: add support for pcDuino3

2014-05-12 Thread Zoltan HERPAI
Hi Hans, On Mon, 12 May 2014, Hans de Goede wrote: *snip* +Active arm armv7 sunxi - sunxi pcDuino3 sun7i:PCDUINO3,SPL,SUNXI_EMAC,FAST_MBUS

Re: [linux-sunxi] Re: [PATCHv2 4/4] ARM: sun7i: dt: Add MMC support to pcDuino3 DTS

2014-05-12 Thread Zoltan HERPAI
On Mon, 12 May 2014, Hans de Goede wrote: @@ -19,6 +19,14 @@ compatible = "linksprite,a20-pcduino3", "allwinner,sun7i-a20"; soc@01c0 { + mmc0: mmc@01c0f000 { + pinctrl-names = "default", "default"; + pinctrl-0 = <&m