1 // SPDX-License-Identifier: (GPL-2.0 OR MIT) 2 /* 3 * Copyright 2021-2022 Innovative Advantage Inc. 4 */ 5 6 #include <linux/mfd/ocelot.h> 7 #include <linux/platform_device.h> 8 #include <linux/regmap.h> 9 #include <soc/mscc/ocelot.h> 10 #include <soc/mscc/vsc7514_regs.h> 11 #include "felix.h" 12 13 #define VSC7514_NUM_PORTS 11 14 15 #define OCELOT_PORT_MODE_SERDES (OCELOT_PORT_MODE_SGMII | \ 16 OCELOT_PORT_MODE_QSGMII) 17 18 static const u32 vsc7512_port_modes[VSC7514_NUM_PORTS] = { 19 OCELOT_PORT_MODE_INTERNAL, 20 OCELOT_PORT_MODE_INTERNAL, 21 OCELOT_PORT_MODE_INTERNAL, 22 OCELOT_PORT_MODE_INTERNAL, 23 OCELOT_PORT_MODE_SERDES, 24 OCELOT_PORT_MODE_SERDES, 25 OCELOT_PORT_MODE_SERDES, 26 OCELOT_PORT_MODE_SERDES, 27 OCELOT_PORT_MODE_SERDES, 28 OCELOT_PORT_MODE_SGMII, 29 OCELOT_PORT_MODE_SERDES, 30 }; 31 32 static const struct ocelot_ops ocelot_ext_ops = { 33 .reset = ocelot_reset, 34 .wm_enc = ocelot_wm_enc, 35 .wm_dec = ocelot_wm_dec, 36 .wm_stat = ocelot_wm_stat, 37 .port_to_netdev = felix_port_to_netdev, 38 .netdev_to_port = felix_netdev_to_port, 39 }; 40 41 static const char * const vsc7512_resource_names[TARGET_MAX] = { 42 [SYS] = "sys", 43 [REW] = "rew", 44 [S0] = "s0", 45 [S1] = "s1", 46 [S2] = "s2", 47 [QS] = "qs", 48 [QSYS] = "qsys", 49 [ANA] = "ana", 50 }; 51 52 static const struct felix_info vsc7512_info = { 53 .resource_names = vsc7512_resource_names, 54 .regfields = vsc7514_regfields, 55 .map = vsc7514_regmap, 56 .ops = &ocelot_ext_ops, 57 .vcap = vsc7514_vcap_props, 58 .num_mact_rows = 1024, 59 .num_ports = VSC7514_NUM_PORTS, 60 .num_tx_queues = OCELOT_NUM_TC, 61 .port_modes = vsc7512_port_modes, 62 .phylink_mac_config = ocelot_phylink_mac_config, 63 .configure_serdes = ocelot_port_configure_serdes, 64 }; 65 66 static int ocelot_ext_probe(struct platform_device *pdev) 67 { 68 struct device *dev = &pdev->dev; 69 struct dsa_switch *ds; 70 struct ocelot *ocelot; 71 struct felix *felix; 72 int err; 73 74 felix = devm_kzalloc(dev, sizeof(*felix), GFP_KERNEL); 75 if (!felix) 76 return -ENOMEM; 77 78 dev_set_drvdata(dev, felix); 79 80 ocelot = &felix->ocelot; 81 ocelot->dev = dev; 82 83 ocelot->num_flooding_pgids = 1; 84 85 felix->info = &vsc7512_info; 86 87 ds = devm_kzalloc(dev, sizeof(*ds), GFP_KERNEL); 88 if (!ds) 89 return -ENOMEM; 90 91 ds->dev = dev; 92 ds->num_ports = felix->info->num_ports; 93 ds->num_tx_queues = felix->info->num_tx_queues; 94 95 ds->ops = &felix_switch_ops; 96 ds->phylink_mac_ops = &felix_phylink_mac_ops; 97 ds->priv = ocelot; 98 felix->ds = ds; 99 felix->tag_proto = DSA_TAG_PROTO_OCELOT; 100 101 err = dsa_register_switch(ds); 102 if (err) 103 dev_err_probe(dev, err, "Failed to register DSA switch\n"); 104 105 return err; 106 } 107 108 static void ocelot_ext_remove(struct platform_device *pdev) 109 { 110 struct felix *felix = dev_get_drvdata(&pdev->dev); 111 112 if (!felix) 113 return; 114 115 dsa_unregister_switch(felix->ds); 116 } 117 118 static void ocelot_ext_shutdown(struct platform_device *pdev) 119 { 120 struct felix *felix = dev_get_drvdata(&pdev->dev); 121 122 if (!felix) 123 return; 124 125 dsa_switch_shutdown(felix->ds); 126 127 dev_set_drvdata(&pdev->dev, NULL); 128 } 129 130 static const struct of_device_id ocelot_ext_switch_of_match[] = { 131 { .compatible = "mscc,vsc7512-switch" }, 132 { }, 133 }; 134 MODULE_DEVICE_TABLE(of, ocelot_ext_switch_of_match); 135 136 static struct platform_driver ocelot_ext_switch_driver = { 137 .driver = { 138 .name = "ocelot-ext-switch", 139 .of_match_table = ocelot_ext_switch_of_match, 140 }, 141 .probe = ocelot_ext_probe, 142 .remove_new = ocelot_ext_remove, 143 .shutdown = ocelot_ext_shutdown, 144 }; 145 module_platform_driver(ocelot_ext_switch_driver); 146 147 MODULE_DESCRIPTION("External Ocelot Switch driver"); 148 MODULE_LICENSE("GPL"); 149 MODULE_IMPORT_NS(MFD_OCELOT); 150