From 95f9dda2165f045a7e1708885ee589878cc6f20b Mon Sep 17 00:00:00 2001 From: Wolfgang Denk Date: Sun, 9 Oct 2005 00:33:37 +0200 Subject: Eliminate hard-coded address of Ethernet transfer buffer on at91rm9200 Patch by Anders Larsen, 07 Oct 2005 The Atmel errata #11 states that the transfer buffer descriptor table must be aligned on a 16-word boundary. As it turned out, this is insufficient - it seems the table must be aligned on a boundary at least as large as the table itself (in Linux this is not an issue - the table is aligned on a PAGE_SIZE (4096) boundary). --- board/csb637/config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/csb637') diff --git a/board/csb637/config.mk b/board/csb637/config.mk index 7e1457da8..4c6f63113 100644 --- a/board/csb637/config.mk +++ b/board/csb637/config.mk @@ -1 +1 @@ -TEXT_BASE = 0x23fe0000 +TEXT_BASE = 0x23fc0000 -- cgit v1.2.3