]> git.ipfire.org Git - thirdparty/u-boot.git/blame - drivers/phy/marvell/comphy_cp110.c
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[thirdparty/u-boot.git] / drivers / phy / marvell / comphy_cp110.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
c0132f60
SR
2/*
3 * Copyright (C) 2015-2016 Marvell International Ltd.
c0132f60
SR
4 */
5
d678a59d 6#include <common.h>
c0132f60 7#include <fdtdec.h>
f7ae49fc 8#include <log.h>
401d1c4f 9#include <asm/global_data.h>
c0132f60 10#include <asm/io.h>
b24bb99d 11#include <asm/ptrace.h>
c0132f60
SR
12#include <asm/arch/cpu.h>
13#include <asm/arch/soc.h>
c05ed00a 14#include <linux/delay.h>
1e94b46f 15#include <linux/printk.h>
c0132f60 16
4b8cb843 17#include "comphy_core.h"
c0132f60
SR
18#include "sata.h"
19#include "utmi_phy.h"
20
21DECLARE_GLOBAL_DATA_PTR;
22
b24bb99d
GJ
23/* Firmware related definitions used for SMC calls */
24#define MV_SIP_COMPHY_POWER_ON 0x82000001
25#define MV_SIP_COMPHY_POWER_OFF 0x82000002
26#define MV_SIP_COMPHY_PLL_LOCK 0x82000003
2e28b597 27#define MV_SIP_COMPHY_XFI_TRAIN 0x82000004
b24bb99d 28
1be82afa 29/* Used to distinguish between different possible callers (U-Boot/Linux) */
3261f6d3
IL
30#define COMPHY_CALLER_UBOOT (0x1 << 21)
31
b24bb99d
GJ
32#define COMPHY_FW_MODE_FORMAT(mode) ((mode) << 12)
33#define COMPHY_FW_FORMAT(mode, idx, speeds) \
34 (((mode) << 12) | ((idx) << 8) | ((speeds) << 2))
0a1a1642
GJ
35
36#define COMPHY_FW_PCIE_FORMAT(pcie_width, clk_src, mode, speeds) \
3261f6d3
IL
37 (COMPHY_CALLER_UBOOT | ((pcie_width) << 18) | \
38 ((clk_src) << 17) | COMPHY_FW_FORMAT(mode, 0, speeds))
0a1a1642 39
ccee8ea1
DO
40/* Invert polarity are bits 1-0 of the mode */
41#define COMPHY_FW_SATA_FORMAT(mode, invert) \
42 ((invert) | COMPHY_FW_MODE_FORMAT(mode))
43
b24bb99d
GJ
44#define COMPHY_SATA_MODE 0x1
45#define COMPHY_SGMII_MODE 0x2 /* SGMII 1G */
46#define COMPHY_HS_SGMII_MODE 0x3 /* SGMII 2.5G */
47#define COMPHY_USB3H_MODE 0x4
48#define COMPHY_USB3D_MODE 0x5
49#define COMPHY_PCIE_MODE 0x6
50#define COMPHY_RXAUI_MODE 0x7
51#define COMPHY_XFI_MODE 0x8
52#define COMPHY_SFI_MODE 0x9
53#define COMPHY_USB3_MODE 0xa
54#define COMPHY_AP_MODE 0xb
55
56/* Comphy unit index macro */
57#define COMPHY_UNIT_ID0 0
58#define COMPHY_UNIT_ID1 1
59#define COMPHY_UNIT_ID2 2
60#define COMPHY_UNIT_ID3 3
61
c0132f60 62struct utmi_phy_data {
a007f236 63 void __iomem *utmi_pll_addr;
c0132f60
SR
64 void __iomem *utmi_base_addr;
65 void __iomem *usb_cfg_addr;
66 void __iomem *utmi_cfg_addr;
67 u32 utmi_phy_port;
68};
69
c0132f60
SR
70static u32 polling_with_timeout(void __iomem *addr, u32 val,
71 u32 mask, unsigned long usec_timout)
72{
73 u32 data;
74
75 do {
76 udelay(1);
77 data = readl(addr) & mask;
78 } while (data != val && --usec_timout > 0);
79
80 if (usec_timout == 0)
81 return data;
82
83 return 0;
84}
85
2e28b597
GJ
86static int comphy_smc(u32 function_id, void __iomem *comphy_base_addr,
87 u32 lane, u32 mode)
e49cdbe1 88{
2e28b597 89 struct pt_regs pregs = {0};
e49cdbe1 90
2e28b597
GJ
91 pregs.regs[0] = function_id;
92 pregs.regs[1] = (unsigned long)comphy_base_addr;
93 pregs.regs[2] = lane;
94 pregs.regs[3] = mode;
e49cdbe1 95
2e28b597 96 smc_call(&pregs);
e49cdbe1 97
2e28b597
GJ
98 /*
99 * TODO: Firmware return 0 on success, temporary map it to u-boot
100 * convention, but after all comphy will be reworked the convention in
101 * u-boot should be change and this conversion removed
102 */
103 return pregs.regs[0] ? 0 : 1;
e49cdbe1
IL
104}
105
106/* This function performs RX training for all FFE possible values.
107 * We get the result for each FFE and eventually the best FFE will
108 * be used and set to the HW.
109 *
110 * Return '1' on succsess.
111 * Return '0' on failure.
112 */
113int comphy_cp110_sfi_rx_training(struct chip_serdes_phy_config *ptr_chip_cfg,
114 u32 lane)
115{
e49cdbe1 116 int ret;
341e548e 117 u32 type = ptr_chip_cfg->comphy_map_data[lane].type;
e49cdbe1
IL
118
119 debug_enter();
120
341e548e 121 if (type != COMPHY_TYPE_SFI0 && type != COMPHY_TYPE_SFI1) {
e49cdbe1
IL
122 pr_err("Comphy %d isn't configured to SFI\n", lane);
123 return 0;
124 }
125
2e28b597
GJ
126 /* Mode is not relevant for xfi training */
127 ret = comphy_smc(MV_SIP_COMPHY_XFI_TRAIN,
128 ptr_chip_cfg->comphy_base_addr, lane, 0);
e49cdbe1
IL
129
130 debug_exit();
131
132 return ret;
133}
134
c0132f60 135static int comphy_sata_power_up(u32 lane, void __iomem *hpipe_base,
b24bb99d
GJ
136 void __iomem *comphy_base_addr, int cp_index,
137 u32 type)
c0132f60
SR
138{
139 u32 mask, data, i, ret = 1;
c0132f60
SR
140 void __iomem *sata_base = NULL;
141 int sata_node = -1; /* Set to -1 in order to read the first sata node */
142
143 debug_enter();
144
145 /*
146 * Assumption - each CP has only one SATA controller
147 * Calling fdt_node_offset_by_compatible first time (with sata_node = -1
148 * will return the first node always.
149 * In order to parse each CPs SATA node, fdt_node_offset_by_compatible
150 * must be called again (according to the CP id)
151 */
528213d3 152 for (i = 0; i < (cp_index + 1); i++)
c0132f60
SR
153 sata_node = fdt_node_offset_by_compatible(
154 gd->fdt_blob, sata_node, "marvell,armada-8k-ahci");
155
156 if (sata_node == 0) {
9b643e31 157 pr_err("SATA node not found in FDT\n");
c0132f60
SR
158 return 0;
159 }
160
161 sata_base = (void __iomem *)fdtdec_get_addr_size_auto_noparent(
162 gd->fdt_blob, sata_node, "reg", 0, NULL, true);
163 if (sata_base == NULL) {
9b643e31 164 pr_err("SATA address not found in FDT\n");
c0132f60
SR
165 return 0;
166 }
167
168 debug("SATA address found in FDT %p\n", sata_base);
169
170 debug("stage: MAC configuration - power down comphy\n");
171 /*
172 * MAC configuration powe down comphy use indirect address for
173 * vendor spesific SATA control register
174 */
175 reg_set(sata_base + SATA3_VENDOR_ADDRESS,
176 SATA_CONTROL_REG << SATA3_VENDOR_ADDR_OFSSET,
177 SATA3_VENDOR_ADDR_MASK);
178 /* SATA 0 power down */
179 mask = SATA3_CTRL_SATA0_PD_MASK;
180 data = 0x1 << SATA3_CTRL_SATA0_PD_OFFSET;
181 /* SATA 1 power down */
182 mask |= SATA3_CTRL_SATA1_PD_MASK;
183 data |= 0x1 << SATA3_CTRL_SATA1_PD_OFFSET;
184 /* SATA SSU disable */
185 mask |= SATA3_CTRL_SATA1_ENABLE_MASK;
186 data |= 0x0 << SATA3_CTRL_SATA1_ENABLE_OFFSET;
187 /* SATA port 1 disable */
188 mask |= SATA3_CTRL_SATA_SSU_MASK;
189 data |= 0x0 << SATA3_CTRL_SATA_SSU_OFFSET;
190 reg_set(sata_base + SATA3_VENDOR_DATA, data, mask);
191
b24bb99d 192 ret = comphy_smc(MV_SIP_COMPHY_POWER_ON, comphy_base_addr, lane, type);
c01f9fe8 193
c0132f60
SR
194 /*
195 * MAC configuration power up comphy - power up PLL/TX/RX
196 * use indirect address for vendor spesific SATA control register
197 */
198 reg_set(sata_base + SATA3_VENDOR_ADDRESS,
199 SATA_CONTROL_REG << SATA3_VENDOR_ADDR_OFSSET,
200 SATA3_VENDOR_ADDR_MASK);
201 /* SATA 0 power up */
202 mask = SATA3_CTRL_SATA0_PD_MASK;
203 data = 0x0 << SATA3_CTRL_SATA0_PD_OFFSET;
204 /* SATA 1 power up */
205 mask |= SATA3_CTRL_SATA1_PD_MASK;
206 data |= 0x0 << SATA3_CTRL_SATA1_PD_OFFSET;
207 /* SATA SSU enable */
208 mask |= SATA3_CTRL_SATA1_ENABLE_MASK;
209 data |= 0x1 << SATA3_CTRL_SATA1_ENABLE_OFFSET;
210 /* SATA port 1 enable */
211 mask |= SATA3_CTRL_SATA_SSU_MASK;
212 data |= 0x1 << SATA3_CTRL_SATA_SSU_OFFSET;
213 reg_set(sata_base + SATA3_VENDOR_DATA, data, mask);
214
215 /* MBUS request size and interface select register */
216 reg_set(sata_base + SATA3_VENDOR_ADDRESS,
217 SATA_MBUS_SIZE_SELECT_REG << SATA3_VENDOR_ADDR_OFSSET,
218 SATA3_VENDOR_ADDR_MASK);
219 /* Mbus regret enable */
220 reg_set(sata_base + SATA3_VENDOR_DATA,
221 0x1 << SATA_MBUS_REGRET_EN_OFFSET, SATA_MBUS_REGRET_EN_MASK);
222
b24bb99d 223 ret = comphy_smc(MV_SIP_COMPHY_PLL_LOCK, comphy_base_addr, lane, type);
c0132f60
SR
224
225 debug_exit();
226 return ret;
227}
228
c0132f60
SR
229static void comphy_utmi_power_down(u32 utmi_index, void __iomem *utmi_base_addr,
230 void __iomem *usb_cfg_addr,
231 void __iomem *utmi_cfg_addr,
232 u32 utmi_phy_port)
233{
234 u32 mask, data;
235
236 debug_enter();
237 debug("stage: UTMI %d - Power down transceiver (power down Phy), Power down PLL, and SuspendDM\n",
238 utmi_index);
239 /* Power down UTMI PHY */
240 reg_set(utmi_cfg_addr, 0x0 << UTMI_PHY_CFG_PU_OFFSET,
241 UTMI_PHY_CFG_PU_MASK);
242
243 /*
244 * If UTMI connected to USB Device, configure mux prior to PHY init
245 * (Device can be connected to UTMI0 or to UTMI1)
246 */
e89acc4b 247 if (utmi_phy_port == UTMI_PHY_TO_USB3_DEVICE0) {
c0132f60
SR
248 debug("stage: UTMI %d - Enable Device mode and configure UTMI mux\n",
249 utmi_index);
250 /* USB3 Device UTMI enable */
251 mask = UTMI_USB_CFG_DEVICE_EN_MASK;
252 data = 0x1 << UTMI_USB_CFG_DEVICE_EN_OFFSET;
253 /* USB3 Device UTMI MUX */
254 mask |= UTMI_USB_CFG_DEVICE_MUX_MASK;
255 data |= utmi_index << UTMI_USB_CFG_DEVICE_MUX_OFFSET;
256 reg_set(usb_cfg_addr, data, mask);
257 }
258
259 /* Set Test suspendm mode */
260 mask = UTMI_CTRL_STATUS0_SUSPENDM_MASK;
261 data = 0x1 << UTMI_CTRL_STATUS0_SUSPENDM_OFFSET;
262 /* Enable Test UTMI select */
263 mask |= UTMI_CTRL_STATUS0_TEST_SEL_MASK;
264 data |= 0x1 << UTMI_CTRL_STATUS0_TEST_SEL_OFFSET;
265 reg_set(utmi_base_addr + UTMI_CTRL_STATUS0_REG, data, mask);
266
267 /* Wait for UTMI power down */
268 mdelay(1);
269
270 debug_exit();
271 return;
272}
273
a007f236
GJ
274static void comphy_utmi_phy_config(u32 utmi_index, void __iomem *utmi_pll_addr,
275 void __iomem *utmi_base_addr,
c0132f60
SR
276 void __iomem *usb_cfg_addr,
277 void __iomem *utmi_cfg_addr,
278 u32 utmi_phy_port)
279{
280 u32 mask, data;
281
282 debug_exit();
283 debug("stage: Configure UTMI PHY %d registers\n", utmi_index);
284 /* Reference Clock Divider Select */
285 mask = UTMI_PLL_CTRL_REFDIV_MASK;
286 data = 0x5 << UTMI_PLL_CTRL_REFDIV_OFFSET;
287 /* Feedback Clock Divider Select - 90 for 25Mhz*/
288 mask |= UTMI_PLL_CTRL_FBDIV_MASK;
289 data |= 0x60 << UTMI_PLL_CTRL_FBDIV_OFFSET;
290 /* Select LPFR - 0x0 for 25Mhz/5=5Mhz*/
291 mask |= UTMI_PLL_CTRL_SEL_LPFR_MASK;
292 data |= 0x0 << UTMI_PLL_CTRL_SEL_LPFR_OFFSET;
a007f236 293 reg_set(utmi_pll_addr + UTMI_PLL_CTRL_REG, data, mask);
c0132f60
SR
294
295 /* Impedance Calibration Threshold Setting */
82c30736
GJ
296 mask = UTMI_CALIB_CTRL_IMPCAL_VTH_MASK;
297 data = 0x7 << UTMI_CALIB_CTRL_IMPCAL_VTH_OFFSET;
298 reg_set(utmi_pll_addr + UTMI_CALIB_CTRL_REG, data, mask);
299
300 /* Start Impedance and PLL Calibration */
301 mask = UTMI_CALIB_CTRL_PLLCAL_START_MASK;
302 data = (0x1 << UTMI_CALIB_CTRL_PLLCAL_START_OFFSET);
303 mask |= UTMI_CALIB_CTRL_IMPCAL_START_MASK;
304 data |= (0x1 << UTMI_CALIB_CTRL_IMPCAL_START_OFFSET);
305 reg_set(utmi_pll_addr + UTMI_CALIB_CTRL_REG, data, mask);
c0132f60
SR
306
307 /* Set LS TX driver strength coarse control */
3e69b4ab
IL
308 mask = UTMI_TX_CH_CTRL_AMP_MASK;
309 data = 0x4 << UTMI_TX_CH_CTRL_AMP_OFFSET;
82c30736
GJ
310 mask |= UTMI_TX_CH_CTRL_IMP_SEL_LS_MASK;
311 data |= 0x3 << UTMI_TX_CH_CTRL_IMP_SEL_LS_OFFSET;
312 mask |= UTMI_TX_CH_CTRL_DRV_EN_LS_MASK;
313 data |= 0x3 << UTMI_TX_CH_CTRL_DRV_EN_LS_OFFSET;
c0132f60
SR
314 reg_set(utmi_base_addr + UTMI_TX_CH_CTRL_REG, data, mask);
315
316 /* Enable SQ */
317 mask = UTMI_RX_CH_CTRL0_SQ_DET_MASK;
82c30736 318 data = 0x1 << UTMI_RX_CH_CTRL0_SQ_DET_OFFSET;
c0132f60
SR
319 /* Enable analog squelch detect */
320 mask |= UTMI_RX_CH_CTRL0_SQ_ANA_DTC_MASK;
82c30736
GJ
321 data |= 0x0 << UTMI_RX_CH_CTRL0_SQ_ANA_DTC_OFFSET;
322 mask |= UTMI_RX_CH_CTRL0_DISCON_THRESH_MASK;
323 data |= 0x0 << UTMI_RX_CH_CTRL0_DISCON_THRESH_OFFSET;
c0132f60
SR
324 reg_set(utmi_base_addr + UTMI_RX_CH_CTRL0_REG, data, mask);
325
326 /* Set External squelch calibration number */
327 mask = UTMI_RX_CH_CTRL1_SQ_AMP_CAL_MASK;
328 data = 0x1 << UTMI_RX_CH_CTRL1_SQ_AMP_CAL_OFFSET;
329 /* Enable the External squelch calibration */
330 mask |= UTMI_RX_CH_CTRL1_SQ_AMP_CAL_EN_MASK;
331 data |= 0x1 << UTMI_RX_CH_CTRL1_SQ_AMP_CAL_EN_OFFSET;
332 reg_set(utmi_base_addr + UTMI_RX_CH_CTRL1_REG, data, mask);
333
334 /* Set Control VDAT Reference Voltage - 0.325V */
335 mask = UTMI_CHGDTC_CTRL_VDAT_MASK;
336 data = 0x1 << UTMI_CHGDTC_CTRL_VDAT_OFFSET;
337 /* Set Control VSRC Reference Voltage - 0.6V */
338 mask |= UTMI_CHGDTC_CTRL_VSRC_MASK;
339 data |= 0x1 << UTMI_CHGDTC_CTRL_VSRC_OFFSET;
340 reg_set(utmi_base_addr + UTMI_CHGDTC_CTRL_REG, data, mask);
341
342 debug_exit();
343 return;
344}
345
a007f236
GJ
346static int comphy_utmi_power_up(u32 utmi_index, void __iomem *utmi_pll_addr,
347 void __iomem *utmi_base_addr,
c0132f60
SR
348 void __iomem *usb_cfg_addr,
349 void __iomem *utmi_cfg_addr, u32 utmi_phy_port)
350{
351 u32 data, mask, ret = 1;
352 void __iomem *addr;
353
354 debug_enter();
355 debug("stage: UTMI %d - Power up transceiver(Power up Phy), and exit SuspendDM\n",
356 utmi_index);
357 /* Power UP UTMI PHY */
358 reg_set(utmi_cfg_addr, 0x1 << UTMI_PHY_CFG_PU_OFFSET,
359 UTMI_PHY_CFG_PU_MASK);
360 /* Disable Test UTMI select */
361 reg_set(utmi_base_addr + UTMI_CTRL_STATUS0_REG,
362 0x0 << UTMI_CTRL_STATUS0_TEST_SEL_OFFSET,
363 UTMI_CTRL_STATUS0_TEST_SEL_MASK);
364
365 debug("stage: Polling for PLL and impedance calibration done, and PLL ready done\n");
a007f236 366 addr = utmi_pll_addr + UTMI_CALIB_CTRL_REG;
c0132f60
SR
367 data = UTMI_CALIB_CTRL_IMPCAL_DONE_MASK;
368 mask = data;
369 data = polling_with_timeout(addr, data, mask, 100);
370 if (data != 0) {
9b643e31 371 pr_err("Impedance calibration is not done\n");
c0132f60
SR
372 debug("Read from reg = %p - value = 0x%x\n", addr, data);
373 ret = 0;
374 }
375
376 data = UTMI_CALIB_CTRL_PLLCAL_DONE_MASK;
377 mask = data;
378 data = polling_with_timeout(addr, data, mask, 100);
379 if (data != 0) {
9b643e31 380 pr_err("PLL calibration is not done\n");
c0132f60
SR
381 debug("Read from reg = %p - value = 0x%x\n", addr, data);
382 ret = 0;
383 }
384
a007f236 385 addr = utmi_pll_addr + UTMI_PLL_CTRL_REG;
c0132f60
SR
386 data = UTMI_PLL_CTRL_PLL_RDY_MASK;
387 mask = data;
388 data = polling_with_timeout(addr, data, mask, 100);
389 if (data != 0) {
9b643e31 390 pr_err("PLL is not ready\n");
c0132f60
SR
391 debug("Read from reg = %p - value = 0x%x\n", addr, data);
392 ret = 0;
393 }
394
395 if (ret)
396 debug("Passed\n");
397 else
398 debug("\n");
399
400 debug_exit();
401 return ret;
402}
403
404/*
405 * comphy_utmi_phy_init initialize the UTMI PHY
406 * the init split in 3 parts:
407 * 1. Power down transceiver and PLL
408 * 2. UTMI PHY configure
22bc868e 409 * 3. Power up transceiver and PLL
c0132f60
SR
410 * Note: - Power down/up should be once for both UTMI PHYs
411 * - comphy_dedicated_phys_init call this function if at least there is
412 * one UTMI PHY exists in FDT blob. access to cp110_utmi_data[0] is
413 * legal
414 */
415static void comphy_utmi_phy_init(u32 utmi_phy_count,
416 struct utmi_phy_data *cp110_utmi_data)
417{
418 u32 i;
419
420 debug_enter();
421 /* UTMI Power down */
422 for (i = 0; i < utmi_phy_count; i++) {
423 comphy_utmi_power_down(i, cp110_utmi_data[i].utmi_base_addr,
424 cp110_utmi_data[i].usb_cfg_addr,
425 cp110_utmi_data[i].utmi_cfg_addr,
426 cp110_utmi_data[i].utmi_phy_port);
427 }
428 /* PLL Power down */
429 debug("stage: UTMI PHY power down PLL\n");
430 for (i = 0; i < utmi_phy_count; i++) {
431 reg_set(cp110_utmi_data[i].usb_cfg_addr,
432 0x0 << UTMI_USB_CFG_PLL_OFFSET, UTMI_USB_CFG_PLL_MASK);
433 }
434 /* UTMI configure */
435 for (i = 0; i < utmi_phy_count; i++) {
a007f236
GJ
436 comphy_utmi_phy_config(i, cp110_utmi_data[i].utmi_pll_addr,
437 cp110_utmi_data[i].utmi_base_addr,
c0132f60
SR
438 cp110_utmi_data[i].usb_cfg_addr,
439 cp110_utmi_data[i].utmi_cfg_addr,
440 cp110_utmi_data[i].utmi_phy_port);
441 }
442 /* UTMI Power up */
443 for (i = 0; i < utmi_phy_count; i++) {
a007f236
GJ
444 if (!comphy_utmi_power_up(i, cp110_utmi_data[i].utmi_pll_addr,
445 cp110_utmi_data[i].utmi_base_addr,
c0132f60
SR
446 cp110_utmi_data[i].usb_cfg_addr,
447 cp110_utmi_data[i].utmi_cfg_addr,
448 cp110_utmi_data[i].utmi_phy_port)) {
9b643e31 449 pr_err("Failed to initialize UTMI PHY %d\n", i);
c0132f60
SR
450 continue;
451 }
452 printf("UTMI PHY %d initialized to ", i);
e89acc4b
SR
453 if (cp110_utmi_data[i].utmi_phy_port ==
454 UTMI_PHY_TO_USB3_DEVICE0)
c0132f60
SR
455 printf("USB Device\n");
456 else
457 printf("USB Host%d\n",
458 cp110_utmi_data[i].utmi_phy_port);
459 }
460 /* PLL Power up */
461 debug("stage: UTMI PHY power up PLL\n");
462 for (i = 0; i < utmi_phy_count; i++) {
463 reg_set(cp110_utmi_data[i].usb_cfg_addr,
464 0x1 << UTMI_USB_CFG_PLL_OFFSET, UTMI_USB_CFG_PLL_MASK);
465 }
466
467 debug_exit();
468 return;
469}
470
471/*
472 * comphy_dedicated_phys_init initialize the dedicated PHYs
473 * - not muxed SerDes lanes e.g. UTMI PHY
474 */
475void comphy_dedicated_phys_init(void)
476{
477 struct utmi_phy_data cp110_utmi_data[MAX_UTMI_PHY_COUNT];
22bc868e
OI
478 int node = -1;
479 int node_idx;
a007f236 480 int parent = -1;
c0132f60
SR
481
482 debug_enter();
483 debug("Initialize USB UTMI PHYs\n");
484
22bc868e
OI
485 for (node_idx = 0; node_idx < MAX_UTMI_PHY_COUNT;) {
486 /* Find the UTMI phy node in device tree */
487 node = fdt_node_offset_by_compatible(gd->fdt_blob, node,
488 "marvell,mvebu-utmi-2.6.0");
489 if (node <= 0)
490 break;
491
492 /* check if node is enabled */
493 if (!fdtdec_get_is_enabled(gd->fdt_blob, node))
494 continue;
c0132f60 495
a007f236
GJ
496 parent = fdt_parent_offset(gd->fdt_blob, node);
497 if (parent <= 0)
498 break;
499
500 /* get base address of UTMI PLL */
501 cp110_utmi_data[node_idx].utmi_pll_addr =
502 (void __iomem *)fdtdec_get_addr_size_auto_noparent(
503 gd->fdt_blob, parent, "reg", 0, NULL, true);
504 if (!cp110_utmi_data[node_idx].utmi_pll_addr) {
505 pr_err("UTMI PHY PLL address is invalid\n");
506 continue;
507 }
508
c0132f60 509 /* get base address of UTMI phy */
22bc868e 510 cp110_utmi_data[node_idx].utmi_base_addr =
c0132f60
SR
511 (void __iomem *)fdtdec_get_addr_size_auto_noparent(
512 gd->fdt_blob, node, "reg", 0, NULL, true);
22bc868e 513 if (!cp110_utmi_data[node_idx].utmi_base_addr) {
9b643e31 514 pr_err("UTMI PHY base address is invalid\n");
c0132f60
SR
515 continue;
516 }
517
518 /* get usb config address */
22bc868e 519 cp110_utmi_data[node_idx].usb_cfg_addr =
c0132f60
SR
520 (void __iomem *)fdtdec_get_addr_size_auto_noparent(
521 gd->fdt_blob, node, "reg", 1, NULL, true);
22bc868e 522 if (!cp110_utmi_data[node_idx].usb_cfg_addr) {
9b643e31 523 pr_err("UTMI PHY base address is invalid\n");
c0132f60
SR
524 continue;
525 }
526
527 /* get UTMI config address */
22bc868e 528 cp110_utmi_data[node_idx].utmi_cfg_addr =
c0132f60
SR
529 (void __iomem *)fdtdec_get_addr_size_auto_noparent(
530 gd->fdt_blob, node, "reg", 2, NULL, true);
22bc868e 531 if (!cp110_utmi_data[node_idx].utmi_cfg_addr) {
9b643e31 532 pr_err("UTMI PHY base address is invalid\n");
c0132f60
SR
533 continue;
534 }
535
536 /*
537 * get the port number (to check if the utmi connected to
538 * host/device)
539 */
22bc868e 540 cp110_utmi_data[node_idx].utmi_phy_port = fdtdec_get_int(
c0132f60 541 gd->fdt_blob, node, "utmi-port", UTMI_PHY_INVALID);
22bc868e
OI
542 if (cp110_utmi_data[node_idx].utmi_phy_port ==
543 UTMI_PHY_INVALID) {
9b643e31 544 pr_err("UTMI PHY port type is invalid\n");
c0132f60
SR
545 continue;
546 }
547
22bc868e
OI
548 /* count valid UTMI unit */
549 node_idx++;
c0132f60
SR
550 }
551
22bc868e
OI
552 if (node_idx > 0)
553 comphy_utmi_phy_init(node_idx, cp110_utmi_data);
c0132f60
SR
554
555 debug_exit();
556}
557
d368e107
T
558int comphy_cp110_init_serdes_map(int node, struct chip_serdes_phy_config *cfg)
559{
560 int lane, subnode;
561
562 cfg->comphy_lanes_count = fdtdec_get_int(gd->fdt_blob, node,
563 "max-lanes", 0);
564 if (cfg->comphy_lanes_count <= 0) {
565 printf("comphy max lanes is wrong\n");
566 return -EINVAL;
567 }
568
569 cfg->comphy_mux_bitcount = fdtdec_get_int(gd->fdt_blob, node,
570 "mux-bitcount", 0);
571 if (cfg->comphy_mux_bitcount <= 0) {
572 printf("comphy mux bit count is wrong\n");
573 return -EINVAL;
574 }
575
576 cfg->comphy_mux_lane_order = fdtdec_locate_array(gd->fdt_blob, node,
577 "mux-lane-order",
578 cfg->comphy_lanes_count);
579
580 lane = 0;
581 fdt_for_each_subnode(subnode, gd->fdt_blob, node) {
582 /* Skip disabled ports */
583 if (!fdtdec_get_is_enabled(gd->fdt_blob, subnode))
584 continue;
585
586 cfg->comphy_map_data[lane].type =
587 fdtdec_get_int(gd->fdt_blob, subnode, "phy-type",
588 COMPHY_TYPE_INVALID);
589
590 if (cfg->comphy_map_data[lane].type == COMPHY_TYPE_INVALID) {
591 printf("no phy type for lane %d, setting lane as unconnected\n",
592 lane + 1);
593 continue;
594 }
595
596 cfg->comphy_map_data[lane].speed =
597 fdtdec_get_int(gd->fdt_blob, subnode, "phy-speed",
598 COMPHY_SPEED_INVALID);
599
600 cfg->comphy_map_data[lane].invert =
601 fdtdec_get_int(gd->fdt_blob, subnode, "phy-invert",
602 COMPHY_POLARITY_NO_INVERT);
603
604 cfg->comphy_map_data[lane].clk_src =
605 fdtdec_get_bool(gd->fdt_blob, subnode, "clk-src");
606
607 cfg->comphy_map_data[lane].end_point =
608 fdtdec_get_bool(gd->fdt_blob, subnode, "end_point");
609
610 lane++;
611 }
612
613 return 0;
614}
615
c0132f60
SR
616int comphy_cp110_init(struct chip_serdes_phy_config *ptr_chip_cfg,
617 struct comphy_map *serdes_map)
618{
619 struct comphy_map *ptr_comphy_map;
620 void __iomem *comphy_base_addr, *hpipe_base_addr;
5f41aaf4 621 u32 comphy_max_count, lane, id, ret = 0;
c0132f60 622 u32 pcie_width = 0;
b24bb99d 623 u32 mode;
c0132f60
SR
624
625 debug_enter();
626
627 comphy_max_count = ptr_chip_cfg->comphy_lanes_count;
628 comphy_base_addr = ptr_chip_cfg->comphy_base_addr;
629 hpipe_base_addr = ptr_chip_cfg->hpipe3_base_addr;
630
c0132f60
SR
631 /* Check if the first 4 lanes configured as By-4 */
632 for (lane = 0, ptr_comphy_map = serdes_map; lane < 4;
633 lane++, ptr_comphy_map++) {
2dbba240 634 if (ptr_comphy_map->type != COMPHY_TYPE_PEX0)
c0132f60
SR
635 break;
636 pcie_width++;
637 }
638
639 for (lane = 0, ptr_comphy_map = serdes_map; lane < comphy_max_count;
640 lane++, ptr_comphy_map++) {
641 debug("Initialize serdes number %d\n", lane);
642 debug("Serdes type = 0x%x\n", ptr_comphy_map->type);
643 if (lane == 4) {
644 /*
645 * PCIe lanes above the first 4 lanes, can be only
646 * by1
647 */
648 pcie_width = 1;
649 }
650 switch (ptr_comphy_map->type) {
2dbba240 651 case COMPHY_TYPE_UNCONNECTED:
80ebc63c 652 mode = COMPHY_TYPE_UNCONNECTED | COMPHY_CALLER_UBOOT;
f596b01b
CG
653 ret = comphy_smc(MV_SIP_COMPHY_POWER_OFF,
654 ptr_chip_cfg->comphy_base_addr,
80ebc63c 655 lane, mode);
2dbba240 656 case COMPHY_TYPE_IGNORE:
c0132f60
SR
657 continue;
658 break;
2dbba240
IL
659 case COMPHY_TYPE_PEX0:
660 case COMPHY_TYPE_PEX1:
661 case COMPHY_TYPE_PEX2:
662 case COMPHY_TYPE_PEX3:
0a1a1642
GJ
663 mode = COMPHY_FW_PCIE_FORMAT(pcie_width,
664 ptr_comphy_map->clk_src,
665 COMPHY_PCIE_MODE,
666 ptr_comphy_map->speed);
667 ret = comphy_smc(MV_SIP_COMPHY_POWER_ON,
668 ptr_chip_cfg->comphy_base_addr, lane,
669 mode);
c0132f60 670 break;
2dbba240
IL
671 case COMPHY_TYPE_SATA0:
672 case COMPHY_TYPE_SATA1:
ccee8ea1
DO
673 mode = COMPHY_FW_SATA_FORMAT(COMPHY_SATA_MODE,
674 serdes_map[lane].invert);
b24bb99d
GJ
675 ret = comphy_sata_power_up(lane, hpipe_base_addr,
676 comphy_base_addr,
677 ptr_chip_cfg->cp_index,
678 mode);
c0132f60 679 break;
2dbba240
IL
680 case COMPHY_TYPE_USB3_HOST0:
681 case COMPHY_TYPE_USB3_HOST1:
f635c3b3
GJ
682 mode = COMPHY_FW_MODE_FORMAT(COMPHY_USB3H_MODE);
683 ret = comphy_smc(MV_SIP_COMPHY_POWER_ON,
684 ptr_chip_cfg->comphy_base_addr, lane,
685 mode);
686 break;
2dbba240 687 case COMPHY_TYPE_USB3_DEVICE:
f635c3b3
GJ
688 mode = COMPHY_FW_MODE_FORMAT(COMPHY_USB3D_MODE);
689 ret = comphy_smc(MV_SIP_COMPHY_POWER_ON,
690 ptr_chip_cfg->comphy_base_addr, lane,
691 mode);
c0132f60 692 break;
2dbba240
IL
693 case COMPHY_TYPE_SGMII0:
694 case COMPHY_TYPE_SGMII1:
2dbba240 695 case COMPHY_TYPE_SGMII2:
5f41aaf4
IL
696 /* Calculate SGMII ID */
697 id = ptr_comphy_map->type - COMPHY_TYPE_SGMII0;
698
2dbba240 699 if (ptr_comphy_map->speed == COMPHY_SPEED_INVALID) {
c0132f60
SR
700 debug("Warning: SGMII PHY speed in lane %d is invalid, set PHY speed to 1.25G\n",
701 lane);
2dbba240 702 ptr_comphy_map->speed = COMPHY_SPEED_1_25G;
c0132f60 703 }
b24bb99d 704
5f41aaf4 705 mode = COMPHY_FW_FORMAT(COMPHY_SGMII_MODE, id,
b24bb99d
GJ
706 ptr_comphy_map->speed);
707 ret = comphy_smc(MV_SIP_COMPHY_POWER_ON,
708 ptr_chip_cfg->comphy_base_addr, lane,
709 mode);
c0132f60 710 break;
341e548e
IL
711 case COMPHY_TYPE_SFI0:
712 case COMPHY_TYPE_SFI1:
713 /* Calculate SFI id */
714 id = ptr_comphy_map->type - COMPHY_TYPE_SFI0;
715 mode = COMPHY_FW_FORMAT(COMPHY_SFI_MODE, id,
b24bb99d
GJ
716 ptr_comphy_map->speed);
717 ret = comphy_smc(MV_SIP_COMPHY_POWER_ON,
341e548e 718 ptr_chip_cfg->comphy_base_addr, lane, mode);
c0132f60 719 break;
2dbba240
IL
720 case COMPHY_TYPE_RXAUI0:
721 case COMPHY_TYPE_RXAUI1:
26d9763f
GJ
722 mode = COMPHY_FW_MODE_FORMAT(COMPHY_RXAUI_MODE);
723 ret = comphy_smc(MV_SIP_COMPHY_POWER_ON,
724 ptr_chip_cfg->comphy_base_addr, lane,
725 mode);
c0132f60
SR
726 break;
727 default:
728 debug("Unknown SerDes type, skip initialize SerDes %d\n",
729 lane);
730 break;
731 }
732 if (ret == 0) {
733 /*
d37f020e 734 * If interface wans't initialized, set the lane to
2dbba240 735 * COMPHY_TYPE_UNCONNECTED state.
c0132f60 736 */
2dbba240 737 ptr_comphy_map->type = COMPHY_TYPE_UNCONNECTED;
9b643e31 738 pr_err("PLL is not locked - Failed to initialize lane %d\n",
c0132f60
SR
739 lane);
740 }
741 }
742
743 debug_exit();
744 return 0;
745}