]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
orion5x: add USB host ehci-marvell support
authorAlbert ARIBAUD <albert.u.boot@aribaud.net>
Sun, 15 Jan 2012 22:08:40 +0000 (22:08 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Sun, 12 Feb 2012 09:11:28 +0000 (10:11 +0100)
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
arch/arm/include/asm/arch-orion5x/orion5x.h
drivers/usb/host/ehci-marvell.c

index 18225b9b49624fa144cfd15f81858fab8720dd2d..b0d3368b6e6732d1c794b49d5585d7e62d6c04fb 100644 (file)
 #define MAX_MVGBE_DEVS 1
 #define MVGBE0_BASE    ORION5X_EGIGA_BASE
 
+/* Orion5x USB Host controller is port 1 */
+#define MVUSB0_BASE                    ORION5X_USB20_HOST_PORT_BASE
+#define MVUSB0_CPU_ATTR_DRAM_CS0       ORION5X_ATTR_DRAM_CS0
+#define MVUSB0_CPU_ATTR_DRAM_CS1       ORION5X_ATTR_DRAM_CS1
+#define MVUSB0_CPU_ATTR_DRAM_CS2       ORION5X_ATTR_DRAM_CS2
+#define MVUSB0_CPU_ATTR_DRAM_CS3       ORION5X_ATTR_DRAM_CS3
+
+/* Kirkwood CPU memory windows */
+#define MVCPU_WIN_CTRL_DATA    ORION5X_CPU_WIN_CTRL_DATA
+#define MVCPU_WIN_ENABLE       ORION5X_WIN_ENABLE
+#define MVCPU_WIN_DISABLE      ORION5X_WIN_DISABLE
+
 #define CONFIG_MAX_RAM_BANK_SIZE               (64*1024*1024)
 
 /* include here SoC variants. 5181, 5281, 6183 should go here when
index e342d78b5752aa842c8efb8eb312156c50b3adf9..89c8af72874cf763ed1a84d7e856944191d7f92d 100644 (file)
 #include "ehci.h"
 #include "ehci-core.h"
 #include <asm/arch/cpu.h>
+
+#if defined(CONFIG_KIRKWOOD)
 #include <asm/arch/kirkwood.h>
+#elif defined(CONFIG_ORION5X)
+#include <asm/arch/orion5x.h>
+#endif
 
 DECLARE_GLOBAL_DATA_PTR;