Merge branch 'for-3.10' of git://linux-nfs.org/~bfields/linux
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / staging / dwc2 / core.h
1 /*
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
40 #include <linux/usb/phy.h>
41 #include "hw.h"
42
43 #ifdef DWC2_LOG_WRITES
44 static inline void do_write(u32 value, void *addr)
45 {
46 writel(value, addr);
47 pr_info("INFO:: wrote %08x to %p\n", value, addr);
48 }
49
50 #undef writel
51 #define writel(v, a) do_write(v, a)
52 #endif
53
54 /* Maximum number of Endpoints/HostChannels */
55 #define MAX_EPS_CHANNELS 16
56
57 struct dwc2_hsotg;
58 struct dwc2_host_chan;
59
60 /* Device States */
61 enum dwc2_lx_state {
62 DWC2_L0, /* On state */
63 DWC2_L1, /* LPM sleep state */
64 DWC2_L2, /* USB suspend state */
65 DWC2_L3, /* Off state */
66 };
67
68 /**
69 * struct dwc2_core_params - Parameters for configuring the core
70 *
71 * @otg_cap: Specifies the OTG capabilities. The driver will
72 * automatically detect the value for this parameter if
73 * none is specified.
74 * 0 - HNP and SRP capable (default)
75 * 1 - SRP Only capable
76 * 2 - No HNP/SRP capable
77 * @dma_enable: Specifies whether to use slave or DMA mode for accessing
78 * the data FIFOs. The driver will automatically detect the
79 * value for this parameter if none is specified.
80 * 0 - Slave
81 * 1 - DMA (default, if available)
82 * @dma_desc_enable: When DMA mode is enabled, specifies whether to use
83 * address DMA mode or descriptor DMA mode for accessing
84 * the data FIFOs. The driver will automatically detect the
85 * value for this if none is specified.
86 * 0 - Address DMA
87 * 1 - Descriptor DMA (default, if available)
88 * @speed: Specifies the maximum speed of operation in host and
89 * device mode. The actual speed depends on the speed of
90 * the attached device and the value of phy_type.
91 * 0 - High Speed (default)
92 * 1 - Full Speed
93 * @host_support_fs_ls_low_power: Specifies whether low power mode is supported
94 * when attached to a Full Speed or Low Speed device in
95 * host mode.
96 * 0 - Don't support low power mode (default)
97 * 1 - Support low power mode
98 * @host_ls_low_power_phy_clk: Specifies the PHY clock rate in low power mode
99 * when connected to a Low Speed device in host mode. This
100 * parameter is applicable only if
101 * host_support_fs_ls_low_power is enabled. If phy_type is
102 * set to FS then defaults to 6 MHZ otherwise 48 MHZ.
103 * 0 - 48 MHz
104 * 1 - 6 MHz
105 * @enable_dynamic_fifo: 0 - Use coreConsultant-specified FIFO size parameters
106 * 1 - Allow dynamic FIFO sizing (default)
107 * @host_rx_fifo_size: Number of 4-byte words in the Rx FIFO in host mode when
108 * dynamic FIFO sizing is enabled
109 * 16 to 32768 (default 1024)
110 * @host_nperio_tx_fifo_size: Number of 4-byte words in the non-periodic Tx FIFO
111 * in host mode when dynamic FIFO sizing is enabled
112 * 16 to 32768 (default 1024)
113 * @host_perio_tx_fifo_size: Number of 4-byte words in the periodic Tx FIFO in
114 * host mode when dynamic FIFO sizing is enabled
115 * 16 to 32768 (default 1024)
116 * @max_transfer_size: The maximum transfer size supported, in bytes
117 * 2047 to 65,535 (default 65,535)
118 * @max_packet_count: The maximum number of packets in a transfer
119 * 15 to 511 (default 511)
120 * @host_channels: The number of host channel registers to use
121 * 1 to 16 (default 12)
122 * @phy_type: Specifies the type of PHY interface to use. By default,
123 * the driver will automatically detect the phy_type.
124 * @phy_utmi_width: Specifies the UTMI+ Data Width (in bits). This parameter
125 * is applicable for a phy_type of UTMI+ or ULPI. (For a
126 * ULPI phy_type, this parameter indicates the data width
127 * between the MAC and the ULPI Wrapper.) Also, this
128 * parameter is applicable only if the OTG_HSPHY_WIDTH cC
129 * parameter was set to "8 and 16 bits", meaning that the
130 * core has been configured to work at either data path
131 * width.
132 * 8 or 16 (default 16)
133 * @phy_ulpi_ddr: Specifies whether the ULPI operates at double or single
134 * data rate. This parameter is only applicable if phy_type
135 * is ULPI.
136 * 0 - single data rate ULPI interface with 8 bit wide
137 * data bus (default)
138 * 1 - double data rate ULPI interface with 4 bit wide
139 * data bus
140 * @phy_ulpi_ext_vbus: For a ULPI phy, specifies whether to use the internal or
141 * external supply to drive the VBus
142 * @i2c_enable: Specifies whether to use the I2Cinterface for a full
143 * speed PHY. This parameter is only applicable if phy_type
144 * is FS.
145 * 0 - No (default)
146 * 1 - Yes
147 * @ulpi_fs_ls: True to make ULPI phy operate in FS/LS mode only
148 * @ts_dline: True to enable Term Select Dline pulsing
149 * @en_multiple_tx_fifo: Specifies whether dedicated per-endpoint transmit FIFOs
150 * are enabled
151 * @reload_ctl: True to allow dynamic reloading of HFIR register during
152 * runtime
153 * @ahb_single: This bit enables SINGLE transfers for remainder data in
154 * a transfer for DMA mode of operation.
155 * 0 - remainder data will be sent using INCR burst size
156 * 1 - remainder data will be sent using SINGLE burst size
157 * @otg_ver: OTG version supported
158 * 0 - 1.3
159 * 1 - 2.0
160 *
161 * The following parameters may be specified when starting the module. These
162 * parameters define how the DWC_otg controller should be configured.
163 */
164 struct dwc2_core_params {
165 /*
166 * Don't add any non-int members here, this will break
167 * dwc2_set_all_params!
168 */
169 int otg_cap;
170 int otg_ver;
171 int dma_enable;
172 int dma_desc_enable;
173 int speed;
174 int enable_dynamic_fifo;
175 int en_multiple_tx_fifo;
176 int host_rx_fifo_size;
177 int host_nperio_tx_fifo_size;
178 int host_perio_tx_fifo_size;
179 int max_transfer_size;
180 int max_packet_count;
181 int host_channels;
182 int phy_type;
183 int phy_utmi_width;
184 int phy_ulpi_ddr;
185 int phy_ulpi_ext_vbus;
186 int i2c_enable;
187 int ulpi_fs_ls;
188 int host_support_fs_ls_low_power;
189 int host_ls_low_power_phy_clk;
190 int ts_dline;
191 int reload_ctl;
192 int ahb_single;
193 };
194
195 /**
196 * struct dwc2_hsotg - Holds the state of the driver, including the non-periodic
197 * and periodic schedules
198 *
199 * @dev: The struct device pointer
200 * @regs: Pointer to controller regs
201 * @core_params: Parameters that define how the core should be configured
202 * @hwcfg1: Hardware Configuration - stored here for convenience
203 * @hwcfg2: Hardware Configuration - stored here for convenience
204 * @hwcfg3: Hardware Configuration - stored here for convenience
205 * @hwcfg4: Hardware Configuration - stored here for convenience
206 * @hptxfsiz: Hardware Configuration - stored here for convenience
207 * @snpsid: Value from SNPSID register
208 * @total_fifo_size: Total internal RAM for FIFOs (bytes)
209 * @rx_fifo_size: Size of Rx FIFO (bytes)
210 * @nperio_tx_fifo_size: Size of Non-periodic Tx FIFO (Bytes)
211 * @op_state: The operational State, during transitions (a_host=>
212 * a_peripheral and b_device=>b_host) this may not match
213 * the core, but allows the software to determine
214 * transitions
215 * @queuing_high_bandwidth: True if multiple packets of a high-bandwidth
216 * transfer are in process of being queued
217 * @srp_success: Stores status of SRP request in the case of a FS PHY
218 * with an I2C interface
219 * @wq_otg: Workqueue object used for handling of some interrupts
220 * @wf_otg: Work object for handling Connector ID Status Change
221 * interrupt
222 * @wkp_timer: Timer object for handling Wakeup Detected interrupt
223 * @lx_state: Lx state of connected device
224 * @flags: Flags for handling root port state changes
225 * @non_periodic_sched_inactive: Inactive QHs in the non-periodic schedule.
226 * Transfers associated with these QHs are not currently
227 * assigned to a host channel.
228 * @non_periodic_sched_active: Active QHs in the non-periodic schedule.
229 * Transfers associated with these QHs are currently
230 * assigned to a host channel.
231 * @non_periodic_qh_ptr: Pointer to next QH to process in the active
232 * non-periodic schedule
233 * @periodic_sched_inactive: Inactive QHs in the periodic schedule. This is a
234 * list of QHs for periodic transfers that are _not_
235 * scheduled for the next frame. Each QH in the list has an
236 * interval counter that determines when it needs to be
237 * scheduled for execution. This scheduling mechanism
238 * allows only a simple calculation for periodic bandwidth
239 * used (i.e. must assume that all periodic transfers may
240 * need to execute in the same frame). However, it greatly
241 * simplifies scheduling and should be sufficient for the
242 * vast majority of OTG hosts, which need to connect to a
243 * small number of peripherals at one time. Items move from
244 * this list to periodic_sched_ready when the QH interval
245 * counter is 0 at SOF.
246 * @periodic_sched_ready: List of periodic QHs that are ready for execution in
247 * the next frame, but have not yet been assigned to host
248 * channels. Items move from this list to
249 * periodic_sched_assigned as host channels become
250 * available during the current frame.
251 * @periodic_sched_assigned: List of periodic QHs to be executed in the next
252 * frame that are assigned to host channels. Items move
253 * from this list to periodic_sched_queued as the
254 * transactions for the QH are queued to the DWC_otg
255 * controller.
256 * @periodic_sched_queued: List of periodic QHs that have been queued for
257 * execution. Items move from this list to either
258 * periodic_sched_inactive or periodic_sched_ready when the
259 * channel associated with the transfer is released. If the
260 * interval for the QH is 1, the item moves to
261 * periodic_sched_ready because it must be rescheduled for
262 * the next frame. Otherwise, the item moves to
263 * periodic_sched_inactive.
264 * @periodic_usecs: Total bandwidth claimed so far for periodic transfers.
265 * This value is in microseconds per (micro)frame. The
266 * assumption is that all periodic transfers may occur in
267 * the same (micro)frame.
268 * @frame_number: Frame number read from the core at SOF. The value ranges
269 * from 0 to HFNUM_MAX_FRNUM.
270 * @periodic_qh_count: Count of periodic QHs, if using several eps. Used for
271 * SOF enable/disable.
272 * @free_hc_list: Free host channels in the controller. This is a list of
273 * struct dwc2_host_chan items.
274 * @periodic_channels: Number of host channels assigned to periodic transfers.
275 * Currently assuming that there is a dedicated host
276 * channel for each periodic transaction and at least one
277 * host channel is available for non-periodic transactions.
278 * @non_periodic_channels: Number of host channels assigned to non-periodic
279 * transfers
280 * @hc_ptr_array: Array of pointers to the host channel descriptors.
281 * Allows accessing a host channel descriptor given the
282 * host channel number. This is useful in interrupt
283 * handlers.
284 * @status_buf: Buffer used for data received during the status phase of
285 * a control transfer.
286 * @status_buf_dma: DMA address for status_buf
287 * @start_work: Delayed work for handling host A-cable connection
288 * @reset_work: Delayed work for handling a port reset
289 * @lock: Spinlock that protects all the driver data structures
290 * @priv: Stores a pointer to the struct usb_hcd
291 * @otg_port: OTG port number
292 * @frame_list: Frame list
293 * @frame_list_dma: Frame list DMA address
294 */
295 struct dwc2_hsotg {
296 struct device *dev;
297 void __iomem *regs;
298 struct dwc2_core_params *core_params;
299 u32 hwcfg1;
300 u32 hwcfg2;
301 u32 hwcfg3;
302 u32 hwcfg4;
303 u32 hptxfsiz;
304 u32 snpsid;
305 u16 total_fifo_size;
306 u16 rx_fifo_size;
307 u16 nperio_tx_fifo_size;
308 enum usb_otg_state op_state;
309
310 unsigned int queuing_high_bandwidth:1;
311 unsigned int srp_success:1;
312
313 struct workqueue_struct *wq_otg;
314 struct work_struct wf_otg;
315 struct timer_list wkp_timer;
316 enum dwc2_lx_state lx_state;
317
318 union dwc2_hcd_internal_flags {
319 u32 d32;
320 struct {
321 unsigned port_connect_status_change:1;
322 unsigned port_connect_status:1;
323 unsigned port_reset_change:1;
324 unsigned port_enable_change:1;
325 unsigned port_suspend_change:1;
326 unsigned port_over_current_change:1;
327 unsigned port_l1_change:1;
328 unsigned reserved:26;
329 } b;
330 } flags;
331
332 struct list_head non_periodic_sched_inactive;
333 struct list_head non_periodic_sched_active;
334 struct list_head *non_periodic_qh_ptr;
335 struct list_head periodic_sched_inactive;
336 struct list_head periodic_sched_ready;
337 struct list_head periodic_sched_assigned;
338 struct list_head periodic_sched_queued;
339 u16 periodic_usecs;
340 u16 frame_number;
341 u16 periodic_qh_count;
342
343 #ifdef CONFIG_USB_DWC2_TRACK_MISSED_SOFS
344 #define FRAME_NUM_ARRAY_SIZE 1000
345 u16 last_frame_num;
346 u16 *frame_num_array;
347 u16 *last_frame_num_array;
348 int frame_num_idx;
349 int dumped_frame_num_array;
350 #endif
351
352 struct list_head free_hc_list;
353 int periodic_channels;
354 int non_periodic_channels;
355 struct dwc2_host_chan *hc_ptr_array[MAX_EPS_CHANNELS];
356 u8 *status_buf;
357 dma_addr_t status_buf_dma;
358 #define DWC2_HCD_STATUS_BUF_SIZE 64
359
360 struct delayed_work start_work;
361 struct delayed_work reset_work;
362 spinlock_t lock;
363 void *priv;
364 u8 otg_port;
365 u32 *frame_list;
366 dma_addr_t frame_list_dma;
367
368 /* DWC OTG HW Release versions */
369 #define DWC2_CORE_REV_2_71a 0x4f54271a
370 #define DWC2_CORE_REV_2_90a 0x4f54290a
371 #define DWC2_CORE_REV_2_92a 0x4f54292a
372 #define DWC2_CORE_REV_2_94a 0x4f54294a
373 #define DWC2_CORE_REV_3_00a 0x4f54300a
374
375 #ifdef DEBUG
376 u32 frrem_samples;
377 u64 frrem_accum;
378
379 u32 hfnum_7_samples_a;
380 u64 hfnum_7_frrem_accum_a;
381 u32 hfnum_0_samples_a;
382 u64 hfnum_0_frrem_accum_a;
383 u32 hfnum_other_samples_a;
384 u64 hfnum_other_frrem_accum_a;
385
386 u32 hfnum_7_samples_b;
387 u64 hfnum_7_frrem_accum_b;
388 u32 hfnum_0_samples_b;
389 u64 hfnum_0_frrem_accum_b;
390 u32 hfnum_other_samples_b;
391 u64 hfnum_other_frrem_accum_b;
392 #endif
393 };
394
395 /* Reasons for halting a host channel */
396 enum dwc2_halt_status {
397 DWC2_HC_XFER_NO_HALT_STATUS,
398 DWC2_HC_XFER_COMPLETE,
399 DWC2_HC_XFER_URB_COMPLETE,
400 DWC2_HC_XFER_ACK,
401 DWC2_HC_XFER_NAK,
402 DWC2_HC_XFER_NYET,
403 DWC2_HC_XFER_STALL,
404 DWC2_HC_XFER_XACT_ERR,
405 DWC2_HC_XFER_FRAME_OVERRUN,
406 DWC2_HC_XFER_BABBLE_ERR,
407 DWC2_HC_XFER_DATA_TOGGLE_ERR,
408 DWC2_HC_XFER_AHB_ERR,
409 DWC2_HC_XFER_PERIODIC_INCOMPLETE,
410 DWC2_HC_XFER_URB_DEQUEUE,
411 };
412
413 /*
414 * The following functions support initialization of the core driver component
415 * and the DWC_otg controller
416 */
417 extern void dwc2_core_host_init(struct dwc2_hsotg *hsotg);
418
419 /*
420 * Host core Functions.
421 * The following functions support managing the DWC_otg controller in host
422 * mode.
423 */
424 extern void dwc2_hc_init(struct dwc2_hsotg *hsotg, struct dwc2_host_chan *chan);
425 extern void dwc2_hc_halt(struct dwc2_hsotg *hsotg, struct dwc2_host_chan *chan,
426 enum dwc2_halt_status halt_status);
427 extern void dwc2_hc_cleanup(struct dwc2_hsotg *hsotg,
428 struct dwc2_host_chan *chan);
429 extern void dwc2_hc_start_transfer(struct dwc2_hsotg *hsotg,
430 struct dwc2_host_chan *chan);
431 extern void dwc2_hc_start_transfer_ddma(struct dwc2_hsotg *hsotg,
432 struct dwc2_host_chan *chan);
433 extern int dwc2_hc_continue_transfer(struct dwc2_hsotg *hsotg,
434 struct dwc2_host_chan *chan);
435 extern void dwc2_hc_do_ping(struct dwc2_hsotg *hsotg,
436 struct dwc2_host_chan *chan);
437 extern void dwc2_enable_host_interrupts(struct dwc2_hsotg *hsotg);
438 extern void dwc2_disable_host_interrupts(struct dwc2_hsotg *hsotg);
439
440 extern u32 dwc2_calc_frame_interval(struct dwc2_hsotg *hsotg);
441 extern int dwc2_check_core_status(struct dwc2_hsotg *hsotg);
442
443 /*
444 * Common core Functions.
445 * The following functions support managing the DWC_otg controller in either
446 * device or host mode.
447 */
448 extern void dwc2_read_packet(struct dwc2_hsotg *hsotg, u8 *dest, u16 bytes);
449 extern void dwc2_flush_tx_fifo(struct dwc2_hsotg *hsotg, const int num);
450 extern void dwc2_flush_rx_fifo(struct dwc2_hsotg *hsotg);
451
452 extern int dwc2_core_init(struct dwc2_hsotg *hsotg, bool select_phy, int irq);
453 extern void dwc2_enable_global_interrupts(struct dwc2_hsotg *hcd);
454 extern void dwc2_disable_global_interrupts(struct dwc2_hsotg *hcd);
455
456 /* This function should be called on every hardware interrupt. */
457 extern irqreturn_t dwc2_handle_common_intr(int irq, void *dev);
458
459 /* OTG Core Parameters */
460
461 /*
462 * Specifies the OTG capabilities. The driver will automatically
463 * detect the value for this parameter if none is specified.
464 * 0 - HNP and SRP capable (default)
465 * 1 - SRP Only capable
466 * 2 - No HNP/SRP capable
467 */
468 extern int dwc2_set_param_otg_cap(struct dwc2_hsotg *hsotg, int val);
469 #define DWC2_CAP_PARAM_HNP_SRP_CAPABLE 0
470 #define DWC2_CAP_PARAM_SRP_ONLY_CAPABLE 1
471 #define DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE 2
472
473 /*
474 * Specifies whether to use slave or DMA mode for accessing the data
475 * FIFOs. The driver will automatically detect the value for this
476 * parameter if none is specified.
477 * 0 - Slave
478 * 1 - DMA (default, if available)
479 */
480 extern int dwc2_set_param_dma_enable(struct dwc2_hsotg *hsotg, int val);
481
482 /*
483 * When DMA mode is enabled specifies whether to use
484 * address DMA or DMA Descritor mode for accessing the data
485 * FIFOs in device mode. The driver will automatically detect
486 * the value for this parameter if none is specified.
487 * 0 - address DMA
488 * 1 - DMA Descriptor(default, if available)
489 */
490 extern int dwc2_set_param_dma_desc_enable(struct dwc2_hsotg *hsotg, int val);
491
492 /*
493 * Specifies the maximum speed of operation in host and device mode.
494 * The actual speed depends on the speed of the attached device and
495 * the value of phy_type. The actual speed depends on the speed of the
496 * attached device.
497 * 0 - High Speed (default)
498 * 1 - Full Speed
499 */
500 extern int dwc2_set_param_speed(struct dwc2_hsotg *hsotg, int val);
501 #define DWC2_SPEED_PARAM_HIGH 0
502 #define DWC2_SPEED_PARAM_FULL 1
503
504 /*
505 * Specifies whether low power mode is supported when attached
506 * to a Full Speed or Low Speed device in host mode.
507 *
508 * 0 - Don't support low power mode (default)
509 * 1 - Support low power mode
510 */
511 extern int dwc2_set_param_host_support_fs_ls_low_power(struct dwc2_hsotg *hsotg,
512 int val);
513
514 /*
515 * Specifies the PHY clock rate in low power mode when connected to a
516 * Low Speed device in host mode. This parameter is applicable only if
517 * HOST_SUPPORT_FS_LS_LOW_POWER is enabled. If PHY_TYPE is set to FS
518 * then defaults to 6 MHZ otherwise 48 MHZ.
519 *
520 * 0 - 48 MHz
521 * 1 - 6 MHz
522 */
523 extern int dwc2_set_param_host_ls_low_power_phy_clk(struct dwc2_hsotg *hsotg,
524 int val);
525 #define DWC2_HOST_LS_LOW_POWER_PHY_CLK_PARAM_48MHZ 0
526 #define DWC2_HOST_LS_LOW_POWER_PHY_CLK_PARAM_6MHZ 1
527
528 /*
529 * 0 - Use cC FIFO size parameters
530 * 1 - Allow dynamic FIFO sizing (default)
531 */
532 extern int dwc2_set_param_enable_dynamic_fifo(struct dwc2_hsotg *hsotg,
533 int val);
534
535 /*
536 * Number of 4-byte words in the Rx FIFO in host mode when dynamic
537 * FIFO sizing is enabled.
538 * 16 to 32768 (default 1024)
539 */
540 extern int dwc2_set_param_host_rx_fifo_size(struct dwc2_hsotg *hsotg, int val);
541
542 /*
543 * Number of 4-byte words in the non-periodic Tx FIFO in host mode
544 * when Dynamic FIFO sizing is enabled in the core.
545 * 16 to 32768 (default 256)
546 */
547 extern int dwc2_set_param_host_nperio_tx_fifo_size(struct dwc2_hsotg *hsotg,
548 int val);
549
550 /*
551 * Number of 4-byte words in the host periodic Tx FIFO when dynamic
552 * FIFO sizing is enabled.
553 * 16 to 32768 (default 256)
554 */
555 extern int dwc2_set_param_host_perio_tx_fifo_size(struct dwc2_hsotg *hsotg,
556 int val);
557
558 /*
559 * The maximum transfer size supported in bytes.
560 * 2047 to 65,535 (default 65,535)
561 */
562 extern int dwc2_set_param_max_transfer_size(struct dwc2_hsotg *hsotg, int val);
563
564 /*
565 * The maximum number of packets in a transfer.
566 * 15 to 511 (default 511)
567 */
568 extern int dwc2_set_param_max_packet_count(struct dwc2_hsotg *hsotg, int val);
569
570 /*
571 * The number of host channel registers to use.
572 * 1 to 16 (default 11)
573 * Note: The FPGA configuration supports a maximum of 11 host channels.
574 */
575 extern int dwc2_set_param_host_channels(struct dwc2_hsotg *hsotg, int val);
576
577 /*
578 * Specifies the type of PHY interface to use. By default, the driver
579 * will automatically detect the phy_type.
580 *
581 * 0 - Full Speed PHY
582 * 1 - UTMI+ (default)
583 * 2 - ULPI
584 */
585 extern int dwc2_set_param_phy_type(struct dwc2_hsotg *hsotg, int val);
586 #define DWC2_PHY_TYPE_PARAM_FS 0
587 #define DWC2_PHY_TYPE_PARAM_UTMI 1
588 #define DWC2_PHY_TYPE_PARAM_ULPI 2
589
590 /*
591 * Specifies the UTMI+ Data Width. This parameter is
592 * applicable for a PHY_TYPE of UTMI+ or ULPI. (For a ULPI
593 * PHY_TYPE, this parameter indicates the data width between
594 * the MAC and the ULPI Wrapper.) Also, this parameter is
595 * applicable only if the OTG_HSPHY_WIDTH cC parameter was set
596 * to "8 and 16 bits", meaning that the core has been
597 * configured to work at either data path width.
598 *
599 * 8 or 16 bits (default 16)
600 */
601 extern int dwc2_set_param_phy_utmi_width(struct dwc2_hsotg *hsotg, int val);
602
603 /*
604 * Specifies whether the ULPI operates at double or single
605 * data rate. This parameter is only applicable if PHY_TYPE is
606 * ULPI.
607 *
608 * 0 - single data rate ULPI interface with 8 bit wide data
609 * bus (default)
610 * 1 - double data rate ULPI interface with 4 bit wide data
611 * bus
612 */
613 extern int dwc2_set_param_phy_ulpi_ddr(struct dwc2_hsotg *hsotg, int val);
614
615 /*
616 * Specifies whether to use the internal or external supply to
617 * drive the vbus with a ULPI phy.
618 */
619 extern int dwc2_set_param_phy_ulpi_ext_vbus(struct dwc2_hsotg *hsotg, int val);
620 #define DWC2_PHY_ULPI_INTERNAL_VBUS 0
621 #define DWC2_PHY_ULPI_EXTERNAL_VBUS 1
622
623 /*
624 * Specifies whether to use the I2Cinterface for full speed PHY. This
625 * parameter is only applicable if PHY_TYPE is FS.
626 * 0 - No (default)
627 * 1 - Yes
628 */
629 extern int dwc2_set_param_i2c_enable(struct dwc2_hsotg *hsotg, int val);
630
631 extern int dwc2_set_param_ulpi_fs_ls(struct dwc2_hsotg *hsotg, int val);
632
633 extern int dwc2_set_param_ts_dline(struct dwc2_hsotg *hsotg, int val);
634
635 /*
636 * Specifies whether dedicated transmit FIFOs are
637 * enabled for non periodic IN endpoints in device mode
638 * 0 - No
639 * 1 - Yes
640 */
641 extern int dwc2_set_param_en_multiple_tx_fifo(struct dwc2_hsotg *hsotg,
642 int val);
643
644 extern int dwc2_set_param_reload_ctl(struct dwc2_hsotg *hsotg, int val);
645
646 extern int dwc2_set_param_ahb_single(struct dwc2_hsotg *hsotg, int val);
647
648 extern int dwc2_set_param_otg_ver(struct dwc2_hsotg *hsotg, int val);
649
650 /*
651 * Dump core registers and SPRAM
652 */
653 extern void dwc2_dump_dev_registers(struct dwc2_hsotg *hsotg);
654 extern void dwc2_dump_host_registers(struct dwc2_hsotg *hsotg);
655 extern void dwc2_dump_global_registers(struct dwc2_hsotg *hsotg);
656
657 /*
658 * Return OTG version - either 1.3 or 2.0
659 */
660 extern u16 dwc2_get_otg_version(struct dwc2_hsotg *hsotg);
661
662 #endif /* __DWC2_CORE_H__ */