blob: 7d399671a566ac58afbb3fd17991eb40b069f76d [file] [log] [blame]
Alexander Shishkine443b332012-05-11 17:25:46 +03001/*
2 * Platform data for the chipidea USB dual role controller
3 */
4
5#ifndef __LINUX_USB_CHIPIDEA_H
6#define __LINUX_USB_CHIPIDEA_H
7
Richard Zhaoa2c3d692012-07-07 22:56:46 +08008#include <linux/usb/otg.h>
9
Alexander Shishkin8e229782013-06-24 14:46:36 +030010struct ci_hdrc;
11struct ci_hdrc_platform_data {
Alexander Shishkine443b332012-05-11 17:25:46 +030012 const char *name;
13 /* offset of the capability registers */
14 uintptr_t capoffset;
Alexander Shishkinbd841982012-05-11 17:25:55 +030015 unsigned power_budget;
Richard Zhaoa2c3d692012-07-07 22:56:46 +080016 struct usb_phy *phy;
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +030017 enum usb_phy_interface phy_mode;
Alexander Shishkine443b332012-05-11 17:25:46 +030018 unsigned long flags;
Alexander Shishkin8e229782013-06-24 14:46:36 +030019#define CI_HDRC_REGS_SHARED BIT(0)
20#define CI_HDRC_REQUIRE_TRANSCEIVER BIT(1)
Alexander Shishkin8e229782013-06-24 14:46:36 +030021#define CI_HDRC_DISABLE_STREAMING BIT(3)
Peter Chen577b2322013-08-14 12:44:08 +030022 /*
23 * Only set it when DCCPARAMS.DC==1 and DCCPARAMS.HC==1,
24 * but otg is not supported (no register otgsc).
25 */
26#define CI_HDRC_DUAL_ROLE_NOT_OTG BIT(4)
Sascha Hauer691962d2013-06-13 17:59:57 +030027 enum usb_dr_mode dr_mode;
Alexander Shishkin8e229782013-06-24 14:46:36 +030028#define CI_HDRC_CONTROLLER_RESET_EVENT 0
29#define CI_HDRC_CONTROLLER_STOPPED_EVENT 1
30 void (*notify_event) (struct ci_hdrc *ci, unsigned event);
Peter Chen1542d9c2013-08-14 12:44:03 +030031 struct regulator *reg_vbus;
Alexander Shishkine443b332012-05-11 17:25:46 +030032};
33
34/* Default offset of capability registers */
35#define DEF_CAPOFFSET 0x100
36
Alexander Shishkin8e229782013-06-24 14:46:36 +030037/* Add ci hdrc device */
38struct platform_device *ci_hdrc_add_device(struct device *dev,
Richard Zhaocbc6dc22012-07-07 22:56:41 +080039 struct resource *res, int nres,
Alexander Shishkin8e229782013-06-24 14:46:36 +030040 struct ci_hdrc_platform_data *platdata);
41/* Remove ci hdrc device */
42void ci_hdrc_remove_device(struct platform_device *pdev);
Richard Zhaocbc6dc22012-07-07 22:56:41 +080043
Alexander Shishkine443b332012-05-11 17:25:46 +030044#endif