]> git.ipfire.org Git - thirdparty/u-boot.git/blame - drivers/usb/host/ehci-vct.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / drivers / usb / host / ehci-vct.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
a270d1e7
SR
2/*
3 * (C) Copyright 2009 Stefan Roese <sr@denx.de>, DENX Software Engineering
a270d1e7
SR
4 */
5
6#include <common.h>
7#include <usb.h>
8
2731b9a8 9#include "ehci.h"
a270d1e7
SR
10
11int vct_ehci_hcd_init(u32 *hccr, u32 *hcor);
12
13/*
14 * Create the appropriate control structures to manage
15 * a new EHCI host controller.
16 */
127efc4f
TK
17int ehci_hcd_init(int index, enum usb_init_type init,
18 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
a270d1e7
SR
19{
20 int ret;
21 u32 vct_hccr;
22 u32 vct_hcor;
23
24 /*
25 * Init VCT specific stuff
26 */
27 ret = vct_ehci_hcd_init(&vct_hccr, &vct_hcor);
28 if (ret)
29 return ret;
30
676ae068
LS
31 *hccr = (struct ehci_hccr *)vct_hccr;
32 *hcor = (struct ehci_hcor *)vct_hcor;
a270d1e7
SR
33
34 return 0;
35}
36
37/*
38 * Destroy the appropriate control structures corresponding
39 * the the EHCI host controller.
40 */
676ae068 41int ehci_hcd_stop(int index)
a270d1e7
SR
42{
43 return 0;
44}