Re: [U-Boot] [PATCH] mtest: Fix end address of increment/decrement test

2010-05-20 Thread Peter Tyser
Hi Wolfgang, As far as the output, my vote would be to align the end address to a 32-bit address and add 3. eg assuming a starting address of 1000 and ending addresses of: 0x1ffc - output: Testing 1000 ... 1fff 0x1ffd - output: Testing 1000 ... 1fff 0x1ffe - output:

Re: [U-Boot] Does anyone know how to use FIT uImage

2010-05-17 Thread Peter Tyser
Hi Terry, On Tue, 2010-05-18 at 10:59 +0800, Lv Terry-R65388 wrote: Hi, experts, I've encountered an error in making FIT uImage. snip Does anyone know what the problem is? Your .its input file looks OK to me. What version of mkimage are you using? And what version of the dtc

Re: [U-Boot] [PATCH] logbuff: Change default console loglevel to 8

2010-05-07 Thread Peter Tyser
H Detlev, Previously, a default of 3 was assigned to the console loglevel while standard messages had a level of 4. This resulted in U-Boot's console disappearing if a user enabled CONFIG_LOGBUFFER but didn't manually set the 'loglevel' environment variable to a value greater than 4.

Re: [U-Boot] Endless loop in cmd_log.c?

2010-05-06 Thread Peter Tyser
Hi Dennis, On Thu, 2010-05-06 at 09:03 -0700, Dennis Ruffer wrote: Not sure why this hasn't come through in my 3 earlier attempts... Let me try a different email address... I am trying to implement CONFIG_LOGBUFFER and CONFIG_CMD_LOG on our ARM systems and I seem to have run into an

Re: [U-Boot] Endless loop in cmd_log.c?

2010-05-06 Thread Peter Tyser
Hi Dennis, On Thu, 2010-05-06 at 10:51 -0700, Dennis Ruffer wrote: Oh, sorry. I have the option turned on to send me my postings, but I have not gotten them. ;( I believe some email clients are smart enough to detect duplicate emails and filter accordingly. If I remember correctly I see the

Re: [U-Boot] Endless loop in cmd_log.c?

2010-05-06 Thread Peter Tyser
Hi Dennis, On Wed, 2010-05-05 at 12:22 -0700, Dennis Ruffer wrote: I am trying to implement CONFIG_LOGBUFFER and CONFIG_CMD_LOG on our ARM systems and I seem to have run into an endless loop. With loglevel=5 so we still see our console output, the printf at the end of logbuff_printk appears

[U-Boot] [PATCH] logbuff: Change default console loglevel to 8

2010-05-06 Thread Peter Tyser
console loglevel to 8 causes all messages to be printed to the console, which is standard U-Boot operation. Users can then reduce the console loglevel if they want using the 'loglevel' environment variable. Signed-off-by: Peter Tyser pty...@xes-inc.com --- common/cmd_log.c |8 ++-- 1 files

Re: [U-Boot] Endless loop in cmd_log.c?

2010-05-06 Thread Peter Tyser
snip I'm hoping to get setup to submit patches eventually, but I'm not there yet and it's not on my critical path at the moment. I'm just glad to hear I hadn't missed some critical setup piece. Thanks for verifying it! Thanks for finding it. I'll go ahead and submit a patch fixing

[U-Boot] [PATCH] logbuff: Prevent an infinite loop for console output

2010-05-06 Thread Peter Tyser
() to print the message to the console. The printf() call would eventually end up back in logbuff_printk(), and an infinite loop would occur which would hang a board. Using serial_puts() instead of printf() in logbuff_printk() avoids the recursion and resolves the issue. Signed-off-by: Peter Tyser

Re: [U-Boot] [PATCH 2/2] remove main CHANGELOG file

2010-05-05 Thread Peter Tyser
Hi Wolfgang, In message n2med82fe3e1005050756i7f91e365z91ce1bf19d382...@mail.gmail.com you wrote: I agree with Kim. Is there anyone besides you who uses CHANGELOG? If not, then maybe it should be deleted from the repository. I don't see why you can't run a script to regenerate it

Re: [U-Boot] [PATCH 2/2] remove main CHANGELOG file

2010-05-05 Thread Peter Tyser
Hi Wolfgang, Could you describe what you use CHANGELOG for? I often look at logs, but 99% of the time its a log of a specific file or directory to trace a bug, see why feature X was added, etc. I rarely look at the repositories entire log, and if I do, I use 'git log'. Although 'git

Re: [U-Boot] [PATCH 2/2] remove main CHANGELOG file

2010-05-05 Thread Peter Tyser
I'll quit whining, just wanted to give my +1 for removing the changelog. I don't consider you whining. I am listening to the arguments. I am not convinced yet, though. Well in that case, I'll chime in again:) I still don't grasp what the common use of looking at U-Boot's entire

Re: [U-Boot] [PATCH 06/17] SPEAr : Basic arch related support added for SPEAr SoCs

2010-04-21 Thread Peter Tyser
Hi Vipin, On Wed, 2010-04-21 at 13:24 +0530, Vipin KUMAR wrote: Adding CONFIG_DISPLAY_CPUINFO and CONFIG_ARCH_CPU_INIT support for SPEAr3xx and SPEAr6xx SoCs Signed-off-by: Vipin Kumar vipin.ku...@st.com --- arch/arm/cpu/arm926ejs/spear/Makefile |3 +-

Re: [U-Boot] [PATCH 00/17] Network support for spear platform and spear1300 support

2010-04-21 Thread Peter Tyser
Hi Vipin, cpu/arm926ejs/spear/cpu_info.c | 76 ++ cpu/arm_cortexa8/spear13xx/Makefile| 52 ++ cpu/arm_cortexa8/spear13xx/cache.S | 112 +++ cpu/arm_cortexa8/spear13xx/cpu_info.c | 105 +++ cpu/arm_cortexa8/spear13xx/reset.c | 47 ++

Re: [U-Boot] [PATCH 07/17] SPEAr : Network driver support added

2010-04-21 Thread Peter Tyser
Hi Vipin, drivers/net/dw_eth.c | 504 ++ drivers/net/dw_eth.h | 281 I'd vote to name the driver designware.c, or something else more descriptive than the somewhat ambiguous dw. The _eth portion of the name isn't

Re: [U-Boot] [PATCH 12/17] SPEAr : i2c driver moved completely into drivers/i2c

2010-04-21 Thread Peter Tyser
Hi Vipin, On Wed, 2010-04-21 at 13:24 +0530, Vipin KUMAR wrote: The i2c IP used by spear platform is a synopsys i2c controller The earlier driver adds the driver of this controller as if it is specific to spear platform. The driver files are now moved into drivers/i2c folder for reusability

Re: [U-Boot] [PATCH v2] Move arch/ppc to arch/powerpc

2010-04-16 Thread Peter Tyser
[PATCH v2] Move arch/ppc to arch/powerpc As discussed on the list, move arch/ppc to arch/powerpc to better match the Linux directory structure. Please note that this patch also changes the ppc target in MAKEALL to powerpc to match this new infrastructure. But ppc is kept as an alias for

Re: [U-Boot] [STATUS] Heads-up: Reorganize directory structure

2010-04-15 Thread Peter Tyser
please note that I have applied Peter Tyser's Reorganize directory structure patch series. This results in a massive change of the directory structure. Please make sure to sync your repsitories ASAP. Do you have any plan to move board dirs to arch folder too? Speaking for

Re: [U-Boot] [STATUS] Heads-up: Reorganize directory structure

2010-04-15 Thread Peter Tyser
Hi Alessandro, On Thu, 2010-04-15 at 17:31 +0200, Alessandro Rubini wrote: I can see how it'd be nice to split up boards into CPU directories, but we'd have to discuss some of the warts, like where vendor-specific code would be located if we went down that path. Right. I can see

Re: [U-Boot] [STATUS] Heads-up: Reorganize directory structure

2010-04-15 Thread Peter Tyser
Hi Alessandro, snip How does putting boards in their appropriate CPU directory make your coding any easier? Because if all boars with the same SoC are in the same directory they can share source files. But boards don't need to be in the same directory to share the same source files.

Re: [U-Boot] [PATCH v4 08/20] ppc: Move cpu/$CPU to arch/ppc/cpu/$CPU

2010-04-13 Thread Peter Tyser
On Tue, 2010-04-13 at 11:27 +0200, Wolfgang Denk wrote: Dear Stefan Roese, In message 20100413.13774...@denx.de you wrote: On Tuesday 13 April 2010 11:02:03 Detlev Zundel wrote: ... Sorry for jumping in late, but I only realized this now. If we do this move, which I greatly

Re: [U-Boot] [PATCH/RFC] Fixup for directory reorganization patch series

2010-04-12 Thread Peter Tyser
Hi Wolfgang, In message 1271045621-17393-1-git-send-email-pty...@xes-inc.com you wrote: This patch fixes 2 issues with the original directory reorganization patchset: 1. It fixes the symlinking of the 'proc' directory in include/asm when building out-of-tree. side questionAnyone

Re: [U-Boot] [PATCH/RFC] Fixup for directory reorganization patch series

2010-04-12 Thread Peter Tyser
On Tue, 2010-04-13 at 07:56 +1000, Graeme Russ wrote: On Tue, Apr 13, 2010 at 6:21 AM, Peter Tyser pty...@xes-inc.com wrote: Hi Wolfgang, In message 1271045621-17393-1-git-send-email-pty...@xes-inc.com you wrote: [snip] So far nobody else complained, so I think when you post

[U-Boot] [PATCH v4 02/20] Change directory-specific CFLAGS to use full path

2010-04-12 Thread Peter Tyser
would share the same custom CFLAGS. Signed-off-by: Peter Tyser pty...@xes-inc.com --- board/bf518f-ezbrd/config.mk |2 +- board/bf526-ezbrd/config.mk |2 +- board/bf527-ezkit/config.mk |2 +- board/bf533-ezkit/config.mk |2 +- board/bf533-stamp/config.mk |2 +- board

[U-Boot] [PATCH v4 00/20] Reorganize directory structure

2010-04-12 Thread Peter Tyser
variable earlier to prevent build errors on some arches - Fix out of tree building for ARM Peter Tyser (20): Create CPUDIR variable Change directory-specific CFLAGS to use full path Move lib_$ARCH directories to arch/$ARCH/lib Rename lib_generic/ to lib/ Move libfdt/ into lib/ Replace

[U-Boot] [PATCH v4 05/20] Move libfdt/ into lib/

2010-04-12 Thread Peter Tyser
Move the libfdt directory into the common lib/ directory to clean up the top-level directory. Signed-off-by: Peter Tyser pty...@xes-inc.com --- Makefile |2 +- {libfdt = lib/libfdt}/Makefile |0 {libfdt = lib/libfdt}/README|0

[U-Boot] [PATCH v4 06/20] Replace #include asm-$ARCH/$FILE with #include asm/$FILE

2010-04-12 Thread Peter Tyser
The appropriate include/asm-$ARCH directory should already by symlinked to include/asm so using the whole asm-$ARCH path is unnecessary. This change should also allow us to move the include/asm-$ARCH directories into their appropriate lib/$ARCH/ directories. Signed-off-by: Peter Tyser pty...@xes

[U-Boot] [PATCH v4 13/20] mips: Move cpu/mips/* to arch/mips/cpu/*

2010-04-12 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/mips = arch/mips/cpu}/Makefile |0 {cpu/mips = arch/mips/cpu}/asc_serial.c |0 {cpu/mips = arch/mips/cpu}/asc_serial.h |0 {cpu/mips = arch/mips/cpu}/au1x00_eth.c |0 {cpu/mips = arch/mips/cpu

[U-Boot] [PATCH v4 14/20] avr32: Move cpu/at32ap/* to arch/avr32/cpu/*

2010-04-12 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/at32ap = arch/avr32/cpu}/Makefile|0 {cpu/at32ap = arch/avr32/cpu}/at32ap700x/Makefile |0 {cpu/at32ap = arch/avr32/cpu}/at32ap700x/clk.c|0 .../at32ap = arch/avr32/cpu}/at32ap700x/portmux.c |0 {cpu/at32ap

[U-Boot] [PATCH v4 12/20] blackfin: Move cpu/blackfin/* to arch/blackfin/cpu/*

2010-04-12 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- Makefile |2 +- {cpu/blackfin = arch/blackfin/cpu}/.gitignore |0 {cpu/blackfin = arch/blackfin/cpu}/Makefile |0 .../blackfin/cpu}/bootrom-asm-offsets.awk |0

[U-Boot] [PATCH v4 16/20] i386: Move cpu/i386/* to arch/i386/cpu/*

2010-04-12 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/i386 = arch/i386/cpu}/Makefile|0 {cpu/i386 = arch/i386/cpu}/config.mk |0 {cpu/i386 = arch/i386/cpu}/cpu.c |0 {cpu/i386 = arch/i386/cpu}/interrupts.c|0 {cpu/i386 = arch/i386/cpu

[U-Boot] [PATCH v4 17/20] sparc: Move cpu/leon[23] to arch/sparc/cpu/leon[23]

2010-04-12 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu = arch/sparc/cpu}/leon2/Makefile |0 {cpu = arch/sparc/cpu}/leon2/config.mk|0 {cpu = arch/sparc/cpu}/leon2/cpu.c|0 {cpu = arch/sparc/cpu}/leon2/cpu_init.c |0 {cpu = arch/sparc/cpu}/leon2/interrupts.c

[U-Boot] [PATCH v4 15/20] microblaze: Move cpu/microblaze/* to arch/microblaze/cpu/*

2010-04-12 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/microblaze = arch/microblaze/cpu}/Makefile |0 {cpu/microblaze = arch/microblaze/cpu}/cache.c|0 {cpu/microblaze = arch/microblaze/cpu}/cpu.c |0 .../microblaze = arch/microblaze/cpu}/exception.c |0 .../microblaze

[U-Boot] [PATCH v4 11/20] m68k: Move cpu/$CPU to arch/m68k/cpu/$CPU

2010-04-12 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu = arch/m68k/cpu}/mcf5227x/Makefile |0 {cpu = arch/m68k/cpu}/mcf5227x/config.mk |0 {cpu = arch/m68k/cpu}/mcf5227x/cpu.c |0 {cpu = arch/m68k/cpu}/mcf5227x/cpu_init.c |0 {cpu = arch/m68k/cpu}/mcf5227x

[U-Boot] [PATCH v4 20/20] Update README to reflect new directory structure

2010-04-12 Thread Peter Tyser
Also fix up some whitespace issues that were introduced when moving directory locations. Signed-off-by: Peter Tyser pty...@xes-inc.com --- README | 158 +--- 1 files changed, 91 insertions(+), 67 deletions(-) diff --git a/README b

[U-Boot] [PATCH v4 18/20] nios: Move cpu/nios/* to arch/nios/cpu/*

2010-04-12 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/nios = arch/nios/cpu}/Makefile |0 {cpu/nios = arch/nios/cpu}/asmi.c |0 {cpu/nios = arch/nios/cpu}/config.mk|0 {cpu/nios = arch/nios/cpu}/cpu.c|0 {cpu/nios = arch/nios/cpu}/interrupts.c |0 {cpu

[U-Boot] [PATCH v4 19/20] nios2: Move cpu/nios2/* to arch/nios2/cpu/*

2010-04-12 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/nios2 = arch/nios2/cpu}/Makefile |0 {cpu/nios2 = arch/nios2/cpu}/config.mk|0 {cpu/nios2 = arch/nios2/cpu}/cpu.c|0 {cpu/nios2 = arch/nios2/cpu}/epcs.c |0 {cpu/nios2 = arch/nios2/cpu}/exceptions.S

[U-Boot] [PATCH v3 00/20] Reorganize directory structure

2010-04-11 Thread Peter Tyser
directory-specific CFLAGS - No cpu subdirectories for 1-CPU architectures (eg blackfin, mips, etc) as mentioned by Mike Frysinger - Fix libfdt path typo pointed out by Luigi Mantellini - Added final README fixup patch Changes since v2: - Rebased on current TOT Peter Tyser (20): Create CPUDIR

[U-Boot] [PATCH v3 02/20] Change directory-specific CFLAGS to use full path

2010-04-11 Thread Peter Tyser
would share the same custom CFLAGS. Signed-off-by: Peter Tyser pty...@xes-inc.com --- board/bf518f-ezbrd/config.mk |2 +- board/bf526-ezbrd/config.mk |2 +- board/bf527-ezkit/config.mk |2 +- board/bf533-ezkit/config.mk |2 +- board/bf533-stamp/config.mk |2 +- board

[U-Boot] [PATCH v3 01/20] Create CPUDIR variable

2010-04-11 Thread Peter Tyser
/* (architecture with multiple CPU types) arch/$ARCH/cpu/* (architecture with one CPU type) Signed-off-by: Peter Tyser pty...@xes-inc.com --- Makefile | 18 +- board/freescale/mpc8536ds/config.mk |2 +- board/freescale

[U-Boot] [PATCH v3 05/20] Move libfdt/ into lib/

2010-04-11 Thread Peter Tyser
Move the libfdt directory into the common lib/ directory to clean up the top-level directory. Signed-off-by: Peter Tyser pty...@xes-inc.com --- Makefile |2 +- {libfdt = lib/libfdt}/Makefile |0 {libfdt = lib/libfdt}/README|0

[U-Boot] [PATCH v3 06/20] Replace #include asm-$ARCH/$FILE with #include asm/$FILE

2010-04-11 Thread Peter Tyser
The appropriate include/asm-$ARCH directory should already by symlinked to include/asm so using the whole asm-$ARCH path is unnecessary. This change should also allow us to move the include/asm-$ARCH directories into their appropriate lib/$ARCH/ directories. Signed-off-by: Peter Tyser pty...@xes

[U-Boot] [PATCH v3 09/20] sh: Move cpu/$CPU to arch/sh/cpu/$CPU

2010-04-11 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu = arch/sh/cpu}/sh2/Makefile |0 {cpu = arch/sh/cpu}/sh2/cache.c |0 {cpu = arch/sh/cpu}/sh2/config.mk|0 {cpu = arch/sh/cpu}/sh2/cpu.c|0 {cpu = arch/sh/cpu}/sh2/interrupts.c |0 {cpu = arch/sh/cpu

[U-Boot] [PATCH v3 13/20] mips: Move cpu/mips/* to arch/mips/cpu/*

2010-04-11 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/mips = arch/mips/cpu}/Makefile |0 {cpu/mips = arch/mips/cpu}/asc_serial.c |0 {cpu/mips = arch/mips/cpu}/asc_serial.h |0 {cpu/mips = arch/mips/cpu}/au1x00_eth.c |0 {cpu/mips = arch/mips/cpu

[U-Boot] [PATCH v3 11/20] m68k: Move cpu/$CPU to arch/m68k/cpu/$CPU

2010-04-11 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu = arch/m68k/cpu}/mcf5227x/Makefile |0 {cpu = arch/m68k/cpu}/mcf5227x/config.mk |0 {cpu = arch/m68k/cpu}/mcf5227x/cpu.c |0 {cpu = arch/m68k/cpu}/mcf5227x/cpu_init.c |0 {cpu = arch/m68k/cpu}/mcf5227x

[U-Boot] [PATCH v3 14/20] avr32: Move cpu/at32ap/* to arch/avr32/cpu/*

2010-04-11 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/at32ap = arch/avr32/cpu}/Makefile|0 {cpu/at32ap = arch/avr32/cpu}/at32ap700x/Makefile |0 {cpu/at32ap = arch/avr32/cpu}/at32ap700x/clk.c|0 .../at32ap = arch/avr32/cpu}/at32ap700x/portmux.c |0 {cpu/at32ap

[U-Boot] [PATCH v3 12/20] blackfin: Move cpu/blackfin/* to arch/blackfin/cpu/*

2010-04-11 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- Makefile |2 +- {cpu/blackfin = arch/blackfin/cpu}/.gitignore |0 {cpu/blackfin = arch/blackfin/cpu}/Makefile |0 .../blackfin/cpu}/bootrom-asm-offsets.awk |0

[U-Boot] [PATCH v3 15/20] microblaze: Move cpu/microblaze/* to arch/microblaze/cpu/*

2010-04-11 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/microblaze = arch/microblaze/cpu}/Makefile |0 {cpu/microblaze = arch/microblaze/cpu}/cache.c|0 {cpu/microblaze = arch/microblaze/cpu}/cpu.c |0 .../microblaze = arch/microblaze/cpu}/exception.c |0 .../microblaze

[U-Boot] [PATCH v3 17/20] sparc: Move cpu/leon[23] to arch/sparc/cpu/leon[23]

2010-04-11 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu = arch/sparc/cpu}/leon2/Makefile |0 {cpu = arch/sparc/cpu}/leon2/config.mk|0 {cpu = arch/sparc/cpu}/leon2/cpu.c|0 {cpu = arch/sparc/cpu}/leon2/cpu_init.c |0 {cpu = arch/sparc/cpu}/leon2/interrupts.c

[U-Boot] [PATCH v3 18/20] nios: Move cpu/nios/* to arch/nios/cpu/*

2010-04-11 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/nios = arch/nios/cpu}/Makefile |0 {cpu/nios = arch/nios/cpu}/asmi.c |0 {cpu/nios = arch/nios/cpu}/config.mk|0 {cpu/nios = arch/nios/cpu}/cpu.c|0 {cpu/nios = arch/nios/cpu}/interrupts.c |0 {cpu

[U-Boot] [PATCH v3 19/20] nios2: Move cpu/nios2/* to arch/nios2/cpu/*

2010-04-11 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/nios2 = arch/nios2/cpu}/Makefile |0 {cpu/nios2 = arch/nios2/cpu}/config.mk|0 {cpu/nios2 = arch/nios2/cpu}/cpu.c|0 {cpu/nios2 = arch/nios2/cpu}/epcs.c |0 {cpu/nios2 = arch/nios2/cpu}/exceptions.S

[U-Boot] [PATCH v3 16/20] i386: Move cpu/i386/* to arch/i386/cpu/*

2010-04-11 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/i386 = arch/i386/cpu}/Makefile|0 {cpu/i386 = arch/i386/cpu}/config.mk |0 {cpu/i386 = arch/i386/cpu}/cpu.c |0 {cpu/i386 = arch/i386/cpu}/interrupts.c|0 {cpu/i386 = arch/i386/cpu

[U-Boot] [PATCH v3 20/20] Update README to reflect new directory structure

2010-04-11 Thread Peter Tyser
Also fix up some whitespace issues that were introduced when moving directory locations. Signed-off-by: Peter Tyser pty...@xes-inc.com --- README | 158 +--- 1 files changed, 91 insertions(+), 67 deletions(-) diff --git a/README b

Re: [U-Boot] [PATCH v3 00/20] Reorganize directory structure

2010-04-11 Thread Peter Tyser
On Sun, 2010-04-11 at 23:57 +0200, Wolfgang Denk wrote: Dear Peter Tyser, In message 1271006835-3864-1-git-send-email-pty...@xes-inc.com you wrote: This series reorganizes U-Boot's directory structure so that it looks like: Hmm... on ARM, this explodes on me with a ton of error messages

[U-Boot] [PATCH/RFC] Fixup for directory reorganization patch series

2010-04-11 Thread Peter Tyser
of ARM boards and to clearly show what changes were needed. I'll fold #1 above into the 07/20 Move architecture-specific includes to arch/$ARCH/include/asm change and #2 into 01/20] Create CPUDIR variable after waiting for other feedback on the patchset. Signed-off-by: Peter Tyser pty...@xes

[U-Boot] [PATCH v2 02/20] Change directory-specific CFLAGS to use full path

2010-04-04 Thread Peter Tyser
would share the same custom CFLAGS. Signed-off-by: Peter Tyser pty...@xes-inc.com --- board/bf518f-ezbrd/config.mk |2 +- board/bf526-ezbrd/config.mk |2 +- board/bf527-ezkit/config.mk |2 +- board/bf533-ezkit/config.mk |2 +- board/bf533-stamp/config.mk |2 +- board

[U-Boot] [PATCH v2 00/20] Reorganize directory structure

2010-04-04 Thread Peter Tyser
directory-specific CFLAGS - No cpu subdirectories for 1-CPU architectures (eg blackfin, mips, etc) as mentioned by Mike Frysinger - Fix libfdt path typo pointed out by Luigi Mantellini - Added final README fixup patch Peter Tyser (20): Create CPUDIR variable Change directory-specific CFLAGS

[U-Boot] [PATCH v2 01/20] Create CPUDIR variable

2010-04-04 Thread Peter Tyser
/* (architecture with multiple CPU types) arch/$ARCH/cpu/* (architecture with one CPU type) Signed-off-by: Peter Tyser pty...@xes-inc.com --- Makefile | 18 +- board/freescale/mpc8536ds/config.mk |2 +- board/freescale

[U-Boot] [PATCH v2 05/20] Move libfdt/ into lib/

2010-04-04 Thread Peter Tyser
Move the libfdt directory into the common lib/ directory to clean up the top-level directory. Signed-off-by: Peter Tyser pty...@xes-inc.com --- Makefile |2 +- {libfdt = lib/libfdt}/Makefile |0 {libfdt = lib/libfdt}/README|0

[U-Boot] [PATCH v2 06/20] Replace #include asm-$ARCH/$FILE with #include asm/$FILE

2010-04-04 Thread Peter Tyser
The appropriate include/asm-$ARCH directory should already by symlinked to include/asm so using the whole asm-$ARCH path is unnecessary. This change should also allow us to move the include/asm-$ARCH directories into their appropriate lib/$ARCH/ directories. Signed-off-by: Peter Tyser pty...@xes

[U-Boot] [PATCH v2 09/20] sh: Move cpu/$CPU to arch/sh/cpu/$CPU

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu = arch/sh/cpu}/sh2/Makefile |0 {cpu = arch/sh/cpu}/sh2/cache.c |0 {cpu = arch/sh/cpu}/sh2/config.mk|0 {cpu = arch/sh/cpu}/sh2/cpu.c|0 {cpu = arch/sh/cpu}/sh2/interrupts.c |0 {cpu = arch/sh/cpu

[U-Boot] [PATCH v2 12/20] blackfin: Move cpu/blackfin/* to arch/blackfin/cpu/*

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- Makefile |2 +- {cpu/blackfin = arch/blackfin/cpu}/.gitignore |0 {cpu/blackfin = arch/blackfin/cpu}/Makefile |0 .../blackfin/cpu}/bootrom-asm-offsets.awk |0

[U-Boot] [PATCH v2 13/20] mips: Move cpu/mips/* to arch/mips/cpu/*

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/mips = arch/mips/cpu}/Makefile |0 {cpu/mips = arch/mips/cpu}/asc_serial.c |0 {cpu/mips = arch/mips/cpu}/asc_serial.h |0 {cpu/mips = arch/mips/cpu}/au1x00_eth.c |0 {cpu/mips = arch/mips/cpu

[U-Boot] [PATCH v2 14/20] avr32: Move cpu/at32ap/* to arch/avr32/cpu/*

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/at32ap = arch/avr32/cpu}/Makefile|0 {cpu/at32ap = arch/avr32/cpu}/at32ap700x/Makefile |0 {cpu/at32ap = arch/avr32/cpu}/at32ap700x/clk.c|0 .../at32ap = arch/avr32/cpu}/at32ap700x/portmux.c |0 {cpu/at32ap

[U-Boot] [PATCH v2 11/20] m68k: Move cpu/$CPU to arch/m68k/cpu/$CPU

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu = arch/m68k/cpu}/mcf5227x/Makefile |0 {cpu = arch/m68k/cpu}/mcf5227x/config.mk |0 {cpu = arch/m68k/cpu}/mcf5227x/cpu.c |0 {cpu = arch/m68k/cpu}/mcf5227x/cpu_init.c |0 {cpu = arch/m68k/cpu}/mcf5227x

[U-Boot] [PATCH v2 16/20] i386: Move cpu/i386/* to arch/i386/cpu/*

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/i386 = arch/i386/cpu}/Makefile|0 {cpu/i386 = arch/i386/cpu}/config.mk |0 {cpu/i386 = arch/i386/cpu}/cpu.c |0 {cpu/i386 = arch/i386/cpu}/interrupts.c|0 {cpu/i386 = arch/i386/cpu

[U-Boot] [PATCH v2 15/20] microblaze: Move cpu/microblaze/* to arch/microblaze/cpu/*

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/microblaze = arch/microblaze/cpu}/Makefile |0 {cpu/microblaze = arch/microblaze/cpu}/cache.c|0 {cpu/microblaze = arch/microblaze/cpu}/cpu.c |0 .../microblaze = arch/microblaze/cpu}/exception.c |0 .../microblaze

[U-Boot] [PATCH v2 18/20] nios: Move cpu/nios/* to arch/nios/cpu/*

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/nios = arch/nios/cpu}/Makefile |0 {cpu/nios = arch/nios/cpu}/asmi.c |0 {cpu/nios = arch/nios/cpu}/config.mk|0 {cpu/nios = arch/nios/cpu}/cpu.c|0 {cpu/nios = arch/nios/cpu}/interrupts.c |0 {cpu

[U-Boot] [PATCH v2 19/20] nios2: Move cpu/nios2/* to arch/nios2/cpu/*

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu/nios2 = arch/nios2/cpu}/Makefile |0 {cpu/nios2 = arch/nios2/cpu}/config.mk|0 {cpu/nios2 = arch/nios2/cpu}/cpu.c|0 {cpu/nios2 = arch/nios2/cpu}/epcs.c |0 {cpu/nios2 = arch/nios2/cpu}/exceptions.S

[U-Boot] [PATCH v2 17/20] sparc: Move cpu/leon[23] to arch/sparc/cpu/leon[23]

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- {cpu = arch/sparc/cpu}/leon2/Makefile |0 {cpu = arch/sparc/cpu}/leon2/config.mk|0 {cpu = arch/sparc/cpu}/leon2/cpu.c|0 {cpu = arch/sparc/cpu}/leon2/cpu_init.c |0 {cpu = arch/sparc/cpu}/leon2/interrupts.c

[U-Boot] [PATCH v2 20/20] Update README to reflect new directory structure

2010-04-04 Thread Peter Tyser
Also fix up some whitespace issues that were introduced when moving directory locations. Signed-off-by: Peter Tyser pty...@xes-inc.com --- README | 158 +--- 1 files changed, 91 insertions(+), 67 deletions(-) diff --git a/README b

[U-Boot] [PATCH] mkimage: Fix strict-aliasing compiler warning

2010-04-04 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- tools/mkimage.c |8 +++- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/tools/mkimage.c b/tools/mkimage.c index 5c3e872..f5859d7 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -145,7 +145,7 @@ main (int argc, char **argv

[U-Boot] [PATCH] cmd_ubi: Fix uninitialized variable warning

2010-04-04 Thread Peter Tyser
this out. Signed-off-by: Peter Tyser pty...@xes-inc.com --- common/cmd_ubi.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_ubi.c b/common/cmd_ubi.c index 54faac1..2484b40 100644 --- a/common/cmd_ubi.c +++ b/common/cmd_ubi.c @@ -190,7 +190,7 @@ static int

Re: [U-Boot] [RFC][PATCH 00/21] [x86] 'Comming of Age'

2010-03-26 Thread Peter Tyser
snip Once this patchset is applied I believe the x86 port of U-Boot will be ready for more mainstream use Wolfgang - If there is any other renewed interest in the x86 port, I would be more than happy to be an official custodian Hi Graeme, Is there a quick summary about what is supported,

Re: [U-Boot] [PATCH 00/17] Reorganize directory structure

2010-03-26 Thread Peter Tyser
On Sat, 2010-03-20 at 23:51 +0100, Wolfgang Denk wrote: Dear Peter Tyser, In message 1260745480-22442-1-git-send-email-pty...@xes-inc.com you wrote: This series reorganizes U-Boot's directory structure so that it looks like: /arch/$ARCH/ /lib/sources currently in lib_$ARCH

Re: [U-Boot] [OT]Need help getting Linux past init

2010-03-26 Thread Peter Tyser
So it looks like the kernel has no problem locating /bin/sh in the JFFS2 partition but then the lights go out. I've also tried /bin/init - same result. I even tried changing /dev/console to be a symlink to /dev/ttyS0 but that didn't change a thing. I am _SO_ close to getting this going,

Re: [U-Boot] [PATCH 00/28] u-boot next: a generic approach for nios2 arch

2010-03-19 Thread Peter Tyser
On Fri, 2010-03-19 at 22:41 +0800, Thomas Chou wrote: On 03/19/2010 03:43 PM, Thomas Chou wrote: These patches are for next u-boot release. I udnerstand the merge window is not opened yet. But there are quite a few things to review, so please allow me submit them early. This is a

Re: [U-Boot] [PATCH 00/28] u-boot next: a generic approach for nios2 arch

2010-03-19 Thread Peter Tyser
Hi Wolfgang, And I'm not entirely sure how you're proposing that a mail client *should* deal with such a thread. It's a tradeoff between displaying less of the subject text, or breaking the display of the thread structure earlier. Either one is going to be worse for certain inputs

Re: [U-Boot] AmigaOneG3SE

2010-02-18 Thread Peter Tyser
Bill Toner wrote: There's a small group forming to work on updating the MAI/AmigaOneG3SE board build for u-boot. http://amigaworld.net/modules/newbb/viewtopic.php?mode=viewtopictopic_id=30736forum=15start=0viewmode=flatorder=0 I'm so far unable to get a complete make run through. Strangely,

Re: [U-Boot] [PATCH RFC] tsec: do not print Speed: if using netconsole

2010-01-26 Thread Peter Tyser
Hi Ed, On Sat, 2010-01-23 at 15:39 -0600, Ed Swarthout wrote: CONFIG_NETCONSOLE on the p2020ds is functional with the tsec driver. But the printf in adjust_link() which is called by startup_tsec() called by tsec_init() in tsec.c is making it impossible to use. For example typing 12345 on

Re: [U-Boot] [STATUS] Patch status update

2010-01-25 Thread Peter Tyser
3882 11/03 Peter Tyser[U-Boot] [PATCH] tsec: Force TBI PHY to 1000Mbps full duplex in SGMII mode http://article.gmane.org/gmane.comp.boot-loaders.u-boot/71031 Waiting for ack/nack. Andy sounded OK with the change on IRC. 4146 11/09 Peter Tyser[U-Boot

Re: [U-Boot] [PATCH] ppc/85xx: Fix bug in setup_mp code

2010-01-21 Thread Peter Tyser
Hi Ed, On Thu, 2010-01-21 at 15:06 -0700, Swarthout Edward L-SWARTHOU wrote: From: Kumar Gala Its possible that we try and copy the boot page code out of flash into a DDR location that doesn't have a TLB cover it. For example, if we have 3G of DDR we typically only map the first 2G.

[U-Boot] [PATCH v2] PCIe, USB: Replace 'end point' references with 'endpoint'

2010-01-17 Thread Peter Tyser
When referring to PCIe and USB 'endpoint' is the standard naming convention. Signed-off-by: Peter Tyser pty...@xes-inc.com Acked-by: Stefan Roese s...@denx.de Acked-by: Remy Bohmer li...@bohmer.net --- Changes since v1: Rebased on TOT board/amcc/yucca/yucca.c |2 +- board

Re: [U-Boot] [PATCH 3/3] 85xx: Add support for 'cpu disable' command

2010-01-12 Thread Peter Tyser
Hi Kumar, snip +#ifdef CONFIG_FSL_CORENET int cpu_disable(int nr) { - /* dummy function so common/cmd_mp.c will build */ - return 1; + volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); + + setbits_be32(gur-coredisrl, nr); Doesn't this need to be 1

Re: [U-Boot] [PATCH] PCIe, USB: Replace 'end point' references with 'endpoint'

2010-01-09 Thread Peter Tyser
Hi Remy, 2010/1/7 Peter Tyser pty...@xes-inc.com: When referring to PCIe and USB 'endpoint' is the standard naming convention. Signed-off-by: Peter Tyser pty...@xes-inc.com --- I could only take so much of seeing End Point on every bootup before I cracked:) board/amcc/yucca/yucca.c

Re: [U-Boot] [PATCH v2 0/9] Added support for SPEAr SoCs

2010-01-08 Thread Peter Tyser
On Fri, 2010-01-08 at 10:05 +0530, Vipin KUMAR wrote: Hello Peter, This patch set is a reworked patch which incorporates all review feedbacks from earlier earlier mails This patch set contains the support for 4 SoCs SPEAr600 SPEAr300 SPEAr310 SPEAr320 SPEAr is an

Re: [U-Boot] [PATCH v2 0/9] Added support for SPEAr SoCs

2010-01-07 Thread Peter Tyser
On Thu, 2010-01-07 at 17:26 +0530, Vipin KUMAR wrote: This patch set is a reworked patch which incorporates all review feedbacks from earlier earlier mails This patch set contains the support for 4 SoCs SPEAr600 SPEAr300 SPEAr310 SPEAr320 SPEAr is an ARM based SoC which supports rich

[U-Boot] [PATCH] PCIe, USB: Replace 'end point' references with 'endpoint'

2010-01-06 Thread Peter Tyser
When referring to PCIe and USB 'endpoint' is the standard naming convention. Signed-off-by: Peter Tyser pty...@xes-inc.com --- I could only take so much of seeing End Point on every bootup before I cracked:) board/amcc/yucca/yucca.c |2 +- board/atum8548/atum8548.c

Re: [U-Boot] [PATCH v2 3/3] powerpc: Add support for ram filesystems in FIT uImages

2010-01-03 Thread Peter Tyser
snip Note that the FIT image can also be made to contain a number of DT blobs, and selection of a board profile then can be used to boot the very sane FIT image file on any of the supported boards - so FIT images inherently support multibooting. I agree with Wolfgang. Additionally, if a FIT

Re: [U-Boot] [PATCH v2 3/3] powerpc: Add support for ram filesystems in FIT uImages

2009-12-30 Thread Peter Tyser
Hi Grant, I put U-Boot ML on CC. On Wed, 2009-12-30 at 16:02 -0700, Grant Likely wrote: On Mon, Dec 21, 2009 at 6:50 PM, Peter Tyser pty...@xes-inc.com wrote: The PowerPC architecture has the ability to embed the ramdisk located at arch/powerpc/boot/ramdisk.image.gz into a bootable kernel

Re: [U-Boot] [PATCH v2 3/3] powerpc: Add support for ram filesystems in FIT uImages

2009-12-30 Thread Peter Tyser
On Wed, 2009-12-30 at 17:01 -0700, Grant Likely wrote: On Wed, Dec 30, 2009 at 4:39 PM, Peter Tyser pty...@xes-inc.com wrote: Hi Grant, I put U-Boot ML on CC. Thinking further, I do actually have another concern, at least with regard to the way the current patch set implements things

Re: [U-Boot] [PATCH 5/9] SPEAr600 SoC support added

2009-12-17 Thread Peter Tyser
Hi Wolfgang, snip I haven't looked at the code differences between the sp3xx boards, but you might be able to use 1 common board file/header file to support them all. For example, take a look at the M5475AFE_config rule in U-Boot's ./Makefile. Some extra code in the Makefile and some

Re: [U-Boot] [PATCH 1/5] tsec: Clean up Broadcom PHY status parsing

2009-12-16 Thread Peter Tyser
On Mon, 2009-11-09 at 13:09 -0600, Peter Tyser wrote: - Remove unnecessary printing Enet starting in speed/duplex This same information is already printed during normal ethernet operation in the form Speed: 1000, full duplex. - Add a check for link before determining link speed

Re: [U-Boot] [PATCH] tsec: Force TBI PHY to 1000Mbps full duplex in SGMII mode

2009-12-16 Thread Peter Tyser
On Tue, 2009-11-03 at 17:52 -0600, Peter Tyser wrote: In SGMII mode the link between a processor's internal TBI PHY and an external PHY should always be 1000Mbps, full duplex. Also, the SGMII interface between an internal TBI PHY and external PHY does not support in-band auto-negotation

Re: [U-Boot] [PATCH v2 0/7] 83xx/85xx/86xx ECC update

2009-12-16 Thread Peter Tyser
On Mon, 2009-11-09 at 17:37 -0600, Peter Tyser wrote: This patch series is similar to the 8xxx: Add 'ecc' command recently submitted but has the following changes: - Supports 83xx/85xx/86xx, previously 83xx wasn't supported - Removes the old 83xx ecc command and replaces it with this new

Re: [U-Boot] [PATCH 5/9] SPEAr600 SoC support added

2009-12-16 Thread Peter Tyser
On Wed, 2009-12-16 at 14:48 +0530, Vipin KUMAR wrote: Signed-off-by: Vipin vipin.ku...@st.com --- board/spear/common/spr_lowlevel_init.S | 202 ++ board/spear/common/spr_misc.c | 270 board/spear/spear600/Makefile

Re: [U-Boot] [PATCH 5/9] SPEAr600 SoC support added

2009-12-16 Thread Peter Tyser
Hi Arm, snip It'd also be nice to give a description of each board and SOC you add. Eg what's the difference between the 300, 310, 320, 600? What peripherals do they support? What does SPEAr stand for? More commit messages in general wouldn't hurt:) SPEAr (Structured Processor

Re: [U-Boot] [PATCH] DEBUG 8xxx cpu_numcores

2009-12-15 Thread Peter Tyser
+++- 1 files changed, 3 insertions(+), 1 deletions(-) I agree w/Ed that we broke the relocation of gd-cpu with commit: commit a0e2066f392782730f0398095e583c87812d97f2 Author: Peter Tyser pty...@xes-inc.com Date: Mon Sep 21 11:20:27 2009 -0500 ppc: Remove board.c relocation fixups

Re: [U-Boot] [PATCH] DEBUG 8xxx cpu_numcores

2009-12-15 Thread Peter Tyser
On Tue, 2009-12-15 at 10:57 -0600, Kumar Gala wrote: On Dec 15, 2009, at 10:17 AM, Peter Tyser wrote: On Tue, 2009-12-15 at 08:49 -0600, Kumar Gala wrote: On Dec 15, 2009, at 1:07 AM, Ed Swarthout wrote: The following debug patch shows that gd-cpu is not being relocated to ddr

[U-Boot] [PATCH 03/17] Move libfdt/ into lib/

2009-12-13 Thread Peter Tyser
Move the libfdt library into the common lib/ directory to clean up the top-level of U-Boot. Signed-off-by: Peter Tyser pty...@xes-inc.com --- Makefile |2 +- {libfdt = lib/libfdt}/Makefile |0 {libfdt = lib/libfdt}/README|0

<    1   2   3   4   5   6   7   8   9   >