Hello,
I have downloaded following 3 patches from this mailing list for EP852
and EP866 boards but am unable to patch it to U-boot 1.1.0 nor to U-Boot
1.1.6 since no readme file is available with the patch.
ep852ep866ep85xxA.patch.gz
ep852ep866ep85xxB.patch.gz
ep852.diff.gz
To patch
Hi Daniel,
On Fri, Nov 28, 2008 at 8:16 AM, Daniel Mack <[EMAIL PROTECTED]> wrote:
> Hi,
>
> the board I'm currently working on has an ASIX AX88796 NE2000 clone but
> no EEPROM attached to it. Hence, the get_prom() routine returns zeros
> only so the system won't work.
>
> This patch takes the MA
Is this patch for any u-boot version?
Thanks!
--
View this message in context:
http://www.nabble.com/-PATCH--Add-AT2440-%28S3C2440%29-board-support-tp15283893p20743672.html
Sent from the Uboot - Users mailing list archive at Nabble.com.
___
U-Boot mai
Hi Remy,
On Fri, Nov 28, 2008 at 10:39:49PM +0100, Remy Bohmer wrote:
> > I'm hunting weird behaviours with the gd_t global data pointer on my
> > PXA300 board board. The pointer gets set up fine in lib_arm/boot.c and
> > gd->bd is filled in my board specific code. However, after the tftp
> > down
Hi,
there are some bits in PXA3xx' CKENA/CKENB registers which need to be
set always, according to the documentation. They are actually different
for the three families, but as there is no way to keep track of them yet
in U-Boot, I'd rather apply this patch and enable some clocks on some
processor
On 16:37 Fri 28 Nov , Jerry Van Baren wrote:
> Daniel Mack wrote:
> > Hi,
> >
> > while digging thru the sources to find out why U-Boot won't start my
> > Linux kernel, I stumbled over lib_arm/bootm.c and its check for the falg
> > variable. I wonder how this ever worked as the condition is re
Hello Daniel,
> I'm hunting weird behaviours with the gd_t global data pointer on my
> PXA300 board board. The pointer gets set up fine in lib_arm/boot.c and
> gd->bd is filled in my board specific code. However, after the tftp
> download is finished, the content of these structures have been
> de
Daniel Mack wrote:
> Hi,
>
> while digging thru the sources to find out why U-Boot won't start my
> Linux kernel, I stumbled over lib_arm/bootm.c and its check for the falg
> variable. I wonder how this ever worked as the condition is really heavy
> to match unless BOOTM_STATE_OS_GO is 0 which it
On 20:36 Fri 28 Nov , Daniel Mack wrote:
> Hi,
>
> while digging thru the sources to find out why U-Boot won't start my
> Linux kernel, I stumbled over lib_arm/bootm.c and its check for the falg
> variable. I wonder how this ever worked as the condition is really heavy
> to match unless BOOTM_
Hi,
I'm hunting weird behaviours with the gd_t global data pointer on my
PXA300 board board. The pointer gets set up fine in lib_arm/boot.c and
gd->bd is filled in my board specific code. However, after the tftp
download is finished, the content of these structures have been
destroyed and overwrit
Hi,
while digging thru the sources to find out why U-Boot won't start my
Linux kernel, I stumbled over lib_arm/bootm.c and its check for the falg
variable. I wonder how this ever worked as the condition is really heavy
to match unless BOOTM_STATE_OS_GO is 0 which it isn't.
So I guess the patch be
Hi,
the board I'm currently working on has an ASIX AX88796 NE2000 clone but
no EEPROM attached to it. Hence, the get_prom() routine returns zeros
only so the system won't work.
This patch takes the MAC address given by CONFIG_ETHADDR and translates
it to numeric values. This could probably go to
Hi,
the net/net.c implemenation of timeouts assumes that get_timer() returns
values in milliseconds. As this is true for most platforms, it does not
apply to PXA3x where the OSCR register increments with more than 3MHz.
The following patch fixes the problem by calculation with the
CONFIG_SYS_HZ v
Hello,
AMCC PPC460EX canyonlands board with an FPGA PCIe end point:
u-boot sees the end point, but Linux does not:
U-Boot 1.3.3-00249-ga524e11 (Jun 30 2008 - 16:05:51)
CPU: AMCC PowerPC 460EX Rev. A at 800 MHz (PLB=200, OPB=100, EBC=100 MHz)
<...>
Board: Canyonlands - AMCC PPC460EX Evaluation
The default DDR freq is 400MHz or 800M data rate,
the old settings is pure wrong for the default case.
Signed-off-by: Dave Liu <[EMAIL PROTECTED]>
---
include/configs/MPC8572DS.h | 26 +-
1 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/include/configs/MP
we load the secondary stage u-boot image from NAND to
system memory by nand_load, we have not flush data cache
to memory, not invalidate instruction cache before we
jump to RAM. when the system is cache enable and the
TLB/page attribute of system memory is cacheable, it will
cause issue.
- 83xx fa
Add USB ehci freescale support
Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]>
---
drivers/usb/Makefile |1 +
drivers/usb/usb_ehci_fsl.c | 99
drivers/usb/usb_ehci_fsl.h | 86 ++
3 files changed,
Add USB ehci core support
Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]>
---
drivers/usb/Makefile|1 +
drivers/usb/usb_ehci.h | 121
drivers/usb/usb_ehci_core.c | 634 +++
drivers/usb/usb_ehci_core.h | 29 ++
4 files cha
Prepare USB layer for ehci support
Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]>
---
common/cmd_usb.c |2 +-
common/usb.c |2 +-
include/usb.h | 19 +++
include/usb_defs.h | 10 ++
4 files changed, 23 insertions(+), 10 deletions(-)
diff --
This is a series of patches based on the work of Tor Krill and
other people. I have done a cleanup of the code. The original code
was tested, but not this clean up version. I'm waiting for an
avalaible board to test the patch set.
The patch set contains:
- usb patch for prepare the usb layer to ac
Dear Dirk,
In message <[EMAIL PROTECTED]> you wrote:
>
> Thanks for the review. I'm busys cleaning up the code, but at one point
> I need some help:
...
> You are right, there is no RAM test necessary here. I want to use
> auto-sizing with memsize(), but I did not find any refererences to that
>
Dear Remy,
I have checked patches and I think there are OK.
Also, I have aplied [patch 1/2] and [patch 2/2] on git u-boot version.
Then I have copied patched files (fat.h and fat.c) on our customized
u-boot-1.1.6 version. Finally I have built and installed u-boot on our
custom board.
I have exec
Hello Wolfgang,
Thanks for the review. I'm busys cleaning up the code, but at one point
I need some help:
> >
> +/
> > +*
> > + * initdram -- doesn't use serial presence detect.
> > + *
> > + * Assumes:256 MB, ECC, no
23 matches
Mail list logo