blob: 07f99362bc906b67dc4360d4341d23d2b3e0e3b8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Alexander Shishkine443b332012-05-11 17:25:46 +03002/*
3 * Platform data for the chipidea USB dual role controller
4 */
5
6#ifndef __LINUX_USB_CHIPIDEA_H
7#define __LINUX_USB_CHIPIDEA_H
8
Ivan T. Ivanov3ecb3e02015-09-07 14:45:25 +03009#include <linux/extcon.h>
Richard Zhaoa2c3d692012-07-07 22:56:46 +080010#include <linux/usb/otg.h>
11
Alexander Shishkin8e229782013-06-24 14:46:36 +030012struct ci_hdrc;
Ivan T. Ivanov3ecb3e02015-09-07 14:45:25 +030013
14/**
15 * struct ci_hdrc_cable - structure for external connector cable state tracking
Stephen Boyd5cc49262017-01-20 15:11:55 +080016 * @connected: true if cable is connected, false otherwise
Ivan T. Ivanov3ecb3e02015-09-07 14:45:25 +030017 * @changed: set to true when extcon event happen
Stephen Boyda89b94b2016-12-28 14:56:51 -080018 * @enabled: set to true if we've enabled the vbus or id interrupt
Ivan T. Ivanov3ecb3e02015-09-07 14:45:25 +030019 * @edev: device which generate events
20 * @ci: driver state of the chipidea device
21 * @nb: hold event notification callback
22 * @conn: used for notification registration
23 */
24struct ci_hdrc_cable {
Stephen Boyd5cc49262017-01-20 15:11:55 +080025 bool connected;
Ivan T. Ivanov3ecb3e02015-09-07 14:45:25 +030026 bool changed;
Stephen Boyda89b94b2016-12-28 14:56:51 -080027 bool enabled;
Ivan T. Ivanov3ecb3e02015-09-07 14:45:25 +030028 struct extcon_dev *edev;
29 struct ci_hdrc *ci;
30 struct notifier_block nb;
31};
32
Alexander Shishkin8e229782013-06-24 14:46:36 +030033struct ci_hdrc_platform_data {
Alexander Shishkine443b332012-05-11 17:25:46 +030034 const char *name;
35 /* offset of the capability registers */
36 uintptr_t capoffset;
Alexander Shishkinbd841982012-05-11 17:25:55 +030037 unsigned power_budget;
Antoine Tenart1e5e2d32014-10-30 18:41:19 +010038 struct phy *phy;
39 /* old usb_phy interface */
Antoine Tenartef44cb42014-10-30 18:41:16 +010040 struct usb_phy *usb_phy;
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +030041 enum usb_phy_interface phy_mode;
Alexander Shishkine443b332012-05-11 17:25:46 +030042 unsigned long flags;
Alexander Shishkin8e229782013-06-24 14:46:36 +030043#define CI_HDRC_REGS_SHARED BIT(0)
Peter Chen8022d3d2014-10-30 09:15:15 +080044#define CI_HDRC_DISABLE_DEVICE_STREAMING BIT(1)
Peter Chen1f874ed2015-02-11 12:44:45 +080045#define CI_HDRC_SUPPORTS_RUNTIME_PM BIT(2)
Peter Chen8022d3d2014-10-30 09:15:15 +080046#define CI_HDRC_DISABLE_HOST_STREAMING BIT(3)
47#define CI_HDRC_DISABLE_STREAMING (CI_HDRC_DISABLE_DEVICE_STREAMING | \
48 CI_HDRC_DISABLE_HOST_STREAMING)
Peter Chen577b2322013-08-14 12:44:08 +030049 /*
50 * Only set it when DCCPARAMS.DC==1 and DCCPARAMS.HC==1,
51 * but otg is not supported (no register otgsc).
52 */
53#define CI_HDRC_DUAL_ROLE_NOT_OTG BIT(4)
Peter Chened8f8312014-01-10 13:51:27 +080054#define CI_HDRC_IMX28_WRITE_FIX BIT(5)
Michael Grzeschik4f6743d2014-02-19 13:41:43 +080055#define CI_HDRC_FORCE_FULLSPEED BIT(6)
Li Jun6adb9b7b2015-02-11 12:45:01 +080056#define CI_HDRC_TURN_VBUS_EARLY_ON BIT(7)
Peter Chen28362672015-06-18 11:51:53 +080057#define CI_HDRC_SET_NON_ZERO_TTHA BIT(8)
Peter Chen65668712015-03-17 14:21:00 +080058#define CI_HDRC_OVERRIDE_AHB_BURST BIT(9)
Peter Chen96625ea2015-03-17 17:32:45 +080059#define CI_HDRC_OVERRIDE_TX_BURST BIT(10)
60#define CI_HDRC_OVERRIDE_RX_BURST BIT(11)
Stephen Boyd8feb3682016-12-28 14:56:52 -080061#define CI_HDRC_OVERRIDE_PHY_CONTROL BIT(12) /* Glue layer manages phy */
Dmitry Osipenko581821a2017-08-16 13:32:39 +030062#define CI_HDRC_REQUIRES_ALIGNED_DMA BIT(13)
Sascha Hauer691962d2013-06-13 17:59:57 +030063 enum usb_dr_mode dr_mode;
Alexander Shishkin8e229782013-06-24 14:46:36 +030064#define CI_HDRC_CONTROLLER_RESET_EVENT 0
65#define CI_HDRC_CONTROLLER_STOPPED_EVENT 1
Stephen Boyd11893da2016-12-28 14:57:06 -080066 int (*notify_event) (struct ci_hdrc *ci, unsigned event);
Peter Chen1542d9c2013-08-14 12:44:03 +030067 struct regulator *reg_vbus;
Li Jun79742352015-07-09 15:18:45 +080068 struct usb_otg_caps ci_otg_caps;
Peter Chenf6a9ff02014-08-19 09:51:56 +080069 bool tpl_support;
Peter Chendf96ed82014-09-22 16:45:39 +080070 /* interrupt threshold setting */
71 u32 itc_setting;
Peter Chen65668712015-03-17 14:21:00 +080072 u32 ahb_burst_config;
Peter Chen96625ea2015-03-17 17:32:45 +080073 u32 tx_burst_size;
74 u32 rx_burst_size;
Ivan T. Ivanov3ecb3e02015-09-07 14:45:25 +030075
76 /* VBUS and ID signal state tracking, using extcon framework */
77 struct ci_hdrc_cable vbus_extcon;
78 struct ci_hdrc_cable id_extcon;
Fabio Estevam1fbf4622015-09-08 22:18:14 -030079 u32 phy_clkgate_delay_us;
Alexander Shishkine443b332012-05-11 17:25:46 +030080};
81
82/* Default offset of capability registers */
83#define DEF_CAPOFFSET 0x100
84
Alexander Shishkin8e229782013-06-24 14:46:36 +030085/* Add ci hdrc device */
86struct platform_device *ci_hdrc_add_device(struct device *dev,
Richard Zhaocbc6dc22012-07-07 22:56:41 +080087 struct resource *res, int nres,
Alexander Shishkin8e229782013-06-24 14:46:36 +030088 struct ci_hdrc_platform_data *platdata);
89/* Remove ci hdrc device */
90void ci_hdrc_remove_device(struct platform_device *pdev);
Richard Zhaocbc6dc22012-07-07 22:56:41 +080091
Alexander Shishkine443b332012-05-11 17:25:46 +030092#endif