[linux-sunxi] Re: [PATCH] remove sunxi_nand from sun7i_defconfig

2014-12-03 Thread jiejie chen
This is a good way, but I'm use 2 piece SAMSUNG K9LCG08U0B nandflash, modify sunxi_nand, could not find /dev/nand,hava other method -- You received this message because you are subscribed to the Google Groups linux-sunxi group. To unsubscribe from this group and stop receiving emails from it,

[linux-sunxi] Re: Nand partition is not ok.

2014-12-03 Thread jiejie chen
hello,I'am new one ,I encounter this some problem,but I use A20 sunxi-linux3.4 DRAM:1024M and 2 piece SAMSUNG K9LCG08U0B nandflash,can you tell me where could I chang my code? I am so sorry my english is poor if I make a mistake in grammar... -- You received this message because you are

Re: [linux-sunxi] Re: Nand partition is not ok.

2014-12-03 Thread Vladimir Komendantskiy
It looks like your K9LCG08U0B is already in the chip database. Please check drivers/block/sunxi_nand/src/scan/nand_id.c in the sunxi-3.4 branch. If it doesn't work then some debugging of nand_scan.c may be required. -- Vladimir On 3 December 2014 at 09:11, jiejie chen cjiejie1...@gmail.com

[linux-sunxi] Re: [PATCH 3/9] clk: sunxi: Add prcm mod0 clock driver

2014-12-03 Thread Hans de Goede
Hi, On 12/02/2014 04:45 PM, Maxime Ripard wrote: Ok, so thinking more about this, I'm still convinced that the MFD framework is only getting in the way here. You still haven't said of what exactly it's getting in the way of. Of using of_clk_define to bind to the mod0 clk in the prcm,

Re: [linux-sunxi] Re: [PATCH v7 1/6] mfd: AXP20x: Add bindings documentation

2014-12-03 Thread Chen-Yu Tsai
Hi Mark, I'm (hopefully) picking up the work for this series. On Mon, Jun 30, 2014 at 5:48 PM, Mark Rutland mark.rutl...@arm.com wrote: On Sun, Jun 29, 2014 at 07:23:52PM +0100, Carlo Caione wrote: Bindings documentation for the AXP20x driver. In this file also sub-nodes are documented.

Re: [linux-sunxi] [PATCH 0/5] clk: sunxi: Add peripheral bus clock support for A80

2014-12-03 Thread Simos Xenitellis
On Sun, Oct 12, 2014 at 6:32 PM, Chen-Yu Tsai w...@csie.org wrote: Hi Hans, On Sun, Oct 12, 2014 at 6:45 PM, Hans de Goede hdego...@redhat.com wrote: Hi ChenYu, On 10/12/2014 11:40 AM, Chen-Yu Tsai wrote: Hi everyone, This series adds support for the basic bus (AHB/APB) clocks used by

Re: [linux-sunxi] [help] Nand Problem, SAMSUNG K9LCG08U0B

2014-12-03 Thread Vladimir Komendantskiy
It looks like you are using a clean flash chip. The Allwinner drivers are not suitable for clean chips in general. Can you use the LiveSuit tool from the Allwinner SDK with an image to initialise the file system? I suggest you trying one from here:

Re: [linux-sunxi] [PATCH 0/5] clk: sunxi: Add peripheral bus clock support for A80

2014-12-03 Thread Chen-Yu Tsai
On Wed, Dec 3, 2014 at 9:11 PM, Simos Xenitellis simos.li...@googlemail.com wrote: On Sun, Oct 12, 2014 at 6:32 PM, Chen-Yu Tsai w...@csie.org wrote: Hi Hans, On Sun, Oct 12, 2014 at 6:45 PM, Hans de Goede hdego...@redhat.com wrote: Hi ChenYu, On 10/12/2014 11:40 AM, Chen-Yu Tsai wrote: Hi

Re: [linux-sunxi] [help] Nand Problem, SAMSUNG K9LCG08U0B

2014-12-03 Thread zhaozhili
Stop ranting, buddy. If you are designing a board for your company, you can talk to me in Chinese, privately. On Wed, Dec 03, 2014 at 04:32:10AM -0800, jiejie chen wrote: Hello, I'am new one, /shy, I use A20 to design my board, 2 piece SAMSUNG K9LCG08U0B nandflash and CONFIG_SUNXI_NAND=y

[linux-sunxi] [PATCH 0/3] ARM:sun7i:ps2 added support for A20 PS/2 host controller

2014-12-03 Thread vishnupatekar
This series adds support for Allwinner's A20 PS2 host controller driver. I've done basic testing on A20 Lime 2 Board. This needs to be further tested. Patch 0 Summary: Allwinner A20 PS2 is dual role controller(PS2 host and PS2 device). These modifications are for PS2 host controller. IBM

[linux-sunxi] [PATCH 1/3] dts-binding: input: sun7ips2: Device tree bindings for Allwinner sun7i A20 PS2 host controller

2014-12-03 Thread vishnupatekar
--- .../bindings/input/allwinner,sun7i-a20-ps2.txt | 22 1 file changed, 22 insertions(+) create mode 100644 Documentation/devicetree/bindings/input/allwinner,sun7i-a20-ps2.txt diff --git a/Documentation/devicetree/bindings/input/allwinner,sun7i-a20-ps2.txt

[linux-sunxi] [PATCH 2/3] drivers:input:ps2 Added sunxi A20 ps2 driver, changed makefile and Kconfig

2014-12-03 Thread vishnupatekar
--- drivers/input/serio/Kconfig |9 ++ drivers/input/serio/Makefile|1 + drivers/input/serio/sunxi-ps2.c | 305 +++ 3 files changed, 315 insertions(+) create mode 100644 drivers/input/serio/sunxi-ps2.c diff --git a/drivers/input/serio/Kconfig

[linux-sunxi] [PATCH 3/3] ARM:dts:sun7i:ps2 added nodes for Sun7i A20 PS2 controller. added ps2 nodes in lime2 board dts.

2014-12-03 Thread vishnupatekar
--- arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts | 10 arch/arm/boot/dts/sun7i-a20.dtsi| 30 ++- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts

[linux-sunxi] Re: [PATCH 2/3] drivers:input:ps2 Added sunxi A20 ps2 driver, changed makefile and Kconfig

2014-12-03 Thread Dmitry Torokhov
On Thu, Dec 04, 2014 at 04:23:44AM +0530, vishnupatekar wrote: --- drivers/input/serio/Kconfig |9 ++ drivers/input/serio/Makefile|1 + drivers/input/serio/sunxi-ps2.c | 305 +++ 3 files changed, 315 insertions(+) create mode 100644

[linux-sunxi] Re: [PATCH 2/3] drivers:input:ps2 Added sunxi A20 ps2 driver, changed makefile and Kconfig

2014-12-03 Thread Vishnu Patekar
Hello Dmitry, Thank you for comments. I'll implement these comments and resend it for review. On Thursday, December 4, 2014, Dmitry Torokhov dmitry.torok...@gmail.com wrote: On Thu, Dec 04, 2014 at 04:23:44AM +0530, vishnupatekar wrote: --- drivers/input/serio/Kconfig |9 ++

Re: [linux-sunxi] Re: Nand partition is not ok.

2014-12-03 Thread Puneet B
This problem is because of WP pin in hardware just cut trace of wp pin from nand to A20. it will work. or else keep WP as pullup. Regards Punith -- You received this message because you are subscribed to the Google Groups linux-sunxi group. To unsubscribe from this group and stop receiving

Re: [linux-sunxi] [PATCH 2/3] drivers:input:ps2 Added sunxi A20 ps2 driver, changed makefile and Kconfig

2014-12-03 Thread Priit Laes
On Thu, 2014-12-04 at 04:23 +0530, vishnupatekar wrote: --- drivers/input/serio/Kconfig |9 ++ drivers/input/serio/Makefile|1 + drivers/input/serio/sunxi-ps2.c | 305 +++ 3 files changed, 315 insertions(+) create mode 100644