On Wednesday 10 August 2011 11:41 PM, Anton Staaf wrote:
> On Tue, Aug 9, 2011 at 11:48 PM, Aneesh V wrote:
>> Hi Anton,
>>
>> On Tuesday 09 August 2011 10:09 PM, Anton Staaf wrote:
>>>
>>> I'm not sure what the larger context of this change is, but it seems
>>> like a bad idea to me. There are a
From: Koen Kooi
Signed-off-by: Koen Kooi
Signed-off-by: Joel A Fernandes
---
board/ti/beagle/beagle.c | 10 ++
board/ti/beagle/beagle.h |1 +
2 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c
index 15d061a..776890
From: Koen Kooi
Signed-off-by: Koen Kooi
Signed-off-by: Joel A Fernandes
---
include/configs/omap3_beagle.h |3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h
index 42575f1..c41d48e 100644
--- a/include/co
The register this is written to is named ddr.cs_config, so name the #define
similarly to reduce confusion
Signed-off-by: Joe Hershberger
Cc: Joe Hershberger
Cc: Kim Phillips
---
board/freescale/mpc8313erdb/sdram.c |2 +-
board/freescale/mpc8349emds/mpc8349emds.c |2 +-
board/fre
From: Steve Sakoman
The kernel DSS2 code is mature now, and keeping this setting hurts performance
Signed-off-by: Steve Sakoman
---
include/configs/omap3_beagle.h |2 --
include/configs/omap3_overo.h |2 --
2 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/include/config
From: Bob Feretich
The below patch reverses the order of two segments in the board file.
Output pins need to have their values initialized, before they are
exposed to the logic outside the chip.
Previous discussions:
http://lists.denx.de/pipermail/u-boot/2011-March/088115.html
Signed-off-by: Bo
Hi, Marek,
On Wed, Aug 10, 2011 at 3:11 PM, Marek Vasut wrote:
> On Wednesday, August 10, 2011 08:26:05 AM Jason Hui wrote:
>> On Wed, Aug 10, 2011 at 1:59 PM, Marek Vasut wrote:
>> > On Saturday, July 30, 2011 12:52:53 PM Marek Vasut wrote:
>> >> On Saturday, July 30, 2011 08:42:19 AM Jason Hui
From: Bob Feretich
From: Bob Feretich
The below patch reverses the order of two segments in the board file.
Output pins need to have their values initialized, before they are
exposed to the logic outside the chip.
Previous discussions:
http://lists.denx.de/pipermail/u-boot/2011-March/088115.ht
- "Lei Wen" wrote:
>
> You should remove these two define, or we would met build error as:
> cmd_gpio.c:20: error: expected identifier before numeric constant
> cmd_gpio.c: In function 'do_gpio':
> cmd_gpio.c:49: error: 'GPIO_CLEAR' undeclared (first use in this
> function)
> cmd_gpio.c:49:
On Thursday, August 11, 2011 05:27:37 AM Hong Xu wrote:
> Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations
> into this file.
>
> Signed-off-by: Hong Xu
> ---
> V2:
> Fixed a typo when CONFIG_SYS_DCACHE_OFF is defined
> V3:
> Undo changes in include/configs/at91sa
On Thursday, August 11, 2011 04:19:47 AM Hong Xu wrote:
> arch/arm/lib/cache.c is cleaned and no real cache operation will be
> defined in this file. So a new file arch/arm/cpu/arm1136/cache.c is
> created. This file will define the real cache operations.
>
> Signed-off-by: Hong Xu
> Tested-by: E
On Thursday, August 11, 2011 04:19:45 AM Hong Xu wrote:
> The default cache operations defined in arch/arm/lib/cache.c
> do not perform any real cache operation, and instead a WARNING
> will be emitted.
>
> Signed-off-by: Hong Xu
> Tested-by: Elen Song
> CC: Albert Aribaud
> CC: Aneesh V
> CC:
On Thursday, August 11, 2011 04:19:43 AM Hong Xu wrote:
> This series try to clean the code of arch/arm/lib/cache.c
> Move ARM1136 cache operations into cpu/arm1136/cache.c
> Add ARM926EJS cache operations into cpu/arm926ejs/cache.c
>
> Hong Xu (3):
> ARM: Clean arch/arm/lib/cache.c
>
Hi Detlev,
On 10 August 2011 15:48, Detlev Zundel wrote:
> Hi Chander,
>
> [...]
>
> >>> lease get rid of all these magic hard coded constants. Use symbolic
> >>> names instead. If needed, auto-generate these from the respective C
> >>> structs. If needed, create the C structs.
> >>>
> >>
> >
Hi Albert,
On 4 August 2011 17:35, Albert ARIBAUD wrote:
> Hi Igor,
>
>
> On 28/07/2011 10:58, Igor Grinberg wrote:
>
>> On 07/28/11 11:19, Chander Kashyap wrote:
>>
>>> On 28 July 2011 13:29, Igor
>>> Grinberg>
>>> wrote:
>>>
On 07/28/11 09:41, Chander Kashyap wrote:
> Dea
Your email address has luckily won you 1,750,000.00 GBP.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
From: Po-Yu Chuang
timer.c used static data and are called before relocation.
Move all static variables into global_data structure. Also cleanup
timer.c from unused stubs and make it truly use 64 bit tick values.
Remove reset_timer_masked() get_timer_masked()
reference: arch/arm/cpu/arm926ejs/a
On Wednesday, August 10, 2011 22:07:28 Joe Hershberger wrote:
> On Wed, Aug 10, 2011 at 8:33 PM, Mike Frysinger wrote:
> > On Wednesday, August 10, 2011 02:27:42 Joe Hershberger wrote:
> >> Add quiet parameter to cmd_gpio for use when part of a script
> >> Enable repeat... especially useful when us
Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations
into this file.
Signed-off-by: Hong Xu
---
V2:
Fixed a typo when CONFIG_SYS_DCACHE_OFF is defined
V3:
Undo changes in include/configs/at91sam9260ek.h
It's for testing purpose
arch/arm/cpu/arm926ejs/Ma
On Wednesday, August 10, 2011 00:56:40 Joe Hershberger wrote:
> --- /dev/null
> +++ b/include/asm-generic/gpio.h
> +#include
NAK. this belongs in the arch/ specific header.
-mike
signature.asc
Description: This is a digitally signed message part.
___
Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations
into this file.
Signed-off-by: Hong Xu
CC: Albert Aribaud
---
V2:
Fixed a typo when CONFIG_SYS_DCACHE_OFF is defined
arch/arm/cpu/arm926ejs/Makefile |2 +-
arch/arm/cpu/arm926ejs/cache.c | 142
Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations
into this file.
Signed-off-by: Hong Xu
Tested-by: Elen Song
CC: Albert Aribaud
CC: Aneesh V
CC: Marek Vasut
CC: Reinhard Meyer
CC: Heiko Schocher
---
arch/arm/cpu/arm926ejs/Makefile |2 +-
arch/arm/cpu/arm926ejs/cac
Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations
into this file.
Signed-off-by: Hong Xu
Tested-by: Elen Song
CC: Albert Aribaud
---
arch/arm/cpu/arm926ejs/Makefile |2 +-
arch/arm/cpu/arm926ejs/cache.c | 142 +++
2 files changed,
arch/arm/lib/cache.c is cleaned and no real cache operation will be
defined in this file. So a new file arch/arm/cpu/arm1136/cache.c is
created. This file will define the real cache operations.
Signed-off-by: Hong Xu
Tested-by: Elen Song
CC: Albert Aribaud
CC: Aneesh V
CC: Marek Vasut
CC: Rei
arch/arm/lib/cache.c is cleaned and no real cache operation will be
defined in this file. So a new file arch/arm/cpu/arm1136/cache.c is
created. This file will define the real cache operations.
Signed-off-by: Hong Xu
Tested-by: Elen Song
CC: Albert Aribaud
---
arch/arm/cpu/arm1136/Makefile |
The default cache operations defined in arch/arm/lib/cache.c
do not perform any real cache operation, and instead a WARNING
will be emitted.
Signed-off-by: Hong Xu
Tested-by: Elen Song
CC: Albert Aribaud
CC: Aneesh V
CC: Marek Vasut
CC: Reinhard Meyer
CC: Heiko Schocher
---
arch/arm/lib/ca
The default cache operations defined in arch/arm/lib/cache.c
do not perform any real cache operation, and instead a WARNING
will be emitted.
Signed-off-by: Hong Xu
Tested-by: Elen Song
CC: Albert Aribaud
---
arch/arm/lib/cache.c | 55 -
1 files
This series try to clean the code of arch/arm/lib/cache.c
Move ARM1136 cache operations into cpu/arm1136/cache.c
Add ARM926EJS cache operations into cpu/arm926ejs/cache.c
Hong Xu (3):
ARM: Clean arch/arm/lib/cache.c
ARM: ARM1136 - Remove flush_cache from arch/arm/lib/cache.c
Hi Andy,
2011/7/21 Macpaul Lin :
> Faraday FTSDC010 controller is a SD/MMC controller for SoC chip.
>
> Signed-off-by: Macpaul Lin
> ---
> Changes for v2:
> - headers: Fix typo from SDC_DATA_CTRL_REG_BLK_SIZE(x)
> to SDC_DATA_CTRL_REG_BLK_BYTES(x)
> Changes for v3:
> - Replace mmc_xxx functi
Hi Mike,
On Wed, Aug 10, 2011 at 8:33 PM, Mike Frysinger wrote:
> On Wednesday, August 10, 2011 02:27:42 Joe Hershberger wrote:
>> Add quiet parameter to cmd_gpio for use when part of a script
>> Enable repeat... especially useful when used with input and toggle
>> Add "outstate" command that wil
On Wednesday, August 10, 2011 02:27:42 Joe Hershberger wrote:
> Add quiet parameter to cmd_gpio for use when part of a script
> Enable repeat... especially useful when used with input and toggle
> Add "outstate" command that will return and print the state of an output
a similar patch was posted s
On Wednesday, August 10, 2011 19:23:07 Andy Fleming wrote:
> I know I'm a bit late to this, but this doesn't sound right. MII
> isn't a very flexible protocol. The registers have to fit in 5 bits.
> In order for larger values to be used, you would need to be using
> clause 45 of MDIO, which requir
On Wednesday, August 10, 2011 21:27:28 Tabi Timur-B04825 wrote:
> York Sun wrote:
> > Change the help message to be more helpful. Print argument format.
> > Fix MAX_NUM_PORTS to comply with v1 NXID format.
> >
> > Signed-off-by: York Sun
>
> Could you also fix the commands so that they take a num
York Sun wrote:
> +/* Option parameter Structures */
> +typedef struct {
> + const char *option_name;
> + size_t offset;
> + unsigned int size;
> + const char printHex;
> +} options_strings_t;
Does it make sense for only printHex (which should be "print_hex") and
option_name to be
York Sun wrote:
> Change the help message to be more helpful. Print argument format.
> Fix MAX_NUM_PORTS to comply with v1 NXID format.
>
> Signed-off-by: York Sun
Could you also fix the commands so that they take a number in decimal
instead of hex?
e.mac[index][i] = simple_strtoul(p,
I know I'm a bit late to this, but this doesn't sound right. MII
isn't a very flexible protocol. The registers have to fit in 5 bits.
In order for larger values to be used, you would need to be using
clause 45 of MDIO, which requires not just 16-bit register offsets,
but an additional argument (de
On Aug 10, 2011, at 2:12 AM, Joe Hershberger wrote:
> Previously only the last N were included based on the current one in use.
>
> Signed-off-by: Joe Hershberger
> Cc: Joe Hershberger
> Cc: Mingkai Hu
> Cc: Andy Fleming
> Cc: Kumar Gala
> Cc: Detlev Zundel
Acked-by: Andy Fleming
_
Add Armadeus Project board APF9328
Signed-off-by: Eric Jarrige
Signed-off-by: Nicolas Colombain
---
board/armadeus/apf9328/Makefile| 51 +++
board/armadeus/apf9328/apf9328.c | 91 ++
board/armadeus/apf9328/apf9328fpga.c | 89 ++
board/armadeus/apf9328/apf9328fpga.h
Add imx_gpio_mode() to Freescale imx1/L/S public functions
Signed-off-by: Eric Jarrige
Cc: Stefano Babic
---
arch/arm/include/asm/arch-imx/imx-regs.h |7 +++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/arch/arm/include/asm/arch-imx/imx-regs.h
b/arch/arm/include/asm/a
add apf9328 board definition in makefile, MAKEALL and MAINTAINERS list
Signed-off-by: Eric Jarrige
---
MAINTAINERS |4
MAKEALL |1 +
boards.cfg |1 +
3 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/MAINTAINERS b/MAINTAINERS
index f895e9a..48807fe 100644
--- a
Hi Andy,
[...]
>>> It seems the resetting of the indexes to 0 was added by Andy Fleming
>>> in 063c12633d5ad74d52152d9c358e715475e17629, though the log doesn't
>>> discuss it..
>>
>> Yes, I see - it even slipped my review :( For the patch as such I don't
>> have a preference - looking at the co
Hi Angelo,
> i don't have big experience with git, generally i use cvs/svn.
No problem, we all have to learn new things.
> I am posting changes/additions i have here in my local tree, since i
> am not an u-boot developer i don't think i am allowed to commit
> anything in the server repository.
The following series adds support for the Armadeus Project
board apf9328 and also fixes some driver issues or improvements
concerning the Freescale iMX1 cpu, DM9000 ethernet controler and
the final call to the relocated board_init_r for the arm920t.
The last arm920t patch should be applicable to th
Signed-off-by: Eric Jarrige
---
include/configs/apf9328.h | 1034 +
1 files changed, 1034 insertions(+), 0 deletions(-)
create mode 100644 include/configs/apf9328.h
diff --git a/include/configs/apf9328.h b/include/configs/apf9328.h
new file mode 10064
Add i2c registers for Freescale imx1/L/S
Signed-off-by: Eric Jarrige
Cc: Stefano Babic
---
arch/arm/include/asm/arch-imx/imx-regs.h | 23 +++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/arch/arm/include/asm/arch-imx/imx-regs.h
b/arch/arm/include/asm/ar
Signed-off-by: Eric Jarrige
Cc: Stefano Babic
---
arch/arm/cpu/arm920t/imx/speed.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/cpu/arm920t/imx/speed.c b/arch/arm/cpu/arm920t/imx/speed.c
index b1c2bd6..b8e42bf 100644
--- a/arch/arm/cpu/arm920t/imx/speed.c
++
Jump to the relocated board_init_r according to the initial computation
and remove computation against current PC addr as relocated address is
already known and fixed.
This helps to support CPU that miror flash to different address at
power on boot such as Freescale iMX1/L
Signed-off-by: Eric Jarr
Improve PLL freq computation by using the full resolution of the PLL registers
Signed-off-by: Eric Jarrige
Cc: Stefano Babic
---
arch/arm/cpu/arm920t/imx/speed.c | 29 +++--
1 files changed, 11 insertions(+), 18 deletions(-)
diff --git a/arch/arm/cpu/arm920t/imx/speed
Signed-off-by: Eric Jarrige
Cc: Ben Warren
---
drivers/net/dm9000x.c |8
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/net/dm9000x.c b/drivers/net/dm9000x.c
index b5c5573..9cd0195 100644
--- a/drivers/net/dm9000x.c
+++ b/drivers/net/dm9000x.c
@@ -232,7 +232,
Hi Detlev,
i don't have big experience with git, generally i use cvs/svn.
I am posting changes/additions i have here in my local tree, since i am not an
u-boot developer i don't think i am allowed to commit anything in the server
repository.
so "git format-patch -n --cover-letter" don't give
On Aug 10, 2011, at 2:26 PM, Detlev Zundel wrote:
> Hi Lei,
>
>> Hi Marek,
>>
>> On Wed, Aug 10, 2011 at 3:24 PM, Marek Vasut wrote:
>>> The mmc_send_status() function sets cmd.arg = 0. That's incorrect, so fix
>>> it.
>>>
>>> Signed-off-by: Marek Vasut
Applied (with lei wen's "tested-by")
On Aug 10, 2011, at 2:24 PM, Detlev Zundel wrote:
> Hi Joe,
>
>> On Wed, Aug 10, 2011 at 7:29 AM, Detlev Zundel wrote:
diff --git a/drivers/net/tsec.c b/drivers/net/tsec.c
index 78ffc95..1805ca0 100644
--- a/drivers/net/tsec.c
+++ b/drivers/net/tsec.c
@@ -250,8 +250,8 @
Hi Angelo,
> Cpu architecture files.
>
> # new file: arch/m68k/cpu/mcf530x/Makefile
> # new file: arch/m68k/cpu/mcf530x/config.mk
> # new file: arch/m68k/cpu/mcf530x/cpu.c
> # new file: arch/m68k/cpu/mcf530x/cpu.h
> # new file: arch/m68k/cpu/mcf530x/cpu_init
Hi Angelo,
> The following patches add support for Freescale MCF5307 cpu.
> Below a brief of the changes:
>
> # On branch master
> # Changes to be committed:
> # (use "git reset HEAD ..." to unstage)
> #
> # new file: arch/m68k/cpu/mcf530x/Makefile
> # new file: arch/m68k/cpu/mcf
Hi Lei,
> Hi Marek,
>
> On Wed, Aug 10, 2011 at 3:24 PM, Marek Vasut wrote:
>> The mmc_send_status() function sets cmd.arg = 0. That's incorrect, so fix it.
>>
>> Signed-off-by: Marek Vasut
>> ---
>> drivers/mmc/mmc.c | 3 ++-
>> 1 files changed, 2 insertions(+), 1 deletions(-)
>>
>> V2: Tak
Hi Albert,
On Wed, Aug 10, 2011 at 12:54 AM, Albert ARIBAUD
wrote:
> Hi Joe,
>
> Le 10/08/2011 07:21, Joe Hershberger a écrit :
>> Signed-off-by: Joe Hershberger
>> Cc: Joe Hershberger
>> Cc: Sandeep Paulraj
>> ---
>> .gitignore | 1 +
>> 1 files changed, 1 insertions(+), 0 deletions(-)
>>
Hi Joe,
> On Wed, Aug 10, 2011 at 7:29 AM, Detlev Zundel wrote:
>>> diff --git a/drivers/net/tsec.c b/drivers/net/tsec.c
>>> index 78ffc95..1805ca0 100644
>>> --- a/drivers/net/tsec.c
>>> +++ b/drivers/net/tsec.c
>>> @@ -250,8 +250,8 @@ static void startup_tsec(struct eth_device *dev)
>>> t
On Wed, Aug 10, 2011 at 9:10 AM, Andy Fleming wrote:
>
> On Aug 10, 2011, at 2:12 AM, Joe Hershberger wrote:
>
>> Previously only the last N were included based on the current one in use.
>>
>> Signed-off-by: Joe Hershberger
>> Cc: Joe Hershberger
>> Cc: Mingkai Hu
>> Cc: Andy Fleming
>> Cc: K
On Wed, Aug 10, 2011 at 7:29 AM, Detlev Zundel wrote:
>> diff --git a/drivers/net/tsec.c b/drivers/net/tsec.c
>> index 78ffc95..1805ca0 100644
>> --- a/drivers/net/tsec.c
>> +++ b/drivers/net/tsec.c
>> @@ -250,8 +250,8 @@ static void startup_tsec(struct eth_device *dev)
>> txIdx = 0;
>>
>>
Hi,
The patch which should come as a reply to this email contains a fastboot
gadget for u-boot. I don't claim that the code has been tested or
anything. I just want to post what I have now and get some feedback on it.
The code uses the "newer" gadget API which is used by the rndis gadget for
inst
Architecture includes.
# new file: arch/m68k/include/asm/immap_5307.h
# new file: arch/m68k/include/asm/m5307.h
Signed-off-by: Angelo Dureghello
---
diff --git a/arch/m68k/include/asm/immap_5307.h
b/arch/m68k/include/asm/immap_5307.h
new file mode 100644
index 000..cb58297
Other modified files:
# modified: arch/m68k/include/asm/cache.h
# modified: arch/m68k/include/asm/immap.h
# modified: arch/m68k/include/asm/timer.h
# modified: include/common.h
Signed-off-by: Angelo Dureghello
---
diff --git a/arch/m68k/include/asm/cache.h b/arc
Cpu architecture files.
# new file: arch/m68k/cpu/mcf530x/Makefile
# new file: arch/m68k/cpu/mcf530x/config.mk
# new file: arch/m68k/cpu/mcf530x/cpu.c
# new file: arch/m68k/cpu/mcf530x/cpu.h
# new file: arch/m68k/cpu/mcf530x/cpu_init.c
# new file: ar
The following patches add support for Freescale MCF5307 cpu.
Below a brief of the changes:
# On branch master
# Changes to be committed:
# (use "git reset HEAD ..." to unstage)
#
# new file: arch/m68k/cpu/mcf530x/Makefile
# new file: arch/m68k/cpu/mcf530x/config.mk
# new fi
On Tue, Aug 9, 2011 at 11:48 PM, Aneesh V wrote:
> Hi Anton,
>
> On Tuesday 09 August 2011 10:09 PM, Anton Staaf wrote:
>>
>> I'm not sure what the larger context of this change is, but it seems
>> like a bad idea to me. There are a lot of locations in U-Boot that
>
> Please see this thread for t
On Aug 8, 2011, at 3:47 PM, Kumar Gala wrote:
> From: Ramneek Mehresh
>
> Add UTMI and ULPI PHY support for USB controller on qoriq series of
> processors with internal UTMI PHY implemented, for example P1010/P1014
> - Use both getenv() and hwconfig to get USB phy type till getenv()
> is depr
Change the help message to be more helpful. Print argument format.
Fix MAX_NUM_PORTS to comply with v1 NXID format.
Signed-off-by: York Sun
---
board/freescale/common/sys_eeprom.c |2 +-
common/cmd_mac.c| 29 +
2 files changed, 18 insertions(
Am Mittwoch, den 03.08.2011, 21:21 +0200 schrieb Wolfgang Denk:
> Dear ich,
>
> In message <1312383540.4776.36.camel@debian> you wrote:
> >
> > I know that. But I am not able to port for sh platform to a newer
> > u-boot.
> >
> > > Please note that U-Boot v1.3.1 is about 4 years old and as such
On Aug 10, 2011, at 2:12 AM, Joe Hershberger wrote:
> Previously only the last N were included based on the current one in use.
>
> Signed-off-by: Joe Hershberger
> Cc: Joe Hershberger
> Cc: Mingkai Hu
> Cc: Andy Fleming
> Cc: Kumar Gala
> Cc: Detlev Zundel
I'm curious if you were seeing
Hi Marek,
On Wed, Aug 10, 2011 at 3:24 PM, Marek Vasut wrote:
> The mmc_send_status() function sets cmd.arg = 0. That's incorrect, so fix it.
>
> Signed-off-by: Marek Vasut
> ---
> drivers/mmc/mmc.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> V2: Take SPI mode into accoun
Hi Ajay,
On Wed, Aug 10, 2011 at 7:34 PM, Ajay Bhargav
wrote:
> This patch adds generic GPIO driver framework support for Marvell SoCs.
>
> To enable GPIO driver define CONFIG_MARVELL_GPIO and for GPIO commands
> define CONFIG_CMD_GPIO in your board configuration file.
>
> Signed-off-by: Ajay Bha
On Thu, 16 Jun 2011 21:03:01 +0100, Philip Hands wrote:
> On Thu, 16 Jun 2011 16:18:46 +0400, Alexei Ozhigov
> wrote:
> ...
> >
> > I am experiencing the same problem with SATA right now with
> > v2011.06-rc2 (tried also the latest master). If MVSATA_STATUS_TIMEOUT
> > in mvsata_ide_initialize_
Hi Marek,
> The mmc_send_status() function sets cmd.arg = 0. That's incorrect, so fix it.
Can you please use the --in-reply-to option of git-send-email (it
prompts for it when run interactively) to preserve threading for
superceding patches? Thanks!
It would also be nice if you included the com
Hi Joe,
> Previously only the last N were included based on the current one in use.
>
> Signed-off-by: Joe Hershberger
> Cc: Joe Hershberger
> Cc: Mingkai Hu
> Cc: Andy Fleming
> Cc: Kumar Gala
> Cc: Detlev Zundel
> ---
> drivers/net/tsec.c |4 ++--
> 1 files changed, 2 insertions(+), 2
Hi Gururaja,
> By "we" I meant the gr8 u-boot community. I know at present there
> isn't a place on web for u-boot but surely I would help if someone
> starts.
You really missed http://www.denx.de/wiki/U-Boot/WebHome up until now?
I'm looking forward to see your registration ;)
Cheers
Detlev
> -Original Message-
> From: Ajay Bhargav [mailto:ajay.bhar...@einfochips.com]
> Sent: Wednesday, August 10, 2011 5:05 PM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de; Ajay Bhargav
> Subject: [PATCH v5 1/2] gpio: Add GPIO driver framework for Marvell SoCs
>
> This patch adds generi
> -Original Message-
> From: Ajay Bhargav [mailto:ajay.bhar...@einfochips.com]
> Sent: Wednesday, August 10, 2011 5:05 PM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de; Ajay Bhargav
> Subject: [PATCH v5 2/2] gpio: Add GPIO driver for Marvell SoC Armada100
>
> This patch adds support
This patch adds generic GPIO driver framework support for Marvell SoCs.
To enable GPIO driver define CONFIG_MARVELL_GPIO and for GPIO commands
define CONFIG_CMD_GPIO in your board configuration file.
Signed-off-by: Ajay Bhargav
---
Changes for v2:
- mvgpio.h removed
- function ge
This patch adds support for generic GPIO driver framework for Marvell
SoC Armada100.
Signed-off-by: Ajay Bhargav
---
Changes for v2:
- Added function get_gpio_base
- GPIO base address added to armada100.h
Changes for v3:
- gpio register map moved to mvgpio.h
Changes for v4
> -Original Message-
> From: Ajay Bhargav [mailto:ajay.bhar...@einfochips.com]
> Sent: Wednesday, August 10, 2011 3:49 PM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de
> Subject: Re: [PATCH v4 2/2] gpio: Add GPIO driver for Marvell SoC
> Armada100
>
>
> - "Prafulla Wadaskar" w
Hi Scott,
> On 08/09/2011 02:03 PM, Belisko Marek wrote:
>> Hi,
>>
>> just curious. Why some commands entered to u-boot are repeated after
>> processing by pressing Enter key? Like tftp, print
>>
>> Thanks for clarification,
>
> It's useful for some commands like "md" that auto-advance. It
Hi Nag,
[...]
>> > +#define CONFIG_SYS_FLASH_SECT_SZ (128 << 10) /* 128KB */
>> > +#define CONFIG_ENV_OFFSET (CONFIG_SYS_FLASH_SECT_SZ * 3)
>> > +#define CONFIG_ENV_SIZE (128 << 10)
>>
>> Are you absolutely sure that you need 128 KiB of environment data?
>> Keep in min
Am 09.08.2011 21:46, schrieb Marek Vasut:
> On Tuesday, August 09, 2011 03:14:38 PM Stefan Herbrechtsmeier wrote:
>> Hi,
>>
>> after porting my board support from u-boot 2009.11 to 2011.06
>> together with adding the relocation support
>> the ATAGs passing don't work any more.
>>
>> I have add icac
Hi Nag,
> Thanks for the comments. It's a very good suggestion to add it as part of
> Command. Unfortunately, I am unable to locate the 'Clock' command source.
> I would greatly appreciate if you can point it for me.
"git grep -A 2 U_BOOT_CMD' is your friend.
Actually as far as I can see, there
From: Nagabhushana Netagunte
Add pin-mux support for NOR in board file and correspanding
macros to use NOR boot mode in configuration file.
Signed-off-by: Sudhakar Rajashekhara
Signed-off-by: Nagabhushana Netagunte
---
board/davinci/da8xxevm/da850evm.c | 51 +
From: Nagabhushana Netagunte
add support for DSP wake-up by default on DA850/OMAP-L138
during board initialization. Enable hwconfig environment and added
extra env setting through CONFIG_EXTRA_ENV_SETTINGS.
To prevent DSP from being woken up,set the environment variable as,
set hwconfig "dsp:wake
From: Nagabhushana Netagunte
there are cache coherency issues when using the DAVINCI Ethernet driver,
hence caches cant be used for da850 u-boot. As per new cache management
framework,if the caches are not used in u-boot, it needs to be explicitly
indicated through macros in config file. CACHE di
From: Manjunath Hadli
These are some of the patches which add features like NOR
support and a couple of fixes.
Fixes from last version from Denk and Withers's comments:
1. fixed commit message for cache usage patch
2. removed unnecessary undefs
3. used hwconfig for DSP wake patch instead of a n
From: Nagabhushana Netagunte
TX and RX channel numbers programmed as '1' during EMAC
teardown initialization is wrong. This patch fixes the
same by setting channel number to '0' which is used by U-boot.
Signed-off-by: Sugumar Natarajan
Signed-off-by: Nagabhushana Netagunte
---
drivers/net/dav
From: Sudhakar Rajashekhara
Modify clk_get() function in cpu file to work for
multiple PLL controllers.
Signed-off-by: Sudhakar Rajashekhara
Signed-off-by: Nagabhushana Netagunte
---
arch/arm/cpu/arm926ejs/davinci/cpu.c | 30 -
arch/arm/include/asm/arch-davin
From: Nagabhushana Netagunte
AHCLKR/UART1_RTS/GP0[11] pin needs to be configured for
NOR to work on Rev.3 EVM. When GP0[11] is low,
the SD0 interface will not work, but NOR flash will.
Signed-off-by: Rajashekhara, Sudhakar
Signed-off-by: Nagabhushana Netagunte
---
arch/arm/include/asm/arch-da
From: Nagabhushana Netagunte
Modify U-Boot prompt string from "DA850-evm >" to "U-Boot >".
Signed-off-by: Sudhakar Rajashekhara
Signed-off-by: Nagabhushana Netagunte
---
include/configs/da850evm.h |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/configs/da850e
From: Manjunathappa, Prakash
The AM18xx EVM contains winbond SPI flash instead of ST SPI flash in
comparison with logic PD da850/omap-l138 EVM. So enable configuration
to look for winbond flash.
Signed-off-by: Manjunathappa, Prakash
Signed-off-by: Nagabhushana Netagunte
---
include/configs/da
- "Prafulla Wadaskar" wrote:
> > -Original Message-
> > From: Ajay Bhargav [mailto:ajay.bhar...@einfochips.com]
> > Sent: Wednesday, August 10, 2011 2:47 PM
> > To: Prafulla Wadaskar
> > Cc: u-boot@lists.denx.de; Ajay Bhargav
> > Subject: [PATCH v4 2/2] gpio: Add GPIO driver for Marv
By "we" I meant the gr8 u-boot community. I know at present there isn't a place
on web for u-boot but surely I would help if someone starts.
Regards
Gururaja
> -Original Message-
> From: Detlev Zundel [mailto:d...@denx.de]
> Sent: Wednesday, August 10, 2011 3:39 PM
> To: Hebbar, Gururaja
Hi Chander,
[...]
>>> lease get rid of all these magic hard coded constants. Use symbolic
>>> names instead. If needed, auto-generate these from the respective C
>>> structs. If needed, create the C structs.
>>>
>>
>> I will change hard coded values to symbolic names
>>
>
> While doing this, I
Hi Gururaja,
> We need to make this sticky or add it into some wiki page.
Who exactly is we? :)
Well wikis are, ahem, wikis, i.e. changeable by everyone
Cheers
Detlev
--
I have always observed that the pretensions of all people are in
exact inverse ratio to their merits; this is one of th
Hi Albert,
> This tag NIOS2-5_0_0 keeps lingering in ARM repositories and should not
> be there. I regularly have to remove it from u-boot-arm because I keep
> catching it occasionally when recreating my u-boot-arm local copy and
> then fetching another ARM repo such as u-boot-atmel, u-boot-ma
> -Original Message-
> From: Ajay Bhargav [mailto:ajay.bhar...@einfochips.com]
> Sent: Wednesday, August 10, 2011 2:47 PM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de; Ajay Bhargav
> Subject: [PATCH v4 2/2] gpio: Add GPIO driver for Marvell SoC Armada100
>
> This patch adds support
Hi Reinhard,
> i run into a strange problem booting vxWorks on the cpci750 and vme8349
> using u-boot 2011.06.
>
> The decrementer slot contains old code. The problem is starting vxWorks
> with the data cache enabled.
>
> The code below fix the problem.
> It disable (and flush) the data cache, a
1 - 100 of 117 matches
Mail list logo