2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2009-01-29 05:33:55 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2009 Stefan Roese <sr@denx.de>, DENX Software Engineering
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <usb.h>
|
|
|
|
|
2009-04-03 10:46:58 +00:00
|
|
|
#include "ehci.h"
|
2009-01-29 05:33:55 +00:00
|
|
|
|
|
|
|
int vct_ehci_hcd_init(u32 *hccr, u32 *hcor);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create the appropriate control structures to manage
|
|
|
|
* a new EHCI host controller.
|
|
|
|
*/
|
2013-10-10 22:27:57 +00:00
|
|
|
int ehci_hcd_init(int index, enum usb_init_type init,
|
|
|
|
struct ehci_hccr **hccr, struct ehci_hcor **hcor)
|
2009-01-29 05:33:55 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
u32 vct_hccr;
|
|
|
|
u32 vct_hcor;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Init VCT specific stuff
|
|
|
|
*/
|
|
|
|
ret = vct_ehci_hcd_init(&vct_hccr, &vct_hcor);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2012-09-25 22:14:35 +00:00
|
|
|
*hccr = (struct ehci_hccr *)vct_hccr;
|
|
|
|
*hcor = (struct ehci_hcor *)vct_hcor;
|
2009-01-29 05:33:55 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Destroy the appropriate control structures corresponding
|
|
|
|
* the the EHCI host controller.
|
|
|
|
*/
|
2012-09-25 22:14:35 +00:00
|
|
|
int ehci_hcd_stop(int index)
|
2009-01-29 05:33:55 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|