mv88e6123_61_65.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * net/dsa/mv88e6123_61_65.c - Marvell 88e6123/6161/6165 switch chip support
  3. * Copyright (c) 2008-2009 Marvell Semiconductor
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. */
  10. #include <linux/delay.h>
  11. #include <linux/jiffies.h>
  12. #include <linux/list.h>
  13. #include <linux/module.h>
  14. #include <linux/netdevice.h>
  15. #include <linux/phy.h>
  16. #include <net/dsa.h>
  17. #include "mv88e6xxx.h"
  18. static const struct mv88e6xxx_switch_id mv88e6123_61_65_table[] = {
  19. { PORT_SWITCH_ID_6123, "Marvell 88E6123" },
  20. { PORT_SWITCH_ID_6123_A1, "Marvell 88E6123 (A1)" },
  21. { PORT_SWITCH_ID_6123_A2, "Marvell 88E6123 (A2)" },
  22. { PORT_SWITCH_ID_6161, "Marvell 88E6161" },
  23. { PORT_SWITCH_ID_6161_A1, "Marvell 88E6161 (A1)" },
  24. { PORT_SWITCH_ID_6161_A2, "Marvell 88E6161 (A2)" },
  25. { PORT_SWITCH_ID_6165, "Marvell 88E6165" },
  26. { PORT_SWITCH_ID_6165_A1, "Marvell 88E6165 (A1)" },
  27. { PORT_SWITCH_ID_6165_A2, "Marvell 88e6165 (A2)" },
  28. };
  29. static char *mv88e6123_61_65_probe(struct device *host_dev, int sw_addr)
  30. {
  31. return mv88e6xxx_lookup_name(host_dev, sw_addr, mv88e6123_61_65_table,
  32. ARRAY_SIZE(mv88e6123_61_65_table));
  33. }
  34. static int mv88e6123_61_65_setup_global(struct dsa_switch *ds)
  35. {
  36. u32 upstream_port = dsa_upstream_port(ds);
  37. int ret;
  38. u32 reg;
  39. ret = mv88e6xxx_setup_global(ds);
  40. if (ret)
  41. return ret;
  42. /* Disable the PHY polling unit (since there won't be any
  43. * external PHYs to poll), don't discard packets with
  44. * excessive collisions, and mask all interrupt sources.
  45. */
  46. REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL, 0x0000);
  47. /* Configure the upstream port, and configure the upstream
  48. * port as the port to which ingress and egress monitor frames
  49. * are to be sent.
  50. */
  51. reg = upstream_port << GLOBAL_MONITOR_CONTROL_INGRESS_SHIFT |
  52. upstream_port << GLOBAL_MONITOR_CONTROL_EGRESS_SHIFT |
  53. upstream_port << GLOBAL_MONITOR_CONTROL_ARP_SHIFT;
  54. REG_WRITE(REG_GLOBAL, GLOBAL_MONITOR_CONTROL, reg);
  55. /* Disable remote management for now, and set the switch's
  56. * DSA device number.
  57. */
  58. REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL_2, ds->index & 0x1f);
  59. return 0;
  60. }
  61. static int mv88e6123_61_65_setup(struct dsa_switch *ds)
  62. {
  63. struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
  64. int ret;
  65. ret = mv88e6xxx_setup_common(ds);
  66. if (ret < 0)
  67. return ret;
  68. switch (ps->id) {
  69. case PORT_SWITCH_ID_6123:
  70. ps->num_ports = 3;
  71. break;
  72. case PORT_SWITCH_ID_6161:
  73. case PORT_SWITCH_ID_6165:
  74. ps->num_ports = 6;
  75. break;
  76. default:
  77. return -ENODEV;
  78. }
  79. ret = mv88e6xxx_switch_reset(ds, false);
  80. if (ret < 0)
  81. return ret;
  82. ret = mv88e6123_61_65_setup_global(ds);
  83. if (ret < 0)
  84. return ret;
  85. return mv88e6xxx_setup_ports(ds);
  86. }
  87. struct dsa_switch_driver mv88e6123_61_65_switch_driver = {
  88. .tag_protocol = DSA_TAG_PROTO_EDSA,
  89. .priv_size = sizeof(struct mv88e6xxx_priv_state),
  90. .probe = mv88e6123_61_65_probe,
  91. .setup = mv88e6123_61_65_setup,
  92. .set_addr = mv88e6xxx_set_addr_indirect,
  93. .phy_read = mv88e6xxx_phy_read,
  94. .phy_write = mv88e6xxx_phy_write,
  95. .get_strings = mv88e6xxx_get_strings,
  96. .get_ethtool_stats = mv88e6xxx_get_ethtool_stats,
  97. .get_sset_count = mv88e6xxx_get_sset_count,
  98. .adjust_link = mv88e6xxx_adjust_link,
  99. #ifdef CONFIG_NET_DSA_HWMON
  100. .get_temp = mv88e6xxx_get_temp,
  101. #endif
  102. .get_regs_len = mv88e6xxx_get_regs_len,
  103. .get_regs = mv88e6xxx_get_regs,
  104. };
  105. MODULE_ALIAS("platform:mv88e6123");
  106. MODULE_ALIAS("platform:mv88e6161");
  107. MODULE_ALIAS("platform:mv88e6165");