[U-Boot-Users] [PATCH 0/2] TQM834x: N-Flash support and DHCP

2008-01-28 Thread Jens Gehrlein
Hi, the following 2 patches introduce support for NOR-Flash with sector size 128 KiB (256 KiB at 2x16 Bit) and enable DHCP as on other TQ modules. Regards, Jens - This SF.net email is sponsored by: Microsoft Defy all challen

[U-Boot-Users] [PATCH 1/2] TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).

2008-01-28 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- include/configs/TQM834x.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/TQM834x.h b/include/configs/TQM834x.h index 8ef3f09..0f73400 100644 --- a/include/configs/TQM834x.h +++ b/include/c

[U-Boot-Users] [PATCH 2/2] TQM834x: enable DHCP

2008-01-28 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- include/configs/TQM834x.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/TQM834x.h b/include/configs/TQM834x.h index 0f73400..7373d7b 100644 --- a/include/configs/TQM834x.h +++ b/include/c

[U-Boot-Users] Question about NAND-Flash Support on MPC831x

2008-03-05 Thread Jens Gehrlein
Hi, on 2007-05-16 16:28:05 GMT, Scott Wood submitted a patch with the subject: "[PATCH 2/2] NAND: Add mpc831x support." I can't find this patch in any repository. Even, there wasn't any reply to his e-mail. Was the patch rejected? What's about the current state of NAND-Flash Support for MPC831x

Re: [U-Boot-Users] [PATCH] 83xx: Add support for CFG_I2C_SPEED in fsl_i2c.c

2008-03-11 Thread Jens Gehrlein
Hi, Timur Tabi schrieb: > Timur Tabi wrote: >> Add support to fsl_i2c.c for setting and querying the I2C bus speed. Current >> 83xx boards define the CFG_I2C_SPEED, but fsl_i2c.c ignores the value and >> uses a conservative value of 0x3F when programming the I2C bus speed. >> >> Signed-off-by: Ti

Re: [U-Boot-Users] [PATCH] 83xx: Add support for CFG_I2C_SPEED in fsl_i2c.c

2008-03-11 Thread Jens Gehrlein
Hi Timur, Timur Tabi schrieb: > Jens Gehrlein wrote: > >> When is it planned to apply these patches (especially MPC85xx)? > > Well, it's on my to-do list, but I'm currently busy with something else. How > important is this feature for you? > We started

Re: [U-Boot-Users] Generate list file

2008-04-09 Thread Jens Gehrlein
Hi, Jerry Van Baren schrieb: > Avinash Vijayvergia wrote: >> Hi All >> >> I had a question which is trivial but I couldn't find an answer to it. >> Can anyone tell me how do I generate a list file from gcc compiler or >> even preferred is listing with the interspersed C code. >> >> Thanks >> Avi

Re: [U-Boot-Users] Loading a kernel on MX31ADS using U-boot

2008-04-14 Thread Jens Gehrlein
Hi Fabio, Fabio Estevam schrieb: > Hi Guennadi, > > Now I generated uImage correctly and it boots fine. How did you build this Kernel? Did you use the LTIB? Regards Jens - This SF.net email is sponsored by the 2008 JavaOne

Re: [U-Boot-Users] Loading a kernel on MX31ADS using U-boot

2008-04-14 Thread Jens Gehrlein
Fabio Estevam schrieb: > Hi Jens, > > Yes, I used LTIB for building the kernel: > > export SYSCFG_KTARG=uImage > ./ltib -p kernel -m prep > ./ltib -p kernel -m scbuild > ./ltib -p kernel -m scdeploy > > The uImage is generated at: > .../rpm/BUILD/linux/arch/arm/boot/uImage > > Regards, > > Fa

[U-Boot-Users] Question about smc911x driver (16/32 Bit support)

2008-04-22 Thread Jens Gehrlein
Hi, in the source code there is a preprocessor directive #error "SMC911X: Only 32-bit bus is supported". We use a LAN9215i, which has a 16 Bit data interface only, connected to an i.MX31. The LAN9215 is in the driver's ID list. According to the data sheet accesses have to be 2x16 Bit to build

Re: [U-Boot-Users] Question about smc911x driver (16/32 Bit support)

2008-04-22 Thread Jens Gehrlein
Hi Ben, Ben Warren schrieb: > Hi Jens, > > On Tue, Apr 22, 2008 at 5:18 AM, Jens Gehrlein <[EMAIL PROTECTED]> wrote: >> Hi, >> >> in the source code there is a preprocessor directive >> #error "SMC911X: Only 32-bit bus is supported". >> &

Re: [U-Boot-Users] Question about smc911x driver (16/32 Bit support)

2008-04-25 Thread Jens Gehrlein
Hi Magnus, Ben, Magnus Lilja schrieb: > Hi Ben, > >> > Well, the i.MX31 Litekit board has a 16-bit LAN9117 and that seems to >> > work with the 32-bit flag set in the config file. >> > >> That's good news. I would prefer, though, to break this into two >> 16-bit accesses so we don't need

[U-Boot-Users] [PATCH] net: add 16 bit support for smc911x

2008-04-29 Thread Jens Gehrlein
Hi Ben, Magnus, here is my patch to enable 2x16 bit accesses to the LAN9x1x. I still not have a HW, so may I ask you to test it and, if applicable, fix the code? Best Regards, Jens --- drivers/net/smc911x.c | 17 - 1 files changed, 16 insertions(+), 1 deletions(-) diff --gi

Re: [U-Boot-Users] [PATCH] net: add 16 bit support for smc911x

2008-04-29 Thread Jens Gehrlein
Guennadi Liakhovetski schrieb: > On Tue, 29 Apr 2008, Jens Gehrlein wrote: > >> Hi Ben, Magnus, >> >> here is my patch to enable 2x16 bit accesses to the LAN9x1x. >> I still not have a HW, so may I ask you to test it and, if applicable, >> fix t

[U-Boot-Users] [PATCH v2] smc911x: add 16 bit support

2008-04-30 Thread Jens Gehrlein
Incorporated Ben's, Magnus's and Guennadi's proposals. Thank you for reviewing. Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- drivers/net/smc911x.c | 19 +-- 1 files changed, 17 insertions(+), 2 deletions(-) diff --git a/drivers/net/smc911x.c b/

[U-Boot-Users] [PATCH v3] smc911x: add 16 bit support

2008-05-05 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- Hi, third attempt: wrapped the long line, fixed typo, extended README file and avoided e-mail text above the separator :-) Sorry, I'm not a raw recruit but I didn't issue many patches so far. The title should go into the co

[U-Boot-Users] i.MX31: question about CFG_HZ and CKIL

2008-05-07 Thread Jens Gehrlein
Hi all, in the i.MX31 processor reference manual they mention a 32 kHz clock as input for several timers and controllers. Sometimes it's called ipg_clk_32k. But the documentation does not clearly state, that this clock actually is the CKIL. As far as I could derive from the ADS schematics the

Re: [U-Boot-Users] i.MX31: question about CFG_HZ and CKIL

2008-05-13 Thread Jens Gehrlein
Hi Wolfgang, Guennadi, Wolfgang Denk schrieb: > In message <[EMAIL PROTECTED]> you wrote: >> If CKIL is the above mentioned 32 kHz clock, the resulting deviation in >> the timers is "only" about 2.4% as long as CFG_HZ in mx31ads.h is 32000 >> Hz. Although it works with the current definition, I'

Re: [U-Boot-Users] Loading a kernel on MX31ADS using U-boot

2008-05-14 Thread Jens Gehrlein
Hi Guennadi, Guennadi Liakhovetski schrieb: ... Apart from that, verify that your console= > command line parameter is correct, your machine ID matches, and that you > don't have a jtag debugger like bdi2000 connected when you're trying to > boot. I have the same problem on our board: I don't

Re: [U-Boot-Users] Loading a kernel on MX31ADS using U-boot

2008-05-14 Thread Jens Gehrlein
Hi Fabio, Fabio Estevam schrieb: > Hi Jens, > > Have you tried to pass the "jtag=on" option into the kernel command line? Yippee! This works. Thank you very much for this hint! Where is this parameter documented? I didn't found anything in linux/Documentation or with google. ... >> Apart from

[U-Boot-Users] smc911x: cannot pass the MAC address from U-Boot to the Linux driver via chip registers

2008-05-16 Thread Jens Gehrlein
Hi, in the smc911x U-Boot driver the call of eth_halt() causes a reset of the ethernet controller. This also resets the MAC address in the according chip registers. This makes it impossible to pass the MAC address to an ARM kernel because the smc911x linux driver reads the MAC address from the

Re: [U-Boot-Users] How to specify the starting function of a U-boot standalone application.

2008-06-24 Thread Jens Gehrlein
Hi all, richardretanubun schrieb: > When I go go , the execution jumps straight to > do_func_info() and the application finishes. (which is just a bunch of > printf). > > How do I ensure that when compiled, the my_test.bin places the main > function at the "go" point? > > I have tried re-orde

Re: [U-Boot-Users] How to specify the starting function of aU-boot standalone application.

2008-06-25 Thread Jens Gehrlein
Hi Jason, McMullan, Jason schrieb: > On Wed, 2008-06-25 at 07:44 +0200, Jens Gehrlein wrote: >> I have the same problem. When I modify the source code the compiler may >> or may not rearrange the functions. It is not guaranteed, that the main >> function always start

Re: [U-Boot-Users] [PATCH] net: smc911x: Fix can not compile smc911x

2008-06-30 Thread Jens Gehrlein
Hi Nobuhiro, Nobuhiro Iwamatsu schrieb: > When enable CONFIG_DRIVER_SMC911X_16_BIT in smc911x, can not compile it. > I revised it from "elif" preprocessor to "elif defined". You are right. It depends on if one writes #define NAME or #define NAME 1 "#elif" and "#elif defined" behave different the

Re: [U-Boot-Users] TQM823L flash recognition problem

2008-06-30 Thread Jens Gehrlein
Hi Thomas, Thomas Maenner schrieb: > Hi Everybody, > > trying to use the u-boot V1.3.3 on a TQ Module: > TQM823L-AF Rev.311 > > which had u-boot v1.1.4 running without a problem, I now get this on two > modules: > > U-Boot 1.3.3 (Jun 27 2008 - 14:45:35) > > CPU: PPC823EZ

Re: [U-Boot-Users] [PATCH 2/2] Remove prototypes of nand_init() in favor of including nand.h.

2008-07-01 Thread Jens Gehrlein
Hi Scott, Scott Wood schrieb: > Signed-off-by: Scott Wood <[EMAIL PROTECTED]> > --- > lib_arm/board.c | 10 ++ > lib_ppc/board.c |4 +--- > lib_sh/board.c |2 +- > 3 files changed, 4 insertions(+), 12 deletions(-) > > diff --git a/lib_arm/board.c b/lib_arm/board.c > index 6750

Re: [U-Boot-Users] [PATCH 2/2] Remove prototypes of nand_init() in favor of including nand.h.

2008-07-01 Thread Jens Gehrlein
Hi Scott, Scott Wood schrieb: > Jens Gehrlein wrote: >> Today, I updated my local git tree to the current U-Boot. Running my >> board I saw the message "RAM Configuration:", which didn't appear before. >> >> I think the reason is the following: >>

[U-Boot-Users] [PATCH 00/10] [ARM] TQMA31: new board

2008-07-04 Thread Jens Gehrlein
Peter? Kind regards, Jens --- Jens Gehrlein (10): [ARM] TQMA31: new kernel param. to pass the eth MAC addr to the Linux eth chip driver [ARM] TQMA31: add FPGA configuration flash [ARM] TQMA31: adjust pad property of IPU pin FPSHIFT for the display [ARM] TQMA31: adjust vo

[U-Boot-Users] [PATCH 02/10] [ARM] MX31: fix bit masks in function mx31_decode_pll()

2008-07-04 Thread Jens Gehrlein
Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered. Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- cpu/arm1136/mx31/generic.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu/arm1136/mx31/generic.c b/cpu/arm1136/mx31/generic.c index 29c08c1..b

[U-Boot-Users] [PATCH 01/10] [ARM] MXC: insert bus busy check in i2c_probe

2008-07-04 Thread Jens Gehrlein
tatus register before the next bus access is possible. Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- drivers/i2c/mxc_i2c.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index a218329..6f9306f 100644 --- a/

[U-Boot-Users] [PATCH 03/10] [ARM] MX31: fix typos in defines for UART and SPI IO multiplexer pins

2008-07-04 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- board/imx31_litekit/imx31_litekit.c |2 +- board/imx31_phycore/imx31_phycore.c |4 ++-- board/mx31ads/mx31ads.c |2 +- include/asm-arm/arch-mx31/mx31-regs.h |4 ++-- 4 files changed, 6 insertions

[U-Boot-Users] [PATCH 04/10] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-04 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- MAINTAINERS |4 MAKEALL |1 Makefile |3 board/tqc/tqma31/Makefile | 48 board/tqc/tqma31/config.mk

[U-Boot-Users] [PATCH 08/10] [ARM] TQMA31: adjust pad property of IPU pin FPSHIFT for the display

2008-07-04 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- board/tqc/tqma31/tqma31.c |7 +++ include/asm-arm/arch-mx31/mx31-regs.h |1 + 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/board/tqc/tqma31/tqma31.c b/board/tqc/tqma31/tqma31.c index abb8db0..d

[U-Boot-Users] [PATCH 10/10] [ARM] TQMA31: new kernel param. to pass the eth MAC addr to the Linux eth chip driver

2008-07-04 Thread Jens Gehrlein
address register accordingly. This patch adds the paramater "ethaddr" to the U-Boot default environment so that the user cannot forget it. Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- include/configs/TQMA31.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff

[U-Boot-Users] [PATCH 06/10] [ARM] TQMA31: add support for SPI and SPI device MC13783-RTC

2008-07-04 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- board/tqc/tqma31/tqma31.c | 13 + include/asm-arm/arch-mx31/mx31-regs.h | 12 include/configs/TQMA31.h | 20 3 files changed, 45 insertions(+), 0 deletions(-)

[U-Boot-Users] [PATCH 09/10] [ARM] TQMA31: add FPGA configuration flash

2008-07-04 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- board/tqc/tqma31/tqma31.c |6 ++ include/asm-arm/arch-mx31/mx31-regs.h |1 + include/configs/TQMA31.h |7 +-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/board/tqc/tqma31/

[U-Boot-Users] [PATCH 07/10] [ARM] TQMA31: adjust voltage regulators in PMIC MC13738

2008-07-04 Thread Jens Gehrlein
VRFDIG: 1.875 V -> 1.8 V VGEN: 1.5 V -> 1.8 V VDIG: 1.5 V -> 1.3 V Unused PMIC switchers and regulators are disabled Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- board/tqc/tqma31/tqma31.c | 142 + include/configs/TQMA31

[U-Boot-Users] [PATCH 05/10] [ARM] TQMA31: add support for I2C, I2C temperature sensor and I2C-EEPROM

2008-07-04 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- board/tqc/tqma31/tqma31.c |6 + cpu/arm1136/mx31/generic.c| 17 ++ drivers/i2c/mxc_i2c.c | 13 +++ include/asm-arm/arch-mx31/mx31-regs.h

Re: [U-Boot-Users] [PATCH 00/10] [ARM] TQMA31: new board

2008-07-04 Thread Jens Gehrlein
Jens Gehrlein schrieb: > Who will pick up this patch series (if there are no complaints)? Peter? Of course, we could put them into the TQ custodian tree. Awkward, that I forgot this. Kind regards, Jens - Sponsored

Re: [U-Boot-Users] [PATCH 10/10] [ARM] TQMA31: new kernel param. to pass the eth MAC addr to the Linux eth chip driver

2008-07-07 Thread Jens Gehrlein
Hi Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD schrieb: > why don't you use nwhwconf parameter? Thank you for response. I found some U-Boot examples how to pass this parameter. But were can I find Linux related information? nwhwconf is new to me. I have never heard before. I use Kernel 2

Re: [U-Boot-Users] [PATCH 04/10] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-07 Thread Jens Gehrlein
Hi Detlev, Detlev Zundel schrieb: > Hi Jens, > >> +int dram_init (void) >> +{ >> +gd->bd->bi_dram[0].start = PHYS_SDRAM_1; >> +gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE; >> + >> +return 0; >> +} > > Can't you use autodetection code like we do on many (hopefully most) > PowerPC boar

Re: [U-Boot-Users] [PATCH 01/10] [ARM] MXC: insert bus busy check in i2c_probe

2008-07-07 Thread Jens Gehrlein
Jean-Christophe PLAGNIOL-VILLARD schrieb: > On 16:50 Fri 04 Jul , Jens Gehrlein wrote: >> On fast CPUs the time between two chip queries can become too short >> to issue clear start and stop conditions. The bus seems to be blocked. >> This cannot be compensated by just

Re: [U-Boot-Users] [PATCH 01/10] [ARM] MXC: insert bus busy check in i2c_probe

2008-07-07 Thread Jens Gehrlein
Wolfgang Denk schrieb: > In message <[EMAIL PROTECTED]> you wrote: >> You are right. 100 ms is too high, although it should be irrelevant for >> a U-Boot command. Measurement showed, that some 100 microseconds would >> be enough. Do you agree if I set the timeout value to 1 ms? Other proposals? >

Re: [U-Boot-Users] [PATCH 07/10] [ARM] TQMA31: adjust voltage regulators in PMIC MC13738

2008-07-08 Thread Jens Gehrlein
Hi Magnus, Magnus Lilja schrieb: > Hi, > > Jens Gehrlein wrote: >> +static int adjust_voltages (void) >> +{ >> +u32 reg; >> +u32 val; >> +static struct spi_slave *slave = NULL; >> + >> +slave = spi_setup_slave(1, 0, 100, &g

[U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- Fixed two bugs: a) added NFS mount option "rw" to default environment b) added prefix $(obj) in front of .depend in Makefile. Thank you Magnus for catching that. MAINTAINERS

Re: [U-Boot-Users] [PATCH 05/10] [ARM] TQMA31: add support for I2C, I2C temperature sensor and I2C-EEPROM

2008-07-08 Thread Jens Gehrlein
Jean-Christophe PLAGNIOL-VILLARD schrieb: >> #if defined(CONFIG_DISPLAY_CPUINFO) >> int print_cpuinfo (void) >> { >> diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c >> index 6f9306f..68d2720 100644 >> --- a/drivers/i2c/mxc_i2c.c >> +++ b/drivers/i2c/mxc_i2c.c >> @@ -209,4 +209,17 @@ i

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Jens Gehrlein
Hi Heiko, Heiko Schocher schrieb: > Hello Jens, > > one comment to your patch: > > Jens Gehrlein wrote: > >> Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> >> --- >> >> Fixed two bugs: >> a) added NFS mount option "rw" to defa

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Jens Gehrlein
Hi Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD schrieb: >> +COBJS := tqma31.o > why not use $(BOARD)? > COBJS := $(BOARD).o Okay. >> +SOBJS := lowlevel_init.o >> + >> +SRCS:= $(SOBJS:.o=.S) $(COBJS:.o=.c) >> +OBJS:= $(addprefix $(obj),$(COBJS)) >> +SOBJS

[U-Boot-Users] [PATCH 04/10 v3] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- Fixed the following issues (compared to v1): a) Myself: added NFS mount option "rw" to default environment b) Magnus: added prefix $(obj) in front of .depend in Makefile. Thank you for catching that. c) Jean-Christophe:

[U-Boot-Users] [PATCH 01/10 v2] [ARM] MXC: insert bus busy check in i2c_probe

2008-07-08 Thread Jens Gehrlein
tatus register before the next bus access is possible. Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- Changed timeout value from 100 ms to 1 ms. drivers/i2c/mxc_i2c.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_

[U-Boot-Users] [PATCH 09/10 v2] [ARM] TQMA31: add FPGA configuration flash

2008-07-08 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- Fixed whitespace, tabs isssues. Thank you Jean-Christophe. board/tqc/tqma31/tqma31.c |6 ++ include/asm-arm/arch-mx31/mx31-regs.h |1 + include/configs/TQMA31.h |7 +-- 3 files chang

[U-Boot-Users] [PATCH 10/10 v2] [ARM] TQMA31: new kernel param. to pass the eth MAC addr to the Linux eth chip driver

2008-07-08 Thread Jens Gehrlein
address register accordingly. This patch adds the kernel parameter "ethaddr" to the U-Boot default environment so that the user cannot forget it. Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> --- Replaced whitespaces by tab. Fixed typos in patch description. include/configs

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Jens Gehrlein
Wolfgang Denk schrieb: > In message <[EMAIL PROTECTED]> you wrote: >> +/* Timer tick */ >> +#define CFG_HZ 32768 > > CFG_HZ is a constant and has to be 1000. I know, we had a discussion earlier about that issue (see "i.MX31: question about CFG_HZ and CKIL" of 7th May

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Jens Gehrlein
Hi Guennadi, Guennadi Liakhovetski schrieb: > On Tue, 8 Jul 2008, Jens Gehrlein wrote: > >> diff --git a/board/tqc/tqma31/Makefile b/board/tqc/tqma31/Makefile >> new file mode 100644 >> index 000..f7e17c8 >> --- /dev/null >> +++ b/board/

Re: [U-Boot-Users] [PATCH 10/10 v2] [ARM] TQMA31: new kernel param. to pass the eth MAC addr to the Linux eth chip driver

2008-07-09 Thread Jens Gehrlein
Hi Mark, Mark Jonas schrieb: > Hi, > >> Some Linux drivers like the smc911x driver, as used on TQMA31, rely on the >> MAC address >> in the appropriate register, but U-Boot resets the controller after every >> transfer. >> A patch for the Linux driver is necessary to extract the MAC address fro

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-09 Thread Jens Gehrlein
Wolfgang Denk schrieb: > In message <[EMAIL PROTECTED]> you wrote: >> The TQMA31, as well as the mx32ads use the General Purpose Timer 1, >> which is feeded by a 32768 clock (possibly imx31_litekit and >> imx31_phycore with 32000 Hz? I don't know.). The prescale divider can >> only be an integer

Re: [U-Boot-Users] using a flat device tree to drive u-boot config

2008-08-04 Thread Jens Gehrlein
Grant Likely schrieb: > On Sun, Aug 3, 2008 at 11:49 AM, Timur Tabi <[EMAIL PROTECTED]> wrote: >> On Sun, Aug 3, 2008 at 10:47 AM, Wolfgang Denk <[EMAIL PROTECTED]> wrote: >> >>> If the DTB can be at any >>> flash location, you can for example have a fall-back version which is >>> used to bri

Re: [U-Boot-Users] RFC: U-Boot version numbering

2008-08-04 Thread Jens Gehrlein
Feng Kan schrieb: > Albert ARIBAUD wrote: >> Wolfgang Denk a écrit : >> >>> Hello, >>> >>> I would like to get your general opinion about changing the U-Boot >>> version numbering scheme. >>> >>> To be honest, I never really understood myself how this is supposed >>> to work and if the next

Re: [U-Boot-Users] [PATCH] mx31: move freescale's mx31 boards to vendor board dir

2008-08-06 Thread Jens Gehrlein
Jean-Christophe PLAGNIOL-VILLARD schrieb: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > Makefile |6 +++--- > board/{ => freescale}/imx31_litekit/Makefile |0 > board/{ => freescale}/imx31_litekit/config.mk

Re: [U-Boot-Users] [PATCH] mx31: move freescale's mx31 boards to vendor board dir

2008-08-06 Thread Jens Gehrlein
Magnus Lilja schrieb: > Perhaps a 'imx' or 'imx31' directory would be > better with all i.MX{31} boards in that directory. Hmm... I propose to keep it consistent: either the boards should be sorted by board vendor, or there could be a new directory between "board" and "board/" emphasizing the C

Re: [U-Boot-Users] [PATCH 3/7 v6] ARM: Add arm1176 core with S3C6400 SoC

2008-08-07 Thread Jens Gehrlein
Guennadi Liakhovetski schrieb: > Based on the original S3C64XX port by Samsung for U-Boot 1.1.6. > > Signed-off-by: Guennadi Liakhovetski <[EMAIL PROTECTED]> > --- > cpu/arm1176/Makefile| 50 ++ > cpu/arm1176/config.mk | 35 ++ > cpu/arm1176/cpu.c

Re: [U-Boot-Users] [PATCH 3/7 v6] ARM: Add arm1176 core with S3C6400 SoC

2008-08-07 Thread Jens Gehrlein
Hi Guennadi, Guennadi Liakhovetski schrieb: > diff --git a/cpu/arm1176/s3c64xx/interrupts.c > b/cpu/arm1176/s3c64xx/interrupts.c [snip] > +void udelay(unsigned long usec) > +{ > + unsigned long long tmp; > + ulong tmo; > + > + tmo = (usec + 9) / 10; > + tmp = get_ticks() + tmo;

Re: [U-Boot-Users] [PATCH 3/7 v6] ARM: Add arm1176 core with S3C6400 SoC

2008-08-07 Thread Jens Gehrlein
Wolfgang Denk schrieb: > In message <[EMAIL PROTECTED]> you wrote: >> Is it intended to put the CPU specific header files directly into the >> include directory (s3c6400.h and s3c64x0.h)? > > That's what we've been doing so far: > > -> ls -l include/s3c* > -rw-rw-r-- 1 wd wd 21763 De

Re: [U-Boot-Users] [PATCH 3/7 v6] ARM: Add arm1176 core with S3C6400 SoC

2008-08-07 Thread Jens Gehrlein
Wolfgang Denk schrieb: > In message <[EMAIL PROTECTED]> you wrote: >>> That's what we've been doing so far: >>> >>> -> ls -l include/s3c* >>> -rw-rw-r-- 1 wd wd 21763 Dec 9 2007 include/s3c2400.h >>> -rw-rw-r-- 1 wd wd 7629 Dec 9 2007 include/s3c2410.h >>> -rw-rw-r-- 1 wd wd 38

Re: [U-Boot-Users] [PATCH 3/7 v6] ARM: Add arm1176 core with S3C6400 SoC

2008-08-07 Thread Jens Gehrlein
Hi Guennadi, Guennadi Liakhovetski schrieb: > On Thu, 7 Aug 2008, Jens Gehrlein wrote: > >> Hi Guennadi, >> >> Guennadi Liakhovetski schrieb: >> >>> diff --git a/cpu/arm1176/s3c64xx/interrupts.c >>> b/cpu/arm1176/s3c64xx/interrupts

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-10-31 Thread Jens Gehrlein
Jean-Christophe PLAGNIOL-VILLARD schrieb: > On 11:33 Tue 08 Jul , Jens Gehrlein wrote: >> Signed-off-by: Jens Gehrlein <[EMAIL PROTECTED]> >> --- >> >> Fixed two bugs: >> a) added NFS mount option "rw" to default environment >> b) added p