blob: 3ec27a2e3aaf5848cc9a796922c6dc2a0491fdd6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Thierry Reding79c7a902014-12-09 22:25:09 -07002/*
3 * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
Thierry Reding79c7a902014-12-09 22:25:09 -07004 */
5
6#include <common.h>
7#include <errno.h>
8
9#include <asm/arch-tegra/xusb-padctl.h>
10
11struct tegra_xusb_phy * __weak tegra_xusb_phy_get(unsigned int type)
12{
13 return NULL;
14}
15
16int __weak tegra_xusb_phy_prepare(struct tegra_xusb_phy *phy)
17{
18 return -ENOSYS;
19}
20
21int __weak tegra_xusb_phy_enable(struct tegra_xusb_phy *phy)
22{
23 return -ENOSYS;
24}
25
26int __weak tegra_xusb_phy_disable(struct tegra_xusb_phy *phy)
27{
28 return -ENOSYS;
29}
30
31int __weak tegra_xusb_phy_unprepare(struct tegra_xusb_phy *phy)
32{
33 return -ENOSYS;
34}
35
Simon Glassbe789092017-07-25 08:29:59 -060036void __weak tegra_xusb_padctl_init(void)
Thierry Reding79c7a902014-12-09 22:25:09 -070037{
38}