mpc8572_serdes.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. static u32 serdes1_prtcl_map;
  29. static u8 serdes1_cfg_tbl[][SRDS1_MAX_LANES] = {
  30. [0x2] = {PCIE1, PCIE1, PCIE1, PCIE1, NONE, NONE, NONE, NONE},
  31. [0x3] = {PCIE1, PCIE1, PCIE1, PCIE1, PCIE2, PCIE2, PCIE2, PCIE2},
  32. [0x6] = {NONE, NONE, NONE, NONE, SRIO1, SRIO1, SRIO1, SRIO1},
  33. [0x7] = {PCIE1, PCIE1, PCIE1, PCIE1, PCIE2, PCIE2, PCIE3, PCIE3},
  34. [0xb] = {PCIE1, PCIE1, PCIE1, PCIE1, SRIO1, SRIO1, SRIO1, SRIO1},
  35. [0xc] = {PCIE1, PCIE1, PCIE1, PCIE1, SRIO1, SRIO1, SRIO1, SRIO1},
  36. [0xd] = {NONE, NONE, NONE, NONE, SRIO1, SRIO1, SRIO1, SRIO1},
  37. [0xe] = {NONE, NONE, NONE, NONE, SRIO1, SRIO1, SRIO1, SRIO1},
  38. [0xf] = {PCIE1, PCIE1, PCIE1, PCIE1, PCIE1, PCIE1, PCIE1, PCIE1},
  39. };
  40. int is_serdes_configured(enum srds_prtcl prtcl)
  41. {
  42. return (1 << prtcl) & serdes1_prtcl_map;
  43. }
  44. void fsl_serdes_init(void)
  45. {
  46. ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
  47. u32 pordevsr = in_be32(&gur->pordevsr);
  48. u32 srds_cfg = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >>
  49. MPC85xx_PORDEVSR_IO_SEL_SHIFT;
  50. int lane;
  51. debug("PORDEVSR[IO_SEL_SRDS] = %x\n", srds_cfg);
  52. if (srds_cfg > ARRAY_SIZE(serdes1_cfg_tbl)) {
  53. printf("Invalid PORDEVSR[IO_SEL_SRDS] = %d\n", srds_cfg);
  54. return;
  55. }
  56. for (lane = 0; lane < SRDS1_MAX_LANES; lane++) {
  57. enum srds_prtcl lane_prtcl = serdes1_cfg_tbl[srds_cfg][lane];
  58. serdes1_prtcl_map |= (1 << lane_prtcl);
  59. }
  60. if (!(pordevsr & MPC85xx_PORDEVSR_SGMII1_DIS))
  61. serdes1_prtcl_map |= (1 << SGMII_TSEC1);
  62. if (!(pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS))
  63. serdes1_prtcl_map |= (1 << SGMII_TSEC2);
  64. if (!(pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS))
  65. serdes1_prtcl_map |= (1 << SGMII_TSEC3);
  66. if (!(pordevsr & MPC85xx_PORDEVSR_SGMII4_DIS))
  67. serdes1_prtcl_map |= (1 << SGMII_TSEC4);
  68. }