Re: [U-Boot-Users] multiple definition of __udivsi3 when using divide operation on unsigned long numbers

2008-03-24 Thread Dirk Behme
Gururaja Hebbar K R wrote: > Hi, > > I am trying to compile uboot 1.3.1 for arm926ejs processor. i am using > CodeSourcery arm-none-linux-gnueabi toolchain (gcc version 4.2.1 > (CodeSourcery Sourcery G++ Lite 2007q3-51)) . > > i am trying to write a driver for our on board mmc controller. i need

[U-Boot-Users] multiple definition of __udivsi3 when using divide operation on unsigned long numbers

2008-03-24 Thread Gururaja Hebbar K R
Hi, I am trying to compile uboot 1.3.1 for arm926ejs processor. i am using CodeSourcery arm-none-linux-gnueabi toolchain (gcc version 4.2.1 (CodeSourcery Sourcery G++ Lite 2007q3-51)) . i am trying to write a driver for our on board mmc controller. i need to do multiply and divide operation as b

Re: [U-Boot-Users] question regarding startup code

2008-03-24 Thread srinivas bakki
> Hi ppl, >Am a newbie to u-boot as well as arm > assembly. > wanted to know about the startup code. Below is the > vector table pasted from the code. What i dont > understand is why only the reset vector is PC > relative > and all others have memory allocated to hold the > addresses. I mea

Re: [U-Boot-Users] [MIPS] cpu/mips/Makefile: Change Makefile style

2008-03-24 Thread Shinya Kuribayashi
Shinya Kuribayashi wrote: > @@ -26,12 +26,18 @@ include $(TOPDIR)/config.mk > LIB = $(obj)lib$(CPU).a > > START= start.o > -COBJS= asc_serial.o au1x00_serial.o au1x00_eth.o au1x00_usb_ohci.o \ > - cpu.o interrupts.o incaip_clock.o > -SOBJS= incaip_wdt.o cache.o >

[U-Boot-Users] [MIPS] Move gth2_config from ARM section to MIPS

2008-03-24 Thread Shinya Kuribayashi
Signed-off-by: Shinya Kuribayashi <[EMAIL PROTECTED]> --- Makefile | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 4fde699..d68b03d 100644 --- a/Makefile +++ b/Makefile @@ -2470,11 +2470,6 @@ cm4008_config: unconfig cm41xx_co

[U-Boot-Users] [MIPS] cpu/mips/Makefile: Change Makefile style

2008-03-24 Thread Shinya Kuribayashi
Split board-related objects with one line for one file. Signed-off-by: Shinya Kuribayashi <[EMAIL PROTECTED]> --- cpu/mips/Makefile | 18 -- 1 files changed, 12 insertions(+), 6 deletions(-) diff --git a/cpu/mips/Makefile b/cpu/mips/Makefile index 92dcc16..c6caf1d 100644 ---

Re: [U-Boot-Users] [MIPS] asm headers' updates

2008-03-24 Thread Shinya Kuribayashi
Shinya Kuribayashi wrote: > Wolfgang Denk wrote: >>> +#if 0 >>> +#include >>> +#endif >> Please don't add dead code. Instead, remove these line(s). > > Fixed. Thanks, Patch revised. I updated more files, and cleaned up CodingStyle issues all over the headers, > [MIPS] asm heade

Re: [U-Boot-Users] [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB

2008-03-24 Thread Shinya Kuribayashi
Shinya Kuribayashi wrote: > Signed-off-by: Shinya Kuribayashi <[EMAIL PROTECTED]> > --- > > cpu/mips/cache.S |9 + > 1 files changed, 5 insertions(+), 4 deletions(-) > > > diff --git a/cpu/mips/cache.S b/cpu/mips/cache.S > index bda9bb1..2998a3b 100644 > --- a/cpu/mips/cache.S > +++

[U-Boot-Users] question regarding startup code

2008-03-24 Thread srinivas bakki
Hi ppl, Am a newbie to u-boot as well as arm assembly. wanted to know about the startup code. Below is the vector table pasted from the code. What i dont understand is why only the reset vector is PC relative and all others have memory allocated to hold the addresses. I mean all other vector

Re: [U-Boot-Users] [MIPS] Introduce machine_restart

2008-03-24 Thread Shinya Kuribayashi
Shinya Kuribayashi wrote: > Wolfgang Denk wrote: >> In message <[EMAIL PROTECTED]@transmode.se> >> Joakim Tjernlund wrote: >>> I don't think it is good to use global fun ptrs. These are not >>> available until >>> relocated to RAM. >> Agreed! > > I got it. Thanks for your comments. > >> In messag

Re: [U-Boot-Users] [PATCH 1/3] mpc8323erdb: use readable DDR config macros

2008-03-24 Thread Kim Phillips
On Thu, 20 Mar 2008 13:15:28 -0400 Michael Barkowski <[EMAIL PROTECTED]> wrote: > > Use available shift/mask macros to define DDR configuration. > > Signed-off-by: Michael Barkowski <[EMAIL PROTECTED]> > Acked-by: Kim Phillips <[EMAIL PROTECTED]> > --- > include/configs/MPC8323ERDB.h | 50 +++

Re: [U-Boot-Users] [PATCH] mpc83xx: Set PCI I/O bus-address base to zero.

2008-03-24 Thread Kim Phillips
On Mon, 24 Mar 2008 12:44:13 -0500 Scott Wood <[EMAIL PROTECTED]> wrote: > The device trees for these boards describe PCI I/O as starting from > address zero from the device's perspective. > > Placing I/O elsewhere may cause problems with certain PCI boards, and may > cause problems with Linux. >

Re: [U-Boot-Users] [PATCH 2/2 resend] Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.

2008-03-24 Thread Kim Phillips
On Tue, 18 Mar 2008 21:44:41 -0400 Jerry Van Baren <[EMAIL PROTECTED]> wrote: > Signed-off-by: Gerald Van Baren <[EMAIL PROTECTED]> > --- > > Hi Kim, > > This is useful if/when Stefan Roese applies the previous patch "Flash > programming progress countdown." > > Best regards, > gvb > > incl

Re: [U-Boot-Users] [PATCH 1/5] 83xx: nand support for MPC837XRDB boards

2008-03-24 Thread Kim Phillips
On Mon, 24 Mar 2008 17:40:23 +0300 Anton Vorontsov <[EMAIL PROTECTED]> wrote: > > Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> > --- > > Rebased on top of today's u-boot-mpc83xx. > > include/configs/MPC837XERDB.h | 19 +++ > 1 files changed, 19 insertions(+), 0 deletion

Re: [U-Boot-Users] [PATCH] USB Storage, add meaningful return value

2008-03-24 Thread Aras Vaichas
Jerry Van Baren wrote: > Wolfgang Denk wrote: >> Dear Aras, >> >> in message <[EMAIL PROTECTED]> you wrote: >>> This patch changes the "usb storage" command to return success iff it >>> finds a USB storage device, otherwise it returns error. >> >> Thanks. I appreciate your contribution, but please

Re: [U-Boot-Users] [PATCH 1/1] Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock

2008-03-24 Thread Kim Phillips
On Mon, 24 Mar 2008 13:00:59 -0400 "Joe D'Abbraccio" wrote: > From: Joe D'Abbraccio <[EMAIL PROTECTED]> > > With the original value of 1/2 clock cycle delay, the system ran relatively > stable except when we run benchmarks that are intensive users of memory. > When I run samba connected disk wit

Re: [U-Boot-Users] [PATCH 01/11] uec: add support for gbit mii status readings

2008-03-24 Thread Kim Phillips
On Mon, 24 Mar 2008 20:46:24 +0300 Anton Vorontsov <[EMAIL PROTECTED]> wrote: > Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> > --- > drivers/qe/uec_phy.c | 28 +++- > drivers/qe/uec_phy.h |5 + > 2 files changed, 24 insertions(+), 9 deletions(-) applied 1-

Re: [U-Boot-Users] [PATCH] USB Storage, add meaningful return value

2008-03-24 Thread Jerry Van Baren
Wolfgang Denk wrote: > Dear Aras, > > in message <[EMAIL PROTECTED]> you wrote: >> This patch changes the "usb storage" command to return success iff it >> finds a USB storage device, otherwise it returns error. > > Thanks. I appreciate your contribution, but please fix the coding > style: > >>

Re: [U-Boot-Users] [PATCH] USB Storage, add meaningful return value

2008-03-24 Thread Wolfgang Denk
Dear Aras, in message <[EMAIL PROTECTED]> you wrote: > > This patch changes the "usb storage" command to return success iff it > finds a USB storage device, otherwise it returns error. Thanks. I appreciate your contribution, but please fix the coding style: > @@ -196,9 +196,13 @@ >

Re: [U-Boot-Users] [PATCH 2/2] mpc83xx: MPC837XERDB: add support for PCI-Express

2008-03-24 Thread Kim Phillips
On Mon, 24 Mar 2008 21:42:37 +0300 Anton Vorontsov <[EMAIL PROTECTED]> wrote: > +/* PCIE address map */ > +#define CFG_PCIE1_BASE 0xA000 > +#define CFG_PCIE1_MEM_BASE CFG_PCIE1_BASE > +#define CFG_PCIE1_MEM_PHYS CFG_PCIE1_MEM_BASE > +#define CFG_PCIE1_MEM_SIZE 0x1000 >

[U-Boot-Users] [PATCH] lwmon5 SYSMON POST: fix handling of negative temperatures

2008-03-24 Thread Wolfgang Denk
From: Yuri Tikhonov <[EMAIL PROTECTED]> Fix errors in the LWMON5 Sysmon POST for negative temperatures. Signed-off-by: Yuri Tikhonov <[EMAIL PROTECTED]> --- post/board/lwmon5/dspic.c | 27 ++- post/board/lwmon5/sysmon.c | 33 ++--- 2 files

[U-Boot-Users] [PATCH] lwmon5 SYSMON POST: fix backlight control

2008-03-24 Thread Wolfgang Denk
From: Yuri Tikhonov <[EMAIL PROTECTED]> If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be run on the board, then the SYSMON POST controls the display backlight (doesn't switch backlight ON if POST FAILED, and does switch the backlight ON if PASSED). If not, then the video drive

[U-Boot-Users] [PATCH] USB Storage, add meaningful return value

2008-03-24 Thread Aras Vaichas
This patch changes the "usb storage" command to return success iff it finds a USB storage device, otherwise it returns error. This enables you to check for a USB storage device before trying to access it: if usb storage; then fatload usb 0 $loadaddr $filename; fi ___

Re: [U-Boot-Users] [PATCH 6/7] 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role

2008-03-24 Thread Kim Phillips
On Mon, 24 Mar 2008 17:44:19 +0300 Anton Vorontsov <[EMAIL PROTECTED]> wrote: > On Wed, Mar 19, 2008 at 08:35:58PM -0500, Kim Phillips wrote: > > On Fri, 14 Mar 2008 23:20:18 +0300 > > Anton Vorontsov <[EMAIL PROTECTED]> wrote: > > > > > > > diff --git a/include/fdt_support.h b/include/fdt_suppo

Re: [U-Boot-Users] [PATCH] Add brackets to if condition in tools/setlocalversion

2008-03-24 Thread Liew Tsi Chung
John, Fedora 3 and Fedora 8, both are using bash. Regards, TsiChung -Original Message- From: Rigby John Sent: Monday, March 24, 2008 2:48 PM To: Liew Tsi Chung Cc: [EMAIL PROTECTED]; U-Boot-Users Subject: Re: [PATCH] Add brackets to if condition in tools/setlocalversion What di

[U-Boot-Users] Booting vxworks image from U-boot

2008-03-24 Thread Zvika Vered
Hello, Is it possible to boot a vxworks ELF image using 'bootvx' ? I downloaded a vxworks 6.3 ELF image using 'tftpboot' and launched 'vxboot'. U-boot crashed. The vxworks ELF image is OK. When I download it using JTAG after reset it works. What is the best way to boot vxworks ELF image from U

Re: [U-Boot-Users] [PATCH] Add brackets to if condition in tools/setlocalversion

2008-03-24 Thread John Rigby
What distro are you running? Some use dash for /bin/sh instead of bash. That may be your problem. Liew Tsi Chung wrote: > Wolfgang, > > Please ignore "Add brackets to if condition in > tools/setlocalversion" patch. > > The u-boot for ColdFire was able to build prior to version > 1.3.

Re: [U-Boot-Users] [PATCH] Add brackets to if condition in tools/setlocalversion

2008-03-24 Thread Liew Tsi Chung
Wolfgang, Please ignore "Add brackets to if condition in tools/setlocalversion" patch. The u-boot for ColdFire was able to build prior to version 1.3.2. Until, I merged the local with the latest update. Whenever I tried to build a u-boot for any ColdFire platforms, the error messa

Re: [U-Boot-Users] [PATCH 2/2] mpc83xx: MPC837XERDB: add support for PCI-Express

2008-03-24 Thread Anton Vorontsov
On Mon, Mar 24, 2008 at 09:42:37PM +0300, Anton Vorontsov wrote: > This is largely based on the MDS boards' code (patch by > Tony Li <[EMAIL PROTECTED]>). Oops. I meant Li Li, sorry. -- Anton Vorontsov email: [EMAIL PROTECTED] irc://irc.freenode.net/bd2

[U-Boot-Users] [PATCH 2/2] mpc83xx: MPC837XERDB: add support for PCI-Express

2008-03-24 Thread Anton Vorontsov
This is largely based on the MDS boards' code (patch by Tony Li <[EMAIL PROTECTED]>). Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- board/freescale/mpc837xerdb/Makefile |5 +- board/freescale/mpc837xerdb/mpc837xerdb.c | 13 - board/freescale/mpc837xerdb/pcie.c| 8

[U-Boot-Users] [PATCH 1/2] mpc83xx: Add MPC837x PCIE controller RC mode

2008-03-24 Thread Anton Vorontsov
From: Li Li <[EMAIL PROTECTED]> This patch is based on Dave Liu`s previously sent MPC837x patches. Initial the MPC837x PCIE controller. Note that configue address bit field is not compatible with PCIE spec 10a. So, the pci command output is not reliable. Just map 16M pci configure space which cor

[U-Boot-Users] [PATCH 1/1] Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock

2008-03-24 Thread Joe D'Abbraccio
From: Joe D'Abbraccio <[EMAIL PROTECTED]> With the original value of 1/2 clock cycle delay, the system ran relatively stable except when we run benchmarks that are intensive users of memory. When I run samba connected disk with a HDBENCH test, the system locks-up or reboots sporadically. Signed-o

[U-Boot-Users] [PATCH 2/2] Freescale eLBC FCM NAND driver

2008-03-24 Thread Scott Wood
This is a driver for the Flash Control Machine of the enhanched Local Bus Controller found on some Freescale chips (such as the mpc8313 and the mpc8379). Signed-off-by: Scott Wood <[EMAIL PROTECTED]> --- This patch applies to the mtd-2.6.22.1 branch of the nand tree. drivers/mtd/nand/Makefile

[U-Boot-Users] [PATCH 1/2] Don't panic if a controller driver does ecc its own way.

2008-03-24 Thread Scott Wood
Some hardware, such as the enhanced local bus controller used on some mpc83xx chips, does ecc transparently when reading and writing data, rather than providing a generic calculate/correct mechanism that can be exported to the nand subsystem. The subsystem should not BUG() when calculate, correct,

[U-Boot-Users] [PATCH 03/11] uec: add support for Broadcom BCM5481 Gigabit PHY

2008-03-24 Thread Anton Vorontsov
This patch adds basic support for Broadcom BCM5481 PHY. RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is Peter Barada <[EMAIL PROTECTED]>. Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- drivers/qe/uec_phy.c | 41 + 1 files change

[U-Boot-Users] [PATCH 10/11] mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK

2008-03-24 Thread Anton Vorontsov
At least on the "33MHz Pilot" board crystal is actually 33.3MHz. This patch fixes "system time drifting" problem. Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- include/configs/MPC8360ERDK.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/MPC836

[U-Boot-Users] [PATCH 11/11] mpc83xx: add "fsl, soc" and "fsl, immr" compatible fixups

2008-03-24 Thread Anton Vorontsov
device_type = "soc" is being deprecated, newer device trees will use "fsl,soc" and/or "fsl,immr" for the soc nodes. This patch also adds clock-frequency property for soc nodes (the same value as bus-frequency). Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- cpu/mpc83xx/fdt.c |8 +

[U-Boot-Users] [PATCH 09/11] mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS

2008-03-24 Thread Anton Vorontsov
This is needed to update /choosen/linux,stdout-path properly. Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- include/configs/MPC8360ERDK.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/MPC8360ERDK.h b/include/configs/MPC8360ERDK.h index 2bf0a35..

[U-Boot-Users] [PATCH 08/11] mpc83xx: MPC8360E-RDK: add dhcp command

2008-03-24 Thread Anton Vorontsov
Plus modify environment to use it and remove bootfile env variable, it is internal and CONFIG_BOOTFILE is used for these purposes. Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- include/configs/MPC8360ERDK.h |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/incl

[U-Boot-Users] [PATCH 07/11] mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc

2008-03-24 Thread Anton Vorontsov
Current DDR setup easily causes memory corruption, this patch fixes it. Also fix TIMING_CFG0_MRS_CYC definition. Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- include/configs/MPC8360ERDK.h | 48 ++-- include/mpc83xx.h |3 +- 2 files

[U-Boot-Users] [PATCH 05/11] mpc83xx: MPC8360E-RDK: add support for NAND

2008-03-24 Thread Anton Vorontsov
Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- board/freescale/mpc8360erdk/Makefile |4 +- board/freescale/mpc8360erdk/nand.c | 72 ++ include/configs/MPC8360ERDK.h| 24 +++ 3 files changed, 99 insertions(+), 1 deletions(-) create

[U-Boot-Users] [PATCH 06/11] mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI

2008-03-24 Thread Anton Vorontsov
This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen controller and FHCI (QE USB). Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- board/freescale/mpc8360erdk/mpc8360erdk.c | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/board/fre

[U-Boot-Users] [PATCH 04/11] mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode

2008-03-24 Thread Anton Vorontsov
This is needed for BCM PHYs to work on this board. Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- include/configs/MPC8360ERDK.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/MPC8360ERDK.h b/include/configs/MPC8360ERDK.h index 27b037a..1588610

[U-Boot-Users] [PATCH 02/11] uec: add support for RGMII_RXID interface mode

2008-03-24 Thread Anton Vorontsov
PHY drivers will use it to setup software delay between RXD and RXC signals. Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- drivers/qe/uec.c |1 + drivers/qe/uec.h |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/qe/uec.c b/drivers/qe/uec.c index 55f37c

[U-Boot-Users] [PATCH 01/11] uec: add support for gbit mii status readings

2008-03-24 Thread Anton Vorontsov
Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- drivers/qe/uec_phy.c | 28 +++- drivers/qe/uec_phy.h |5 + 2 files changed, 24 insertions(+), 9 deletions(-) diff --git a/drivers/qe/uec_phy.c b/drivers/qe/uec_phy.c index a42701c..8c4a558 100644 --- a/driver

[U-Boot-Users] [PATCH 0/11] Few MPC8360E-RDK related patches

2008-03-24 Thread Anton Vorontsov
This are few fixes and enhancements I have sitting in my rdk branch for a while now... -- Anton Vorontsov email: [EMAIL PROTECTED] irc://irc.freenode.net/bd2 - This SF.net email is sponsored by: Microsoft Defy all challenges

[U-Boot-Users] [PATCH] mpc83xx: Set PCI I/O bus-address base to zero.

2008-03-24 Thread Scott Wood
The device trees for these boards describe PCI I/O as starting from address zero from the device's perspective. Placing I/O elsewhere may cause problems with certain PCI boards, and may cause problems with Linux. Signed-off-by: Scott Wood <[EMAIL PROTECTED]> --- include/configs/MPC8315ERDB.h |

[U-Boot-Users] U-Boot 1.3.2 crashes after interrupt_init() on PPC405EP board

2008-03-24 Thread Reto Stalder
Hi I'm setting up U-Boot 1.3.2 on a PowerPC 405EP based prototype board. The execution stops shortly after returning from 'interrupt_init()' on line 998 in 'lib_ppc/board.c'. When I comment out this function call or line 104 in 'ppc_lib/interrupts.c' (set_msr(get_msr() | MSR_EE) I get the U-Boot p

[U-Boot-Users] [PATCH] ARM: Davinci: Fix DM644x timer overflow handling and cleanup

2008-03-24 Thread dirk . behme
Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code. Changes: - Remove *_masked() functions as noted by Wolfgang - Adapt register naming to recent TI spec (sprue26, March 2007) - Fix reset_timer() handling - As reported by Pieter [1] the overflow fix introduced a delay

Re: [U-Boot-Users] [PATCH 6/7] 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role

2008-03-24 Thread Anton Vorontsov
On Wed, Mar 19, 2008 at 08:35:58PM -0500, Kim Phillips wrote: > On Fri, 14 Mar 2008 23:20:18 +0300 > Anton Vorontsov <[EMAIL PROTECTED]> wrote: > > > > diff --git a/include/fdt_support.h b/include/fdt_support.h > > index 7836f28..c10de8a 100644 > > --- a/include/fdt_support.h > > +++ b/include/fd

[U-Boot-Users] [PATCH 5/5] 83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards

2008-03-24 Thread Anton Vorontsov
This is primarily for the early console support. Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- Rebased on top of today's u-boot-mpc83xx. include/configs/MPC837XERDB.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/MPC837XERDB.h b/include/config

[U-Boot-Users] [PATCH 4/5] 83xx: initialize serdes for MPC837XRDB boards

2008-03-24 Thread Anton Vorontsov
On the MPC8377ERDB: 2 SATA and 2 PCI-E. On the MPC8378ERDB: 2 PCI-E On the MPC8379ERDB: 4 SATA Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- Rebased on top of today's u-boot-mpc83xx. board/freescale/mpc837xerdb/mpc837xerdb.c | 37 + include/configs/MPC837X

[U-Boot-Users] [PATCH 3/5] 83xx: serdes setup routines

2008-03-24 Thread Anton Vorontsov
This patch adds few routines to configure serdes on 837x targets. Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- Rebased on top of today's u-boot-mpc83xx. cpu/mpc83xx/Makefile |1 + cpu/mpc83xx/serdes.c | 145 ++ include/asm-p

[U-Boot-Users] [PATCH 2/5] 83xx: split COBJS onto separate lines

2008-03-24 Thread Anton Vorontsov
..plus get rid of some #ifdefs in the .c files. Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- Rebased on top of today's u-boot-mpc83xx. cpu/mpc83xx/Makefile | 14 -- cpu/mpc83xx/fdt.c|4 cpu/mpc83xx/pci.c|2 -- cpu/mpc83xx/qe_io.c |3 --- 4 files

[U-Boot-Users] [PATCH 1/5] 83xx: nand support for MPC837XRDB boards

2008-03-24 Thread Anton Vorontsov
Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- Rebased on top of today's u-boot-mpc83xx. include/configs/MPC837XERDB.h | 19 +++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/include/configs/MPC837XERDB.h b/include/configs/MPC837XERDB.h index 0d79aae.

Re: [U-Boot-Users] Identify an U-boot compilation

2008-03-24 Thread Luigi 'Comio' Mantellini
any idea? On ven, 2008-03-14 at 14:43 +0100, Luigi 'Comio' Mantellini wrote: > Hi All, > > Is there a symbol (like __U_BOO_T__) that is defined during U-Boot > compilation and that I can test into my .c/.h source files? > > I have a self-made library that is shared between the bootloader and th

Re: [U-Boot-Users] [PATCH v2] sh: Add support Renesas Solutions R2D plus board

2008-03-24 Thread Jean-Christophe PLAGNIOL-VILLARD
> diff --git a/include/configs/r2dplus.h b/include/configs/r2dplus.h > new file mode 100644 > index 000..b28df98 > --- /dev/null > +++ b/include/configs/r2dplus.h > @@ -0,0 +1,152 @@ > +#ifndef __CONFIG_H > +#define __CONFIG_H > + > +#undef DEBUG > + > +#define CONFIG_SH1 > +#define