mpc8544_serdes.c 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Copyright 2010 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. #define SRDS1_MAX_LANES 8
  28. #define SRDS2_MAX_LANES 4
  29. static u32 serdes1_prtcl_map, serdes2_prtcl_map;
  30. static u8 serdes1_cfg_tbl[][SRDS1_MAX_LANES] = {
  31. [0x2] = {PCIE1, PCIE1, PCIE1, PCIE1, NONE, NONE, NONE, NONE},
  32. [0x3] = {PCIE1, PCIE1, PCIE1, PCIE1, NONE, NONE, NONE, NONE},
  33. [0x4] = {PCIE1, PCIE1, PCIE1, PCIE1, PCIE2, PCIE2, PCIE2, PCIE2},
  34. [0x5] = {PCIE1, PCIE1, PCIE1, PCIE1, PCIE2, PCIE2, PCIE2, PCIE2},
  35. [0x6] = {PCIE1, PCIE1, PCIE1, PCIE1, PCIE2, PCIE2, PCIE2, PCIE2},
  36. [0x7] = {PCIE1, PCIE1, PCIE1, PCIE1, PCIE2, PCIE2, PCIE2, PCIE2},
  37. };
  38. static u8 serdes2_cfg_tbl[][SRDS2_MAX_LANES] = {
  39. [0x1] = {NONE, NONE, SGMII_TSEC1, SGMII_TSEC3},
  40. [0x3] = {NONE, NONE, SGMII_TSEC1, SGMII_TSEC3},
  41. [0x5] = {NONE, NONE, SGMII_TSEC1, SGMII_TSEC3},
  42. [0x6] = {PCIE3, NONE, NONE, NONE},
  43. [0x7] = {PCIE3, NONE, SGMII_TSEC1, SGMII_TSEC3},
  44. };
  45. int is_serdes_configured(enum srds_prtcl device)
  46. {
  47. int ret = (1 << device) & serdes1_prtcl_map;
  48. if (ret)
  49. return ret;
  50. return (1 << device) & serdes2_prtcl_map;
  51. }
  52. void fsl_serdes_init(void)
  53. {
  54. ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
  55. u32 pordevsr = in_be32(&gur->pordevsr);
  56. u32 srds_cfg = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >>
  57. MPC85xx_PORDEVSR_IO_SEL_SHIFT;
  58. int lane;
  59. debug("PORDEVSR[IO_SEL_SRDS] = %x\n", srds_cfg);
  60. if (srds_cfg > ARRAY_SIZE(serdes1_cfg_tbl)) {
  61. printf("Invalid PORDEVSR[IO_SEL_SRDS] = %d\n", srds_cfg);
  62. return;
  63. }
  64. for (lane = 0; lane < SRDS1_MAX_LANES; lane++) {
  65. enum srds_prtcl lane_prtcl = serdes1_cfg_tbl[srds_cfg][lane];
  66. serdes1_prtcl_map |= (1 << lane_prtcl);
  67. }
  68. if (srds_cfg > ARRAY_SIZE(serdes2_cfg_tbl)) {
  69. printf("Invalid PORDEVSR[IO_SEL_SRDS] = %d\n", srds_cfg);
  70. return;
  71. }
  72. for (lane = 0; lane < SRDS2_MAX_LANES; lane++) {
  73. enum srds_prtcl lane_prtcl = serdes2_cfg_tbl[srds_cfg][lane];
  74. serdes2_prtcl_map |= (1 << lane_prtcl);
  75. }
  76. if (pordevsr & MPC85xx_PORDEVSR_SGMII1_DIS)
  77. serdes2_prtcl_map &= ~(1 << SGMII_TSEC1);
  78. if (pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS)
  79. serdes2_prtcl_map &= ~(1 << SGMII_TSEC3);
  80. }