mpc8610_serdes.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_86xx.h>
  26. #include <asm/fsl_serdes.h>
  27. #define SRDS1_MAX_LANES 4
  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. [0x1] = {PCIE1, PCIE1, PCIE1, PCIE1},
  32. [0x4] = {PCIE1, PCIE1, PCIE1, PCIE1},
  33. [0x7] = {NONE, NONE, NONE, NONE},
  34. };
  35. static u8 serdes2_cfg_tbl[][SRDS2_MAX_LANES] = {
  36. [0x0] = {PCIE2, PCIE2, PCIE2, PCIE2},
  37. [0x4] = {PCIE2, PCIE2, PCIE2, PCIE2},
  38. [0x7] = {NONE, NONE, NONE, NONE},
  39. };
  40. int is_serdes_configured(enum srds_prtcl device)
  41. {
  42. int ret = (1 << device) & serdes1_prtcl_map;
  43. if (ret)
  44. return ret;
  45. return (1 << device) & serdes2_prtcl_map;
  46. }
  47. void fsl_serdes_init(void)
  48. {
  49. immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
  50. ccsr_gur_t *gur = &immap->im_gur;
  51. u32 pordevsr = in_be32(&gur->pordevsr);
  52. u32 srds_cfg = (pordevsr & MPC8610_PORDEVSR_IO_SEL) >>
  53. MPC8610_PORDEVSR_IO_SEL_SHIFT;
  54. int lane;
  55. debug("PORDEVSR[IO_SEL_SRDS] = %x\n", srds_cfg);
  56. if (srds_cfg > ARRAY_SIZE(serdes1_cfg_tbl)) {
  57. printf("Invalid PORDEVSR[IO_SEL_SRDS] = %d\n", srds_cfg);
  58. return;
  59. }
  60. for (lane = 0; lane < SRDS1_MAX_LANES; lane++) {
  61. enum srds_prtcl lane_prtcl = serdes1_cfg_tbl[srds_cfg][lane];
  62. serdes1_prtcl_map |= (1 << lane_prtcl);
  63. }
  64. if (srds_cfg > ARRAY_SIZE(serdes2_cfg_tbl)) {
  65. printf("Invalid PORDEVSR[IO_SEL_SRDS] = %d\n", srds_cfg);
  66. return;
  67. }
  68. for (lane = 0; lane < SRDS2_MAX_LANES; lane++) {
  69. enum srds_prtcl lane_prtcl = serdes2_cfg_tbl[srds_cfg][lane];
  70. serdes2_prtcl_map |= (1 << lane_prtcl);
  71. }
  72. }