Re: [U-Boot] [PATCH 6/9] mx1: improve PLL freq computation

2011-08-11 Thread Stefano Babic
On 08/12/2011 02:03 AM, Eric Jarrige wrote: > Hi Stefano, > > On 11 août 2011, at 11:22, Stefano Babic wrote: > >> On 08/10/2011 10:33 PM, Eric Jarrige wrote: >>> Improve PLL freq computation by using the full resolution of the PLL >>> registers >> >> Hi Eric, >> >>> + return (2*(u64)sys_clk_f

Re: [U-Boot] [PATCH 3/9] apf9328: Add Armadeus Project board APF9328

2011-08-11 Thread Stefano Babic
On 08/12/2011 01:41 AM, Eric Jarrige wrote: Hi Eric, >>> +int board_init(void) +{ + gd->bd->bi_arch_number = >>> CONFIG_MACH_TYPE; >> >> Is there no MACH_TYPE for this board ? It is uncommon for an ARM >> board. Should this board run Linux ? > The MACH_TYPE for this board is 906. This board run

[U-Boot] [PATCH v5 1/3] gpio: Move common gpio.h to include/asm-generic

2011-08-11 Thread Joe Hershberger
Common GPIO API used by cmd_gpio should be available to any arch Signed-off-by: Joe Hershberger Cc: Joe Hershberger Cc: Kim Phillips Cc: Mike Frysinger --- Changes for v4: - Split out of patch 1/2 Changes for v5: - Moved asm/arch/gpio.h include to asm/gpio.h arch/arm/include/asm/gpio.h

[U-Boot] [PATCH v5 2/3] mpc83xx: Add a GPIO driver for the MPC83XX family

2011-08-11 Thread Joe Hershberger
Signed-off-by: Joe Hershberger Cc: Joe Hershberger Cc: Kim Phillips --- Changes for v2: - Improved names of INIT constants (to include "CONFIG_") - Moved changes to board/freescale/mpc8313erdb/mpc8313erdb.c to patch 2/2 Changes for v3: - gpio_init_* is now mpc83xx_gpio_init_* Changes for v4:

[U-Boot] [PATCH v5 3/3] mpc8313erdb: Enable GPIO support on the MPC8313E RDB

2011-08-11 Thread Joe Hershberger
Signed-off-by: Joe Hershberger Cc: Joe Hershberger Cc: Kim Phillips --- Changes for v2: - Moved changes to board/freescale/mpc8313erdb/mpc8313erdb.c from patch 1/2 Changes for v3: - Renamed gpio_init_* to mpc83xx_gpio_init_* - Added board_early_init_r support to MPC8313ERDB targets Changes fo

[U-Boot] HONDA PROMOTION 2011

2011-08-11 Thread HONDA COMPANY UK
Your email has won £1,750,000.00 GBP Contact richard_hcuk...@pkuit.com For More information. Mr. Berenice Lopez (Program Co-ordinator.) ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 2/2] powerpc/p1023rds: Enable nand node and disable nor node

2011-08-11 Thread Chunhe Lan
In the p1023rds, accessing exclusively nor flash or nand flash device by BR0/OR0. When booting from nor flash, nand node is disabled and nor node is enabled in the default dtb. So, when booting from nand flash, nand node should be enabled and nor node should be disabled. Signed-off-by: Chunhe Lan

[U-Boot] [PATCH 1/2] fdt: Add a fdt_set_node_status function

2011-08-11 Thread Chunhe Lan
Add a fdt_set_node_status function that will set the specified node's status to the value contained in "status". If the node doesn't have "status" property that will be created. Signed-off-by: Chunhe Lan --- common/fdt_support.c | 17 - include/fdt_support.h |3 +++ 2 file

Re: [U-Boot] [PATCH v3] mips32: fix wrong loop bound in flush_cache()

2011-08-11 Thread Shinya Kuribayashi
Hi, On 08/10/2011 04:11 PM, Yao Cheng wrote: > The issue is found when calling flush_cache() with zero "size" argument. > The bound of loop is miscalculated in this case and flush_cache() enters a > wrong flushing loop. > To fix this issue I skipped the operations when "size" is found to be zero.

Re: [U-Boot] [PATCH 3/9] apf9328: Add Armadeus Project board APF9328

2011-08-11 Thread Eric Jarrige
Hi Stefano, > On 08/10/2011 10:33 PM, Eric Jarrige wrote: >> Add Armadeus Project board APF9328 >> >> Signed-off-by: Eric Jarrige >> Signed-off-by: Nicolas Colombain > > Hi Eric, > > >> diff --git a/board/armadeus/apf9328/apf9328.c >> b/board/armadeus/apf9328/apf9328.c >> new file mode 1006

Re: [U-Boot] [PATCH 6/9] mx1: improve PLL freq computation

2011-08-11 Thread Eric Jarrige
Hi Stefano, > > On 11 août 2011, at 11:22, Stefano Babic wrote: > >> On 08/10/2011 10:33 PM, Eric Jarrige wrote: >>> Improve PLL freq computation by using the full resolution of the PLL >>> registers >> >> Hi Eric, >> >>> + return (2*(u64)sys_clk_freq * (mfi*(mfd+1) + mfn))/((mfd+1)*(pd+1));

Re: [U-Boot] [PATCH 2/9] mx1: add i2c registers

2011-08-11 Thread Eric Jarrige
Hi Stefano, On 11 août 2011, at 10:52, Stefano Babic wrote: > On 08/10/2011 10:33 PM, Eric Jarrige wrote: >> Add i2c registers for Freescale imx1/L/S >> >> Signed-off-by: Eric Jarrige >> Cc: Stefano Babic >> --- >> arch/arm/include/asm/arch-imx/imx-regs.h | 23 +++ >> 1 fi

Re: [U-Boot] [PATCH 6/9] mx1: improve PLL freq computation

2011-08-11 Thread Eric Jarrige
Hi Stefano, On 11 août 2011, at 11:22, Stefano Babic wrote: > On 08/10/2011 10:33 PM, Eric Jarrige wrote: >> Improve PLL freq computation by using the full resolution of the PLL >> registers > > Hi Eric, > >> +return (2*(u64)sys_clk_freq * (mfi*(mfd+1) + mfn))/((mfd+1)*(pd+1)); >> +} >> >

[U-Boot] [PATCH v4] USB: Add align(4) in __attribute__ ((packed)) for struct ehci_hccr and ehci_hcor

2011-08-11 Thread Joel A Fernandes
From: Jason Kridner Switched to align(4) to prevent byte access to soc registers in some gcc versions. Credits have to go to Laine Walker-Avina for finding the problem. Signed-off-by: Jason Kridner Signed-off-by: Joel A Fernandes Cc: Koen Kooi Cc: Alexander Holler Cc: Sandeep Paulraj Cc

[U-Boot] [PATCH 1/1 V2] add support for mcf5307 cpu

2011-08-11 Thread Angelo Dureghello
Add cpu related files and memory map includes. Apply the related minor changes to general coldfire architecture include files. Signed-off-by: Angelo Dureghello --- arch/m68k/cpu/mcf530x/Makefile | 48 +++ arch/m68k/cpu/mcf530x/config.mk| 25 arch/m68k/cpu/mcf530x/cpu.c

[U-Boot] [PATCH 0/1 V2] add support for mcf5307 cpu

2011-08-11 Thread Angelo Dureghello
Add support for mcf5307 cpu V1 Initial wrong formatted patch V2 Following general patch submission rules arch/m68k/cpu/mcf530x/Makefile | 48 +++ arch/m68k/cpu/mcf530x/config.mk| 25 arch/m68k/cpu/mcf530x/cpu.c| 48 +++ arch/m68k/cpu/mcf530x/cpu.h| 33

Re: [U-Boot] Prize Won

2011-08-11 Thread Claudette Moloney
From: Claudette Moloney Sent: Thursday, August 11, 2011 1:03 PM To: Claudette Moloney Subject: Prize Won This is a confidential message from the Microsoft/Yahoo Office, You have been approved by the Microsoft/Yahoo Foundation Payment Board to receive a cash gr

[U-Boot] [PATCH v2] OMAP: Remove omapfb.debug=y from Beagle and Overo env settings

2011-08-11 Thread Joel A Fernandes
From: Steve Sakoman The kernel DSS2 code is mature now, and keeping this setting hurts performance Signed-off-by: Steve Sakoman Signed-off-by: Joel A Fernandes --- Changes since v1: Added myself to SOB include/configs/omap3_beagle.h |2 -- include/configs/omap3_overo.h |2 -- 2 file

Re: [U-Boot] [PATCH] OMAP: Remove omapfb.debug=y from Beagle and Overo env settings

2011-08-11 Thread Joel A Fernandes
On Thu, Aug 11, 2011 at 1:24 PM, Jason Kridner wrote: > On Thu, Aug 11, 2011 at 1:34 AM, Joel A Fernandes > wrote: >> From: Steve Sakoman >> >> >> The kernel DSS2 code is mature now, and keeping this setting hurts >> performance >> >> Signed-off-by: Steve Sakoman > > Acked-by: Jason Kridner

Re: [U-Boot] THANKS

2011-08-11 Thread Song Li
l am a Staff of Hang Seng Bank HongKong, I do not know if we can work together in transferring $19,500,000.USD from my bank to you account. Finally if you are interested I shall provide you with more details. Email: song...@w.cn ___ U-Boot mailing list U-

Re: [U-Boot] [u-boot-release] [Patch v3] powerpc/eeprom: cleanup mac command

2011-08-11 Thread Tabi Timur-B04825
I see two calls to simple_stroul, and both have 16 in them. -- Timur Tabi Linux kernel developer at Freescale From: sun york-R58495 Sent: Thursday, August 11, 2011 10:03 AM To: Tabi Timur-B04825 Cc: u-boot@lists.denx.de Subject: Re: [u-boot-release] [Patch

Re: [U-Boot] [PATCH] OMAP: Remove omapfb.debug=y from Beagle and Overo env settings

2011-08-11 Thread Jason Kridner
On Thu, Aug 11, 2011 at 1:34 AM, Joel A Fernandes wrote: > From: Steve Sakoman > > > The kernel DSS2 code is mature now, and keeping this setting hurts performance > > Signed-off-by: Steve Sakoman Acked-by: Jason Kridner + Sandeep and Khasim Joel, shouldn't we have your signed-off-by as well

Re: [U-Boot] [PATCH] beagleboard: add support for xM revision C

2011-08-11 Thread Jason Kridner
On Thu, Aug 11, 2011 at 1:50 AM, Joel A Fernandes wrote: > From: Koen Kooi > > > Signed-off-by: Koen Kooi > Signed-off-by: Joel A Fernandes Acked-by: Jason Kridner + Sandeep and Khasim > --- >  board/ti/beagle/beagle.c |   10 ++ >  board/ti/beagle/beagle.h |    1 + >  2 files change

Re: [U-Boot] [PATCH] OMAP3 Beagle Pin Mux initialization glitch fix

2011-08-11 Thread Jason Kridner
On Thu, Aug 11, 2011 at 1:26 AM, Joel A Fernandes wrote: > From: Bob Feretich > > From: Bob Feretich > > The below patch reverses the order of two segments in the board file. > Output pins need to have their values initialized, before they are > exposed to the logic outside the chip. > > Previou

Re: [U-Boot] [PATCH] beagle: pass expansionboard name in bootargs

2011-08-11 Thread Jason Kridner
On Thu, Aug 11, 2011 at 1:47 AM, Joel A Fernandes wrote: > From: Koen Kooi > > > Signed-off-by: Koen Kooi > Signed-off-by: Joel A Fernandes Acked-by: Jason Kridner I've put Sandeep (TI maintainer) and Khasim (BeagleBoard u-boot owner) in copy. > --- >  include/configs/omap3_beagle.h |    3

Re: [U-Boot] relocation problem (again)

2011-08-11 Thread Detlev Zundel
Hi Reinhard, > Dear Cajus Hahn, >> Dear Marcel, Dear Reinhard, >> >> sorry I forgot to mention, that this is in reply to >> http://lists.denx.de/pipermail/u-boot/2011-January/084499.html > > I suppose you have not followed the steps I pointed out then? > >> >> I have the same problem with my bo

[U-Boot] Supplier LED Tube with UL

2011-08-11 Thread marine zeng
How are you? I am Marine Maysun International ltd ofChina, our company isspecialized in manufacturing LED lighting products. If you interest in our products LED lighting, you can visit our website: http://www.maysungroup.com And now I offer a product: LED Tube Length:600mm,900mm,1200mm,1

Re: [U-Boot] [PATCH 8/9] DM9000: change some printf to use debug instead

2011-08-11 Thread Eric Jarrige
Hi Simon, Hi Detlev, > Hi Simon, > >> Dear Eric Jarrige, >> >> On 08/10/2011 10:33 PM, Eric Jarrige wrote: >>> Signed-off-by: Eric Jarrige >>> Cc: Ben Warren >>> --- >>> drivers/net/dm9000x.c |8 >>> 1 files changed, 4 insertions(+), 4 deletions(-) >>> >>> diff --git a/drivers/net

[U-Boot] [Patch v4] powerpc/eeprom: cleanup mac command

2011-08-11 Thread York Sun
Change the help message to be more helpful. Print argument format. Fix MAX_NUM_PORTS to comply with v1 NXID format. Accept hexadecimal and decimal for port count and index. Signed-off-by: York Sun --- board/freescale/common/sys_eeprom.c |8 common/cmd_mac.c| 29

Re: [U-Boot] relocation problem (again)

2011-08-11 Thread Reinhard Meyer
Dear Cajus Hahn, > Dear Marcel, Dear Reinhard, > > sorry I forgot to mention, that this is in reply to > http://lists.denx.de/pipermail/u-boot/2011-January/084499.html I suppose you have not followed the steps I pointed out then? > > I have the same problem with my board and the actual u-boot-

Re: [U-Boot] [u-boot-release] [Patch v3] powerpc/eeprom: cleanup mac command

2011-08-11 Thread York Sun
On Thu, 2011-08-11 at 09:55 -0500, Tabi Timur-B04825 wrote: > York Sun wrote: > > - e.mac_count = simple_strtoul(argv[2], NULL, 16); > > + e.mac_count = simple_strtoul(argv[2], NULL, 10); > > You forgot the MAC address index. There's another use of strtoul in the > code that

Re: [U-Boot] relocation problem

2011-08-11 Thread Reinhard Meyer
Dear Cajus Hahn, > Dear Marcel, Dear Reinhard, > > I have the same problem with my board and the actual u-boot-atmel (git > from 5th Aug. 2011). It even looks like I am using the same board. > It is a in-circuit ICnova SAM9G45 OEM on a ADB1000 with a 5" display. > > Actually I use the u-boot from

Re: [U-Boot] Pull request: u-boot-arm/master -- updated

2011-08-11 Thread Aneesh V
Hi Albert, Sandeep On Thursday 04 August 2011 10:34 PM, Albert ARIBAUD wrote: > Hi Wolfgang, > > Here is my pull request for u-boot-arm/master, from which I did remove > the wrongly applied commits that you indicated and in which all patches > submitted before the merge window closure are taken in

[U-Boot] relocation problem (again)

2011-08-11 Thread Cajus Hahn
Dear Marcel, Dear Reinhard, sorry I forgot to mention, that this is in reply to http://lists.denx.de/pipermail/u-boot/2011-January/084499.html I have the same problem with my board and the actual u-boot-atmel (git from 5th Aug. 2011). It even looks like I am using the same board. It is a in-circ

Re: [U-Boot] [u-boot-release] [Patch v3] powerpc/eeprom: cleanup mac command

2011-08-11 Thread Tabi Timur-B04825
York Sun wrote: > - e.mac_count = simple_strtoul(argv[2], NULL, 16); > + e.mac_count = simple_strtoul(argv[2], NULL, 10); You forgot the MAC address index. There's another use of strtoul in the code that needs to be fixed. Also, if you use "0" instead of "10", then it sh

[U-Boot] [Patch v3] powerpc/eeprom: cleanup mac command

2011-08-11 Thread York Sun
Change the help message to be more helpful. Print argument format. Fix MAX_NUM_PORTS to comply with v1 NXID format. Use decimal for port count. Signed-off-by: York Sun --- board/freescale/common/sys_eeprom.c |4 ++-- common/cmd_mac.c| 29 + 2

[U-Boot] [PATCH 7/7] omap-common: fixes BSS overwriting problem

2011-08-11 Thread Simon Schwarz
spl_nand overwrote BSS section because it reads a whole block everytime. Now loads the block to spare area and just copy the needed junk to destination. Whole block read is necessary for ecc check! Signed-off-by: Simon Schwarz --- arch/arm/cpu/armv7/omap-common/spl_nand.c | 21

[U-Boot] [PATCH 5/7] devkit8000/spl: init GPMC for dm9000 in SPL

2011-08-11 Thread Simon Schwarz
Linux crashes if the GPMC isn't configured for the dm9000. Signed-off-by: Simon Schwarz --- arch/arm/cpu/armv7/omap-common/spl.c |1 + arch/arm/include/asm/omap_common.h |2 ++ board/timll/devkit8000/devkit8000.c | 33 - 3 files changed, 27 insertions

[U-Boot] [PATCH 6/7] omap-common: Add NAND SPL linux booting

2011-08-11 Thread Simon Schwarz
This implements booting of Linux from NAND in SPL Signed-off-by: Simon Schwarz --- arch/arm/cpu/armv7/omap-common/spl_nand.c | 48 +++- 1 files changed, 32 insertions(+), 16 deletions(-) diff --git a/arch/arm/cpu/armv7/omap-common/spl_nand.c b/arch/arm/cpu/armv7/omap-

[U-Boot] [PATCH 3/7] arm: Add savebp implementation for arm

2011-08-11 Thread Simon Schwarz
This adds the savebp implementation to the arm platform. Related CONFIGs: CONFIG_CMD_SAVEBP_WRITE_SIZE defines the size of the image to write Signed-off-by: Simon Schwarz --- arch/arm/include/asm/savebp.h | 27 arch/arm/lib/Makefile |1 + arch/arm/lib/savebp.c

[U-Boot] [PATCH 4/7] omap-common/spl: Add linux boot to SPL

2011-08-11 Thread Simon Schwarz
This adds Linux booting to the SPL Related CONFIGs: CONFIG_SPL_OS_BOOT Activates/Deactivates the OS booting feature CONFIG_SPL_OS_BOOT_KEY defines the IO-pin number u-boot switch - if pressed u-boot is booted CONFIG_SYS_SPL_MACHID Machine ID of the used board CONFIG_SYS_NAN

[U-Boot] [PATCH 2/7] Add savebp command

2011-08-11 Thread Simon Schwarz
This adds a savebp command to the u-boot. Related config: CONFIG_CMD_SAVEBP activate/deactivate the command CONFIG_CMD_SAVEBP_NAND_OFS Offset in NAND to use CONFIG_SYS_NAND_SPL_KERNEL_OFFS Offset in NAND of direct boot kernel image to use in SPL CONFIG_SYS_SPL_ARGS_ADDR

[U-Boot] [PATCH 1/7] arm: Add Prep subcommand support to bootm

2011-08-11 Thread Simon Schwarz
Adds prep subcommand to bootm implementation of ARM. When bootm is called with the subcommand prep the function stops right after ATAGS creation and before announce_and_cleanup. This is used in savebp command Signed-off-by: Simon Schwarz --- arch/arm/lib/bootm.c | 116 +

[U-Boot] [PATCH 0/7] SPL Linux boot

2011-08-11 Thread Simon Schwarz
This addds direct Linux boot to SPL. It implements a savebp command to save ATAGS or FDT to NAND flash. The kernel image has to be in place for this! checkpatch whines about not using strict_strtoull - since this is not available I can't change this. based on: - The new SPL layout - OMAP3 new SP

[U-Boot] [PATCH v3 0/4] arm: changes in cache handling

2011-08-11 Thread Aneesh V
- Avoid enabling caches for all ARM boards - Enable caches for omap3/4 - Stronger barrier for armv7 cache-maintenance operations. V2: * Rebased to latest HEAD of u-boot/master * Improved the README * Added a patch for removing the flush in invalidate and for printing a warning in such cases. V3

[U-Boot] [PATCH v3 2/4] omap: enable caches at system start-up

2011-08-11 Thread Aneesh V
Signed-off-by: Aneesh V --- arch/arm/cpu/armv7/omap3/board.c |8 arch/arm/cpu/armv7/omap4/board.c |8 2 files changed, 16 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/armv7/omap3/board.c b/arch/arm/cpu/armv7/omap3/board.c index 4aaf97b..2c3d7f3 100644 --- a/a

[U-Boot] [PATCH v3 4/4] armv7: cache: remove flush on un-aligned invalidate

2011-08-11 Thread Aneesh V
Remove the flush of boundary cache-lines done as part of invalidate on a non cache-line boundary aligned buffer Also, print a warning when this situation is recognized. Signed-off-by: Aneesh V --- V2: * New in V2 V3: * error notification instead of warning on un-aligned invalidate --- arch/arm/

[U-Boot] [PATCH v3 1/4] arm: do not force d-cache enable on all boards

2011-08-11 Thread Aneesh V
c2dd0d45540397704de9b13287417d21049d34c6 added dcache_enable() to board_init_r(). This enables d-cache for all ARM boards. As a result some of the arm boards that are not cache-ready are broken. Revert this change and allow platform code to take the decision on d-cache enabling. Also add some docu

[U-Boot] [PATCH v3 3/4] armv7: stronger barrier for cache-maintenance operations

2011-08-11 Thread Aneesh V
set-way operations need a DSB after them to ensure the operation is complete. DMB may not be enough. Use DSB after all operations instead of DMB. Signed-off-by: Aneesh V --- arch/arm/cpu/armv7/cache_v7.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm

Re: [U-Boot] [u-boot-release] [Patch v2] powerpc/eeprom: cleanup mac command

2011-08-11 Thread York Sun
On Wed, 2011-08-10 at 20:27 -0500, Tabi Timur-B04825 wrote: > York Sun wrote: > > Change the help message to be more helpful. Print argument format. > > Fix MAX_NUM_PORTS to comply with v1 NXID format. > > > > Signed-off-by: York Sun > > Could you also fix the commands so that they take a number i

Re: [U-Boot] [PATCH] tsec: Configure the buffer descriptor bases to always include all of the descriptors

2011-08-11 Thread Sergei Shtylyov
Hello. On 10-08-2011 11:12, Joe Hershberger wrote: > Previously only the last N were included based on the current one in use. > Signed-off-by: Joe Hershberger > Cc: Joe Hershberger > Cc: Mingkai Hu > Cc: Andy Fleming > Cc: Kumar Gala > Cc: Detlev Zundel > --- > drivers/net/tsec.c |4 ++--

[U-Boot] relocation problem

2011-08-11 Thread Cajus Hahn
Dear Marcel, Dear Reinhard, I have the same problem with my board and the actual u-boot-atmel (git from 5th Aug. 2011). It even looks like I am using the same board. It is a in-circuit ICnova SAM9G45 OEM on a ADB1000 with a 5" display. Actually I use the u-boot from in-circuit, which is a patched

Re: [U-Boot] [PATCH] gpio:samsung: s5p_ suffix add for GPIO functions (C210_universal)

2011-08-11 Thread Minkyu Kang
Dear Lukasz, On 10 August 2011 18:18, Lukasz Majewski wrote: > This is a cosmetic patch, which is changing the gpio_ prefix to > s5p_gpio_. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > Cc: Minkyu Kang > --- >  board/samsung/universal_c210/universal.c |   28 +

Re: [U-Boot] [PATCH v3] i2c:gpio:s5p: I2C GPIO Software implementation (via soft_i2c)

2011-08-11 Thread Minkyu Kang
Dear Lukasz Majewski, On 10 August 2011 18:21, Lukasz Majewski wrote: > This patch adds support for software I2C for GONI reference target. > It adds support for access to GPIOs by number, not as it is present, > by bank and offset. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Pa

Re: [U-Boot] [PATCH 8/9] DM9000: change some printf to use debug instead

2011-08-11 Thread Stefano Babic
On 08/10/2011 10:33 PM, Eric Jarrige wrote: > Signed-off-by: Eric Jarrige > Cc: Ben Warren > --- > drivers/net/dm9000x.c |8 > 1 files changed, 4 insertions(+), 4 deletions(-) Hi Eric, > - printf("dm9000 i/o: 0x%x, id: 0x%x \n", CONFIG_DM9000_BASE, > + DM90

Re: [U-Boot] [PATCH 6/9] mx1: improve PLL freq computation

2011-08-11 Thread Stefano Babic
On 08/10/2011 10:33 PM, Eric Jarrige wrote: > Improve PLL freq computation by using the full resolution of the PLL registers Hi Eric, > + return (2*(u64)sys_clk_freq * (mfi*(mfd+1) + mfn))/((mfd+1)*(pd+1)); > +} > > - return (2*(CONFIG_SYSPLL_CLK_FREQ>>10)*( (mfi<<10) + > (mfn<<10)/(mf

Re: [U-Boot] [PATCH 5/9] apf9328: add default board configuration file

2011-08-11 Thread Stefano Babic
On 08/10/2011 10:33 PM, Eric Jarrige wrote: > Signed-off-by: Eric Jarrige > --- > include/configs/apf9328.h | 1034 > + > 1 files changed, 1034 insertions(+), 0 deletions(-) > create mode 100644 include/configs/apf9328.h Hi Eric, > + > +#ifndef __CO

Re: [U-Boot] [PATCH 2/9] mx1: add i2c registers

2011-08-11 Thread Stefano Babic
On 08/10/2011 10:33 PM, Eric Jarrige wrote: > Add i2c registers for Freescale imx1/L/S > > Signed-off-by: Eric Jarrige > Cc: Stefano Babic > --- > arch/arm/include/asm/arch-imx/imx-regs.h | 23 +++ > 1 files changed, 23 insertions(+), 0 deletions(-) > Hi Eric, > > +/*

Re: [U-Boot] [PATCH 3/9] apf9328: Add Armadeus Project board APF9328

2011-08-11 Thread Stefano Babic
On 08/10/2011 10:33 PM, Eric Jarrige wrote: > Add Armadeus Project board APF9328 > > Signed-off-by: Eric Jarrige > Signed-off-by: Nicolas Colombain Hi Eric, > diff --git a/board/armadeus/apf9328/apf9328.c > b/board/armadeus/apf9328/apf9328.c > new file mode 100644 > index 000..2250221 >

Re: [U-Boot] [PATCH 8/9] DM9000: change some printf to use debug instead

2011-08-11 Thread Detlev Zundel
Hi Simon, > Dear Eric Jarrige, > > On 08/10/2011 10:33 PM, Eric Jarrige wrote: >> Signed-off-by: Eric Jarrige >> Cc: Ben Warren >> --- >> drivers/net/dm9000x.c |8 >> 1 files changed, 4 insertions(+), 4 deletions(-) >> >> diff --git a/drivers/net/dm9000x.c b/drivers/net/dm9000x.c >

Re: [U-Boot] [PATCH v4] ARM926ejs: Add routines to invalidate D-Cache

2011-08-11 Thread Marek Vasut
On Thursday, August 11, 2011 09:02:20 AM Aneesh V wrote: > Hi Albert, Hong, > > On Wednesday 10 August 2011 12:06 PM, Albert ARIBAUD wrote: > > Hi Hong Xu, > > > > Le 10/08/2011 08:17, Hong Xu a écrit : > >> There are some ARM926 specific code in arch/arm/lib/cache.c; So I also > >> put the stuff

Re: [U-Boot] [PATCH 8/9] DM9000: change some printf to use debug instead

2011-08-11 Thread Simon Schwarz
Dear Eric Jarrige, On 08/10/2011 10:33 PM, Eric Jarrige wrote: > Signed-off-by: Eric Jarrige > Cc: Ben Warren > --- > drivers/net/dm9000x.c |8 > 1 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/net/dm9000x.c b/drivers/net/dm9000x.c > index b5c5573..9cd0195

Re: [U-Boot] [PATCH v4] ARM926ejs: Add routines to invalidate D-Cache

2011-08-11 Thread Aneesh V
Hi Albert, Hong, On Wednesday 10 August 2011 12:06 PM, Albert ARIBAUD wrote: > Hi Hong Xu, > > Le 10/08/2011 08:17, Hong Xu a écrit : > >> There are some ARM926 specific code in arch/arm/lib/cache.c; So I also >> put the stuff there. ;-) I think Albert Aribaud or the original >> contributor of cac