blob: 0b4e372a0a89350e4b82a6b7a8ee6732e594da88 [file] [log] [blame]
/*
* drivers/amlogic/usb/phy/phy-aml-new-usb-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/platform_device.h>
#include <linux/clk.h>
#include <linux/device.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/amlogic/usb-v2.h>
#include <linux/amlogic/iomap.h>
#include "phy-aml-new-usb-v2.h"
int amlogic_new_usbphy_reset_v2(struct amlogic_usb_v2 *phy)
{
static int init_count;
if (!init_count) {
init_count++;
if (!phy->reset_regs)
aml_cbus_update_bits(0x1102, 0x1<<2, 0x1<<2);
else
writel((readl(phy->reset_regs) | (0x1 << 2)),
phy->reset_regs);
}
return 0;
}
EXPORT_SYMBOL_GPL(amlogic_new_usbphy_reset_v2);
int amlogic_new_usbphy_reset_phycfg_v2(struct amlogic_usb_v2 *phy, int cnt)
{
u32 val;
u32 temp = 0;
while (cnt--)
temp = temp | (1 << (16 + cnt));
/* set usb phy to low power mode */
val = readl((void __iomem *)
((unsigned long)phy->reset_regs + (0x21 * 4 - 0x8)));
writel((val & (~temp)), (void __iomem *)
((unsigned long)phy->reset_regs + (0x21 * 4 - 0x8)));
udelay(100);
val = readl((void __iomem *)
((unsigned long)phy->reset_regs + (0x21 * 4 - 0x8)));
writel((val | temp), (void __iomem *)
((unsigned long)phy->reset_regs + (0x21 * 4 - 0x8)));
return 0;
}
EXPORT_SYMBOL_GPL(amlogic_new_usbphy_reset_phycfg_v2);