blob: 27c4658670d97ea71cb34a2c6aa362c8ce3e6bd5 [file] [log] [blame]
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
*/
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/of.h>
#include <linux/io.h>
#include <linux/usb/phy_companion.h>
#include <linux/clk.h>
#include <linux/err.h>
#include <linux/pm_runtime.h>
#include <linux/delay.h>
#include <linux/usb/phy.h>
#include <linux/amlogic/power_ctrl.h>
#include <linux/amlogic/usb-v2.h>
#include <linux/amlogic/usbtype.h>
#include <linux/amlogic/cpu_version.h>
#include "../phy/phy-aml-new-usb-v2.h"
#include <linux/clk.h>
struct amlogic_usb_v2 *g_crg_drd_phy2[2];
char name_crg[32];
#define TUNING_DISCONNECT_THRESHOLD 0x3c
static void usb_set_calibration_trim
(void __iomem *reg, struct amlogic_usb_v2 *phy)
{
u32 value = 0;
u32 cali, i;
u8 cali_en;
if (!phy->usb_phy_trim_reg) {
dev_err(phy->dev, "Not usb-phy-trim-reg\n");
return;
}
cali = readl(phy->usb_phy_trim_reg);
cali_en = (cali >> 12) & 0x1;
cali = cali >> 8;
if (cali_en) {
cali = cali & 0xf;
if (cali > 12)
cali = 12;
} else {
cali = phy->pll_setting[4];
}
value = readl(reg + 0x10);
value &= (~0xfff);
for (i = 0; i < cali; i++)
value |= (1 << i);
writel(value, reg + 0x10);
dev_info(phy->dev, "phy trim value= 0x%08x\n", value);
}
static void set_trim_initvalue
(struct amlogic_usb_v2 *phy, void __iomem *reg, int port)
{
u32 val;
if (!phy)
return;
val = readl(reg + 0x10);
phy->phy_trim_initvalue[port] = val;
val = readl(reg + 0x0c);
phy->phy_0xc_initvalue[port] = val;
}
static void set_usb_phy_trim_tuning
(struct usb_phy *x, int port, int default_val)
{
void __iomem *phy_reg_base;
u32 value;
struct amlogic_usb_v2 *aml_phy =
container_of(x, struct amlogic_usb_v2, phy);
if (!aml_phy)
return;
if (aml_phy->phy_version == 0)
return;
if (port > aml_phy->portnum)
return;
if (default_val == aml_phy->phy_trim_state[port]) {
if (default_val == 0)
default_val = 1;
else
return;
}
phy_reg_base = aml_phy->phy_cfg[port];
dev_info(aml_phy->dev, "---%s port(%d) tuning for host cf(%ps)--\n",
default_val ? "Recovery" : "Set",
port, __builtin_return_address(0));
if (!default_val) {
value = readl(phy_reg_base + 0x0c);
value |= 0x07;
writel(value, phy_reg_base + 0x0c);
writel(0x8000fff, phy_reg_base + 0x10);
writel(0x78000, phy_reg_base + 0x34);
} else {
writel(aml_phy->phy_0xc_initvalue[port], phy_reg_base + 0x0c);
writel(aml_phy->phy_trim_initvalue[port], phy_reg_base + 0x10);
writel(0x78000, phy_reg_base + 0x34);
}
aml_phy->phy_trim_state[port] = default_val;
}
static void set_usb_pll(struct amlogic_usb_v2 *phy, void __iomem *reg)
{
u32 val;
/* TO DO set usb PLL */
writel((0x30000000 | (phy->pll_setting[0])), reg + 0x40);
writel(phy->pll_setting[1], reg + 0x44);
writel(phy->pll_setting[2], reg + 0x48);
usleep_range(99, 100);
writel((0x10000000 | (phy->pll_setting[0])), reg + 0x40);
/**write 0x0c must write 0x78000 to 0x34**/
writel(TUNING_DISCONNECT_THRESHOLD, reg + 0xC);
/* PHY Tune */
if (g_crg_drd_phy2[phy->phy_id]) {
if (g_crg_drd_phy2[phy->phy_id]->phy_version) {
writel(phy->pll_setting[3], reg + 0x50);
writel(0x2a, reg + 0x54);
/**phy_version == 3, 0x10 set value in usb_set_calibration_trim**/
/**phy_version == 3, 0x08 no longer contains the default value of 0x10**/
if (g_crg_drd_phy2[phy->phy_id]->phy_version != 3) {
val = readl(reg + 0x08);
val &= 0xfff;
if (val == 0)
val = 0x800001f;
writel(val | readl(reg + 0x10), reg + 0x10);
}
/*new disconnect threshold 0x38: t3 bit[27-28], t7,s4 bit[26-27] */
val = readl(reg + 0x38);
if (is_meson_s4_cpu() || is_meson_s4d_cpu() ||
is_meson_t7_cpu()) {
val &= ~0xc000000;
val |= (phy->pll_dis_thred_enhance << 26 & 0xc000000);
} else {
val &= ~0x18000000;
val |= (phy->pll_dis_thred_enhance << 27 & 0x18000000);
}
writel(val, reg + 0x38);
writel(0x78000, reg + 0x34);
} else {
writel(phy->pll_setting[3], reg + 0x50);
writel(phy->pll_setting[4], reg + 0x10);
writel(0, reg + 0x38);
writel(phy->pll_setting[5], reg + 0x34);
}
}
}
static void amlogic_crg_drd_usb2_set_usb_vbus_power
(struct gpio_desc *usb_gd, int pin, char is_power_on)
{
if (is_power_on)
/*set vbus on by gpio*/
gpiod_direction_output(usb_gd, 1);
else
/*set vbus off by gpio first*/
gpiod_direction_output(usb_gd, 0);
}
static void amlogic_crg_drd_usb2_set_vbus_power
(struct amlogic_usb_v2 *phy, char is_power_on)
{
if (phy->vbus_power_pin != -1)
amlogic_crg_drd_usb2_set_usb_vbus_power(phy->usb_gpio_desc,
phy->vbus_power_pin, is_power_on);
}
static int amlogic_crg_drd_usb2_init(struct usb_phy *x)
{
int i, j, cnt;
struct amlogic_usb_v2 *phy = phy_to_amlusb(x);
struct u2p_aml_regs_v2 u2p_aml_regs;
union u2p_r0_v2 reg0;
union u2p_r1_v2 reg1;
u32 val;
u32 temp = 0;
u32 portnum = phy->portnum;
size_t mask = 0;
amlogic_crg_drd_usb2_set_vbus_power(phy, 1);
mask = (size_t)phy->reset_regs & 0xf;
if (phy->suspend_flag) {
if (phy->phy.flags == AML_USB2_PHY_ENABLE)
clk_prepare_enable(phy->clk);
}
for (i = 0; i < portnum; i++)
temp = temp | (1 << phy->phy_reset_level_bit[i]);
val = readl((void __iomem *)
((unsigned long)phy->reset_regs + (phy->reset_level - mask)));
writel((val | temp), (void __iomem *)
((unsigned long)phy->reset_regs + (phy->reset_level - mask)));
amlogic_crg_drd_usbphy_reset(phy);
for (i = 0; i < phy->portnum; i++) {
for (j = 0; j < 2; j++) {
u2p_aml_regs.u2p_r_v2[j] = (void __iomem *)
((unsigned long)phy->regs + 4 * j);
}
reg0.d32 = readl(u2p_aml_regs.u2p_r_v2[0]);
reg0.b.POR = 1;
if (phy->suspend_flag == 0) {
reg0.b.host_device = 1;
reg0.b.IDPULLUP0 = 1;
reg0.b.DRVVBUS0 = 1;
}
writel(reg0.d32, u2p_aml_regs.u2p_r_v2[0]);
}
usleep_range(9, 10);
amlogic_crg_drd_usbphy_reset_phycfg(phy, phy->portnum);
usleep_range(49, 50);
for (i = 0; i < phy->portnum; i++) {
for (j = 0; j < 2; j++) {
u2p_aml_regs.u2p_r_v2[j] = (void __iomem *)
((unsigned long)phy->regs + 4 * j);
}
usb_set_calibration_trim(phy->phy_cfg[i], phy);
/* ID DETECT: usb2_otg_aca_en set to 0 */
/* usb2_otg_iddet_en set to 1 */
writel(readl(phy->phy_cfg[i] + 0x54) & (~(1 << 2)),
(phy->phy_cfg[i] + 0x54));
reg1.d32 = readl(u2p_aml_regs.u2p_r_v2[1]);
cnt = 0;
while (reg1.b.phy_rdy != 1) {
reg1.d32 = readl(u2p_aml_regs.u2p_r_v2[1]);
/*we wait phy ready max 1ms, common is 100us*/
if (cnt > 200)
break;
cnt++;
udelay(5);
}
}
/* step 7: pll setting */
for (i = 0; i < phy->portnum; i++) {
set_usb_pll(phy, phy->phy_cfg[i]);
set_trim_initvalue(phy, phy->phy_cfg[i], i);
}
if (phy->suspend_flag)
phy->suspend_flag = 0;
return 0;
}
int amlogic_crg_device_usb2_init(u32 phy_id)
{
struct usb_phy *x;
int i, j, cnt;
struct amlogic_usb_v2 *phy;
struct u2p_aml_regs_v2 u2p_aml_regs;
union u2p_r0_v2 reg0;
union u2p_r1_v2 reg1;
u32 val;
u32 temp = 0;
u32 portnum;
size_t mask = 0;
x = &g_crg_drd_phy2[phy_id]->phy;
phy = phy_to_amlusb(x);
portnum = phy->portnum;
amlogic_crg_drd_usb2_set_vbus_power(phy, 0);
mask = (size_t)phy->reset_regs & 0xf;
if (phy->suspend_flag) {
if (phy->phy.flags == AML_USB2_PHY_ENABLE)
clk_prepare_enable(phy->clk);
}
for (i = 0; i < portnum; i++)
temp = temp | (1 << phy->phy_reset_level_bit[i]);
val = readl((void __iomem *)
((unsigned long)phy->reset_regs + (phy->reset_level - mask)));
writel((val | temp), (void __iomem *)
((unsigned long)phy->reset_regs + (phy->reset_level - mask)));
amlogic_crg_drd_usbphy_reset(phy);
for (i = 0; i < phy->portnum; i++) {
for (j = 0; j < 2; j++) {
u2p_aml_regs.u2p_r_v2[j] = (void __iomem *)
((unsigned long)phy->regs + 4 * j);
}
reg0.d32 = readl(u2p_aml_regs.u2p_r_v2[0]);
reg0.b.host_device = 0;
reg0.b.POR = 0;
reg0.b.IDPULLUP0 = 1;
reg0.b.DRVVBUS0 = 1;
writel(reg0.d32, u2p_aml_regs.u2p_r_v2[0]);
}
usleep_range(9, 10);
amlogic_crg_drd_usbphy_reset_phycfg(phy, phy->portnum);
usleep_range(49, 50);
for (i = 0; i < phy->portnum; i++) {
for (j = 0; j < 2; j++) {
u2p_aml_regs.u2p_r_v2[j] = (void __iomem *)
((unsigned long)phy->regs + 4 * j);
}
usb_set_calibration_trim(phy->phy_cfg[i], phy);
/* ID DETECT: usb2_otg_aca_en set to 0 */
/* usb2_otg_iddet_en set to 1 */
writel(readl(phy->phy_cfg[i] + 0x54) & (~(1 << 2)),
(phy->phy_cfg[i] + 0x54));
reg1.d32 = readl(u2p_aml_regs.u2p_r_v2[1]);
cnt = 0;
while (reg1.b.phy_rdy != 1) {
reg1.d32 = readl(u2p_aml_regs.u2p_r_v2[1]);
/*we wait phy ready max 1ms, common is 100us*/
if (cnt > 200)
break;
cnt++;
udelay(5);
}
}
/* step 7: pll setting */
for (i = 0; i < phy->portnum; i++) {
set_usb_pll(phy, phy->phy_cfg[i]);
set_trim_initvalue(phy, phy->phy_cfg[i], i);
}
if (phy->suspend_flag)
phy->suspend_flag = 0;
return 0;
}
static int amlogic_crg_drd_usb2_suspend(struct usb_phy *x, int suspend)
{
return 0;
}
int amlogic_crg_device_usb2_shutdown(u32 phy_id)
{
struct usb_phy *x;
struct amlogic_usb_v2 *phy;
u32 val, i = 0;
u32 temp = 0;
u32 cnt;
size_t mask = 0;
x = &g_crg_drd_phy2[phy_id]->phy;
phy = phy_to_amlusb(x);
cnt = phy->portnum;
mask = (size_t)phy->reset_regs & 0xf;
for (i = 0; i < cnt; i++)
temp = temp | (1 << phy->phy_reset_level_bit[i]);
/* set usb phy to low power mode */
val = readl((void __iomem *)
((unsigned long)phy->reset_regs + (phy->reset_level - mask)));
writel((val & (~temp)), (void __iomem *)
((unsigned long)phy->reset_regs + (phy->reset_level - mask)));
if (phy->phy.flags == AML_USB2_PHY_ENABLE)
clk_disable_unprepare(phy->clk);
phy->suspend_flag = 1;
return 0;
}
static void amlogic_crg_drd_usb2phy_shutdown(struct usb_phy *x)
{
struct amlogic_usb_v2 *phy = phy_to_amlusb(x);
u32 val, i = 0;
u32 temp = 0;
u32 cnt = phy->portnum;
size_t mask = 0;
mask = (size_t)phy->reset_regs & 0xf;
for (i = 0; i < cnt; i++)
temp = temp | (1 << phy->phy_reset_level_bit[i]);
/* set usb phy to low power mode */
val = readl((void __iomem *)
((unsigned long)phy->reset_regs + (phy->reset_level - mask)));
writel((val & (~temp)), (void __iomem *)
((unsigned long)phy->reset_regs + (phy->reset_level - mask)));
if (phy->phy.flags == AML_USB2_PHY_ENABLE)
clk_disable_unprepare(phy->clk);
phy->suspend_flag = 1;
}
static int amlogic_crg_drd_usb2_probe(struct platform_device *pdev)
{
struct amlogic_usb_v2 *phy;
struct device *dev = &pdev->dev;
struct resource *phy_mem;
struct resource *reset_mem;
struct resource *phy_cfg_mem[4];
void __iomem *phy_base;
void __iomem *reset_base = NULL;
void __iomem *phy_cfg_base[4] = {NULL, NULL, NULL, NULL};
unsigned int usb_clk_reg;
void __iomem *usb_clk_reg_base = NULL;
unsigned int clk_regsize = 0;
unsigned int phy_trim_reg;
void __iomem *usb_phy_trim_reg = NULL;
int portnum = 0;
int phy_version = 0;
int reset_level = 0x84;
const void *prop;
int i = 0;
int retval;
u32 pll_setting[8] = {0};
u32 pll_disconnect_enhance;
u32 phy_reset_level_bit[USB_PHY_MAX_NUMBER] = {-1};
u32 usb_reset_bit = 2;
u32 otg_phy_index = 1;
u32 phy_id = 0;
u32 val;
u32 usbclk_div = 0;
u32 ret;
const char *gpio_name = NULL;
int gpio_vbus_power_pin = -1;
struct gpio_desc *usb_gd = NULL;
gpio_name = of_get_property(dev->of_node, "gpio-vbus-power", NULL);
if (gpio_name) {
gpio_vbus_power_pin = 1;
usb_gd = devm_gpiod_get_index(&pdev->dev,
NULL, 0, GPIOD_OUT_LOW);
if (IS_ERR(usb_gd))
return -1;
}
prop = of_get_property(dev->of_node, "portnum", NULL);
if (prop)
portnum = of_read_ulong(prop, 1);
if (!portnum) {
dev_err(&pdev->dev, "This phy has no usb port\n");
return -ENOMEM;
}
prop = of_get_property(dev->of_node, "usb-busclk_ctl_div", NULL);
if (prop) {
usbclk_div = of_read_ulong(prop, 1);
dev_info(&pdev->dev, "usb_clk_ctl_div=%u\n", usbclk_div);
}
prop = of_get_property(dev->of_node, "version", NULL);
if (prop)
phy_version = of_read_ulong(prop, 1);
else
phy_version = 0;
prop = of_get_property(dev->of_node, "reset-level", NULL);
if (prop)
reset_level = of_read_ulong(prop, 1);
else
reset_level = 0x84;
prop = of_get_property(dev->of_node, "otg-phy-index", NULL);
if (prop)
otg_phy_index = of_read_ulong(prop, 1);
else
otg_phy_index = 1;
prop = of_get_property(dev->of_node, "phy-id", NULL);
if (prop)
phy_id = of_read_ulong(prop, 1);
else
phy_id = 0;
phy = devm_kzalloc(&pdev->dev, sizeof(*phy), GFP_KERNEL);
if (!phy)
return -ENOMEM;
phy->general_clk = devm_clk_get(dev, "crg_general");
if (IS_ERR(phy->general_clk)) {
ret = PTR_ERR(phy->general_clk);
return ret;
}
clk_prepare_enable(phy->general_clk);
phy_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
phy_base = ioremap(phy_mem->start, resource_size(phy_mem));
if (IS_ERR(phy_base))
return PTR_ERR(phy_base);
reset_mem = platform_get_resource(pdev, IORESOURCE_MEM, 1);
if (reset_mem) {
reset_base = ioremap(reset_mem->start,
resource_size(reset_mem));
if (IS_ERR(reset_base))
return PTR_ERR(reset_base);
}
for (i = 0; i < portnum; i++) {
phy_cfg_mem[i] = platform_get_resource
(pdev, IORESOURCE_MEM, 2 + i);
if (phy_cfg_mem[i]) {
phy_cfg_base[i] = ioremap(phy_cfg_mem[i]->start,
resource_size(phy_cfg_mem[i]));
if (IS_ERR(phy_cfg_base[i]))
return PTR_ERR(phy_cfg_base[i]);
}
}
retval = of_property_read_u32(dev->of_node, "usb-phy-trim-reg",
&phy_trim_reg);
if (retval >= 0) {
usb_phy_trim_reg = ioremap((resource_size_t)phy_trim_reg,
4);
}
retval = of_property_read_u32(dev->of_node, "usb-clk-reg",
&usb_clk_reg);
if (retval >= 0) {
retval = of_property_read_u32(dev->of_node,
"usb-clkreg-size",
&clk_regsize);
if (retval >= 0) {
usb_clk_reg_base = ioremap((resource_size_t)usb_clk_reg,
(unsigned long)clk_regsize);
if (usb_clk_reg_base) {
if (usbclk_div) {
writel(usbclk_div, usb_clk_reg_base);
} else {
val = readl(usb_clk_reg_base);
val |= (0x1 << 8) | (0x1 << 9)
| (0 << 0);
writel(val, usb_clk_reg_base);
}
}
}
}
for (i = 0; i < portnum; i++) {
memset(name_crg, 0, 32 * sizeof(char));
sprintf(name_crg, "phy%d-reset-level-bit", i);
prop = of_get_property(dev->of_node, name_crg, NULL);
if (prop)
phy_reset_level_bit[i] = of_read_ulong(prop, 1);
else
phy_reset_level_bit[i] = 16 + i;
}
prop = of_get_property(dev->of_node, "usb-reset-bit", NULL);
if (prop)
usb_reset_bit = of_read_ulong(prop, 1);
else
usb_reset_bit = 2;
retval = of_property_read_u32(dev->of_node,
"pll-setting-1", &pll_setting[0]);
if (retval < 0)
return -EINVAL;
retval = of_property_read_u32(dev->of_node,
"pll-setting-2", &pll_setting[1]);
if (retval < 0)
return -EINVAL;
retval = of_property_read_u32(dev->of_node,
"pll-setting-3", &pll_setting[2]);
if (retval < 0)
return -EINVAL;
retval = of_property_read_u32(dev->of_node,
"pll-setting-4", &pll_setting[3]);
if (retval < 0)
return -EINVAL;
retval = of_property_read_u32(dev->of_node,
"pll-setting-5", &pll_setting[4]);
if (retval < 0)
return -EINVAL;
retval = of_property_read_u32(dev->of_node,
"pll-setting-6", &pll_setting[5]);
if (retval < 0)
return -EINVAL;
retval = of_property_read_u32(dev->of_node,
"pll-setting-7", &pll_setting[6]);
if (retval < 0)
return -EINVAL;
retval = of_property_read_u32(dev->of_node,
"pll-setting-8", &pll_setting[7]);
if (retval < 0)
return -EINVAL;
retval = of_property_read_u32(dev->of_node,
"dis-thred-enhance", &pll_disconnect_enhance);
if (retval < 0)
pll_disconnect_enhance = 0;
dev_info(&pdev->dev, "USB2 phy probe:phy_mem:0x%lx, iomap phy_base:0x%lx\n",
(unsigned long)phy_mem->start, (unsigned long)phy_base);
phy->dev = dev;
phy->regs = phy_base;
phy->reset_regs = reset_base;
phy->portnum = portnum;
phy->phy.dev = phy->dev;
phy->phy.label = "amlogic-crg-drd-phy2";
phy->phy.init = amlogic_crg_drd_usb2_init;
phy->phy.set_suspend = amlogic_crg_drd_usb2_suspend;
phy->phy.shutdown = amlogic_crg_drd_usb2phy_shutdown;
phy->phy.phy_trim_tuning = set_usb_phy_trim_tuning;
phy->phy.type = USB_PHY_TYPE_USB2;
phy->pll_setting[0] = pll_setting[0];
phy->pll_setting[1] = pll_setting[1];
phy->pll_setting[2] = pll_setting[2];
phy->pll_setting[3] = pll_setting[3];
phy->pll_setting[4] = pll_setting[4];
phy->pll_setting[5] = pll_setting[5];
phy->pll_setting[6] = pll_setting[6];
phy->pll_setting[7] = pll_setting[7];
phy->pll_dis_thred_enhance = pll_disconnect_enhance;
phy->suspend_flag = 0;
phy->phy_version = phy_version;
phy->otg_phy_index = otg_phy_index;
phy->reset_level = reset_level;
phy->usb_reset_bit = usb_reset_bit;
phy->usb_phy_trim_reg = usb_phy_trim_reg;
phy->phy_id = phy_id;
phy->vbus_power_pin = gpio_vbus_power_pin;
phy->usb_gpio_desc = usb_gd;
for (i = 0; i < portnum; i++) {
phy->phy_cfg[i] = phy_cfg_base[i];
/* set port default tuning state */
phy->phy_cfg_state[i] = 1;
phy->phy_trim_state[i] = 1;
phy->phy_reset_level_bit[i] = phy_reset_level_bit[i];
}
/**USB PHY CLOCK ENABLE**/
phy->clk = devm_clk_get(dev, "usb_phy");
if (!IS_ERR(phy->clk)) {
retval = clk_prepare_enable(phy->clk);
if (retval) {
dev_err(dev, "Failed to enable usb2 phy bus clock\n");
retval = PTR_ERR(phy->clk);
return retval;
}
phy->phy.flags = AML_USB2_PHY_ENABLE;
}
usb_add_phy_dev(&phy->phy);
platform_set_drvdata(pdev, phy);
pm_runtime_enable(phy->dev);
g_crg_drd_phy2[phy_id] = phy;
amlogic_crg_drd_usb2_init(&phy->phy);
return 0;
}
static int amlogic_crg_drd_usb2_remove(struct platform_device *pdev)
{
return 0;
}
#ifdef CONFIG_PM_RUNTIME
static int amlogic_crg_drd_usb2_runtime_suspend(struct device *dev)
{
return 0;
}
static int amlogic_crg_drd_usb2_runtime_resume(struct device *dev)
{
unsigned int ret = 0;
return ret;
}
static const struct dev_pm_ops amlogic_crg_drd_usb2_pm_ops = {
SET_RUNTIME_PM_OPS(amlogic_crg_drd_usb2_runtime_suspend,
amlogic_crg_drd_usb2_runtime_resume,
NULL)
};
#define DEV_PM_OPS (&amlogic_crg_drd_usb2_pm_ops)
#else
#define DEV_PM_OPS NULL
#endif
#ifdef CONFIG_OF
static const struct of_device_id amlogic_crg_drd_usb2_id_table[] = {
{ .compatible = "amlogic, amlogic-crg-drd-usb2" },
{}
};
MODULE_DEVICE_TABLE(of, amlogic_crg_drd_usb2_id_table);
#endif
static struct platform_driver amlogic_crg_drd_usb2_driver = {
.probe = amlogic_crg_drd_usb2_probe,
.remove = amlogic_crg_drd_usb2_remove,
.driver = {
.name = "amlogic-crg-drd-usb2",
.owner = THIS_MODULE,
.pm = DEV_PM_OPS,
.of_match_table = of_match_ptr(amlogic_crg_drd_usb2_id_table),
},
};
module_platform_driver(amlogic_crg_drd_usb2_driver);
MODULE_ALIAS("platform: amlogic_crg_drd");
MODULE_AUTHOR("Amlogic Inc.");
MODULE_DESCRIPTION("amlogic crg drd USB2 phy driver");
MODULE_LICENSE("GPL v2");