提交 3fcb00be 编写于 作者: T Tom Rini

Merge branch 'master' of git://git.denx.de/u-boot-usb

...@@ -275,9 +275,13 @@ struct sunxi_ccm_reg { ...@@ -275,9 +275,13 @@ struct sunxi_ccm_reg {
* These are EHCI1 - EHCI3 in the datasheet (EHCI0 is for the OTG) we call * These are EHCI1 - EHCI3 in the datasheet (EHCI0 is for the OTG) we call
* them 0 - 2 like they were called on older SoCs. * them 0 - 2 like they were called on older SoCs.
*/ */
#define AHB_GATE_OFFSET_USB_OHCI3 31
#define AHB_GATE_OFFSET_USB_OHCI2 30
#define AHB_GATE_OFFSET_USB_OHCI1 29
#define AHB_GATE_OFFSET_USB_OHCI0 28 #define AHB_GATE_OFFSET_USB_OHCI0 28
#define AHB_GATE_OFFSET_USB_EHCI2 27 #define AHB_GATE_OFFSET_USB_EHCI3 27
#define AHB_GATE_OFFSET_USB_EHCI1 26 #define AHB_GATE_OFFSET_USB_EHCI2 26
#define AHB_GATE_OFFSET_USB_EHCI1 25
#define AHB_GATE_OFFSET_USB_EHCI0 24 #define AHB_GATE_OFFSET_USB_EHCI0 24
#elif defined(CONFIG_MACH_SUN50I) #elif defined(CONFIG_MACH_SUN50I)
#define AHB_GATE_OFFSET_USB_OHCI0 28 #define AHB_GATE_OFFSET_USB_OHCI0 28
...@@ -290,7 +294,7 @@ struct sunxi_ccm_reg { ...@@ -290,7 +294,7 @@ struct sunxi_ccm_reg {
#define AHB_GATE_OFFSET_USB_EHCI1 27 #define AHB_GATE_OFFSET_USB_EHCI1 27
#define AHB_GATE_OFFSET_USB_EHCI0 26 #define AHB_GATE_OFFSET_USB_EHCI0 26
#endif #endif
#ifdef CONFIG_MACH_SUN50I #if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUNXI_H3_H5)
#define AHB_GATE_OFFSET_USB0 23 #define AHB_GATE_OFFSET_USB0 23
#elif !defined(CONFIG_MACH_SUN8I_R40) #elif !defined(CONFIG_MACH_SUN8I_R40)
#define AHB_GATE_OFFSET_USB0 24 #define AHB_GATE_OFFSET_USB0 24
......
...@@ -63,10 +63,11 @@ ...@@ -63,10 +63,11 @@
#ifdef CONFIG_SUNXI_GEN_SUN6I #ifdef CONFIG_SUNXI_GEN_SUN6I
#if defined(CONFIG_MACH_SUNXI_H3_H5) || defined(CONFIG_MACH_SUN50I) #if defined(CONFIG_MACH_SUNXI_H3_H5) || defined(CONFIG_MACH_SUN50I)
#define SUNXI_USBPHY_BASE 0x01c19000 #define SUNXI_USBPHY_BASE 0x01c19000
#define SUNXI_USB0_BASE 0x01c1a000 #define SUNXI_USB0_BASE SUNXI_USBPHY_BASE
#define SUNXI_USB1_BASE 0x01c1b000 #define SUNXI_USB1_BASE 0x01c1a000
#define SUNXI_USB2_BASE 0x01c1c000 #define SUNXI_USB2_BASE 0x01c1b000
#define SUNXI_USB3_BASE 0x01c1d000 #define SUNXI_USB3_BASE 0x01c1c000
#define SUNXI_USB4_BASE 0x01c1d000
#else #else
#define SUNXI_USB0_BASE 0x01c19000 #define SUNXI_USB0_BASE 0x01c19000
#define SUNXI_USB1_BASE 0x01c1a000 #define SUNXI_USB1_BASE 0x01c1a000
......
...@@ -17,8 +17,10 @@ ...@@ -17,8 +17,10 @@
#include <generic-phy.h> #include <generic-phy.h>
#ifdef CONFIG_SUNXI_GEN_SUN4I #ifdef CONFIG_SUNXI_GEN_SUN4I
#define BASE_DIST 0x8000
#define AHB_CLK_DIST 2 #define AHB_CLK_DIST 2
#else #else
#define BASE_DIST 0x1000
#define AHB_CLK_DIST 1 #define AHB_CLK_DIST 1
#endif #endif
...@@ -47,6 +49,7 @@ static int ehci_usb_probe(struct udevice *dev) ...@@ -47,6 +49,7 @@ static int ehci_usb_probe(struct udevice *dev)
struct ehci_hccr *hccr = (struct ehci_hccr *)devfdt_get_addr(dev); struct ehci_hccr *hccr = (struct ehci_hccr *)devfdt_get_addr(dev);
struct ehci_hcor *hcor; struct ehci_hcor *hcor;
int extra_ahb_gate_mask = 0; int extra_ahb_gate_mask = 0;
u8 reg_mask = 0;
int phys, ret; int phys, ret;
priv->cfg = (const struct ehci_sunxi_cfg *)dev_get_driver_data(dev); priv->cfg = (const struct ehci_sunxi_cfg *)dev_get_driver_data(dev);
...@@ -86,10 +89,11 @@ no_phy: ...@@ -86,10 +89,11 @@ no_phy:
* This should go away once we've moved to the driver model for * This should go away once we've moved to the driver model for
* clocks resp. phys. * clocks resp. phys.
*/ */
reg_mask = ((uintptr_t)hccr - SUNXI_USB1_BASE) / BASE_DIST;
priv->ahb_gate_mask = 1 << AHB_GATE_OFFSET_USB_EHCI0; priv->ahb_gate_mask = 1 << AHB_GATE_OFFSET_USB_EHCI0;
extra_ahb_gate_mask = priv->cfg->extra_ahb_gate_mask; extra_ahb_gate_mask = priv->cfg->extra_ahb_gate_mask;
priv->ahb_gate_mask <<= phys * AHB_CLK_DIST; priv->ahb_gate_mask <<= reg_mask * AHB_CLK_DIST;
extra_ahb_gate_mask <<= phys * AHB_CLK_DIST; extra_ahb_gate_mask <<= reg_mask * AHB_CLK_DIST;
setbits_le32(&priv->ccm->ahb_gate0, setbits_le32(&priv->ccm->ahb_gate0,
priv->ahb_gate_mask | extra_ahb_gate_mask); priv->ahb_gate_mask | extra_ahb_gate_mask);
......
...@@ -17,8 +17,10 @@ ...@@ -17,8 +17,10 @@
#include <generic-phy.h> #include <generic-phy.h>
#ifdef CONFIG_SUNXI_GEN_SUN4I #ifdef CONFIG_SUNXI_GEN_SUN4I
#define BASE_DIST 0x8000
#define AHB_CLK_DIST 2 #define AHB_CLK_DIST 2
#else #else
#define BASE_DIST 0x1000
#define AHB_CLK_DIST 1 #define AHB_CLK_DIST 1
#endif #endif
...@@ -33,9 +35,9 @@ struct ohci_sunxi_cfg { ...@@ -33,9 +35,9 @@ struct ohci_sunxi_cfg {
}; };
struct ohci_sunxi_priv { struct ohci_sunxi_priv {
ohci_t ohci;
struct sunxi_ccm_reg *ccm; struct sunxi_ccm_reg *ccm;
u32 *reset0_cfg; u32 *reset0_cfg;
ohci_t ohci;
int ahb_gate_mask; /* Mask of ahb_gate0 clk gate bits for this hcd */ int ahb_gate_mask; /* Mask of ahb_gate0 clk gate bits for this hcd */
int usb_gate_mask; /* Mask of usb_clk_cfg clk gate bits for this hcd */ int usb_gate_mask; /* Mask of usb_clk_cfg clk gate bits for this hcd */
struct phy phy; struct phy phy;
...@@ -48,6 +50,7 @@ static int ohci_usb_probe(struct udevice *dev) ...@@ -48,6 +50,7 @@ static int ohci_usb_probe(struct udevice *dev)
struct ohci_sunxi_priv *priv = dev_get_priv(dev); struct ohci_sunxi_priv *priv = dev_get_priv(dev);
struct ohci_regs *regs = (struct ohci_regs *)devfdt_get_addr(dev); struct ohci_regs *regs = (struct ohci_regs *)devfdt_get_addr(dev);
int extra_ahb_gate_mask = 0; int extra_ahb_gate_mask = 0;
u8 reg_mask = 0;
int phys, ret; int phys, ret;
priv->cfg = (const struct ohci_sunxi_cfg *)dev_get_driver_data(dev); priv->cfg = (const struct ohci_sunxi_cfg *)dev_get_driver_data(dev);
...@@ -89,12 +92,13 @@ no_phy: ...@@ -89,12 +92,13 @@ no_phy:
* This should go away once we've moved to the driver model for * This should go away once we've moved to the driver model for
* clocks resp. phys. * clocks resp. phys.
*/ */
reg_mask = ((uintptr_t)regs - (SUNXI_USB1_BASE + 0x400)) / BASE_DIST;
priv->ahb_gate_mask = 1 << AHB_GATE_OFFSET_USB_OHCI0; priv->ahb_gate_mask = 1 << AHB_GATE_OFFSET_USB_OHCI0;
extra_ahb_gate_mask = priv->cfg->extra_ahb_gate_mask; extra_ahb_gate_mask = priv->cfg->extra_ahb_gate_mask;
priv->usb_gate_mask = CCM_USB_CTRL_OHCI0_CLK; priv->usb_gate_mask = CCM_USB_CTRL_OHCI0_CLK;
priv->ahb_gate_mask <<= phys * AHB_CLK_DIST; priv->ahb_gate_mask <<= reg_mask * AHB_CLK_DIST;
extra_ahb_gate_mask <<= phys * AHB_CLK_DIST; extra_ahb_gate_mask <<= reg_mask * AHB_CLK_DIST;
priv->usb_gate_mask <<= phys; priv->usb_gate_mask <<= reg_mask;
setbits_le32(&priv->ccm->ahb_gate0, setbits_le32(&priv->ccm->ahb_gate0,
priv->ahb_gate_mask | extra_ahb_gate_mask); priv->ahb_gate_mask | extra_ahb_gate_mask);
......
...@@ -359,7 +359,7 @@ typedef struct ...@@ -359,7 +359,7 @@ typedef struct
} urb_priv_t; } urb_priv_t;
#define URB_DEL 1 #define URB_DEL 1
#define NUM_EDS 8 /* num of preallocated endpoint descriptors */ #define NUM_EDS 32 /* num of preallocated endpoint descriptors */
#define NUM_TD 64 /* we need more TDs than EDs */ #define NUM_TD 64 /* we need more TDs than EDs */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册