swrm_port_config.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* Copyright (c) 2018 The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #ifndef _SWRM_PORT_CONFIG
  13. #define _SWRM_PORT_CONFIG
  14. #define WSA_MSTR_PORT_MASK 0xFF
  15. /*
  16. * Add port configuration in the format
  17. *{ si, off1, off2, hstart, hstop, wd_len, bp_mode, bgp_ctrl, lane_ctrl}
  18. */
  19. struct port_params wsa_frame_superset[SWR_MSTR_PORT_LEN] = {
  20. {7, 1, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
  21. {31, 2, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
  22. {63, 12, 31, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
  23. {7, 6, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
  24. {31, 18, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
  25. {63, 13, 31, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
  26. {15, 7, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
  27. {15, 10, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
  28. };
  29. struct port_params rx_frame_params[SWR_MSTR_PORT_LEN] = {
  30. {3, 0, 0, 0xFF, 0xFF, 1, 0xFF, 0xFF, 1},
  31. {31, 0, 0, 3, 6, 7, 0, 0xFF, 0},
  32. {31, 11, 11, 0xFF, 0xFF, 4, 1, 0xFF, 0},
  33. {3, 1, 0, 0xFF, 0xFF, 0xFF, 0xFF, 1, 0},
  34. {0, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0, 0},
  35. };
  36. struct port_params rx_frame_params_dsd[SWR_MSTR_PORT_LEN] = {
  37. {3, 0, 0, 0xFF, 0xFF, 1, 0xFF, 0xFF, 1},
  38. {31, 0, 0, 3, 6, 7, 0, 0xFF, 0},
  39. {31, 11, 11, 0xFF, 0xFF, 4, 1, 0xFF, 0},
  40. {7, 9, 0, 0xFF, 0xFF, 0xFF, 0xFF, 1, 0},
  41. {3, 1, 0, 0xFF, 0xFF, 0xFF, 0xFF, 3, 0},
  42. };
  43. struct port_params tx_frame_params_superset[SWR_MSTR_PORT_LEN] = {
  44. {1, 1, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0},
  45. {1, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 1},
  46. {3, 1, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0},
  47. {3, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 1},
  48. };
  49. #endif /* _SWRM_REGISTERS_H */