blob: 7fb6434f46397f047ef86c0b722dd0e297170f1b [file] [log] [blame]
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001/*
2 * core.h - DesignWare HS OTG Controller common declarations
3 *
4 * Copyright (C) 2004-2013 Synopsys, Inc.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions, and the following disclaimer,
11 * without modification.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The names of the above-listed copyright holders may not be used
16 * to endorse or promote products derived from this software without
17 * specific prior written permission.
18 *
19 * ALTERNATIVELY, this software may be distributed under the terms of the
20 * GNU General Public License ("GPL") as published by the Free Software
21 * Foundation; either version 2 of the License, or (at your option) any
22 * later version.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
25 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
26 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
28 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#ifndef __DWC2_CORE_H__
38#define __DWC2_CORE_H__
39
Dinh Nguyenf7c0b142014-04-14 14:13:35 -070040#include <linux/phy/phy.h>
41#include <linux/regulator/consumer.h>
42#include <linux/usb/gadget.h>
43#include <linux/usb/otg.h>
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -070044#include <linux/usb/phy.h>
45#include "hw.h"
46
Antti Seppälä95c8bc32015-08-20 21:41:07 +030047static inline u32 dwc2_readl(const void __iomem *addr)
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -070048{
Antti Seppälä95c8bc32015-08-20 21:41:07 +030049 u32 value = __raw_readl(addr);
50
51 /* In order to preserve endianness __raw_* operation is used. Therefore
52 * a barrier is needed to ensure IO access is not re-ordered across
53 * reads or writes
54 */
55 mb();
56 return value;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -070057}
58
Antti Seppälä95c8bc32015-08-20 21:41:07 +030059static inline void dwc2_writel(u32 value, void __iomem *addr)
60{
61 __raw_writel(value, addr);
62
63 /*
64 * In order to preserve endianness __raw_* operation is used. Therefore
65 * a barrier is needed to ensure IO access is not re-ordered across
66 * reads or writes
67 */
68 mb();
69#ifdef DWC2_LOG_WRITES
70 pr_info("INFO:: wrote %08x to %p\n", value, addr);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -070071#endif
Antti Seppälä95c8bc32015-08-20 21:41:07 +030072}
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -070073
74/* Maximum number of Endpoints/HostChannels */
75#define MAX_EPS_CHANNELS 16
76
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050077/* dwc2-hsotg declarations */
78static const char * const dwc2_hsotg_supply_names[] = {
Dinh Nguyenf7c0b142014-04-14 14:13:35 -070079 "vusb_d", /* digital USB supply, 1.2V */
80 "vusb_a", /* analog USB supply, 1.1V */
81};
82
83/*
84 * EP0_MPS_LIMIT
85 *
86 * Unfortunately there seems to be a limit of the amount of data that can
87 * be transferred by IN transactions on EP0. This is either 127 bytes or 3
88 * packets (which practically means 1 packet and 63 bytes of data) when the
89 * MPS is set to 64.
90 *
91 * This means if we are wanting to move >127 bytes of data, we need to
92 * split the transactions up, but just doing one packet at a time does
93 * not work (this may be an implicit DATA0 PID on first packet of the
94 * transaction) and doing 2 packets is outside the controller's limits.
95 *
96 * If we try to lower the MPS size for EP0, then no transfers work properly
97 * for EP0, and the system will fail basic enumeration. As no cause for this
98 * has currently been found, we cannot support any large IN transfers for
99 * EP0.
100 */
101#define EP0_MPS_LIMIT 64
102
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600103struct dwc2_hsotg;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500104struct dwc2_hsotg_req;
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700105
106/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500107 * struct dwc2_hsotg_ep - driver endpoint definition.
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700108 * @ep: The gadget layer representation of the endpoint.
109 * @name: The driver generated name for the endpoint.
110 * @queue: Queue of requests for this endpoint.
111 * @parent: Reference back to the parent device structure.
112 * @req: The current request that the endpoint is processing. This is
113 * used to indicate an request has been loaded onto the endpoint
114 * and has yet to be completed (maybe due to data move, or simply
115 * awaiting an ack from the core all the data has been completed).
116 * @debugfs: File entry for debugfs file for this endpoint.
117 * @lock: State lock to protect contents of endpoint.
118 * @dir_in: Set to true if this endpoint is of the IN direction, which
119 * means that it is sending data to the Host.
120 * @index: The index for the endpoint registers.
121 * @mc: Multi Count - number of transactions per microframe
122 * @interval - Interval for periodic endpoints
123 * @name: The name array passed to the USB core.
124 * @halted: Set if the endpoint has been halted.
125 * @periodic: Set if this is a periodic ep, such as Interrupt
126 * @isochronous: Set if this is a isochronous ep
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +0100127 * @send_zlp: Set if we need to send a zero-length packet.
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700128 * @total_data: The total number of data bytes done.
129 * @fifo_size: The size of the FIFO (for periodic IN endpoints)
130 * @fifo_load: The amount of data loaded into the FIFO (periodic IN)
131 * @last_load: The offset of data for the last start of request.
132 * @size_loaded: The last loaded size for DxEPTSIZE for periodic IN
133 *
134 * This is the driver's state for each registered enpoint, allowing it
135 * to keep track of transactions that need doing. Each endpoint has a
136 * lock to protect the state, to try and avoid using an overall lock
137 * for the host controller as much as possible.
138 *
139 * For periodic IN endpoints, we have fifo_size and fifo_load to try
140 * and keep track of the amount of data in the periodic FIFO for each
141 * of these as we don't have a status register that tells us how much
142 * is in each of them. (note, this may actually be useless information
143 * as in shared-fifo mode periodic in acts like a single-frame packet
144 * buffer than a fifo)
145 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500146struct dwc2_hsotg_ep {
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700147 struct usb_ep ep;
148 struct list_head queue;
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600149 struct dwc2_hsotg *parent;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500150 struct dwc2_hsotg_req *req;
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700151 struct dentry *debugfs;
152
153 unsigned long total_data;
154 unsigned int size_loaded;
155 unsigned int last_load;
156 unsigned int fifo_load;
157 unsigned short fifo_size;
Robert Baldygab203d0a2014-09-09 10:44:56 +0200158 unsigned short fifo_index;
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700159
160 unsigned char dir_in;
161 unsigned char index;
162 unsigned char mc;
163 unsigned char interval;
164
165 unsigned int halted:1;
166 unsigned int periodic:1;
167 unsigned int isochronous:1;
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +0100168 unsigned int send_zlp:1;
Roman Bacikec1f9d92015-09-10 18:13:43 -0700169 unsigned int has_correct_parity:1;
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700170
171 char name[10];
172};
173
174/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500175 * struct dwc2_hsotg_req - data transfer request
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700176 * @req: The USB gadget request
177 * @queue: The list of requests for the endpoint this is queued for.
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +0100178 * @saved_req_buf: variable to save req.buf when bounce buffers are used.
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700179 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500180struct dwc2_hsotg_req {
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700181 struct usb_request req;
182 struct list_head queue;
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +0100183 void *saved_req_buf;
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700184};
185
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600186#if IS_ENABLED(CONFIG_USB_DWC2_PERIPHERAL) || IS_ENABLED(CONFIG_USB_DWC2_DUAL_ROLE)
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700187#define call_gadget(_hs, _entry) \
188do { \
189 if ((_hs)->gadget.speed != USB_SPEED_UNKNOWN && \
190 (_hs)->driver && (_hs)->driver->_entry) { \
191 spin_unlock(&_hs->lock); \
192 (_hs)->driver->_entry(&(_hs)->gadget); \
193 spin_lock(&_hs->lock); \
194 } \
195} while (0)
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600196#else
197#define call_gadget(_hs, _entry) do {} while (0)
198#endif
Dinh Nguyenf7c0b142014-04-14 14:13:35 -0700199
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700200struct dwc2_hsotg;
201struct dwc2_host_chan;
202
203/* Device States */
204enum dwc2_lx_state {
205 DWC2_L0, /* On state */
206 DWC2_L1, /* LPM sleep state */
207 DWC2_L2, /* USB suspend state */
208 DWC2_L3, /* Off state */
209};
210
Gregory Herrero0a176272015-01-09 13:38:52 +0100211/*
212 * Gadget periodic tx fifo sizes as used by legacy driver
213 * EP0 is not included
214 */
215#define DWC2_G_P_LEGACY_TX_FIFO_SIZE {256, 256, 256, 256, 768, 768, 768, \
216 768, 0, 0, 0, 0, 0, 0, 0}
217
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +0100218/* Gadget ep0 states */
219enum dwc2_ep0_state {
220 DWC2_EP0_SETUP,
221 DWC2_EP0_DATA_IN,
222 DWC2_EP0_DATA_OUT,
223 DWC2_EP0_STATUS_IN,
224 DWC2_EP0_STATUS_OUT,
225};
226
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700227/**
228 * struct dwc2_core_params - Parameters for configuring the core
229 *
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200230 * @otg_cap: Specifies the OTG capabilities.
231 * 0 - HNP and SRP capable
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700232 * 1 - SRP Only capable
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200233 * 2 - No HNP/SRP capable (always available)
234 * Defaults to best available option (0, 1, then 2)
Paul Zimmerman725acc82013-08-11 12:50:17 -0700235 * @otg_ver: OTG version supported
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200236 * 0 - 1.3 (default)
Paul Zimmerman725acc82013-08-11 12:50:17 -0700237 * 1 - 2.0
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700238 * @dma_enable: Specifies whether to use slave or DMA mode for accessing
239 * the data FIFOs. The driver will automatically detect the
240 * value for this parameter if none is specified.
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200241 * 0 - Slave (always available)
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700242 * 1 - DMA (default, if available)
243 * @dma_desc_enable: When DMA mode is enabled, specifies whether to use
244 * address DMA mode or descriptor DMA mode for accessing
245 * the data FIFOs. The driver will automatically detect the
246 * value for this if none is specified.
247 * 0 - Address DMA
248 * 1 - Descriptor DMA (default, if available)
Mian Yousaf Kaukabfbb9e222015-11-20 11:49:28 +0100249 * @dma_desc_fs_enable: When DMA mode is enabled, specifies whether to use
250 * address DMA mode or descriptor DMA mode for accessing
251 * the data FIFOs in Full Speed mode only. The driver
252 * will automatically detect the value for this if none is
253 * specified.
254 * 0 - Address DMA
255 * 1 - Descriptor DMA in FS (default, if available)
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700256 * @speed: Specifies the maximum speed of operation in host and
257 * device mode. The actual speed depends on the speed of
258 * the attached device and the value of phy_type.
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200259 * 0 - High Speed
260 * (default when phy_type is UTMI+ or ULPI)
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700261 * 1 - Full Speed
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200262 * (default when phy_type is Full Speed)
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700263 * @enable_dynamic_fifo: 0 - Use coreConsultant-specified FIFO size parameters
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200264 * 1 - Allow dynamic FIFO sizing (default, if available)
Paul Zimmerman725acc82013-08-11 12:50:17 -0700265 * @en_multiple_tx_fifo: Specifies whether dedicated per-endpoint transmit FIFOs
266 * are enabled
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700267 * @host_rx_fifo_size: Number of 4-byte words in the Rx FIFO in host mode when
268 * dynamic FIFO sizing is enabled
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200269 * 16 to 32768
270 * Actual maximum value is autodetected and also
271 * the default.
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700272 * @host_nperio_tx_fifo_size: Number of 4-byte words in the non-periodic Tx FIFO
273 * in host mode when dynamic FIFO sizing is enabled
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200274 * 16 to 32768
275 * Actual maximum value is autodetected and also
276 * the default.
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700277 * @host_perio_tx_fifo_size: Number of 4-byte words in the periodic Tx FIFO in
278 * host mode when dynamic FIFO sizing is enabled
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200279 * 16 to 32768
280 * Actual maximum value is autodetected and also
281 * the default.
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700282 * @max_transfer_size: The maximum transfer size supported, in bytes
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200283 * 2047 to 65,535
284 * Actual maximum value is autodetected and also
285 * the default.
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700286 * @max_packet_count: The maximum number of packets in a transfer
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200287 * 15 to 511
288 * Actual maximum value is autodetected and also
289 * the default.
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700290 * @host_channels: The number of host channel registers to use
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200291 * 1 to 16
292 * Actual maximum value is autodetected and also
293 * the default.
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700294 * @phy_type: Specifies the type of PHY interface to use. By default,
295 * the driver will automatically detect the phy_type.
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200296 * 0 - Full Speed Phy
297 * 1 - UTMI+ Phy
298 * 2 - ULPI Phy
299 * Defaults to best available option (2, 1, then 0)
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700300 * @phy_utmi_width: Specifies the UTMI+ Data Width (in bits). This parameter
301 * is applicable for a phy_type of UTMI+ or ULPI. (For a
302 * ULPI phy_type, this parameter indicates the data width
303 * between the MAC and the ULPI Wrapper.) Also, this
304 * parameter is applicable only if the OTG_HSPHY_WIDTH cC
305 * parameter was set to "8 and 16 bits", meaning that the
306 * core has been configured to work at either data path
307 * width.
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200308 * 8 or 16 (default 16 if available)
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700309 * @phy_ulpi_ddr: Specifies whether the ULPI operates at double or single
310 * data rate. This parameter is only applicable if phy_type
311 * is ULPI.
312 * 0 - single data rate ULPI interface with 8 bit wide
313 * data bus (default)
314 * 1 - double data rate ULPI interface with 4 bit wide
315 * data bus
316 * @phy_ulpi_ext_vbus: For a ULPI phy, specifies whether to use the internal or
317 * external supply to drive the VBus
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200318 * 0 - Internal supply (default)
319 * 1 - External supply
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700320 * @i2c_enable: Specifies whether to use the I2Cinterface for a full
321 * speed PHY. This parameter is only applicable if phy_type
322 * is FS.
323 * 0 - No (default)
324 * 1 - Yes
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200325 * @ulpi_fs_ls: Make ULPI phy operate in FS/LS mode only
326 * 0 - No (default)
327 * 1 - Yes
Paul Zimmerman725acc82013-08-11 12:50:17 -0700328 * @host_support_fs_ls_low_power: Specifies whether low power mode is supported
329 * when attached to a Full Speed or Low Speed device in
330 * host mode.
331 * 0 - Don't support low power mode (default)
332 * 1 - Support low power mode
333 * @host_ls_low_power_phy_clk: Specifies the PHY clock rate in low power mode
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200334 * when connected to a Low Speed device in host
335 * mode. This parameter is applicable only if
336 * host_support_fs_ls_low_power is enabled.
Paul Zimmerman725acc82013-08-11 12:50:17 -0700337 * 0 - 48 MHz
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200338 * (default when phy_type is UTMI+ or ULPI)
Paul Zimmerman725acc82013-08-11 12:50:17 -0700339 * 1 - 6 MHz
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200340 * (default when phy_type is Full Speed)
341 * @ts_dline: Enable Term Select Dline pulsing
342 * 0 - No (default)
343 * 1 - Yes
344 * @reload_ctl: Allow dynamic reloading of HFIR register during runtime
345 * 0 - No (default for core < 2.92a)
346 * 1 - Yes (default for core >= 2.92a)
Paul Zimmerman4d3190e2013-07-16 12:22:12 -0700347 * @ahbcfg: This field allows the default value of the GAHBCFG
348 * register to be overridden
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200349 * -1 - GAHBCFG value will be set to 0x06
350 * (INCR4, default)
Paul Zimmerman4d3190e2013-07-16 12:22:12 -0700351 * all others - GAHBCFG value will be overridden with
352 * this value
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200353 * Not all bits can be controlled like this, the
354 * bits defined by GAHBCFG_CTRL_MASK are controlled
355 * by the driver and are ignored in this
356 * configuration value.
Dom Cobley20f2eb92013-09-23 14:23:34 -0700357 * @uframe_sched: True to enable the microframe scheduler
Gregory Herreroa6d249d2015-04-29 22:09:04 +0200358 * @external_id_pin_ctl: Specifies whether ID pin is handled externally.
359 * Disable CONIDSTSCHNG controller interrupt in such
360 * case.
361 * 0 - No (default)
362 * 1 - Yes
Gregory Herrero285046a2015-04-29 22:09:19 +0200363 * @hibernation: Specifies whether the controller support hibernation.
364 * If hibernation is enabled, the controller will enter
365 * hibernation in both peripheral and host mode when
366 * needed.
367 * 0 - No (default)
368 * 1 - Yes
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700369 *
370 * The following parameters may be specified when starting the module. These
Matthijs Kooijman91121c12013-08-30 18:45:23 +0200371 * parameters define how the DWC_otg controller should be configured. A
372 * value of -1 (or any other out of range value) for any parameter means
373 * to read the value from hardware (if possible) or use the builtin
374 * default described above.
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700375 */
376struct dwc2_core_params {
Matthijs Kooijman8284f932013-04-11 18:43:47 +0200377 /*
378 * Don't add any non-int members here, this will break
379 * dwc2_set_all_params!
380 */
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700381 int otg_cap;
382 int otg_ver;
383 int dma_enable;
384 int dma_desc_enable;
Mian Yousaf Kaukabfbb9e222015-11-20 11:49:28 +0100385 int dma_desc_fs_enable;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700386 int speed;
387 int enable_dynamic_fifo;
388 int en_multiple_tx_fifo;
389 int host_rx_fifo_size;
390 int host_nperio_tx_fifo_size;
391 int host_perio_tx_fifo_size;
392 int max_transfer_size;
393 int max_packet_count;
394 int host_channels;
395 int phy_type;
396 int phy_utmi_width;
397 int phy_ulpi_ddr;
398 int phy_ulpi_ext_vbus;
399 int i2c_enable;
400 int ulpi_fs_ls;
401 int host_support_fs_ls_low_power;
402 int host_ls_low_power_phy_clk;
403 int ts_dline;
404 int reload_ctl;
Paul Zimmerman4d3190e2013-07-16 12:22:12 -0700405 int ahbcfg;
Dom Cobley20f2eb92013-09-23 14:23:34 -0700406 int uframe_sched;
Gregory Herreroa6d249d2015-04-29 22:09:04 +0200407 int external_id_pin_ctl;
Gregory Herrero285046a2015-04-29 22:09:19 +0200408 int hibernation;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700409};
410
411/**
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200412 * struct dwc2_hw_params - Autodetected parameters.
413 *
414 * These parameters are the various parameters read from hardware
415 * registers during initialization. They typically contain the best
416 * supported or maximum value that can be configured in the
417 * corresponding dwc2_core_params value.
418 *
419 * The values that are not in dwc2_core_params are documented below.
420 *
421 * @op_mode Mode of Operation
422 * 0 - HNP- and SRP-Capable OTG (Host & Device)
423 * 1 - SRP-Capable OTG (Host & Device)
424 * 2 - Non-HNP and Non-SRP Capable OTG (Host & Device)
425 * 3 - SRP-Capable Device
426 * 4 - Non-OTG Device
427 * 5 - SRP-Capable Host
428 * 6 - Non-OTG Host
429 * @arch Architecture
430 * 0 - Slave only
431 * 1 - External DMA
432 * 2 - Internal DMA
433 * @power_optimized Are power optimizations enabled?
434 * @num_dev_ep Number of device endpoints available
435 * @num_dev_perio_in_ep Number of device periodic IN endpoints
Mickael Maison997f4f82014-12-23 17:39:45 +0100436 * available
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200437 * @dev_token_q_depth Device Mode IN Token Sequence Learning Queue
438 * Depth
439 * 0 to 30
440 * @host_perio_tx_q_depth
441 * Host Mode Periodic Request Queue Depth
442 * 2, 4 or 8
443 * @nperio_tx_q_depth
444 * Non-Periodic Request Queue Depth
445 * 2, 4 or 8
446 * @hs_phy_type High-speed PHY interface type
447 * 0 - High-speed interface not supported
448 * 1 - UTMI+
449 * 2 - ULPI
450 * 3 - UTMI+ and ULPI
451 * @fs_phy_type Full-speed PHY interface type
452 * 0 - Full speed interface not supported
453 * 1 - Dedicated full speed interface
454 * 2 - FS pins shared with UTMI+ pins
455 * 3 - FS pins shared with ULPI pins
456 * @total_fifo_size: Total internal RAM for FIFOs (bytes)
Matthijs Kooijmande4a1932013-08-30 18:45:22 +0200457 * @utmi_phy_data_width UTMI+ PHY data width
458 * 0 - 8 bits
459 * 1 - 16 bits
460 * 2 - 8 or 16 bits
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200461 * @snpsid: Value from SNPSID register
John Youn55e10402015-12-17 11:17:31 -0800462 * @dev_ep_dirs: Direction of device endpoints (GHWCFG1)
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200463 */
464struct dwc2_hw_params {
465 unsigned op_mode:3;
466 unsigned arch:2;
467 unsigned dma_desc_enable:1;
Mian Yousaf Kaukabfbb9e222015-11-20 11:49:28 +0100468 unsigned dma_desc_fs_enable:1;
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200469 unsigned enable_dynamic_fifo:1;
470 unsigned en_multiple_tx_fifo:1;
471 unsigned host_rx_fifo_size:16;
472 unsigned host_nperio_tx_fifo_size:16;
John Youn55e10402015-12-17 11:17:31 -0800473 unsigned dev_nperio_tx_fifo_size:16;
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200474 unsigned host_perio_tx_fifo_size:16;
475 unsigned nperio_tx_q_depth:3;
476 unsigned host_perio_tx_q_depth:3;
477 unsigned dev_token_q_depth:5;
478 unsigned max_transfer_size:26;
479 unsigned max_packet_count:11;
Matthijs Kooijman2d115542013-10-03 09:46:25 +0200480 unsigned host_channels:5;
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200481 unsigned hs_phy_type:2;
482 unsigned fs_phy_type:2;
483 unsigned i2c_enable:1;
484 unsigned num_dev_ep:4;
485 unsigned num_dev_perio_in_ep:4;
486 unsigned total_fifo_size:16;
487 unsigned power_optimized:1;
Matthijs Kooijmande4a1932013-08-30 18:45:22 +0200488 unsigned utmi_phy_data_width:2;
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200489 u32 snpsid;
John Youn55e10402015-12-17 11:17:31 -0800490 u32 dev_ep_dirs;
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200491};
492
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +0100493/* Size of control and EP0 buffers */
494#define DWC2_CTRL_BUFF_SIZE 8
495
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200496/**
Gregory Herrerod17ee772015-04-29 22:09:01 +0200497 * struct dwc2_gregs_backup - Holds global registers state before entering partial
498 * power down
499 * @gotgctl: Backup of GOTGCTL register
500 * @gintmsk: Backup of GINTMSK register
501 * @gahbcfg: Backup of GAHBCFG register
502 * @gusbcfg: Backup of GUSBCFG register
503 * @grxfsiz: Backup of GRXFSIZ register
504 * @gnptxfsiz: Backup of GNPTXFSIZ register
505 * @gi2cctl: Backup of GI2CCTL register
506 * @hptxfsiz: Backup of HPTXFSIZ register
507 * @gdfifocfg: Backup of GDFIFOCFG register
508 * @dtxfsiz: Backup of DTXFSIZ registers for each endpoint
509 * @gpwrdn: Backup of GPWRDN register
510 */
511struct dwc2_gregs_backup {
512 u32 gotgctl;
513 u32 gintmsk;
514 u32 gahbcfg;
515 u32 gusbcfg;
516 u32 grxfsiz;
517 u32 gnptxfsiz;
518 u32 gi2cctl;
519 u32 hptxfsiz;
520 u32 pcgcctl;
521 u32 gdfifocfg;
522 u32 dtxfsiz[MAX_EPS_CHANNELS];
523 u32 gpwrdn;
Mian Yousaf Kaukabcc1e2042015-06-29 11:05:30 +0200524 bool valid;
Gregory Herrerod17ee772015-04-29 22:09:01 +0200525};
526
527/**
528 * struct dwc2_dregs_backup - Holds device registers state before entering partial
529 * power down
530 * @dcfg: Backup of DCFG register
531 * @dctl: Backup of DCTL register
532 * @daintmsk: Backup of DAINTMSK register
533 * @diepmsk: Backup of DIEPMSK register
534 * @doepmsk: Backup of DOEPMSK register
535 * @diepctl: Backup of DIEPCTL register
536 * @dieptsiz: Backup of DIEPTSIZ register
537 * @diepdma: Backup of DIEPDMA register
538 * @doepctl: Backup of DOEPCTL register
539 * @doeptsiz: Backup of DOEPTSIZ register
540 * @doepdma: Backup of DOEPDMA register
541 */
542struct dwc2_dregs_backup {
543 u32 dcfg;
544 u32 dctl;
545 u32 daintmsk;
546 u32 diepmsk;
547 u32 doepmsk;
548 u32 diepctl[MAX_EPS_CHANNELS];
549 u32 dieptsiz[MAX_EPS_CHANNELS];
550 u32 diepdma[MAX_EPS_CHANNELS];
551 u32 doepctl[MAX_EPS_CHANNELS];
552 u32 doeptsiz[MAX_EPS_CHANNELS];
553 u32 doepdma[MAX_EPS_CHANNELS];
Mian Yousaf Kaukabcc1e2042015-06-29 11:05:30 +0200554 bool valid;
Gregory Herrerod17ee772015-04-29 22:09:01 +0200555};
556
557/**
558 * struct dwc2_hregs_backup - Holds host registers state before entering partial
559 * power down
560 * @hcfg: Backup of HCFG register
561 * @haintmsk: Backup of HAINTMSK register
562 * @hcintmsk: Backup of HCINTMSK register
563 * @hptr0: Backup of HPTR0 register
564 * @hfir: Backup of HFIR register
565 */
566struct dwc2_hregs_backup {
567 u32 hcfg;
568 u32 haintmsk;
569 u32 hcintmsk[MAX_EPS_CHANNELS];
570 u32 hprt0;
571 u32 hfir;
Mian Yousaf Kaukabcc1e2042015-06-29 11:05:30 +0200572 bool valid;
Gregory Herrerod17ee772015-04-29 22:09:01 +0200573};
574
575/**
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700576 * struct dwc2_hsotg - Holds the state of the driver, including the non-periodic
577 * and periodic schedules
578 *
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600579 * These are common for both host and peripheral modes:
580 *
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700581 * @dev: The struct device pointer
582 * @regs: Pointer to controller regs
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200583 * @hw_params: Parameters that were autodetected from the
584 * hardware registers
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600585 * @core_params: Parameters that define how the core should be configured
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700586 * @op_state: The operational State, during transitions (a_host=>
587 * a_peripheral and b_device=>b_host) this may not match
588 * the core, but allows the software to determine
589 * transitions
Kever Yangc0155b92014-08-06 09:01:50 +0800590 * @dr_mode: Requested mode of operation, one of following:
591 * - USB_DR_MODE_PERIPHERAL
592 * - USB_DR_MODE_HOST
593 * - USB_DR_MODE_OTG
Marek Szyprowski09a75e82015-10-14 08:52:29 +0200594 * @hcd_enabled Host mode sub-driver initialization indicator.
595 * @gadget_enabled Peripheral mode sub-driver initialization indicator.
596 * @ll_hw_enabled Status of low-level hardware resources.
597 * @phy: The otg phy transceiver structure for phy control.
598 * @uphy: The otg phy transceiver structure for old USB phy control.
599 * @plat: The platform specific configuration data. This can be removed once
600 * all SoCs support usb transceiver.
601 * @supplies: Definition of USB power supplies
602 * @phyif: PHY interface width
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600603 * @lock: Spinlock that protects all the driver data structures
604 * @priv: Stores a pointer to the struct usb_hcd
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700605 * @queuing_high_bandwidth: True if multiple packets of a high-bandwidth
606 * transfer are in process of being queued
607 * @srp_success: Stores status of SRP request in the case of a FS PHY
608 * with an I2C interface
609 * @wq_otg: Workqueue object used for handling of some interrupts
610 * @wf_otg: Work object for handling Connector ID Status Change
611 * interrupt
612 * @wkp_timer: Timer object for handling Wakeup Detected interrupt
613 * @lx_state: Lx state of connected device
Gregory Herrerod17ee772015-04-29 22:09:01 +0200614 * @gregs_backup: Backup of global registers during suspend
615 * @dregs_backup: Backup of device registers during suspend
616 * @hregs_backup: Backup of host registers during suspend
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600617 *
618 * These are for host mode:
619 *
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700620 * @flags: Flags for handling root port state changes
621 * @non_periodic_sched_inactive: Inactive QHs in the non-periodic schedule.
622 * Transfers associated with these QHs are not currently
623 * assigned to a host channel.
624 * @non_periodic_sched_active: Active QHs in the non-periodic schedule.
625 * Transfers associated with these QHs are currently
626 * assigned to a host channel.
627 * @non_periodic_qh_ptr: Pointer to next QH to process in the active
628 * non-periodic schedule
629 * @periodic_sched_inactive: Inactive QHs in the periodic schedule. This is a
630 * list of QHs for periodic transfers that are _not_
631 * scheduled for the next frame. Each QH in the list has an
632 * interval counter that determines when it needs to be
633 * scheduled for execution. This scheduling mechanism
634 * allows only a simple calculation for periodic bandwidth
635 * used (i.e. must assume that all periodic transfers may
636 * need to execute in the same frame). However, it greatly
637 * simplifies scheduling and should be sufficient for the
638 * vast majority of OTG hosts, which need to connect to a
639 * small number of peripherals at one time. Items move from
640 * this list to periodic_sched_ready when the QH interval
641 * counter is 0 at SOF.
642 * @periodic_sched_ready: List of periodic QHs that are ready for execution in
643 * the next frame, but have not yet been assigned to host
644 * channels. Items move from this list to
645 * periodic_sched_assigned as host channels become
646 * available during the current frame.
647 * @periodic_sched_assigned: List of periodic QHs to be executed in the next
648 * frame that are assigned to host channels. Items move
649 * from this list to periodic_sched_queued as the
650 * transactions for the QH are queued to the DWC_otg
651 * controller.
652 * @periodic_sched_queued: List of periodic QHs that have been queued for
653 * execution. Items move from this list to either
654 * periodic_sched_inactive or periodic_sched_ready when the
655 * channel associated with the transfer is released. If the
656 * interval for the QH is 1, the item moves to
657 * periodic_sched_ready because it must be rescheduled for
658 * the next frame. Otherwise, the item moves to
659 * periodic_sched_inactive.
660 * @periodic_usecs: Total bandwidth claimed so far for periodic transfers.
661 * This value is in microseconds per (micro)frame. The
662 * assumption is that all periodic transfers may occur in
663 * the same (micro)frame.
Dom Cobley20f2eb92013-09-23 14:23:34 -0700664 * @frame_usecs: Internal variable used by the microframe scheduler
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700665 * @frame_number: Frame number read from the core at SOF. The value ranges
666 * from 0 to HFNUM_MAX_FRNUM.
667 * @periodic_qh_count: Count of periodic QHs, if using several eps. Used for
668 * SOF enable/disable.
669 * @free_hc_list: Free host channels in the controller. This is a list of
670 * struct dwc2_host_chan items.
671 * @periodic_channels: Number of host channels assigned to periodic transfers.
672 * Currently assuming that there is a dedicated host
673 * channel for each periodic transaction and at least one
674 * host channel is available for non-periodic transactions.
675 * @non_periodic_channels: Number of host channels assigned to non-periodic
676 * transfers
Dom Cobley20f2eb92013-09-23 14:23:34 -0700677 * @available_host_channels Number of host channels available for the microframe
678 * scheduler to use
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700679 * @hc_ptr_array: Array of pointers to the host channel descriptors.
680 * Allows accessing a host channel descriptor given the
681 * host channel number. This is useful in interrupt
682 * handlers.
683 * @status_buf: Buffer used for data received during the status phase of
684 * a control transfer.
685 * @status_buf_dma: DMA address for status_buf
686 * @start_work: Delayed work for handling host A-cable connection
687 * @reset_work: Delayed work for handling a port reset
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700688 * @otg_port: OTG port number
689 * @frame_list: Frame list
690 * @frame_list_dma: Frame list DMA address
Gregory Herrero95105a92015-11-20 11:49:29 +0100691 * @frame_list_sz: Frame list size
Gregory Herrero3b5fcc92015-11-20 11:49:31 +0100692 * @desc_gen_cache: Kmem cache for generic descriptors
693 * @desc_hsisoc_cache: Kmem cache for hs isochronous descriptors
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600694 *
695 * These are for peripheral mode:
696 *
697 * @driver: USB gadget driver
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600698 * @dedicated_fifos: Set if the hardware has dedicated IN-EP fifos.
699 * @num_of_eps: Number of available EPs (excluding EP0)
700 * @debug_root: Root directrory for debugfs.
701 * @debug_file: Main status file for debugfs.
Gregory Herrero9e14d0a2015-01-30 09:09:28 +0100702 * @debug_testmode: Testmode status file for debugfs.
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600703 * @debug_fifo: FIFO status file for debugfs.
704 * @ep0_reply: Request used for ep0 reply.
705 * @ep0_buff: Buffer for EP0 reply data, if needed.
706 * @ctrl_buff: Buffer for EP0 control requests.
707 * @ctrl_req: Request for EP0 control packets.
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +0100708 * @ep0_state: EP0 control transfers state
Gregory Herrero9e14d0a2015-01-30 09:09:28 +0100709 * @test_mode: USB test mode requested by the host
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600710 * @eps: The endpoints being supplied to the gadget framework
Gregory Herreroedd74be2015-01-09 13:38:48 +0100711 * @g_using_dma: Indicate if dma usage is enabled
Gregory Herrero0a176272015-01-09 13:38:52 +0100712 * @g_rx_fifo_sz: Contains rx fifo size value
713 * @g_np_g_tx_fifo_sz: Contains Non-Periodic tx fifo size value
714 * @g_tx_fifo_sz: Contains tx fifo size value per endpoints
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700715 */
716struct dwc2_hsotg {
717 struct device *dev;
718 void __iomem *regs;
Matthijs Kooijman9badec22013-08-30 18:45:21 +0200719 /** Params detected from hardware */
720 struct dwc2_hw_params hw_params;
721 /** Params to actually use */
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700722 struct dwc2_core_params *core_params;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700723 enum usb_otg_state op_state;
Kever Yangc0155b92014-08-06 09:01:50 +0800724 enum usb_dr_mode dr_mode;
Marek Szyprowskie39af882015-03-10 13:41:10 +0100725 unsigned int hcd_enabled:1;
726 unsigned int gadget_enabled:1;
Marek Szyprowski09a75e82015-10-14 08:52:29 +0200727 unsigned int ll_hw_enabled:1;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700728
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600729 struct phy *phy;
730 struct usb_phy *uphy;
Marek Szyprowski09a75e82015-10-14 08:52:29 +0200731 struct dwc2_hsotg_plat *plat;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500732 struct regulator_bulk_data supplies[ARRAY_SIZE(dwc2_hsotg_supply_names)];
Marek Szyprowski09a75e82015-10-14 08:52:29 +0200733 u32 phyif;
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600734
735 spinlock_t lock;
736 void *priv;
737 int irq;
738 struct clk *clk;
739
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700740 unsigned int queuing_high_bandwidth:1;
741 unsigned int srp_success:1;
742
743 struct workqueue_struct *wq_otg;
744 struct work_struct wf_otg;
745 struct timer_list wkp_timer;
746 enum dwc2_lx_state lx_state;
Mian Yousaf Kaukabcc1e2042015-06-29 11:05:30 +0200747 struct dwc2_gregs_backup gr_backup;
748 struct dwc2_dregs_backup dr_backup;
749 struct dwc2_hregs_backup hr_backup;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700750
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600751 struct dentry *debug_root;
Mian Yousaf Kaukab563cf012015-04-29 22:09:00 +0200752 struct debugfs_regset32 *regset;
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600753
754 /* DWC OTG HW Release versions */
755#define DWC2_CORE_REV_2_71a 0x4f54271a
756#define DWC2_CORE_REV_2_90a 0x4f54290a
757#define DWC2_CORE_REV_2_92a 0x4f54292a
758#define DWC2_CORE_REV_2_94a 0x4f54294a
759#define DWC2_CORE_REV_3_00a 0x4f54300a
760
761#if IS_ENABLED(CONFIG_USB_DWC2_HOST) || IS_ENABLED(CONFIG_USB_DWC2_DUAL_ROLE)
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700762 union dwc2_hcd_internal_flags {
763 u32 d32;
764 struct {
765 unsigned port_connect_status_change:1;
766 unsigned port_connect_status:1;
767 unsigned port_reset_change:1;
768 unsigned port_enable_change:1;
769 unsigned port_suspend_change:1;
770 unsigned port_over_current_change:1;
771 unsigned port_l1_change:1;
Charles Manningfd4850c2014-10-02 15:36:20 +1300772 unsigned reserved:25;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700773 } b;
774 } flags;
775
776 struct list_head non_periodic_sched_inactive;
777 struct list_head non_periodic_sched_active;
778 struct list_head *non_periodic_qh_ptr;
779 struct list_head periodic_sched_inactive;
780 struct list_head periodic_sched_ready;
781 struct list_head periodic_sched_assigned;
782 struct list_head periodic_sched_queued;
783 u16 periodic_usecs;
Dom Cobley20f2eb92013-09-23 14:23:34 -0700784 u16 frame_usecs[8];
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700785 u16 frame_number;
786 u16 periodic_qh_count;
Gregory Herrero734643d2015-09-22 15:16:39 +0200787 bool bus_suspended;
Mian Yousaf Kaukabfbb9e222015-11-20 11:49:28 +0100788 bool new_connection;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700789
790#ifdef CONFIG_USB_DWC2_TRACK_MISSED_SOFS
791#define FRAME_NUM_ARRAY_SIZE 1000
792 u16 last_frame_num;
793 u16 *frame_num_array;
794 u16 *last_frame_num_array;
795 int frame_num_idx;
796 int dumped_frame_num_array;
797#endif
798
799 struct list_head free_hc_list;
800 int periodic_channels;
801 int non_periodic_channels;
Dom Cobley20f2eb92013-09-23 14:23:34 -0700802 int available_host_channels;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700803 struct dwc2_host_chan *hc_ptr_array[MAX_EPS_CHANNELS];
804 u8 *status_buf;
805 dma_addr_t status_buf_dma;
806#define DWC2_HCD_STATUS_BUF_SIZE 64
807
808 struct delayed_work start_work;
809 struct delayed_work reset_work;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700810 u8 otg_port;
811 u32 *frame_list;
812 dma_addr_t frame_list_dma;
Gregory Herrero95105a92015-11-20 11:49:29 +0100813 u32 frame_list_sz;
Gregory Herrero3b5fcc92015-11-20 11:49:31 +0100814 struct kmem_cache *desc_gen_cache;
815 struct kmem_cache *desc_hsisoc_cache;
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700816
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700817#ifdef DEBUG
818 u32 frrem_samples;
819 u64 frrem_accum;
820
821 u32 hfnum_7_samples_a;
822 u64 hfnum_7_frrem_accum_a;
823 u32 hfnum_0_samples_a;
824 u64 hfnum_0_frrem_accum_a;
825 u32 hfnum_other_samples_a;
826 u64 hfnum_other_frrem_accum_a;
827
828 u32 hfnum_7_samples_b;
829 u64 hfnum_7_frrem_accum_b;
830 u32 hfnum_0_samples_b;
831 u64 hfnum_0_frrem_accum_b;
832 u32 hfnum_other_samples_b;
833 u64 hfnum_other_frrem_accum_b;
834#endif
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600835#endif /* CONFIG_USB_DWC2_HOST || CONFIG_USB_DWC2_DUAL_ROLE */
836
837#if IS_ENABLED(CONFIG_USB_DWC2_PERIPHERAL) || IS_ENABLED(CONFIG_USB_DWC2_DUAL_ROLE)
838 /* Gadget structures */
839 struct usb_gadget_driver *driver;
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600840 int fifo_mem;
841 unsigned int dedicated_fifos:1;
842 unsigned char num_of_eps;
843 u32 fifo_map;
844
845 struct usb_request *ep0_reply;
846 struct usb_request *ctrl_req;
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +0100847 void *ep0_buff;
848 void *ctrl_buff;
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +0100849 enum dwc2_ep0_state ep0_state;
Gregory Herrero9e14d0a2015-01-30 09:09:28 +0100850 u8 test_mode;
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600851
852 struct usb_gadget gadget;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +0100853 unsigned int enabled:1;
Marek Szyprowski4ace06e2014-11-21 15:14:47 +0100854 unsigned int connected:1;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500855 struct dwc2_hsotg_ep *eps_in[MAX_EPS_CHANNELS];
856 struct dwc2_hsotg_ep *eps_out[MAX_EPS_CHANNELS];
Gregory Herreroedd74be2015-01-09 13:38:48 +0100857 u32 g_using_dma;
Gregory Herrero0a176272015-01-09 13:38:52 +0100858 u32 g_rx_fifo_sz;
859 u32 g_np_g_tx_fifo_sz;
860 u32 g_tx_fifo_sz[MAX_EPS_CHANNELS];
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600861#endif /* CONFIG_USB_DWC2_PERIPHERAL || CONFIG_USB_DWC2_DUAL_ROLE */
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700862};
863
864/* Reasons for halting a host channel */
865enum dwc2_halt_status {
866 DWC2_HC_XFER_NO_HALT_STATUS,
867 DWC2_HC_XFER_COMPLETE,
868 DWC2_HC_XFER_URB_COMPLETE,
869 DWC2_HC_XFER_ACK,
870 DWC2_HC_XFER_NAK,
871 DWC2_HC_XFER_NYET,
872 DWC2_HC_XFER_STALL,
873 DWC2_HC_XFER_XACT_ERR,
874 DWC2_HC_XFER_FRAME_OVERRUN,
875 DWC2_HC_XFER_BABBLE_ERR,
876 DWC2_HC_XFER_DATA_TOGGLE_ERR,
877 DWC2_HC_XFER_AHB_ERR,
878 DWC2_HC_XFER_PERIODIC_INCOMPLETE,
879 DWC2_HC_XFER_URB_DEQUEUE,
880};
881
882/*
883 * The following functions support initialization of the core driver component
884 * and the DWC_otg controller
885 */
John Younb5d308a2015-12-17 11:16:03 -0800886extern int dwc2_core_reset(struct dwc2_hsotg *hsotg);
John Youn6d58f342015-12-17 11:15:49 -0800887extern int dwc2_core_reset_and_force_dr_mode(struct dwc2_hsotg *hsotg);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700888extern void dwc2_core_host_init(struct dwc2_hsotg *hsotg);
Gregory Herrerod17ee772015-04-29 22:09:01 +0200889extern int dwc2_enter_hibernation(struct dwc2_hsotg *hsotg);
890extern int dwc2_exit_hibernation(struct dwc2_hsotg *hsotg, bool restore);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700891
John Youn09c96982015-12-17 11:17:12 -0800892void dwc2_force_dr_mode(struct dwc2_hsotg *hsotg);
893
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700894/*
895 * Host core Functions.
896 * The following functions support managing the DWC_otg controller in host
897 * mode.
898 */
899extern void dwc2_hc_init(struct dwc2_hsotg *hsotg, struct dwc2_host_chan *chan);
900extern void dwc2_hc_halt(struct dwc2_hsotg *hsotg, struct dwc2_host_chan *chan,
901 enum dwc2_halt_status halt_status);
902extern void dwc2_hc_cleanup(struct dwc2_hsotg *hsotg,
903 struct dwc2_host_chan *chan);
904extern void dwc2_hc_start_transfer(struct dwc2_hsotg *hsotg,
905 struct dwc2_host_chan *chan);
906extern void dwc2_hc_start_transfer_ddma(struct dwc2_hsotg *hsotg,
907 struct dwc2_host_chan *chan);
908extern int dwc2_hc_continue_transfer(struct dwc2_hsotg *hsotg,
909 struct dwc2_host_chan *chan);
910extern void dwc2_hc_do_ping(struct dwc2_hsotg *hsotg,
911 struct dwc2_host_chan *chan);
912extern void dwc2_enable_host_interrupts(struct dwc2_hsotg *hsotg);
913extern void dwc2_disable_host_interrupts(struct dwc2_hsotg *hsotg);
914
915extern u32 dwc2_calc_frame_interval(struct dwc2_hsotg *hsotg);
Paul Zimmerman057715f2013-11-22 16:43:51 -0800916extern bool dwc2_is_controller_alive(struct dwc2_hsotg *hsotg);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700917
918/*
919 * Common core Functions.
920 * The following functions support managing the DWC_otg controller in either
921 * device or host mode.
922 */
923extern void dwc2_read_packet(struct dwc2_hsotg *hsotg, u8 *dest, u16 bytes);
924extern void dwc2_flush_tx_fifo(struct dwc2_hsotg *hsotg, const int num);
925extern void dwc2_flush_rx_fifo(struct dwc2_hsotg *hsotg);
926
Douglas Anderson0fe239b2015-12-17 11:14:40 -0800927extern int dwc2_core_init(struct dwc2_hsotg *hsotg, bool initial_setup);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700928extern void dwc2_enable_global_interrupts(struct dwc2_hsotg *hcd);
929extern void dwc2_disable_global_interrupts(struct dwc2_hsotg *hcd);
930
931/* This function should be called on every hardware interrupt. */
932extern irqreturn_t dwc2_handle_common_intr(int irq, void *dev);
933
934/* OTG Core Parameters */
935
936/*
937 * Specifies the OTG capabilities. The driver will automatically
938 * detect the value for this parameter if none is specified.
939 * 0 - HNP and SRP capable (default)
940 * 1 - SRP Only capable
941 * 2 - No HNP/SRP capable
942 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -0800943extern void dwc2_set_param_otg_cap(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700944#define DWC2_CAP_PARAM_HNP_SRP_CAPABLE 0
945#define DWC2_CAP_PARAM_SRP_ONLY_CAPABLE 1
946#define DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE 2
947
948/*
949 * Specifies whether to use slave or DMA mode for accessing the data
950 * FIFOs. The driver will automatically detect the value for this
951 * parameter if none is specified.
952 * 0 - Slave
953 * 1 - DMA (default, if available)
954 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -0800955extern void dwc2_set_param_dma_enable(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700956
957/*
958 * When DMA mode is enabled specifies whether to use
959 * address DMA or DMA Descritor mode for accessing the data
960 * FIFOs in device mode. The driver will automatically detect
961 * the value for this parameter if none is specified.
962 * 0 - address DMA
963 * 1 - DMA Descriptor(default, if available)
964 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -0800965extern void dwc2_set_param_dma_desc_enable(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700966
967/*
Mian Yousaf Kaukabfbb9e222015-11-20 11:49:28 +0100968 * When DMA mode is enabled specifies whether to use
969 * address DMA or DMA Descritor mode with full speed devices
970 * for accessing the data FIFOs in host mode.
971 * 0 - address DMA
972 * 1 - FS DMA Descriptor(default, if available)
973 */
974extern void dwc2_set_param_dma_desc_fs_enable(struct dwc2_hsotg *hsotg,
975 int val);
976
977/*
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700978 * Specifies the maximum speed of operation in host and device mode.
979 * The actual speed depends on the speed of the attached device and
980 * the value of phy_type. The actual speed depends on the speed of the
981 * attached device.
982 * 0 - High Speed (default)
983 * 1 - Full Speed
984 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -0800985extern void dwc2_set_param_speed(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700986#define DWC2_SPEED_PARAM_HIGH 0
987#define DWC2_SPEED_PARAM_FULL 1
988
989/*
990 * Specifies whether low power mode is supported when attached
991 * to a Full Speed or Low Speed device in host mode.
992 *
993 * 0 - Don't support low power mode (default)
994 * 1 - Support low power mode
995 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -0800996extern void dwc2_set_param_host_support_fs_ls_low_power(
997 struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -0700998
999/*
1000 * Specifies the PHY clock rate in low power mode when connected to a
1001 * Low Speed device in host mode. This parameter is applicable only if
1002 * HOST_SUPPORT_FS_LS_LOW_POWER is enabled. If PHY_TYPE is set to FS
1003 * then defaults to 6 MHZ otherwise 48 MHZ.
1004 *
1005 * 0 - 48 MHz
1006 * 1 - 6 MHz
1007 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001008extern void dwc2_set_param_host_ls_low_power_phy_clk(struct dwc2_hsotg *hsotg,
1009 int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001010#define DWC2_HOST_LS_LOW_POWER_PHY_CLK_PARAM_48MHZ 0
1011#define DWC2_HOST_LS_LOW_POWER_PHY_CLK_PARAM_6MHZ 1
1012
1013/*
1014 * 0 - Use cC FIFO size parameters
1015 * 1 - Allow dynamic FIFO sizing (default)
1016 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001017extern void dwc2_set_param_enable_dynamic_fifo(struct dwc2_hsotg *hsotg,
1018 int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001019
1020/*
1021 * Number of 4-byte words in the Rx FIFO in host mode when dynamic
1022 * FIFO sizing is enabled.
1023 * 16 to 32768 (default 1024)
1024 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001025extern void dwc2_set_param_host_rx_fifo_size(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001026
1027/*
1028 * Number of 4-byte words in the non-periodic Tx FIFO in host mode
1029 * when Dynamic FIFO sizing is enabled in the core.
1030 * 16 to 32768 (default 256)
1031 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001032extern void dwc2_set_param_host_nperio_tx_fifo_size(struct dwc2_hsotg *hsotg,
1033 int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001034
1035/*
1036 * Number of 4-byte words in the host periodic Tx FIFO when dynamic
1037 * FIFO sizing is enabled.
1038 * 16 to 32768 (default 256)
1039 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001040extern void dwc2_set_param_host_perio_tx_fifo_size(struct dwc2_hsotg *hsotg,
1041 int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001042
1043/*
1044 * The maximum transfer size supported in bytes.
1045 * 2047 to 65,535 (default 65,535)
1046 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001047extern void dwc2_set_param_max_transfer_size(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001048
1049/*
1050 * The maximum number of packets in a transfer.
1051 * 15 to 511 (default 511)
1052 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001053extern void dwc2_set_param_max_packet_count(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001054
1055/*
1056 * The number of host channel registers to use.
1057 * 1 to 16 (default 11)
1058 * Note: The FPGA configuration supports a maximum of 11 host channels.
1059 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001060extern void dwc2_set_param_host_channels(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001061
1062/*
1063 * Specifies the type of PHY interface to use. By default, the driver
1064 * will automatically detect the phy_type.
1065 *
1066 * 0 - Full Speed PHY
1067 * 1 - UTMI+ (default)
1068 * 2 - ULPI
1069 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001070extern void dwc2_set_param_phy_type(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001071#define DWC2_PHY_TYPE_PARAM_FS 0
1072#define DWC2_PHY_TYPE_PARAM_UTMI 1
1073#define DWC2_PHY_TYPE_PARAM_ULPI 2
1074
1075/*
1076 * Specifies the UTMI+ Data Width. This parameter is
1077 * applicable for a PHY_TYPE of UTMI+ or ULPI. (For a ULPI
1078 * PHY_TYPE, this parameter indicates the data width between
1079 * the MAC and the ULPI Wrapper.) Also, this parameter is
1080 * applicable only if the OTG_HSPHY_WIDTH cC parameter was set
1081 * to "8 and 16 bits", meaning that the core has been
1082 * configured to work at either data path width.
1083 *
1084 * 8 or 16 bits (default 16)
1085 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001086extern void dwc2_set_param_phy_utmi_width(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001087
1088/*
1089 * Specifies whether the ULPI operates at double or single
1090 * data rate. This parameter is only applicable if PHY_TYPE is
1091 * ULPI.
1092 *
1093 * 0 - single data rate ULPI interface with 8 bit wide data
1094 * bus (default)
1095 * 1 - double data rate ULPI interface with 4 bit wide data
1096 * bus
1097 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001098extern void dwc2_set_param_phy_ulpi_ddr(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001099
1100/*
1101 * Specifies whether to use the internal or external supply to
1102 * drive the vbus with a ULPI phy.
1103 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001104extern void dwc2_set_param_phy_ulpi_ext_vbus(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001105#define DWC2_PHY_ULPI_INTERNAL_VBUS 0
1106#define DWC2_PHY_ULPI_EXTERNAL_VBUS 1
1107
1108/*
1109 * Specifies whether to use the I2Cinterface for full speed PHY. This
1110 * parameter is only applicable if PHY_TYPE is FS.
1111 * 0 - No (default)
1112 * 1 - Yes
1113 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001114extern void dwc2_set_param_i2c_enable(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001115
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001116extern void dwc2_set_param_ulpi_fs_ls(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001117
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001118extern void dwc2_set_param_ts_dline(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001119
1120/*
1121 * Specifies whether dedicated transmit FIFOs are
1122 * enabled for non periodic IN endpoints in device mode
1123 * 0 - No
1124 * 1 - Yes
1125 */
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001126extern void dwc2_set_param_en_multiple_tx_fifo(struct dwc2_hsotg *hsotg,
1127 int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001128
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001129extern void dwc2_set_param_reload_ctl(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001130
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001131extern void dwc2_set_param_ahbcfg(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001132
Paul Zimmerman7218dae2013-11-22 16:43:48 -08001133extern void dwc2_set_param_otg_ver(struct dwc2_hsotg *hsotg, int val);
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001134
Mian Yousaf Kaukabecb176c2015-04-29 22:09:05 +02001135extern void dwc2_set_parameters(struct dwc2_hsotg *hsotg,
1136 const struct dwc2_core_params *params);
1137
1138extern void dwc2_set_all_params(struct dwc2_core_params *params, int value);
1139
1140extern int dwc2_get_hwparams(struct dwc2_hsotg *hsotg);
1141
Marek Szyprowski09a75e82015-10-14 08:52:29 +02001142extern int dwc2_lowlevel_hw_enable(struct dwc2_hsotg *hsotg);
1143extern int dwc2_lowlevel_hw_disable(struct dwc2_hsotg *hsotg);
Mian Yousaf Kaukabecb176c2015-04-29 22:09:05 +02001144
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001145/*
John Youn6bea9622015-12-17 11:16:17 -08001146 * The following functions check the controller's OTG operation mode
1147 * capability (GHWCFG2.OTG_MODE).
1148 *
1149 * These functions can be used before the internal hsotg->hw_params
1150 * are read in and cached so they always read directly from the
1151 * GHWCFG2 register.
1152 */
1153unsigned dwc2_op_mode(struct dwc2_hsotg *hsotg);
1154bool dwc2_hw_is_otg(struct dwc2_hsotg *hsotg);
1155bool dwc2_hw_is_host(struct dwc2_hsotg *hsotg);
1156bool dwc2_hw_is_device(struct dwc2_hsotg *hsotg);
1157
1158/*
John Youn1696d5a2015-12-17 11:16:45 -08001159 * Returns the mode of operation, host or device
1160 */
1161static inline int dwc2_is_host_mode(struct dwc2_hsotg *hsotg)
1162{
1163 return (dwc2_readl(hsotg->regs + GINTSTS) & GINTSTS_CURMODE_HOST) != 0;
1164}
1165static inline int dwc2_is_device_mode(struct dwc2_hsotg *hsotg)
1166{
1167 return (dwc2_readl(hsotg->regs + GINTSTS) & GINTSTS_CURMODE_HOST) == 0;
1168}
1169
1170/*
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001171 * Dump core registers and SPRAM
1172 */
1173extern void dwc2_dump_dev_registers(struct dwc2_hsotg *hsotg);
1174extern void dwc2_dump_host_registers(struct dwc2_hsotg *hsotg);
1175extern void dwc2_dump_global_registers(struct dwc2_hsotg *hsotg);
1176
1177/*
1178 * Return OTG version - either 1.3 or 2.0
1179 */
1180extern u16 dwc2_get_otg_version(struct dwc2_hsotg *hsotg);
1181
Dinh Nguyen117777b2014-11-11 11:13:34 -06001182/* Gadget defines */
1183#if IS_ENABLED(CONFIG_USB_DWC2_PERIPHERAL) || IS_ENABLED(CONFIG_USB_DWC2_DUAL_ROLE)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001184extern int dwc2_hsotg_remove(struct dwc2_hsotg *hsotg);
1185extern int dwc2_hsotg_suspend(struct dwc2_hsotg *dwc2);
1186extern int dwc2_hsotg_resume(struct dwc2_hsotg *dwc2);
Dinh Nguyen117777b2014-11-11 11:13:34 -06001187extern int dwc2_gadget_init(struct dwc2_hsotg *hsotg, int irq);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001188extern void dwc2_hsotg_core_init_disconnected(struct dwc2_hsotg *dwc2,
Gregory Herrero643cc4d2015-01-30 09:09:32 +01001189 bool reset);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001190extern void dwc2_hsotg_core_connect(struct dwc2_hsotg *hsotg);
1191extern void dwc2_hsotg_disconnect(struct dwc2_hsotg *dwc2);
1192extern int dwc2_hsotg_set_test_mode(struct dwc2_hsotg *hsotg, int testmode);
Gregory Herrerof81f46e2015-04-29 22:09:02 +02001193#define dwc2_is_device_connected(hsotg) (hsotg->connected)
Dinh Nguyen117777b2014-11-11 11:13:34 -06001194#else
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001195static inline int dwc2_hsotg_remove(struct dwc2_hsotg *dwc2)
Dinh Nguyen117777b2014-11-11 11:13:34 -06001196{ return 0; }
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001197static inline int dwc2_hsotg_suspend(struct dwc2_hsotg *dwc2)
Dinh Nguyen117777b2014-11-11 11:13:34 -06001198{ return 0; }
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001199static inline int dwc2_hsotg_resume(struct dwc2_hsotg *dwc2)
Dinh Nguyen117777b2014-11-11 11:13:34 -06001200{ return 0; }
1201static inline int dwc2_gadget_init(struct dwc2_hsotg *hsotg, int irq)
1202{ return 0; }
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001203static inline void dwc2_hsotg_core_init_disconnected(struct dwc2_hsotg *dwc2,
Gregory Herrero643cc4d2015-01-30 09:09:32 +01001204 bool reset) {}
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001205static inline void dwc2_hsotg_core_connect(struct dwc2_hsotg *hsotg) {}
1206static inline void dwc2_hsotg_disconnect(struct dwc2_hsotg *dwc2) {}
1207static inline int dwc2_hsotg_set_test_mode(struct dwc2_hsotg *hsotg,
Mian Yousaf Kaukabf91eea42015-04-29 22:08:59 +02001208 int testmode)
1209{ return 0; }
Gregory Herrerof81f46e2015-04-29 22:09:02 +02001210#define dwc2_is_device_connected(hsotg) (0)
Dinh Nguyen117777b2014-11-11 11:13:34 -06001211#endif
1212
1213#if IS_ENABLED(CONFIG_USB_DWC2_HOST) || IS_ENABLED(CONFIG_USB_DWC2_DUAL_ROLE)
1214extern int dwc2_hcd_get_frame_number(struct dwc2_hsotg *hsotg);
Douglas Anderson6a659532015-11-19 13:23:14 -08001215extern void dwc2_hcd_connect(struct dwc2_hsotg *hsotg);
1216extern void dwc2_hcd_disconnect(struct dwc2_hsotg *hsotg, bool force);
Dinh Nguyen117777b2014-11-11 11:13:34 -06001217extern void dwc2_hcd_start(struct dwc2_hsotg *hsotg);
1218#else
Dinh Nguyen117777b2014-11-11 11:13:34 -06001219static inline int dwc2_hcd_get_frame_number(struct dwc2_hsotg *hsotg)
1220{ return 0; }
Douglas Anderson6a659532015-11-19 13:23:14 -08001221static inline void dwc2_hcd_connect(struct dwc2_hsotg *hsotg) {}
1222static inline void dwc2_hcd_disconnect(struct dwc2_hsotg *hsotg, bool force) {}
Dinh Nguyen117777b2014-11-11 11:13:34 -06001223static inline void dwc2_hcd_start(struct dwc2_hsotg *hsotg) {}
1224static inline void dwc2_hcd_remove(struct dwc2_hsotg *hsotg) {}
Mian Yousaf Kaukabecb176c2015-04-29 22:09:05 +02001225static inline int dwc2_hcd_init(struct dwc2_hsotg *hsotg, int irq)
Dinh Nguyen117777b2014-11-11 11:13:34 -06001226{ return 0; }
1227#endif
1228
Paul Zimmerman56f5b1c2013-03-11 17:47:58 -07001229#endif /* __DWC2_CORE_H__ */