p1021_serdes.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * Copyright 2010-2011 Freescale Semiconductor, Inc.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <config.h>
  23. #include <common.h>
  24. #include <asm/io.h>
  25. #include <asm/immap_85xx.h>
  26. #include <asm/fsl_serdes.h>
  27. typedef struct serdes_85xx {
  28. u32 srdscr0; /* 0x00 - SRDS Control Register 0 */
  29. u32 srdscr1; /* 0x04 - SRDS Control Register 1 */
  30. u32 srdscr2; /* 0x08 - SRDS Control Register 2 */
  31. u32 srdscr3; /* 0x0C - SRDS Control Register 3 */
  32. u32 srdscr4; /* 0x10 - SRDS Control Register 4 */
  33. } serdes_85xx_t;
  34. #define FSL_SRDSCR3_EIC0(x) (((x) & 0x1f) << 8)
  35. #define FSL_SRDSCR3_EIC0_MASK FSL_SRDSCR3_EIC0(0x1f)
  36. #define FSL_SRDSCR3_EIC1(x) (((x) & 0x1f) << 0)
  37. #define FSL_SRDSCR3_EIC1_MASK FSL_SRDSCR3_EIC1(0x1f)
  38. #define FSL_SRDSCR4_EIC2(x) (((x) & 0x1f) << 8)
  39. #define FSL_SRDSCR4_EIC2_MASK FSL_SRDSCR4_EIC2(0x1f)
  40. #define FSL_SRDSCR4_EIC3(x) (((x) & 0x1f) << 0)
  41. #define FSL_SRDSCR4_EIC3_MASK FSL_SRDSCR4_EIC3(0x1f)
  42. #define EIC_PCIE 0x13
  43. #define EIC_SGMII 0x04
  44. #define SRDS1_MAX_LANES 4
  45. static u32 serdes1_prtcl_map;
  46. static u8 serdes1_cfg_tbl[][SRDS1_MAX_LANES] = {
  47. [0x0] = {PCIE1, NONE, NONE, NONE},
  48. [0x6] = {PCIE1, PCIE1, PCIE1, PCIE1},
  49. [0xe] = {PCIE1, PCIE2, SGMII_TSEC2, SGMII_TSEC3},
  50. [0xf] = {PCIE1, PCIE1, SGMII_TSEC2, SGMII_TSEC3},
  51. };
  52. int is_serdes_configured(enum srds_prtcl prtcl)
  53. {
  54. return (1 << prtcl) & serdes1_prtcl_map;
  55. }
  56. void fsl_serdes_init(void)
  57. {
  58. ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
  59. serdes_85xx_t *serdes = (void *)CONFIG_SYS_MPC85xx_SERDES1_ADDR;
  60. u32 pordevsr = in_be32(&gur->pordevsr);
  61. u32 srds_cfg = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >>
  62. MPC85xx_PORDEVSR_IO_SEL_SHIFT;
  63. int lane;
  64. u32 mask, val;
  65. debug("PORDEVSR[IO_SEL_SRDS] = %x\n", srds_cfg);
  66. if (srds_cfg > ARRAY_SIZE(serdes1_cfg_tbl)) {
  67. printf("Invalid PORDEVSR[IO_SEL_SRDS] = %d\n", srds_cfg);
  68. return;
  69. }
  70. for (lane = 0; lane < SRDS1_MAX_LANES; lane++) {
  71. enum srds_prtcl lane_prtcl = serdes1_cfg_tbl[srds_cfg][lane];
  72. serdes1_prtcl_map |= (1 << lane_prtcl);
  73. }
  74. /* Init SERDES Receiver electrical idle detection control for PCIe */
  75. /* Lane 0 is always PCIe 1 */
  76. mask = FSL_SRDSCR3_EIC0_MASK;
  77. val = FSL_SRDSCR3_EIC0(EIC_PCIE);
  78. /* Lane 1 */
  79. if ((serdes1_cfg_tbl[srds_cfg][1] == PCIE1) ||
  80. (serdes1_cfg_tbl[srds_cfg][1] == PCIE2)) {
  81. mask |= FSL_SRDSCR3_EIC1_MASK;
  82. val |= FSL_SRDSCR3_EIC1(EIC_PCIE);
  83. }
  84. /* Handle lanes 0 & 1 */
  85. clrsetbits_be32(&serdes->srdscr3, mask, val);
  86. /* Handle lanes 2 & 3 */
  87. if (srds_cfg == 0x6) {
  88. mask = FSL_SRDSCR4_EIC2_MASK | FSL_SRDSCR4_EIC3_MASK;
  89. val = FSL_SRDSCR4_EIC2(EIC_PCIE) | FSL_SRDSCR4_EIC3(EIC_PCIE);
  90. clrsetbits_be32(&serdes->srdscr4, mask, val);
  91. }
  92. /* 100 ms delay */
  93. udelay(100000);
  94. }