Re: [U-Boot] ARM: cfi_flash: Fix unaligned accesses to cfi_qry structure

2013-05-12 Thread Albert ARIBAUD
Hi Marek, On Fri, 10 May 2013 14:36:00 +0200, Marek Vasut wrote: > Hello Masahiro-san, > > By the way, I also had this unalignment access problem for my board. > > Before finding your patch, I was thinking another way to fix this problem. > > > > My idea is to just use 'get_unaligned' and 'put

Re: [U-Boot] [Patch v2 1/4] USB: ohci-at91: support sama5d3x devices

2013-05-12 Thread Bo Shen
Hi Andreas, On 5/12/2013 19:28, Andreas Bießmann wrote: Dear Bo Shen, On 12.03.2013 07:15, Bo Shen wrote: Add OHCI support for sama5d3x devices can you please rebase this patch and send again? OK, I will do it at next version. Signed-off-by: Bo Shen --- change in v2: - change #if de

Re: [U-Boot] [Patch v2 4/4] ARM: atmel: add sama5d3xek support

2013-05-12 Thread Bo Shen
Hi Andreas, On 5/12/2013 19:35, Andreas Bießmann wrote: Dear Bo Shen, On 12.03.2013 07:15, Bo Shen wrote: Add sama5d3xek support with following feature - boot from NAND flash, PMECC support, 4bit ECC @ 512 bytes sector - boot from SPI flash support - boot from SD card support - LCD

[U-Boot] [PATCH] mmc: fix env in mmc with redundant compile error

2013-05-12 Thread Bo Shen
The commit d196bd8 (env_mmc: add support for redundant environment) introduce the following compile error when enable reduandant environment support with MMC ---8<--- env_mmc.c:149: error: 'env_t' has no member named 'flags' env_mmc.c:248: error: 'env_t' has no member named 'flags' env_mmc.c:248: e

Re: [U-Boot] [PATCH v1 1/3] blackfin: Enable early print via the generic serial API.

2013-05-12 Thread Sonic Zhang
Hi Mike, On Mon, May 13, 2013 at 12:42 PM, Mike Frysinger wrote: > On Monday 13 May 2013 00:20:15 Sonic Zhang wrote: >> Remove blackfin specific implementation of the generic serial API when >> early print macro is defined. >> >> In BFIN_BOOT_BYPASS mode, don't call generic serial_puts, because >

Re: [U-Boot] [PATCH v3 2/9] i2c: common changes for multibus/multiadapter support

2013-05-12 Thread Heiko Schocher
Hello Simon, Am 11.05.2013 23:33, schrieb Simon Glass: > Hi Heiko, > > On Sat, May 4, 2013 at 6:01 AM, Heiko Schocher wrote: >> Signed-off-by: Heiko Schocher >> Signed-off-by: Simon Glass >> Cc: Henrik Nordström >> >> --- >> - changes for v2: >> add comment from Henrik Nordström >> remov

Re: [U-Boot] [PATCH 1/2] EXYNOS: Export timer_get_us() to get microsecond timer

2013-05-12 Thread Rajeshwari Birje
Hi Simon, Thank you for review comments, On Sat, May 11, 2013 at 8:38 PM, Simon Glass wrote: > On Fri, Mar 22, 2013 at 6:45 PM, Simon Glass wrote: >> Hi Rajeshwari, >> >> On Fri, Mar 22, 2013 at 5:28 AM, Rajeshwari Shinde >> wrote: >>> This function, if implemented by the board, provides a mic

Re: [U-Boot] Exynos5: cpufreq: Implement frequency scaling for exynos5

2013-05-12 Thread Simon Glass
Hi Akshay, On Sun, May 12, 2013 at 11:15 PM, Akshay Saraswat wrote: > Hi Simon, > >>Hi Akshay, >> >>On Wed, Apr 3, 2013 at 12:27 AM, Akshay Saraswat wrote: >>> Exynos5 currently runs at full speed i.e. 1.7 GHz everytime. >>> Scaling down the clock speed in certain situations, may help in >>> red

[U-Boot] [PATCH 4/4 v2] Exynos5: config: enable cpu freq

2013-05-12 Thread Akshay Saraswat
This patch enables cpu freq support for exynos5 by adding config for it. Signed-off-by: Akshay Saraswat Acked-by: Simon Glass --- Changes since v1: - Added "Acked-by: Simon Glass". include/configs/exynos5250-dt.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs

[U-Boot] [PATCH 3/4 v2] smdk5250: enable support for tmu throttling

2013-05-12 Thread Akshay Saraswat
Adding tmu throttling support to smdk5250. Signed-off-by: Akshay Saraswat Acked-by: Simon Glass --- Changes since v1: - Added "Acked-by: Simon Glass". board/samsung/smdk5250/smdk5250.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/board/samsung/smdk5250/smd

[U-Boot] [PATCH 2/4 v2] Exynos5: cpufreq: Implement frequency scaling for exynos5

2013-05-12 Thread Akshay Saraswat
Exynos5 currently runs at full speed i.e. 1.7 GHz everytime. Scaling down the clock speed in certain situations, may help in reducing the ARM temperature and power consumption. Signed-off-by: Akshay Saraswat Acked-by: Simon Glass --- Changes since v1: - Added "Acked-by: Simon Glass". a

[U-Boot] [PATCH 1/4 v2] PMIC: max77686: add pmic_set_voltage api for max77686

2013-05-12 Thread Akshay Saraswat
This patch adds pmic_set_voltage api in max77686. As the name suggests, this api is required for switching voltage from one level to another. Unit for the new voltage value should be microvolts. Signed-off-by: Akshay Saraswat --- Changes since v1: - Added comment for the set voltage API.

[U-Boot] [PATCH 0/4 v2] Exynos5: Add cpu freq and tmu throttling

2013-05-12 Thread Akshay Saraswat
This patch set adds cpu frequency scaling and tmu throttling for exynos5. Changes since v1: - Patch-1: Added comment for the set voltage API. - Patch-2: Added "Acked-by: Simon Glass". - Patch-3: Added "Acked-by: Simon Glass". - Patch-4: Added "Acked-by: Simon Glass"

[U-Boot] Exynos5: cpufreq: Implement frequency scaling for exynos5

2013-05-12 Thread Akshay Saraswat
Hi Simon, >Hi Akshay, > >On Wed, Apr 3, 2013 at 12:27 AM, Akshay Saraswat wrote: >> Exynos5 currently runs at full speed i.e. 1.7 GHz everytime. >> Scaling down the clock speed in certain situations, may help in >> reducing the ARM temperature and power consumption. >> >> Signed-off-by: Akshay Sa

Re: [U-Boot] [PATCH v3 2/9] i2c: common changes for multibus/multiadapter support

2013-05-12 Thread Heiko Schocher
Hello Simon, Am 11.05.2013 23:17, schrieb Simon Glass: > Hi Heiko, > > On Sat, May 4, 2013 at 6:01 AM, Heiko Schocher wrote: >> Signed-off-by: Heiko Schocher >> Signed-off-by: Simon Glass >> Cc: Henrik Nordström >> >> --- >> - changes for v2: >> add comment from Henrik Nordström >> remov

Re: [U-Boot] [PATCH v1 1/3] blackfin: Enable early print via the generic serial API.

2013-05-12 Thread Mike Frysinger
On Monday 13 May 2013 00:20:15 Sonic Zhang wrote: > Remove blackfin specific implementation of the generic serial API when > early print macro is defined. > > In BFIN_BOOT_BYPASS mode, don't call generic serial_puts, because > early print in bypass mode is running before code binary is relocated >

[U-Boot] [PATCH v1 1/3] blackfin: Enable early print via the generic serial API.

2013-05-12 Thread Sonic Zhang
From: Sonic Zhang Remove blackfin specific implementation of the generic serial API when early print macro is defined. In BFIN_BOOT_BYPASS mode, don't call generic serial_puts, because early print in bypass mode is running before code binary is relocated to the link address. Signed-off-by: Soni

[U-Boot] [PATCH v1 2/3] blackfin: Add memory virtual console to blackfin serial driver.

2013-05-12 Thread Sonic Zhang
From: Sonic Zhang Signed-off-by: Sonic Zhang --- arch/blackfin/cpu/serial.c | 60 +++- 1 files changed, 59 insertions(+), 1 deletions(-) diff --git a/arch/blackfin/cpu/serial.c b/arch/blackfin/cpu/serial.c index 89290d6..c453a03 100644 --- a/arch/black

[U-Boot] [PATCH v1 3/3] blackfin: Uart divisor should be set after their values are generated.

2013-05-12 Thread Sonic Zhang
From: Sonic Zhang Signed-off-by: Sonic Zhang --- arch/blackfin/cpu/initcode.c |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/arch/blackfin/cpu/initcode.c b/arch/blackfin/cpu/initcode.c index 4b10b6c..8ef0b92 100644 --- a/arch/blackfin/cpu/initcode.c +++ b/arch/bl

[U-Boot] Unable to receive DHCP packets (qemu-system-arm)

2013-05-12 Thread pietrushnic
Hi all, I'm unable to receive DHCP packets using qemu-system-arm 1.4.91 with u-boot (commit: 2988eac). Problem occurs on Ubuntu 12.04 (I tried also Debian wheezy and there was no issue). I accidentally discover that adding '-net dump,file=/tmp/dump.pcap' cause that problem disapear, but want t

Re: [U-Boot] [PATCH 4/4 V4] CONFIG: EXYNOS5: Enable silent console

2013-05-12 Thread Rajeshwari Birje
Hi Simon, Thank you for reviewing the patches. Will soon send a patch to add the serial FDT nodes to snow as well. Regards, Rajeshwari Shinde. On Sat, May 11, 2013 at 11:41 PM, Simon Glass wrote: > On Tue, Apr 2, 2013 at 12:46 AM, Rajeshwari Shinde > wrote: >> This patch enables CONFIG_SILENT_C

[U-Boot] [PATCH] .gitignore: add GNU GLOBAL files

2013-05-12 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- .gitignore |6 ++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index ed21203..4116448 100644 --- a/.gitignore +++ b/.gitignore @@ -79,5 +79,11 @@ cscope.* /ctags /etags +# gnu global files +GPATH +GRTAGS +GSYMS +GTAGS + # sp

Re: [U-Boot] [PATCH 1/3 V5] EXYNOS5: Add gpio pin numbering feature

2013-05-12 Thread Rajeshwari Birje
Hi Simon, I applied the V5 patches on the latest u-boot-samsung tree and need seem to compile fine. Yes I will need to rebase them once the MMC patches get in, but will wait for comments from Minkyu Kang as well so that I can incorporate them and rebase the patch set once the MMC patches get in.

Re: [U-Boot] Pull request: u-boot-blackfin

2013-05-12 Thread Sonic Zhang
Hi Tom, On Sun, May 12, 2013 at 12:20 AM, Tom Rini wrote: > On Sat, May 11, 2013 at 11:27:41PM +0800, Sonic Zhang wrote: >> Hi Tom, >> >> On Thu, May 9, 2013 at 8:09 PM, Tom Rini wrote: >> > >> > Some number of these changes haven't been posted to the list for review >> > yet. I'm pretty sure.

Re: [U-Boot] [PATCH 4/4] EXYNOS: Move files from board/samsung to arch/arm.

2013-05-12 Thread Rajeshwari Birje
Hi Simon, Thank you for reviewing the patch set. You need to apply the following patches for it to compile and work fine. EXYNOS: Add API for power reset and exit wakeup EXYNOS: LDS file move to common EXYNOS4210: Configure GPIO for uart EXYNOS: Move files from board/samsung to arch/arm. >From t

Re: [U-Boot] ARM: cfi_flash: Fix unaligned accesses to cfi_qry structure

2013-05-12 Thread Marek Vasut
Hello Masahiro-san > Hi, Marek Vasut > > > Hello Masahiro-san, > > > > > Dear Andrew Gabbasov, > > > > This way of starting emails seems to be dangerously widely adopted ;-D > > Thank you for your respond, but I could not understand what you mean. > Do you mean that starting emails with "Dear"

Re: [U-Boot] [PATCH v3] at91sam9x5ek: Pass serial and revision tags to Linux

2013-05-12 Thread Bo Shen
Hi Julius, On 5/11/2013 13:01, Julius Hemanth P wrote: If Bo doesn't have any code in pipeline as of now, then I shall start working on it. Now, I don't have code in pipeline, you can work this on it. Thanks. BTW, you can take the reference code on github: https://github.com/linux4sam/at91bo

Re: [U-Boot] [PATCH v6 1/4] usb: hub: make minimum power-on delay configurable

2013-05-12 Thread Marek Vasut
Dear Kuo-Jung Su, > From: Kuo-Jung Su > > This patch makes the minimum power-on delay for USB HUB > become configurable. The original design waits at least > 100 msec here, but some EHCI controlers(e.g. Faraday EHCI) > are known to require much longer delay interval. > > Signed-off-by: Kuo-Jung

Re: [U-Boot] [PATCH v6 2/4] usb: ehci: add weak-aliased functions to portsc & tdi

2013-05-12 Thread Marek Vasut
Dear Kuo-Jung Su, > From: Kuo-Jung Su > > There is at least one non-EHCI compliant controller (i.e. Faraday EHCI) > known to implement a non-standard TDI stuff. > Futhermore, it not only leave reserved and CONFIGFLAG registers > un-implemented but also has their address spaces removed. > > And

Re: [U-Boot] [PATCH 1/2] buildman: Allow conflicting tags to avoid spurious errors

2013-05-12 Thread Simon Glass
On Mon, May 6, 2013 at 8:33 AM, Simon Glass wrote: > Hi Tom, > > On Fri, May 3, 2013 at 5:25 PM, Tom Rini wrote: >> On Thu, May 02, 2013 at 05:46:02PM -0700, Simon Glass wrote: >> >>> Conflicting tags can prevent buildman from building two series which exist >>> one after the other in a branch. T

Re: [U-Boot] [RFC PATCH] patman: Do not hardcode python path

2013-05-12 Thread Simon Glass
On Mon, May 6, 2013 at 1:03 PM, Simon Glass wrote: > On Mon, May 6, 2013 at 8:14 AM, Tom Rini wrote: >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> On 05/06/2013 10:11 AM, Michal Simek wrote: >>> Patman requires python 2.7.4 to run but it doesn't need to be >>> placed in /usr/bin/pytho

Re: [U-Boot] ARM: cfi_flash: Fix unaligned accesses to cfi_qry structure

2013-05-12 Thread Masahiro Yamada
Hi, Marek Vasut > Hello Masahiro-san, > > > Dear Andrew Gabbasov, > > This way of starting emails seems to be dangerously widely adopted ;-D Thank you for your respond, but I could not understand what you mean. Do you mean that starting emails with "Dear" is something strange? Starting with "Hi

[U-Boot] [RFC PATCH 6/7] Enable Kconfig for U-Boot

2013-05-12 Thread Simon Glass
To use this, do make -f Makefile.kbuild when building U-Boot, instead of just make Signed-off-by: Simon Glass --- .gitignore| 6 ++ config.mk | 5 + init/Makefile | 21 + init/main.c | 0 rules.mk | 25 + 5 files chan

[U-Boot] [RFC PATCH 1/7] Add some required Kconfig files

2013-05-12 Thread Simon Glass
We need a few of these just to get things started. Signed-off-by: Simon Glass --- Kconfig | 11 +++ arch/Kconfig | 0 arch/arm/Kconfig | 0 arch/sandbox/Kconfig | 8 arch/x86/Kconfig | 0 5 files changed, 19 insertions(+) create mode 100644 Kcon

[U-Boot] [RFC PATCH 3/7] Tidy up Makefiles to use COBJS consistently

2013-05-12 Thread Simon Glass
Some Makefiles doen't define COBJS, but just use COBJS-y directly. This messes with our Kconfig script which uses COBJS to decide which objects are needed. Also, for directories where COBJS produces an empty list, COBJS- must be defined and non-empty, otherwise Kconfig will not create the empty bu

[U-Boot] [RFC PATCH 5/7] Adjust Kconfig scripts for use by U-Boot

2013-05-12 Thread Simon Glass
This is an intial stab at changing Kconfig for U-Boot. So far it is missing many things, notably SPL support and binary output. Also the output file is vmlinux instead of u-boot. Linux modules are not supported, but it is quite possible that some enterprising soul will want to implement modules in

[U-Boot] [RFC PATCH 2/7] arm: Allow start.o to come from any directory

2013-05-12 Thread Simon Glass
Instead of explicitly speciying the directory for start.o, use any. There should be only one. Signed-off-by: Simon Glass --- arch/arm/cpu/u-boot.lds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/cpu/u-boot.lds b/arch/arm/cpu/u-boot.lds index d9bbee3..49d47d1 100644

[U-Boot] [RFC PATCH 0/7] RFC: Add Kbuild system to U-Boot

2013-05-12 Thread Simon Glass
Kbuild in U-Boot has been talked about for a while and I know of at least one functioning attempt and mentions of independent progress. But I don't see any patches on the mailing list and various people have suggested that nothing is far advanced yet, so I decided to take a look. For this effort,

[U-Boot] [PATCH v6 4/4] usb: gadget: add Faraday FOTG210 USB gadget support

2013-05-12 Thread Kuo-Jung Su
From: Kuo-Jung Su The Faraday FOTG210 is an OTG chip which could operate as either an EHCI Host or a USB Device at a time. Signed-off-by: Kuo-Jung Su CC: Marek Vasut --- Changes for v6: - Nothing updates Changes for v5: - Coding Style cleanup. - Drop postfix '__iomem' from struct fot

[U-Boot] [PATCH v6 3/4] usb: ehci: add Faraday USB 2.0 EHCI support

2013-05-12 Thread Kuo-Jung Su
From: Kuo-Jung Su This patch adds support to both Faraday FUSBH200 and FOTG210, the differences between Faraday EHCI and standard EHCI are listed bellow: 1. The PORTSC starts at 0x30 instead of 0x44. 2. The CONFIGFLAG(0x40) is not only un-implemented, and also has its address space removed. 3

[U-Boot] [PATCH v6 2/4] usb: ehci: add weak-aliased functions to portsc & tdi

2013-05-12 Thread Kuo-Jung Su
From: Kuo-Jung Su There is at least one non-EHCI compliant controller (i.e. Faraday EHCI) known to implement a non-standard TDI stuff. Futhermore, it not only leave reserved and CONFIGFLAG registers un-implemented but also has their address spaces removed. And thus, we need weak-aliased function

[U-Boot] [PATCH v6 1/4] usb: hub: make minimum power-on delay configurable

2013-05-12 Thread Kuo-Jung Su
From: Kuo-Jung Su This patch makes the minimum power-on delay for USB HUB become configurable. The original design waits at least 100 msec here, but some EHCI controlers(e.g. Faraday EHCI) are known to require much longer delay interval. Signed-off-by: Kuo-Jung Su CC: Marek Vasut --- Changes f

[U-Boot] [PATCH v6 0/4] usb: add Faraday EHCI & Gadget support

2013-05-12 Thread Kuo-Jung Su
From: Kuo-Jung Su This patch adds support to both Faraday FUSBH200 and FOTG210, the differences between Faraday EHCI and standard EHCI are listed bellow: 1. The PORTSC starts at 0x30 instead of 0x44. 2. The CONFIGFLAG(0x40) is not only un-implemented, and also has its address removed. 3. Fara

Re: [U-Boot] [PATCH v5 1/4] usb: hub: make minimum power-on delay configurable

2013-05-12 Thread Kuo-Jung Su
2013/5/10 Marek Vasut : > Dear Kuo-Jung Su, > >> From: Kuo-Jung Su >> >> This patch makes the minimum power-on delay for USB HUB >> become configurable. The original design waits at least >> 100 msec here, but some EHCI controlers(e.g. Faraday EHCI) >> are known to require much longer delay interv

Re: [U-Boot] [PATCH v5 2/4] usb: ehci: add weak-aliased functions to portsc & tdi

2013-05-12 Thread Kuo-Jung Su
2013/5/10 Marek Vasut : > Dear Kuo-Jung Su, > >> From: Kuo-Jung Su >> >> There is at least one non-EHCI compliant controller (i.e. Faraday EHCI) >> known to implement a non-standard TDI stuff. >> Futhermore, it not only leave reserved and CONFIGFLAG registers >> un-implemented but also has their a

[U-Boot] [PATCH] wandboard: fix typo in README

2013-05-12 Thread Luka Perkov
Fix typo in wandboard README file. Signed-off-by: Luka Perkov --- board/wandboard/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/wandboard/README b/board/wandboard/README index e0b0b33..ce83bbe 100644 --- a/board/wandboard/README +++ b/board/wandboard/README

Re: [U-Boot] [PATCH 6/6] am335x_evm: Add support to boot from NOR.

2013-05-12 Thread Peter Korsgaard
> "Tom" == Tom Rini writes: >> Why not use SPL when booting from NOR as well? You still want to >> relocate into DDR. Tom> Frankly, I'm allergic to SPL for NOR. It's the historical and well Tom> understood case, we're r/o until we move from flash to DDR. And it is Tom> fast enough he

Re: [U-Boot] [PATCH 6/6] am335x_evm: Add support to boot from NOR.

2013-05-12 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 05/12/2013 05:34 PM, Peter Korsgaard wrote: >> "Tom" == Tom Rini writes: > > Tom> From: Steve Kipisz Tom> NOR requires that > s_init be within the first 4KiB of the image so that Tom> we can > perform the rest of the required pinmuxing to t

Re: [U-Boot] [PATCH 6/6] am335x_evm: Add support to boot from NOR.

2013-05-12 Thread Peter Korsgaard
> "Tom" == Tom Rini writes: Tom> From: Steve Kipisz Tom> NOR requires that s_init be within the first 4KiB of the image so that Tom> we can perform the rest of the required pinmuxing to talk with the rest Tom> of NOR that we are found on. When NOR_BOOT is set we save our Tom> environme

Re: [U-Boot] [PATCH 5/6] am335x_evm:Add support for the NOR module on the memory cape

2013-05-12 Thread Peter Korsgaard
> "Tom" == Tom Rini writes: Space missing after ':' in subject. Tom> From: Steve Kipisz Tom> This patch adds support for the NOR module that attaches Tom> to the memory cape for a Beaglebone board. This does not Tom> add booting support; only support so that you can boot from Tom> SD/M

Re: [U-Boot] [PATCH 2/6] am335x_evm: Add MTDPARTS info for SPI flash

2013-05-12 Thread Peter Korsgaard
> "Tom" == Tom Rini writes: Tom> Signed-off-by: Tom Rini Tom> --- Tom> include/configs/am335x_evm.h |7 +++ Tom> 1 file changed, 7 insertions(+) Tom> diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h Tom> index 945ec09..004a06a 100644 Tom> --- a/includ

Re: [U-Boot] [PATCH 3/6] am335x_evm: Only set CONFIG_NAND when !CONFIG_SPI_BOOT

2013-05-12 Thread Peter Korsgaard
> "Tom" == Tom Rini writes: Tom> Due to hardware design, we can't have NAND present (as we know of NAND Tom> today) when booting from SPI, so disable NAND then as that simplifies Tom> logic. Sorry, this description is not clear to me. I didn't check in detail, but as far as I remember the

Re: [U-Boot] [PATCH 1/6] am335x_evm: Drop useless CONFIG_ENV_IS_NOWHERE

2013-05-12 Thread Peter Korsgaard
> "Tom" == Tom Rini writes: Tom> We always set a CONFIG_ENV_IS_...somewhere... so drop the initial define Tom> of NOWHERE. Tom> Signed-off-by: Tom Rini Reviewed-by: Peter Korsgaard -- Bye, Peter Korsgaard ___ U-Boot mailing list U-Boot@list

Re: [U-Boot] [PATCH 2/2 v12] Introduced btrfs file-system with btrload command

2013-05-12 Thread Wolfgang Denk
Dear Adnan Ali, In message <81c88340404a46b9a36590eded5e3...@codethink.co.uk> you wrote: > > >> > - Compare the code for crc32c_cal() in the patch with the > >> definition > >> >of DO_CRC(x) in "lib/crc32.c" - to me, it appears to be the > >> same for > >> >little endian code (it is redu

Re: [U-Boot] [U-Boot, 2/2] arm: at91: add at91sam9g20ek_mmc_config, which can save environment in mmc card

2013-05-12 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu writes: >Signed-off-by: Josh Wu > >--- >boards.cfg |1 + > include/configs/at91sam9260ek.h | 18 +- > 2 files changed, 18 insertions(+), 1 deletion(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann _

[U-Boot] [PULL] please pull u-boot-atmel/master

2013-05-12 Thread Andreas Bießmann
Dear Albert Aribaud, please pull the following changes from u-boot-atmel/master into u-boot-arm/master. The following changes since commit cac423a730d3506154744485af1bbc1cd3a1e6a8: Merge branch 'u-boot-ti/master' into 'u-boot-arm/master' (2013-05-11 22:24:28 +0200) are available in the git r

Re: [U-Boot] [U-Boot,v2] at91sam9260ek: move board id setup to config header

2013-05-12 Thread Andreas Bießmann
Dear Andreas Bießmann, Andreas Bießmann writes: >Signed-off-by: Andreas Bießmann >Acked-by: Bo Shen > >--- >Changes in v2: > * use only one ifdef for sam9G variants > > board/atmel/at91sam9260ek/at91sam9260ek.c | 12 > include/configs/at91sam9260ek.h | 18 +

Re: [U-Boot] [U-Boot,2/2] mmc: atmel_mci: add mmc card support

2013-05-12 Thread Andreas Bießmann
Dear Bo Shen, Bo Shen writes: >add mmc card support with atmel mci driver > >Signed-off-by: Bo Shen > >--- >drivers/mmc/gen_atmel_mci.c |5 - > 1 file changed, 4 insertions(+), 1 deletion(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann _

Re: [U-Boot] [U-Boot,1/2] mmc: atmel_mci: using IP version for different setting

2013-05-12 Thread Andreas Bießmann
Dear Bo Shen, Bo Shen writes: >Using IP version for different setting > - Higher version supports 8bit mode > - Higher version bus width setting is different > >Signed-off-by: Bo Shen > >--- >drivers/mmc/gen_atmel_mci.c | 42 ++ > include/atmel_mci.h

Re: [U-Boot] [U-Boot,1/2] arm: at91: enable mci support for at91sam9g20ek.

2013-05-12 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu writes: >Signed-off-by: Josh Wu > >--- >arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c |4 > board/atmel/at91sam9260ek/at91sam9260ek.c | 10 ++ > include/configs/at91sam9260ek.h | 16 ++-- > 3 files changed, 28 inse

Re: [U-Boot] [U-Boot,v4,3/3] arm: at91: add at91sam9n12ek board support

2013-05-12 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu writes: >Add support for following features: > - nand boot, with PMECC 2bit ECC for 512 bytes sector > - SPI flash boot > - SD card boot > - LCD support > >Signed-off-by: Josh Wu >[fix -Wimplicit-function-declaration for at91_lcd_hw_init()] >Signed-off-by: Andreas Bießm

Re: [U-Boot] [U-Boot,v4,2/3] arm: at91: add at91sam9n12 register definition

2013-05-12 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu writes: >Since at91sam9n12 is a subset of at91sam9x5, so put all at91sam9n12 >definitions in at91sam9x5 head file. > >Signed-off-by: Josh Wu > >--- >arch/arm/include/asm/arch-at91/at91sam9_matrix.h |2 +- > arch/arm/include/asm/arch-at91/at91sam9x5.h| 19

Re: [U-Boot] [U-Boot, v4, 1/3] spi: atmel_spi: using ip version to check whether has wdrbt

2013-05-12 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu writes: >From: Bo Shen > >Using IP version to check whether it has wdrbt bit in mode register > >Tested in at91sam9x5ek and at91sam9n12ek. > >Signed-off-by: Bo Shen >[fix warning about incompatible parameter] >Signed-off-by: Josh Wu > >--- >changes since v3: > - rebase o

Re: [U-Boot] [U-Boot,v4,3/3] arm: at91: add at91sam9n12ek board support

2013-05-12 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu writes: >Add support for following features: > - nand boot, with PMECC 2bit ECC for 512 bytes sector > - SPI flash boot > - SD card boot > - LCD support > >Signed-off-by: Josh Wu >[fix -Wimplicit-function-declaration for at91_lcd_hw_init()] >Signed-off-by: Andreas Bießm

Re: [U-Boot] [U-Boot,v4,2/3] arm: at91: add at91sam9n12 register definition

2013-05-12 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu writes: >Since at91sam9n12 is a subset of at91sam9x5, so put all at91sam9n12 >definitions in at91sam9x5 head file. > >Signed-off-by: Josh Wu > >--- >arch/arm/include/asm/arch-at91/at91sam9_matrix.h |2 +- > arch/arm/include/asm/arch-at91/at91sam9x5.h| 19

Re: [U-Boot] [U-Boot, v4, 1/3] spi: atmel_spi: using ip version to check whether has wdrbt

2013-05-12 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu writes: >From: Bo Shen > >Using IP version to check whether it has wdrbt bit in mode register > >Tested in at91sam9x5ek and at91sam9n12ek. > >Signed-off-by: Bo Shen >[fix warning about incompatible parameter] >Signed-off-by: Josh Wu > >--- >changes since v3: > - rebase o

Re: [U-Boot] [PATCH 2/2 v12] Introduced btrfs file-system with btrload command

2013-05-12 Thread Adnan Ali
On 2013-05-09 22:43, Wolfgang Denk wrote: Dear Adnan Ali, In message <518bb8c7.3090...@codethink.co.uk> you wrote: > - Why do we have to calculate the crc32c_table[] at runtime? Our >regular CRC code uses a pre-calculated table; we should do the same >here. This is part of t

Re: [U-Boot] [Patch v2 3/3] ARM: at91sam9n12: add network support with ksz8851_16mll

2013-05-12 Thread Andreas Bießmann
Dear Bo Shen, On 24.04.2013 04:46, Bo Shen wrote: add network support with ksz8851_16mll on at91sam9n12ek board Signed-off-by: Bo Shen Acked-by: Andreas Bießmann --- Change in v2 No change --- board/atmel/at91sam9n12ek/at91sam9n12ek.c | 36 + include/co

Re: [U-Boot] [Patch v2 4/4] ARM: atmel: add sama5d3xek support

2013-05-12 Thread Andreas Bießmann
Dear Bo Shen, On 12.03.2013 07:15, Bo Shen wrote: Add sama5d3xek support with following feature - boot from NAND flash, PMECC support, 4bit ECC @ 512 bytes sector - boot from SPI flash support - boot from SD card support - LCD support - EMAC support - USB support (OHCI) no ob

Re: [U-Boot] [Patch v2 2/4] NET: macb: support sama5d3x devices

2013-05-12 Thread Andreas Bießmann
Dear Bo Shen, On 12.03.2013 07:15, Bo Shen wrote: Add macb support for sama5d3x devices Signed-off-by: Bo Shen --- change in v2: No change --- drivers/net/macb.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 8ba

Re: [U-Boot] [Patch v2 3/4] SPI: atmel_spi: support sama5d3x devices

2013-05-12 Thread Andreas Bießmann
Dear Bo Shen, On 12.03.2013 07:15, Bo Shen wrote: Add WDRBT bit support for sama5d3x devices Signed-off-by: Bo Shen --- Change in v2: no change --- drivers/spi/atmel_spi.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/spi/atmel_spi.c b/drivers/spi/atmel

Re: [U-Boot] [Patch v2 1/4] USB: ohci-at91: support sama5d3x devices

2013-05-12 Thread Andreas Bießmann
Dear Bo Shen, On 12.03.2013 07:15, Bo Shen wrote: Add OHCI support for sama5d3x devices can you please rebase this patch and send again? Signed-off-by: Bo Shen --- change in v2: - change #if defined to #ifdef for sama5d3 --- drivers/usb/host/ohci-at91.c | 14 -- 1 file

Re: [U-Boot] [PATCH 2/4] arm: make __image_copy_{start, end} compiler-generated

2013-05-12 Thread Albert ARIBAUD
On Sat, 11 May 2013 22:13:51 +0200, Albert ARIBAUD wrote: > Hence, if an SPL script sort-of-hardcodes image start and end (or > relocation symbols as some do), then I prefer to leave it alone for now > and handle in the linker script factoring series later. ... but I do realize in some cases I r