Re: [U-Boot] Request to become a member of u-boot-users mailing list

2010-08-27 Thread Mike Frysinger
On Fri, Aug 27, 2010 at 10:37 PM, chandra sekhar wrote: > I would like to become a memeber of u-boot-user mailing list. this is no such mailing list -mike ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Thursday, August 26, 2010 16:00:50 Reinhard Meyer wrote: > 1. according to Ramtron, 0x7f is a continuation byte defined in a > JEDEC standard (I could not find a spec for that) and shall be > ignored until a non-0x7f shows. yep http://www.jedec.org/standards-documents/results/taxonomy%3A3127 >

Re: [U-Boot] [PATCH v2] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Friday, August 27, 2010 07:16:37 Reinhard Meyer wrote: > From: Reinhard Meyer > > Signed-off-by: Reinhard Meyer looks like you still need to do `git commit --amend --author 'Reinhard Meyer '` ... > +#ifdef CONFIG_SPI_FRAM_RAMTRON_NONSTD i would stick with the style "NON_JEDEC" -mike sig

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 18:15:43 Reinhard Meyer wrote: > Dear Mike Frysinger, > > On Thursday, August 26, 2010 16:00:50 Reinhard Meyer wrote: > > interesting, but what if we push it further. something like this > > (untested): > > That code does not address the f

Re: [U-Boot] [PATCH v2] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 18:23:18 Reinhard Meyer wrote: > Dear Mike Frysinger, > > On Friday, August 27, 2010 07:16:37 Reinhard Meyer wrote: > >> From: Reinhard Meyer > >> > >> Signed-off-by: Reinhard Meyer > > > > looks like you still n

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 17:48:39 Mike Frysinger wrote: > + /* Make sure the ID was jedec extended */ > + j = flashes[i].shift - 1; > + while (j >= 0 && idcode[j] == 0x7f) > + con

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 19:45:57 Reinhard Meyer wrote: > On 29.08.2010 01:17, Mike Frysinger wrote: > > On Saturday, August 28, 2010 17:48:39 Mike Frysinger wrote: > >> + /* Make sure the ID was jedec extended */ > >> +

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 21:59:26 Reinhard Meyer wrote: > On 29.08.2010 02:14, Mike Frysinger wrote: > > if you want to take the patch i posted and extend that by itself with the > > comments here, and then do the ramtron patch separately on top of that, > > that'

Re: [U-Boot] [PATCH] MTD/SPI/FLASH: add support for Ramtron FRAMs using SPI

2010-08-28 Thread Mike Frysinger
On Saturday, August 28, 2010 23:35:08 Reinhard Meyer wrote: > On 29.08.2010 04:26, Mike Frysinger wrote: > > On Saturday, August 28, 2010 21:59:26 Reinhard Meyer wrote: > >> On 29.08.2010 02:14, Mike Frysinger wrote: > >>> if you want to take the patch i posted

Re: [U-Boot] [PATCH] cp/cmp: Add WATCHDOG_RESET in copy and compare loop

2010-08-31 Thread Mike Frysinger
On Tuesday, August 31, 2010 07:57:33 Stefan Roese wrote: > + /* reset watchdog from time to time */ > + if ((count % 1000) == 0) > + WATCHDOG_RESET(); please pick a number that doesnt involve needing to call libgcc math functions. like 1024. -mike si

Re: [U-Boot] warning: dereferencing pointer '({anonymous})' does break strict-aliasing rules

2010-09-01 Thread Mike Frysinger
On Tuesday, August 31, 2010 18:30:39 Timur Tabi wrote: > I ran Software Update on my Fedora 13 system, and now whenever I build > U-Boot, I get a bunch of warnings like this: what version of u-boot exactly ? for what board/architecture ? what is your host gcc version and your target gcc version

Re: [U-Boot] [PATCH NET 2/2] Net: clarify board/cpu_eth_init calls

2010-09-01 Thread Mike Frysinger
On Wednesday, September 01, 2010 02:05:04 Ben Warren wrote: > + if (board_eth_init != __def_eth_init) { > + } else if (cpu_eth_init != __def_eth_init) { i'm not sure these changes are useful. the resolution of the symbols happens at link time, so it isnt like gcc will be able to optimize

Re: [U-Boot] [PATCH] support spi gpio driver by control gpio bitbang

2010-09-01 Thread Mike Frysinger
On Wednesday, September 01, 2010 03:28:28 Donghwa Lee wrote: > This patch adds basic support for spi mode 0~3 by control gpio bitbang. > It uses several gpio pin and emulates spi chipselect signal, clock signal > and sda signal as if spi controller generate spi signal. if you're going to make a sp

Re: [U-Boot] warning: dereferencing pointer '({anonymous})' does break strict-aliasing rules

2010-09-01 Thread Mike Frysinger
On Wednesday, September 01, 2010 21:27:24 Timur Tabi wrote: > $ powerpc-linux-gnu-gcc --version > powerpc-linux-gnu-gcc (Sourcery G++ Lite 4.4-194) 4.4.1 all gcc-4.4+ compilers should show similar output. your host should have nothing to do with it. searching the archives shows people working o

Re: [U-Boot] [PATCH] display_buffer: fix misaligned buffer

2010-09-02 Thread Mike Frysinger
On Tuesday, August 31, 2010 02:04:53 Reinhard Meyer wrote: > making the change to the union, I also realized that > > /* Copy from memory into linebuf and print hex values */ > for (i = 0; i < linelen; i++) { > uint32_t x; > if (width == 4) > x = lb.u32[i] = *(volatile ui

Re: [U-Boot] [PATCH] NET: add ENC28J60 driver using SPI framework

2010-09-03 Thread Mike Frysinger
On Friday, September 03, 2010 13:50:28 Reinhard Meyer wrote: > Something like this? yes > I agree that's more perfect but kind of overkill, too; > assuming that only one enc can be active at any given time;) yes and no. the spi bus/cs/mode/speed is established at initialize() time, not init(),

Re: [U-Boot] [PATCH] NET: add ENC28J60 driver using SPI framework

2010-09-03 Thread Mike Frysinger
On Friday, September 03, 2010 16:31:47 Reinhard Meyer wrote: > int enc_initialize(int bus, int cs, int speed) should take the same parameters (including type) as spi_setup_slave > eth_register(&(enc->netdev)); no need for the () before the & > not sure, however, if calling spi_setup_slave

Re: [U-Boot] [PATCH] NET: add ENC28J60 driver using SPI framework

2010-09-03 Thread Mike Frysinger
On Friday, September 03, 2010 17:23:43 Reinhard Meyer wrote: > On 03.09.2010 23:03, Mike Frysinger wrote: > >> not sure, however, if calling spi_setup_slave() is ok at this point. > > > > i believe the func should only doing validation on the arguments. it > > shoul

Re: [U-Boot] [PATCH v2] NET: add ENC28J60 driver using SPI framework

2010-09-06 Thread Mike Frysinger
On Monday, September 06, 2010 10:59:16 Reinhard Meyer wrote: > +int enc_miiphy_read(const char *devname, u8 phy_adr, u8 reg, u16 *value) > +{ > + struct eth_device *dev = eth_get_dev_by_name(devname); > + if (dev) { > + enc_dev_t *enc = to_enc(dev); > + > + if (phy_a

Re: [U-Boot] [PATCH v2] display_buffer: fix misaligned buffer

2010-09-07 Thread Mike Frysinger
On Tuesday, September 07, 2010 19:33:38 Wolfgang Denk wrote: > Reinhard Meyer wrote: > > for (i = 0; i < linelen * width; i++) > > > > - if (!isprint(ucp[i]) || ucp[i] >= 0x80) > > - ucp[i] = '.'; > > - ucp[i] = '\0'; > > -

Re: [U-Boot] [PATCH] net/eth.c call dev->write_hwaddr in eth_init

2010-09-07 Thread Mike Frysinger
On Tuesday, September 07, 2010 18:50:26 John Rigby wrote: > When eth_init updates dev->enetaddr it does not > call dev->write_hwaddr. Fix that so when ethaddr > is set after eth_initialize the change will propagate > to the hw. current policy is that the driver init() is supposed to be taking car

Re: [U-Boot] [PATCH v2] display_buffer: fix misaligned buffer

2010-09-08 Thread Mike Frysinger
On Wednesday, September 08, 2010 01:43:20 Wolfgang Denk wrote: > Mike Frysinger wrote: > > which bug ? the logic is: > > for (...) > > > > if (...) > > > > ... = ...; > > > > you want the

Re: [U-Boot] [PATCH] net/eth.c call dev->write_hwaddr in eth_init

2010-09-08 Thread Mike Frysinger
On Wednesday, September 08, 2010 11:06:54 John Rigby wrote: please do not top post > The case I am personally dealing with is one where there is no > persistent storage > for ethaddr. Booting from and SD card and a script is run that sets > the ethaddr. > > Currently eth_init updates dev->eneta

Re: [U-Boot] [PATCH v2] display_buffer: fix misaligned buffer

2010-09-08 Thread Mike Frysinger
On Wednesday, September 08, 2010 04:04:37 Reinhard Meyer wrote: > I am working with too many (non-gnu) C compilers and have seen too many > ways for "attribute", "#pragma", etc. So I prefer to do things > within the standard "C" language ;) which is entirely why linux/compiler.h exists in the firs

Re: [U-Boot] [PATCH] net/eth.c call dev->write_hwaddr in eth_init

2010-09-08 Thread Mike Frysinger
On Wednesday, September 08, 2010 13:11:14 John Rigby wrote: > One more question however, why does eth_initialize call dev->write_hwaddr? as part of the debate "program the MAC without actually using the network" -mike signature.asc Description: This is a digitally signed message part. __

Re: [U-Boot] [STATUS] v2010.09-rc1 is out / v2010.09 delayed by 2 weeks

2010-09-10 Thread Mike Frysinger
On Friday, September 10, 2010 13:54:40 Wolfgang Denk wrote: > Please help testing, and check if all your relevant patches have been > included. not sure if you wanted to include these for 2010.09, or wait until after: 11.08.2010 [PATCH] Makefile: restore support for board shortcut targets 19.08.20

Re: [U-Boot] [STATUS] v2010.09-rc1 is out / v2010.09 delayed by 2 weeks

2010-09-10 Thread Mike Frysinger
On Friday, September 10, 2010 14:53:10 Wolfgang Denk wrote: > Mike Frysinger wrote: > > not sure if you wanted to include these for 2010.09, or wait until after: > > 11.08.2010 [PATCH] Makefile: restore support for board shortcut targets > > 19.08.2010 [PATCH v2] MAKEALL: cu

Re: [U-Boot] [PATCH] da850evm: basic MII EMAC support

2010-09-10 Thread Mike Frysinger
On Friday, September 10, 2010 16:10:16 Ben Gardiner wrote: > The current da850evm support in u-boot/master [1] omits any use of > the davinci EMAC. This patch adds basic support for the EMAC using > the MII PHY found on the baseboard of the EVM. The MAC address is > read from the environment variab

Re: [U-Boot] [STATUS] v2010.09-rc1 is out / v2010.09 delayed by 2 weeks

2010-09-12 Thread Mike Frysinger
On Sunday, September 12, 2010 08:58:29 Reinhard Meyer wrote: > 1110f276e9785d0270cfc9ec316dd475145f95d0 SPI: cmd_spi.c: add options to > specify bus and mode - has been posted 26.08.2010 i already merged into my sf branch and will push post 2010.09 if Woflgang doesnt pick it up himself > 7c7e281

Re: [U-Boot] Patches to support Ramtron SPI FRAMs

2010-09-12 Thread Mike Frysinger
On Sunday, September 12, 2010 15:06:07 Wolfgang Denk wrote: > Reinhard Meyer wrote: > > Is there a similar simple trick to produce the 0/n e-Mail? I mean without > > hand entering Subject and Body into the send-email phase? Like having it > > in a prepared file? > > Maybe the "--compose" to "git s

Re: [U-Boot] [PATCH 1/4] tools: enable img2srec for "all" target

2010-09-12 Thread Mike Frysinger
On Sunday, September 12, 2010 15:39:06 Wolfgang Denk wrote: > Mike Frysinger wrote: > > diff --git a/tools/Makefile b/tools/Makefile > > index 749d994..ea271bf 100644 > > --- a/tools/Makefile > > +++ b/tools/Makefile > > @@ -41,6 +41,7 @@ include $(TOPDIR)/con

Re: [U-Boot] [PATCH next] silence awk command display during build

2010-09-13 Thread Mike Frysinger
On Monday, September 13, 2010 21:17:30 Kim Phillips wrote: > [u-boot next]$ ./MAKEALL 83xx > awk '(NF && $1 !~ /^#/) { print $1 ": " $1 "_config; $(MAKE)" }' boards.cfg > > .boards.depend Configuring for ve8313 board... how about we change MAKEALL to run the config step with -s ? -mike signature

Re: [U-Boot] Multiple binaries built through u-boot source

2010-09-14 Thread Mike Frysinger
On Tuesday, September 14, 2010 01:22:10 Vipin Kumar wrote: > I wanted to know if there is a generic way to create two > binaries from the u-boot source both compiled for different > address ranges. The first initializes the RAM (may be > something else as well) and the second is the u-boot binary >

Re: [U-Boot] [PATCH] S5P: new spi gpio bitbang driver

2010-09-14 Thread Mike Frysinger
On Tuesday, September 14, 2010 03:38:11 Donghwa Lee wrote: > This patch adds basic support for spi mode 0~3 by control gpio bitbang in > S5P. Original name of this patch was "support spi gpio driver by control > gpio bitbang". But, it had arch-specific features, S5P, so changed to this > name. so

Re: [U-Boot] [PATCH] da850evm: basic MII EMAC support

2010-09-14 Thread Mike Frysinger
On Monday, September 13, 2010 08:55:47 Ben Gardiner wrote: > On Sat, Sep 11, 2010 at 12:01 AM, Mike Frysinger wrote: > > On Friday, September 10, 2010 16:10:16 Ben Gardiner wrote: > >> The current da850evm support in u-boot/master [1] omits any use of > >> the davinci

Re: [U-Boot] Multiple binaries built through u-boot source

2010-09-14 Thread Mike Frysinger
On Tuesday, September 14, 2010 08:40:55 Stefan Roese wrote: > On Tuesday 14 September 2010 12:21:41 Vipin Kumar wrote: > > > Take a look at the NAND_SPL infrastructure (nand_spl/*). It was created > > > for platforms booting from NAND with tight restrictions (e.g. 4k image > > > size for inital set

Re: [U-Boot] [PATCH V4 1/2] MTD/SPI: introduce table driven probing

2010-09-14 Thread Mike Frysinger
On Tuesday, September 14, 2010 10:50:08 Reinhard Meyer wrote: > for JEDEC devices without and with extension bytes > for non JEDEC devices > Signed-off-by: Reinhard Meyer needs to be a blank line before s-o-b tags and friends > - * Licensed under the GPL-2 or later. this is unnecessary noise.

Re: [U-Boot] [PATCH V4 2/2] MTD/SPI: add support for Ramtron FRAMs

2010-09-14 Thread Mike Frysinger
On Tuesday, September 14, 2010 10:50:09 Reinhard Meyer wrote: > JEDEC types > non JEDEC types this changelog is useless ... either make it say something, or just leave it empty > +static int ramtron_common(struct spi_flash *flash, > + u32 offset, size_t len, void *buf, u8 command) >

Re: [U-Boot] Multiple binaries built through u-boot source

2010-09-14 Thread Mike Frysinger
On Tuesday, September 14, 2010 10:32:21 Kyungmin Park wrote: > BootROM code -> Initial Program Loader (runs on OneNAND 1KiB or > internal RAM) -> u-boot (secondary bootloader). > IPL configure the DRAM and loads the secondary bootloader, u-boot and jump > it. the IPL may or may not handle loading

Re: [U-Boot] [PATCH V4 1/2] MTD/SPI: introduce table driven probing

2010-09-14 Thread Mike Frysinger
On Tuesday, September 14, 2010 14:29:30 Reinhard Meyer wrote: > On 14.09.2010 16:53, Mike Frysinger wrote: > > On Tuesday, September 14, 2010 10:50:08 Reinhard Meyer wrote: > >> for JEDEC devices without and with extension bytes > >> for non JEDEC devices > &g

Re: [U-Boot] [PATCH next] silence awk command display during build

2010-09-14 Thread Mike Frysinger
On Tuesday, September 14, 2010 14:41:16 Kim Phillips wrote: > On Mon, 13 Sep 2010 21:59:21 -0400 Mike Frysinger wrote: > > On Monday, September 13, 2010 21:17:30 Kim Phillips wrote: > > > [u-boot next]$ ./MAKEALL 83xx > > > awk '(NF && $1 !~ /

Re: [U-Boot] [PATCH next v2] silence config step commands display during MAKEALL builds

2010-09-14 Thread Mike Frysinger
On Tuesday, September 14, 2010 15:48:16 Kim Phillips wrote: > [u-boot next]$ ./MAKEALL 83xx > awk '(NF && $1 !~ /^#/) { print $1 ": " $1 "_config; $(MAKE)" }' boards.cfg > > .boards.depend Configuring for ve8313 board... > > Signe

Re: [U-Boot] [PATCH next] silence awk command display during build

2010-09-14 Thread Mike Frysinger
On Tuesday, September 14, 2010 18:04:29 Wolfgang Denk wrote: > Mike Frysinger wrote: > > instead of silencing a somewhat complicated command that could break the > > build system if it goes wrong, use the mechanisms already in place if > > you want nice & concise output

Re: [U-Boot] [PATCH] S5P: new spi gpio bitbang driver

2010-09-15 Thread Mike Frysinger
On Wednesday, September 15, 2010 01:15:08 Donghwa Lee wrote: > On Tuesday, September 14, 2010 20:48:11 Mike Frysinger wrote: > > On Tuesday, September 14, 2010 03:38:11 Donghwa Lee wrote: > >> This patch adds basic support for spi mode 0~3 by control gpio bitbang > >&g

Re: [U-Boot] [PATCH next] silence awk command display during build

2010-09-15 Thread Mike Frysinger
On Wednesday, September 15, 2010 12:12:32 Kim Phillips wrote: > On Tue, 14 Sep 2010 22:09:58 -0400 > > Mike Frysinger wrote: > > On Tuesday, September 14, 2010 18:04:29 Wolfgang Denk wrote: > > > Mike Frysinger wrote: > > > > instead of silencing a somewhat

Re: [U-Boot] [PATCH next] silence awk command display during build

2010-09-15 Thread Mike Frysinger
On Wednesday, September 15, 2010 15:28:58 Wolfgang Denk wrote: > Mike Frysinger wrote: > > > both the MAKEALL and make blah_config behaviour have changed since: > > behavior changed !== breakage > > OK. > > Please undo that behaviour change anyway. i dont rea

Re: [U-Boot] [PATCH] S5P: new spi gpio bitbang driver

2010-09-15 Thread Mike Frysinger
On Wednesday, September 15, 2010 22:38:18 Donghwa Lee wrote: > I had checked blackfin gpio framework. Blackfin includes only maximum 20 > ports, 160 pins, but, s5pc110 includes about 53 banks and 415 gpio pins. why does the # of pins matter ? the id is an "unsigned" value which easily accommodat

Re: [U-Boot] [PATCH next] silence awk command display during build

2010-09-15 Thread Mike Frysinger
On Wednesday, September 15, 2010 17:25:25 Wolfgang Denk wrote: > Mike Frysinger wrote: > > i dont really want this to be completely silenced all the time. > > introduce a variable to prefix things with for people to control ? > > Q_BUILD = @ > > ... > > > &g

Re: [U-Boot] Multiple binaries built through u-boot source

2010-09-16 Thread Mike Frysinger
On Thursday, September 16, 2010 11:44:57 Premi, Sanjeev wrote: > But, wanted to share my experience on the same topic. Posed with > same problem, I had looked at minimizing the u-boot binary and > had managed to reach 29-30KB the Blackfin one is in the range of 200-600 bytes. i don

[U-Boot] [PATCH] Blackfin: update some missed board config.mk files

2010-09-20 Thread Mike Frysinger
Seems these two files were missed during the big lib shuffle. Signed-off-by: Mike Frysinger --- board/bf527-ad7160-eval/config.mk |4 ++-- board/ip04/config.mk |4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/board/bf527-ad7160-eval/config.mk b/board

[U-Boot] [PATCH] setlocalversion: add some more fallbacks for git describe

2010-09-20 Thread Mike Frysinger
If working out of a custom git tree that lacks annotated tags, the 'git describe' operation spews "fatal: cannot describe" errors all over the place. So add some fallback code in case the best naming was unable to locate something useful. Signed-off-by: Mike Frysinger --- t

Re: [U-Boot] [STATUS] v2010.09-rc2 is out / "next" branch available

2010-09-20 Thread Mike Frysinger
On Sunday, September 19, 2010 14:02:29 Wolfgang Denk wrote: > Please help testing Blackfin looks sane > check if all your relevant patches have been included. could you merge this change: 29.07.2010 [PATCH v2] cmd_mmc: use common usage function -mike signature.asc Description: This is a d

Re: [U-Boot] [PATCH v3] NET: add ENC28J60 driver using SPI framework

2010-09-20 Thread Mike Frysinger
finally got around to testing this. seems like the init needs some work. if i power on the system (cold boot), boot Linux over the on-chip mac, and let Linux program the enc part, it works fine under Linux. then i do a software reset back into u-boot, it can use the enc fine too. but if i co

[U-Boot] [PATCH] Blackfin: bfin_spi: use same gpio cs define as Linux

2010-09-20 Thread Mike Frysinger
Linux uses an offset of 8 to switch from hardware cs to a gpio cs, so have u-boot use the same value. Also make sure it is public for boards to access. Signed-off-by: Mike Frysinger --- arch/blackfin/include/asm/config-pre.h |3 +++ drivers/spi/bfin_spi.c |2 -- 2 files

Re: [U-Boot] [PATCH] Config: Add "board options" column to boards.cfg

2010-09-20 Thread Mike Frysinger
On Monday, September 20, 2010 19:26:44 Marek Vasut wrote: > There are some boards where it's not currently possible to detect all board > information at runtime, therefore I introduced a new column called > "options" to boards.cfg . > > This column can contain multiple options, separated by comma

Re: [U-Boot] [PATCH v3] NET: add ENC28J60 driver using SPI framework

2010-09-20 Thread Mike Frysinger
On Monday, September 20, 2010 17:44:38 Mike Frysinger wrote: > finally got around to testing this. seems like the init needs some work. > if i power on the system (cold boot), boot Linux over the on-chip mac, and > let Linux program the enc part, it works fine under Linux. th

Re: [U-Boot] [PATCH v3] NET: add ENC28J60 driver using SPI framework

2010-09-20 Thread Mike Frysinger
On Tuesday, September 21, 2010 01:21:46 Reinhard Meyer wrote: > > On Monday, September 20, 2010 17:44:38 Mike Frysinger wrote: > >> finally got around to testing this. seems like the init needs some > >> work. if i power on the system (cold boot), boot Linux over the o

Re: [U-Boot] RFC: get_ticks() + get_tbclk()

2010-09-20 Thread Mike Frysinger
might want to check out the thread i started over a year ago: [u-boot] core ticks/timer code it delves into these internals and may help you here -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U

Re: [U-Boot] Inclusion of GPLv3 code

2010-09-21 Thread Mike Frysinger
On Tuesday, September 21, 2010 03:33:37 Wolfgang Denk wrote: > Graeme Russ wrote: > > I know you are favouring a migration of U-Boot to GPLv3, but currently it > > is still licensed under v2 (although most code is v2 'or later') > > > > I have some v3 code I would like to bring in (from GRUB). Wil

Re: [U-Boot] Inclusion of GPLv3 code

2010-09-21 Thread Mike Frysinger
On Tuesday, September 21, 2010 04:37:40 Wolfgang Denk wrote: > Mike Frysinger wrote: > > so if the imported GRUB code stays at GPLv3, and is only for x86, and all > > of the code Graeme is using from u-boot is GPLv2+, then the final result > > there is under GPLv3 only. b

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

2010-09-21 Thread Mike Frysinger
The following changes since commit 800eb09641ae67c707b65acff112684a954b7f44: POST cleanup. (2010-09-21 21:39:31 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git master Mike Frysinger (2): Blackfin: update some missed board config.mk files

[U-Boot] [RFC PATCH 1/2] nand: allow delayed initialization

2010-09-21 Thread Mike Frysinger
. This way the nand is only poked when someone tries to actually use it. Signed-off-by: Mike Frysinger --- note: i havent documented this in the README yet as i want to get feedback on the approach first common/cmd_nand.c |2 ++ common/env_nand.c |8 drivers/mtd

[U-Boot] [PATCH 2/2] Blackfin: nand: support delayed initialization

2010-09-21 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- arch/blackfin/lib/board.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/blackfin/lib/board.c b/arch/blackfin/lib/board.c index 7649f9a..02a5ee9 100644 --- a/arch/blackfin/lib/board.c +++ b/arch/blackfin/lib/board.c @@ -346,7

[U-Boot] [PATCH] cmd_nand: document "scrub" options

2010-09-21 Thread Mike Frysinger
tion. Inform people! Signed-off-by: Mike Frysinger --- common/cmd_nand.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/cmd_nand.c b/common/cmd_nand.c index 3f1d077..7c77983 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c @@ -593,6 +593,7 @@ U_BOOT_CMD(

Re: [U-Boot] variable substitution not working with cp.b

2010-09-22 Thread Mike Frysinger
On Wednesday, September 22, 2010 04:21:34 André Schwarz wrote: > loadaddr=0x40 > mvBL-M7> cp.b $load_addr $kernel_addr $kernel_len loadaddr != load_addr -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing li

Re: [U-Boot] [PATCH v3 2/2][NEXT] da850evm: basic MII EMAC support

2010-09-22 Thread Mike Frysinger
On Wednesday, September 22, 2010 13:16:49 Ben Gardiner wrote: > +const struct pinmux_config emac_pins[] = { seems to only be used in this file ? mark it static too ? -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot

Re: [U-Boot] [PATCH] board/armltd/integrator/split_by_variant.sh: fix 'echo -n'

2010-09-24 Thread Mike Frysinger
On Friday, September 24, 2010 12:27:52 Andreas Bießmann wrote: > - echo -n "#define CONFIG_CM720T" >> ${config_file} > - echo" 1 /* CPU core is ARM720T */ " >> ${config_file} > + cat >> ${config_file} << _EOF > +#define CONFIG_CM720T 1 /* CPU core is ARM720T

[U-Boot] U-Boot v2010.06 statistics

2010-09-29 Thread Mike Frysinger
total # of commits ... > Developers with the most signoffs (total 294) ... but we only have 294 signoffs !? which means we have at least 548 commits merged that lack any signoff at all !? > Developers with the most changesets > Mike Frysinger 77 (9.1%) > Kumar Gala

Re: [U-Boot] U-Boot 1.3.4 CONFIG_SILENT_CONSOLE Does Not Work?

2010-09-30 Thread Mike Frysinger
On Thursday, September 30, 2010 16:05:49 NB wrote: > However when I boot my device I see u-boot spiting out the same stuff it > does even if "silent" isn't selected, as well as linux but I'm focusing on > getting u- boot working as the README / README.silent suggests first. ive seen issues dependi

Re: [U-Boot] [PATCH] xyzModem.c Packet buffer dynamic allocate

2010-10-01 Thread Mike Frysinger
On Fri, Oct 1, 2010 at 11:02 AM, Yoshinori Sato wrote: > At Fri, 01 Oct 2010 09:57:49 +0200, Wolfgang Denk wrote: >> Yoshinori Sato wrote: >> > It changes reduce bss usage. >> >> ... and increases the load on the malloc arean. >> >> > Ymodem receive buffer dinamic allocation. >> >> As far as I can

Re: [U-Boot] [PATCH] LZO: Add a LZO compression feature

2010-10-01 Thread Mike Frysinger
On Fri, Oct 1, 2010 at 10:11 AM, Kyungmin Park wrote: > On Fri, Oct 1, 2010 at 10:54 PM, Wolfgang Denk wrote: >> Kyungmin Park wrote: >>> There's request from other team. They want to transfer the binary but >>> it's written as ubifs filesystem. >>> So download the binary to RAM and then mkfs.ubifs

[U-Boot] [PATCH] cmd_elf: add an option for loading ELFs according to PHDRs

2010-10-02 Thread Mike Frysinger
So add a command line option to let people choose to load via either the program or section headers. I'd prefer to have program header loading be the default, but this would break historical behavior, so I'll leave section header loading as the norm. Signed-off-by: Mike Frysinger --- com

[U-Boot] [RFC PATCH 1/2 v2] nand: allow delayed initialization

2010-10-02 Thread Mike Frysinger
. This way the nand is only poked when someone tries to actually use it. Signed-off-by: Mike Frysinger --- v2 - update to current mainline common/cmd_nand.c |2 ++ common/env_nand.c |8 drivers/mtd/nand/nand.c |9 + include/nand.h |5

[U-Boot] [PATCH 00/37] Blackfin updates for v2010.12-rc1

2010-10-02 Thread Mike Frysinger
ind them interesting. The other notable pieces are the new board ports and DMA RX support for the Blackfin SPI bus. Mike Frysinger (34): Blackfin: add support for BF538/BF539 processors Blackfin: add support for BF51x parts Blackfin: bfin_spi: add optional DMA support Blackfin: bfin_sdh: c

[U-Boot] [PATCH 04/37] Blackfin: bfin_sdh: clean up send_cmd

2010-10-02 Thread Mike Frysinger
Simplify the command setup and status checking steps, and add a proper timeout to the status polling code to avoid possible infinite hangs. Signed-off-by: Mike Frysinger --- drivers/mmc/bfin_sdh.c | 25 +++-- 1 files changed, 15 insertions(+), 10 deletions(-) diff --git a

[U-Boot] [PATCH 03/37] Blackfin: bfin_spi: add optional DMA support

2010-10-02 Thread Mike Frysinger
This moves the last piece from the old spi_flash driver to the new SPI framework -- optional DMA RX support. This typically cuts speeds by ~40% at the cost of additional ~300 bytes. Signed-off-by: Mike Frysinger --- arch/blackfin/include/asm/dma.h | 75 +++ drivers/spi

[U-Boot] [PATCH 05/37] Blackfin: unify gpio cfi implementations

2010-10-02 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- board/cm-bf527/cm-bf527.c|2 +- board/cm-bf527/gpio_cfi_flash.c | 63 ++ board/cm-bf527/gpio_cfi_flash.h | 10 -- board/cm-bf537e/gpio_cfi_flash.c | 20 +--- board/cm-bf537u/cm-bf537u.c

[U-Boot] [PATCH 06/37] Blackfin: punt headers for non-existent BF541

2010-10-02 Thread Mike Frysinger
There is no BF541 processor variant, so punt headers for it. Signed-off-by: Mike Frysinger --- arch/blackfin/include/asm/blackfin_cdef.h |3 - arch/blackfin/include/asm/blackfin_def.h |5 - arch/blackfin/include/asm/mach-bf548/BF541_cdef.h | 323

[U-Boot] [PATCH 08/37] Blackfin: bf537-stamp: post: update old MMR style macros

2010-10-02 Thread Mike Frysinger
The old MMR defines are being scrubbed, so convert the driver to use the new standard helper macros. For the GPIO MMR usage, convert to the new GPIO framework. Signed-off-by: Mike Frysinger --- board/bf537-stamp/post-memory.c | 54 +++--- board/bf537-stamp/post.c| 152

[U-Boot] [PATCH 09/37] Blackfin: bf527-ezkit: video: convert from old style MMR macros

2010-10-02 Thread Mike Frysinger
The old MMR defines are being scrubbed, so convert the driver to use the new standard helper macros. Signed-off-by: Mike Frysinger --- board/bf527-ezkit/video.c | 76 +++- 1 files changed, 40 insertions(+), 36 deletions(-) diff --git a/board/bf527

[U-Boot] [PATCH 10/37] Blackfin: bf548-ezkit: video: convert from old style MMR macros

2010-10-02 Thread Mike Frysinger
The old MMR defines are being scrubbed, so convert the driver to use the new standard helper macros. Signed-off-by: Mike Frysinger --- board/bf548-ezkit/video.c | 21 +++-- 1 files changed, 11 insertions(+), 10 deletions(-) diff --git a/board/bf548-ezkit/video.c b/board/bf548

[U-Boot] [PATCH 11/37] Blackfin: cm-bf548: video: convert from old style MMR macros

2010-10-02 Thread Mike Frysinger
The old MMR defines are being scrubbed, so convert the driver to use the new standard helper macros. Signed-off-by: Mike Frysinger --- board/cm-bf548/video.c | 23 --- 1 files changed, 12 insertions(+), 11 deletions(-) diff --git a/board/cm-bf548/video.c b/board/cm-bf548

[U-Boot] [PATCH 07/37] Blackfin: bfin_mac: convert from old style MMR macros

2010-10-02 Thread Mike Frysinger
The old MMR defines are being scrubbed, so convert the driver to use the new standard helper macros. Signed-off-by: Mike Frysinger --- drivers/net/bfin_mac.c | 68 +-- 1 files changed, 36 insertions(+), 32 deletions(-) diff --git a/drivers/net

[U-Boot] [PATCH 12/37] Blackfin: bf527-ad7160-eval: convert from old style MMR macros

2010-10-02 Thread Mike Frysinger
The old MMR defines are being scrubbed, so convert the driver to use the new standard helper macros. Signed-off-by: Mike Frysinger --- board/bf527-ad7160-eval/bf527-ad7160-eval.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/bf527-ad7160-eval/bf527-ad7160

[U-Boot] [PATCH 14/37] Blackfin: bf537: unify arch header duplication

2010-10-02 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- arch/blackfin/include/asm/mach-bf537/BF534_def.h |2 + arch/blackfin/include/asm/mach-bf537/BF536_cdef.h |4 +- arch/blackfin/include/asm/mach-bf537/BF536_def.h | 13 +-- arch/blackfin/include/asm/mach-bf537/BF537_cdef.h | 173

[U-Boot] [PATCH 19/37] Blackfin: move CONFIG_BFIN_CPU to board config.mk

2010-10-02 Thread Mike Frysinger
The CONFIG_BFIN_CPU option is largely used in the build system, so move it out of the board config.h and into the board config.mk. It'd be nice to keep everything in the config.h, but the patch to extract that value early was rejected. Signed-off-by: Mike Frysinger --- arch/blackfin/conf

[U-Boot] [PATCH 22/37] Blackfin: adi config: add an "all spi flashes" option to unify board lists

2010-10-02 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- include/configs/bf533-stamp.h |5 + include/configs/bf537-stamp.h |5 + include/configs/bf538f-ezkit.h|5 + include/configs/bfin_adi_common.h | 12 4 files changed, 15 insertions(+), 12 deletions(-) diff --git

[U-Boot] [PATCH 20/37] Blackfin: cmd_gpio: document/extend input sub-option

2010-10-02 Thread Mike Frysinger
The input sub command was missing from the help text, and it didn't show the actual value currently read on the GPIO. This allows people to read the value of input pins. Signed-off-by: Mike Frysinger --- arch/blackfin/cpu/cmd_gpio.c | 27 +-- 1 files change

[U-Boot] [PATCH 25/37] Blackfin: cmd_gpio: return gpio value to caller

2010-10-02 Thread Mike Frysinger
Make the GPIO command usable in a scripting environment by returning the GPIO value rather than always 0. Signed-off-by: Mike Frysinger --- arch/blackfin/cpu/cmd_gpio.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/blackfin/cpu/cmd_gpio.c b/arch/blackfin/cpu

[U-Boot] [PATCH 24/37] Blackfin: bf527-sdp: new board port

2010-10-02 Thread Mike Frysinger
Support for the Blackfin System Development Platform (SDP) base module. Signed-off-by: Mike Frysinger --- MAINTAINERS |1 + board/bf527-sdp/Makefile| 54 +++ board/bf527-sdp/bf527-sdp.c | 32 +++ board/bf527-sdp/config.mk | 36

[U-Boot] [PATCH 23/37] Blackfin: adi config: add a hook for boards to append the env

2010-10-02 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- include/configs/bfin_adi_common.h |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/include/configs/bfin_adi_common.h b/include/configs/bfin_adi_common.h index bf3952c..55b8b0b 100644 --- a/include/configs/bfin_adi_common.h +++ b

[U-Boot] [PATCH 26/37] Blackfin: adi config: allow boards to tweak a little more

2010-10-02 Thread Mike Frysinger
Let people easily override bootdelay and network settings. Signed-off-by: Mike Frysinger --- include/configs/bfin_adi_common.h | 22 ++ 1 files changed, 14 insertions(+), 8 deletions(-) diff --git a/include/configs/bfin_adi_common.h b/include/configs/bfin_adi_common.h

[U-Boot] [PATCH 21/37] Blackfin: support a 3rd gpio cfi pin

2010-10-02 Thread Mike Frysinger
From: Peter Meerwald Signed-off-by: Peter Meerwald Signed-off-by: Mike Frysinger --- board/cm-bf537e/gpio_cfi_flash.c | 15 ++- 1 files changed, 14 insertions(+), 1 deletions(-) diff --git a/board/cm-bf537e/gpio_cfi_flash.c b/board/cm-bf537e/gpio_cfi_flash.c index ab6af81

[U-Boot] [PATCH 27/37] Blackfin: bct-brettl2: new board port

2010-10-02 Thread Mike Frysinger
From: Peter Meerwald Signed-off-by: Peter Meerwald Signed-off-by: Mike Frysinger --- MAINTAINERS|4 + board/bct-brettl2/Makefile | 51 +++ board/bct-brettl2/bct-brettl2.c| 123 + board/bct-brettl2/cled.c

[U-Boot] [PATCH 28/37] Blackfin: adi config: enable nand lock/unlock support

2010-10-02 Thread Mike Frysinger
We use the lock/unlock options in our default nand code, so enabl support for the options. Reported-by: Vivi Li Signed-off-by: Mike Frysinger --- include/configs/bfin_adi_common.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/bfin_adi_common.h b

[U-Boot] [PATCH 29/37] Blackfin: bf526-ezbrd: enable BootROM-OOB layout when booting from NAND

2010-10-02 Thread Mike Frysinger
We need to use the Blackfin BootROM-specific OOB layout when we boot out of NAND as that is what the on-chip ROM expects. Also need to increase the monitor size a little to accommodate the extra NAND code overhead. Signed-off-by: Mike Frysinger --- include/configs/bf526-ezbrd.h |5 +++-- 1

[U-Boot] [PATCH 30/37] Blackfin: cmd_gpio: accept upper case pin names

2010-10-02 Thread Mike Frysinger
The intention all along was to accept pin names irrelevant of their case. But I guess I forgot to test/implement support for that. Signed-off-by: Mike Frysinger --- arch/blackfin/cpu/cmd_gpio.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/arch/blackfin/cpu

[U-Boot] [PATCH 31/37] Blackfin: propagate target cpu defines when building embedded env

2010-10-02 Thread Mike Frysinger
is linked into the u-boot env. Reported-by: Vivi Li Signed-off-by: Mike Frysinger --- arch/blackfin/config.mk |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/blackfin/config.mk b/arch/blackfin/config.mk index e531edb..a330084 100644 --- a/arch/blackfin/config.mk

[U-Boot] [PATCH 33/37] Blackfin: fix MMC init output alignment

2010-10-02 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- arch/blackfin/lib/board.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/blackfin/lib/board.c b/arch/blackfin/lib/board.c index 94fbbfe..fcfd174 100644 --- a/arch/blackfin/lib/board.c +++ b/arch/blackfin/lib/board.c @@ -351,7

[U-Boot] [PATCH 32/37] Blackfin: blackvme: new board port

2010-10-02 Thread Mike Frysinger
) * Spartan6-LX150 (memory-mapped; both PPIs also connected) * See http://www.skutek.com/ Signed-off-by: Wojtek Skulski Signed-off-by: Mike Frysinger --- MAINTAINERS|5 +- board/blackvme/Makefile| 54 ++ board/blackvme/blackvme.c | 31 ++ board/blackvme

<    1   2   3   4   5   6   7   8   9   10   >