We are introducing a new unified board setup and we want this to
be the default. So we need to opt all architectures out first.
Signed-off-by: Simon Glass
---
README|5 +
arch/arm/config.mk|3 +++
arch/avr32/config.mk |3 +++
arch/blackfin/config.
Create a separate header file for link symbols defined by the link
scripts. It is helpful to have these all in one place and try to
make them common across architectures.
Signed-off-by: Simon Glass
---
include/asm-generic/link_symbols.h | 38
1 files change
Add a library to hold ARM assembler code which is generic across all
ARM CPUs.
Signed-off-by: Simon Glass
---
arch/arm/lib/Makefile |1 +
arch/arm/lib/proc.S | 35 +++
2 files changed, 36 insertions(+), 0 deletions(-)
create mode 100644 arch/arm/lib/proc.
Now that we are using the generic relocation framework,
we don't need this code. Once it is removed, we can change reloc.c's
relocate_code() function back to its correct name.
Note: Here we lose the ARM1176's enable_mmu code. This seems to duplicate
code already in U-Boot now. Can anyone comment o
Hi Stephen,
On Mon, Nov 21, 2011 at 3:30 PM, Stephen Warren wrote:
> On 11/21/2011 04:07 PM, Simon Glass wrote:
>> Hi,
>>
>> For reference, here is (I believe) the current list of Tegra patches
>> required become submitting new patches. I note a few conflicts
>
> s/required become/required in you
On 11/21/2011 05:05 PM, Simon Glass wrote:
> On Mon, Nov 21, 2011 at 3:30 PM, Stephen Warren wrote:
...
>> Is there a status update for the creation of a Tegra git that we could
>> fetch and branch from ?
>
> Well I could put up a tree, but it's a bit dangerous - the real place
> is patchwork.
I
Hi Stephen,
On Mon, Nov 21, 2011 at 4:12 PM, Stephen Warren wrote:
> On 11/21/2011 05:05 PM, Simon Glass wrote:
>> On Mon, Nov 21, 2011 at 3:30 PM, Stephen Warren wrote:
> ...
>>> Is there a status update for the creation of a Tegra git that we could
>>> fetch and branch from ?
>>
>> Well I coul
Hi Andy,
On Mon, Nov 21, 2011 at 3:40 PM, Andy Fleming wrote:
> It is sometimes desireable to clean up the byproducts of the build
> process without removing the executable results. "make clean" is
> close, but leaves the build directory with a large number of
> *.depend* files. This new build op
HI all,
I have found there are some variables declared as volatile in include/net.h.
Some of them are used as in send and receive functions.
Since some of them seems won't be update by hardware, like sending functions.
Should we check and clean them up?
For example, the send function in eth_devic
Dear Anatolij,
On Tue, Nov 22, 2011 at 2:46 AM, Anatolij Gustschin wrote:
> Dear Po-Yu Chuang,
>
> On Sat, 19 Nov 2011 12:59:08 +0100
> Anatolij Gustschin wrote:
>
>> MACH_TYPE_FARADAY was removed from mach-types.h.
>> Add it to the board config file.
>
> Could you please look at this patch and
Dear Anatolij,
On Tue, Nov 22, 2011 at 11:18 AM, Po-Yu Chuang wrote:
> Dear Anatolij,
>
> On Tue, Nov 22, 2011 at 2:46 AM, Anatolij Gustschin wrote:
>> Dear Po-Yu Chuang,
>>
>> On Sat, 19 Nov 2011 12:59:08 +0100
>> Anatolij Gustschin wrote:
>>
>>> MACH_TYPE_FARADAY was removed from mach-types.h
On Mon, Nov 21, 2011 at 11:50:17PM +0100, Marek Vasut wrote:
> > + return (mfspr(SPR_ICCFGR) & SPR_ICCFGR_CBS) ? 32 : 16;
>
> What's mfspr ... if it's some register, then maybe mfspr_read() ?
>
It's an instruction, "move from special register",
so I don't think the _read would be appropriate i
On Mon, Nov 21, 2011 at 11:52:59PM +0100, Marek Vasut wrote:
> > create mode 100644 arch/openrisc/lib/timer.c
>
> Timer support isn't a library function but a CPU function, so move it to 3/9.
>
I never quite worked out where the timer functions belongs,
some have them in interupts.c and some in
On Mon, Nov 21, 2011 at 11:53:32PM +0100, Marek Vasut wrote:
> > +int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
> > +{
> > + bd_t *bd = gd->bd;
> > +
> > + print_num("mem start", (ulong)bd->bi_memstart);
> > + print_lnum("mem size", (u64)bd->bi_mem
On Mon, Nov 21, 2011 at 11:54:51PM +0100, Marek Vasut wrote:
>
> Keep up the good work!
>
I'll do my best ;)
Thanks for taking the time to review our code.
Stefan
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boo
> On Mon, Nov 21, 2011 at 11:50:17PM +0100, Marek Vasut wrote:
> > > + return (mfspr(SPR_ICCFGR) & SPR_ICCFGR_CBS) ? 32 : 16;
> >
> > What's mfspr ... if it's some register, then maybe mfspr_read() ?
>
> It's an instruction, "move from special register",
> so I don't think the _read would be appr
> On Mon, Nov 21, 2011 at 11:52:59PM +0100, Marek Vasut wrote:
> > > create mode 100644 arch/openrisc/lib/timer.c
> >
> > Timer support isn't a library function but a CPU function, so move it to
> > 3/9.
>
> I never quite worked out where the timer functions belongs,
> some have them in interupt
> On Mon, Nov 21, 2011 at 11:53:32PM +0100, Marek Vasut wrote:
> > > +int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const
> > > argv[]) +{
> > > + bd_t *bd = gd->bd;
> > > +
> > > + print_num("mem start", (ulong)bd->bi_memstart);
> > > + print_lnum("mem size", (u64)bd
Hi Andy,
This is great, thank you for doing it.
I just have a few fairly trivial comments.
On Mon, Nov 21, 2011 at 3:40 PM, Andy Fleming wrote:
> The MAKEALL script cleverly runs make with the appropriate options
> to use all of the cores on the system, but your average U-Boot build
> can't ma
> Hi,
>
> I'm trying to build U-Boot for the above mentioned board. Basically,
> I've done the following on a Ubuntu 10.04:
>
> wget
> https://sourcery.mentor.com/public/gnu_toolchain/m68k-elf/freescale-coldfir
> e-4.4-215-m68k-elf-i686-pc-linux-gnu.tar.bz2
>
> sudo tar xvfj
> freescale-coldfir
This fixes a few printf() strings for size_t which are missing the 'z'
modifier.
Signed-off-by: Simon Glass
Acked-by: Mike Frysinger
---
Changes in v2:
- Fix another warning in the same file
Changes in v4:
- Rebase to master
lib/hashtable.c | 10 +-
1 files changed, 5 insertions(+),
Hi Stefano,
On Mon, Nov 21, 2011 at 1:10 PM, Wolfgang Denk wrote:
> Dear Stefano Babic,
>
> In message <4ec61e4c.8040...@denx.de> you wrote:
>>
>> let's see if the suggested approach work or there is need for an adjustment.
>>
>> I have applied some general and network patches to u-boot-staging.
Hi Marri,
On Monday 21 November 2011 23:31:45 Wolfgang Denk wrote:
> > This code is used when usb device is used as boot medium for Linux.
>
> Which exact usage mode would that be, i. e. which hardware setup would
> you use in coimbination with which exact commands?
Yes, please explain in more d
On 22/11/11 15:51, Marek Vasut wrote:
Hi,
I'm trying to build U-Boot for the above mentioned board. Basically,
I've done the following on a Ubuntu 10.04:
wget
https://sourcery.mentor.com/public/gnu_toolchain/m68k-elf/freescale-coldfir
e-4.4-215-m68k-elf-i686-pc-linux-gnu.tar.bz2
sudo tar xvfj
On Tue, Nov 22, 2011 at 05:48:53AM +0100, Marek Vasut wrote:
> > > > + asm("l.nop 0x1"); /* Kill any simulation */
> > >
> > > Simulation? Oh, it's an FPGA based CPU or what?
> >
> > Well, yes, FPGAs are probably the most common case, but also ASIC
> > implementations exists.
> > The extra
On Monday, November 21, 2011, Richard Cochran
wrote:
> I am running the very latest mainstream Linux kernel on the Freescale
> M5234BCC. The kernel boots file (if I hack the root device in
> drivers/mtd/maps/uclinux.c).
>
> However, I am getting really tired of the dBUG thing. It only can
> fetch
Hi Kumar,
We want more comments on this patch to speed up the pushing-to-source progress.
Thanks.
-Original Message-
From: Jia Hongtao-B38951
Sent: Tuesday, November 15, 2011 3:04 PM
To: u-boot@lists.denx.de
Cc: Li Yang-R58472; Jia Hongtao-B38951
Subject: [u-boot][PATCH] uboot/flexcan: fi
Hello Tom,
On Mon, Nov 21, 2011 at 6:52 PM, Tom Rini wrote:
> On Mon, Nov 21, 2011 at 9:33 AM, Christian Riesch
> wrote:
>> This patch avoids build breakage for SPLs that do not support printf.
>>
>> Signed-off-by: Christian Riesch
>> Cc: Wolfgang Denk
>> Cc: Tom Rini
>> ---
>> arch/arm/lib/
On Tue, Nov 22, 2011 at 05:46:41AM +0100, Marek Vasut wrote:
> > On Mon, Nov 21, 2011 at 11:50:17PM +0100, Marek Vasut wrote:
> > > > + printf("CPU: OpenRISC-%x00 (rev %d) @ %d MHz\n",
> > > > + ver, rev, (CONFIG_SYS_CLK_FREQ / 100));
> > >
> > > The CPU won't tell you it
On 22/11/2011 06:06, Simon Glass wrote:
> Hi Stefano,
>
Hi Simon,
>> CONFLICT (content): Merge conflict in lib/hashtable.c
>
> For this conflict I am sending a V4 patch to the list.
Thanks - I remove in the meantime the two patches that does not apply
anymore (the other one is from Andreas), a
Hello Mike,
Thank you for your comments.
On Mon, Nov 21, 2011 at 8:03 PM, Mike Frysinger wrote:
> On Monday 21 November 2011 11:33:38 Christian Riesch wrote:
>> --- /dev/null
>> +++ b/arch/arm/include/asm/arch-davinci/da850_pinmux.h
>>
>> +const struct pinmux_config spi1_pins[] = {
>> + { pin
Hello Mike,
Thank you for your comments.
On Mon, Nov 21, 2011 at 8:09 PM, Mike Frysinger wrote:
> On Monday 21 November 2011 11:33:47 Christian Riesch wrote:
>> --- a/Makefile
>> +++ b/Makefile
>>
>> +$(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
>> + $(obj)tools/m
Hi Matthias,
On Thursday 13 October 2011 15:12:24 matthias.fu...@esd.eu wrote:
> From: Matthias Fuchs
>
> This patch fixes the PMC440 BSP command painit. The implementation was
> broken since the step to the new environment handling.
After applying this patch to the latest U-Boot version I get
Hello Mike,
Thank you for your comments.
On Mon, Nov 21, 2011 at 8:07 PM, Mike Frysinger wrote:
> On Monday 21 November 2011 11:33:43 Christian Riesch wrote:
>> --- a/drivers/mtd/spi/Makefile
>> +++ b/drivers/mtd/spi/Makefile
>>
>> +ifdef CONFIG_SPL_BUILD
>> +ifdef CONFIG_SPL_SPI_LOAD
>> +COBJS-y
On 18/11/2011 12:17, Wolfram Sang wrote:
> When a timeout occurs, the return value is prepared but never returned.
> Fix that.
>
> Signed-off-by: Uwe Kleine-König
> Signed-off-by: Wolfram Sang
> Cc: Marek Vasut
> ---
> drivers/dma/apbh_dma.c |2 +-
> 1 files changed, 1 insertions(+), 1 del
This commit drops the interface check for card-detection and leaves it
up to the board whether or not a card-detect GPIO is connected. Also,
the version field of struct mmc is only valid after the slot has been
probed successfully, so depending on that information sort of defeats
the purpose of car
--
Hello:
This is to inform you that our company China Steel Corporation (CSC)
are
in urgent need for a financial coordinator in your region and this is a
part time job and it pays very well.
If you are interested kindly get back to us on :
chinasteelcorporationf...@w.cn
with the details bel
Add support for TechNexion TAM3517 SoM
Signed-off-by: Tapani Utriainen
CC: Sandeep Paulraj
---
arch/arm/include/asm/mach-types.h |1
board/technexion/tam3517/Makefile | 49
board/technexion/tam3517/tam3517.c | 150
board/technexion/tam3517/tam3517.h | 388 +
All,
these patches add support for TechNexion TAM3517, TAO3530 and TDM3730 SoMs.
regards,
//Tapani
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
Move duplicate Sitara MUX definitions to arch-omap3/mux.h
Signed-off-by: Tapani Utriainen
CC: Sandeep Paulraj
---
arch/arm/include/asm/arch-omap3/mux.h | 51 ++
board/logicpd/am3517evm/am3517evm.h | 40 --
board/ti/am3517crane/am351
Add support for TechNexion TAO3530 SoM
Signed-off-by: Tapani Utriainen
CC: Sandeep Paulraj
---
arch/arm/include/asm/mach-types.h |1
board/technexion/tao3530/Makefile | 43
board/technexion/tao3530/tao3530.c | 207
board/technexion/tao3530/tao3530.h | 382 +
Add support for TechNexion TDM3730 SoM
Signed-off-by: Tapani Utriainen
CC: Sandeep Paulraj
---
board/technexion/tdm3730/Makefile | 49
board/technexion/tdm3730/tdm3730.c | 173
board/technexion/tdm3730/tdm3730.h | 383 +
boards.cfg
Dear Tapani Utriainen,
In message <2021164002.2e3a6212@myhost> you wrote:
>
> Move duplicate Sitara MUX definitions to arch-omap3/mux.h
Thanks.
> Signed-off-by: Tapani Utriainen
> CC: Sandeep Paulraj
> ---
> arch/arm/include/asm/arch-omap3/mux.h | 51
>
Dear Tapani Utriainen,
In message <2021164002.2e3a6212@myhost> you wrote:
>
> Move duplicate Sitara MUX definitions to arch-omap3/mux.h
Also, please chose a better Subject. This modification may be a
preparation for your other patches, but it is actually in no way
related to TechNexion mod
On 21/11/2011 09:40, Tapani Utriainen wrote:
>
> Move duplicate Sitara MUX definitions to arch-omap3/mux.h
>
> Signed-off-by: Tapani Utriainen
> CC: Sandeep Paulraj
> ---
> arch/arm/include/asm/arch-omap3/mux.h | 51
> ++
> board/logicpd/am3517evm/am3517evm.h
Hi Tapani,
I think, most of the comments below apply to all the patches in the series.
Seems, like subject should be:
arm: omap3:
On 11/21/11 10:44, Tapani Utriainen wrote:
>
> Add support for TechNexion TAM3517 SoM
This is a very short commit message.
>
> Signed-off-by: Tapani Utriaine
Hi Wolfgang, Tapani,
On 11/21/11 11:07, Wolfgang Denk wrote:
> Dear Tapani Utriainen,
>
> In message <2021164002.2e3a6212@myhost> you wrote:
>>
>> Move duplicate Sitara MUX definitions to arch-omap3/mux.h
>
> Thanks.
This has been already done by Ilya and waits for someone to merge,
check h
Dear Tapani Utriainen,
In message <2021164401.5b816ce0@myhost> you wrote:
>
> Add support for TechNexion TAM3517 SoM
>
> Signed-off-by: Tapani Utriainen
> CC: Sandeep Paulraj
> ---
> arch/arm/include/asm/mach-types.h |1
> board/technexion/tam3517/Makefile | 49
> board/tech
Dear Tapani Utriainen,
In message <2021164800.23d1025f@myhost> you wrote:
>
> Add support for TechNexion TAO3530 SoM
Same comments as for previous module.
Also again: please chose a beter Subject: line.
...
> + /* Set memory size environment variable, depending on revision */
> + s
Dear Tapani Utriainen,
In message <2021165205.4624b13b@myhost> you wrote:
>
> Add support for TechNexion TDM3730 SoM
Please use a better Subject: and add a bit more of information to the
commit message itself.
> Signed-off-by: Tapani Utriainen
> CC: Sandeep Paulraj
> ---
> board/technexi
On 21/11/2011 09:44, Tapani Utriainen wrote:
>
> Add support for TechNexion TAM3517 SoM
>
> Signed-off-by: Tapani Utriainen
> CC: Sandeep Paulraj
Hi Tapani,
> ---
> arch/arm/include/asm/mach-types.h |1
> board/technexion/tam3517/Makefile | 49
> board/technexion/tam3517/tam351
Hi,
Am 18.11.2011 19:10, schrieb Holger Brunck:
Hi,
On 18/11/11 14:57, Spranger, Jörg wrote:
we have a small AT91RM9200 based board, running Linux on it and it worked fine.
Now we face 2 major changes:
1. The strataflash JS28F128j3d75 shifted to JS28F128j3f75
2. The uboot is upda
On 21/11/2011 09:48, Tapani Utriainen wrote:
>
> Add support for TechNexion TAO3530 SoM
>
> Signed-off-by: Tapani Utriainen
> CC: Sandeep Paulraj
> ---
Hi Tapani,
> arch/arm/include/asm/mach-types.h |1
> board/technexion/tao3530/Makefile | 43
> board/technexion/tao3530/tao353
> -Original Message-
> From: Anatolij Gustschin [mailto:ag...@denx.de]
> Sent: Sunday, November 20, 2011 3:39 AM
> To: Prafulla Wadaskar
> Cc: Ajay Bhargav; u-boot@lists.denx.de
> Subject: Re: [U-Boot] [PATCH] net: Armada100: Fix compilation
> warnings
>
> Hi Praffula,
>
> On Mon, 31 Oc
> -Original Message-
> From: Simon Guinot [mailto:si...@sequanux.org]
> Sent: Wednesday, November 09, 2011 10:32 PM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de; Albert ARIBAUD; Simon Guinot
> Subject: [PATCH v2 2/3] ARM: add support for LaCie 2Big Network
> v2
>
> From: Simon Guin
On 21/11/2011 07:16, Marek Vasut wrote:
>> 2011/11/20 Marek Vasut
>>
HDMI output doesn't work with current u-boot-imx tree (no LCD output
>>>
>>> after
>>>
'setenv stdout lcd'),
but works with current u-boot-marex/efikasb tree.
>>>
>>> Ok, so are you debugging it or not ?
>>
>> No,
> -Original Message-
> From: Simon Guinot [mailto:si...@sequanux.org]
> Sent: Wednesday, November 09, 2011 10:32 PM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de; Albert ARIBAUD; Simon Guinot
> Subject: [PATCH v2 1/3] mvsata: fix ide_preinit for missing
> disks
>
> From: Simon Guino
> -Original Message-
> From: Simon Guinot [mailto:si...@sequanux.org]
> Sent: Wednesday, November 16, 2011 4:02 PM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de
> Subject: Re: [U-Boot] [PATCH v2] netspace_v2: Read Ethernet MAC
> address from EEPROM
>
> Hi Prafulla,
>
> On Tue, Nov
> -Original Message-
> From: Simon Guinot [mailto:si...@sequanux.org]
> Sent: Wednesday, November 09, 2011 10:32 PM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de; Albert ARIBAUD; Simon Guinot
> Subject: [PATCH v2 3/3] ARM: remove duplicated code for LaCie
> boards
>
> From: Simon Gu
Hi Simon,
On 11/16/2011 12:22 AM, Simon Glass wrote:
> On Tue, Nov 15, 2011 at 1:19 AM, Wolfgang Grandegger wrote:
>> Cc: Simon Glass
>> Cc: Mike Frysinger
>> Signed-off-by: Wolfgang Grandegger
>> ---
>> drivers/usb/eth/smsc95xx.c | 10 +++---
>> 1 files changed, 3 insertions(+), 7 dele
Dear Albert
Kindly pull
The following changes since commit d3089594c2483ae8cc8932f25812a4dcf19712af:
Sanjeev Premi (1):
omap3evm: Add support for EFI partitions
are available in the git repository at:
u-boot-marvell.git master branch.
Ajay Bhargav (1):
net: Armada100: Fix comp
> On 21/11/2011 07:16, Marek Vasut wrote:
> >> 2011/11/20 Marek Vasut
> >>
> HDMI output doesn't work with current u-boot-imx tree (no LCD output
> >>>
> >>> after
> >>>
> 'setenv stdout lcd'),
> but works with current u-boot-marex/efikasb tree.
> >>>
> >>> Ok, so are you debug
On 20/11/2011 06:43, Simon Glass wrote:
> OK, I have no problem with it, but this problem may not show up for
> people using vanilla MAKEALL, hence Stefano's email.
Right - I was asking myself why I could not see the warning, now it is
clear to me.
Acked-by: Stefano Babic
Tested on mx51evk.
Te
On 21/11/2011 11:49, Wolfgang Grandegger wrote:
> Hi Simon,
>
> On 11/16/2011 12:22 AM, Simon Glass wrote:
>> On Tue, Nov 15, 2011 at 1:19 AM, Wolfgang Grandegger wrote:
>>> Cc: Simon Glass
>>> Cc: Mike Frysinger
>>> Signed-off-by: Wolfgang Grandegger
>>> ---
>>> drivers/usb/eth/smsc95xx.c |
On 21/11/2011 12:03, Marek Vasut wrote:
>>
>> Ok - then I'll drop the patch from u-boot-imx, because it is not working
>> (or it is not enough)
>
> No, you don't understand. This patch is important, leave it there!
Ok, the patch does not hurt at all
>
> The code which registers the ipuv3 i
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
Hi Heiko,
On 09/15/2011 07:34 AM, Heiko Schocher wrote:
> Signed-off-by: Heiko Schocher
> Cc: Albert ARIBAUD
> ---
> post/post.c |2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/post/post.c b/post/post.c
> index 6c59f91..0bfca75 100644
> --- a/post/post.c
> +++ b/
On 18/11/2011 08:11, Jason Liu wrote:
> In order to support the coming MX6 platform and to reducde
> the duplicated code, we had better move some common files
> or functions to the imx-common folder for sharing.
>
> This patch does the following:
> - move speed.c file from armv7/mx5/speed.c to arm
Configure the pins as GPIOs prior to using gpio_get_value
Cc: Marek Vasut
Signed-off-by: Fabio Estevam
---
board/efikamx/efikamx.c | 13 +
1 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/board/efikamx/efikamx.c b/board/efikamx/efikamx.c
index 3d2cc1a..b911891 100644
Configure the pin as GPIO prior to using gpio_get_value
Signed-off-by: Fabio Estevam
---
board/ttcontrol/vision2/vision2.c |5 -
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/board/ttcontrol/vision2/vision2.c
b/board/ttcontrol/vision2/vision2.c
index f556d30..e0fa39d 10
This patch adds support for the Android boot-image format. The header
file is from the Android project and got slightly alterted so the struct +
its defines are not generic but have something like a namespace. The
header file is from bootloader/legacy/include/boot/bootimg.h. The header
parsing has
This patch contains an implementation of the fastboot protocol on the
device side and a little of documentation.
The gadget expects the new-style gadget framework.
The gadget implements the getvar, reboot, download and reboot commands.
What is missing is the flash handling i.e. writting the image t
This is a repost of 19.10.2011. This series contains a small version of
the fastboot gadget. I removed the flash/mmc/write to media part and
re-add once I'm through with this basic thing :)
This "basic" gadget supports the retrieval of variables (like serial
number), reboot functionality, download
Hello Holger,
added Prafulla Wadaskar to cc ...
Holger Brunck wrote:
> Hi Heiko,
>
> On 09/15/2011 07:34 AM, Heiko Schocher wrote:
>> Signed-off-by: Heiko Schocher
>> Cc: Albert ARIBAUD
>> ---
>> post/post.c |2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/po
Hello All,
We are using MT29F32G08CBABAWP on our board. I would like to know whether
the OpenNand interface is already supported in U-Boot?
Also, could you please let me know where I can find more information to
write OpenNand Interface driver for U-Boot?
Thanks and Regards,
Mahavir
On Mon, Nov 21, 2011 at 12:04 AM, Igor Grinberg wrote:
> On 11/20/11 16:26, Tom Rini wrote:
>> On Sun, Nov 20, 2011 at 12:36 AM, Igor Grinberg
>> wrote:
>>> Hi Tom,
>>>
>>> On 11/19/11 00:48, Tom Rini wrote:
A number of boards are populated with a PoP chip for both DDR and NAND
memory.
> Configure the pins as GPIOs prior to using gpio_get_value
>
> Cc: Marek Vasut
> Signed-off-by: Fabio Estevam
> ---
> board/efikamx/efikamx.c | 13 +
> 1 files changed, 9 insertions(+), 4 deletions(-)
>
> diff --git a/board/efikamx/efikamx.c b/board/efikamx/efikamx.c
> index 3d2
Hi Heiko,
On 11/21/2011 03:09 PM, Heiko Schocher wrote:
> Holger Brunck wrote:
>> On 09/15/2011 07:34 AM, Heiko Schocher wrote:
>>> Signed-off-by: Heiko Schocher
>>> Cc: Albert ARIBAUD
>>> ---
>>> post/post.c |2 +-
>>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/p
On 11/21/11 16:12, Tom Rini wrote:
> On Mon, Nov 21, 2011 at 12:04 AM, Igor Grinberg
> wrote:
>> On 11/20/11 16:26, Tom Rini wrote:
>>> On Sun, Nov 20, 2011 at 12:36 AM, Igor Grinberg
>>> wrote:
Hi Tom,
On 11/19/11 00:48, Tom Rini wrote:
> A number of boards are populated wit
On 18/11/2011 08:11, Jason Liu wrote:
> i.MX6Q is freescale quad core processors with ARM cortex_a9 complex.
> This patch is to add the initial support for this processor.
>
> Signed-off-by: Jason Liu
> Cc:Stefano Babic
> ---
> v2:put aips init to c code as Marek suggest
>remove the parenthe
Hello.
On Mon, 2011-11-21 at 15:09, Sebastian Andrzej Siewior wrote:
> This patch contains an implementation of the fastboot protocol on the
> device side and a little of documentation.
> The gadget expects the new-style gadget framework.
Which what hardware do you test this? So far I have only s
On 18/11/2011 08:11, Jason Liu wrote:
> Signed-off-by: Jason Liu
> Cc: Stefano Babic
> ---
> v2: Cc Stefano
> ---
> drivers/serial/serial_mxc.c | 10 +++---
> 1 files changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/serial/serial_mxc.c b/drivers/serial/serial_mxc.c
> inde
On 11/21/2011 07:41 AM, Igor Grinberg wrote:
> On 11/21/11 16:12, Tom Rini wrote:
>> On Mon, Nov 21, 2011 at 12:04 AM, Igor Grinberg
>> wrote:
>>> On 11/20/11 16:26, Tom Rini wrote:
On Sun, Nov 20, 2011 at 12:36 AM, Igor Grinberg
wrote:
> Hi Tom,
>
> On 11/19/11 00:48, Tom
Fix the following checkpatch warning:
WARNING: braces {} are not necessary for single statement blocks
Signed-off-by: Fabio Estevam
---
board/ttcontrol/vision2/vision2.c |3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/board/ttcontrol/vision2/vision2.c
b/board/ttcontr
Hi Prafulla,
Le 21/11/2011 11:39, Prafulla Wadaskar a écrit :
Dear Albert
Kindly pull
The following changes since commit d3089594c2483ae8cc8932f25812a4dcf19712af:
Sanjeev Premi (1):
omap3evm: Add support for EFI partitions
are available in the git repository at:
u-boot-marvell.
This code adds an SPL for booting from SPI flash on DA850 SoCs.
Signed-off-by: Christian Riesch
Cc: Heiko Schocher
Cc: Sandeep Paulraj
---
arch/arm/cpu/arm926ejs/davinci/Makefile |3 +-
arch/arm/cpu/arm926ejs/davinci/spl.c| 34 ++-
2 files changed, 35 inse
The configuration in struct pinmux_config i2c_pins does not configure
the pins for i2c but for uart. Since this function is already
configured by struct pinmux_config uart2_pins the i2c_pins struct
is obsolete.
Signed-off-by: Christian Riesch
Cc: Heiko Schocher
Cc: Syed Mohammed Khasim
Cc: Sugh
Signed-off-by: Christian Riesch
Cc: Heiko Schocher
---
doc/README.SPL |1 +
drivers/mtd/spi/Makefile |6
drivers/mtd/spi/spi_spl_load.c | 60
include/spi_flash.h|2 +
lib/Makefile |
*** BLURB HERE ***
Christian Riesch (12):
arm, davinci: Move pinmux functions from board to arch tree
arm, hawkboard: Remove obsolete struct pinmux_config i2c_pins
arm, da850: Move the definitions of pinmux configurations to the arch
tree
arm, da830: Move the definitions of pinmux conf
This patch replaces the pinmux configuration code in
arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c by the code from
arch/arm/cpu/arm926ejs/davinci/pinmux.c.
Signed-off-by: Christian Riesch
Cc: Sandeep Paulraj
Cc: Sudhakar Rajashekhara
Cc: Heiko Schocher
---
arch/arm/cpu/arm926ejs/davinci/da
Support for variable length images like AIS image was introduced
in commit f0662105b674a3874227316abf8536bebc9b5995. A parameter
"-s" was also introduced to prohibit copying of the image file
automatically in the main program. However, this parameter
was implemented incorrectly and the image file w
Signed-off-by: Christian Riesch
Cc: Heiko Schocher
Cc: Sandeep Paulraj
Cc: Sudhakar Rajashekhara
---
board/davinci/da8xxevm/u-boot-spl.lds | 73 +
include/configs/da850evm.h| 53 +++-
2 files changed, 125 insertions(+), 1 dele
The boards in board/davinci/da8xxevm/ define pinmux_config[] vectors
that contain pinmux configurations for emac, uarts, memory controllers...
This patch moves common configurations to a header file in the
arch tree for the da850evm and the hawkboard.
Signed-off-by: Christian Riesch
Cc: Sandeep P
This patch avoids build breakage for SPLs that do not support printf.
Signed-off-by: Christian Riesch
Cc: Wolfgang Denk
Cc: Tom Rini
---
arch/arm/lib/eabi_compat.c |3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/arch/arm/lib/eabi_compat.c b/arch/arm/lib/eabi_compat.c
This patch fixes the clear bss loop for bss sections that have
zero length, i.e., where __bss_start == __bss_end__.
Signed-off-by: Christian Riesch
Cc: Albert Aribaud
Cc: Heiko Schocher
---
arch/arm/cpu/arm926ejs/start.S |8 +---
1 files changed, 5 insertions(+), 3 deletions(-)
diff -
The boards in board/davinci/da8xxevm/ define pinmux_config[] vectors
that contain pinmux configurations for emac, uarts, memory controllers...
This patch moves the pinmux configurations to a header file in the
arch tree for the da830evm.
Signed-off-by: Christian Riesch
Cc: Sandeep Paulraj
Cc: He
Signed-off-by: Christian Riesch
Cc: Sandeep Paulraj
Cc: Heiko Schocher
Cc: Sudhakar Rajashekhara
Cc: Syed Mohammed Khasim
Cc: Sughosh Ganu
Cc: Nick Thompson
Cc: Stefano Babic
---
arch/arm/cpu/arm926ejs/davinci/Makefile|2 +-
.../arm/cpu/arm926ejs/davinci/pinmux.c
Signed-off-by: Christian Riesch
Cc: Stefano Babic
Cc: Heiko Schocher
---
.gitignore |1 +
Makefile | 10 ++
board/davinci/da8xxevm/config.mk |5 +
3 files changed, 16 insertions(+), 0 deletions(-)
create mode 100644 board/davi
Hi Marek,
I see delivery failure to the address, this board is dead. Time for a good-bye
patch?
Yes, let us drop the board. If someone wants to resurrect it, they can
step forward any time.
Amicalement,
--
Albert.
___
U-Boot mailing list
U-Boot@li
Hi Anatolij,
Le 19/11/2011 12:59, Anatolij Gustschin a écrit :
Build breakage still pollutes the MAKEALL log. Fix build
problems for some ARM based boards. The patches can be
pulled from
git://git.denx.de/u-boot-video.git arm-fixes
I also fixed davinci_schmoogie and davinci_sonata, but
there
1 - 100 of 188 matches
Mail list logo