[U-Boot] [PATCH] integrator: stop calling pci_init() twice

2012-01-21 Thread Linus Walleij
The U-Boot startup infrastructure already makes sure pci_init() is called at a proper time, calling it again from within the board setup code will not make things better. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/integrator.c |3 --- 1 files changed, 0

[U-Boot] [PATCH] integrator: rewrite the AP PCI driver

2012-01-30 Thread Linus Walleij
the v3_[read|write][lwb]() accessors. - Enable PCI by default in the AP board configuration. - Fix checkpatch warnings and make code more conformant. Tested-by: Will Deacon will.dea...@arm.com Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/pci.c| 582

[U-Boot] [PATCH] integrator: rewrite the AP PCI driver

2012-01-30 Thread Linus Walleij
the v3_[read|write][lwb]() accessors. - Enable PCI by default in the AP board configuration. - Fix checkpatch warnings and make code more conformant. Tested-by: Will Deacon will.dea...@arm.com Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/pci.c| 582

[U-Boot] [PATCH] integrator: update the Integrator/CP config

2012-01-31 Thread Linus Walleij
-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs/integratorcp.h | 47 +++ 1 files changed, 13 insertions(+), 34 deletions(-) diff --git a/include/configs/integratorcp.h b/include/configs/integratorcp.h index ccbdf44..57610a6 100644

[U-Boot] Please pick up pending Integrator patches

2012-02-08 Thread Linus Walleij
Hi Albert, could you have a look at these patches and possibly pick them up for ARM Integrator: http://patchwork.ozlabs.org/patch/137216/ http://patchwork.ozlabs.org/patch/138669/ http://patchwork.ozlabs.org/patch/138869/ Thanks, Linus Walleij ___ U

[U-Boot] [PATCH v3] integrator: pass a Device Tree by default

2013-03-13 Thread Linus Walleij
This, enabled the FDT library for the Integrators, updates the Integrator/CP default command to load and pass a Device Tree when booting the kernel from the on-board ethernet, define same environment for the Integrator/AP and move the load address around to something even. Signed-off-by: Linus

Re: [U-Boot] [PATCH v3] integrator: pass a Device Tree by default

2013-03-13 Thread Linus Walleij
and integratorcp.h are now configured so differently? Yes, the Integrator/CP has an ethernet adapter (SMSC91x) that we know will always be available and preferred boot path. The Integrator/AP has an optional Ethernet PCI card, but we cannot rely on that always being present. Thanks, Linus Walleij

Re: [U-Boot] [PATCH v2] integrator: break out common config

2012-08-21 Thread Linus Walleij
On Sat, Aug 4, 2012 at 5:21 PM, Linus Walleij linus.wall...@linaro.org wrote: The configuration that is common for all Integrator boards may just as well be stored in a common include file as per pattern from other boards. This eases maintenance quite a bit. Signed-off-by: Linus Walleij

Re: [U-Boot] [PATCH v2] integrator: break out common config

2012-08-27 Thread Linus Walleij
On Tue, Aug 21, 2012 at 2:59 PM, Linus Walleij linus.wall...@linaro.org wrote: On Sat, Aug 4, 2012 at 5:21 PM, Linus Walleij linus.wall...@linaro.org wrote: The configuration that is common for all Integrator boards may just as well be stored in a common include file as per pattern from

Re: [U-Boot] [PATCH v2] integrator: break out common config

2012-08-27 Thread Linus Walleij
On Mon, Aug 27, 2012 at 12:14 PM, Tom Rini tr...@ti.com wrote: On Mon, Aug 27, 2012 at 11:30:52AM -0700, Linus Walleij wrote: On Tue, Aug 21, 2012 at 2:59 PM, Linus Walleij linus.wall...@linaro.org wrote: On Sat, Aug 4, 2012 at 5:21 PM, Linus Walleij linus.wall...@linaro.org wrote

Re: [U-Boot] Integrator PCI base dilemma

2013-03-22 Thread Linus Walleij
, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Integrator PCI base dilemma

2013-03-22 Thread Linus Walleij
On Fri, Mar 22, 2013 at 10:13 PM, Wolfgang Denk w...@denx.de wrote: Dear Linus Walleij, In message cacrpkdb5q+etm0ggalfnuj1a12zvrcyuxzrvfeopch4-pvu...@mail.gmail.com you wrote: I'm on U-boot for this thing, I wonder if that can do x86 emulation to initialize VGA card. I guess I'm about

[U-Boot] [PATCH] biosemu: include asm/io.h header

2013-04-02 Thread Linus Walleij
emulator will compile on ARM systems. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- drivers/bios_emulator/besys.c | 2 ++ drivers/bios_emulator/bios.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/drivers/bios_emulator/besys.c b/drivers/bios_emulator/besys.c index 84724b7

Re: [U-Boot] [PATCH] biosemu: include asm/io.h header

2013-04-02 Thread Linus Walleij
here: http://marc.info/?l=linux-arm-kernelm=136399798826572w=2 I am looking into getting biosemu up on ARM for the PCI-equipped ARM boards, but admittedly I have no idea where it'll go. But this can surely wait until I have a series that can be run as well. Yours, Linus Walleij

Re: [U-Boot] [PATCH] biosemu: include asm/io.h header

2013-04-03 Thread Linus Walleij
biosemu to be working to initialize it. More people will run into the same issue definately, especially with ARM servers and such things using PCI starting to appear. Yours, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de

[U-Boot] [PATCH] integrator: enable device tree

2013-04-03 Thread Linus Walleij
This enables the device tree library on the Integrator platforms so we can pass a device tree when booting. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs/integrator-common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/integrator-common.h b

Re: [U-Boot] [PATCH] biosemu: include asm/io.h header

2013-04-03 Thread Linus Walleij
On Thu, Apr 4, 2013 at 12:05 AM, Tom Rini tr...@ti.com wrote: On Wed, Apr 03, 2013 at 07:07:00PM +0200, Linus Walleij wrote: Yes the Integrator has PCI support since ages, and I do have a VGA card mounted in one of the slots ... the only issue is that I need biosemu to be working

Re: [U-Boot] [PATCH] integrator: enable device tree

2013-04-11 Thread Linus Walleij
On Thu, Apr 4, 2013 at 7:19 AM, Linus Walleij linus.wall...@linaro.org wrote: This enables the device tree library on the Integrator platforms so we can pass a device tree when booting. Signed-off-by: Linus Walleij linus.wall...@linaro.org Tom, is this patch OK, if so coul you perhaps pick

Re: [U-Boot] [PATCH] integrator: break out common config

2012-07-23 Thread Linus Walleij
On Wed, Jun 13, 2012 at 3:37 PM, Linus Walleij linus.wall...@linaro.org wrote: On Tue, May 22, 2012 at 10:53 PM, Linus Walleij linus.wall...@linaro.org wrote: The configuration that is common for all Integrator boards may just as well be stored in a common include file as per pattern from

Re: [U-Boot] [PATCH] integrator: break out common config

2012-08-04 Thread Linus Walleij
On Sun, Jul 29, 2012 at 11:23 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: On Sun, 29 Jul 2012 11:14:34 +0200, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hi Linus, On Mon, 23 Jul 2012 12:35:05 +0200, Linus Walleij linus.wall...@linaro.org wrote: On Wed, Jun 13, 2012 at 3:37

[U-Boot] [PATCH v2] integrator: break out common config

2012-08-04 Thread Linus Walleij
The configuration that is common for all Integrator boards may just as well be stored in a common include file as per pattern from other boards. This eases maintenance quite a bit. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- ChangeLog v1-v2: - Rebase to latest U-Boot master

Re: [U-Boot] [PATCH 01/11 v2] snowball: Add support for ux500 based snowball board

2012-08-07 Thread Linus Walleij
On Fri, Aug 3, 2012 at 11:05 PM, mathieu.poir...@linaro.org wrote: From: Mathieu J. Poirier mathieu.poir...@linaro.org Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org Acked-by: Linus Walleij linus.wall...@linaro.org For this entire

[U-Boot] [PATCH] integrator: pass a Device Tree by default

2013-01-19 Thread Linus Walleij
This, enabled the FDT library for the Integrators, updates the Integrator/CP default command to load and pass a Device Tree when booting the kernel from the on-board ethernet, define same environment for the Integrator/AP and move the load address around to something even. Signed-off-by: Linus

Re: [U-Boot] [PATCH] integrator: pass a Device Tree by default

2013-01-22 Thread Linus Walleij
On Sun, Jan 20, 2013 at 1:53 AM, Marek Vasut ma...@denx.de wrote: Dear Linus Walleij, This, enabled the FDT library for the Integrators, updates the Integrator/CP default command to load and pass a Device Tree when booting the kernel from the on-board ethernet, define same environment

Re: [U-Boot] [PATCH] integrator: pass a Device Tree by default

2013-01-22 Thread Linus Walleij
it a sane one ;) OK but 0x7fc0 was the load address for the kernel, so I was sort of wondering what a typical place to load the kernel would be, because 0x7fc0 seems quite arbitrarily chosen... Yours, Linus Walleij ___ U-Boot mailing list U-Boot

[U-Boot] [PATCH v2] integrator: pass a Device Tree by default

2013-01-24 Thread Linus Walleij
This, enabled the FDT library for the Integrators, updates the Integrator/CP default command to load and pass a Device Tree when booting the kernel from the on-board ethernet, define same environment for the Integrator/AP and move the load address around to something even. Signed-off-by: Linus

[U-Boot] [PATCH] integrator: break out common config

2012-05-22 Thread Linus Walleij
The configuration that is common for all Integrator boards may just as well be stored in a common include file as per pattern from other boards. This eases maintenance quite a bit. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs/integrator-common.h | 114

Re: [U-Boot] [PATCH] integrator: break out common config

2012-06-13 Thread Linus Walleij
On Tue, May 22, 2012 at 10:53 PM, Linus Walleij linus.wall...@linaro.org wrote: The configuration that is common for all Integrator boards may just as well be stored in a common include file as per pattern from other boards. This eases maintenance quite a bit. Signed-off-by: Linus Walleij

Re: [U-Boot] [PATCH v2 3/3] image: Allow images to indicate they're loadable at any address

2011-12-10 Thread Linus Walleij
USE_OF \ --enable ARM_APPENDED_DTB \ --enable ARM_ATAG_DTB_COMPAT \ --enable PROC_DEVICETREE \ --set-str ARM_APPENDED_DTB_FILE my-device-tree.dtb Yours, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] [PATCH v2 3/3] image: Allow images to indicate they're loadable at any address

2011-12-10 Thread Linus Walleij
, but if you don't like them, they can be changed. Thanks, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 2/4] integratorap: support relocation

2011-07-12 Thread Linus Walleij
The integrator board was apparently never converted over to support relocation until now. After this the integrator u-boot both compiles and boots on the Integrator AP. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/integrator.c | 14 -- 1 files

[U-Boot] [PATCH 3/4] integrator: support the hush shell

2011-07-12 Thread Linus Walleij
Give us some kind of sane shell environment so the bootloader can be used. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs/integratorap.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/integratorap.h b/include/configs

[U-Boot] [PATCH 4/4] integrator: support some rudimentary commands

2011-07-12 Thread Linus Walleij
This adds support for a subset of the default commands for the Integrator, however since the card does not have Ethernet (unless you plug in a PCI card) we can not use the default command set. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs/integratorap.h |6

[U-Boot] [PATCH 1/4] integratorap: make the compile work again

2011-07-12 Thread Linus Walleij
The integratorap/cp config for u-boot was outdated and would not even compile, so fix the obvious missing bits for it to start building. After this make ap920t_config/make all starts working again. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/lowlevel_init.S

[U-Boot] [PATCH] tools: build some commands without -pedantic

2011-07-12 Thread Linus Walleij
On this GCC in Fedora (4.6.0 20110530) the tools gen_eth_addr and img2srec become size zero if compiled with -pedantic (no warnings are emitted however). Marking them _NOPED solves the issue for me. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- tools/Makefile |6 +++--- 1 files

Re: [U-Boot] [PATCH] tools: build some commands without -pedantic

2011-07-12 Thread Linus Walleij
On Tue, Jul 12, 2011 at 1:58 PM, Wolfgang Denk w...@denx.de wrote: Dear Linus Walleij, In message 1310469889-12999-1-git-send-email-linus.wall...@linaro.org you wrote: On this GCC in Fedora (4.6.0 20110530) the tools gen_eth_addr and img2srec become size zero if compiled with -pedantic

Re: [U-Boot] [PATCH] tools: build some commands without -pedantic

2011-07-12 Thread Linus Walleij
On Tue, Jul 12, 2011 at 5:49 PM, Mike Frysinger vap...@gentoo.org wrote: On Tue, Jul 12, 2011 at 11:24, Linus Walleij wrote: I do this, first I apply the patches I sent for Integrator support, then I apply this patch to test with network support: no changes at all should be necessary

Re: [U-Boot] [PATCH] tools: build some commands without -pedantic

2011-07-12 Thread Linus Walleij
think so, but nowadays it's apparently in the Fedora development tools groupinstall. Removing the package and spawning a new shell indeed solves the problem, like I guess deleting the ccache database would. Thanks Mike! I wonder if we could autodetect this so noone else runs into it? Linus

Re: [U-Boot] [PATCH] tools: build some commands without -pedantic

2011-07-12 Thread Linus Walleij
(like corrupt data) on your system lately? Yep it's a laptop, it boots from a USB drive, sometimes I even drop the drive and disconnect it in transit so data corruption is happening every day. I removed ccache since I don't trust it anymore, sorry about the fuzz. Thanks Wolfgang, Linus Walleij

[U-Boot] [PATCH 1/2] integratorap: disable dcache

2011-07-13 Thread Linus Walleij
: 01fef8b0 r1 : r0 : fffe Flags: Nzcv IRQs off FIQs off Mode SVC_32 Resetting CPU ... Disabling D-cache brings the board support to a working state that can boot the Linux kernel. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs/integratorap.h |1 + 1

[U-Boot] [PATCH 2/2] integratorap: fixup SDRAM memory size detection

2011-07-13 Thread Linus Walleij
This fixes up the SDRAM memory detection code to work with the latest relocation code, moves it all into dram_init() and activates memory size detection for the Integrator AP. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/integrator.c | 17

[U-Boot] [PATCH] integratorap: remove hardcoded 32MB memory cmdline

2011-07-14 Thread Linus Walleij
The default configuration for the Integrator AP forces memory to be 32 MB on the command line to the kernel, while we have perfect information and detection of the actual memory size in the ATAGs. Delete the confusion. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs

Re: [U-Boot] [PATCH 1/2] integratorap: disable dcache

2011-07-14 Thread Linus Walleij
hints on how to go about flushing and disabling the D-cache in bootm for ARM920T? It doesn't seem to work on this ARM CPU chip in its current form... Yours, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u

Re: [U-Boot] [PATCH] integratorap: remove hardcoded 32MB memory cmdline

2011-07-14 Thread Linus Walleij
and/or Philippe's ACK. Thanks, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/2] integratorap: disable dcache

2011-07-15 Thread Linus Walleij
I have to use on this board that has no ethernet) then does the bootm command work? Thanks, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] integratorap: remove hardcoded 32MB memory cmdline

2011-07-15 Thread Linus Walleij
On Thu, Jul 14, 2011 at 8:03 PM, Linus Walleij linus.wall...@linaro.org wrote: On Thu, Jul 14, 2011 at 1:44 PM, Wolfgang Denk w...@denx.de wrote: --- a/include/configs/integratorap.h +++ b/include/configs/integratorap.h Please make sure to Cc: the board maintainer! Aw yes, that's one thing

Re: [U-Boot] [PATCH 14/52] ARM: remove broken integratorap board

2011-07-17 Thread Linus Walleij
As mentioned I'm assuming maintainership for the integratorap, patch is on the list since two days or so. Thanks, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [GIT PULL] integratorap patches

2011-07-17 Thread Linus Walleij
: powerpc/85xx: Add default usb mode and phy type to hwconfig (2011-07-11 13:24:21 -0500) are available in the git repository at: git://git.linaro.org/people/triad/u-boot for-albert Linus Walleij (7): MAINTAINERS: integrator+versatile boards integratorap: make the compile work again

Re: [U-Boot] [PATCH RESEND v2] armv7: Disable D cache for goni target (s5p)

2011-07-18 Thread Linus Walleij
to preserve this state. I had exactly the same rationale for disabling cache on the Integrator - it used to be off now it's default on and doesn't work - but that patch was NAK:ed by Wolfgang. BTW: what CPU is there in the S5P? Linus Walleij ___ U-Boot mailing

Re: [U-Boot] [PATCH 14/52] ARM: remove broken integratorap board

2011-07-18 Thread Linus Walleij
like. Thanks, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] integrator: convert to new build system

2011-07-19 Thread Linus Walleij
. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- This patch goes on top of the previous git pull request and fix the final request from Wolfgang to convert the Integrator boards over to the new build system. --- MAKEALL | 22 --- Makefile

Re: [U-Boot] [PATCH] integrator: convert to new build system

2011-07-20 Thread Linus Walleij
configure options being passed in it seemed like the only way forward without revamping the build system. Hacking Makefile to support several boards using the same *_config seems pretty daunting, but if this is what you want I can try. Any hints? Yours, Linus Walleij

[U-Boot] [PATCH] integratorcp: make the board compile

2011-07-20 Thread Linus Walleij
This defines the requires CONFIG_SYS_* variables to make the Integrator CP board compile. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- This complements the other Integrator patches so that the CP variants also build cleanly with the new build system. --- include/configs

[U-Boot] [PATCH v2] MAINTAINERS: integrator+versatile boards

2011-07-20 Thread Linus Walleij
- Take maintainership of the unlisted integratorap, and the integratorcp boards - Orphan the versatile maintained by Peter Pearse, as he has retired from ARM Cc: Philippe Robin philippe.ro...@arm.com Signed-off-by: Linus Walleij linus.wall...@linaro.org --- Changes v1-v2: take care also

Re: [U-Boot] [PATCH] integrator: rewrite the AP PCI driver

2012-02-19 Thread Linus Walleij
by enabling CONFIG_PCI. Yours, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] pci: move pciauto_config_init() to pci.h

2012-03-03 Thread Linus Walleij
error in the Integrator and getting rid of the local declarations here and there. Reported-by: Wolfgang Denk w...@denx.de Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/esd/cpci750/pci.c|1 - board/prodrive/p3mx/pci.c |1 - drivers/pci/fsl_pci_init.c |1 - drivers

[U-Boot] [PATCH] integrator: remove fragile delay loop from PCI code

2012-03-03 Thread Linus Walleij
-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/pci.c |7 ++- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/board/armltd/integrator/pci.c b/board/armltd/integrator/pci.c index f040450..8ff88fe 100644 --- a/board/armltd/integrator/pci.c +++ b/board/armltd

Re: [U-Boot] [PATCH] integrator: rewrite the AP PCI driver

2012-03-03 Thread Linus Walleij
more conformant. Tested-by: Will Deacon will.dea...@arm.com Signed-off-by: Linus Walleij linus.wall...@linaro.org This commit causes build warnings on a number of boards, for example: Configuring for integratorap_cm926ejs - Board: integratorap, Options: CM926EJ_S pci.c: In function

Re: [U-Boot] [PATCH] ARM: Fix malloc area size for versatile and integrator

2012-03-18 Thread Linus Walleij
On Sat, Mar 17, 2012 at 3:41 AM, Marek Vasut ma...@denx.de wrote: These boards couldn't save their environment because they couldn't malloc() the whole size of the sector. Signed-off-by: Marek Vasut ma...@denx.de Cc: Linus Walleij linus.wall...@linaro.org Acked-by: Linus Walleij linus.wall

[U-Boot] [PATCH 2/2] pci: declare pciauto functions in header

2012-03-25 Thread Linus Walleij
The FSL PCI driver uses local prototypes for pciauto_[pre|post]scan_setup_bridge(), this does not seem right, so move them to the pci.h file. Fixed a small extern declaration too, this is harmless but distracts the view since all other prototypes are explicitly external. Signed-off-by: Linus

[U-Boot] [PATCH 1/2] pci: get rid of local prototypes

2012-03-25 Thread Linus Walleij
two boards were redeclaring pciauto_region_allocate() in their local scope for no obvious reason, the function is in pci.h anyway, this is probably just copying artifacts and old cruft. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/esd/cpci750/pci.c |4 board

[U-Boot] [PATCH] ARM: versatile: delete split_by_variant.sh

2011-09-11 Thread Linus Walleij
Since commit d388298a59ba375c76597b8f95b560afa971a0fb by Stefano Babic this file is no longer needed so delete it. Cc: Stefano Babic sba...@denx.de Cc: Loïc Minier loic.min...@linaro.org Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/versatile/split_by_variant.sh | 42

[U-Boot] [PATCH 1/5 v1] integrator: pass configs for core modules

2011-09-18 Thread Linus Walleij
Alter the board.cfg to pass core module configuration flags so we can make compile-time switches for different core modules. These are already in use for some low-level code, they just got lost in the conversion to the new build system. Signed-off-by: Linus Walleij linus.wall...@linaro.org

[U-Boot] [PATCH 2/5 v1] integrator: move text offset to config

2011-09-18 Thread Linus Walleij
Do away with the config.mk file and move the text offset to the config files to make things easier. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/config.mk |5 - include/configs/integratorap.h|1 + include/configs/integratorcp.h|1 + 3

[U-Boot] [PATCH 3/5 v1] integrator: do not test first part of the memory

2011-09-18 Thread Linus Walleij
memory instead. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/integrator.c | 19 +++ 1 files changed, 15 insertions(+), 4 deletions(-) diff --git a/board/armltd/integrator/integrator.c b/board/armltd/integrator/integrator.c index c8d2bc7

[U-Boot] [PATCH 4/5 v1] integrator: use io-accessors for board init

2011-09-18 Thread Linus Walleij
Casting around to *(volatile ulong *) doesn't look good, so include the asm/io.h macros and use good old readl() instead. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/integrator.c |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git

[U-Boot] [PATCH 5/5 v1] integrator: make flash writeable on boot

2011-09-18 Thread Linus Walleij
use the EBI, we create a header file for its registers. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/integrator.c | 15 include/arm-ebi.h| 62 ++ 2 files changed, 77 insertions(+), 0 deletions

Re: [U-Boot] [PATCH 5/5 v1] integrator: make flash writeable on boot

2011-09-19 Thread Linus Walleij
cycles to the flash address space, so it is necessary that the memory controller setup allows write cycles on the bus. Yes that is exactly what happens. The integrator has some gate to disallow any write cycles to CFI unless it's unlocked through the EBI. Yours, Linus Walleij

Re: [U-Boot] [PATCH 5/5 v1] integrator: make flash writeable on boot

2011-09-19 Thread Linus Walleij
On Sun, Sep 18, 2011 at 10:26 AM, Mike Frysinger vap...@gentoo.org wrote: On Sunday, September 18, 2011 03:52:58 Linus Walleij wrote:  board/armltd/integrator/integrator.c |   15  include/arm-ebi.h                    |   62 ++ 2 files changed, 77

[U-Boot] [PATCH 5/6 v2] integrator: make flash writeable on boot

2011-09-19 Thread Linus Walleij
use the EBI, we create a header file for its registers. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- ChangeLog v1-v2: - Moved the arm-ebi.h file from the global include/ dir to the board/armltd/integrator/ dir since it's only needed by the Integrator. --- board/armltd/integrator/arm

Re: [U-Boot] [PATCH 1/5 v1] integrator: pass configs for core modules

2011-09-21 Thread Linus Walleij
://patchwork.ozlabs.org/patch/115296/ Thanks, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] net: dc2114x: check for apropriate command

2011-09-26 Thread Linus Walleij
The code had two paths depending on whether the card was to be accessed from plain memory or the IO region. However the error path checks whether IO region was obtained - twice. Fix up the error path according to the probable intention. Signed-off-by: Linus Walleij linus.wall...@linaro.org

[U-Boot] [PATCH] serial: pl01x: drain PL01x FIFO before baudrate change

2011-10-02 Thread Linus Walleij
Not draining the FIFO and waiting for the UART to be non-busy before changing baudrate results in crap characters on the console, so let's wait for the FIFO to drain and the last character to be clocked out before we do that. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- drivers

[U-Boot] [PATCH 0/2] integrator: flash support

2011-10-05 Thread Linus Walleij
The U-Boot seems to always have been started from RAM on the Integrator, probably using the boot monitor. When executing U-Boot directly from flash, some things are not properly set up, so we need to add these to U-Boot. This builds on top of the earlier submitted Integrator patches. Linus

[U-Boot] [PATCH 1/2 v1] integrator: add system controller header

2011-10-05 Thread Linus Walleij
Break out the AP system controller and CP CP controller registers into a header file, it gives better overview than hardcoding its values and other disturbing practices. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/integrator-sc.h | 91

[U-Boot] [PATCH 2/2 v1] integrator: enable Vpp and disable flash protection

2011-10-05 Thread Linus Walleij
This enables Vpp and disables the flash protection on the Integrator when starting U-Boot. The integrator/AP has double protection mechanisms: this one and the EBI protection bit (patch earlier), the Integrator/CP has only one line of protection in these registers. Signed-off-by: Linus Walleij

Re: [U-Boot] [PATCH 1/5 v1] integrator: pass configs for core modules

2011-10-09 Thread Linus Walleij
On Wed, Sep 21, 2011 at 1:00 PM, Linus Walleij linus.wall...@linaro.org wrote: Albert do you want this series through patchwork or through a git pull request? Ping on this... I'm happy to help. The patchwork entries are here: http://patchwork.ozlabs.org/patch/115217/ http

Re: [U-Boot] [PATCH] integrator: convert to new build system

2011-07-21 Thread Linus Walleij
, else it uses the board name, new patch in a few minutes. Thanks, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v2] integrator: convert to new build system

2011-07-21 Thread Linus Walleij
. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- Changes v1-v2: provide one config file per board variant intead of a plethora. --- MAKEALL | 22 --- Makefile| 27 arch/arm/cpu/arm720t/cpu.c

Re: [U-Boot] [GIT PULL] integratorap patches

2011-07-22 Thread Linus Walleij
://git.linaro.org/people/triad/u-boot for-albert Linus Walleij (9): MAINTAINERS: integrator+versatile boards integratorap: make the compile work again integratorap: support relocation integratorap: support the hush shell integratorap: support some rudimentary commands

[U-Boot] [PATCH 0/9] Integrator patches

2011-07-23 Thread Linus Walleij
Reposting the entire series since I changed the Subject: on [3/9] and [4/9] and removed one TAB character in [6/9]. Easiest way to avoid the mess... Linus Walleij (9): MAINTAINERS: integrator+versatile boards integratorap: make the compile work again integratorap: support relocation

[U-Boot] [PATCH 2/9 v3] integratorap: make the compile work again

2011-07-23 Thread Linus Walleij
The integratorap/cp config for u-boot was outdated and would not even compile, so fix the obvious missing bits for it to start building. After this make ap920t_config/make all starts working again. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/lowlevel_init.S

[U-Boot] [PATCH 1/9 v3] MAINTAINERS: integrator+versatile boards

2011-07-23 Thread Linus Walleij
- Take maintainership of the unlisted integratorap, and the integratorcp boards - Orphan the versatile maintained by Peter Pearse, as he has retired from ARM Cc: Philippe Robin philippe.ro...@arm.com Signed-off-by: Linus Walleij linus.wall...@linaro.org --- MAINTAINERS | 11 ++- 1

[U-Boot] [PATCH 3/9 v3] integratorap: support relocation

2011-07-23 Thread Linus Walleij
The integrator board was apparently never converted over to support relocation until now. After this the integrator u-boot both compiles and boots on the Integrator AP. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/integrator.c | 14 -- 1 files

[U-Boot] [PATCH 4/9 v3] integratorap: support the hush shell

2011-07-23 Thread Linus Walleij
Give us some kind of sane shell environment so the bootloader can be used. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs/integratorap.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/integratorap.h b/include/configs

[U-Boot] [PATCH 5/9 v3] integratorap: support some rudimentary commands

2011-07-23 Thread Linus Walleij
This adds support for a subset of the default commands for the Integrator, however since the card does not have Ethernet (unless you plug in a PCI card) we can not use the default command set. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs/integratorap.h |6

[U-Boot] [PATCH 6/9 v3] integratorap: fixup SDRAM memory size detection

2011-07-23 Thread Linus Walleij
This fixes up the SDRAM memory detection code to work with the latest relocation code, moves it all into dram_init() and activates memory size detection for the Integrator AP. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/integrator.c | 17

[U-Boot] [PATCH 7/9 v3] integratorap: remove hardcoded 32MB memory cmdline

2011-07-23 Thread Linus Walleij
The default configuration for the Integrator AP forces memory to be 32 MB on the command line to the kernel, while we have perfect information and detection of the actual memory size in the ATAGs. Delete the confusion. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs

[U-Boot] [PATCH 8/9 v3] integratorcp: make the board compile

2011-07-23 Thread Linus Walleij
This defines the requires CONFIG_SYS_* variables to make the Integrator CP board compile. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- include/configs/integratorcp.h |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/include/configs/integratorcp.h b

[U-Boot] [PATCH 9/9 v3] integrator: convert to new build system

2011-07-23 Thread Linus Walleij
. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- MAKEALL | 22 --- Makefile| 27 arch/arm/cpu/arm720t/cpu.c |5 - board/armltd/integrator/split_by_variant.sh | 220

Re: [U-Boot] [GIT PULL] integratorap patches

2011-07-23 Thread Linus Walleij
://patchwork.ozlabs.org/patch/105593/ http://patchwork.ozlabs.org/patch/106013/ I'll provide new links to the patchwork repost soon. Thanks! Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [GIT PULL] integratorap patches

2011-07-23 Thread Linus Walleij
://patchwork.ozlabs.org/patch/106470/ Thanks, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 0/9] Integrator patches

2011-07-23 Thread Linus Walleij
://patchwork.ozlabs.org/patch/104661/ http://patchwork.ozlabs.org/patch/105593/ http://patchwork.ozlabs.org/patch/106013/ Has the same semantic content and is just v1, v2 pathes except for that one patch, 106467. Thanks, Linus Walleij ___ U-Boot mailing list U-Boot

Re: [U-Boot] [PATCH 1/9 v3] MAINTAINERS: integrator+versatile boards

2011-07-25 Thread Linus Walleij
just moved the lines here. I can repost a v4 with just one line. Thanks, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 3/9 v3] integratorap: support relocation

2011-07-25 Thread Linus Walleij
;   You're using spaces instead of tab here... Oh man. I'll fix up. I re-ran all patches through checkpatch and this one seems to be the only one remaining with the problem, luckily. Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de

Re: [U-Boot] [PATCH 3/9 v3] integratorap: support relocation

2011-07-25 Thread Linus Walleij
On Mon, Jul 25, 2011 at 1:22 PM, Linus Walleij linus.wall...@linaro.org wrote: On Mon, Jul 25, 2011 at 12:46 PM, Sergei Shtylyov sshtyl...@mvista.com wrote: -int dram_init (void) +void dram_init_banksize(void)  {        gd-bd-bi_dram[0].start = PHYS_SDRAM_1; -       gd-bd-bi_dram[0].size

[U-Boot] [PATCH 0/8] integrator patches v4

2011-07-25 Thread Linus Walleij
the mergeability of each patch, if you need any more information, please tell me! Linus Walleij (8): MAINTAINERS: integrator+versatile boards integratorap: make the compile work again integratorap: support relocation integratorap: support the hush shell integratorap: support some

[U-Boot] [PATCH 1/8 v4] MAINTAINERS: integrator+versatile boards

2011-07-25 Thread Linus Walleij
- Take maintainership of the unlisted integratorap, and the integratorcp boards - Orphan the versatile maintained by Peter Pearse, as he has retired from ARM Cc: Philippe Robin philippe.ro...@arm.com Signed-off-by: Linus Walleij linus.wall...@linaro.org --- MAINTAINERS | 10 +- 1

[U-Boot] [PATCH 2/8 v4] integratorap: make the compile work again

2011-07-25 Thread Linus Walleij
The integratorap/cp config for u-boot was outdated and would not even compile, so fix the obvious missing bits for it to start building. After this make ap920t_config/make all starts working again. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/integrator/lowlevel_init.S

[U-Boot] [PATCH 3/8 v4] integratorap: support relocation

2011-07-25 Thread Linus Walleij
The integrator board was apparently never converted over to support relocation until now. After this the integrator u-boot both compiles and boots on the Integrator AP. This also fixes the SDRAM memory size detection. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd

  1   2   3   4   >