Re: [U-Boot] [PATCH] Add support W90P710 ARM SoC from Nuvoton

2009-01-21 Thread Peter Tyser
Hi Konstantin, Add support W90P710 ARM SoC from Nuvoton Add W90P1 board based on W90P710 Signed-off-by: Konstantin Vovk k...@kslemb.com --- MAKEALL |1 + Makefile|3 + board/w90p1/Makefile

[U-Boot] [PATCH 1/5] Clean up diufb command definitions

2008-12-31 Thread Peter Tyser
The diufb command usage formatting is non-standard. It was made standard in preparation for larger command usage updates. Signed-off-by: Peter Tyser pty...@xes-inc.com --- board/ads5121/ads5121_diu.c |2 +- board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c |2 +- 2 files

[U-Boot] [PATCH 0/5] Command usage cleanup

2008-12-31 Thread Peter Tyser
shaved off 1.1KB from the XPedite5370 image for example. Most of the changes were done via scripts, so let me know if anything looks fishy. Best, Peter Peter Tyser (5): Clean up diufb command definitions pcs440ep: Clean up led command definition Standardize command usage messages with new

Re: [U-Boot] Please pull u-boot-mpc85xx.git

2008-12-23 Thread Peter Tyser
Let me know if I should take any action. Ugh, yeah, if you could submit patches which fix this, I'd appreciate it. I had some difficulty getting the patches to apply in the right order (mailbox issues), and must have lost some things in the merge. I'll submit 2 patches to fix the issues

[U-Boot] [PATCH 1/2] XPedite5200 board support cleanup

2008-12-23 Thread Peter Tyser
Signed-off-by: Peter Tyser pty...@xes-inc.com --- This should be applied to the 85xx repository and depends on the currently applied XPedite5200 board support patch. board/xes/common/actl_nand.c| 65 board/xes/common/fsl_85xx_pci.c |6 +- board/xes/xpedite5200/Makefile

Re: [U-Boot] Please pull u-boot-mpc85xx.git

2008-12-22 Thread Peter Tyser
Hi Andy, On Mon, 2008-12-22 at 13:36 -0600, Andy Fleming wrote: are available in the git repository at: git://www.denx.de/git/u-boot-mpc85xx.git master snip Peter Tyser (5): pci/fsl_pci_init: Enable inbound PCI config cycles Add support for PCA953x I2C gpio devices

[U-Boot] [PATCH v6 0/3] Support for XPedite5370 and misc GPIO

2008-12-17 Thread Peter Tyser
for command parsing in pca953x.c and ds4510.c - Moved include/gpio/pca953x.h to include/pca953x.h - Moved include/gpio/ds4510.h to include/ds4510.h - Rebased on current TOT Peter Tyser (3): Add support for PCA953x I2C gpio devices Add support for Maxim's DS4510 I2C device XPedite5370 board support

[U-Boot] [PATCH v6 1/3] Add support for PCA953x I2C gpio devices

2008-12-17 Thread Peter Tyser
information for the given pca953x device. Signed-off-by: Peter Tyser pty...@xes-inc.com --- Makefile |2 + README |9 ++ drivers/gpio/Makefile | 47 ++ drivers/gpio/pca953x.c | 227 include/pca953x.h

[U-Boot] [PATCH v6 2/3] Add support for Maxim's DS4510 I2C device

2008-12-17 Thread Peter Tyser
, and CONFIG_DS4510_RST defines add additional sub-commands to the ds4510 command when defined. Signed-off-by: Peter Tyser pty...@xes-inc.com --- README|4 + drivers/misc/Makefile |1 + drivers/misc/ds4510.c | 424 + include

Re: [U-Boot] [PATCH v4 2/3] Add support for Maxim's DS4510 I2C device

2008-12-15 Thread Peter Tyser
Hi Wolfgang, Thanks for the comments. On Sun, 2008-12-14 at 12:38 +0100, Wolfgang Denk wrote: Dear Peter Tyser, In message 300544b7901dacbe6b9e3edd052629f612b92735.1228160312.git.pty...@xes-inc.com you wrote: Initial support for the DS4510, a CPU supervisor with integrated EEPROM

Re: [U-Boot] [PATCH 12/15] Fixed CONFIG_SYS_SC520_RESET for eNET board

2008-12-08 Thread Peter Tyser
Hi Graeme, What is the easiest (or best) way of achieving this. The only way I can think of is to: - Roll back my history to the commit before d1f2d102a - Use patch to apply d1f2d102a - Add this change - Commit the resulting changes - Use git-am to apply the remaining patches Is

[U-Boot] [PATCH] net: Fix download command parsing

2008-12-02 Thread Peter Tyser
filename. The previous check for a leading quote in netboot_common() was replaced with a check which ensures only valid numbers are treated as addresses. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- common/cmd_net.c | 20 1 files changed, 12 insertions(+), 8 deletions

[U-Boot] [PATCH 1/2] net: Define IP flag field values

2008-12-01 Thread Peter Tyser
These defines were pulled from the Add simple IP/UDP fragmentation support patch from Frank Haverkamp [EMAIL PROTECTED]. --- include/net.h |6 ++ net/net.c |6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/include/net.h b/include/net.h index

[U-Boot] [PATCH 2/2] net: Add additional IP fragmentation check

2008-12-01 Thread Peter Tyser
Ignore IP packets which have the more fragments flag bit set. This flag indicates the IP packet is fragmented and must be ignored by U-Boot. --- net/net.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/net/net.c b/net/net.c index cf1f4fa..b8e09e8 100644 ---

[U-Boot] [PATCH v4 0/3]Support for XPedite5370 and misc GPIO

2008-12-01 Thread Peter Tyser
- Fixed multiline comment style - Cleaned up environment defines Changes since v3: - Removed CONFIG_L1_INIT_RAM reference Peter Tyser (3): Add support for PCA953x I2C gpio devices Add support for Maxim's DS4510 I2C device XPedite5370 board support MAINTAINERS |3

[U-Boot] [PATCH v4 1/3] Add support for PCA953x I2C gpio devices

2008-12-01 Thread Peter Tyser
information for the given pca953x device. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- Makefile |2 + README |9 ++ drivers/gpio/Makefile | 47 ++ drivers/gpio/pca953x.c | 218 include/gpio

[U-Boot] [PATCH v4 2/3] Add support for Maxim's DS4510 I2C device

2008-12-01 Thread Peter Tyser
, and CONFIG_DS4510_RST defines add additional sub-commands to the ds4510 command when defined. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- README|4 + drivers/misc/Makefile |1 + drivers/misc/ds4510.c | 400 + include/gpio

[U-Boot] [PATCH v3 0/2] 85xx: Support for XPedite5200

2008-12-01 Thread Peter Tyser
, Peter Peter Tyser (2): 85xx: Add PORDEVSR_PCI1 define XPedite5200 board support MAINTAINERS |1 + MAKEALL |1 + Makefile|3 + board/xes/common/Makefile |3 +- board/xes/common/actl_nand.c

[U-Boot] [PATCH] Remove unused CONFIG_ADDR_STREAMING defines

2008-12-01 Thread Peter Tyser
--- include/configs/ATUM8548.h|1 - include/configs/MPC8536DS.h |1 - include/configs/MPC8540ADS.h |1 - include/configs/MPC8540EVAL.h |1 - include/configs/MPC8541CDS.h |1 - include/configs/MPC8544DS.h |1 - include/configs/MPC8548CDS.h |1 -

Re: [U-Boot] [PATCH v3 2/2] XPedite5200 board support

2008-12-01 Thread Peter Tyser
On Mon, 2008-12-01 at 14:17 -0600, Jon Loeliger wrote: On Mon, 2008-12-01 at 13:47 -0600, Peter Tyser wrote: Initial support for Extreme Engineering Solutions XPedite5200 - a MPC8548-based PMC single board computer. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- +/* + * Use L1

[U-Boot] [PATCH v2] Remove unused CONFIG_ADDR_STREAMING defines

2008-12-01 Thread Peter Tyser
Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- doah, forgot SOB include/configs/ATUM8548.h|1 - include/configs/MPC8536DS.h |1 - include/configs/MPC8540ADS.h |1 - include/configs/MPC8540EVAL.h |1 - include/configs/MPC8541CDS.h |1 - include/configs/MPC8544DS.h

[U-Boot] [PATCH v2] net: Fix TftpStart() ip:filename bug

2008-12-01 Thread Peter Tyser
) Starting again TftpStart() was modified to not modify the 'BootFile' string. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- doah, forgot SOB net/tftp.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/net/tftp.c b/net/tftp.c index ce6ea3d..3dac3d8 100644 --- a/net/tftp.c

[U-Boot] [PATCH v3 0/3]Support for XPedite5370 and misc GPIO

2008-11-26 Thread Peter Tyser
- Fixed multiline comment style - Cleaned up environment defines Peter Tyser (3): Add support for PCA953x I2C gpio devices Add support for Maxim's DS4510 I2C device XPedite5370 board support MAINTAINERS |3 + MAKEALL |1 + Makefile

[U-Boot] [PATCH v3 1/3] Add support for PCA953x I2C gpio devices

2008-11-26 Thread Peter Tyser
information for the given pca953x device. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- Makefile |2 + README |9 ++ drivers/gpio/Makefile | 47 ++ drivers/gpio/pca953x.c | 218 include/gpio

[U-Boot] [PATCH v3 2/3] Add support for Maxim's DS4510 I2C device

2008-11-26 Thread Peter Tyser
, and CONFIG_DS4510_RST defines add additional sub-commands to the ds4510 command when defined. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- README|4 + drivers/misc/Makefile |1 + drivers/misc/ds4510.c | 400 + include/gpio

[U-Boot] [PATCH v2 0/2] 85xx: Support for XPedite5200

2008-11-26 Thread Peter Tyser
alignment by spaces to alignment by tabs - Fixed typos in host_agent_cfg/io_port_cfg - Fixed variable declaration in code - Fixed some lines longer than 80 chars - Cleaned up environment configuration defines - Fixed multiline comment style Best, Peter Peter Tyser (2): 85xx: Add PORDEVSR_PCI1 define

[U-Boot] [PATCH v2 1/2] 85xx: Add PORDEVSR_PCI1 define

2008-11-26 Thread Peter Tyser
Add define used to determine if PCI1 interface is in PCI or PCIX mode. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- include/asm-ppc/immap_85xx.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h index 75b451d

[U-Boot] [PATCH v2 2/2] XPedite5200 board support

2008-11-26 Thread Peter Tyser
Initial support for Extreme Engineering Solutions XPedite5200 - a MPC8548-based PMC single board computer. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- MAINTAINERS |1 + MAKEALL |1 + Makefile|3

[U-Boot] [PATCH] cmd_mem: Remove unused variable

2008-11-24 Thread Peter Tyser
Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- common/cmd_mem.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/common/cmd_mem.c b/common/cmd_mem.c index d7666c2..400cfd7 100644 --- a/common/cmd_mem.c +++ b/common/cmd_mem.c @@ -1175,7 +1175,6 @@ int do_unzip ( cmd_tbl_t

Re: [U-Boot] [PATCH 3/3] XPedite5370 board support

2008-11-19 Thread Peter Tyser
Hi Jon, On Wed, 2008-11-19 at 11:29 -0600, Jon Loeliger wrote: Peter Tyser wrote: We have the standard Freescale DDR printf's turned into debug as that is much, much more verbose than the output above. Indeed :-( Hrm. Out of curiosity, which printf()s do you find noisy

Re: [U-Boot] [PATCH 2/3] Add support for Maxim's DS4510 I2C device

2008-11-18 Thread Peter Tyser
On Tue, 2008-11-18 at 22:37 +0100, Wolfgang Denk wrote: Dear Peter Tyser, In message [EMAIL PROTECTED] you wrote: Initial support for the DS4510, a CPU supervisor with integrated EEPROM, SRAM, and 4 programmable non-volatile GPIO pins. The CONFIG_DS4510 define enables support

Re: [U-Boot] [PATCH 3/3] XPedite5370 board support

2008-11-18 Thread Peter Tyser
On Tue, 2008-11-18 at 22:44 +0100, Wolfgang Denk wrote: Dear Peter Tyser, In message [EMAIL PROTECTED] you wrote: Initial support for Extreme Engineering Solutions XPedite5370 - a MPC8572-based 3U VPX single board computer with a PMC/XMC site. ... diff --git a/board/xes/common

Re: [U-Boot] [PATCH 3/3] XPedite5370 board support

2008-11-18 Thread Peter Tyser
On Tue, 2008-11-18 at 23:20 +0100, Wolfgang Denk wrote: Dear Peter Tyser, In message [EMAIL PROTECTED] you wrote: This information is very useful to a customer and doesn't add much as far as output. No newlines at least. The output also prints information which is configurable. I

Re: [U-Boot] [PATCH 2/2] XPedite5200 board support

2008-11-18 Thread Peter Tyser
On Wed, 2008-11-19 at 00:36 +0100, Wolfgang Denk wrote: Dear Peter Tyser, In message [EMAIL PROTECTED] you wrote: Initial support for Extreme Engineering Solutions XPedite5200 - a MPC8548-based PMC single board computer. Signed-off-by: Peter Tyser [EMAIL PROTECTED] There are some

Re: [U-Boot] [PATCH] 85xx: Fix relocation of CCSRBAR

2008-11-13 Thread Peter Tyser
On Thu, 2008-11-13 at 06:30 -0600, Kumar Gala wrote: If the virtual address for CCSRBAR is the same after relocation but the physical address is changing we'd end up having two TLB entries with the same VA. Instead we new us the new CCSRBAR virt address + 4k as a temp virt address to access

[U-Boot] GNU Make shell application

2008-11-12 Thread Peter Tyser
Hello, I noticed on my Ubuntu 7.04 system that when I did a 'make clobber' the tools directory was still littered with symlinks that should have been removed. It looks like commands such as the following in the Makefiles fail: @rm -f

Re: [U-Boot] [PATCH] Makefile: use find to simplify clobber and avoid some bash problem

2008-11-12 Thread Peter Tyser
On Wed, 2008-11-12 at 19:06 +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- please try this on ubuntu Best Regards, J. Makefile |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile

[U-Boot] [PATCH] Remove unneeded CONFIG_SHELL references

2008-11-12 Thread Peter Tyser
Make should be using the bash shell by default which makes CONFIG_SHELL unnecessary Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- I noticed this after submitting Use bash for default GNU Make shell application, let me know if I should roll both these into 1 patch. This patch needs

Re: [U-Boot] [PATCH] Makefile: use find to simplify clobber and avoid some bash problem

2008-11-12 Thread Peter Tyser
On Wed, 2008-11-12 at 13:16 -0500, Jerry Van Baren wrote: Jean-Christophe PLAGNIOL-VILLARD wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- please try this on ubuntu Best Regards, J. Makefile |5 ++--- 1 files changed, 2 insertions(+), 3

[U-Boot] [PATCH] 85xx: Add CPU 2 errata workaround to all 8548 boards

2008-11-11 Thread Peter Tyser
. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- Changes since v1: - Use out/in _be32 access functions board/freescale/mpc8548cds/mpc8548cds.c | 12 board/sbc8548/sbc8548.c |7 --- cpu/mpc85xx/cpu_init.c | 13 + 3 files changed, 13

[U-Boot] [PATCH] 85xx: Add CPU 2 errata workaround to all 8548 boards

2008-11-10 Thread Peter Tyser
. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- board/freescale/mpc8548cds/mpc8548cds.c | 12 board/sbc8548/sbc8548.c |7 --- cpu/mpc85xx/cpu_init.c | 13 + 3 files changed, 13 insertions(+), 19 deletions(-) diff --git a/board

Re: [U-Boot] [PATCH v4] Update U-Boot's build timestamp on every compile

2008-11-03 Thread Peter Tyser
On Sat, 2008-11-01 at 03:26 -0700, Trent Piepho wrote: On Fri, 31 Oct 2008, Peter Tyser wrote: +$(TIMESTAMP_FILE): + @( printf '#define U_BOOT_DATE %s\n' '$(shell date +%b %d %C%y)' \ +) $@ + @( printf '#define U_BOOT_TIME %s\n' '$(shell date +%T

[U-Boot] [PATCH v5] Update U-Boot's build timestamp on every compile

2008-11-03 Thread Peter Tyser
Use the GNU 'date' command to auto-generate a new U-Boot timestamp on every compile. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- Changes since v1: * Split up U_BOOT_DATE define (date and time) into U_BOOT_DATE (day, month, year) and U_BOOT_TIME (time of day) defines * Updated all

Re: [U-Boot] [PATCH] lcd: Let the board code show board-specific info cleanup

2008-11-03 Thread Peter Tyser
Hi Wolfgang, In message [EMAIL PROTECTED] you wrote: Allow tqm8xx.c to cleanly compile when CONFIG_LCD_INFO is defined and remove unneeded version.h from lcd.c Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- I noticed this when adding timestamp.h to tqm8xx.c. The Update U-Boot's

[U-Boot] [PATCH] ppc: Fix compile warnings when !CONFIG_OF_LIBFDT

2008-10-31 Thread Peter Tyser
Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- lib_ppc/bootm.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib_ppc/bootm.c b/lib_ppc/bootm.c index fce4eff..18eb54f 100644 --- a/lib_ppc/bootm.c +++ b/lib_ppc/bootm.c @@ -224,12 +224,13 @@ static int

Re: [U-Boot] [patch] U-Boot Firetux board support

2008-10-31 Thread Peter Tyser
Hi Jürgen, If you have any comments please email to me. You should add an entry to the MAINTAINERS file for the Firetux. Best, Peter ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2] pci/fsl_pci_init: Enable inbound PCI config cycles

2008-10-29 Thread Peter Tyser
Shouldn't we only be doing this for an agent? Also is the right place to enable it? Just wondering if board code should have more flexibility here. I was under the impression that if a PCIe interface was configured as root complex its CFG_READY bit would still need to be set

[U-Boot] [PATCH 2/2 v2] 85xx: Enable inbound PCI config cycles for X-ES boards

2008-10-29 Thread Peter Tyser
Update X-ES Freescale boards to allow inbound PCI configuration cycles when configured as agent/endpoint. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- This patch relies on the following patches being applied first: - XPedite5370 board support - 85xx: Support for XPedite5200 board/xes/common

[U-Boot] [PATCH 1/2 v2] pci/fsl_pci_init: Enable inbound PCI config cycles

2008-10-29 Thread Peter Tyser
Add fsl_pci_config_unlock() function to enable a PCI/PCIe interface configured in agent/endpoint mode to respond to inbound PCI configuration cycles. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- Changes since v1: - Made unlocking dependent on interface being agent/endpoint - Moved new code

Re: [U-Boot] [PATCH 1/7] sh: ap325rxa: Moveed ap325rxa board in board/renesas

2008-10-28 Thread Peter Tyser
Hi Nobuhiro, The titles for this patch series should be renamed with s/Moveed/Moved/ and maybe s/in/to/. Also, git should be smart enough to know the files were moved as opposed to separate file deletions/creations. For example from [PATCH 01/12] gunzip: move to lib_generic: Signed-off-by:

[U-Boot] [PATCH 0/2] 85xx: Support for XPedite5200

2008-10-28 Thread Peter Tyser
support Best, Peter Peter Tyser (2): 85xx: Add PORDEVSR_PCI1 define XPedite5200 board support MAINTAINERS |1 + MAKEALL |1 + Makefile|3 + board/xes/common/Makefile |3 +- board/xes

[U-Boot] [PATCH 1/2] 85xx: Add PORDEVSR_PCI1 define

2008-10-28 Thread Peter Tyser
Add define used to determine if PCI1 interface is in PCI or PCIX mode. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- include/asm-ppc/immap_85xx.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h index 4892d8b

[U-Boot] [PATCH 2/2] XPedite5200 board support

2008-10-28 Thread Peter Tyser
Initial support for Extreme Engineering Solutions XPedite5200 - a MPC8548-based PMC single board computer. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- MAINTAINERS |1 + MAKEALL |1 + Makefile|3

[U-Boot] [PATCH] pci/fsl_pci_init: Enable inbound PCI config cycles

2008-10-28 Thread Peter Tyser
Set CFG_READY bit in Configuration Ready Register for PCIe devices and clear ACL bit in PBFR to allow Freescale devices to respond to incoming PCI configuration cycles. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- drivers/pci/fsl_pci_init.c | 17 + 1 files changed, 17

Re: [U-Boot] [PATCH v2] pci/fsl_pci_init: Enable inbound PCI config cycles

2008-10-28 Thread Peter Tyser
Hi Kumar, On Oct 28, 2008, at 7:24 PM, Peter Tyser wrote: Set CFG_READY bit in Configuration Ready register for PCIe interfaces and clear ACL bit in PBFR register for PCI interfaces to allow devices to respond to incoming PCI configuration cycles. Signed-off-by: Peter Tyser [EMAIL

[U-Boot] [PATCH v2 0/3] Support for XPedite5370 and misc GPIO

2008-10-27 Thread Peter Tyser
in drivers/gpio. Thanks, Peter Changes since v1: - Rebased to u-boot-mpc85xx tree - Updated NOR flash remapping method - Added CONFIG_SYS_I2C2_OFFSET define to XPEDITE5370.h - Removed CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE from XPEDITE5370.h Peter Tyser (3): pca953x: Add support for PCA953x I2C gpio

[U-Boot] [PATCH v2 1/3] Add support for PCA953x I2C gpio devices

2008-10-27 Thread Peter Tyser
Initial support for NXP's 4 and 8 bit I2C gpio expanders (eg pca9537, pca9557, etc). The CONFIG_PCA953X define enables support for the devices while the CONFIG_CMD_PCA953X define enables the pca953x command. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- Makefile |2 + README

[U-Boot] [PATCH v2 2/3] Add support for Maxim's DS4510 I2C device

2008-10-27 Thread Peter Tyser
Initial support for the DS4510, a CPU supervisor with integrated EEPROM, SRAM, and 4 programmable non-volatile GPIO pins. The CONFIG_DS4510 define enables support for the device while the CONFIG_CMD_DS4510 define enables the ds4510 command. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- README

[U-Boot] [PATCH] 85xx: Fix MPC85xx_PORDEVSR_IO_SEL mask for MPC8572

2008-10-27 Thread Peter Tyser
Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- include/asm-ppc/immap_85xx.h |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h index ad30099..4a0429e 100644 --- a/include/asm-ppc/immap_85xx.h +++ b/include/asm

[U-Boot] [PATCH] 85xx: Update MPC85xx_PORDEVSR_IO_SEL mask

2008-10-27 Thread Peter Tyser
The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx processors have a 3-bit wide IO_SEL field but have the most significant bit is wired to 0 so this change should not affect them. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- include/asm-ppc/immap_85xx.h |2 +- 1 files

Re: [U-Boot] [PATCH 3/3] XPedite5370 board support

2008-10-24 Thread Peter Tyser
board/xes/common/fsl_8572_clk.c | 51 +++ board/xes/common/fsl_85xx_ddr.c | 93 ++ board/xes/common/fsl_85xx_pci.c | 287 + Could you take a look at the new PCI code Kumar submitted (which I just applied), and rework the board code to imitate that

[U-Boot] [PATCH 0/3] Support for XPedite5370 and misc GPIO

2008-10-23 Thread Peter Tyser
in drivers/gpio. Thanks, Peter Peter Tyser (3): pca953x: Add support for PCA953x I2C gpio devices ds4510: Add support for Maxim's DS4510 I2C device XPedite5370 board support MAINTAINERS |3 + MAKEALL |1 + Makefile

[U-Boot] [PATCH 1/3] Add support for PCA953x I2C gpio devices

2008-10-23 Thread Peter Tyser
Initial support for NXP's 4 and 8 bit I2C gpio expanders (eg pca9537, pca9557, etc). The CONFIG_PCA953X define enables support for the devices while the CONFIG_CMD_PCA953X define enables the pca953x command. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- Makefile |2 + README

[U-Boot] [PATCH 2/3] Add support for Maxim's DS4510 I2C device

2008-10-23 Thread Peter Tyser
Initial support for the DS4510, a CPU supervisor with integrated EEPROM, SRAM, and 4 programmable non-volatile GPIO pins. The CONFIG_DS4510 define enables support for the device while the CONFIG_CMD_DS4510 define enables the ds4510 command. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- README

Re: [U-Boot] [PATCH][RFC] Update U-Boot's build timestamp on every compile

2008-10-21 Thread Peter Tyser
Hi Wolfgang, __TIME__ and __DATE__ aren't ideal as they are only updated when the file that contains them is recompiled. For example, during the normal modify/build/test cycle the version string remains the same for an 85xx board as start.S would not be recompiled. So any number of

Re: [U-Boot] [PATCH][RFC] Update U-Boot's build timestamp on every compile

2008-10-21 Thread Peter Tyser
Hi Andy, I don't think he's wanting this as much for releases (which would be fine with the git id as you mentioned), but during the development process. It is very useful during development to have a timestamp which confirms that what you are running now is what you expect. There are

Re: [U-Boot] [PATCH v2] Update U-Boot's build timestamp on every compile

2008-10-21 Thread Peter Tyser
Hi Wolfgang, --- a/Makefile +++ b/Makefile @@ -368,6 +368,10 @@ $(VERSION_FILE): @( printf '#define U_BOOT_VERSION U-Boot %s%s\n' $(U_BOOT_VERSION) \ '$(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion $(TOPDIR))' \ ) [EMAIL PROTECTED]

[U-Boot] [PATCH v3] Update U-Boot's build timestamp on every compile

2008-10-21 Thread Peter Tyser
Use the GNU 'date' command to auto-generate a new U-Boot timestamp on every compile. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- NOTE: As far as the changes to the Makefile, I wasn't sure why the NAND_SPL and ONENAND_IPL didn't have the depend dependency and why they needed

[U-Boot] [PATCH][RFC] Update U-Boot's build timestamp on every compile

2008-10-17 Thread Peter Tyser
Use the GNU 'date' command to auto-generate a new U-Boot timestamp on every compile. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- I noticed that the build time of U-Boot was not updated on every compile which occassionally threw me for a loop as to whether a new U-Boot binary was programmed

Re: [U-Boot] [PATCH][RFC] Update U-Boot's build timestamp on every compile

2008-10-17 Thread Peter Tyser
On Fri, 2008-10-17 at 17:51 -0500, Peter Tyser wrote: Use the GNU 'date' command to auto-generate a new U-Boot timestamp on every compile. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- I noticed that the build time of U-Boot was not updated on every compile which occassionally threw me

[U-Boot] [PATCH] Add feature-removal-schedule.txt

2008-10-14 Thread Peter Tyser
Add a text file which lists features to be removed from U-Boot in the future. The initial entry plans for removal of individual I2C commands. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- I wasn't sure what to make of the 'Deprecate autosrc command' on http://www.denx.de/wiki/U-Boot

Re: [U-Boot] [PATCH] fsl_pci_init do not scan bus when configured as an end-point

2008-10-13 Thread Peter Tyser
On Mon, 2008-10-13 at 14:14 -0500, Andy Fleming wrote: On Wed, Oct 8, 2008 at 11:38 PM, Ed Swarthout [EMAIL PROTECTED] wrote: Signed-off-by: Ed Swarthout [EMAIL PROTECTED] Acked-by: Andy Fleming [EMAIL PROTECTED] When agent/end-point, I thought the CPU must enable inbound PCI configuration

[U-Boot] [PATCH] Remove CFG_EEPROM_PAGE* dependencies for temperature sensors

2008-09-23 Thread Peter Tyser
The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and CFG_EEPROM_PAGE_WRITE_BITS in various temperature sensor drivers are not necessary Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- drivers/hwmon/ds1621.c |5 - drivers/hwmon/lm75.c |6 -- drivers/hwmon/lm81.c |6 -- 3

[U-Boot] [PATCH] Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references

2008-09-23 Thread Peter Tyser
Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- doc/README.PIP405|8 include/configs/APC405.h |1 - include/configs/ASH405.h |1 - include/configs/B2.h |1 - include/configs/CATcenter.h |1 - include/configs/CMS700.h

[U-Boot] [PATCH v4] Support for multiple SGMII/TBI interfaces for TSEC ethernet

2008-09-16 Thread Peter Tyser
Fix TBI PHY accesses to use the proper offset in CPU register space. The previous code would incorrectly access the TBI PHY by reading/writing to CPU register space at the same location as would be used to access external PHYs. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- drivers/net/tsec.c

Re: [U-Boot] [PATCH v3] Support for multiple SGMII/TBI interfaces for TSEC ethernet

2008-09-15 Thread Peter Tyser
On Mon, 2008-09-15 at 16:13 -0500, Andy Fleming wrote: @@ -299,12 +301,10 @@ static int init_phy(struct eth_device *dev) { struct tsec_private *priv = (struct tsec_private *)dev-priv; struct phy_info *curphy; - volatile tsec_t *phyregs = priv-phyregs;

Re: [U-Boot] [PATCH v3] Support for multiple SGMII/TBI interfaces for TSEC ethernet

2008-09-15 Thread Peter Tyser
Hi Andy, @@ -299,12 +301,10 @@ static int init_phy(struct eth_device *dev) { struct tsec_private *priv = (struct tsec_private *)dev-priv; struct phy_info *curphy; - volatile tsec_t *phyregs = priv-phyregs; volatile tsec_t *regs = priv-regs;

[U-Boot] Merge window questions

2008-09-11 Thread Peter Tyser
Hello, I'm assuming the merge window has been closed based on http://www.denx.de/wiki/U-Boot/ReleaseCycle and the fact that v2008.10-rc1 has been tagged. Does U-Boot accept new drivers/board support patches (ie new features which can't regress) outside of merge windows, or only bug fixes? My

[U-Boot] [PATCH] Update mailing list email and archive addresses

2008-09-10 Thread Peter Tyser
Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- The reference to [EMAIL PROTECTED] on this page should also be updated: http://www.denx.de/wiki/U-Boot/Patches MAINTAINERS |2 +- README |8 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/MAINTAINERS b

[U-Boot] [PATCH v2] Support for multiple SGMII/TBI interfaces for TSEC ethernet

2008-09-09 Thread Peter Tyser
Fix TBI PHY accesses to use the proper offset in CPU register space. The previous code would incorrectly access the TBI PHY by reading/writing to CPU register space at the same location as would be used to access external PHYs. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- I replaced

Re: [U-Boot] [PATCH] Remove support for booting ARTOS images

2008-09-08 Thread Peter Tyser
Hello Kumar, On Mon, 2008-09-08 at 08:41 -0500, Kumar Gala wrote: Pantelis Antoniou stated: AFAIK, it is still used but the products using PPC are long gone. Nuke it plz (from orbit). So remove it since it cleans up a usage of env_get_char outside of the environment code.

Re: [U-Boot] [PATCH] cmd_mem.c: Fix help message alignment

2008-09-08 Thread Peter Tyser
What is the preferred command indentation in general? - Tabs or spaces? eg: dhcp\t- invoke DHCP client to obtain IP/boot params\n exit- exit script\n TABs are preferred, as they save memory footprint for the U-Boot image. But for the help textx, this often makes the code

Re: [U-Boot] [PATCH] Add support for booting of INTEGRITY operating system uImages

2008-09-08 Thread Peter Tyser
Hello, In message [EMAIL PROTECTED] you wrote: Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- README |5 +++-- common/cmd_bootm.c | 39 +++ common/image.c |3 +++ include/image.h|1 + 4 files changed, 46

[U-Boot] [PATCH v2] Add support for booting of INTEGRITY operating system uImages

2008-09-08 Thread Peter Tyser
Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- This should be applied after [PATCH v2] Remove support for booting ARTOS images. README|5 ++- common/cmd_bootm.c| 38 + common/image.c

[U-Boot] [PATCH] Support multiple SGMII/TBI interfaces for TSEC ethernet

2008-09-08 Thread Peter Tyser
will break in many hardware configurations. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- The above limitations were noticed on an mpc8572-based board with 2 sgmii interfaces with external PHYs. Both external PHYs are connected to the MDIO interface of TSEC1 which caused TSEC2 to be non

Re: [U-Boot] [PATCH 06/12] autoscript: Move conditional compilation to Makefile

2008-08-28 Thread Peter Tyser
Hi Jean-Chritophe, On Thu, 2008-08-28 at 12:27 +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile |3 +- common/{cmd_autoscript.c = autoscript.c} | 44

[U-Boot] [PATCH] mod_i2c_mem() bugfix

2008-08-15 Thread Peter Tyser
The last used chip, address, and address length were not being stored for the imm and imn commands. Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- common/cmd_i2c.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/cmd_i2c.c b/common/cmd_i2c.c index aac7e9a

Re: [U-Boot] [PATCH] Replace references to extern console_buffer with a function call

2008-08-15 Thread Peter Tyser
what is the purpose of this patch? As far as I can see we gain nothing, but we lose on memory footpint. I guess there is some problem you're trying to fix, but you did not mention it? I've added a basic debug serial console which relies on this patch. The debug console is a simple command

[U-Boot] [PATCH] [RFC] Early serial debug console

2008-08-15 Thread Peter Tyser
The following 3 patches enable a basic serial console while U-Boot is still executing out of flash. When enabled, the user is dropped to the debug console when an error occurs in a function in the init_sequence[]. The user can also drop to a debug console by pressing ctrl-c during bootup. Many

Re: [U-Boot] [PATCH 1/3] [RFC] Add support for early serial debug console

2008-08-15 Thread Peter Tyser
I understand what you are trying todo, but I think it doesn't work. You are invoking a numer of pretty complex functions (like readline() and run_command() and ...) which in turn ionvoke other functions etc. - all of them written in C with theassumption that they have a valid C runtime

Re: [U-Boot] [PATCH] Replace references to extern console_buffer with a function call

2008-08-15 Thread Peter Tyser
I'm not sure if the debug console will be accepted to mainline, but I think this patch alone is an improvement over the current implementation Frankly, I don't think so - it just makes the code bigger for no good use to 99.9% of the users. of using a global string and multiple

[U-Boot] [PATCH] Add support for booting of INTEGRITY operating system uImages

2008-08-13 Thread Peter Tyser
Signed-off-by: Peter Tyser [EMAIL PROTECTED] --- README |5 +++-- common/cmd_bootm.c | 39 +++ common/image.c |3 +++ include/image.h|1 + 4 files changed, 46 insertions(+), 2 deletions(-) diff --git a/README b/README index

<    4   5   6   7   8   9