Re: [PATCH 20/27] ppc: Remove xpedite boards

2021-05-17 Thread Peter Tyser
Acked-by: Peter Tyser - Original Message - > From: "Tom Rini" > To: "U-Boot Mailing List" > Cc: "ptyser" > Sent: Friday, May 14, 2021 8:34:25 PM > Subject: [PATCH 20/27] ppc: Remove xpedite boards > These boards have not been converte

Re: [U-Boot] Using MinGW gcc cross-compiling host tools for Windows broken

2019-10-14 Thread Peter Tyser
2019 4:46:16 AM > Subject: Using MinGW gcc cross-compiling host tools for Windows broken > Hi Peter, > > I noticed that you were the first one that added support to build > native Win32 tools using MinGW GCC via: > > commit 2f8d396b9302eddcd8d552648e101a46b7a80acd > A

Re: [PATCH v3 15/15] MAINTAINERS: update maintainers for broadcom ns3 platform

2020-06-26 Thread Peter Tyser
> diff --git a/MAINTAINERS b/MAINTAINERS > index 1fd975c72f..0c72deaa44 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -11,7 +11,7 @@ Descriptions of section entries: > Type is one of: git, hg, quilt, stgit, topgit > S: Status, one of the following: > Supported: Som

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 co

Re: [U-Boot] [PATCH] cmd_i2c: Update available commands when CONFIG_I2C_CMD_TREE is defined

2008-10-14 Thread Peter Tyser
Hello Wolfgang, > In message <[EMAIL PROTECTED]> you wrote: > > If CONFIG_I2C_CMD_TREE is defined, individual i2c commands such as > > 'imd', 'imm', 'imw', etc should not be available as their functionality > > is duplicated in the 'i2c' command. > > If I remember correctly, there has been discus

[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

[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 binar

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 e

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

2008-10-20 Thread Peter Tyser
Hi Kim, > > 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 >

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

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

2008-10-21 Thread Peter Tyser
Hi Wolfgang, > Note that I'm not against this in principle. But if it gets changed, > then not only for a single architecture, but everywhere. > > > Cost: $0.00. Benefit: $0.02. Benefit/Cost = priceless. > > Cost: work to implement, review and test. Benefit: $0.02. > Benefit/Cost = small ;-)

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 v

[U-Boot] [PATCH v2] 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]> --- Changes since inital PATCH/RFC: * Split up U_BOOT_DATE define (date and time) into U_BOOT_DATE (day, month, year) and U_BOOT_TIME (time o

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))' \ > > )

[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"

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

2008-10-23 Thread Peter Tyser
GPIO devices 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

[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

[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 PROTEC

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 imit

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

2008-10-27 Thread Peter Tyser
GPIO devices 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 P

[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

[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 PROTEC

[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/i

[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

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: Jea

[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

[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

[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 chang

[U-Boot] [PATCH v2] 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 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 PROTECTED]> --- Changes since v1: - Anal retentive update to the

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. &g

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 ne

[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 boa

[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 ne

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

2008-10-31 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) defin

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

2008-10-31 Thread Peter Tyser
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 build timestamp on every compile" patch sh

[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 @@ stat

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 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")' \ > > +

[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) defin

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]> > > --- > >

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

2008-11-10 Thread Peter Tyser
esent. 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 --

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

2008-11-11 Thread Peter Tyser
esent. 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

[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 $(obj)tools/{crc32.c,env_embedded.c,env/crc32.c,md5.c,s

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/M

[U-Boot] [PATCH] Use bash for default GNU Make shell application

2008-11-12 Thread Peter Tyser
Some Make script commands rely on bash-specific features so default to bash for the SHELL variable with a fallback to the standard sh shell Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- Commands such as these from the top-level Makefile failed on my Ubuntu 7.04 system which has the sh

[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 p

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 insertio

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 acces

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

2008-11-18 Thread Peter Tyser
Hi Wolfgang, On Tue, 2008-11-18 at 22:33 +0100, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <[EMAIL PROTECTED]> you wrote: > > Initial support for NXP's 4 and 8 bit I2C gpio expanders > > (eg pca9537, pca9557, etc). The CONFIG_PCA953X define > >

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 CON

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 &g

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

2008-11-18 Thread Peter Tyser
On Tue, 2008-11-18 at 22:51 +0100, Wolfgang Denk wrote: > Dear Andy, > > In message <[EMAIL PROTECTED]> you wrote: > > On Mon, Oct 27, 2008 at 1:59 PM, Peter Tyser <[EMAIL PROTECTED]> wrote: > > > Initial support for Extreme Engineering Solutions XPedite5370 -

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 outpu

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

2008-11-18 Thread Peter Tyser
On Wed, 2008-11-19 at 00:28 +0100, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <[EMAIL PROTECTED]> you wrote: > > These 2 patches add support for the XPedite5200 SBC - > > a MPC8548-based PMC card made by Extreme Engineering > > Solutions. > &g

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. > > > > Signe

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. O

[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

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

2008-11-26 Thread Peter Tyser
ixed gur->devdisr typo for PCIe2 - Fixed some lines over 80 chars - 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

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

2008-11-26 Thread Peter Tyser
rovides summary 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 +

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

2008-11-26 Thread Peter Tyser
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 + includ

[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

[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

[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 a5a256b..199

[U-Boot] [PATCH 0/2] net: Additional IP fragmentation check

2008-12-01 Thread Peter Tyser
ory display of &NetFragBuf, but the assembled packet was not making its way up the stack FWIW. Peter Tyser (2): net: Define IP flag field values net: Add additional IP fragmentation check include/net.h |6 ++ net/net.c |8 +--

[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 --- a/net/net

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

2008-12-01 Thread Peter Tyser
The TftpStart() function modifies the 'BootFile' string when 'BootFile' contains both an IP address and filename (eg 1.2.3.4:/path/file). This causes subsequent calls to TftpStart to incorrectly parse the TFTP filename and server IP address to use. For example: => tftp 0x10 10.52.0.62:/home/pt

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

2008-12-01 Thread Peter Tyser
ixed gur->devdisr typo for PCIe2 - Fixed some lines over 80 chars - 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

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

2008-12-01 Thread Peter Tyser
rovides summary 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 +

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

2008-12-01 Thread Peter Tyser
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 + includ

[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 v3 1/2] 85xx: Add PORDEVSR_PCI1 define

2008-12-01 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

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

2008-12-01 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

[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 - include/config

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: Pe

[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/MPC85

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

2008-12-01 Thread Peter Tyser
: 0x10 Loading: * TFTP error: 'File not found' (1) 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(-

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

2008-12-02 Thread Peter Tyser
t; as an address instead of the intended 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

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

2008-12-04 Thread Peter Tyser
On Thu, 2008-12-04 at 03:14 -0600, Andy Fleming wrote: > + } > +#else > + gur->devdisr |= MPC85xx_DEVDISR_PCIE1; /* disable */ > +#endif /* CONFIG_PCIE2 */ > > > MPC85xx_DEVDISR_PCIE1 isn't defined anywhere. Did you miss some > changes you made to header files? Thanks for catching t

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 >

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 sup

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

2008-12-17 Thread Peter Tyser
Changes since v5: - Additional error checks in pca953x.c and ds4510.c - Changed usage of maxargs 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 supp

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

2008-12-17 Thread Peter Tyser
rovides summary information for the given pca953x device. Signed-off-by: Peter Tyser --- Makefile |2 + README |9 ++ drivers/gpio/Makefile | 47 ++ drivers/gpio/pca953x.c | 227 include/pca953

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

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

[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

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

2008-08-13 Thread Peter Tyser
On Wed, 2008-08-13 at 16:10 -0500, Kumar Gala wrote: > > Any reason we can't just use go? > > - k Our INTEGRITY images are loaded to address 0x0. We can't relocate the INTEGRITY binaries there without disabling interrupts first (ppc boards), which go doesn't do. Best, Peter __

[U-Boot] [PATCH] [RFC] Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions

2008-08-13 Thread Peter Tyser
Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- Not sure if "boot" is the proper word to use in the command definitions since the downloaded images are only booted if "autostart=yes", and the majority of board configs don't have autostart set to yes. I'd v

[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 a

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

2008-08-15 Thread Peter Tyser
Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- board/amcc/canyonlands/bootstrap.c |2 +- board/amcc/katmai/cmd_katmai.c |2 +- board/amcc/sequoia/cmd_sequoia.c |2 +- board/amcc/yucca/cmd_yucca.c |2 +- board/eltec/bab7xx/misc.c |2 +- board

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 co

[U-Boot] [PATCH 2/3] [RFC] Make memory commands usable before relocation to SDRAM

2008-08-15 Thread Peter Tyser
Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- common/cmd_mem.c | 32 ++-- 1 files changed, 22 insertions(+), 10 deletions(-) diff --git a/common/cmd_mem.c b/common/cmd_mem.c index f3299bd..6eb1fd4 100644 --- a/common/cmd_mem.c +++ b/common/cmd_mem.c @@

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

2008-08-15 Thread Peter Tyser
Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- README | 11 +++ common/console.c | 34 +- common/serial.c |6 -- include/common.h |3 +++ lib_arm/board.c | 12 lib_i386/board.c | 13 - li

[U-Boot] [PATCH 3/3] [RFC] Make i2c commands usable before relocation to SDRAM

2008-08-15 Thread Peter Tyser
Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- common/cmd_i2c.c | 36 +++- 1 files changed, 23 insertions(+), 13 deletions(-) diff --git a/common/cmd_i2c.c b/common/cmd_i2c.c index 1f32646..ae7ed90 100644 --- a/common/cmd_i2c.c +++ b/common/cmd

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 runtim

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 mult

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

2008-08-16 Thread Peter Tyser
Thanks for the comments. Response inline: On Sat, 2008-08-16 at 09:49 +0200, Wolfgang Denk wrote: > Dear Peter, > > In message <[EMAIL PROTECTED]> you wrote: > > > > I attempted to account for this fact. I followed the program flow of > > run_command() and readline() in particular looking for

[U-Boot] Location of jump table in global_data structure

2008-08-19 Thread Peter Tyser
Hello, I've noticed that the jump table pointer (**jt) in the global_data structure is always the last field in the structure. When standalone applications are compiled, they hard code the jump table pointer offset into the global_data structure. When new versions of U-Boot come out which add/rem

Re: [U-Boot] Location of jump table in global_data structure

2008-08-19 Thread Peter Tyser
> > I've noticed that the jump table pointer (**jt) in the global_data > > structure is always the last field in the structure. When standalone > > applications are compiled, they hard code the jump table pointer offset > > into the global_data structure. When new versions of U-Boot come out > >

  1   2   3   4   5   6   7   8   9   10   >