blob: 4d7a2acd8e54a12b0d2889c5a30e2f32968521a2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Sriram Dash93eb8f32016-04-05 14:41:19 +05302/*
3 * (C) Copyright 2009, 2011 Freescale Semiconductor, Inc.
4 *
5 * (C) Copyright 2008, Excito Elektronik i Sk=E5ne AB
6 *
7 * Author: Tor Krill tor@excito.com
Sriram Dash93eb8f32016-04-05 14:41:19 +05308 */
9
10#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Sriram Dash93eb8f32016-04-05 14:41:19 +053012#include <usb.h>
13#include <asm/io.h>
14#include <hwconfig.h>
Sriram Dash92623672016-06-13 09:58:34 +053015#include <fsl_errata.h>
Sriram Dash93eb8f32016-04-05 14:41:19 +053016#include <fsl_usb.h>
17#include <fdt_support.h>
18
19#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
20#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
21#endif
22
Sriram Dashbf655772016-06-13 09:58:33 +053023/* USB Controllers */
24#define FSL_USB2_MPH "fsl-usb2-mph"
25#define FSL_USB2_DR "fsl-usb2-dr"
26#define CHIPIDEA_USB2 "chipidea,usb2"
27#define SNPS_DWC3 "snps,dwc3"
28
Sriram Dashb9f67862016-04-05 14:41:21 +053029static const char * const compat_usb_fsl[] = {
Sriram Dashbf655772016-06-13 09:58:33 +053030 FSL_USB2_MPH,
31 FSL_USB2_DR,
32 SNPS_DWC3,
Sriram Dashb9f67862016-04-05 14:41:21 +053033 NULL
34};
35
Sriram Dash47435e52016-04-05 14:41:22 +053036static int fdt_usb_get_node_type(void *blob, int start_offset,
37 int *node_offset, const char **node_type)
Sriram Dash93eb8f32016-04-05 14:41:19 +053038{
Sriram Dashb9f67862016-04-05 14:41:21 +053039 int i;
Sriram Dash47435e52016-04-05 14:41:22 +053040 int ret = -ENOENT;
Sriram Dash93eb8f32016-04-05 14:41:19 +053041
Sriram Dashb9f67862016-04-05 14:41:21 +053042 for (i = 0; compat_usb_fsl[i]; i++) {
43 *node_offset = fdt_node_offset_by_compatible
44 (blob, start_offset,
45 compat_usb_fsl[i]);
46 if (*node_offset >= 0) {
Sriram Dash47435e52016-04-05 14:41:22 +053047 *node_type = compat_usb_fsl[i];
48 ret = 0;
Sriram Dashb9f67862016-04-05 14:41:21 +053049 break;
Sriram Dash93eb8f32016-04-05 14:41:19 +053050 }
Sriram Dash93eb8f32016-04-05 14:41:19 +053051 }
52
Sriram Dash47435e52016-04-05 14:41:22 +053053 return ret;
Sriram Dash93eb8f32016-04-05 14:41:19 +053054}
55
Sriram Dash469e72b2016-04-05 14:41:20 +053056static int fdt_fixup_usb_mode_phy_type(void *blob, const char *mode,
57 const char *phy_type, int start_offset)
58{
59 const char *prop_mode = "dr_mode";
60 const char *prop_type = "phy_type";
61 const char *node_type = NULL;
62 int node_offset;
63 int err;
64
Sriram Dash47435e52016-04-05 14:41:22 +053065 err = fdt_usb_get_node_type(blob, start_offset,
66 &node_offset, &node_type);
67 if (err < 0)
68 return err;
Sriram Dash469e72b2016-04-05 14:41:20 +053069
70 if (mode) {
71 err = fdt_setprop(blob, node_offset, prop_mode, mode,
72 strlen(mode) + 1);
73 if (err < 0)
74 printf("WARNING: could not set %s for %s: %s.\n",
75 prop_mode, node_type, fdt_strerror(err));
76 }
77
78 if (phy_type) {
79 err = fdt_setprop(blob, node_offset, prop_type, phy_type,
80 strlen(phy_type) + 1);
81 if (err < 0)
82 printf("WARNING: could not set %s for %s: %s.\n",
83 prop_type, node_type, fdt_strerror(err));
84 }
85
86 return node_offset;
87}
88
Sriram Dashc6097752016-09-16 17:12:16 +053089static int fsl_fdt_fixup_usb_erratum(void *blob, const char *prop_erratum,
90 const char *controller_type,
91 int start_offset)
Sriram Dash93eb8f32016-04-05 14:41:19 +053092{
93 int node_offset, err;
94 const char *node_type = NULL;
Sriram Dashbf655772016-06-13 09:58:33 +053095 const char *node_name = NULL;
Sriram Dash93eb8f32016-04-05 14:41:19 +053096
Sriram Dash47435e52016-04-05 14:41:22 +053097 err = fdt_usb_get_node_type(blob, start_offset,
98 &node_offset, &node_type);
99 if (err < 0)
100 return err;
Sriram Dash93eb8f32016-04-05 14:41:19 +0530101
Sriram Dashbf655772016-06-13 09:58:33 +0530102 if (!strcmp(node_type, FSL_USB2_MPH) || !strcmp(node_type, FSL_USB2_DR))
103 node_name = CHIPIDEA_USB2;
104 else
105 node_name = node_type;
106 if (strcmp(node_name, controller_type))
107 return err;
108
Sriram Dash93eb8f32016-04-05 14:41:19 +0530109 err = fdt_setprop(blob, node_offset, prop_erratum, NULL, 0);
110 if (err < 0) {
111 printf("ERROR: could not set %s for %s: %s.\n",
112 prop_erratum, node_type, fdt_strerror(err));
113 }
114
115 return node_offset;
116}
117
Sriram Dashc6097752016-09-16 17:12:16 +0530118static int fsl_fdt_fixup_erratum(int *usb_erratum_off, void *blob,
119 const char *controller_type, char *str,
120 bool (*has_erratum)(void))
Sriram Dashbf655772016-06-13 09:58:33 +0530121{
122 char buf[32] = {0};
123
124 snprintf(buf, sizeof(buf), "fsl,usb-erratum-%s", str);
125 if (!has_erratum())
126 return -EINVAL;
Sriram Dashc6097752016-09-16 17:12:16 +0530127 *usb_erratum_off = fsl_fdt_fixup_usb_erratum(blob, buf, controller_type,
128 *usb_erratum_off);
Sriram Dashbf655772016-06-13 09:58:33 +0530129 if (*usb_erratum_off < 0)
130 return -ENOSPC;
131 debug("Adding USB erratum %s\n", str);
132 return 0;
133}
134
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900135void fsl_fdt_fixup_dr_usb(void *blob, struct bd_info *bd)
Sriram Dash93eb8f32016-04-05 14:41:19 +0530136{
137 static const char * const modes[] = { "host", "peripheral", "otg" };
138 static const char * const phys[] = { "ulpi", "utmi", "utmi_dual" };
139 int usb_erratum_a006261_off = -1;
140 int usb_erratum_a007075_off = -1;
141 int usb_erratum_a007792_off = -1;
142 int usb_erratum_a005697_off = -1;
Sriram Dashef53b8c2016-06-13 09:58:36 +0530143 int usb_erratum_a008751_off = -1;
Sriram Dash93eb8f32016-04-05 14:41:19 +0530144 int usb_mode_off = -1;
145 int usb_phy_off = -1;
146 char str[5];
147 int i, j;
Sriram Dashbf655772016-06-13 09:58:33 +0530148 int ret;
Sriram Dash93eb8f32016-04-05 14:41:19 +0530149
150 for (i = 1; i <= CONFIG_USB_MAX_CONTROLLER_COUNT; i++) {
151 const char *dr_mode_type = NULL;
152 const char *dr_phy_type = NULL;
153 int mode_idx = -1, phy_idx = -1;
154
155 snprintf(str, 5, "%s%d", "usb", i);
156 if (hwconfig(str)) {
157 for (j = 0; j < ARRAY_SIZE(modes); j++) {
158 if (hwconfig_subarg_cmp(str, "dr_mode",
159 modes[j])) {
160 mode_idx = j;
161 break;
162 }
163 }
164
165 for (j = 0; j < ARRAY_SIZE(phys); j++) {
166 if (hwconfig_subarg_cmp(str, "phy_type",
167 phys[j])) {
168 phy_idx = j;
169 break;
170 }
171 }
172
173 if (mode_idx < 0 && phy_idx < 0) {
174 printf("WARNING: invalid phy or mode\n");
175 return;
176 }
177
178 if (mode_idx > -1)
179 dr_mode_type = modes[mode_idx];
180
181 if (phy_idx > -1)
182 dr_phy_type = phys[phy_idx];
183 }
184
185 if (has_dual_phy())
186 dr_phy_type = phys[2];
187
188 usb_mode_off = fdt_fixup_usb_mode_phy_type(blob,
189 dr_mode_type, NULL,
190 usb_mode_off);
191
192 if (usb_mode_off < 0)
193 return;
194
195 usb_phy_off = fdt_fixup_usb_mode_phy_type(blob,
196 NULL, dr_phy_type,
197 usb_phy_off);
198
199 if (usb_phy_off < 0)
200 return;
201
Sriram Dashc6097752016-09-16 17:12:16 +0530202 ret = fsl_fdt_fixup_erratum(&usb_erratum_a006261_off, blob,
203 CHIPIDEA_USB2, "a006261",
204 has_erratum_a006261);
Sriram Dashbf655772016-06-13 09:58:33 +0530205 if (ret == -ENOSPC)
206 return;
Sriram Dashc6097752016-09-16 17:12:16 +0530207 ret = fsl_fdt_fixup_erratum(&usb_erratum_a007075_off, blob,
208 CHIPIDEA_USB2, "a007075",
209 has_erratum_a007075);
Sriram Dashbf655772016-06-13 09:58:33 +0530210 if (ret == -ENOSPC)
211 return;
Sriram Dashc6097752016-09-16 17:12:16 +0530212 ret = fsl_fdt_fixup_erratum(&usb_erratum_a007792_off, blob,
213 CHIPIDEA_USB2, "a007792",
214 has_erratum_a007792);
Sriram Dashbf655772016-06-13 09:58:33 +0530215 if (ret == -ENOSPC)
216 return;
Sriram Dashc6097752016-09-16 17:12:16 +0530217 ret = fsl_fdt_fixup_erratum(&usb_erratum_a005697_off, blob,
218 CHIPIDEA_USB2, "a005697",
219 has_erratum_a005697);
Sriram Dashbf655772016-06-13 09:58:33 +0530220 if (ret == -ENOSPC)
221 return;
Sriram Dashc6097752016-09-16 17:12:16 +0530222 ret = fsl_fdt_fixup_erratum(&usb_erratum_a008751_off, blob,
223 SNPS_DWC3, "a008751",
224 has_erratum_a008751);
Sriram Dashef53b8c2016-06-13 09:58:36 +0530225 if (ret == -ENOSPC)
226 return;
227
Sriram Dash93eb8f32016-04-05 14:41:19 +0530228 }
229}