blob: 7167f82b4814d07f95a4829445cf9d64729df614 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roesea270d1e2009-01-29 06:33:55 +01002/*
3 * (C) Copyright 2009 Stefan Roese <sr@denx.de>, DENX Software Engineering
Stefan Roesea270d1e2009-01-29 06:33:55 +01004 */
5
6#include <common.h>
7#include <usb.h>
8
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +02009#include "ehci.h"
Stefan Roesea270d1e2009-01-29 06:33:55 +010010
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 */
Troy Kisky127efc42013-10-10 15:27:57 -070017int ehci_hcd_init(int index, enum usb_init_type init,
18 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Stefan Roesea270d1e2009-01-29 06:33:55 +010019{
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
Lucas Stach676ae062012-09-26 00:14:35 +020031 *hccr = (struct ehci_hccr *)vct_hccr;
32 *hcor = (struct ehci_hcor *)vct_hcor;
Stefan Roesea270d1e2009-01-29 06:33:55 +010033
34 return 0;
35}
36
37/*
38 * Destroy the appropriate control structures corresponding
39 * the the EHCI host controller.
40 */
Lucas Stach676ae062012-09-26 00:14:35 +020041int ehci_hcd_stop(int index)
Stefan Roesea270d1e2009-01-29 06:33:55 +010042{
43 return 0;
44}