1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
3 * Copyright (C) 2004-2016 Synopsys, Inc.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions, and the following disclaimer,
10 * without modification.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The names of the above-listed copyright holders may not be used
15 * to endorse or promote products derived from this software without
16 * specific prior written permission.
18 * ALTERNATIVELY, this software may be distributed under the terms of the
19 * GNU General Public License ("GPL") as published by the Free Software
20 * Foundation; either version 2 of the License, or (at your option) any
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
24 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
27 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
29 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 #include <linux/kernel.h>
37 #include <linux/module.h>
38 #include <linux/of_device.h>
42 static void dwc2_set_bcm_params(struct dwc2_hsotg
*hsotg
)
44 struct dwc2_core_params
*p
= &hsotg
->params
;
46 p
->host_rx_fifo_size
= 774;
47 p
->max_transfer_size
= 65535;
48 p
->max_packet_count
= 511;
52 static void dwc2_set_his_params(struct dwc2_hsotg
*hsotg
)
54 struct dwc2_core_params
*p
= &hsotg
->params
;
56 p
->otg_cap
= DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE
;
57 p
->speed
= DWC2_SPEED_PARAM_HIGH
;
58 p
->host_rx_fifo_size
= 512;
59 p
->host_nperio_tx_fifo_size
= 512;
60 p
->host_perio_tx_fifo_size
= 512;
61 p
->max_transfer_size
= 65535;
62 p
->max_packet_count
= 511;
63 p
->host_channels
= 16;
64 p
->phy_type
= DWC2_PHY_TYPE_PARAM_UTMI
;
65 p
->phy_utmi_width
= 8;
66 p
->i2c_enable
= false;
67 p
->reload_ctl
= false;
68 p
->ahbcfg
= GAHBCFG_HBSTLEN_INCR16
<<
69 GAHBCFG_HBSTLEN_SHIFT
;
70 p
->change_speed_quirk
= true;
71 p
->power_down
= false;
74 static void dwc2_set_s3c6400_params(struct dwc2_hsotg
*hsotg
)
76 struct dwc2_core_params
*p
= &hsotg
->params
;
81 static void dwc2_set_rk_params(struct dwc2_hsotg
*hsotg
)
83 struct dwc2_core_params
*p
= &hsotg
->params
;
85 p
->otg_cap
= DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE
;
86 p
->host_rx_fifo_size
= 525;
87 p
->host_nperio_tx_fifo_size
= 128;
88 p
->host_perio_tx_fifo_size
= 256;
89 p
->ahbcfg
= GAHBCFG_HBSTLEN_INCR16
<<
90 GAHBCFG_HBSTLEN_SHIFT
;
94 static void dwc2_set_ltq_params(struct dwc2_hsotg
*hsotg
)
96 struct dwc2_core_params
*p
= &hsotg
->params
;
99 p
->host_rx_fifo_size
= 288;
100 p
->host_nperio_tx_fifo_size
= 128;
101 p
->host_perio_tx_fifo_size
= 96;
102 p
->max_transfer_size
= 65535;
103 p
->max_packet_count
= 511;
104 p
->ahbcfg
= GAHBCFG_HBSTLEN_INCR16
<<
105 GAHBCFG_HBSTLEN_SHIFT
;
108 static void dwc2_set_amlogic_params(struct dwc2_hsotg
*hsotg
)
110 struct dwc2_core_params
*p
= &hsotg
->params
;
112 p
->otg_cap
= DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE
;
113 p
->speed
= DWC2_SPEED_PARAM_HIGH
;
114 p
->host_rx_fifo_size
= 512;
115 p
->host_nperio_tx_fifo_size
= 500;
116 p
->host_perio_tx_fifo_size
= 500;
117 p
->host_channels
= 16;
118 p
->phy_type
= DWC2_PHY_TYPE_PARAM_UTMI
;
119 p
->ahbcfg
= GAHBCFG_HBSTLEN_INCR8
<<
120 GAHBCFG_HBSTLEN_SHIFT
;
121 p
->power_down
= DWC2_POWER_DOWN_PARAM_NONE
;
124 static void dwc2_set_amlogic_g12a_params(struct dwc2_hsotg
*hsotg
)
126 struct dwc2_core_params
*p
= &hsotg
->params
;
129 p
->lpm_clock_gating
= false;
131 p
->hird_threshold_en
= false;
134 static void dwc2_set_amcc_params(struct dwc2_hsotg
*hsotg
)
136 struct dwc2_core_params
*p
= &hsotg
->params
;
138 p
->ahbcfg
= GAHBCFG_HBSTLEN_INCR16
<< GAHBCFG_HBSTLEN_SHIFT
;
141 static void dwc2_set_stm32f4x9_fsotg_params(struct dwc2_hsotg
*hsotg
)
143 struct dwc2_core_params
*p
= &hsotg
->params
;
145 p
->otg_cap
= DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE
;
146 p
->speed
= DWC2_SPEED_PARAM_FULL
;
147 p
->host_rx_fifo_size
= 128;
148 p
->host_nperio_tx_fifo_size
= 96;
149 p
->host_perio_tx_fifo_size
= 96;
150 p
->max_packet_count
= 256;
151 p
->phy_type
= DWC2_PHY_TYPE_PARAM_FS
;
152 p
->i2c_enable
= false;
153 p
->activate_stm_fs_transceiver
= true;
156 static void dwc2_set_stm32f7_hsotg_params(struct dwc2_hsotg
*hsotg
)
158 struct dwc2_core_params
*p
= &hsotg
->params
;
160 p
->host_rx_fifo_size
= 622;
161 p
->host_nperio_tx_fifo_size
= 128;
162 p
->host_perio_tx_fifo_size
= 256;
165 const struct of_device_id dwc2_of_match_table
[] = {
166 { .compatible
= "brcm,bcm2835-usb", .data
= dwc2_set_bcm_params
},
167 { .compatible
= "hisilicon,hi6220-usb", .data
= dwc2_set_his_params
},
168 { .compatible
= "rockchip,rk3066-usb", .data
= dwc2_set_rk_params
},
169 { .compatible
= "lantiq,arx100-usb", .data
= dwc2_set_ltq_params
},
170 { .compatible
= "lantiq,xrx200-usb", .data
= dwc2_set_ltq_params
},
171 { .compatible
= "snps,dwc2" },
172 { .compatible
= "samsung,s3c6400-hsotg",
173 .data
= dwc2_set_s3c6400_params
},
174 { .compatible
= "amlogic,meson8-usb",
175 .data
= dwc2_set_amlogic_params
},
176 { .compatible
= "amlogic,meson8b-usb",
177 .data
= dwc2_set_amlogic_params
},
178 { .compatible
= "amlogic,meson-gxbb-usb",
179 .data
= dwc2_set_amlogic_params
},
180 { .compatible
= "amlogic,meson-g12a-usb",
181 .data
= dwc2_set_amlogic_g12a_params
},
182 { .compatible
= "amcc,dwc-otg", .data
= dwc2_set_amcc_params
},
183 { .compatible
= "st,stm32f4x9-fsotg",
184 .data
= dwc2_set_stm32f4x9_fsotg_params
},
185 { .compatible
= "st,stm32f4x9-hsotg" },
186 { .compatible
= "st,stm32f7-hsotg",
187 .data
= dwc2_set_stm32f7_hsotg_params
},
190 MODULE_DEVICE_TABLE(of
, dwc2_of_match_table
);
192 static void dwc2_set_param_otg_cap(struct dwc2_hsotg
*hsotg
)
196 switch (hsotg
->hw_params
.op_mode
) {
197 case GHWCFG2_OP_MODE_HNP_SRP_CAPABLE
:
198 val
= DWC2_CAP_PARAM_HNP_SRP_CAPABLE
;
200 case GHWCFG2_OP_MODE_SRP_ONLY_CAPABLE
:
201 case GHWCFG2_OP_MODE_SRP_CAPABLE_DEVICE
:
202 case GHWCFG2_OP_MODE_SRP_CAPABLE_HOST
:
203 val
= DWC2_CAP_PARAM_SRP_ONLY_CAPABLE
;
206 val
= DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE
;
210 hsotg
->params
.otg_cap
= val
;
213 static void dwc2_set_param_phy_type(struct dwc2_hsotg
*hsotg
)
216 u32 hs_phy_type
= hsotg
->hw_params
.hs_phy_type
;
218 val
= DWC2_PHY_TYPE_PARAM_FS
;
219 if (hs_phy_type
!= GHWCFG2_HS_PHY_TYPE_NOT_SUPPORTED
) {
220 if (hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI
||
221 hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI_ULPI
)
222 val
= DWC2_PHY_TYPE_PARAM_UTMI
;
224 val
= DWC2_PHY_TYPE_PARAM_ULPI
;
227 if (dwc2_is_fs_iot(hsotg
))
228 hsotg
->params
.phy_type
= DWC2_PHY_TYPE_PARAM_FS
;
230 hsotg
->params
.phy_type
= val
;
233 static void dwc2_set_param_speed(struct dwc2_hsotg
*hsotg
)
237 val
= hsotg
->params
.phy_type
== DWC2_PHY_TYPE_PARAM_FS
?
238 DWC2_SPEED_PARAM_FULL
: DWC2_SPEED_PARAM_HIGH
;
240 if (dwc2_is_fs_iot(hsotg
))
241 val
= DWC2_SPEED_PARAM_FULL
;
243 if (dwc2_is_hs_iot(hsotg
))
244 val
= DWC2_SPEED_PARAM_HIGH
;
246 hsotg
->params
.speed
= val
;
249 static void dwc2_set_param_phy_utmi_width(struct dwc2_hsotg
*hsotg
)
253 val
= (hsotg
->hw_params
.utmi_phy_data_width
==
254 GHWCFG4_UTMI_PHY_DATA_WIDTH_8
) ? 8 : 16;
258 * If using the generic PHY framework, check if the PHY bus
259 * width is 8-bit and set the phyif appropriately.
261 if (phy_get_bus_width(hsotg
->phy
) == 8)
265 hsotg
->params
.phy_utmi_width
= val
;
268 static void dwc2_set_param_tx_fifo_sizes(struct dwc2_hsotg
*hsotg
)
270 struct dwc2_core_params
*p
= &hsotg
->params
;
275 fifo_count
= dwc2_hsotg_tx_fifo_count(hsotg
);
277 memset(p
->g_tx_fifo_size
, 0, sizeof(p
->g_tx_fifo_size
));
278 depth_average
= dwc2_hsotg_tx_fifo_average_depth(hsotg
);
279 for (i
= 1; i
<= fifo_count
; i
++)
280 p
->g_tx_fifo_size
[i
] = depth_average
;
283 static void dwc2_set_param_power_down(struct dwc2_hsotg
*hsotg
)
287 if (hsotg
->hw_params
.hibernation
)
289 else if (hsotg
->hw_params
.power_optimized
)
294 hsotg
->params
.power_down
= val
;
297 static void dwc2_set_param_lpm(struct dwc2_hsotg
*hsotg
)
299 struct dwc2_core_params
*p
= &hsotg
->params
;
301 p
->lpm
= hsotg
->hw_params
.lpm_mode
;
303 p
->lpm_clock_gating
= true;
305 p
->hird_threshold_en
= true;
306 p
->hird_threshold
= 4;
308 p
->lpm_clock_gating
= false;
310 p
->hird_threshold_en
= false;
315 * dwc2_set_default_params() - Set all core parameters to their
316 * auto-detected default values.
318 * @hsotg: Programming view of the DWC_otg controller
321 static void dwc2_set_default_params(struct dwc2_hsotg
*hsotg
)
323 struct dwc2_hw_params
*hw
= &hsotg
->hw_params
;
324 struct dwc2_core_params
*p
= &hsotg
->params
;
325 bool dma_capable
= !(hw
->arch
== GHWCFG2_SLAVE_ONLY_ARCH
);
327 dwc2_set_param_otg_cap(hsotg
);
328 dwc2_set_param_phy_type(hsotg
);
329 dwc2_set_param_speed(hsotg
);
330 dwc2_set_param_phy_utmi_width(hsotg
);
331 dwc2_set_param_power_down(hsotg
);
332 dwc2_set_param_lpm(hsotg
);
333 p
->phy_ulpi_ddr
= false;
334 p
->phy_ulpi_ext_vbus
= false;
336 p
->enable_dynamic_fifo
= hw
->enable_dynamic_fifo
;
337 p
->en_multiple_tx_fifo
= hw
->en_multiple_tx_fifo
;
338 p
->i2c_enable
= hw
->i2c_enable
;
339 p
->acg_enable
= hw
->acg_enable
;
340 p
->ulpi_fs_ls
= false;
342 p
->reload_ctl
= (hw
->snpsid
>= DWC2_CORE_REV_2_92a
);
343 p
->uframe_sched
= true;
344 p
->external_id_pin_ctl
= false;
345 p
->ipg_isoc_en
= false;
346 p
->service_interval
= false;
347 p
->max_packet_count
= hw
->max_packet_count
;
348 p
->max_transfer_size
= hw
->max_transfer_size
;
349 p
->ahbcfg
= GAHBCFG_HBSTLEN_INCR
<< GAHBCFG_HBSTLEN_SHIFT
;
350 p
->ref_clk_per
= 33333;
351 p
->sof_cnt_wkup_alert
= 100;
353 if ((hsotg
->dr_mode
== USB_DR_MODE_HOST
) ||
354 (hsotg
->dr_mode
== USB_DR_MODE_OTG
)) {
355 p
->host_dma
= dma_capable
;
356 p
->dma_desc_enable
= false;
357 p
->dma_desc_fs_enable
= false;
358 p
->host_support_fs_ls_low_power
= false;
359 p
->host_ls_low_power_phy_clk
= false;
360 p
->host_channels
= hw
->host_channels
;
361 p
->host_rx_fifo_size
= hw
->rx_fifo_size
;
362 p
->host_nperio_tx_fifo_size
= hw
->host_nperio_tx_fifo_size
;
363 p
->host_perio_tx_fifo_size
= hw
->host_perio_tx_fifo_size
;
366 if ((hsotg
->dr_mode
== USB_DR_MODE_PERIPHERAL
) ||
367 (hsotg
->dr_mode
== USB_DR_MODE_OTG
)) {
368 p
->g_dma
= dma_capable
;
369 p
->g_dma_desc
= hw
->dma_desc_enable
;
372 * The values for g_rx_fifo_size (2048) and
373 * g_np_tx_fifo_size (1024) come from the legacy s3c
374 * gadget driver. These defaults have been hard-coded
375 * for some time so many platforms depend on these
376 * values. Leave them as defaults for now and only
377 * auto-detect if the hardware does not support the
380 p
->g_rx_fifo_size
= 2048;
381 p
->g_np_tx_fifo_size
= 1024;
382 dwc2_set_param_tx_fifo_sizes(hsotg
);
387 * dwc2_get_device_properties() - Read in device properties.
389 * @hsotg: Programming view of the DWC_otg controller
391 * Read in the device properties and adjust core parameters if needed.
393 static void dwc2_get_device_properties(struct dwc2_hsotg
*hsotg
)
395 struct dwc2_core_params
*p
= &hsotg
->params
;
398 if ((hsotg
->dr_mode
== USB_DR_MODE_PERIPHERAL
) ||
399 (hsotg
->dr_mode
== USB_DR_MODE_OTG
)) {
400 device_property_read_u32(hsotg
->dev
, "g-rx-fifo-size",
403 device_property_read_u32(hsotg
->dev
, "g-np-tx-fifo-size",
404 &p
->g_np_tx_fifo_size
);
406 num
= device_property_read_u32_array(hsotg
->dev
,
412 memset(p
->g_tx_fifo_size
, 0,
413 sizeof(p
->g_tx_fifo_size
));
414 device_property_read_u32_array(hsotg
->dev
,
416 &p
->g_tx_fifo_size
[1],
421 if (of_find_property(hsotg
->dev
->of_node
, "disable-over-current", NULL
))
422 p
->oc_disable
= true;
425 static void dwc2_check_param_otg_cap(struct dwc2_hsotg
*hsotg
)
429 switch (hsotg
->params
.otg_cap
) {
430 case DWC2_CAP_PARAM_HNP_SRP_CAPABLE
:
431 if (hsotg
->hw_params
.op_mode
!= GHWCFG2_OP_MODE_HNP_SRP_CAPABLE
)
434 case DWC2_CAP_PARAM_SRP_ONLY_CAPABLE
:
435 switch (hsotg
->hw_params
.op_mode
) {
436 case GHWCFG2_OP_MODE_HNP_SRP_CAPABLE
:
437 case GHWCFG2_OP_MODE_SRP_ONLY_CAPABLE
:
438 case GHWCFG2_OP_MODE_SRP_CAPABLE_DEVICE
:
439 case GHWCFG2_OP_MODE_SRP_CAPABLE_HOST
:
446 case DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE
:
455 dwc2_set_param_otg_cap(hsotg
);
458 static void dwc2_check_param_phy_type(struct dwc2_hsotg
*hsotg
)
464 hs_phy_type
= hsotg
->hw_params
.hs_phy_type
;
465 fs_phy_type
= hsotg
->hw_params
.fs_phy_type
;
467 switch (hsotg
->params
.phy_type
) {
468 case DWC2_PHY_TYPE_PARAM_FS
:
469 if (fs_phy_type
== GHWCFG2_FS_PHY_TYPE_DEDICATED
)
472 case DWC2_PHY_TYPE_PARAM_UTMI
:
473 if ((hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI
) ||
474 (hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI_ULPI
))
477 case DWC2_PHY_TYPE_PARAM_ULPI
:
478 if ((hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI
) ||
479 (hs_phy_type
== GHWCFG2_HS_PHY_TYPE_UTMI_ULPI
))
487 dwc2_set_param_phy_type(hsotg
);
490 static void dwc2_check_param_speed(struct dwc2_hsotg
*hsotg
)
493 int phy_type
= hsotg
->params
.phy_type
;
494 int speed
= hsotg
->params
.speed
;
497 case DWC2_SPEED_PARAM_HIGH
:
498 if ((hsotg
->params
.speed
== DWC2_SPEED_PARAM_HIGH
) &&
499 (phy_type
== DWC2_PHY_TYPE_PARAM_FS
))
502 case DWC2_SPEED_PARAM_FULL
:
503 case DWC2_SPEED_PARAM_LOW
:
511 dwc2_set_param_speed(hsotg
);
514 static void dwc2_check_param_phy_utmi_width(struct dwc2_hsotg
*hsotg
)
517 int param
= hsotg
->params
.phy_utmi_width
;
518 int width
= hsotg
->hw_params
.utmi_phy_data_width
;
521 case GHWCFG4_UTMI_PHY_DATA_WIDTH_8
:
522 valid
= (param
== 8);
524 case GHWCFG4_UTMI_PHY_DATA_WIDTH_16
:
525 valid
= (param
== 16);
527 case GHWCFG4_UTMI_PHY_DATA_WIDTH_8_OR_16
:
528 valid
= (param
== 8 || param
== 16);
533 dwc2_set_param_phy_utmi_width(hsotg
);
536 static void dwc2_check_param_power_down(struct dwc2_hsotg
*hsotg
)
538 int param
= hsotg
->params
.power_down
;
541 case DWC2_POWER_DOWN_PARAM_NONE
:
543 case DWC2_POWER_DOWN_PARAM_PARTIAL
:
544 if (hsotg
->hw_params
.power_optimized
)
547 "Partial power down isn't supported by HW\n");
548 param
= DWC2_POWER_DOWN_PARAM_NONE
;
550 case DWC2_POWER_DOWN_PARAM_HIBERNATION
:
551 if (hsotg
->hw_params
.hibernation
)
554 "Hibernation isn't supported by HW\n");
555 param
= DWC2_POWER_DOWN_PARAM_NONE
;
559 "%s: Invalid parameter power_down=%d\n",
561 param
= DWC2_POWER_DOWN_PARAM_NONE
;
565 hsotg
->params
.power_down
= param
;
568 static void dwc2_check_param_tx_fifo_sizes(struct dwc2_hsotg
*hsotg
)
576 fifo_count
= dwc2_hsotg_tx_fifo_count(hsotg
);
577 min
= hsotg
->hw_params
.en_multiple_tx_fifo
? 16 : 4;
579 for (fifo
= 1; fifo
<= fifo_count
; fifo
++)
580 total
+= hsotg
->params
.g_tx_fifo_size
[fifo
];
582 if (total
> dwc2_hsotg_tx_fifo_total_depth(hsotg
) || !total
) {
583 dev_warn(hsotg
->dev
, "%s: Invalid parameter g-tx-fifo-size, setting to default average\n",
585 dwc2_set_param_tx_fifo_sizes(hsotg
);
588 for (fifo
= 1; fifo
<= fifo_count
; fifo
++) {
589 dptxfszn
= hsotg
->hw_params
.g_tx_fifo_size
[fifo
];
591 if (hsotg
->params
.g_tx_fifo_size
[fifo
] < min
||
592 hsotg
->params
.g_tx_fifo_size
[fifo
] > dptxfszn
) {
593 dev_warn(hsotg
->dev
, "%s: Invalid parameter g_tx_fifo_size[%d]=%d\n",
595 hsotg
->params
.g_tx_fifo_size
[fifo
]);
596 hsotg
->params
.g_tx_fifo_size
[fifo
] = dptxfszn
;
601 #define CHECK_RANGE(_param, _min, _max, _def) do { \
602 if ((int)(hsotg->params._param) < (_min) || \
603 (hsotg->params._param) > (_max)) { \
604 dev_warn(hsotg->dev, "%s: Invalid parameter %s=%d\n", \
605 __func__, #_param, hsotg->params._param); \
606 hsotg->params._param = (_def); \
610 #define CHECK_BOOL(_param, _check) do { \
611 if (hsotg->params._param && !(_check)) { \
612 dev_warn(hsotg->dev, "%s: Invalid parameter %s=%d\n", \
613 __func__, #_param, hsotg->params._param); \
614 hsotg->params._param = false; \
618 static void dwc2_check_params(struct dwc2_hsotg
*hsotg
)
620 struct dwc2_hw_params
*hw
= &hsotg
->hw_params
;
621 struct dwc2_core_params
*p
= &hsotg
->params
;
622 bool dma_capable
= !(hw
->arch
== GHWCFG2_SLAVE_ONLY_ARCH
);
624 dwc2_check_param_otg_cap(hsotg
);
625 dwc2_check_param_phy_type(hsotg
);
626 dwc2_check_param_speed(hsotg
);
627 dwc2_check_param_phy_utmi_width(hsotg
);
628 dwc2_check_param_power_down(hsotg
);
629 CHECK_BOOL(enable_dynamic_fifo
, hw
->enable_dynamic_fifo
);
630 CHECK_BOOL(en_multiple_tx_fifo
, hw
->en_multiple_tx_fifo
);
631 CHECK_BOOL(i2c_enable
, hw
->i2c_enable
);
632 CHECK_BOOL(ipg_isoc_en
, hw
->ipg_isoc_en
);
633 CHECK_BOOL(acg_enable
, hw
->acg_enable
);
634 CHECK_BOOL(reload_ctl
, (hsotg
->hw_params
.snpsid
> DWC2_CORE_REV_2_92a
));
635 CHECK_BOOL(lpm
, (hsotg
->hw_params
.snpsid
>= DWC2_CORE_REV_2_80a
));
636 CHECK_BOOL(lpm
, hw
->lpm_mode
);
637 CHECK_BOOL(lpm_clock_gating
, hsotg
->params
.lpm
);
638 CHECK_BOOL(besl
, hsotg
->params
.lpm
);
639 CHECK_BOOL(besl
, (hsotg
->hw_params
.snpsid
>= DWC2_CORE_REV_3_00a
));
640 CHECK_BOOL(hird_threshold_en
, hsotg
->params
.lpm
);
641 CHECK_RANGE(hird_threshold
, 0, hsotg
->params
.besl
? 12 : 7, 0);
642 CHECK_BOOL(service_interval
, hw
->service_interval_mode
);
643 CHECK_RANGE(max_packet_count
,
644 15, hw
->max_packet_count
,
645 hw
->max_packet_count
);
646 CHECK_RANGE(max_transfer_size
,
647 2047, hw
->max_transfer_size
,
648 hw
->max_transfer_size
);
650 if ((hsotg
->dr_mode
== USB_DR_MODE_HOST
) ||
651 (hsotg
->dr_mode
== USB_DR_MODE_OTG
)) {
652 CHECK_BOOL(host_dma
, dma_capable
);
653 CHECK_BOOL(dma_desc_enable
, p
->host_dma
);
654 CHECK_BOOL(dma_desc_fs_enable
, p
->dma_desc_enable
);
655 CHECK_BOOL(host_ls_low_power_phy_clk
,
656 p
->phy_type
== DWC2_PHY_TYPE_PARAM_FS
);
657 CHECK_RANGE(host_channels
,
658 1, hw
->host_channels
,
660 CHECK_RANGE(host_rx_fifo_size
,
661 16, hw
->rx_fifo_size
,
663 CHECK_RANGE(host_nperio_tx_fifo_size
,
664 16, hw
->host_nperio_tx_fifo_size
,
665 hw
->host_nperio_tx_fifo_size
);
666 CHECK_RANGE(host_perio_tx_fifo_size
,
667 16, hw
->host_perio_tx_fifo_size
,
668 hw
->host_perio_tx_fifo_size
);
671 if ((hsotg
->dr_mode
== USB_DR_MODE_PERIPHERAL
) ||
672 (hsotg
->dr_mode
== USB_DR_MODE_OTG
)) {
673 CHECK_BOOL(g_dma
, dma_capable
);
674 CHECK_BOOL(g_dma_desc
, (p
->g_dma
&& hw
->dma_desc_enable
));
675 CHECK_RANGE(g_rx_fifo_size
,
676 16, hw
->rx_fifo_size
,
678 CHECK_RANGE(g_np_tx_fifo_size
,
679 16, hw
->dev_nperio_tx_fifo_size
,
680 hw
->dev_nperio_tx_fifo_size
);
681 dwc2_check_param_tx_fifo_sizes(hsotg
);
686 * Gets host hardware parameters. Forces host mode if not currently in
687 * host mode. Should be called immediately after a core soft reset in
688 * order to get the reset values.
690 static void dwc2_get_host_hwparams(struct dwc2_hsotg
*hsotg
)
692 struct dwc2_hw_params
*hw
= &hsotg
->hw_params
;
696 if (hsotg
->dr_mode
== USB_DR_MODE_PERIPHERAL
)
699 dwc2_force_mode(hsotg
, true);
701 gnptxfsiz
= dwc2_readl(hsotg
, GNPTXFSIZ
);
702 hptxfsiz
= dwc2_readl(hsotg
, HPTXFSIZ
);
704 hw
->host_nperio_tx_fifo_size
= (gnptxfsiz
& FIFOSIZE_DEPTH_MASK
) >>
705 FIFOSIZE_DEPTH_SHIFT
;
706 hw
->host_perio_tx_fifo_size
= (hptxfsiz
& FIFOSIZE_DEPTH_MASK
) >>
707 FIFOSIZE_DEPTH_SHIFT
;
711 * Gets device hardware parameters. Forces device mode if not
712 * currently in device mode. Should be called immediately after a core
713 * soft reset in order to get the reset values.
715 static void dwc2_get_dev_hwparams(struct dwc2_hsotg
*hsotg
)
717 struct dwc2_hw_params
*hw
= &hsotg
->hw_params
;
719 int fifo
, fifo_count
;
721 if (hsotg
->dr_mode
== USB_DR_MODE_HOST
)
724 dwc2_force_mode(hsotg
, false);
726 gnptxfsiz
= dwc2_readl(hsotg
, GNPTXFSIZ
);
728 fifo_count
= dwc2_hsotg_tx_fifo_count(hsotg
);
730 for (fifo
= 1; fifo
<= fifo_count
; fifo
++) {
731 hw
->g_tx_fifo_size
[fifo
] =
732 (dwc2_readl(hsotg
, DPTXFSIZN(fifo
)) &
733 FIFOSIZE_DEPTH_MASK
) >> FIFOSIZE_DEPTH_SHIFT
;
736 hw
->dev_nperio_tx_fifo_size
= (gnptxfsiz
& FIFOSIZE_DEPTH_MASK
) >>
737 FIFOSIZE_DEPTH_SHIFT
;
741 * During device initialization, read various hardware configuration
742 * registers and interpret the contents.
744 * @hsotg: Programming view of the DWC_otg controller
747 int dwc2_get_hwparams(struct dwc2_hsotg
*hsotg
)
749 struct dwc2_hw_params
*hw
= &hsotg
->hw_params
;
751 u32 hwcfg1
, hwcfg2
, hwcfg3
, hwcfg4
;
755 * Attempt to ensure this device is really a DWC_otg Controller.
756 * Read and verify the GSNPSID register contents. The value should be
757 * 0x45f4xxxx, 0x5531xxxx or 0x5532xxxx
760 hw
->snpsid
= dwc2_readl(hsotg
, GSNPSID
);
761 if ((hw
->snpsid
& GSNPSID_ID_MASK
) != DWC2_OTG_ID
&&
762 (hw
->snpsid
& GSNPSID_ID_MASK
) != DWC2_FS_IOT_ID
&&
763 (hw
->snpsid
& GSNPSID_ID_MASK
) != DWC2_HS_IOT_ID
) {
764 dev_err(hsotg
->dev
, "Bad value for GSNPSID: 0x%08x\n",
769 dev_dbg(hsotg
->dev
, "Core Release: %1x.%1x%1x%1x (snpsid=%x)\n",
770 hw
->snpsid
>> 12 & 0xf, hw
->snpsid
>> 8 & 0xf,
771 hw
->snpsid
>> 4 & 0xf, hw
->snpsid
& 0xf, hw
->snpsid
);
773 hwcfg1
= dwc2_readl(hsotg
, GHWCFG1
);
774 hwcfg2
= dwc2_readl(hsotg
, GHWCFG2
);
775 hwcfg3
= dwc2_readl(hsotg
, GHWCFG3
);
776 hwcfg4
= dwc2_readl(hsotg
, GHWCFG4
);
777 grxfsiz
= dwc2_readl(hsotg
, GRXFSIZ
);
780 hw
->dev_ep_dirs
= hwcfg1
;
783 hw
->op_mode
= (hwcfg2
& GHWCFG2_OP_MODE_MASK
) >>
784 GHWCFG2_OP_MODE_SHIFT
;
785 hw
->arch
= (hwcfg2
& GHWCFG2_ARCHITECTURE_MASK
) >>
786 GHWCFG2_ARCHITECTURE_SHIFT
;
787 hw
->enable_dynamic_fifo
= !!(hwcfg2
& GHWCFG2_DYNAMIC_FIFO
);
788 hw
->host_channels
= 1 + ((hwcfg2
& GHWCFG2_NUM_HOST_CHAN_MASK
) >>
789 GHWCFG2_NUM_HOST_CHAN_SHIFT
);
790 hw
->hs_phy_type
= (hwcfg2
& GHWCFG2_HS_PHY_TYPE_MASK
) >>
791 GHWCFG2_HS_PHY_TYPE_SHIFT
;
792 hw
->fs_phy_type
= (hwcfg2
& GHWCFG2_FS_PHY_TYPE_MASK
) >>
793 GHWCFG2_FS_PHY_TYPE_SHIFT
;
794 hw
->num_dev_ep
= (hwcfg2
& GHWCFG2_NUM_DEV_EP_MASK
) >>
795 GHWCFG2_NUM_DEV_EP_SHIFT
;
796 hw
->nperio_tx_q_depth
=
797 (hwcfg2
& GHWCFG2_NONPERIO_TX_Q_DEPTH_MASK
) >>
798 GHWCFG2_NONPERIO_TX_Q_DEPTH_SHIFT
<< 1;
799 hw
->host_perio_tx_q_depth
=
800 (hwcfg2
& GHWCFG2_HOST_PERIO_TX_Q_DEPTH_MASK
) >>
801 GHWCFG2_HOST_PERIO_TX_Q_DEPTH_SHIFT
<< 1;
802 hw
->dev_token_q_depth
=
803 (hwcfg2
& GHWCFG2_DEV_TOKEN_Q_DEPTH_MASK
) >>
804 GHWCFG2_DEV_TOKEN_Q_DEPTH_SHIFT
;
807 width
= (hwcfg3
& GHWCFG3_XFER_SIZE_CNTR_WIDTH_MASK
) >>
808 GHWCFG3_XFER_SIZE_CNTR_WIDTH_SHIFT
;
809 hw
->max_transfer_size
= (1 << (width
+ 11)) - 1;
810 width
= (hwcfg3
& GHWCFG3_PACKET_SIZE_CNTR_WIDTH_MASK
) >>
811 GHWCFG3_PACKET_SIZE_CNTR_WIDTH_SHIFT
;
812 hw
->max_packet_count
= (1 << (width
+ 4)) - 1;
813 hw
->i2c_enable
= !!(hwcfg3
& GHWCFG3_I2C
);
814 hw
->total_fifo_size
= (hwcfg3
& GHWCFG3_DFIFO_DEPTH_MASK
) >>
815 GHWCFG3_DFIFO_DEPTH_SHIFT
;
816 hw
->lpm_mode
= !!(hwcfg3
& GHWCFG3_OTG_LPM_EN
);
819 hw
->en_multiple_tx_fifo
= !!(hwcfg4
& GHWCFG4_DED_FIFO_EN
);
820 hw
->num_dev_perio_in_ep
= (hwcfg4
& GHWCFG4_NUM_DEV_PERIO_IN_EP_MASK
) >>
821 GHWCFG4_NUM_DEV_PERIO_IN_EP_SHIFT
;
822 hw
->num_dev_in_eps
= (hwcfg4
& GHWCFG4_NUM_IN_EPS_MASK
) >>
823 GHWCFG4_NUM_IN_EPS_SHIFT
;
824 hw
->dma_desc_enable
= !!(hwcfg4
& GHWCFG4_DESC_DMA
);
825 hw
->power_optimized
= !!(hwcfg4
& GHWCFG4_POWER_OPTIMIZ
);
826 hw
->hibernation
= !!(hwcfg4
& GHWCFG4_HIBER
);
827 hw
->utmi_phy_data_width
= (hwcfg4
& GHWCFG4_UTMI_PHY_DATA_WIDTH_MASK
) >>
828 GHWCFG4_UTMI_PHY_DATA_WIDTH_SHIFT
;
829 hw
->acg_enable
= !!(hwcfg4
& GHWCFG4_ACG_SUPPORTED
);
830 hw
->ipg_isoc_en
= !!(hwcfg4
& GHWCFG4_IPG_ISOC_SUPPORTED
);
831 hw
->service_interval_mode
= !!(hwcfg4
&
832 GHWCFG4_SERVICE_INTERVAL_SUPPORTED
);
835 hw
->rx_fifo_size
= (grxfsiz
& GRXFSIZ_DEPTH_MASK
) >>
838 * Host specific hardware parameters. Reading these parameters
839 * requires the controller to be in host mode. The mode will
840 * be forced, if necessary, to read these values.
842 dwc2_get_host_hwparams(hsotg
);
843 dwc2_get_dev_hwparams(hsotg
);
848 int dwc2_init_params(struct dwc2_hsotg
*hsotg
)
850 const struct of_device_id
*match
;
851 void (*set_params
)(void *data
);
853 dwc2_set_default_params(hsotg
);
854 dwc2_get_device_properties(hsotg
);
856 match
= of_match_device(dwc2_of_match_table
, hsotg
->dev
);
857 if (match
&& match
->data
) {
858 set_params
= match
->data
;
862 dwc2_check_params(hsotg
);