mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
NET: mvgbe: add support for Dove
Marvell Dove also uses mvgbe as ethernet driver, therefore add support for Dove to reuse the current driver. Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
This commit is contained in:
parent
cd3ca3ff49
commit
fb4879b3c7
2 changed files with 9 additions and 0 deletions
|
@ -43,6 +43,8 @@
|
||||||
#include <asm/arch/kirkwood.h>
|
#include <asm/arch/kirkwood.h>
|
||||||
#elif defined(CONFIG_ORION5X)
|
#elif defined(CONFIG_ORION5X)
|
||||||
#include <asm/arch/orion5x.h>
|
#include <asm/arch/orion5x.h>
|
||||||
|
#elif defined(CONFIG_DOVE)
|
||||||
|
#include <asm/arch/dove.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "mvgbe.h"
|
#include "mvgbe.h"
|
||||||
|
|
|
@ -308,10 +308,17 @@
|
||||||
#define EBAR_TARGET_GUNIT 0x00000007
|
#define EBAR_TARGET_GUNIT 0x00000007
|
||||||
|
|
||||||
/* Window attrib */
|
/* Window attrib */
|
||||||
|
#if defined(CONFIG_DOVE)
|
||||||
|
#define EBAR_DRAM_CS0 0x00000000
|
||||||
|
#define EBAR_DRAM_CS1 0x00000000
|
||||||
|
#define EBAR_DRAM_CS2 0x00000000
|
||||||
|
#define EBAR_DRAM_CS3 0x00000000
|
||||||
|
#else
|
||||||
#define EBAR_DRAM_CS0 0x00000E00
|
#define EBAR_DRAM_CS0 0x00000E00
|
||||||
#define EBAR_DRAM_CS1 0x00000D00
|
#define EBAR_DRAM_CS1 0x00000D00
|
||||||
#define EBAR_DRAM_CS2 0x00000B00
|
#define EBAR_DRAM_CS2 0x00000B00
|
||||||
#define EBAR_DRAM_CS3 0x00000700
|
#define EBAR_DRAM_CS3 0x00000700
|
||||||
|
#endif
|
||||||
|
|
||||||
/* DRAM Target interface */
|
/* DRAM Target interface */
|
||||||
#define EBAR_DRAM_NO_CACHE_COHERENCY 0x00000000
|
#define EBAR_DRAM_NO_CACHE_COHERENCY 0x00000000
|
||||||
|
|
Loading…
Add table
Reference in a new issue