2008-03-27 12:51:40 -06:00
|
|
|
/*
|
2008-08-09 05:44:58 -06:00
|
|
|
* arch/arm/plat-orion/include/plat/ehci-orion.h
|
2008-03-27 12:51:40 -06:00
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public
|
|
|
|
* License version 2. This program is licensed "as is" without any
|
|
|
|
* warranty of any kind, whether express or implied.
|
|
|
|
*/
|
|
|
|
|
2008-08-09 05:44:58 -06:00
|
|
|
#ifndef __PLAT_EHCI_ORION_H
|
|
|
|
#define __PLAT_EHCI_ORION_H
|
2008-03-27 12:51:40 -06:00
|
|
|
|
|
|
|
#include <linux/mbus.h>
|
|
|
|
|
2008-09-17 01:08:05 -06:00
|
|
|
enum orion_ehci_phy_ver {
|
|
|
|
EHCI_PHY_ORION,
|
|
|
|
EHCI_PHY_DD,
|
|
|
|
EHCI_PHY_KW,
|
|
|
|
EHCI_PHY_NA,
|
|
|
|
};
|
|
|
|
|
2008-03-27 12:51:40 -06:00
|
|
|
struct orion_ehci_data {
|
2008-09-17 01:08:05 -06:00
|
|
|
enum orion_ehci_phy_ver phy_version;
|
2008-03-27 12:51:40 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|