1 // SPDX-License-Identifier: GPL-2.0+
3 // Copyright (C) 2011 Samsung Electronics Co.Ltd
4 // Author: Joonyoung Shim <jy0922.shim@samsung.com>
7 #include <linux/delay.h>
10 #include <linux/platform_device.h>
13 #include <plat/usb-phy.h>
16 #include "regs-usb-hsotg-phy.h"
18 static int s3c_usb_otgphy_init(struct platform_device
*pdev
)
23 writel(readl(S3C64XX_OTHERS
) | S3C64XX_OTHERS_USBMASK
, S3C64XX_OTHERS
);
25 /* set clock frequency for PLL */
26 phyclk
= readl(S3C_PHYCLK
) & ~S3C_PHYCLK_CLKSEL_MASK
;
28 xusbxti
= clk_get(&pdev
->dev
, "xusbxti");
29 if (xusbxti
&& !IS_ERR(xusbxti
)) {
30 switch (clk_get_rate(xusbxti
)) {
32 phyclk
|= S3C_PHYCLK_CLKSEL_12M
;
35 phyclk
|= S3C_PHYCLK_CLKSEL_24M
;
39 /* default reference clock */
45 /* TODO: select external clock/oscillator */
46 writel(phyclk
| S3C_PHYCLK_CLK_FORCE
, S3C_PHYCLK
);
48 /* set to normal OTG PHY */
49 writel((readl(S3C_PHYPWR
) & ~S3C_PHYPWR_NORMAL_MASK
), S3C_PHYPWR
);
52 /* reset OTG PHY and Link */
53 writel(S3C_RSTCON_PHY
| S3C_RSTCON_HCLK
| S3C_RSTCON_PHYCLK
,
55 udelay(20); /* at-least 10uS */
56 writel(0, S3C_RSTCON
);
61 static int s3c_usb_otgphy_exit(struct platform_device
*pdev
)
63 writel((readl(S3C_PHYPWR
) | S3C_PHYPWR_ANALOG_POWERDOWN
|
64 S3C_PHYPWR_OTG_DISABLE
), S3C_PHYPWR
);
66 writel(readl(S3C64XX_OTHERS
) & ~S3C64XX_OTHERS_USBMASK
, S3C64XX_OTHERS
);
71 int s5p_usb_phy_init(struct platform_device
*pdev
, int type
)
73 if (type
== USB_PHY_TYPE_DEVICE
)
74 return s3c_usb_otgphy_init(pdev
);
79 int s5p_usb_phy_exit(struct platform_device
*pdev
, int type
)
81 if (type
== USB_PHY_TYPE_DEVICE
)
82 return s3c_usb_otgphy_exit(pdev
);