summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/include/linux/platform_data/mv_usb.h
diff options
context:
space:
mode:
authorSrikant Patnaik2015-01-11 12:28:04 +0530
committerSrikant Patnaik2015-01-11 12:28:04 +0530
commit871480933a1c28f8a9fed4c4d34d06c439a7a422 (patch)
tree8718f573808810c2a1e8cb8fb6ac469093ca2784 /ANDROID_3.4.5/include/linux/platform_data/mv_usb.h
parent9d40ac5867b9aefe0722bc1f110b965ff294d30d (diff)
downloadFOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.gz
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.bz2
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.zip
Moved, renamed, and deleted files
The original directory structure was scattered and unorganized. Changes are basically to make it look like kernel structure.
Diffstat (limited to 'ANDROID_3.4.5/include/linux/platform_data/mv_usb.h')
-rw-r--r--ANDROID_3.4.5/include/linux/platform_data/mv_usb.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/ANDROID_3.4.5/include/linux/platform_data/mv_usb.h b/ANDROID_3.4.5/include/linux/platform_data/mv_usb.h
deleted file mode 100644
index d94804ac..00000000
--- a/ANDROID_3.4.5/include/linux/platform_data/mv_usb.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2011 Marvell International Ltd. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation; either version 2 of the License, or (at your
- * option) any later version.
- */
-
-#ifndef __MV_PLATFORM_USB_H
-#define __MV_PLATFORM_USB_H
-
-enum pxa_ehci_type {
- EHCI_UNDEFINED = 0,
- PXA_U2OEHCI, /* pxa 168, 9xx */
- PXA_SPH, /* pxa 168, 9xx SPH */
- MMP3_HSIC, /* mmp3 hsic */
- MMP3_FSIC, /* mmp3 fsic */
-};
-
-enum {
- MV_USB_MODE_OTG,
- MV_USB_MODE_HOST,
-};
-
-enum {
- VBUS_LOW = 0,
- VBUS_HIGH = 1 << 0,
-};
-
-struct mv_usb_addon_irq {
- unsigned int irq;
- int (*poll)(void);
-};
-
-struct mv_usb_platform_data {
- unsigned int clknum;
- char **clkname;
- struct mv_usb_addon_irq *id; /* Only valid for OTG. ID pin change*/
- struct mv_usb_addon_irq *vbus; /* valid for OTG/UDC. VBUS change*/
-
- /* only valid for HCD. OTG or Host only*/
- unsigned int mode;
-
- /* This flag is used for that needs id pin checked by otg */
- unsigned int disable_otg_clock_gating:1;
- /* Force a_bus_req to be asserted */
- unsigned int otg_force_a_bus_req:1;
-
- int (*phy_init)(void __iomem *regbase);
- void (*phy_deinit)(void __iomem *regbase);
- int (*set_vbus)(unsigned int vbus);
- int (*private_init)(void __iomem *opregs, void __iomem *phyregs);
-};
-
-#ifndef CONFIG_HAVE_CLK
-/* Dummy stub for clk framework */
-#define clk_get(dev, id) NULL
-#define clk_put(clock) do {} while (0)
-#define clk_enable(clock) do {} while (0)
-#define clk_disable(clock) do {} while (0)
-#endif
-
-#endif