blob: c5cddc6901d0c33e1c5d85650118e7e0b6d6e320 [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
Ivan T. Ivanov3ecb3e02015-09-07 14:45:25 +03008#include <linux/extcon.h>
Richard Zhaoa2c3d692012-07-07 22:56:46 +08009#include <linux/usb/otg.h>
10
Alexander Shishkin8e229782013-06-24 14:46:36 +030011struct ci_hdrc;
Ivan T. Ivanov3ecb3e02015-09-07 14:45:25 +030012
13/**
14 * struct ci_hdrc_cable - structure for external connector cable state tracking
15 * @state: current state of the line
16 * @changed: set to true when extcon event happen
17 * @edev: device which generate events
18 * @ci: driver state of the chipidea device
19 * @nb: hold event notification callback
20 * @conn: used for notification registration
21 */
22struct ci_hdrc_cable {
23 bool state;
24 bool changed;
25 struct extcon_dev *edev;
26 struct ci_hdrc *ci;
27 struct notifier_block nb;
28};
29
Alexander Shishkin8e229782013-06-24 14:46:36 +030030struct ci_hdrc_platform_data {
Alexander Shishkine443b332012-05-11 17:25:46 +030031 const char *name;
32 /* offset of the capability registers */
33 uintptr_t capoffset;
Alexander Shishkinbd841982012-05-11 17:25:55 +030034 unsigned power_budget;
Antoine Tenart1e5e2d32014-10-30 18:41:19 +010035 struct phy *phy;
36 /* old usb_phy interface */
Antoine Tenartef44cb42014-10-30 18:41:16 +010037 struct usb_phy *usb_phy;
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +030038 enum usb_phy_interface phy_mode;
Alexander Shishkine443b332012-05-11 17:25:46 +030039 unsigned long flags;
Alexander Shishkin8e229782013-06-24 14:46:36 +030040#define CI_HDRC_REGS_SHARED BIT(0)
Peter Chen8022d3d2014-10-30 09:15:15 +080041#define CI_HDRC_DISABLE_DEVICE_STREAMING BIT(1)
Peter Chen1f874ed2015-02-11 12:44:45 +080042#define CI_HDRC_SUPPORTS_RUNTIME_PM BIT(2)
Peter Chen8022d3d2014-10-30 09:15:15 +080043#define CI_HDRC_DISABLE_HOST_STREAMING BIT(3)
44#define CI_HDRC_DISABLE_STREAMING (CI_HDRC_DISABLE_DEVICE_STREAMING | \
45 CI_HDRC_DISABLE_HOST_STREAMING)
Peter Chen577b2322013-08-14 12:44:08 +030046 /*
47 * Only set it when DCCPARAMS.DC==1 and DCCPARAMS.HC==1,
48 * but otg is not supported (no register otgsc).
49 */
50#define CI_HDRC_DUAL_ROLE_NOT_OTG BIT(4)
Peter Chened8f8312014-01-10 13:51:27 +080051#define CI_HDRC_IMX28_WRITE_FIX BIT(5)
Michael Grzeschik4f6743d2014-02-19 13:41:43 +080052#define CI_HDRC_FORCE_FULLSPEED BIT(6)
Li Jun6adb9b7b2015-02-11 12:45:01 +080053#define CI_HDRC_TURN_VBUS_EARLY_ON BIT(7)
Peter Chen28362672015-06-18 11:51:53 +080054#define CI_HDRC_SET_NON_ZERO_TTHA BIT(8)
Peter Chen65668712015-03-17 14:21:00 +080055#define CI_HDRC_OVERRIDE_AHB_BURST BIT(9)
Peter Chen96625ea2015-03-17 17:32:45 +080056#define CI_HDRC_OVERRIDE_TX_BURST BIT(10)
57#define CI_HDRC_OVERRIDE_RX_BURST BIT(11)
Sascha Hauer691962d2013-06-13 17:59:57 +030058 enum usb_dr_mode dr_mode;
Alexander Shishkin8e229782013-06-24 14:46:36 +030059#define CI_HDRC_CONTROLLER_RESET_EVENT 0
60#define CI_HDRC_CONTROLLER_STOPPED_EVENT 1
61 void (*notify_event) (struct ci_hdrc *ci, unsigned event);
Peter Chen1542d9c2013-08-14 12:44:03 +030062 struct regulator *reg_vbus;
Li Jun79742352015-07-09 15:18:45 +080063 struct usb_otg_caps ci_otg_caps;
Peter Chenf6a9ff02014-08-19 09:51:56 +080064 bool tpl_support;
Peter Chendf96ed82014-09-22 16:45:39 +080065 /* interrupt threshold setting */
66 u32 itc_setting;
Peter Chen65668712015-03-17 14:21:00 +080067 u32 ahb_burst_config;
Peter Chen96625ea2015-03-17 17:32:45 +080068 u32 tx_burst_size;
69 u32 rx_burst_size;
Ivan T. Ivanov3ecb3e02015-09-07 14:45:25 +030070
71 /* VBUS and ID signal state tracking, using extcon framework */
72 struct ci_hdrc_cable vbus_extcon;
73 struct ci_hdrc_cable id_extcon;
Alexander Shishkine443b332012-05-11 17:25:46 +030074};
75
76/* Default offset of capability registers */
77#define DEF_CAPOFFSET 0x100
78
Alexander Shishkin8e229782013-06-24 14:46:36 +030079/* Add ci hdrc device */
80struct platform_device *ci_hdrc_add_device(struct device *dev,
Richard Zhaocbc6dc22012-07-07 22:56:41 +080081 struct resource *res, int nres,
Alexander Shishkin8e229782013-06-24 14:46:36 +030082 struct ci_hdrc_platform_data *platdata);
83/* Remove ci hdrc device */
84void ci_hdrc_remove_device(struct platform_device *pdev);
Richard Zhaocbc6dc22012-07-07 22:56:41 +080085
Alexander Shishkine443b332012-05-11 17:25:46 +030086#endif