Re: [U-Boot] [PATCH] ARM: tegra: Use mem size from MC in combination with get_ram_size()

2014-10-03 Thread Marcel Ziswiler
On Fri, 2014-10-03 at 10:01 -0600, Stephen Warren wrote: > Recall that on many systems, U-Boot executes from ROM initially and is > tasked with initializing the RAM. On all current Tegra ports, U-Boot > always executes from RAM, and the boot ROM has already fully initialized > RAM. That's quite

[U-Boot] [PATCH] usb: tegra: ULPI regression on tegra20

2014-10-03 Thread Marcel Ziswiler
quickly identifies a copy paste error which this patch fixes. Happy ULPIing again (;-p). Signed-off-by: Marcel Ziswiler --- drivers/usb/host/ehci-tegra.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/host/ehci-tegra.c b/drivers/usb/host/ehci-tegra.c index 33e5ea9

[U-Boot] [PATCH] mmc: Tegra: Fix timeout issue seen on certain eMMC parts

2014-10-03 Thread Marcel Ziswiler
=6000ms Unfortunately empirical testing still failed albeit much more rarely. Increasing the timeout to 8000ms made it finally disappear entirely. This patch allows us writing various eMMC parts without seeing any further issues. Signed-off-by: Marcel Ziswiler --- drivers/mmc/tegra_mmc.c | 2 +- 1

[U-Boot] [PATCH] tegra: gpio: fix null label regression

2014-10-10 Thread Marcel Ziswiler
: 2fccd2d96badcdf6165658a99771a4c475586279 tegra: Convert tegra GPIO driver to use driver model Signed-off-by: Marcel Ziswiler --- drivers/gpio/tegra_gpio.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpio/tegra_gpio.c b/drivers/gpio/tegra_gpio.c index 1cc4abb..70663fc 100644 --- a/drivers/gpio/tegra_gpio.c +++ b

[U-Boot] [PATCH] tegra: colibri_t30: asix usb ethernet reset regression

2014-10-10 Thread Marcel Ziswiler
tegra: Convert tegra GPIO driver to use driver model Signed-off-by: Marcel Ziswiler --- board/toradex/colibri_t30/colibri_t30.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/toradex/colibri_t30/colibri_t30.c b/board/toradex/colibri_t30/colibri_t30.c index ed043f4

[U-Boot] [PATCH] gpio: header file comment spelling fixes

2014-10-10 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler --- include/asm-generic/gpio.h | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h index 60539d8..1ebb9c7 100644 --- a/include/asm-generic/gpio.h +++ b/include/asm-generic/gpio.h

Re: [U-Boot] [PATCH] tegra: gpio: fix null label regression

2014-10-10 Thread Marcel Ziswiler
Hi Simon On Fri, 2014-10-10 at 09:26 -0600, Simon Glass wrote: > Does this patch fix anything? What exactly does it change with your board? Well, yes. It does stop Colibri T30 from crashing with rc3 right after printing DRAM: 1 GiB. Looking at the former code the string copy stuff was actually

[U-Boot] [PATCH] tegra: clean-up useless define

2014-10-10 Thread Marcel Ziswiler
Wondering what exactly that one should bring (;-p). Looks like a remnant of the last commit 783e6a72b8278d59854ced41a4696c9a14abbb0b kconfig: move CONFIG_OF_* to Kconfig Signed-off-by: Marcel Ziswiler --- include/configs/tegra-common-post.h | 4 1 file changed, 4 deletions(-) diff --git

Re: [U-Boot] [PATCH] tegra: gpio: fix null label regression

2014-10-10 Thread Marcel Ziswiler
Hi Simon On Fri, 2014-10-10 at 09:42 -0600, Simon Glass wrote: > OK, is it possible to stop calling the function with NULL instead? Yes, sure. Remember http://article.gmane.org/gmane.comp.boot-loaders.u-boot/198189 > That is a bug IMO. Well, that's what I tried to find out digging through the

Re: [U-Boot] [PATCH] tegra: clean-up useless define

2014-10-10 Thread Marcel Ziswiler
On Fri, 2014-10-10 at 09:52 -0600, Simon Glass wrote: > You could put anything in there. Good point. Maybe we should leave more spare defines like that. One never knows could come in handy (;-p). ___ U-Boot mailing list U-Boot@lists.denx.de http://lists

[U-Boot] [PATCH v2] ARM: tegra: Use mem size from MC in combination with get_ram_size()

2014-10-10 Thread Marcel Ziswiler
ased-on-work-by: Stephen Warren Based-on-work-by: Tom Warren Signed-off-by: Marcel Ziswiler --- changes in v2: - include full commit description as requested by Stephen - use size macros rather than hard-coded values arch/arm/cpu/tegra-common/board.c | 64 ++---

[U-Boot] [PATCH] tegra: colibri_t30: clean-up spurious new line

2014-10-10 Thread Marcel Ziswiler
Clean-up a spurious new line which got introduced resp. left behind by commit f1ef2b62339526df3b921bcfefd174ce76d4c624 kconfig: move CONFIG_DEFAULT_DEVICE_TREE to kconfig Signed-off-by: Marcel Ziswiler --- note: - this patch got re-based against u-boot/master which includes above mentioned

[U-Boot] [PATCH] tegra: dts: colibri_t30 add serial port details

2014-10-10 Thread Marcel Ziswiler
Add missing chosen stdout-path device tree node. This got missed by commit c369139234c03b1494394d12cd27009f47aa6606 tegra: dts: Add serial port details Signed-off-by: Marcel Ziswiler --- note: - this patch got re-based against u-boot/master which includes above mentioned commit while u-boot

[U-Boot] [PATCH] tegra: apalis_t30: master revamp

2014-10-10 Thread Marcel Ziswiler
nfig: move CONFIG_DEFAULT_DEVICE_TREE to kconfig Signed-off-by: Marcel Ziswiler --- note: - this patch got re-based against u-boot-tegra/master which is currently how far the Apalis T30 support made it - above mentioned commits so far are only in u-boot/master as u-boot-tegra/master has not yet bee

Re: [U-Boot] [PATCH] tegra: gpio: fix null label regression

2014-10-10 Thread Marcel Ziswiler
Hi Simon On Fri, 2014-10-10 at 16:22 -0600, Simon Glass wrote: > Well you fixed that bug. Are there any others? Well, not in any of our boards but a short grep through the sources reveals dozens of places where GPIOs are still reserved with NULL labels. Happy crashing and subsequent bisecting for

Re: [U-Boot] [PATCH] arm: tegra: use architecture specific memcpy

2014-10-20 Thread Marcel Ziswiler
On Tue, 2014-08-26 at 10:27 -0600, Stephen Warren wrote: > On Jetson TK1, this makes my "dhcp zImage" on my USB ethernet dongle got > from ~1.7MiB/s to ~2.8MiB/s :-) I just noticed this not having been applied anywhere yet. Is the tegra tree eventually gona be re-based and this being applied? __

Re: [U-Boot] [RFC] net/e1000: Fix EEPROM access error

2014-10-20 Thread Marcel Ziswiler
On Sat, 2014-10-18 at 01:40 +0200, Marek Vasut wrote: > +CC Marcel. Marcel, can you please take a look at this and test this with > i210 > card ? Good catch. Yes, I can confirm that this properly fixes at least one of the remaining issues as previously seen on the i210/i211. Acked-b

Re: [U-Boot] [PATCH] arm: tegra: use architecture specific memcpy

2014-10-21 Thread Marcel Ziswiler
On Mon, 2014-10-20 at 15:40 +, Tom Warren wrote: > Sorry, Marcel. Must have missed it. I'll rebase u-boot-tegra/master against > ARM master and apply this, and if no other Tegra patches are pending, I'll > send a PR later this week. Thanks, Tom. According to my notes the following 10 patches

[U-Boot] [PATCH] e1000: fix sw fw sync on igb i210/i211

2014-10-21 Thread Marcel Ziswiler
I finally had a look at the datasheet and spotted an additional register address difference between regular E1000 and i210/i211 chips. This patch fixes this and now successfully works on programmed i210/i211 as well as unprogrammed i211. Signed-off-by: Marcel Ziswiler --- Please note that

[U-Boot] [RFC] dm: tegra: boot time regression

2014-10-21 Thread Marcel Ziswiler
Migrating our BSPs towards mainline U-Boot I noticed it suddenly booting slower. With mainline Linux I noticed about a 1 to 2 second increase while booting downstream L4T takes 10 to 15 seconds longer! Git bisecting it revealed the following commit to be at odds: 858530a8c0a7ce7e573e513934804a00d6

Re: [U-Boot] Please pull u-boot-tegra/master into ARM/master

2014-10-22 Thread Marcel Ziswiler
On Wed, 2014-10-22 at 09:59 -0700, Tom Warren wrote: > The following changes since commit > 3d420cbd355a5f09e4f113eb10579a264a8ef138: Thanks Tom, just strange that you guys are all still at -rc3 level since the other Tom did actually release v2014.10 last week during ELCE (;-p). _

Re: [U-Boot] [PATCH] e1000: fix sw fw sync on igb i210/i211

2014-10-26 Thread Marcel Ziswiler
On Thu, 2014-10-23 at 01:12 -0700, Tim Harvey wrote: > I've never been able to get e1000_swfw_sync_acquire() to not timeout > on the boards with i210 devices that I have (IMX6 with 2x i210 > programmed as 8086:1533 using int phys). Ah, OK. I see. We do use them in flash less aka iNVM only mode as

Re: [U-Boot] e1000: add i211 and unprogrammed i210/i211 support

2014-10-27 Thread Marcel Ziswiler
On Mon, 2014-10-27 at 18:19 -0400, Tom Rini wrote: > Applied to u-boot/master, thanks! Please excuse my ignorance but I can't quite make this one out on u-boot/master anywhere. Could you let me know of its commit hash? ___ U-Boot mailing list U-Boot@lis

Re: [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix

2014-10-27 Thread Marcel Ziswiler
Sorry, Tom. Found another one that hasn't quite made it in yet (;-p). On Thu, 2014-10-02 at 18:23 +0200, Marcel Ziswiler wrote: > Signed-off-by: Marcel Ziswiler > --- > arch/arm/dts/tegra30-colibri.dts | 12 > 1 file changed, 8 insertions(+), 4 deletions(-) >

[U-Boot] Building fw_printenv (e.g. make env) failing

2014-11-01 Thread Marcel Ziswiler
Quick question: How does one actually go about building fw_printenv nowadays? At lest just doing 'make env' fails for me: [user@host u-boot.git]$ make env HOSTCC tools/env/aes.o HOSTCC tools/env/crc32.o HOSTCC tools/env/ctype.o HOSTCC tools/env/env_attr.o HOSTCC tools/env/env_flags.

[U-Boot] [PATCH][v1] ep8248: add support for device tree and secondary Ethernet interface.

2009-09-03 Thread Marcel Ziswiler
ep8248: add support for device tree and secondary Ethernet interface. Signed-off-by: Marcel Ziswiler --- board/ep8248/ep8248.c| 36 +- include/configs/ep8248.h | 53 -- 2 files changed, 57 insertions(+), 32

Re: [U-Boot] [PATCH][v1] ep8248: add support for device tree and secondary Ethernet interface.

2009-09-04 Thread Marcel ziswiler
Hi Peter Peter Tyser xes-inc.com> writes: > Should this chunk of code should be added to your cpu's ft_cpu_setup() > function instead of here? Then any mpc82xx board can leverage it > instead of reinventing the wheel. Sure, I just copied it from one of the other 13 boards that do it like that (

[U-Boot] [PATCH][v1] mpc8260: move FDT memory node fixup into common CPU code.

2009-09-04 Thread Marcel ziswiler
Move the memory node fixup of the MPC8260ADS, ids8247 and muas3001 boards into common mpc8260 CPU code. Remove Ethernet node fixup from muas3001 board and modify its config for the common mpc8260 code to use generic Ethernet fixup. Signed-off-by: Marcel Ziswiler --- board/freescale/mpc8260ads

[U-Boot] [PATCH][v2] ep8248: add support for device tree and secondary Ethernet interface.

2009-09-04 Thread Marcel ziswiler
Signed-off-by: Marcel Ziswiler --- board/ep8248/ep8248.c| 22 +- include/configs/ep8248.h | 53 -- 2 files changed, 43 insertions(+), 32 deletions(-) diff --git a/board/ep8248/ep8248.c b/board/ep8248/ep8248.c index bc20ba7

[U-Boot] [PATCH] ARM: Fix building without CONFIG_CMD_NET

2009-12-23 Thread Marcel Ziswiler
t this got already fixed for ppc. Duno why nobody considered ARM as well! Signed-off-by: Marcel Ziswiler --- lib_arm/board.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/lib_arm/board.c b/lib_arm/board.c index e148739..453d660 100644 --- a/lib_arm/board.c +++ b/lib_a

[U-Boot] [PATCH] AVR32, i386, m68k, MIPS, NIOS, NIOS2 and SPARC: Fix building without CONFIG_CMD_NET

2009-12-23 Thread Marcel Ziswiler
Saw that this got already fixed for ppc. Duno why nobody considered the other archs as well! Signed-off-by: Marcel Ziswiler --- lib_avr32/board.c |2 ++ lib_i386/board.c |2 ++ lib_m68k/board.c |2 ++ lib_mips/board.c |2 ++ lib_nios/board.c |2 ++ lib_nios2/board.c

[U-Boot] [PATCH 0/3] Monahan/PXA3xx: integrate Linux NAND controller driver

2009-12-23 Thread Marcel Ziswiler
From: Marcel Ziswiler This patch-set integrates the PXA3xx Linux NAND controller driver and adapts the two Monahan/PXA3xx boards delta and zylonite accordingly. Marcel Ziswiler (3): Monahan/PXA3xx: integrate Linux NAND controller driver delta: use new generic NAND controller driver

[U-Boot] [PATCH 2/3] delta: use new generic NAND controller driver

2009-12-23 Thread Marcel Ziswiler
This patch adapts the Monahan/PXA3xx board delta to use the new generic NAND controller driver. Signed-off-by: Marcel Ziswiler --- board/delta/Makefile|2 +- board/delta/delta.c | 50 + board/delta/nand.c | 554 --- include

[U-Boot] [PATCH 3/3] zylonite: use new generic NAND controller driver

2009-12-23 Thread Marcel Ziswiler
This patch adapts the Monahan/PXA3xx board zylonite to use the new generic NAND controller driver. Signed-off-by: Marcel Ziswiler --- board/zylonite/Makefile|2 +- board/zylonite/nand.c | 558 board/zylonite/zylonite.c | 50

Re: [U-Boot] [PATCH 1/3] Monahan/PXA3xx: integrate Linux NAND controller driver

2010-01-08 Thread Marcel Ziswiler
On Thu, 2010-01-07 at 13:44 -0600, Scott Wood wrote: > I don't think we need this. > > In fact, it could make it harder to spot conflicts when merging new versions > of the file from linux, since patch could find the context it's looking for > in the middle of an #ifndef __U_BOOT__ section when th

Re: [U-Boot] [PATCH][v2] ep8248: add support for device tree and secondary Ethernet interface.

2009-09-07 Thread Marcel Ziswiler
Hi Peter Peter Tyser xes-inc.com> writes: > > Hi Marcel, > This patch also appears to be line wrapped. Sorry, obviously gmane can't be used for patch submission. Unfortunately I am not in a very Linux friendly environment right now, meaning M$ proxies and such. Trying to find a cleaner submissi

Re: [U-Boot] [PATCH][v1] mpc8260: move FDT memory node fixup into common CPU code.

2009-09-07 Thread Marcel Ziswiler
Hi Heiko Heiko Schocher denx.de> writes: > ... I couldn;t apply your patch, because your patch is line wrapped. > Can you fix your mailer? Sorry, obviously gmane can't be used for patch submission. Unfortunately I am not in a very Linux friendly environment right now, meaning M$ proxies and such

[U-Boot] [PATCH][v1] r7780mp: fix typo in Ethernet chip model number comment.

2009-09-08 Thread Marcel Ziswiler
--- include/configs/r7780mp.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/r7780mp.h b/include/configs/r7780mp.h index 7738a17..71c570e 100644 --- a/include/configs/r7780mp.h +++ b/include/configs/r7780mp.h @@ -154,7 +154,7 @@ #define CONFIG_NET_MULTI

[U-Boot] [PATCH][v1] muas3001: remove BRG clock node fixup to use common mpc8260 code.

2009-09-08 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler --- board/muas3001/muas3001.c | 16 1 files changed, 0 insertions(+), 16 deletions(-) diff --git a/board/muas3001/muas3001.c b/board/muas3001/muas3001.c index 8f83dd9..bf4ccb6 100644 --- a/board/muas3001/muas3001.c +++ b/board/muas3001/muas3001

[U-Boot] [PATCH][v1] r7780mp: fix typo in Ethernet chip model number comment.

2009-09-08 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler --- include/configs/r7780mp.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/r7780mp.h b/include/configs/r7780mp.h index 7738a17..71c570e 100644 --- a/include/configs/r7780mp.h +++ b/include/configs/r7780mp.h @@ -154,7

[U-Boot] [PATCH][v1] mpc8260: remove Ethernet node fixup to use generic FDT code.

2009-09-08 Thread Marcel Ziswiler
Remove Ethernet node fixup from mgcoge and muas3001 boards and modify its configs for the common mpc8260 code to use generic Ethernet fixup. Signed-off-by: Marcel Ziswiler --- board/keymile/mgcoge/mgcoge.c |5 - board/muas3001/muas3001.c | 15 --- include/configs

[U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.

2009-09-08 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler --- README|6 -- include/configs/IDS8247.h |2 -- include/configs/MPC8260ADS.h |1 - include/configs/linkstation.h |2 -- include/configs/mgcoge.h |2 -- include/configs/mpc7448hpc2.h |1 - include

[U-Boot] [PATCH][v2] mpc8260: move FDT memory node fixup into common CPU code.

2009-09-08 Thread Marcel Ziswiler
Move the memory node fixup of the MPC8260ADS, ids8247, mgcoge and muas3001 boards into common mpc8260 CPU code. Signed-off-by: Marcel Ziswiler --- board/freescale/mpc8260ads/mpc8260ads.c | 13 - board/ids8247/ids8247.c | 16 board/keymile/mgcoge

[U-Boot] [PATCH][v3] ep8248: add support for device tree and secondary Ethernet interface.

2009-09-08 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler --- board/ep8248/ep8248.c| 16 - include/configs/ep8248.h | 53 -- 2 files changed, 37 insertions(+), 32 deletions(-) diff --git a/board/ep8248/ep8248.c b/board/ep8248/ep8248.c index bc20ba7..eb11418

Re: [U-Boot] [PATCH][v1] r7780mp: fix typo in Ethernet chip model number comment.

2009-09-08 Thread Marcel Ziswiler
ches you > just sent. Please work on the other review comments, and then decide > how you want to post them - as series or independent patches. Assume > version numbering restarts from zero, as I really ignore this current > patch series. That's really sad. Cheers Marcel Ziswi

Re: [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.

2009-09-08 Thread Marcel Ziswiler
bout the other boards then? Say MPC8260ADS or mpc7448hpc2? As OF_CPU and OF_SOC is only ever used in cpu/mpc512x/cpu.c and cpu/mpc5xxx/cpu.c there is no impact whatever on any of the other boards. Cheers Marcel Ziswiler ___ U-Boot mailing list U-Boot

Re: [U-Boot] [PATCH][v2] mpc8260: move FDT memory node fixup into common CPU code.

2009-09-08 Thread Marcel Ziswiler
set the In-Reply-To: and References: > headers, then? Sorry about that, my understanding was to post new versions of a patch as a new thread. Is that not so? What exactly is that references header you are talking about? Cheers Marcel Ziswiler ___

Re: [U-Boot] [PATCH][v3] ep8248: add support for device tree and secondary Ethernet interface.

2009-09-08 Thread Marcel Ziswiler
> for us. OK, sorry. Will change that. Cheers Marcel Ziswiler ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.

2009-09-08 Thread Marcel Ziswiler
On Tue, 2009-09-08 at 23:23 +0200, Wolfgang Denk wrote: > It doesn't do it for all affected boards. That's why I asked about for > example MPC8260ADS or mpc7448hpc2: > -> grep OF_CPU include/configs/{MPC8260ADS,mpc7448hpc2}.h > include/configs/MPC8260ADS.h:#define OF_CPU "c...@0

Re: [U-Boot] [PATCH][v2] mpc8260: move FDT memory node fixup into common CPU code.

2009-09-08 Thread Marcel Ziswiler
as they are not using FDT at all. Cheers Marcel Ziswiler ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.

2009-09-08 Thread Marcel Ziswiler
Dear Wolfang Denk On Tue, 2009-09-08 at 23:11 +0200, Wolfgang Denk wrote: > The patch should remove the macros then from the respective config > files. Isn't that exactly what my patch does? Cheers Marcel Ziswiler ___ U-Boot mailing

Re: [U-Boot] [PATCH][v1] mpc8260: remove Ethernet node fixup to use generic FDT code.

2009-09-08 Thread Marcel Ziswiler
raid there might be lots more boards with similar obsolete fixups in board specific code. Heiko? Cheers Marcel Ziswiler ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH][v2] mpc8260: move FDT memory node fixup into common CPU code.

2009-09-08 Thread Marcel Ziswiler
On Tue, 2009-09-08 at 23:19 +0200, Wolfgang Denk wrote: > No, on contrary. New versions of a patch should always make sure to > thread correctly to the old version(s). It seems that preferences here > are a matter of taste - my personal preference is to link to the > preceeding version of the patch

Re: [U-Boot] [PATCH][v1] mpc8260: remove Ethernet node fixup to use generic FDT code.

2009-09-09 Thread Marcel Ziswiler
Hi Heiko Heiko Schocher denx.de> writes: > Yes, thats the kmsupx4 and mgsuvd boards. The generic memory fixup > can be used (I tried this), but with the generic Ethernet fixup > something goes wrong. If I find time, I take a look at it. At the beginning I had issues as my device tree was missing

[U-Boot] [PATCH][v2] r7780mp: fix typo in Ethernet chip model number comment.

2009-09-09 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler --- Changes since v1: - CC R7780MP maintainer Nobuhiro Iwamatsu include/configs/r7780mp.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/r7780mp.h b/include/configs/r7780mp.h index 7738a17..71c570e 100644 --- a/include

[U-Boot] [PATCH][v2] muas3001: remove BRG clock node fixup to use common mpc8260 code.

2009-09-09 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler Acked-by: Heiko Schocher --- Changes since v1: - Added Heiko's ack board/muas3001/muas3001.c | 16 1 files changed, 0 insertions(+), 16 deletions(-) diff --git a/board/muas3001/muas3001.c b/board/muas3001/muas3001.c index 8f83dd9..bf

[U-Boot] [PATCH][v2] mpc8260: remove Ethernet node fixup to use generic FDT code.

2009-09-09 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler Tested-by: Heiko Schocher --- Changes since v1: - Added Heiko's tested-by board/keymile/mgcoge/mgcoge.c |5 - board/muas3001/muas3001.c | 15 --- include/configs/mgcoge.h |1 + include/configs/muas3001.h|1 + 4

[U-Boot] [PATCH][v2] FDT: remove obsolete OF_CPU and OF_SOC macros.

2009-09-09 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler --- Changes since v1: - CC all respective board maintainers README|6 -- include/configs/IDS8247.h |2 -- include/configs/MPC8260ADS.h |1 - include/configs/linkstation.h |2 -- include/configs/mgcoge.h |2

[U-Boot] [PATCH][v3] mpc8260: move FDT memory node fixup into common CPU code.

2009-09-09 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler Tested-by: Heiko Schocher --- Changes since v1: - Added previously missed mgcoge board as pointed out by Peter Tyser and Heiko - Moved the board-specific Ethernet modifications into separate patch Changes since v2: - Added Heiko's tested-by board/free

[U-Boot] [PATCH][v4] ep8248: add support for device tree and secondary Ethernet interface.

2009-09-09 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler --- Changes since v1: - Removed redundant commit message as pointed out by Peter Tyser - Separate patch to move FDT memory node fixup into common CPU code as pointed out by Peter Tyser Changes since v2: - Fix patch line wrapping Changes since v3: - Removed

[U-Boot] [PATCH][v3] mpc8260: remove Ethernet node fixup to use generic FDT code.

2009-09-11 Thread Marcel Ziswiler
Remove Ethernet node fixup from mgcoge and muas3001 boards and modify its configs for the common mpc8260 code to use generic Ethernet fixup. Signed-off-by: Marcel Ziswiler Tested-by: Heiko Schocher --- Changes since v1: - Added Heiko's tested-by Changes since v2: - Re-based to origin/m

[U-Boot] Maintainer Yuli Barcohen

2009-09-11 Thread Marcel Ziswiler
. --- Received: from [10.10.1.46] (69-167.2-85.cust.bluewin.ch [85.2.167.69]) by mrelay.perfora.net (node=mrus1) with ESMTP (Nemesis) id 0MKpCa-1MlSia2hYk-000Can; Wed, 09 Sep 2009 15:20:43 -0400 Subject: [PATCH][v3] mpc8260: move FDT memory node fixup into common CPU code. From: Marcel Ziswiler

[U-Boot] [PATCH][v3] FDT: remove obsolete OF_CPU and OF_SOC macros.

2009-09-16 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler Acked-by: Guennadi Liakhovetski --- Changes since v1: - CC all respective board maintainers Changes since v2: - Added Guennadi Liakhovetski's ack README|6 -- include/configs/IDS8247.h |2 -- include/configs/MPC8260

[U-Boot] [PATCH][v4] FDT: remove obsolete OF_CPU and OF_SOC macros.

2009-09-18 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler Acked-by: Guennadi Liakhovetski Acked-by: Heiko Schocher --- Changes since v1: - CC all respective board maintainers Changes since v2: - Added Guennadi Liakhovetski's ack Changes since v3: - Added Heiko's ack for IDS8247, mgcoge and muas300

[U-Boot] [PATCH][v4] mpc8260: move FDT memory node fixup into common CPU code.

2009-10-01 Thread Marcel Ziswiler
Signed-off-by: Marcel Ziswiler Tested-by: Heiko Schocher --- Changes since v1: - Added previously missed mgcoge board as pointed out by Peter Tyser and Heiko - Moved the board-specific Ethernet modifications into separate patch Changes since v2: - Added Heiko's tested-by Changes since v3:

[U-Boot] [PATCH 00/10] arm: vf610/vf610twr: vybrid tower fixes and enhancements

2013-09-17 Thread Marcel Ziswiler
arm: vf610: vf610twr: vybrid tower fixes and enhancements This patch series addresses several vixes and enhancements for the vybrid tower. Tested on a TWR-VF65GS10 Rev G. Marcel Ziswiler (10): arm: vf610: fix anadig register struct arm: vf610: clean-up anadig register struct arm: vf610

[U-Boot] [PATCH 03/10] arm: vf610: add uart0 clock definition

2013-09-17 Thread Marcel Ziswiler
Add CCM_CCGR0_UART0_CTRL_MASK clock definition for UART0 aka SCI0. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/crm_regs.h |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-vf610/crm_regs.h b/arch/arm/include/asm/arch-vf610/crm_regs.h index

[U-Boot] [PATCH 02/10] arm: vf610: clean-up anadig register struct

2013-09-17 Thread Marcel Ziswiler
Re-number all the resv reserved fields. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/crm_regs.h | 54 ++-- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/arch/arm/include/asm/arch-vf610/crm_regs.h b/arch/arm/include/asm/arch

[U-Boot] [PATCH 01/10] arm: vf610: fix anadig register struct

2013-09-17 Thread Marcel Ziswiler
tested by temporarily putting the following debug instrumentation into board_init(): struct anadig_reg *anadig = (struct anadig_reg *)ANADIG_BASE_ADDR; printf("&anadig->pll3_ctrl=0x%p\n", &anadig->pll3_ctrl); printf("&anadig->pll5_ctrl=0x%p\n", &a

[U-Boot] [PATCH 04/10] arm: vf610: add anadig pll5 definitions

2013-09-17 Thread Marcel Ziswiler
Add ANADIG PLL5 control definitions required for Ethernet RMII clock configuration. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/crm_regs.h |4 1 file changed, 4 insertions(+) diff --git a/arch/arm/include/asm/arch-vf610/crm_regs.h b/arch/arm/include/asm/arch

[U-Boot] [PATCH 05/10] arm: vf610: add enet1 base address definition

2013-09-17 Thread Marcel Ziswiler
Add secondary Ethernet MAC RMII1 base address definition in preparation of potential secondary only board configurations. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/imx-regs.h |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-vf610/imx

[U-Boot] [PATCH 10/10] arm: vf610: remove obsolete uart port configuration

2013-09-17 Thread Marcel Ziswiler
Get rid of obsolete CONFIG_SYS_UART_PORT configuration option. Signed-off-by: Marcel Ziswiler --- include/configs/vf610twr.h |1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/vf610twr.h b/include/configs/vf610twr.h index 5a7a066..432a69d 100644 --- a/include/configs

[U-Boot] [PATCH 09/10] arm: vf610: fix double iomux configuration for vf610twr board

2013-09-17 Thread Marcel Ziswiler
Get rid of double VF610_PAD_DDR_A15__DDR_A_15 iomux configuration. Signed-off-by: Marcel Ziswiler --- board/freescale/vf610twr/vf610twr.c |1 - 1 file changed, 1 deletion(-) diff --git a/board/freescale/vf610twr/vf610twr.c b/board/freescale/vf610twr/vf610twr.c index 699ea7f..4ee74c0

[U-Boot] [PATCH 08/10] arm: vf610: add rmii1 iomux definitions

2013-09-17 Thread Marcel Ziswiler
Add secondary RMII1 iomux definitions. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/iomux-vf610.h |9 + 1 file changed, 9 insertions(+) diff --git a/arch/arm/include/asm/arch-vf610/iomux-vf610.h b/arch/arm/include/asm/arch-vf610/iomux-vf610.h index a6f7132

[U-Boot] [PATCH 06/10] arm: vf610: add rmii clkout iomux definition

2013-09-17 Thread Marcel Ziswiler
Add VF610_PAD_PTA6__RMII0_CLKOUT iomux definition eventually required for internal (e.g. crystal-less) Ethernet clocking. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/iomux-vf610.h |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-vf610/iomux

[U-Boot] [PATCH 07/10] arm: vf610: add uart0 tx/rx iomux definitions

2013-09-17 Thread Marcel Ziswiler
Add UART0 aka SCI0 TX/RX iomux definitions. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/iomux-vf610.h |2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/include/asm/arch-vf610/iomux-vf610.h b/arch/arm/include/asm/arch-vf610/iomux-vf610.h index e315fe4

[U-Boot] [PATCH] arm: vf610: initial integration for colibri vf50

2013-09-17 Thread Marcel Ziswiler
ed on early Colibri VF50 prototypes V1.0a booting off SD card (mandatory for initial loading). Loading Linux kernel off SD card or by TFTP. Signed-off-by: Marcel Ziswiler --- board/toradex/colibri_vf50/Makefile | 26 ++ board/toradex/colibri_vf50/colibri_vf50.c |

Re: [U-Boot] [PATCH 01/10] arm: vf610: fix anadig register struct

2013-09-30 Thread Marcel Ziswiler
On 09/17/2013 03:27 PM, Otavio Salvador wrote: I agree with the way to fix it but it is a little bit hard to get it is a 'reserved'; we used reserved_ to make it more explicit. Take a look at http://git.denx.de/?p=u-boot.git;a=blob;f=arch/arm/include/asm/arch-mxs/regs-power-mx28.h;h=9528e3ce9ad

Re: [U-Boot] [PATCH 08/10] arm: vf610: add rmii1 iomux definitions

2013-09-30 Thread Marcel Ziswiler
On 09/22/2013 07:56 AM, Wang Huan-B18965 wrote: -Original Message- From: Marcel Ziswiler [mailto:mar...@ziswiler.com] Sent: Tuesday, September 17, 2013 6:45 PM To: u-boot@lists.denx.de Cc: Wang Huan-B18965; Marcel Ziswiler Subject: [PATCH 08/10] arm: vf610: add rmii1 iomux definitions

[U-Boot] [PATCH v2 03/10] arm: vf610: add uart0 clock definition

2013-09-30 Thread Marcel Ziswiler
Add CCM_CCGR0_UART0_CTRL_MASK clock definition for UART0 aka SCI0. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/crm_regs.h |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-vf610/crm_regs.h b/arch/arm/include/asm/arch-vf610/crm_regs.h index

[U-Boot] [PATCH v2 00/10] arm: vf610/vf610twr: vybrid tower fixes and enhancements

2013-09-30 Thread Marcel Ziswiler
This patch series addresses several fixes and enhancements for the vybrid tower. Tested on a TWR-VF65GS10 Rev G. Changes v2: - Memory offset based reserved ANADIG field naming scheme. - Fixed mux_ctrl_ofs in secondary RMII1 iomux definitions. Marcel Ziswiler (10): arm: vf610: fix anadig

[U-Boot] [PATCH v2 01/10] arm: vf610: fix anadig register struct

2013-09-30 Thread Marcel Ziswiler
tested by temporarily putting the following debug instrumentation into board_init(): struct anadig_reg *anadig = (struct anadig_reg *)ANADIG_BASE_ADDR; printf("&anadig->pll3_ctrl=0x%p\n", &anadig->pll3_ctrl); printf("&anadig->pll5_ctrl=0x%p\n", &a

[U-Boot] [PATCH v2 05/10] arm: vf610: add enet1 base address definition

2013-09-30 Thread Marcel Ziswiler
Add secondary Ethernet MAC RMII1 base address definition in preparation of potential secondary only board configurations. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/imx-regs.h |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-vf610/imx

[U-Boot] [PATCH v2 04/10] arm: vf610: add anadig pll5 definitions

2013-09-30 Thread Marcel Ziswiler
Add ANADIG PLL5 control definitions required for Ethernet RMII clock configuration. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/crm_regs.h |4 1 file changed, 4 insertions(+) diff --git a/arch/arm/include/asm/arch-vf610/crm_regs.h b/arch/arm/include/asm/arch

[U-Boot] [PATCH v2 06/10] arm: vf610: add rmii clkout iomux definition

2013-09-30 Thread Marcel Ziswiler
Add VF610_PAD_PTA6__RMII0_CLKOUT iomux definition eventually required for internal (e.g. crystal-less) Ethernet clocking. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/iomux-vf610.h |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-vf610/iomux

[U-Boot] [PATCH v2 02/10] arm: vf610: clean-up anadig register struct

2013-09-30 Thread Marcel Ziswiler
From: Marcel Ziswiler Rename all the reserved fields using a memory offset based scheme. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/crm_regs.h | 54 ++-- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/arch/arm/include/asm/arch

[U-Boot] [PATCH v2 09/10] arm: vf610: fix double iomux configuration for vf610twr board

2013-09-30 Thread Marcel Ziswiler
Get rid of double VF610_PAD_DDR_A15__DDR_A_15 iomux configuration. Signed-off-by: Marcel Ziswiler --- board/freescale/vf610twr/vf610twr.c |1 - 1 file changed, 1 deletion(-) diff --git a/board/freescale/vf610twr/vf610twr.c b/board/freescale/vf610twr/vf610twr.c index 699ea7f..4ee74c0

[U-Boot] [PATCH v2 10/10] arm: vf610: remove obsolete uart port configuration

2013-09-30 Thread Marcel Ziswiler
Get rid of obsolete CONFIG_SYS_UART_PORT configuration option. Signed-off-by: Marcel Ziswiler --- include/configs/vf610twr.h |1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/vf610twr.h b/include/configs/vf610twr.h index 5a7a066..432a69d 100644 --- a/include/configs

[U-Boot] [PATCH v2 08/10] arm: vf610: add rmii1 iomux definitions

2013-09-30 Thread Marcel Ziswiler
From: Marcel Ziswiler Add secondary RMII1 iomux definitions now with correct mux_ctrl_ofs as well. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/iomux-vf610.h |9 + 1 file changed, 9 insertions(+) diff --git a/arch/arm/include/asm/arch-vf610/iomux-vf610.h b

[U-Boot] [PATCH v2 07/10] arm: vf610: add uart0 tx/rx iomux definitions

2013-09-30 Thread Marcel Ziswiler
Add UART0 aka SCI0 TX/RX iomux definitions. Signed-off-by: Marcel Ziswiler --- arch/arm/include/asm/arch-vf610/iomux-vf610.h |2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/include/asm/arch-vf610/iomux-vf610.h b/arch/arm/include/asm/arch-vf610/iomux-vf610.h index e315fe4

[U-Boot] [PATCH v2] arm: vf610: initial integration for colibri vf50

2013-09-30 Thread Marcel Ziswiler
Mathieu Poirier Active arm armv7 u8500 st-ericsson u8500 u8500_href -

Re: [U-Boot] NAND bad environment block handling

2009-01-08 Thread Marcel Ziswiler
Scott Wood freescale.com> writes: > On Thu, Jan 08, 2009 at 07:19:29AM -0800, Frans Meulenbroeks wrote: > > Is there a solution for this? (obviously I am not considering the > > situation for a single system, where I just would relocate the > > environment block; this concerns a production situat

Re: [U-Boot] [U-Boot, RESEND, v5] mtd/nand/ubi: assortment of alignment fixes

2015-08-13 Thread Marcel Ziswiler
On Wed, 2015-08-12 at 15:43 -0400, Tom Rini wrote: > On Wed, Aug 05, 2015 at 05:17:04PM +0200, Marcel Ziswiler wrote: > > > From: Marcel Ziswiler > > > > Various U-Boot adoptions/extensions to MTD/NAND/UBI did not take > > buffer > > alignment into

[U-Boot] [PATCH v6] mtd/nand/ubi: assortment of alignment fixes

2015-08-13 Thread Marcel Ziswiler
From: Marcel Ziswiler Various U-Boot adoptions/extensions to MTD/NAND/UBI did not take buffer alignment into account which led to failures of the following form: ERROR: v7_dcache_inval_range - start address is not aligned - 0x1f7f0108 ERROR: v7_dcache_inval_range - stop address is not aligned

Re: [U-Boot] [RESEND PATCH] common/lcd_console: fix console/logo regression

2015-08-13 Thread Marcel Ziswiler
On Sun, 2015-08-09 at 09:07 -0600, Simon Glass wrote: > Acked-by: Simon Glass Thanks, Simon. Could any of you guys please pull that one in or how do we proceed? ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2 0/6] net: Move e1000 driver to driver model and Kconfig

2015-08-13 Thread Marcel Ziswiler
er model conversion > net: e1000: Convert to driver model > net: e1000: Add Kconfig options > Tidy up some defconfig files > net: Move CONFIG_E1000 options to Kconfig Signed-off-by: Marcel Ziswiler Tested-by: Marcel Ziswiler Tested-on: Apalis T30 2GB on Apalis Evaluation Board

Re: [U-Boot] [PATCH] i2c: adding driver for pxa27x, pxa3xx, pxa25x

2015-08-17 Thread Marcel Ziswiler
and I'll try to find some time to update! Apart from the missing commit message. Signed-off-by: Marcel Ziswiler Tested-by: Marcel Ziswiler Tested-on: Colibri PXA270 V1.2C, V1.2D, V2.2B, V2.4A on Colibri Evaluation Board V3.1A Note: While power I2C works on the older V1.2C version it does not

Re: [U-Boot] [PATCH] i2c: adding driver for pxa27x, pxa3xx, pxa25x

2015-08-17 Thread Marcel Ziswiler
On Sun, 2015-08-16 at 02:57 +0200, Marek Vasut wrote: > > Apart from the missing commit message. > > > > Signed-off-by: Marcel Ziswiler > > I think you're misunderstanding the meaning of a SoB line here, the > SoB > line is a certificate of origin. You d

Re: [U-Boot] [PATCH V2 4/5] dm9000: dm9000_initialize stub

2015-08-17 Thread Marcel Ziswiler
ave any SROM so this should be defined to 0 instead. > #define CONFIG_NET_RETRY_COUNT 10 Otherwise for the whole series. Signed-off-by: Marcel Ziswiler Tested-by: Marcel Ziswiler Tested-on: Colibri PXA270 V1.2C, V1.2D, V2.2B, V2.4A on Colibri Evaluation Board V3.1A Note: I only

Re: [U-Boot] [PATCH V2 4/5] dm9000: dm9000_initialize stub

2015-08-17 Thread Marcel Ziswiler
On Sun, 2015-08-16 at 02:51 +0200, Marcel Ziswiler wrote: > On Wed, 2015-08-12 at 12:24 -0500, Andrew Ruder wrote: > > Just one nitty-gritty detail: > > > diff --git a/include/configs/colibri_pxa270.h > > b/include/configs/colibri_pxa270.h > > index e3f0ab0..e7

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