linux/drivers/phy/nuvoton/phy-ma35d1-usb2.c

// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2024 Nuvoton Technology Corp.
 */
#include <linux/bitfield.h>
#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/mfd/syscon.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/phy/phy.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>

/* USB PHY Miscellaneous Control Register */
#define MA35_SYS_REG_USBPMISCR
#define PHY0POR
#define PHY0SUSPEND
#define PHY0COMN
#define PHY0DEVCKSTB

struct ma35_usb_phy {};

static int ma35_usb_phy_power_on(struct phy *phy)
{}

static int ma35_usb_phy_power_off(struct phy *phy)
{}

static const struct phy_ops ma35_usb_phy_ops =;

static int ma35_usb_phy_probe(struct platform_device *pdev)
{}

static const struct of_device_id ma35_usb_phy_of_match[] =;
MODULE_DEVICE_TABLE(of, ma35_usb_phy_of_match);

static struct platform_driver ma35_usb_phy_driver =;
module_platform_driver();

MODULE_DESCRIPTION();
MODULE_AUTHOR();
MODULE_LICENSE();