2 * Copyright 2016 Freescale Semiconductor, Inc.
4 * SPDX-License-Identifier: GPL-2.0+
8 #include <asm/arch/fsl_serdes.h>
9 #include <asm/arch/immap_lsch2.h>
11 struct serdes_config {
13 u8 lanes[SRDS_MAX_LANES];
16 static struct serdes_config serdes1_cfg_tbl[] = {
17 {0x2208, {SGMII_2500_FM1_DTSEC1, SGMII_2500_FM1_DTSEC2, NONE, SATA1} },
18 {0x0008, {NONE, NONE, NONE, SATA1} },
19 {0x3508, {SGMII_FM1_DTSEC1, PCIE1, NONE, SATA1} },
20 {0x3305, {SGMII_FM1_DTSEC1, SGMII_FM1_DTSEC2, NONE, PCIE1} },
21 {0x2205, {SGMII_2500_FM1_DTSEC1, SGMII_2500_FM1_DTSEC2, NONE, PCIE1} },
22 {0x2305, {SGMII_2500_FM1_DTSEC1, SGMII_FM1_DTSEC2, NONE, PCIE1} },
23 {0x9508, {TX_CLK, PCIE1, NONE, SATA1} },
24 {0x3905, {SGMII_FM1_DTSEC1, TX_CLK, NONE, PCIE1} },
25 {0x9305, {TX_CLK, SGMII_FM1_DTSEC2, NONE, PCIE1} },
29 static struct serdes_config *serdes_cfg_tbl[] = {
33 enum srds_prtcl serdes_get_prtcl(int serdes, int cfg, int lane)
35 struct serdes_config *ptr;
37 if (serdes >= ARRAY_SIZE(serdes_cfg_tbl))
40 ptr = serdes_cfg_tbl[serdes];
41 while (ptr->protocol) {
42 if (ptr->protocol == cfg)
43 return ptr->lanes[lane];
50 int is_serdes_prtcl_valid(int serdes, u32 prtcl)
53 struct serdes_config *ptr;
55 if (serdes >= ARRAY_SIZE(serdes_cfg_tbl))
58 ptr = serdes_cfg_tbl[serdes];
59 while (ptr->protocol) {
60 if (ptr->protocol == prtcl)
68 for (i = 0; i < SRDS_MAX_LANES; i++) {
69 if (ptr->lanes[i] != NONE)