1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) 2 /* 3 * Copyright (C) 2004-2016 Synopsys, Inc. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 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. 17 * 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 21 * later version. 22 * 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. 34 */ 35 36 #include <linux/kernel.h> 37 #include <linux/module.h> 38 #include <linux/of_device.h> 39 40 #include "core.h" 41 42 static void dwc2_set_bcm_params(struct dwc2_hsotg *hsotg) 43 { 44 struct dwc2_core_params *p = &hsotg->params; 45 46 p->host_rx_fifo_size = 774; 47 p->max_transfer_size = 65535; 48 p->max_packet_count = 511; 49 p->ahbcfg = 0x10; 50 p->uframe_sched = false; 51 } 52 53 static void dwc2_set_his_params(struct dwc2_hsotg *hsotg) 54 { 55 struct dwc2_core_params *p = &hsotg->params; 56 57 p->otg_cap = DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE; 58 p->speed = DWC2_SPEED_PARAM_HIGH; 59 p->host_rx_fifo_size = 512; 60 p->host_nperio_tx_fifo_size = 512; 61 p->host_perio_tx_fifo_size = 512; 62 p->max_transfer_size = 65535; 63 p->max_packet_count = 511; 64 p->host_channels = 16; 65 p->phy_type = DWC2_PHY_TYPE_PARAM_UTMI; 66 p->phy_utmi_width = 8; 67 p->i2c_enable = false; 68 p->reload_ctl = false; 69 p->ahbcfg = GAHBCFG_HBSTLEN_INCR16 << 70 GAHBCFG_HBSTLEN_SHIFT; 71 p->uframe_sched = false; 72 p->change_speed_quirk = true; 73 } 74 75 static void dwc2_set_rk_params(struct dwc2_hsotg *hsotg) 76 { 77 struct dwc2_core_params *p = &hsotg->params; 78 79 p->otg_cap = DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE; 80 p->host_rx_fifo_size = 525; 81 p->host_nperio_tx_fifo_size = 128; 82 p->host_perio_tx_fifo_size = 256; 83 p->ahbcfg = GAHBCFG_HBSTLEN_INCR16 << 84 GAHBCFG_HBSTLEN_SHIFT; 85 } 86 87 static void dwc2_set_ltq_params(struct dwc2_hsotg *hsotg) 88 { 89 struct dwc2_core_params *p = &hsotg->params; 90 91 p->otg_cap = 2; 92 p->host_rx_fifo_size = 288; 93 p->host_nperio_tx_fifo_size = 128; 94 p->host_perio_tx_fifo_size = 96; 95 p->max_transfer_size = 65535; 96 p->max_packet_count = 511; 97 p->ahbcfg = GAHBCFG_HBSTLEN_INCR16 << 98 GAHBCFG_HBSTLEN_SHIFT; 99 } 100 101 static void dwc2_set_amlogic_params(struct dwc2_hsotg *hsotg) 102 { 103 struct dwc2_core_params *p = &hsotg->params; 104 105 p->otg_cap = DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE; 106 p->speed = DWC2_SPEED_PARAM_HIGH; 107 p->host_rx_fifo_size = 512; 108 p->host_nperio_tx_fifo_size = 500; 109 p->host_perio_tx_fifo_size = 500; 110 p->host_channels = 16; 111 p->phy_type = DWC2_PHY_TYPE_PARAM_UTMI; 112 p->ahbcfg = GAHBCFG_HBSTLEN_INCR8 << 113 GAHBCFG_HBSTLEN_SHIFT; 114 p->uframe_sched = false; 115 } 116 117 static void dwc2_set_amcc_params(struct dwc2_hsotg *hsotg) 118 { 119 struct dwc2_core_params *p = &hsotg->params; 120 121 p->ahbcfg = GAHBCFG_HBSTLEN_INCR16 << GAHBCFG_HBSTLEN_SHIFT; 122 } 123 124 static void dwc2_set_stm32f4x9_fsotg_params(struct dwc2_hsotg *hsotg) 125 { 126 struct dwc2_core_params *p = &hsotg->params; 127 128 p->otg_cap = DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE; 129 p->speed = DWC2_SPEED_PARAM_FULL; 130 p->host_rx_fifo_size = 128; 131 p->host_nperio_tx_fifo_size = 96; 132 p->host_perio_tx_fifo_size = 96; 133 p->max_packet_count = 256; 134 p->phy_type = DWC2_PHY_TYPE_PARAM_FS; 135 p->i2c_enable = false; 136 p->uframe_sched = false; 137 p->activate_stm_fs_transceiver = true; 138 } 139 140 static void dwc2_set_stm32f7xx_hsotg_params(struct dwc2_hsotg *hsotg) 141 { 142 struct dwc2_core_params *p = &hsotg->params; 143 144 p->host_rx_fifo_size = 622; 145 p->host_nperio_tx_fifo_size = 128; 146 p->host_perio_tx_fifo_size = 256; 147 } 148 149 const struct of_device_id dwc2_of_match_table[] = { 150 { .compatible = "brcm,bcm2835-usb", .data = dwc2_set_bcm_params }, 151 { .compatible = "hisilicon,hi6220-usb", .data = dwc2_set_his_params }, 152 { .compatible = "rockchip,rk3066-usb", .data = dwc2_set_rk_params }, 153 { .compatible = "lantiq,arx100-usb", .data = dwc2_set_ltq_params }, 154 { .compatible = "lantiq,xrx200-usb", .data = dwc2_set_ltq_params }, 155 { .compatible = "snps,dwc2" }, 156 { .compatible = "samsung,s3c6400-hsotg" }, 157 { .compatible = "amlogic,meson8-usb", 158 .data = dwc2_set_amlogic_params }, 159 { .compatible = "amlogic,meson8b-usb", 160 .data = dwc2_set_amlogic_params }, 161 { .compatible = "amlogic,meson-gxbb-usb", 162 .data = dwc2_set_amlogic_params }, 163 { .compatible = "amcc,dwc-otg", .data = dwc2_set_amcc_params }, 164 { .compatible = "st,stm32f4x9-fsotg", 165 .data = dwc2_set_stm32f4x9_fsotg_params }, 166 { .compatible = "st,stm32f4x9-hsotg" }, 167 { .compatible = "st,stm32f7xx-hsotg", 168 .data = dwc2_set_stm32f7xx_hsotg_params }, 169 {}, 170 }; 171 MODULE_DEVICE_TABLE(of, dwc2_of_match_table); 172 173 static void dwc2_set_param_otg_cap(struct dwc2_hsotg *hsotg) 174 { 175 u8 val; 176 177 switch (hsotg->hw_params.op_mode) { 178 case GHWCFG2_OP_MODE_HNP_SRP_CAPABLE: 179 val = DWC2_CAP_PARAM_HNP_SRP_CAPABLE; 180 break; 181 case GHWCFG2_OP_MODE_SRP_ONLY_CAPABLE: 182 case GHWCFG2_OP_MODE_SRP_CAPABLE_DEVICE: 183 case GHWCFG2_OP_MODE_SRP_CAPABLE_HOST: 184 val = DWC2_CAP_PARAM_SRP_ONLY_CAPABLE; 185 break; 186 default: 187 val = DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE; 188 break; 189 } 190 191 hsotg->params.otg_cap = val; 192 } 193 194 static void dwc2_set_param_phy_type(struct dwc2_hsotg *hsotg) 195 { 196 int val; 197 u32 hs_phy_type = hsotg->hw_params.hs_phy_type; 198 199 val = DWC2_PHY_TYPE_PARAM_FS; 200 if (hs_phy_type != GHWCFG2_HS_PHY_TYPE_NOT_SUPPORTED) { 201 if (hs_phy_type == GHWCFG2_HS_PHY_TYPE_UTMI || 202 hs_phy_type == GHWCFG2_HS_PHY_TYPE_UTMI_ULPI) 203 val = DWC2_PHY_TYPE_PARAM_UTMI; 204 else 205 val = DWC2_PHY_TYPE_PARAM_ULPI; 206 } 207 208 if (dwc2_is_fs_iot(hsotg)) 209 hsotg->params.phy_type = DWC2_PHY_TYPE_PARAM_FS; 210 211 hsotg->params.phy_type = val; 212 } 213 214 static void dwc2_set_param_speed(struct dwc2_hsotg *hsotg) 215 { 216 int val; 217 218 val = hsotg->params.phy_type == DWC2_PHY_TYPE_PARAM_FS ? 219 DWC2_SPEED_PARAM_FULL : DWC2_SPEED_PARAM_HIGH; 220 221 if (dwc2_is_fs_iot(hsotg)) 222 val = DWC2_SPEED_PARAM_FULL; 223 224 if (dwc2_is_hs_iot(hsotg)) 225 val = DWC2_SPEED_PARAM_HIGH; 226 227 hsotg->params.speed = val; 228 } 229 230 static void dwc2_set_param_phy_utmi_width(struct dwc2_hsotg *hsotg) 231 { 232 int val; 233 234 val = (hsotg->hw_params.utmi_phy_data_width == 235 GHWCFG4_UTMI_PHY_DATA_WIDTH_8) ? 8 : 16; 236 237 hsotg->params.phy_utmi_width = val; 238 } 239 240 static void dwc2_set_param_tx_fifo_sizes(struct dwc2_hsotg *hsotg) 241 { 242 struct dwc2_core_params *p = &hsotg->params; 243 int depth_average; 244 int fifo_count; 245 int i; 246 247 fifo_count = dwc2_hsotg_tx_fifo_count(hsotg); 248 249 memset(p->g_tx_fifo_size, 0, sizeof(p->g_tx_fifo_size)); 250 depth_average = dwc2_hsotg_tx_fifo_average_depth(hsotg); 251 for (i = 1; i <= fifo_count; i++) 252 p->g_tx_fifo_size[i] = depth_average; 253 } 254 255 /** 256 * dwc2_set_default_params() - Set all core parameters to their 257 * auto-detected default values. 258 */ 259 static void dwc2_set_default_params(struct dwc2_hsotg *hsotg) 260 { 261 struct dwc2_hw_params *hw = &hsotg->hw_params; 262 struct dwc2_core_params *p = &hsotg->params; 263 bool dma_capable = !(hw->arch == GHWCFG2_SLAVE_ONLY_ARCH); 264 265 dwc2_set_param_otg_cap(hsotg); 266 dwc2_set_param_phy_type(hsotg); 267 dwc2_set_param_speed(hsotg); 268 dwc2_set_param_phy_utmi_width(hsotg); 269 p->phy_ulpi_ddr = false; 270 p->phy_ulpi_ext_vbus = false; 271 272 p->enable_dynamic_fifo = hw->enable_dynamic_fifo; 273 p->en_multiple_tx_fifo = hw->en_multiple_tx_fifo; 274 p->i2c_enable = hw->i2c_enable; 275 p->ulpi_fs_ls = false; 276 p->ts_dline = false; 277 p->reload_ctl = (hw->snpsid >= DWC2_CORE_REV_2_92a); 278 p->uframe_sched = true; 279 p->external_id_pin_ctl = false; 280 p->hibernation = false; 281 p->max_packet_count = hw->max_packet_count; 282 p->max_transfer_size = hw->max_transfer_size; 283 p->ahbcfg = GAHBCFG_HBSTLEN_INCR4 << GAHBCFG_HBSTLEN_SHIFT; 284 285 if ((hsotg->dr_mode == USB_DR_MODE_HOST) || 286 (hsotg->dr_mode == USB_DR_MODE_OTG)) { 287 p->host_dma = dma_capable; 288 p->dma_desc_enable = false; 289 p->dma_desc_fs_enable = false; 290 p->host_support_fs_ls_low_power = false; 291 p->host_ls_low_power_phy_clk = false; 292 p->host_channels = hw->host_channels; 293 p->host_rx_fifo_size = hw->rx_fifo_size; 294 p->host_nperio_tx_fifo_size = hw->host_nperio_tx_fifo_size; 295 p->host_perio_tx_fifo_size = hw->host_perio_tx_fifo_size; 296 } 297 298 if ((hsotg->dr_mode == USB_DR_MODE_PERIPHERAL) || 299 (hsotg->dr_mode == USB_DR_MODE_OTG)) { 300 p->g_dma = dma_capable; 301 p->g_dma_desc = hw->dma_desc_enable; 302 303 /* 304 * The values for g_rx_fifo_size (2048) and 305 * g_np_tx_fifo_size (1024) come from the legacy s3c 306 * gadget driver. These defaults have been hard-coded 307 * for some time so many platforms depend on these 308 * values. Leave them as defaults for now and only 309 * auto-detect if the hardware does not support the 310 * default. 311 */ 312 p->g_rx_fifo_size = 2048; 313 p->g_np_tx_fifo_size = 1024; 314 dwc2_set_param_tx_fifo_sizes(hsotg); 315 } 316 } 317 318 /** 319 * dwc2_get_device_properties() - Read in device properties. 320 * 321 * Read in the device properties and adjust core parameters if needed. 322 */ 323 static void dwc2_get_device_properties(struct dwc2_hsotg *hsotg) 324 { 325 struct dwc2_core_params *p = &hsotg->params; 326 int num; 327 328 if ((hsotg->dr_mode == USB_DR_MODE_PERIPHERAL) || 329 (hsotg->dr_mode == USB_DR_MODE_OTG)) { 330 device_property_read_u32(hsotg->dev, "g-rx-fifo-size", 331 &p->g_rx_fifo_size); 332 333 device_property_read_u32(hsotg->dev, "g-np-tx-fifo-size", 334 &p->g_np_tx_fifo_size); 335 336 num = device_property_read_u32_array(hsotg->dev, 337 "g-tx-fifo-size", 338 NULL, 0); 339 340 if (num > 0) { 341 num = min(num, 15); 342 memset(p->g_tx_fifo_size, 0, 343 sizeof(p->g_tx_fifo_size)); 344 device_property_read_u32_array(hsotg->dev, 345 "g-tx-fifo-size", 346 &p->g_tx_fifo_size[1], 347 num); 348 } 349 } 350 351 if (of_find_property(hsotg->dev->of_node, "disable-over-current", NULL)) 352 p->oc_disable = true; 353 } 354 355 static void dwc2_check_param_otg_cap(struct dwc2_hsotg *hsotg) 356 { 357 int valid = 1; 358 359 switch (hsotg->params.otg_cap) { 360 case DWC2_CAP_PARAM_HNP_SRP_CAPABLE: 361 if (hsotg->hw_params.op_mode != GHWCFG2_OP_MODE_HNP_SRP_CAPABLE) 362 valid = 0; 363 break; 364 case DWC2_CAP_PARAM_SRP_ONLY_CAPABLE: 365 switch (hsotg->hw_params.op_mode) { 366 case GHWCFG2_OP_MODE_HNP_SRP_CAPABLE: 367 case GHWCFG2_OP_MODE_SRP_ONLY_CAPABLE: 368 case GHWCFG2_OP_MODE_SRP_CAPABLE_DEVICE: 369 case GHWCFG2_OP_MODE_SRP_CAPABLE_HOST: 370 break; 371 default: 372 valid = 0; 373 break; 374 } 375 break; 376 case DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE: 377 /* always valid */ 378 break; 379 default: 380 valid = 0; 381 break; 382 } 383 384 if (!valid) 385 dwc2_set_param_otg_cap(hsotg); 386 } 387 388 static void dwc2_check_param_phy_type(struct dwc2_hsotg *hsotg) 389 { 390 int valid = 0; 391 u32 hs_phy_type; 392 u32 fs_phy_type; 393 394 hs_phy_type = hsotg->hw_params.hs_phy_type; 395 fs_phy_type = hsotg->hw_params.fs_phy_type; 396 397 switch (hsotg->params.phy_type) { 398 case DWC2_PHY_TYPE_PARAM_FS: 399 if (fs_phy_type == GHWCFG2_FS_PHY_TYPE_DEDICATED) 400 valid = 1; 401 break; 402 case DWC2_PHY_TYPE_PARAM_UTMI: 403 if ((hs_phy_type == GHWCFG2_HS_PHY_TYPE_UTMI) || 404 (hs_phy_type == GHWCFG2_HS_PHY_TYPE_UTMI_ULPI)) 405 valid = 1; 406 break; 407 case DWC2_PHY_TYPE_PARAM_ULPI: 408 if ((hs_phy_type == GHWCFG2_HS_PHY_TYPE_UTMI) || 409 (hs_phy_type == GHWCFG2_HS_PHY_TYPE_UTMI_ULPI)) 410 valid = 1; 411 break; 412 default: 413 break; 414 } 415 416 if (!valid) 417 dwc2_set_param_phy_type(hsotg); 418 } 419 420 static void dwc2_check_param_speed(struct dwc2_hsotg *hsotg) 421 { 422 int valid = 1; 423 int phy_type = hsotg->params.phy_type; 424 int speed = hsotg->params.speed; 425 426 switch (speed) { 427 case DWC2_SPEED_PARAM_HIGH: 428 if ((hsotg->params.speed == DWC2_SPEED_PARAM_HIGH) && 429 (phy_type == DWC2_PHY_TYPE_PARAM_FS)) 430 valid = 0; 431 break; 432 case DWC2_SPEED_PARAM_FULL: 433 case DWC2_SPEED_PARAM_LOW: 434 break; 435 default: 436 valid = 0; 437 break; 438 } 439 440 if (!valid) 441 dwc2_set_param_speed(hsotg); 442 } 443 444 static void dwc2_check_param_phy_utmi_width(struct dwc2_hsotg *hsotg) 445 { 446 int valid = 0; 447 int param = hsotg->params.phy_utmi_width; 448 int width = hsotg->hw_params.utmi_phy_data_width; 449 450 switch (width) { 451 case GHWCFG4_UTMI_PHY_DATA_WIDTH_8: 452 valid = (param == 8); 453 break; 454 case GHWCFG4_UTMI_PHY_DATA_WIDTH_16: 455 valid = (param == 16); 456 break; 457 case GHWCFG4_UTMI_PHY_DATA_WIDTH_8_OR_16: 458 valid = (param == 8 || param == 16); 459 break; 460 } 461 462 if (!valid) 463 dwc2_set_param_phy_utmi_width(hsotg); 464 } 465 466 static void dwc2_check_param_tx_fifo_sizes(struct dwc2_hsotg *hsotg) 467 { 468 int fifo_count; 469 int fifo; 470 int min; 471 u32 total = 0; 472 u32 dptxfszn; 473 474 fifo_count = dwc2_hsotg_tx_fifo_count(hsotg); 475 min = hsotg->hw_params.en_multiple_tx_fifo ? 16 : 4; 476 477 for (fifo = 1; fifo <= fifo_count; fifo++) 478 total += hsotg->params.g_tx_fifo_size[fifo]; 479 480 if (total > dwc2_hsotg_tx_fifo_total_depth(hsotg) || !total) { 481 dev_warn(hsotg->dev, "%s: Invalid parameter g-tx-fifo-size, setting to default average\n", 482 __func__); 483 dwc2_set_param_tx_fifo_sizes(hsotg); 484 } 485 486 for (fifo = 1; fifo <= fifo_count; fifo++) { 487 dptxfszn = (dwc2_readl(hsotg->regs + DPTXFSIZN(fifo)) & 488 FIFOSIZE_DEPTH_MASK) >> FIFOSIZE_DEPTH_SHIFT; 489 490 if (hsotg->params.g_tx_fifo_size[fifo] < min || 491 hsotg->params.g_tx_fifo_size[fifo] > dptxfszn) { 492 dev_warn(hsotg->dev, "%s: Invalid parameter g_tx_fifo_size[%d]=%d\n", 493 __func__, fifo, 494 hsotg->params.g_tx_fifo_size[fifo]); 495 hsotg->params.g_tx_fifo_size[fifo] = dptxfszn; 496 } 497 } 498 } 499 500 #define CHECK_RANGE(_param, _min, _max, _def) do { \ 501 if ((hsotg->params._param) < (_min) || \ 502 (hsotg->params._param) > (_max)) { \ 503 dev_warn(hsotg->dev, "%s: Invalid parameter %s=%d\n", \ 504 __func__, #_param, hsotg->params._param); \ 505 hsotg->params._param = (_def); \ 506 } \ 507 } while (0) 508 509 #define CHECK_BOOL(_param, _check) do { \ 510 if (hsotg->params._param && !(_check)) { \ 511 dev_warn(hsotg->dev, "%s: Invalid parameter %s=%d\n", \ 512 __func__, #_param, hsotg->params._param); \ 513 hsotg->params._param = false; \ 514 } \ 515 } while (0) 516 517 static void dwc2_check_params(struct dwc2_hsotg *hsotg) 518 { 519 struct dwc2_hw_params *hw = &hsotg->hw_params; 520 struct dwc2_core_params *p = &hsotg->params; 521 bool dma_capable = !(hw->arch == GHWCFG2_SLAVE_ONLY_ARCH); 522 523 dwc2_check_param_otg_cap(hsotg); 524 dwc2_check_param_phy_type(hsotg); 525 dwc2_check_param_speed(hsotg); 526 dwc2_check_param_phy_utmi_width(hsotg); 527 CHECK_BOOL(enable_dynamic_fifo, hw->enable_dynamic_fifo); 528 CHECK_BOOL(en_multiple_tx_fifo, hw->en_multiple_tx_fifo); 529 CHECK_BOOL(i2c_enable, hw->i2c_enable); 530 CHECK_BOOL(reload_ctl, (hsotg->hw_params.snpsid > DWC2_CORE_REV_2_92a)); 531 CHECK_RANGE(max_packet_count, 532 15, hw->max_packet_count, 533 hw->max_packet_count); 534 CHECK_RANGE(max_transfer_size, 535 2047, hw->max_transfer_size, 536 hw->max_transfer_size); 537 538 if ((hsotg->dr_mode == USB_DR_MODE_HOST) || 539 (hsotg->dr_mode == USB_DR_MODE_OTG)) { 540 CHECK_BOOL(host_dma, dma_capable); 541 CHECK_BOOL(dma_desc_enable, p->host_dma); 542 CHECK_BOOL(dma_desc_fs_enable, p->dma_desc_enable); 543 CHECK_BOOL(host_ls_low_power_phy_clk, 544 p->phy_type == DWC2_PHY_TYPE_PARAM_FS); 545 CHECK_RANGE(host_channels, 546 1, hw->host_channels, 547 hw->host_channels); 548 CHECK_RANGE(host_rx_fifo_size, 549 16, hw->rx_fifo_size, 550 hw->rx_fifo_size); 551 CHECK_RANGE(host_nperio_tx_fifo_size, 552 16, hw->host_nperio_tx_fifo_size, 553 hw->host_nperio_tx_fifo_size); 554 CHECK_RANGE(host_perio_tx_fifo_size, 555 16, hw->host_perio_tx_fifo_size, 556 hw->host_perio_tx_fifo_size); 557 } 558 559 if ((hsotg->dr_mode == USB_DR_MODE_PERIPHERAL) || 560 (hsotg->dr_mode == USB_DR_MODE_OTG)) { 561 CHECK_BOOL(g_dma, dma_capable); 562 CHECK_BOOL(g_dma_desc, (p->g_dma && hw->dma_desc_enable)); 563 CHECK_RANGE(g_rx_fifo_size, 564 16, hw->rx_fifo_size, 565 hw->rx_fifo_size); 566 CHECK_RANGE(g_np_tx_fifo_size, 567 16, hw->dev_nperio_tx_fifo_size, 568 hw->dev_nperio_tx_fifo_size); 569 dwc2_check_param_tx_fifo_sizes(hsotg); 570 } 571 } 572 573 /* 574 * Gets host hardware parameters. Forces host mode if not currently in 575 * host mode. Should be called immediately after a core soft reset in 576 * order to get the reset values. 577 */ 578 static void dwc2_get_host_hwparams(struct dwc2_hsotg *hsotg) 579 { 580 struct dwc2_hw_params *hw = &hsotg->hw_params; 581 u32 gnptxfsiz; 582 u32 hptxfsiz; 583 bool forced; 584 585 if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL) 586 return; 587 588 forced = dwc2_force_mode_if_needed(hsotg, true); 589 590 gnptxfsiz = dwc2_readl(hsotg->regs + GNPTXFSIZ); 591 hptxfsiz = dwc2_readl(hsotg->regs + HPTXFSIZ); 592 593 if (forced) 594 dwc2_clear_force_mode(hsotg); 595 596 hw->host_nperio_tx_fifo_size = (gnptxfsiz & FIFOSIZE_DEPTH_MASK) >> 597 FIFOSIZE_DEPTH_SHIFT; 598 hw->host_perio_tx_fifo_size = (hptxfsiz & FIFOSIZE_DEPTH_MASK) >> 599 FIFOSIZE_DEPTH_SHIFT; 600 } 601 602 /* 603 * Gets device hardware parameters. Forces device mode if not 604 * currently in device mode. Should be called immediately after a core 605 * soft reset in order to get the reset values. 606 */ 607 static void dwc2_get_dev_hwparams(struct dwc2_hsotg *hsotg) 608 { 609 struct dwc2_hw_params *hw = &hsotg->hw_params; 610 bool forced; 611 u32 gnptxfsiz; 612 613 if (hsotg->dr_mode == USB_DR_MODE_HOST) 614 return; 615 616 forced = dwc2_force_mode_if_needed(hsotg, false); 617 618 gnptxfsiz = dwc2_readl(hsotg->regs + GNPTXFSIZ); 619 620 if (forced) 621 dwc2_clear_force_mode(hsotg); 622 623 hw->dev_nperio_tx_fifo_size = (gnptxfsiz & FIFOSIZE_DEPTH_MASK) >> 624 FIFOSIZE_DEPTH_SHIFT; 625 } 626 627 /** 628 * During device initialization, read various hardware configuration 629 * registers and interpret the contents. 630 */ 631 int dwc2_get_hwparams(struct dwc2_hsotg *hsotg) 632 { 633 struct dwc2_hw_params *hw = &hsotg->hw_params; 634 unsigned int width; 635 u32 hwcfg1, hwcfg2, hwcfg3, hwcfg4; 636 u32 grxfsiz; 637 638 /* 639 * Attempt to ensure this device is really a DWC_otg Controller. 640 * Read and verify the GSNPSID register contents. The value should be 641 * 0x45f42xxx or 0x45f43xxx, which corresponds to either "OT2" or "OT3", 642 * as in "OTG version 2.xx" or "OTG version 3.xx". 643 */ 644 hw->snpsid = dwc2_readl(hsotg->regs + GSNPSID); 645 if ((hw->snpsid & 0xfffff000) != 0x4f542000 && 646 (hw->snpsid & 0xfffff000) != 0x4f543000 && 647 (hw->snpsid & 0xffff0000) != 0x55310000 && 648 (hw->snpsid & 0xffff0000) != 0x55320000) { 649 dev_err(hsotg->dev, "Bad value for GSNPSID: 0x%08x\n", 650 hw->snpsid); 651 return -ENODEV; 652 } 653 654 dev_dbg(hsotg->dev, "Core Release: %1x.%1x%1x%1x (snpsid=%x)\n", 655 hw->snpsid >> 12 & 0xf, hw->snpsid >> 8 & 0xf, 656 hw->snpsid >> 4 & 0xf, hw->snpsid & 0xf, hw->snpsid); 657 658 hwcfg1 = dwc2_readl(hsotg->regs + GHWCFG1); 659 hwcfg2 = dwc2_readl(hsotg->regs + GHWCFG2); 660 hwcfg3 = dwc2_readl(hsotg->regs + GHWCFG3); 661 hwcfg4 = dwc2_readl(hsotg->regs + GHWCFG4); 662 grxfsiz = dwc2_readl(hsotg->regs + GRXFSIZ); 663 664 /* 665 * Host specific hardware parameters. Reading these parameters 666 * requires the controller to be in host mode. The mode will 667 * be forced, if necessary, to read these values. 668 */ 669 dwc2_get_host_hwparams(hsotg); 670 dwc2_get_dev_hwparams(hsotg); 671 672 /* hwcfg1 */ 673 hw->dev_ep_dirs = hwcfg1; 674 675 /* hwcfg2 */ 676 hw->op_mode = (hwcfg2 & GHWCFG2_OP_MODE_MASK) >> 677 GHWCFG2_OP_MODE_SHIFT; 678 hw->arch = (hwcfg2 & GHWCFG2_ARCHITECTURE_MASK) >> 679 GHWCFG2_ARCHITECTURE_SHIFT; 680 hw->enable_dynamic_fifo = !!(hwcfg2 & GHWCFG2_DYNAMIC_FIFO); 681 hw->host_channels = 1 + ((hwcfg2 & GHWCFG2_NUM_HOST_CHAN_MASK) >> 682 GHWCFG2_NUM_HOST_CHAN_SHIFT); 683 hw->hs_phy_type = (hwcfg2 & GHWCFG2_HS_PHY_TYPE_MASK) >> 684 GHWCFG2_HS_PHY_TYPE_SHIFT; 685 hw->fs_phy_type = (hwcfg2 & GHWCFG2_FS_PHY_TYPE_MASK) >> 686 GHWCFG2_FS_PHY_TYPE_SHIFT; 687 hw->num_dev_ep = (hwcfg2 & GHWCFG2_NUM_DEV_EP_MASK) >> 688 GHWCFG2_NUM_DEV_EP_SHIFT; 689 hw->nperio_tx_q_depth = 690 (hwcfg2 & GHWCFG2_NONPERIO_TX_Q_DEPTH_MASK) >> 691 GHWCFG2_NONPERIO_TX_Q_DEPTH_SHIFT << 1; 692 hw->host_perio_tx_q_depth = 693 (hwcfg2 & GHWCFG2_HOST_PERIO_TX_Q_DEPTH_MASK) >> 694 GHWCFG2_HOST_PERIO_TX_Q_DEPTH_SHIFT << 1; 695 hw->dev_token_q_depth = 696 (hwcfg2 & GHWCFG2_DEV_TOKEN_Q_DEPTH_MASK) >> 697 GHWCFG2_DEV_TOKEN_Q_DEPTH_SHIFT; 698 699 /* hwcfg3 */ 700 width = (hwcfg3 & GHWCFG3_XFER_SIZE_CNTR_WIDTH_MASK) >> 701 GHWCFG3_XFER_SIZE_CNTR_WIDTH_SHIFT; 702 hw->max_transfer_size = (1 << (width + 11)) - 1; 703 width = (hwcfg3 & GHWCFG3_PACKET_SIZE_CNTR_WIDTH_MASK) >> 704 GHWCFG3_PACKET_SIZE_CNTR_WIDTH_SHIFT; 705 hw->max_packet_count = (1 << (width + 4)) - 1; 706 hw->i2c_enable = !!(hwcfg3 & GHWCFG3_I2C); 707 hw->total_fifo_size = (hwcfg3 & GHWCFG3_DFIFO_DEPTH_MASK) >> 708 GHWCFG3_DFIFO_DEPTH_SHIFT; 709 710 /* hwcfg4 */ 711 hw->en_multiple_tx_fifo = !!(hwcfg4 & GHWCFG4_DED_FIFO_EN); 712 hw->num_dev_perio_in_ep = (hwcfg4 & GHWCFG4_NUM_DEV_PERIO_IN_EP_MASK) >> 713 GHWCFG4_NUM_DEV_PERIO_IN_EP_SHIFT; 714 hw->dma_desc_enable = !!(hwcfg4 & GHWCFG4_DESC_DMA); 715 hw->power_optimized = !!(hwcfg4 & GHWCFG4_POWER_OPTIMIZ); 716 hw->utmi_phy_data_width = (hwcfg4 & GHWCFG4_UTMI_PHY_DATA_WIDTH_MASK) >> 717 GHWCFG4_UTMI_PHY_DATA_WIDTH_SHIFT; 718 719 /* fifo sizes */ 720 hw->rx_fifo_size = (grxfsiz & GRXFSIZ_DEPTH_MASK) >> 721 GRXFSIZ_DEPTH_SHIFT; 722 723 return 0; 724 } 725 726 int dwc2_init_params(struct dwc2_hsotg *hsotg) 727 { 728 const struct of_device_id *match; 729 void (*set_params)(void *data); 730 731 dwc2_set_default_params(hsotg); 732 dwc2_get_device_properties(hsotg); 733 734 match = of_match_device(dwc2_of_match_table, hsotg->dev); 735 if (match && match->data) { 736 set_params = match->data; 737 set_params(hsotg); 738 } 739 740 dwc2_check_params(hsotg); 741 742 return 0; 743 } 744