Re: [linux-sunxi] Compiling android kernel using android source files

2014-07-23 Thread Julian Calaby
Hi Pirpi, On Thu, Jul 24, 2014 at 4:06 PM, wrote: > I have downloaded android source files for pcduino3 and I am trying to > compile android kernel using these source files. I am following the steps > given at the following link. Just a warning: This mailing list is for discussion and support

[linux-sunxi] Compiling android kernel using android source files

2014-07-23 Thread pirpi . 12345
I have downloaded android source files for pcduino3 and I am trying to compile android kernel using these source files. I am following the steps given at the following link. http://learn.linksprite.com/pcduino/and ... -pcduino3/ But while compiling I am getting the following error at ./build.sh

Re: [linux-sunxi] Re: Experimenting with eu3000 board

2014-07-23 Thread jonsm...@gmail.com
There is an old h.264 port here: https://github.com/ebutera/cedar-h264enc It is for armel. Everything uses armhf now. I posted the armhf cedar libraries to the list about six months ago. Not sure anyone has done anything with them. On Wed, Jul 23, 2014 at 5:15 PM, Adilson Oliveira wrote: >

Re: [linux-sunxi] Re: Experimenting with eu3000 board

2014-07-23 Thread Adilson Oliveira
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Em 23-07-2014 18:06, zs.gas...@gmail.com escreveu: > Here is some update: > > Hi, > > I followed Ivan Kozic suggestion and ported the new driver, mostly > removing AF related code (will put back part of it, just wanted to > compile now) and GPIO ac

Re: [linux-sunxi] CSI driver problems in 16bit mode + some successful debug

2014-07-23 Thread zs . gaspar
Hi Ivan, I made some progress, but I post it on the relevant topic, could you please have a look: https://groups.google.com/forum/#!topic/linux-sunxi/cjFOOLJSWpc I got some issue, if it's been sorted out before then some help would be appreciated. Thanks Zsolt On Monday, 21 July 2014 14:19:42

Re: [linux-sunxi] Re: Experimenting with eu3000 board

2014-07-23 Thread zs . gaspar
Here is some update: Hi, I followed Ivan Kozic suggestion and ported the new driver, mostly removing AF related code (will put back part of it, just wanted to compile now) and GPIO access. Currently the camera detected by the module and the video device shows up, but when I try to use CSI give

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Henrik Nordström
ons 2014-07-23 klockan 17:15 +0200 skrev Maxime Ripard: > IIRC, the u-boot guys are *very* reluctant to chain-loading > u-boot. Plus, that would have quite a huge impact on the boot time. Yes. The point is that we can do the following: 1. Boot installer using generic u-boot using any of the avai

[linux-sunxi] Re: [PATCH v2 1/6] rtc: sun6i: Add sun6i RTC driver

2014-07-23 Thread Varka Bhadram
On Wednesday 23 July 2014 08:08 PM, Chen-Yu Tsai wrote: This patch introduces the driver for the RTC in the Allwinner A31 and A23 SoCs. Unlike the RTC found in A10/A20 SoCs, which was part of the timer, the RTC in A31/A23 are a separate hardware block, which also contain a few controls for the

Re: [linux-sunxi] Re: A20 boot0/boot1 info

2014-07-23 Thread Dmitriy B.
2014-07-23 19:46 GMT+04:00 Ivan Kozic : > > Still I'd be quite interested in trying out this WiP NAND uboot - do you > know from which repo can I fetch the source/binaries? Maybe it's time that > I get familiar with uboot... > Here are latest versions from Yuq. Boris Brezillon also tried to do th

Re: [linux-sunxi] Re: A20 boot0/boot1 info

2014-07-23 Thread Ivan Kozic
Hi Henrik, Thanks for replying - I have made an error (too much programming I guess), it's a bit different actually - the start address for script is BOOT1_BASE+BOOT1_HEAD_LENGTH - this is then memcpy-ed to SCRIPT_BASE. Either way, it's using the script embedded in its header, as you've said. H

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Maxime Ripard
On Wed, Jul 23, 2014 at 10:46:03AM -0400, jonsm...@gmail.com wrote: > On Wed, Jul 23, 2014 at 9:59 AM, Henrik Nordström > wrote: > > ons 2014-07-23 klockan 09:27 -0400 skrev jonsm...@gmail.com: > > > >> That new uboot DRAM support from Siarhei has the potential to boot on > >> any Allwinner device

[linux-sunxi] Re: A20 + AR9271 wifi problem

2014-07-23 Thread Tim Tisdall
I just checked it again today... menuconfig says: Depends on: NETDEVICES [=y] && WLAN [=y] && ATH_COMMON [=m] && USB [=y] && MAC80211 modinfo says: depends:ath9k_hw,ath9k_common,mac80211,ath,cfg80211 You need to make sure CONFIG_CFG80211 is added in your kernel config. On Saturday, 19

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Maxime Ripard
On Wed, Jul 23, 2014 at 09:27:00AM -0400, jonsm...@gmail.com wrote: > On Wed, Jul 23, 2014 at 9:20 AM, Henrik Nordström > wrote: > > ons 2014-07-23 klockan 10:12 +0200 skrev Hans de Goede: > > > >> No just no, this is the good old mark 1 mku802 casing, > >> with a different pcb in there, sold unde

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread jonsm...@gmail.com
On Wed, Jul 23, 2014 at 9:59 AM, Henrik Nordström wrote: > ons 2014-07-23 klockan 09:27 -0400 skrev jonsm...@gmail.com: > >> That new uboot DRAM support from Siarhei has the potential to boot on >> any Allwinner device. Once that hits we could do to a single generic >> entry for Allwinner. Then a

[linux-sunxi] [PATCH v2 5/6] ARM: sunxi: Add A31 RTC driver to sunxi_defconfig

2014-07-23 Thread Chen-Yu Tsai
Now that we have a driver for A31's RTC, enable it in the default sunxi config. Signed-off-by: Chen-Yu Tsai --- arch/arm/configs/sunxi_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig index 7209bfd..0abc2ab 100644 -

[linux-sunxi] [PATCH v2 1/6] rtc: sun6i: Add sun6i RTC driver

2014-07-23 Thread Chen-Yu Tsai
This patch introduces the driver for the RTC in the Allwinner A31 and A23 SoCs. Unlike the RTC found in A10/A20 SoCs, which was part of the timer, the RTC in A31/A23 are a separate hardware block, which also contain a few controls for the RTC block hardware (a regulator and RTC block GPIO pin latc

[linux-sunxi] [PATCH v2 6/6] ARM: sunxi: Add A31 RTC driver to multi_v7_defconfig

2014-07-23 Thread Chen-Yu Tsai
Now that we have a driver for A31's RTC, enable it in multi_v7_defconfig. Signed-off-by: Chen-Yu Tsai --- arch/arm/configs/multi_v7_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig index a62ca27..130dd8d 1006

[linux-sunxi] [PATCH v2 4/6] ARM: dts: sun8i: add rtc device node

2014-07-23 Thread Chen-Yu Tsai
sun8i shares the same rtc hardware as sun6i. Now that we have a driver for it, add a device node to the DTSI for it so we can use it. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-a23.dtsi | 6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-a23.dtsi b/arch

[linux-sunxi] [PATCH v2 0/6] ARM: sunxi: RTC support for A31/A23

2014-07-23 Thread Chen-Yu Tsai
Hi everyone, This is v2 of the sun6i RTC series. This series adds support for the RTC in A31 and A23 SoCs. The series applies to sunxi-next. The A31 has a new RTC block that is separate from the timer block. It has separate interrupts for each of the alarms, and a different format for the counter

[linux-sunxi] [PATCH v2 2/6] rtc: sunxi: Depend on platforms sun4i/sun7i that actually have the rtc

2014-07-23 Thread Chen-Yu Tsai
Now that we have Kconfig options for individual sunxi platforms, let the rtc-sunxi driver depend on the platforms that actually have this hardware, sun4i and sun7i. Signed-off-by: Chen-Yu Tsai Acked-by: Maxime Ripard --- drivers/rtc/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[linux-sunxi] [PATCH v2 3/6] ARM: dts: sun6i: add rtc device node

2014-07-23 Thread Chen-Yu Tsai
Now that we have a driver for sun6i's rtc hardware, add a device node for it so we can use it. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun6i-a31.dtsi | 6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/boot/dts/sun6i-a31.dtsi b/arch/arm/boot/dts/sun6i-a31.dtsi index 44b0

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Henrik Nordström
ons 2014-07-23 klockan 09:27 -0400 skrev jonsm...@gmail.com: > That new uboot DRAM support from Siarhei has the potential to boot on > any Allwinner device. Once that hits we could do to a single generic > entry for Allwinner. Then after uboot is out of SPL uboot could use a > DTB to set everythi

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Henrik Nordström
ons 2014-07-23 klockan 01:48 +0200 skrev Luc Verhaegen: > On Wed, Jul 23, 2014 at 01:19:07AM +0200, Henrik Nordström wrote: > > ons 2014-07-23 klockan 00:11 +0200 skrev Luc Verhaegen: > > > is how people find our wiki and thus our project. If you are not > > > convinced, google for cubieboard, and

Re: [linux-sunxi] Re: Our uboot boards.cfg.

2014-07-23 Thread mike . valk
On Wednesday, July 23, 2014 2:36:57 PM UTC+2, Luc Verhaegen wrote: > On Wed, Jul 23, 2014 at 12:15:07AM -0700, mike.valk wrote: > > > > > > > > Hyundai_A7HD > > > > > > I have a Cherry mobility M278 (Rebrand) > > > > > > I'll try to complete the info. What do you consider the most pressin

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread jonsm...@gmail.com
On Wed, Jul 23, 2014 at 9:20 AM, Henrik Nordström wrote: > ons 2014-07-23 klockan 10:12 +0200 skrev Hans de Goede: > >> No just no, this is the good old mark 1 mku802 casing, >> with a different pcb in there, sold under a gazillion >> different brands, these hdmi stick are in general just >> known

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Henrik Nordström
ons 2014-07-23 klockan 10:12 +0200 skrev Hans de Goede: > No just no, this is the good old mark 1 mku802 casing, > with a different pcb in there, sold under a gazillion > different brands, these hdmi stick are in general just > known as mk802 without any brand attached to them. Yes, and several m

Re: [linux-sunxi] Re: [U-Boot] [PATCH 3/3] ahci: provide sunxi SATA driver using AHCI platform framework

2014-07-23 Thread Ian Campbell
On Wed, 2014-07-23 at 09:04 -0400, Tom Rini wrote: > On Wed, Jul 23, 2014 at 07:59:17AM +0100, Ian Campbell wrote: > > On Tue, 2014-07-22 at 18:01 -0400, Tom Rini wrote: > > > On Fri, Jul 18, 2014 at 08:38:41PM +0100, Ian Campbell wrote: > > > > > > > This enables the necessary clocks, in AHB0 and

[linux-sunxi] Re: [U-Boot] [PATCH 3/3] ahci: provide sunxi SATA driver using AHCI platform framework

2014-07-23 Thread Tom Rini
On Wed, Jul 23, 2014 at 07:59:17AM +0100, Ian Campbell wrote: > On Tue, 2014-07-22 at 18:01 -0400, Tom Rini wrote: > > On Fri, Jul 18, 2014 at 08:38:41PM +0100, Ian Campbell wrote: > > > > > This enables the necessary clocks, in AHB0 and in PLL6_CFG. This is done > > > for sun7i only since I don't

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Luc Verhaegen
On Wed, Jul 23, 2014 at 08:54:07AM +0100, Ian Campbell wrote: > On Wed, 2014-07-23 at 01:48 +0200, Luc Verhaegen wrote: > > > > > Should get renamed in boards.cfg (12): > > > > -- > > > > A10-OLinuXino-Lime -> Olimex_ > > > > A13-OLinuXino -> Oli

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Luc Verhaegen
On Wed, Jul 23, 2014 at 10:12:41AM +0200, Hans de Goede wrote: > > > PoV_ProTab2_XXL -> Also rename to inet1 > > qt840a -> Also rename to semitime qt840a > > qt840a finds a lot more relevant google hits > then "semitime qt840a", these things are in general > sold

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Luc Verhaegen
On Wed, Jul 23, 2014 at 10:12:41AM +0200, Hans de Goede wrote: > Hi, > > On 07/23/2014 12:11 AM, Luc Verhaegen wrote: > > I just had a dig through our boards.cfg, and compared it to our wiki and > > google. > > > > We have 69 unique devices in there, and i have categorized it according > > to h

Re: [linux-sunxi] Re: Our uboot boards.cfg.

2014-07-23 Thread Luc Verhaegen
On Wed, Jul 23, 2014 at 12:15:07AM -0700, mike.v...@gmail.com wrote: > > > > Hyundai_A7HD > > I have a Cherry mobility M278 (Rebrand) > > I'll try to complete the info. What do you consider the most pressing info > missing? Oh, this is mostly a personal reminder, as i really need to stick pr

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Koen Kooi
Op 23 jul. 2014, om 10:12 heeft Hans de Goede het volgende geschreven: > Hi, > > On 07/23/2014 12:11 AM, Luc Verhaegen wrote: [snip NDH stuff] >> I find it truly astounding that we have 4 devices in our u-boot where >> no-one except the committer (who might have vanished already) has any >

[linux-sunxi] Re: [U-Boot] [PATCH 3/3] ahci: provide sunxi SATA driver using AHCI platform framework

2014-07-23 Thread Ian Campbell
On Wed, 2014-07-23 at 07:59 +0100, Ian Campbell wrote: > On Tue, 2014-07-22 at 18:01 -0400, Tom Rini wrote: > > On Fri, Jul 18, 2014 at 08:38:41PM +0100, Ian Campbell wrote: > > > > > This enables the necessary clocks, in AHB0 and in PLL6_CFG. This is done > > > for sun7i only since I don't have a

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Hans de Goede
Hi, On 07/23/2014 12:11 AM, Luc Verhaegen wrote: > I just had a dig through our boards.cfg, and compared it to our wiki and > google. > > We have 69 unique devices in there, and i have categorized it according > to how far along the NDH process they are. The results are pretty > shocking, espe

Re: [linux-sunxi] Our uboot boards.cfg.

2014-07-23 Thread Ian Campbell
On Wed, 2014-07-23 at 01:48 +0200, Luc Verhaegen wrote: > > > Should get renamed in boards.cfg (12): > > > -- > > > A10-OLinuXino-Lime-> Olimex_ > > > A13-OLinuXino -> Olimex_ > > > A20-OLinuXino_MICRO -> Olimex_ > > > Cubieboard

Re: [linux-sunxi] GSoC 2014 #1 status report - Improving Allwinner SoC support

2014-07-23 Thread Chris Moore
Le 22/07/2014 12:22, Chen-Yu Tsai a écrit : So the user manual says that 24 bit samples should be right justified, or in the most significant bytes. I understand "right justified" to mean "in the *least* significant bits". Cheers, Chris -- You received this message because you are subscribed

[linux-sunxi] Re: Our uboot boards.cfg.

2014-07-23 Thread mike . valk
On Wednesday, July 23, 2014 12:11:21 AM UTC+2, Luc Verhaegen wrote: > I just had a dig through our boards.cfg, and compared it to our wiki and > > google. > > > > We have 69 unique devices in there, and i have categorized it according > > to how far along the NDH process they are. The result

[linux-sunxi] Re: [U-Boot] [PATCH 3/3] ahci: provide sunxi SATA driver using AHCI platform framework

2014-07-23 Thread Ian Campbell
On Tue, 2014-07-22 at 18:01 -0400, Tom Rini wrote: > On Fri, Jul 18, 2014 at 08:38:41PM +0100, Ian Campbell wrote: > > > This enables the necessary clocks, in AHB0 and in PLL6_CFG. This is done > > for sun7i only since I don't have access to any other sunxi platforms > > with sata included. > > >