p1021_serdes.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright 2010-2011 Freescale Semiconductor, Inc.
  4. */
  5. #include <config.h>
  6. #include <common.h>
  7. #include <asm/io.h>
  8. #include <asm/immap_85xx.h>
  9. #include <asm/fsl_serdes.h>
  10. typedef struct serdes_85xx {
  11. u32 srdscr0; /* 0x00 - SRDS Control Register 0 */
  12. u32 srdscr1; /* 0x04 - SRDS Control Register 1 */
  13. u32 srdscr2; /* 0x08 - SRDS Control Register 2 */
  14. u32 srdscr3; /* 0x0C - SRDS Control Register 3 */
  15. u32 srdscr4; /* 0x10 - SRDS Control Register 4 */
  16. } serdes_85xx_t;
  17. #define FSL_SRDSCR3_EIC0(x) (((x) & 0x1f) << 8)
  18. #define FSL_SRDSCR3_EIC0_MASK FSL_SRDSCR3_EIC0(0x1f)
  19. #define FSL_SRDSCR3_EIC1(x) (((x) & 0x1f) << 0)
  20. #define FSL_SRDSCR3_EIC1_MASK FSL_SRDSCR3_EIC1(0x1f)
  21. #define FSL_SRDSCR4_EIC2(x) (((x) & 0x1f) << 8)
  22. #define FSL_SRDSCR4_EIC2_MASK FSL_SRDSCR4_EIC2(0x1f)
  23. #define FSL_SRDSCR4_EIC3(x) (((x) & 0x1f) << 0)
  24. #define FSL_SRDSCR4_EIC3_MASK FSL_SRDSCR4_EIC3(0x1f)
  25. #define EIC_PCIE 0x13
  26. #define EIC_SGMII 0x04
  27. #define SRDS1_MAX_LANES 4
  28. static u32 serdes1_prtcl_map;
  29. static u8 serdes1_cfg_tbl[][SRDS1_MAX_LANES] = {
  30. [0x0] = {PCIE1, NONE, NONE, NONE},
  31. [0x6] = {PCIE1, PCIE1, PCIE1, PCIE1},
  32. [0xe] = {PCIE1, PCIE2, SGMII_TSEC2, SGMII_TSEC3},
  33. [0xf] = {PCIE1, PCIE1, SGMII_TSEC2, SGMII_TSEC3},
  34. };
  35. int is_serdes_configured(enum srds_prtcl prtcl)
  36. {
  37. if (!(serdes1_prtcl_map & (1 << NONE)))
  38. fsl_serdes_init();
  39. return (1 << prtcl) & serdes1_prtcl_map;
  40. }
  41. void fsl_serdes_init(void)
  42. {
  43. ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
  44. serdes_85xx_t *serdes = (void *)CONFIG_SYS_MPC85xx_SERDES1_ADDR;
  45. u32 pordevsr = in_be32(&gur->pordevsr);
  46. u32 srds_cfg = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >>
  47. MPC85xx_PORDEVSR_IO_SEL_SHIFT;
  48. int lane;
  49. u32 mask, val;
  50. if (serdes1_prtcl_map & (1 << NONE))
  51. return;
  52. debug("PORDEVSR[IO_SEL_SRDS] = %x\n", srds_cfg);
  53. if (srds_cfg >= ARRAY_SIZE(serdes1_cfg_tbl)) {
  54. printf("Invalid PORDEVSR[IO_SEL_SRDS] = %d\n", srds_cfg);
  55. return;
  56. }
  57. for (lane = 0; lane < SRDS1_MAX_LANES; lane++) {
  58. enum srds_prtcl lane_prtcl = serdes1_cfg_tbl[srds_cfg][lane];
  59. serdes1_prtcl_map |= (1 << lane_prtcl);
  60. }
  61. /* Set the first bit to indicate serdes has been initialized */
  62. serdes1_prtcl_map |= (1 << NONE);
  63. /* Init SERDES Receiver electrical idle detection control for PCIe */
  64. /* Lane 0 is always PCIe 1 */
  65. mask = FSL_SRDSCR3_EIC0_MASK;
  66. val = FSL_SRDSCR3_EIC0(EIC_PCIE);
  67. /* Lane 1 */
  68. if ((serdes1_cfg_tbl[srds_cfg][1] == PCIE1) ||
  69. (serdes1_cfg_tbl[srds_cfg][1] == PCIE2)) {
  70. mask |= FSL_SRDSCR3_EIC1_MASK;
  71. val |= FSL_SRDSCR3_EIC1(EIC_PCIE);
  72. }
  73. /* Handle lanes 0 & 1 */
  74. clrsetbits_be32(&serdes->srdscr3, mask, val);
  75. /* Handle lanes 2 & 3 */
  76. if (srds_cfg == 0x6) {
  77. mask = FSL_SRDSCR4_EIC2_MASK | FSL_SRDSCR4_EIC3_MASK;
  78. val = FSL_SRDSCR4_EIC2(EIC_PCIE) | FSL_SRDSCR4_EIC3(EIC_PCIE);
  79. clrsetbits_be32(&serdes->srdscr4, mask, val);
  80. }
  81. /* 100 ms delay */
  82. udelay(100000);
  83. }