Re: [U-Boot] Antw: Re: [PATCH] Add support for jadecpu board

2010-01-17 Thread Wolfgang Denk
Dear "Matthias Weisser", In message <4b541652.2e8a.006...@graf-syteco.de> you wrote: > > >> > --- a/Makefile > >> > +++ b/Makefile > >> > @@ -2874,6 +2874,13 @@ TNY_A9260_config : unconfig > >> > @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h > >> > @$(MKCO

Re: [U-Boot] [PATCH] Add support for jadecpu board

2010-01-17 Thread Matthias Weißer
Hi Tom thanks for your feedback. Am 16.01.2010 20:18, schrieb Tom: >> +/* >> + * Miscellaneous platform dependent initialisations >> + */ >> +int board_init(void) >> +{ > > board_init should fill out entries in > structglobal_data. > See other board like lopgicpd/zoom1 as an example. > Ma

Re: [U-Boot] [PATCH 3/9] MX51: Add register definitions

2010-01-17 Thread Wolfgang Denk
Dear Stefano, In message <4b54024e.1070...@denx.de> you wrote: > > >> +#define PLL_DP_CTL0x00 > >> +#define PLL_DP_CONFIG 0x04 > >> +#define PLL_DP_OP 0x08 > >> +#define PLL_DP_MFD0x0C > >> +#define PLL_DP_MFN0x10 > >> +#define PLL_DP_MFNMINUS 0x14 > >> +#define PLL_D

Re: [U-Boot] [PATCH 9/9] Add initial support for Freescale mx51evk board

2010-01-17 Thread Stefano Babic
Wolfgang Denk wrote: > Dear Stefano Babic, > Hi Wolfgang, >> +$(obj)u-boot.imx: $(obj)u-boot.bin >> +$(obj)tools/mkimage -n $(IMX_CONFIG) -T imximage \ >> +-e $(TEXT_BASE) -d $< $@ > > This actually belongs into the patch that adds the imx image format > support.

Re: [U-Boot] [PATCH v5 08/12] SPEAr : Support for HW mac id read/write from i2c mem

2010-01-17 Thread Vipin KUMAR
On 1/18/2010 12:49 PM, Ben Warren wrote: if (chip->cpufreq == -1) @@ -156,6 +215,13 @@ int do_chip_config(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) else printf("DDR Type= Not Known\n"); +if (!i2c_read_m

Re: [U-Boot] [PATCH v5 08/12] SPEAr : Support for HW mac id read/write from i2c mem

2010-01-17 Thread Ben Warren
Vipin, Vipin KUMAR wrote: > On 1/18/2010 11:45 AM, Ben Warren wrote: > >>> int misc_init_r(void) >>> { >>> +#if defined(CONFIG_CMD_NET) >>> +uchar mac_id[6]; >>> + >>> +if (!eth_getenv_enetaddr("ethaddr", mac_id) && >>> !i2c_read_mac(mac_id)) >>> +eth_setenv_enetaddr("ethaddr",

Re: [U-Boot] [PATCH 5/9] serial_mxc: add support for MX51 processor

2010-01-17 Thread Stefano Babic
Wolfgang Denk wrote: > Dear Stefano Babic, > Hi Wolfgang, >> @@ -49,8 +51,14 @@ >> #define UART_PHYS 0x1001b000 >> #elif defined(CONFIG_SYS_MX27_UART6) >> #define UART_PHYS 0x1001c000 >> +#elif defined(CONFIG_SYS_MX51_UART1) >> +#define UART_PHYS UART1_BASE_ADDR >> +#elif defined(CONFIG_SYS_M

Re: [U-Boot] [PATCH v5 08/12] SPEAr : Support for HW mac id read/write from i2c mem

2010-01-17 Thread Mike Frysinger
On Monday 18 January 2010 01:15:43 Ben Warren wrote: > Vipin KUMAR wrote: > > This patch adds the support to read and write mac id from i2c > > memory. > > For reading: > > if (env contains ethaddr) > > pick env ethaddr > > else > > pick ethaddr from i2c memory > >

Re: [U-Boot] [PATCH v5 08/12] SPEAr : Support for HW mac id read/write from i2c mem

2010-01-17 Thread Vipin KUMAR
On 1/18/2010 11:45 AM, Ben Warren wrote: >> int misc_init_r(void) >> { >> +#if defined(CONFIG_CMD_NET) >> +uchar mac_id[6]; >> + >> +if (!eth_getenv_enetaddr("ethaddr", mac_id) && >> !i2c_read_mac(mac_id)) >> +eth_setenv_enetaddr("ethaddr", mac_id); >> > It's really not a good i

Re: [U-Boot] [PATCH 2/9] MX51: Add initial support for the Freescale MX51

2010-01-17 Thread Stefano Babic
Wolfgang Denk wrote: > Dear Stefano Babic, > Hi Wolfgang, > It makes little sense to implement arch specific commands that will > most probably repeated - I don;t want to see a "mx51clocks" command > here, and "mx25clocks", "mx27clocks", "mx31clocks", "mx35clocks", ... > commands on other system

[U-Boot] Antw: Re: [PATCH] Add support for jadecpu board

2010-01-17 Thread Matthias Weisser
Hello Wolfgang >>> Wolfgang Denk schrieb am 16.01.2010 um 21:11: > Dear Matthias Weisser, > > In message <4b5210ea.8000...@windriver.com> Tom Rix wrote: >> >> > index ed6156f..98c147d 100644 >> > --- a/Makefile >> > +++ b/Makefile >> > @@ -2874,6 +2874,13 @@ TNY_A9260_config: unconfig

Re: [U-Boot] [PATCH 3/9] MX51: Add register definitions

2010-01-17 Thread Stefano Babic
Wolfgang Denk wrote: > Dear Stefano Babic, > Hi Wolfgang, >> +#define MXC_CCM_CBCDR_EMI_PODF_OFFSET (22) Thanks, I do it. >> +/* WEIM registers */ >> +#define CSGCR1 0x00 >> +#define CSGCR2 0x04 >> +#define CSRCR1 0x08 >> +#define CSRCR2 0x0C >> +#define CSWCR

Re: [U-Boot] [PATCH V2 1/9] mkimage: Add Freescale imx Boot Image support (imximage)

2010-01-17 Thread Stefano Babic
Wolfgang Denk wrote: > Dear Stefano Babic, > Hi Wolfgang, > > Line to long. And please try to stick with a consistent error message > format. I see I have too long lines in all patches I have sent. I check this issue for all of them. >> +return (params->dflag && (params->fflag || params-

Re: [U-Boot] [PATCH v5 08/12] SPEAr : Support for HW mac id read/write from i2c mem

2010-01-17 Thread Ben Warren
Hi Vipin, Sorry for chiming in so late in the review process. Vipin KUMAR wrote: > This patch adds the support to read and write mac id from i2c > memory. > For reading: > if (env contains ethaddr) > pick env ethaddr > else > pick ethaddr from i2c memory >

[U-Boot] MMC problem in PXA270 hardware

2010-01-17 Thread Vaisakh
Hi, I am trying bring up MMC in our hardware which is running on PXA270 processor with 128 MB RAM. But i am not able to detect the SDCARD, as it is showing the invalid partition table (the dos partition magic number is not correct, it is 44aa, instead of 55 aa), what could be the problem for such

Re: [U-Boot] [RFC] 83xx: uec: miiphybb: Added support for bitBang SMI and uec SMI enabled at the same time.

2010-01-17 Thread Ben Warren
Hi Richard, Richard Retanubun wrote: > Wolfgang Denk wrote: > >> Can you please check the status of this patch: >> http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/61758 >> >> Thanks. >> >> Best regards, >> >> Wolfgang Denk >> > > Hello, > > Wofgang, I believe at the time Ben made the comme

Re: [U-Boot] NAND read error on Sequoia

2010-01-17 Thread Stefan Roese
Hi Wolfgang, On Monday 18 January 2010 00:06:35 Wolfgang Denk wrote: > > I don't think that this is a Sequoia (4xx NDFC) specific problem. My > > first idea was that this is caused because of bad blocks. Bad blocks are > > skipped upon read, but "nand read" still wants to read 32MByte in total. >

Re: [U-Boot] [PATCH v5 00/12] Support for SPEAr SoCs

2010-01-17 Thread Vipin KUMAR
On 1/18/2010 1:42 AM, Tom wrote: > Vipin KUMAR wrote: >> Hello Tom, >> >> Please consider the patchset version5 for mainline inclusion >> >> This patchset contains the version5 for SPEAr SoCs support >> Modifications >> 1. include/configs contins spear3xx.h for SPEAR300, SPEAR310 and SPEAr320 >> va

[U-Boot] Pull request u-boot-marvell.git

2010-01-17 Thread Prafulla Wadaskar
Hi Tom Pls pull the following The following changes since commit 06f95959bc5421e516a9a25012e303dea8833385: Tom Rix (1): ARM Update mach-types are available in the git repository at: http://git.denx.de/u-boot/u-boot-marvell.git master branch. Prafulla Wadaskar (2): Kirkwood:

[U-Boot] [PATCH 3/4 v2] sha1: add dedicated config option

2010-01-17 Thread Mike Frysinger
The sha1 code is currently compiled for everyone, but in reality, it's only used by the FIT code. So make it optional just like MD5. Signed-off-by: Mike Frysinger --- v2 - rebased onto latest tree include/image.h |1 + lib_generic/Makefile |2 +- 2 files changed, 2 inserti

Re: [U-Boot] [PATCH] flash.h: pull in common.h for types

2010-01-17 Thread Mike Frysinger
On Monday 16 November 2009 14:58:33 Mike Frysinger wrote: > Signed-off-by: Mike Frysinger > --- > include/flash.h |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/include/flash.h b/include/flash.h > index c5e7bf4..886d8ef 100644 > --- a/include/flash.h > +++ b/incl

[U-Boot] [PATCH 1/1] [rfc] usb: musb: some more Blackfin stuff

2010-01-17 Thread Mike Frysinger
From: Bryan Wu any thoughts on how to generalize this ? Signed-off-by: Bryan Wu Signed-off-by: Cliff Cai Signed-off-by: Mike Frysinger --- drivers/usb/musb/musb_hcd.c | 20 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/drivers/usb/musb/musb_hcd.c b/dr

[U-Boot] Pull request u-boot-blackfin.git

2010-01-17 Thread Mike Frysinger
The following changes since commit 88ffb2665cd066b6b20cfaade13929d4e8428dde: Heiko Schocher (1): CRAMFS: support cramfs in RAM are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git master Robin Getz (2): asm-generic/signal.h: import from linux

Re: [U-Boot] arm: suen3, suen3_v1, mgcoge2_arm_p1a support

2010-01-17 Thread Wolfgang Denk
Dear Heiko Schocher, In message <4b459395.2050...@denx.de> you wrote: > This patch adds support for the Keymile SUEN3 board variants which > are based on the Marvell Kirkwood (88F6281) SoC. All variants > uses common code stored in board/keymile/km_arm/km_arm.c > > mgcoge2_arm_p1a board: > This a

Re: [U-Boot] CRAMFS: support cramfs in RAM

2010-01-17 Thread Wolfgang Denk
Dear Heiko Schocher, In message <4b45938a.3050...@denx.de> you wrote: > cramfsls and cramfsload are added to the command list. > A cramfs placed at 'cramfs_addr' can the be listed with 'cramfsls' and files > can be loaded with 'cramfsload'. 'cramfs_addr' is an environment variable > specifying the

Re: [U-Boot] powerpc: keymile boards updates

2010-01-17 Thread Wolfgang Denk
Dear Heiko Schocher, In message <4b459386.1040...@denx.de> you wrote: > - malloc size 4 MB for all keymile boards > - use generic FDT code for fixing up the DTS > - enable unit-led at startup for keymile boards > - remove some dts updates for keymile boards > - ppc_83xx, kmeter1: take FE/GbE PHYs

Re: [U-Boot] [PATCH 2/2] env, eeprom: add redundant environment support

2010-01-17 Thread Wolfgang Denk
Dear Heiko Schocher, In message <4b459380.5030...@denx.de> you wrote: > Add redundant environment support for environment lying on a EEPROM. > > Tested on uppcoming suen3 support > > Signed-off-by: Andreas Huber > --- > common/env_eeprom.c | 131 >

Re: [U-Boot] [PATCH 1/2] cmd_eeprom: I2C updates

2010-01-17 Thread Wolfgang Denk
Dear Heiko Schocher, In message <4b45937c.50...@denx.de> you wrote: > - CONFIG_ENV_EEPROM_IS_ON_I2C > define this, if you have I2C and SPI activated, and your > EEPROM, which holds the environment, is on the I2C bus. > > - CONFIG_I2C_ENV_EEPROM_BUS > if you have an Environment on an EEPROM

Re: [U-Boot] [PATCH v3] add ASTRO MCF5373L board

2010-01-17 Thread Wolfgang Denk
Dear Wolfgang Wegner, In message <1263231799-28685-1-git-send-email-w.weg...@astro-kom.de> you wrote: > This patch adds support for ASTRO board(s) based on MCF5373L. > > Signed-off-by: Wolfgang Wegner ... > + /* GPIO configuration for bus should be set correctly from reset, > + * so we

Re: [U-Boot] There appears to be the potential for an undetected error in fs/ext2/dev.c ext2fs_devread()

2010-01-17 Thread Wolfgang Denk
Dear Quentin Armitage, In message <1262482223.2820.161.ca...@samson.armitage.org.uk> you wrote: > In fs/ext2/dev.c in function ext2fs_devread(), if after reading the > first part, there is less than a whole block left to be read (block_len > == 0), then the return value from ext2fs_block_dev_desc-

Re: [U-Boot] Issue in drivers/mmc/mmc.c

2010-01-17 Thread Wolfgang Denk
Dear Quentin Armitage, In message <1262480450.2820.140.ca...@samson.armitage.org.uk> you wrote: > There appears to be a path through mmc_read in drivers/mmc/mmc.c where > malloc'd memory is not freed before exiting mmc_read, although this may > be a hypothetical situation. It occurs if mmc_set_blo

Re: [U-Boot] [PATCH] move definition of macros likely and unlikely to compiler.h

2010-01-17 Thread Wolfgang Denk
Dear Matthias Kaehlcke, In message <2009120545.gh32...@darwin> you wrote: > the macros likely and unlikely were defined in include/linux/mtd/compat.h, > but used in code not related to MTD. moved the macro definitions to compiler.h > > Signed-off-by: Matthias Kaehlcke > --- > include/compil

Re: [U-Boot] [PATCH 2/2] cmd_bootm.c: Change interpretation of standalone image parameters.

2010-01-17 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1261482182-4219-2-git-send-email-...@denx.de> you wrote: > Current code uses the second argument to bootm for standalone images to > override the load address specified in the image instead of passing all > parameters as is to the application. This behaviour is not

Re: [U-Boot] [PATCH 1/2] cmd_bootm.c: Do not load a ramdisk when not booting a kernel.

2010-01-17 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1261482182-4219-1-git-send-email-...@denx.de> you wrote: > In case we boot an image marked as 'standalone' and 'linux', the current > code erroneously tried to load a ramdisk. > > Signed-off-by: Detlev Zundel > --- > common/cmd_bootm.c |3 ++- > 1 files chang

Re: [U-Boot] [PATCH 0/5] kgdb cleanup and Blackfin kgdb port

2010-01-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1261438846-9675-1-git-send-email-vap...@gentoo.org> you wrote: > I can take care of merging the Blackfin-specific KGDB piece through my > tree since it depends on some other Blackfin patches. But all the KGDB > common changes can be merged now. > > Mike Frysinger

Re: [U-Boot] [PATCH 3/5] kgdb: update mem2hex/hex2mem funcs

2010-01-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1261438846-9675-4-git-send-email-vap...@gentoo.org> you wrote: > From: Robin Getz > > Convert the funcs to do the conversion inline so that we can do the copy > all at once with memcpy. This let's us push out an weird arch-specific > issues with accessing differ

Re: [U-Boot] [PATCH 2/5] kgdb: drop duplicate debugger_exception_handler

2010-01-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1261438846-9675-3-git-send-email-vap...@gentoo.org> you wrote: > The debugger_exception_handler definition is the same for everyone, so use > the common one now. > > Signed-off-by: Mike Frysinger > --- > cpu/74xx_7xx/traps.c |4 > cpu/mpc5xx/traps.c |

Re: [U-Boot] [PATCH 1/5] kgdb: add default generic stubs

2010-01-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1261438846-9675-2-git-send-email-vap...@gentoo.org> you wrote: > From: Robin Getz > > The default kgdb functions can be implemented with common U-Boot functions, > so rather than force everyone to copy & paste these things, create a set of > weak stubs. > > Sign

Re: [U-Boot] [PATCH] netconsole: mark local funcs with static

2010-01-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1261423152-16383-1-git-send-email-vap...@gentoo.org> you wrote: > Signed-off-by: Mike Frysinger > --- > drivers/net/netconsole.c | 10 +- > 1 files changed, 5 insertions(+), 5 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Softwa

Re: [U-Boot] [PATCH] easylogo: add support for 16-bit RGB565

2010-01-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1261228749-5833-1-git-send-email-vap...@gentoo.org> you wrote: > From: Michael Hennerich > > Signed-off-by: Michael Hennerich > Signed-off-by: Mike Frysinger > --- > tools/easylogo/easylogo.c | 78 ++-- > 1 files chang

Re: [U-Boot] [PATCH 2/2] mpc5xxx/cpu_init.c: Convert to IO accessors.

2010-01-17 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1261154157-25894-3-git-send-email-...@denx.de> you wrote: > Signed-off-by: Detlev Zundel > --- > cpu/mpc5xxx/cpu_init.c | 126 +-- > 1 files changed, 78 insertions(+), 48 deletions(-) Applied, thanks. Best regards, W

Re: [U-Boot] [PATCH 1/2] mpc5xxx.h: Add structure definition for XLB arbiter block.

2010-01-17 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1261154157-25894-2-git-send-email-...@denx.de> you wrote: > Signed-off-by: Detlev Zundel > --- > include/mpc5xxx.h | 17 + > 1 files changed, 17 insertions(+), 0 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engi

Re: [U-Boot] [PATCH] Add support for Indefia Nimbus Cloud Board

2010-01-17 Thread Wolfgang Denk
Dear Semih Hazar, In message <4b2a2e3a.4070...@indefia.com> you wrote: > > Nimbus Cloud is an AVR32 based single board computer with > 256MiB NAND, 64MiB SDRAM, battery backed RTC, LCD/touch > screen support, VGA Output, Ethernet and offers seamless > integration with Indefia's Zigbee transceiver

Re: [U-Boot] NAND read error on Sequoia

2010-01-17 Thread Wolfgang Denk
Dear Stefan Roese, In message <200912090709.18420...@denx.de> you wrote: > > [Added Scott to Cc] > > On Tuesday 08 December 2009 23:03:28 Wolfgang Denk wrote: > > it seems there is a problem with NAND on Sequoia: > > > > U-Boot 2009.11-rc2 (Dec 08 2009 - 22:52:34) > > ... > > NAND:

Re: [U-Boot] [PATCH 1/4 v2] config_defaults.h: new header for common u-boot config defaults

2010-01-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1259806503-19853-1-git-send-email-vap...@gentoo.org> you wrote: > There are a bunch of features in U-Boot that we want to enable by default, > and it's best if we centralize them in one place rather than updating all > the board files out there. > > Signed-off-by:

Re: [U-Boot] [PATCH v2] SPI: Fix 32 bit transfers in mxc_spi.c

2010-01-17 Thread Wolfgang Denk
Dear Feng, can you please take care of this? In message <1263726375-4929-1-git-send-email-lilja.mag...@gmail.com> Magnus Lilja wrote: > Commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f, "i.MX31: fix SPI > driver for shorter than 32 bit" broke 32 bit transfers. This patch > makes single 32 bit tr

[U-Boot] [PATCH] TFTP: allow for adjustable retransmission timout

2010-01-17 Thread Wolfgang Denk
So far, TFTP negotiated a fixed retransmission timeout of 5 seconds. In some cases (busy networks, slow TFTP servers) this caused very slow transfers. Add new environment variable "tftptimeout" allows to set this timeout. Lowering this value may make downloads succeed faster in networks with high p

Re: [U-Boot] Pull request u-boot-blackfin.git

2010-01-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1263739238-12382-1-git-send-email-vap...@gentoo.org> you wrote: > The following changes since commit 2ff6922280025c1315c53fa2eb4ab33f0c9591de: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot-arm > > are available in the git repos

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

2010-01-17 Thread Wolfgang Denk
Dear Peter Tyser, In message <1263764306-12273-1-git-send-email-pty...@xes-inc.com> you wrote: > When referring to PCIe and USB 'endpoint' is the standard naming > convention. > > Signed-off-by: Peter Tyser > Acked-by: Stefan Roese > Acked-by: Remy Bohmer > --- > Changes since v1: Rebased on T

Re: [U-Boot] [PATCH 0/4] No GOT in IRQ and use r12 as GOT ptr

2010-01-17 Thread Wolfgang Denk
Dear Joakim Tjernlund, In message you wrote: > > > Not really forgotten. Actually I was waiting for a resend - I thought > > these patches were still RFC. > > > > I can't apply them as is, as the Signed-off-by: line is missing in > > patches 1, 2, and 3. > > Ouch, I will regenerate them next w

[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 Acked-by: Stefan Roese Acked-by: Remy Bohmer --- Changes since v1: Rebased on TOT board/amcc/yucca/yucca.c |2 +- board/atum8548/atum8548.c |2 +- b

Re: [U-Boot] [PATCH v6] TI DaVinci: Driver for the davinci SPI controller

2010-01-17 Thread Wolfgang Denk
Dear "Paulraj, Sandeep", In message <0554bef07d437848af01b9c9b5f0bc5d97fea...@dlee01.ent.ti.com> you wrote: > > Wolfgang, Tom, > > We don't have a repository for SPI as such. If it is OK I would like to add= > this to my u-boot-ti tree. OK with me, too. Best regards, Wolfgang Denk -- DENX

Re: [U-Boot] [PATCH 0/2] omap3: Optimize detection of cpu revision

2010-01-17 Thread Wolfgang Denk
Dear Sanjeev, in message you wrote: > > Also, I believe faster execution time is always better; not just > in critical sections of code. I possibly used "global" quite loosely; > while responding earlier. The variable cpu_revision (being discussed) > here is actually a 'static'. (See patch 1/2).

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

2010-01-17 Thread Wolfgang Denk
Dear Peter Tyser, In message <4b48a977.8050...@xes-inc.com> you wrote: > > > Since this patch mostly touches board files I suggest this patch goes > > through the board maintainers tree. > > Acked-by: Remy Bohmer > > I wasn't aware of a board maintainers tree... I was assuming Wolfgang > woul

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

2010-01-17 Thread Wolfgang Denk
Dear Peter Tyser, In message <1262821277-2922-1-git-send-email-pty...@xes-inc.com> you wrote: > When referring to PCIe and USB 'endpoint' is the standard naming > convention. > > Signed-off-by: Peter Tyser > --- > I could only take so much of seeing "End Point" on every bootup before > I cracked

Re: [U-Boot] [PATCH 0/4] No GOT in IRQ and use r12 as GOT ptr

2010-01-17 Thread Joakim Tjernlund
Wolfgang Denk wrote on 17/01/2010 20:12:31: > > Dear Joakim Tjernlund, > > In message 00510...@transmode.se> you wrote: > > Has this been forgotten(again)? > > > > Jocke > > > > > > This series removes the needs to access the GOT in > > > IRQ handlers, then switches GOT PTR in start.S asm to > >

Re: [U-Boot] [PATCH v5 00/12] Support for SPEAr SoCs

2010-01-17 Thread Tom
Vipin KUMAR wrote: > Hello Tom, > > Please consider the patchset version5 for mainline inclusion > > This patchset contains the version5 for SPEAr SoCs support > Modifications > 1. include/configs contins spear3xx.h for SPEAR300, SPEAR310 and SPEAr320 > variants > 2. include/configs contins spear

Re: [U-Boot] [PATCH v2] Make getenv_IPaddr() global

2010-01-17 Thread Wolfgang Denk
Dear Dirk Behme, In message <1262504038-21479-1-git-send-email-dirk.be...@googlemail.com> you wrote: > There are boards out there that do not have network support in > U-Boot (CONFIG_CMD_NET not set), but they do so in Linux. This > makes it desirable to be able to port network configuration (lik

Re: [U-Boot] [PATCH 0/4] No GOT in IRQ and use r12 as GOT ptr

2010-01-17 Thread Wolfgang Denk
Dear Joakim Tjernlund, In message you wrote: > Has this been forgotten(again)? > > Jocke > > > > This series removes the needs to access the GOT in > > IRQ handlers, then switches GOT PTR in start.S asm to > > use r12 instead of r14. This leads up to the removal of > > -ffixed-r14 gcc option

Re: [U-Boot] [PATCH 1/8 V2] add at91 SoC access with c structures

2010-01-17 Thread Jens Scharsig
Am 2010-01-17 19:25, schrieb Tom: > > By bisectable, i mean that early patches do not depend on later patches. > It should be possible to just apply patch 1 without applying any of > the other patch. > This is my current problem. I underestimated the extent of the changes, when I started. Secondl

Re: [U-Boot] [PATCH 1/8 V2] add at91 SoC access with c structures

2010-01-17 Thread Tom
Jens Scharsig wrote: > Please look at > > > on request by Wolfgang, I have try to implement SoC access for AT91 arch with c structures. Additional I have add support for AT91RM9200 in at91 tree. I need to switch to a different p

Re: [U-Boot] [PATCH] Nand boot: MPC8569 support

2010-01-17 Thread Wolfgang Denk
Dear Liu Yu, In message <1263461494-14843-1-git-send-email-yu@freescale.com> you wrote: > Signed-off-by: Liu Yu Please use a subject (and a commit message) that actually describes (in an understandable way) what you are doing. When I just read "Nand boot: MPC8569 support" I really don;t unde

Re: [U-Boot] [PATCH] malloc: return NULL if not initialized yet

2010-01-17 Thread Wolfgang Denk
In message <1263551117-26553-1-git-send-email...@denx.de> you wrote: > When malloc() was called before it was properly initialized > (as would happen if when used before relocation to RAM) it returned > random, non-NULL values, which called all kinds of difficult to debug > subsequent errors. > >

Re: [U-Boot] [PATCH] JFFS2: drop support for LZARI compression mode

2010-01-17 Thread Wolfgang Denk
In message <1263550769-25570-1-git-send-email...@denx.de> you wrote: > Support for LZARI compression mode was added based on a MTD CVS > snapshot of March 13, 2005. However, fs/jffs2/compr_lzari.c contains > contradictory licensing terms: the original copyright clause says "All > rights reserved. P

Re: [U-Boot] [PATCH 1/3] ARM: Add support for EP93XX SoCs

2010-01-17 Thread Tom
Matthias Kaehlcke wrote: > hi tom, > > thanks for your review! > > El Sun, Jan 17, 2010 at 09:25:52AM -0600 Tom ha dit: > >> Matthias Kaehlcke wrote: >>> Add support for the Cirrus EP93XX platform >>> >>> create mode 100644 include/asm-arm/arch-ep93xx/ep93xx.h >> There are build errors that c

Re: [U-Boot] [PATCH-V2 0/9] Add support for i.MX25 SOC and TX25 board

2010-01-17 Thread Wolfgang Denk
Dear John Rigby, In message <1263703827-2727-1-git-send-email-jcri...@gmail.com> you wrote: > Changes since first series: > 0001-mxc_serial-replace-platform-specific-clock.patch > 0002-arm926ejs-add-nand_spl-boot-support.patch > no changes > 0003-Add-MX25-support-to-nand_spl-fsl-nfc-driver.

Re: [U-Boot] [PATCH 1/8 V2] add at91 SoC access with c structures

2010-01-17 Thread Jens Scharsig
Please look at for Patchset details ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 2/8 V2] add at91 SoC access with c structures

2010-01-17 Thread Jens Scharsig
Hello Tom > It is unclear why arm920t/at91rm9200 -> arm920t/at91 > I am not in favor of renaming dirs or making multiple copies > of the same file. the intention is, the at91rm9200 integrates in at91 tree. So I create a new dir for files with c structur soc access. If all boards converted to at91

Re: [U-Boot] [PATCH 1/8 V2] add at91 SoC access with c structures

2010-01-17 Thread Tom
Jens Scharsig wrote: > * prepare board config files for Soc access update > This review was cut short. The review of this and patch #2 are fairly complete. run kernel checkpatch.pl against the patches you submit. In general errors must be fixed. Warnings should be fixed, if appropriate. There s

Re: [U-Boot] [PATCH 1/3] ARM: Add support for EP93XX SoCs

2010-01-17 Thread Matthias Kaehlcke
hi tom, thanks for your review! El Sun, Jan 17, 2010 at 09:25:52AM -0600 Tom ha dit: > Matthias Kaehlcke wrote: >> Add support for the Cirrus EP93XX platform >> >> Signed-off-by: Matthias Kaehlcke >> --- >> cpu/arm920t/ep93xx/Makefile | 56 >> cpu/arm920t/ep93xx/cpu.c

Re: [U-Boot] [PATCH 2/8 V2] add at91 SoC access with c structures

2010-01-17 Thread Tom
Jens Scharsig wrote: > * add at91 soc to arm920t, needs to join at91rm9200 into at91 arch > > > Signed-off-by: Jens Scharsig > --- > cpu/arm920t/at91/Makefile| 47 ++ > cpu/arm920t/at91/lowlevel_init.S | 177 > ++ > cpu/arm920t/at91/reset.

[U-Boot] [PATCH 1/2] MXC: Add large page oob layout for i.MX31 NAND controller.

2010-01-17 Thread Magnus Lilja
Import the large page oob layout from Linux mxc_nand.c driver. The CONFIG_SYS_NAND_LARGEPAGE option is used to activate the large page oob layout. Run time detection is not supported as this moment. This has been tested on the i.MX31 PDK board with a large page NAND device. Signed-off-by: Magnus

[U-Boot] [PATCH 2/2] MX31: Activate NAND environment on i.MX31 PDK board.

2010-01-17 Thread Magnus Lilja
Signed-off-by: Magnus Lilja --- include/configs/mx31pdk.h | 25 + 1 files changed, 21 insertions(+), 4 deletions(-) diff --git a/include/configs/mx31pdk.h b/include/configs/mx31pdk.h index fb61432..bee2f45 100644 --- a/include/configs/mx31pdk.h +++ b/include/configs/mx3

[U-Boot] [PATCH 0/2] i.MX31: Activate NAND support for PDK board.

2010-01-17 Thread Magnus Lilja
Hi all, These patches applies on the previously submitted NAND patches for the i.MX31 (http://lists.denx.de/pipermail/u-boot/2009-November/064213.html). The patches (including the above mentioned patches), applies on the current U-boot tip. The series add support for large page NAND, using the s

Re: [U-Boot] [PATCH 1/3] ARM: Add support for EP93XX SoCs

2010-01-17 Thread Tom
Matthias Kaehlcke wrote: > Add support for the Cirrus EP93XX platform > > Signed-off-by: Matthias Kaehlcke > --- > cpu/arm920t/ep93xx/Makefile | 56 > cpu/arm920t/ep93xx/cpu.c | 51 +++ > cpu/arm920t/ep93xx/led.c | 63 > cpu/arm920t/ep93xx/led.h

[U-Boot] Pull request u-boot-blackfin.git

2010-01-17 Thread Mike Frysinger
The following changes since commit 2ff6922280025c1315c53fa2eb4ab33f0c9591de: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-arm are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git master Cliff Cai (4): Blackfin: bfin_spi: let

[U-Boot] [PATCH 32/32] Blackfin: drop .eh_frame from linker script

2010-01-17 Thread Mike Frysinger
Nothing in U-Boot uses runtime C++ exceptions/unwinding, so there is no need to list this section. Signed-off-by: Mike Frysinger --- lib_blackfin/u-boot.lds.S |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/lib_blackfin/u-boot.lds.S b/lib_blackfin/u-boot.lds.S index 5ee8

[U-Boot] [PATCH 30/32] Blackfin: tcm-bf518: new board port

2010-01-17 Thread Mike Frysinger
From: Harald Krapfenbauer Signed-off-by: Harald Krapfenbauer Signed-off-by: Mike Frysinger --- MAINTAINERS |1 + MAKEALL |1 + Makefile|3 +- board/tcm-bf518/Makefile| 54 ++ board/tcm-bf518/config.mk |

[U-Boot] [PATCH 29/32] Blackfin: enable JFFS summary support for ADI boards

2010-01-17 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- include/configs/bfin_adi_common.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/bfin_adi_common.h b/include/configs/bfin_adi_common.h index f7a2d5c..6a2f1c7 100644 --- a/include/configs/bfin_adi_common.h +++ b/include

[U-Boot] [PATCH 25/32] Blackfin: add a netconsole helper

2010-01-17 Thread Mike Frysinger
From: Robin Getz Signed-off-by: Robin Getz Signed-off-by: Mike Frysinger --- include/configs/bfin_adi_common.h | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/include/configs/bfin_adi_common.h b/include/configs/bfin_adi_common.h index db10ccc..f7a2d5c 1006

[U-Boot] [PATCH 31/32] Blackfin: use sort funcs in the linker script

2010-01-17 Thread Mike Frysinger
This is just Blackfin catching up with every one else. Signed-off-by: Mike Frysinger --- lib_blackfin/u-boot.lds.S |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lib_blackfin/u-boot.lds.S b/lib_blackfin/u-boot.lds.S index deb94c9..5ee8eb3 100644 --- a/lib_blackfin/u-b

[U-Boot] [PATCH 27/32] Blackfin: handle anomaly 05000257

2010-01-17 Thread Mike Frysinger
From: Robin Getz Need to reload the loop counters to keep from corrupting hardware loops. Signed-off-by: Robin Getz Signed-off-by: Mike Frysinger --- cpu/blackfin/interrupt.S | 11 ++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/cpu/blackfin/interrupt.S b/cpu/bla

[U-Boot] [PATCH 28/32] Blackfin: bf518f-ezbrd: increase monitor length

2010-01-17 Thread Mike Frysinger
The addition of KGDB overflowed the current linker section. Signed-off-by: Mike Frysinger --- include/configs/bf518f-ezbrd.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/bf518f-ezbrd.h b/include/configs/bf518f-ezbrd.h index 234e5a4..1e821d9 100644 ---

[U-Boot] [PATCH 26/32] Blackfin: keep hwtrace on CPLB miss

2010-01-17 Thread Mike Frysinger
From: Robin Getz Crashes rarely happen in the CPLB miss handler compared to the rest of U-Boot code, so disable hardware tracing when processing misses. This way a crash due to other functions will be shown properly. Signed-off-by: Robin Getz Signed-off-by: Mike Frysinger --- cpu/blackfin/tr

[U-Boot] [PATCH 24/32] Blackfin: add support for BF527-EZKIT v2.1

2010-01-17 Thread Mike Frysinger
From: Michael Hennerich The new board revision has a different LCD. Signed-off-by: Michael Hennerich Signed-off-by: Mike Frysinger --- MAINTAINERS |1 + MAKEALL |1 + Makefile

[U-Boot] [PATCH 23/32] Blackfin: bf527-ezkit/bf548-ezkit: add musb board specific initialization

2010-01-17 Thread Mike Frysinger
From: Cliff Cai Signed-off-by: Cliff Cai Signed-off-by: Mike Frysinger --- board/bf527-ezkit/bf527-ezkit.c | 13 + board/bf548-ezkit/bf548-ezkit.c | 16 2 files changed, 29 insertions(+), 0 deletions(-) diff --git a/board/bf527-ezkit/bf527-ezkit.c b/board/bf52

[U-Boot] [PATCH 21/32] Blackfin: pull io funcs from linux

2010-01-17 Thread Mike Frysinger
Some common code uses more of the io.h funcs than we currently provide, so pull in all of the ones from the linux kernel. Signed-off-by: Mike Frysinger --- include/asm-blackfin/config-pre.h |3 + include/asm-blackfin/io.h | 159 +++-- lib_blackfin/Mak

[U-Boot] [PATCH 22/32] Blackfin: bfin_spi: round up clock divider

2010-01-17 Thread Mike Frysinger
From: Cliff Cai If the requested clock cannot be exactly obtained, round it up so that we err on the side of slightly slower rather than slightly faster. Signed-off-by: Cliff Cai Signed-off-by: Mike Frysinger --- drivers/spi/bfin_spi.c |7 ++- 1 files changed, 6 insertions(+), 1 delet

[U-Boot] [PATCH 20/32] Blackfin: section off the CF/IDE io.h hacks

2010-01-17 Thread Mike Frysinger
These need to be rethought, but until that happens, isolate the hack so that we can extend the common code without breaking things. Signed-off-by: Mike Frysinger --- include/asm-blackfin/io.h | 27 +++ 1 files changed, 15 insertions(+), 12 deletions(-) diff --git a/inc

[U-Boot] [PATCH 17/32] Blackfin: convert bfin_sdh to generic mmc

2010-01-17 Thread Mike Frysinger
From: Cliff Cai Signed-off-by: Cliff Cai Signed-off-by: Mike Frysinger --- board/bf518f-ezbrd/bf518f-ezbrd.c |8 + board/bf548-ezkit/bf548-ezkit.c |8 + drivers/mmc/bfin_sdh.c| 519 + drivers/mmc/bfin_sdh.h| 59 - inc

[U-Boot] [PATCH 19/32] Blackfin: drop unused funcs from io.h

2010-01-17 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- include/asm-blackfin/io.h | 38 -- 1 files changed, 0 insertions(+), 38 deletions(-) diff --git a/include/asm-blackfin/io.h b/include/asm-blackfin/io.h index 6806494..354fb7d 100644 --- a/include/asm-blackfin/io.h +++ b/incl

[U-Boot] [PATCH 13/32] Blackfin: move watchdog config check to Makefile

2010-01-17 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- cpu/blackfin/Makefile |2 +- cpu/blackfin/watchdog.c |4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/cpu/blackfin/Makefile b/cpu/blackfin/Makefile index 5eef6a3..211b8d5 100644 --- a/cpu/blackfin/Makefile +++ b/cpu/blackfin/Makef

[U-Boot] [PATCH 18/32] Blackfin: bf533-stamp: split and cleanup CF/IDE code

2010-01-17 Thread Mike Frysinger
Give the CF/IDE code its own file to keep things cleanly separated. While we're here, clean up the code to use common functions. Signed-off-by: Mike Frysinger --- board/bf533-stamp/Makefile |1 + board/bf533-stamp/bf533-stamp.c | 113 +- board/bf533

[U-Boot] [PATCH 10/32] Blackfin: support boards with no external memory

2010-01-17 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- cpu/blackfin/initcode.c | 16 +++- cpu/blackfin/start.S |6 ++ include/asm-blackfin/config.h |9 +++-- lib_blackfin/board.c | 29 +++-- lib_blackfin/u-boot.lds.S | 21 ++

[U-Boot] [PATCH 12/32] Blackfin: fix L1 Instruction sizes on BF52x/BF54x

2010-01-17 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- include/asm-blackfin/blackfin_local.h |2 ++ include/asm-blackfin/mach-bf527/BF522_def.h | 15 --- include/asm-blackfin/mach-bf527/BF523_def.h | 15 --- include/asm-blackfin/mach-bf527/BF524_def.h | 15 --- incl

[U-Boot] [PATCH 09/32] Blackfin: re-architect initcode

2010-01-17 Thread Mike Frysinger
The single initcode function was growing unwieldy, so split it up the distinct steps into their own function. This should making digesting the result much easier on people. Signed-off-by: Mike Frysinger --- cpu/blackfin/initcode.c | 221 --- 1 files

[U-Boot] [PATCH 14/32] Blackfin: use new bfin read/write mmr helper funcs

2010-01-17 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- cpu/blackfin/initcode.c | 10 ++-- cpu/blackfin/interrupts.c | 12 ++-- cpu/blackfin/serial.c | 26 --- cpu/blackfin/serial.h | 121 ++--- include/asm-blackfin/blackf

[U-Boot] [PATCH 07/32] Blackfin: kill off useless initdram() usage

2010-01-17 Thread Mike Frysinger
While the initdram() function makes sense on some arches, it doesn't for Blackfin systems as it's always implemented the same way. Signed-off-by: Mike Frysinger --- board/bf518f-ezbrd/bf518f-ezbrd.c |7 --- board/bf526-ezbrd/bf526-ezbrd.c |7 --- board/bf527-ezkit/bf527

[U-Boot] [PATCH 16/32] Blackfin: bfin_spi: let boards control idle value

2010-01-17 Thread Mike Frysinger
From: Cliff Cai Some SPI devices like to see high idle values rather than low. Signed-off-by: Cliff Cai Signed-off-by: Mike Frysinger --- drivers/spi/bfin_spi.c |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/drivers/spi/bfin_spi.c b/drivers/spi/bfin_spi.c index

[U-Boot] [PATCH 15/32] Blackfin: asm/string.h: drop useless includes

2010-01-17 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- include/asm-blackfin/string.h |5 + 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/include/asm-blackfin/string.h b/include/asm-blackfin/string.h index 18306dd..117f44c 100644 --- a/include/asm-blackfin/string.h +++ b/include/asm-blackfin/s

  1   2   >