diff options
author | Chen-Yu Tsai <wens@csie.org> | 2016-03-30 00:26:52 +0800 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2016-03-31 17:04:08 +0200 |
commit | 93bac9531078cd615b5e27dc313f0df84d8d29bd (patch) | |
tree | 9d753a2dd899fec6464067db42804c96ee58b784 /arch/arm/include/asm/arch-sunxi/clock_sun8i_a83t.h | |
parent | 0c935acb9e5dcc0b5889c95a5f3d4163c8638c70 (diff) | |
download | u-boot-imx-93bac9531078cd615b5e27dc313f0df84d8d29bd.zip u-boot-imx-93bac9531078cd615b5e27dc313f0df84d8d29bd.tar.gz u-boot-imx-93bac9531078cd615b5e27dc313f0df84d8d29bd.tar.bz2 |
sunxi: clk: Fix USB PHY clock macros for A83T
The A83T has 3 PHYs, the last one being HSIC, which has 2 clocks.
Also there is only 1 OHCI.
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'arch/arm/include/asm/arch-sunxi/clock_sun8i_a83t.h')
-rw-r--r-- | arch/arm/include/asm/arch-sunxi/clock_sun8i_a83t.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/include/asm/arch-sunxi/clock_sun8i_a83t.h b/arch/arm/include/asm/arch-sunxi/clock_sun8i_a83t.h index 5f93d7f..5e1346e 100644 --- a/arch/arm/include/asm/arch-sunxi/clock_sun8i_a83t.h +++ b/arch/arm/include/asm/arch-sunxi/clock_sun8i_a83t.h @@ -224,14 +224,14 @@ struct sunxi_ccm_reg { #define CCM_USB_CTRL_PHY0_RST (0x1 << 0) #define CCM_USB_CTRL_PHY1_RST (0x1 << 1) -#define CCM_USB_CTRL_PHY2_RST (0x1 << 2) +#define CCM_USB_CTRL_HSIC_RST (0x1 << 2) /* There is no global phy clk gate on sun6i, define as 0 */ #define CCM_USB_CTRL_PHYGATE 0 #define CCM_USB_CTRL_PHY0_CLK (0x1 << 8) #define CCM_USB_CTRL_PHY1_CLK (0x1 << 9) -#define CCM_USB_CTRL_PHY2_CLK (0x1 << 10) +#define CCM_USB_CTRL_HSIC_CLK (0x1 << 10) +#define CCM_USB_CTRL_12M_CLK (0x1 << 11) #define CCM_USB_CTRL_OHCI0_CLK (0x1 << 16) -#define CCM_USB_CTRL_OHCI1_CLK (0x1 << 17) #define CCM_GMAC_CTRL_TX_CLK_SRC_MII 0x0 #define CCM_GMAC_CTRL_TX_CLK_SRC_EXT_RGMII 0x1 |