blob: 0c2f1fcfb41e857ab6e4f0287f90aba3e047d705 [file] [log] [blame]
/*
* drivers/amlogic/usb/phy/phy-aml-new-usb3-v2.c
*
* Copyright (C) 2017 Amlogic, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
*/
#include <linux/module.h>
#include <linux/io.h>
#include <linux/irq.h>
#include <linux/irqreturn.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/of.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/usb-v2.h>
#include <linux/amlogic/aml_gpio_consumer.h>
#include <linux/workqueue.h>
#include <linux/notifier.h>
#include <linux/amlogic/usbtype.h>
#include <linux/amlogic/power_ctrl.h>
#include "phy-aml-new-usb-v2.h"
#define HOST_MODE 0
#define DEVICE_MODE 1
struct usb_aml_regs_v2 usb_new_aml_regs_v2;
struct amlogic_usb_v2 *g_phy_v2;
static void set_mode(unsigned long reg_addr, int mode);
BLOCKING_NOTIFIER_HEAD(aml_new_usb_v2_notifier_list);
int aml_new_usb_v2_register_notifier(struct notifier_block *nb)
{
int ret;
ret = blocking_notifier_chain_register
(&aml_new_usb_v2_notifier_list, nb);
return ret;
}
EXPORT_SYMBOL(aml_new_usb_v2_register_notifier);
int aml_new_usb_v2_unregister_notifier(struct notifier_block *nb)
{
int ret;
ret = blocking_notifier_chain_unregister
(&aml_new_usb_v2_notifier_list, nb);
return ret;
}
EXPORT_SYMBOL(aml_new_usb_v2_unregister_notifier);
static void aml_new_usb_notifier_call(unsigned long is_device_on)
{
blocking_notifier_call_chain
(&aml_new_usb_v2_notifier_list, is_device_on, NULL);
}
static void 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_new_set_vbus_power
(struct amlogic_usb_v2 *phy, char is_power_on)
{
if (phy->vbus_power_pin != -1)
set_usb_vbus_power(phy->usb_gpio_desc,
phy->vbus_power_pin, is_power_on);
}
static int amlogic_new_usb3_suspend(struct usb_phy *x, int suspend)
{
return 0;
}
static void amlogic_new_usb3phy_shutdown(struct usb_phy *x)
{
struct amlogic_usb_v2 *phy = phy_to_amlusb(x);
if (phy->phy.flags == AML_USB3_PHY_ENABLE)
clk_disable_unprepare(phy->clk);
phy->suspend_flag = 1;
}
void aml_new_usb_v2_init(void)
{
union usb_r5_v2 r5 = {.d32 = 0};
unsigned long reg_addr;
if (!g_phy_v2)
return;
reg_addr = (unsigned long)g_phy_v2->usb2_phy_cfg;
r5.d32 = readl(usb_new_aml_regs_v2.usb_r_v2[5]);
if (r5.b.iddig_curr == 0) {
amlogic_new_set_vbus_power(g_phy_v2, 1);
aml_new_usb_notifier_call(0);
set_mode(reg_addr, HOST_MODE);
}
}
EXPORT_SYMBOL(aml_new_usb_v2_init);
int aml_new_usb_get_mode(void)
{
union usb_r5_v2 r5 = {.d32 = 0};
r5.d32 = readl(usb_new_aml_regs_v2.usb_r_v2[5]);
if (r5.b.iddig_curr == 0)
return 0;
else
return 1;
}
EXPORT_SYMBOL(aml_new_usb_get_mode);
static void cr_bus_addr(unsigned int addr)
{
union phy3_r4 phy_r4 = {.d32 = 0};
union phy3_r5 phy_r5 = {.d32 = 0};
unsigned long timeout_jiffies;
phy_r4.b.phy_cr_data_in = addr;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
phy_r4.b.phy_cr_cap_addr = 0;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
phy_r4.b.phy_cr_cap_addr = 1;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
timeout_jiffies = jiffies +
msecs_to_jiffies(1000);
do {
phy_r5.d32 = readl(g_phy_v2->phy3_cfg_r5);
} while (phy_r5.b.phy_cr_ack == 0 &&
time_is_after_jiffies(timeout_jiffies));
phy_r4.b.phy_cr_cap_addr = 0;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
timeout_jiffies = jiffies +
msecs_to_jiffies(1000);
do {
phy_r5.d32 = readl(g_phy_v2->phy3_cfg_r5);
} while (phy_r5.b.phy_cr_ack == 1 &&
time_is_after_jiffies(timeout_jiffies));
}
static int cr_bus_read(unsigned int addr)
{
int data;
union phy3_r4 phy_r4 = {.d32 = 0};
union phy3_r5 phy_r5 = {.d32 = 0};
unsigned long timeout_jiffies;
cr_bus_addr(addr);
phy_r4.b.phy_cr_read = 0;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
phy_r4.b.phy_cr_read = 1;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
timeout_jiffies = jiffies +
msecs_to_jiffies(1000);
do {
phy_r5.d32 = readl(g_phy_v2->phy3_cfg_r5);
} while (phy_r5.b.phy_cr_ack == 0 &&
time_is_after_jiffies(timeout_jiffies));
data = phy_r5.b.phy_cr_data_out;
phy_r4.b.phy_cr_read = 0;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
timeout_jiffies = jiffies +
msecs_to_jiffies(1000);
do {
phy_r5.d32 = readl(g_phy_v2->phy3_cfg_r5);
} while (phy_r5.b.phy_cr_ack == 1 &&
time_is_after_jiffies(timeout_jiffies));
return data;
}
static void cr_bus_write(unsigned int addr, unsigned int data)
{
union phy3_r4 phy_r4 = {.d32 = 0};
union phy3_r5 phy_r5 = {.d32 = 0};
unsigned long timeout_jiffies;
cr_bus_addr(addr);
phy_r4.b.phy_cr_data_in = data;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
phy_r4.b.phy_cr_cap_data = 0;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
phy_r4.b.phy_cr_cap_data = 1;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
timeout_jiffies = jiffies +
msecs_to_jiffies(1000);
do {
phy_r5.d32 = readl(g_phy_v2->phy3_cfg_r5);
} while (phy_r5.b.phy_cr_ack == 0 &&
time_is_after_jiffies(timeout_jiffies));
phy_r4.b.phy_cr_cap_data = 0;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
timeout_jiffies = jiffies +
msecs_to_jiffies(1000);
do {
phy_r5.d32 = readl(g_phy_v2->phy3_cfg_r5);
} while (phy_r5.b.phy_cr_ack == 1 &&
time_is_after_jiffies(timeout_jiffies));
phy_r4.b.phy_cr_write = 0;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
phy_r4.b.phy_cr_write = 1;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
timeout_jiffies = jiffies +
msecs_to_jiffies(1000);
do {
phy_r5.d32 = readl(g_phy_v2->phy3_cfg_r5);
} while (phy_r5.b.phy_cr_ack == 0 &&
time_is_after_jiffies(timeout_jiffies));
phy_r4.b.phy_cr_write = 0;
writel(phy_r4.d32, g_phy_v2->phy3_cfg_r4);
timeout_jiffies = jiffies +
msecs_to_jiffies(1000);
do {
phy_r5.d32 = readl(g_phy_v2->phy3_cfg_r5);
} while (phy_r5.b.phy_cr_ack == 1 &&
time_is_after_jiffies(timeout_jiffies));
}
static int amlogic_new_usb3_init(struct usb_phy *x)
{
struct amlogic_usb_v2 *phy = phy_to_amlusb(x);
union usb_r1_v2 r1 = {.d32 = 0};
union usb_r2_v2 r2 = {.d32 = 0};
union usb_r3_v2 r3 = {.d32 = 0};
union usb_r5_v2 r5 = {.d32 = 0};
union phy3_r2 p3_r2 = {.d32 = 0};
union phy3_r1 p3_r1 = {.d32 = 0};
int i = 0;
u32 data = 0;
if (phy->suspend_flag) {
if (phy->phy.flags == AML_USB3_PHY_ENABLE)
clk_prepare_enable(phy->clk);
phy->suspend_flag = 0;
return 0;
}
for (i = 0; i < 6; i++) {
usb_new_aml_regs_v2.usb_r_v2[i] = (void __iomem *)
((unsigned long)phy->regs + 4*i);
}
r1.d32 = readl(usb_new_aml_regs_v2.usb_r_v2[1]);
r1.b.u3h_fladj_30mhz_reg = 0x20;
writel(r1.d32, usb_new_aml_regs_v2.usb_r_v2[1]);
r5.d32 = readl(usb_new_aml_regs_v2.usb_r_v2[5]);
r5.b.iddig_en0 = 1;
r5.b.iddig_en1 = 1;
r5.b.iddig_th = 255;
writel(r5.d32, usb_new_aml_regs_v2.usb_r_v2[5]);
/* config usb3 phy */
if (phy->phy.flags == AML_USB3_PHY_ENABLE) {
r3.d32 = readl(usb_new_aml_regs_v2.usb_r_v2[3]);
r3.b.p30_ssc_en = 1;
r3.b.p30_ssc_range = 2;
r3.b.p30_ref_ssp_en = 1;
writel(r3.d32, usb_new_aml_regs_v2.usb_r_v2[3]);
udelay(2);
r2.d32 = readl(usb_new_aml_regs_v2.usb_r_v2[2]);
r2.b.p30_pcs_tx_deemph_3p5db = 0x15;
r2.b.p30_pcs_tx_deemph_6db = 0x20;
writel(r2.d32, usb_new_aml_regs_v2.usb_r_v2[2]);
udelay(2);
r1.d32 = readl(usb_new_aml_regs_v2.usb_r_v2[1]);
r1.b.u3h_host_port_power_control_present = 1;
r1.b.u3h_fladj_30mhz_reg = 0x20;
r1.b.p30_pcs_tx_swing_full = 127;
writel(r1.d32, usb_new_aml_regs_v2.usb_r_v2[1]);
udelay(2);
p3_r2.d32 = readl(phy->phy3_cfg_r2);
p3_r2.b.phy_tx_vboost_lvl = 0x4;
writel(p3_r2.d32, phy->phy3_cfg_r2);
udelay(2);
/*
* WORKAROUND: There is SSPHY suspend bug due to
* which USB enumerates
* in HS mode instead of SS mode. Workaround it by asserting
* LANE0.TX_ALT_BLOCK.EN_ALT_BUS to enable TX to use alt bus
* mode
*/
data = cr_bus_read(0x102d);
data |= (1 << 7);
cr_bus_write(0x102D, data);
data = cr_bus_read(0x1010);
data &= ~0xff0;
data |= 0x20;
cr_bus_write(0x1010, data);
/*
* Fix RX Equalization setting as follows
* LANE0.RX_OVRD_IN_HI. RX_EQ_EN set to 0
* LANE0.RX_OVRD_IN_HI.RX_EQ_EN_OVRD set to 1
* LANE0.RX_OVRD_IN_HI.RX_EQ set to 3
* LANE0.RX_OVRD_IN_HI.RX_EQ_OVRD set to 1
*/
data = cr_bus_read(0x1006);
data &= ~(1 << 6);
data |= (1 << 7);
data &= ~(0x7 << 8);
data |= (0x3 << 8);
data |= (0x1 << 11);
cr_bus_write(0x1006, data);
/*
* Set EQ and TX launch amplitudes as follows
* LANE0.TX_OVRD_DRV_LO.PREEMPH set to 22
* LANE0.TX_OVRD_DRV_LO.AMPLITUDE set to 127
* LANE0.TX_OVRD_DRV_LO.EN set to 1.
*/
data = cr_bus_read(0x1002);
data &= ~0x3f80;
data |= (0x16 << 7);
data &= ~0x7f;
data |= (0x7f | (1 << 14));
cr_bus_write(0x1002, data);
/*
* MPLL_LOOP_CTL.PROP_CNTRL
*/
data = cr_bus_read(0x30);
data &= ~(0xf << 4);
data |= (0x8 << 4);
cr_bus_write(0x30, data);
udelay(2);
/*
* LOS_BIAS to 0x5
* LOS_LEVEL to 0x9
*/
p3_r1.d32 = readl(phy->phy3_cfg_r1);
p3_r1.b.phy_los_bias = 0x4;
p3_r1.b.phy_los_level = 0x9;
writel(p3_r1.d32, phy->phy3_cfg_r1);
}
return 0;
}
static void set_mode(unsigned long reg_addr, int mode)
{
struct u2p_aml_regs_v2 u2p_aml_regs;
struct usb_aml_regs_v2 usb_gxl_aml_regs;
union u2p_r0_v2 reg0;
union usb_r0_v2 r0 = {.d32 = 0};
union usb_r4_v2 r4 = {.d32 = 0};
u2p_aml_regs.u2p_r_v2[0] = (void __iomem *)
((unsigned long)reg_addr + PHY_REGISTER_SIZE);
usb_gxl_aml_regs.usb_r_v2[0] = (void __iomem *)
((unsigned long)reg_addr + 4*PHY_REGISTER_SIZE
+ 4*0);
usb_gxl_aml_regs.usb_r_v2[1] = (void __iomem *)
((unsigned long)reg_addr + 4*PHY_REGISTER_SIZE
+ 4*1);
usb_gxl_aml_regs.usb_r_v2[4] = (void __iomem *)
((unsigned long)reg_addr + 4*PHY_REGISTER_SIZE
+ 4*4);
r0.d32 = readl(usb_gxl_aml_regs.usb_r_v2[0]);
if (mode == DEVICE_MODE) {
r0.b.u2d_act = 1;
r0.b.u2d_ss_scaledown_mode = 0;
} else
r0.b.u2d_act = 0;
writel(r0.d32, usb_gxl_aml_regs.usb_r_v2[0]);
r4.d32 = readl(usb_gxl_aml_regs.usb_r_v2[4]);
if (mode == DEVICE_MODE)
r4.b.p21_SLEEPM0 = 0x1;
else
r4.b.p21_SLEEPM0 = 0x0;
writel(r4.d32, usb_gxl_aml_regs.usb_r_v2[4]);
reg0.d32 = readl(u2p_aml_regs.u2p_r_v2[0]);
if (mode == DEVICE_MODE) {
reg0.b.host_device = 0;
reg0.b.POR = 0;
} else {
reg0.b.host_device = 1;
reg0.b.POR = 0;
}
writel(reg0.d32, u2p_aml_regs.u2p_r_v2[0]);
udelay(500);
}
static void amlogic_gxl_work(struct work_struct *work)
{
struct amlogic_usb_v2 *phy =
container_of(work, struct amlogic_usb_v2, work.work);
union usb_r5_v2 r5 = {.d32 = 0};
unsigned long reg_addr = ((unsigned long)phy->usb2_phy_cfg);
r5.d32 = readl(usb_new_aml_regs_v2.usb_r_v2[5]);
if (r5.b.iddig_curr == 0) {
amlogic_new_set_vbus_power(phy, 1);
aml_new_usb_notifier_call(0);
set_mode(reg_addr, HOST_MODE);
} else {
set_mode(reg_addr, DEVICE_MODE);
aml_new_usb_notifier_call(1);
amlogic_new_set_vbus_power(phy, 0);
}
r5.b.usb_iddig_irq = 0;
writel(r5.d32, usb_new_aml_regs_v2.usb_r_v2[5]);
}
static irqreturn_t amlogic_botg_detect_irq(int irq, void *dev)
{
struct amlogic_usb_v2 *phy = (struct amlogic_usb_v2 *)dev;
union usb_r5_v2 r5 = {.d32 = 0};
r5.d32 = readl(usb_new_aml_regs_v2.usb_r_v2[5]);
r5.b.usb_iddig_irq = 0;
writel(r5.d32, usb_new_aml_regs_v2.usb_r_v2[5]);
schedule_delayed_work(&phy->work, msecs_to_jiffies(10));
return IRQ_HANDLED;
}
static bool device_is_available(const struct device_node *device)
{
const char *status;
int statlen;
if (!device)
return false;
status = of_get_property(device, "status", &statlen);
if (status == NULL)
return true;
if (statlen > 0) {
if (!strcmp(status, "okay") || !strcmp(status, "ok"))
return true;
}
return false;
}
static void power_switch_to_pcie(struct amlogic_usb_v2 *phy)
{
u32 val;
if (power_ctrl_sleep(1, phy->u3_ctrl_sleep_shift))
pr_err("%s, set power_ctrl_sleep failed\n", __func__);
power_ctrl_mempd0(1, phy->u3_hhi_mem_pd_mask, phy->u3_hhi_mem_pd_shift);
udelay(100);
val = readl((void __iomem *)
((unsigned long)phy->reset_regs + (0x20 * 4 - 0x8)));
writel((val & (~(0x1<<12))), (void __iomem *)
((unsigned long)phy->reset_regs + (0x20 * 4 - 0x8)));
udelay(100);
if (power_ctrl_iso(1, phy->u3_ctrl_iso_shift))
pr_err("%s, set power_ctrl_iso failed\n", __func__);
val = readl((void __iomem *)
((unsigned long)phy->reset_regs + (0x20 * 4 - 0x8)));
writel((val | (0x1<<12)), (void __iomem *)
((unsigned long)phy->reset_regs + (0x20 * 4 - 0x8)));
udelay(100);
}
static int amlogic_new_usb3_v2_probe(struct platform_device *pdev)
{
struct amlogic_usb_v2 *phy;
struct device *dev = &pdev->dev;
struct resource *phy_mem;
struct resource *reset_mem;
void __iomem *phy_base;
void __iomem *phy3_base;
void __iomem *reset_base = NULL;
unsigned int phy3_mem;
unsigned int phy3_mem_size = 0;
void __iomem *usb2_phy_base;
unsigned int usb2_phy_mem;
unsigned int usb2_phy_mem_size = 0;
const char *gpio_name = NULL;
struct gpio_desc *usb_gd = NULL;
const void *prop;
int portnum = 0;
int irq;
int retval;
int gpio_vbus_power_pin = -1;
int otg = 0;
int ret;
struct device_node *tsi_pci;
u32 pwr_ctl = 0;
u32 u3_ctrl_sleep_shift = 0;
u32 u3_hhi_mem_pd_shift = 0;
u32 u3_hhi_mem_pd_mask = 0;
u32 u3_ctrl_iso_shift = 0;
gpio_name = of_get_property(dev->of_node, "gpio-vbus-power", NULL);
if (gpio_name) {
gpio_vbus_power_pin = 1;
usb_gd = 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");
tsi_pci = of_find_node_by_type(NULL, "pci");
if (tsi_pci) {
if (device_is_available(tsi_pci)) {
dev_info(&pdev->dev,
"pci-e driver probe, disable USB 3.0 function!!!\n");
portnum = 0;
}
}
prop = of_get_property(dev->of_node, "otg", NULL);
if (prop)
otg = of_read_ulong(prop, 1);
phy_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
phy_base = devm_ioremap_resource(dev, phy_mem);
if (IS_ERR(phy_base))
return PTR_ERR(phy_base);
retval = of_property_read_u32(dev->of_node, "phy-reg", &phy3_mem);
if (retval < 0)
return -EINVAL;
retval = of_property_read_u32
(dev->of_node, "phy-reg-size", &phy3_mem_size);
if (retval < 0)
return -EINVAL;
phy3_base = devm_ioremap_nocache
(&(pdev->dev), (resource_size_t)phy3_mem,
(unsigned long)phy3_mem_size);
if (!phy3_base)
return -ENOMEM;
prop = of_get_property(dev->of_node, "pwr-ctl", NULL);
if (prop)
pwr_ctl = of_read_ulong(prop, 1);
else
pwr_ctl = 0;
if (pwr_ctl) {
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);
}
prop = of_get_property(dev->of_node,
"u3-ctrl-sleep-shift", NULL);
if (prop)
u3_ctrl_sleep_shift = of_read_ulong(prop, 1);
else
pwr_ctl = 0;
prop = of_get_property(dev->of_node,
"u3-hhi-mem-pd-shift", NULL);
if (prop)
u3_hhi_mem_pd_shift = of_read_ulong(prop, 1);
else
pwr_ctl = 0;
prop = of_get_property(dev->of_node,
"u3-hhi-mem-pd-mask", NULL);
if (prop)
u3_hhi_mem_pd_mask = of_read_ulong(prop, 1);
else
pwr_ctl = 0;
prop = of_get_property(dev->of_node,
"u3-ctrl-iso-shift", NULL);
if (prop)
u3_ctrl_iso_shift = of_read_ulong(prop, 1);
else
pwr_ctl = 0;
}
retval = of_property_read_u32
(dev->of_node, "usb2-phy-reg", &usb2_phy_mem);
if (retval < 0)
return -EINVAL;
retval = of_property_read_u32
(dev->of_node, "usb2-phy-reg-size", &usb2_phy_mem_size);
if (retval < 0)
return -EINVAL;
usb2_phy_base = devm_ioremap_nocache
(&(pdev->dev), (resource_size_t)usb2_phy_mem,
(unsigned long)usb2_phy_mem_size);
if (!usb2_phy_base)
return -ENOMEM;
phy = devm_kzalloc(&pdev->dev, sizeof(*phy), GFP_KERNEL);
if (!phy)
return -ENOMEM;
if (otg) {
irq = platform_get_irq(pdev, 0);
if (irq < 0)
return -ENODEV;
retval = request_irq(irq, amlogic_botg_detect_irq,
IRQF_SHARED | IRQ_LEVEL,
"amlogic_botg_detect", phy);
if (retval) {
dev_err(&pdev->dev, "request of irq%d failed\n", irq);
retval = -EBUSY;
return retval;
}
}
dev_info(&pdev->dev, "USB3 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->phy3_cfg = phy3_base;
phy->usb2_phy_cfg = usb2_phy_base;
phy->phy3_cfg_r1 = (void __iomem *)
((unsigned long)phy->phy3_cfg + 4 * 1);
phy->phy3_cfg_r2 = (void __iomem *)
((unsigned long)phy->phy3_cfg + 4 * 2);
phy->phy3_cfg_r4 = (void __iomem *)
((unsigned long)phy->phy3_cfg + 4 * 4);
phy->phy3_cfg_r5 = (void __iomem *)
((unsigned long)phy->phy3_cfg + 4 * 5);
phy->portnum = portnum;
phy->suspend_flag = 0;
phy->phy.dev = phy->dev;
phy->phy.label = "amlogic-usbphy3";
phy->phy.init = amlogic_new_usb3_init;
phy->phy.set_suspend = amlogic_new_usb3_suspend;
phy->phy.shutdown = amlogic_new_usb3phy_shutdown;
phy->phy.type = USB_PHY_TYPE_USB3;
phy->phy.flags = AML_USB3_PHY_DISABLE;
phy->vbus_power_pin = gpio_vbus_power_pin;
phy->usb_gpio_desc = usb_gd;
phy->pwr_ctl = pwr_ctl;
/* set the phy from pcie to usb3 */
if (phy->portnum > 0) {
if (phy->pwr_ctl) {
phy->u3_ctrl_sleep_shift = u3_ctrl_sleep_shift;
phy->u3_hhi_mem_pd_shift = u3_hhi_mem_pd_shift;
phy->u3_hhi_mem_pd_mask = u3_hhi_mem_pd_mask;
phy->u3_ctrl_iso_shift = u3_ctrl_iso_shift;
phy->reset_regs = reset_base;
power_switch_to_pcie(phy);
}
writel((readl(phy->phy3_cfg) | (3<<5)), phy->phy3_cfg);
udelay(100);
phy->clk = devm_clk_get(dev, "pcie_refpll");
if (IS_ERR(phy->clk)) {
dev_err(dev, "Failed to get usb3 bus clock\n");
ret = PTR_ERR(phy->clk);
return ret;
}
ret = clk_prepare_enable(phy->clk);
if (ret) {
dev_err(dev, "Failed to enable usb3 bus clock\n");
ret = PTR_ERR(phy->clk);
return ret;
}
phy->phy.flags = AML_USB3_PHY_ENABLE;
}
INIT_DELAYED_WORK(&phy->work, amlogic_gxl_work);
usb_add_phy_dev(&phy->phy);
platform_set_drvdata(pdev, phy);
pm_runtime_enable(phy->dev);
g_phy_v2 = phy;
return 0;
}
static int amlogic_new_usb3_remove(struct platform_device *pdev)
{
return 0;
}
#ifdef CONFIG_PM_RUNTIME
static int amlogic_new_usb3_runtime_suspend(struct device *dev)
{
return 0;
}
static int amlogic_new_usb3_runtime_resume(struct device *dev)
{
u32 ret = 0;
return ret;
}
static const struct dev_pm_ops amlogic_new_usb3_pm_ops = {
SET_RUNTIME_PM_OPS(amlogic_new_usb3_runtime_suspend,
amlogic_new_usb3_runtime_resume,
NULL)
};
#define DEV_PM_OPS (&amlogic_new_usb3_pm_ops)
#else
#define DEV_PM_OPS NULL
#endif
#ifdef CONFIG_OF
static const struct of_device_id amlogic_new_usb3_v2_id_table[] = {
{ .compatible = "amlogic, amlogic-new-usb3-v2" },
{}
};
MODULE_DEVICE_TABLE(of, amlogic_new_usb3_v2_id_table);
#endif
static struct platform_driver amlogic_new_usb3_v2_driver = {
.probe = amlogic_new_usb3_v2_probe,
.remove = amlogic_new_usb3_remove,
.driver = {
.name = "amlogic-new-usb3-v2",
.owner = THIS_MODULE,
.pm = DEV_PM_OPS,
.of_match_table = of_match_ptr(amlogic_new_usb3_v2_id_table),
},
};
module_platform_driver(amlogic_new_usb3_v2_driver);
MODULE_ALIAS("platform: amlogic_usb3_v2");
MODULE_AUTHOR("Amlogic Inc.");
MODULE_DESCRIPTION("amlogic USB3 v2 phy driver");
MODULE_LICENSE("GPL v2");