xref: /openbmc/linux/drivers/net/dsa/mt7530-mmio.c (revision c900529f3d9161bfde5cca0754f83b4d3c3e0220)
1110c18bfSDaniel Golle // SPDX-License-Identifier: GPL-2.0-only
2110c18bfSDaniel Golle 
3*f44a9010SRob Herring #include <linux/mod_devicetable.h>
4110c18bfSDaniel Golle #include <linux/module.h>
5*f44a9010SRob Herring #include <linux/platform_device.h>
6110c18bfSDaniel Golle #include <linux/regmap.h>
7110c18bfSDaniel Golle #include <linux/regulator/consumer.h>
8110c18bfSDaniel Golle #include <linux/reset.h>
9110c18bfSDaniel Golle #include <net/dsa.h>
10110c18bfSDaniel Golle 
11110c18bfSDaniel Golle #include "mt7530.h"
12110c18bfSDaniel Golle 
13110c18bfSDaniel Golle static const struct of_device_id mt7988_of_match[] = {
14110c18bfSDaniel Golle 	{ .compatible = "mediatek,mt7988-switch", .data = &mt753x_table[ID_MT7988], },
15110c18bfSDaniel Golle 	{ /* sentinel */ },
16110c18bfSDaniel Golle };
17110c18bfSDaniel Golle MODULE_DEVICE_TABLE(of, mt7988_of_match);
18110c18bfSDaniel Golle 
19110c18bfSDaniel Golle static int
mt7988_probe(struct platform_device * pdev)20110c18bfSDaniel Golle mt7988_probe(struct platform_device *pdev)
21110c18bfSDaniel Golle {
22110c18bfSDaniel Golle 	static struct regmap_config *sw_regmap_config;
23110c18bfSDaniel Golle 	struct mt7530_priv *priv;
24110c18bfSDaniel Golle 	void __iomem *base_addr;
25110c18bfSDaniel Golle 	int ret;
26110c18bfSDaniel Golle 
27110c18bfSDaniel Golle 	priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
28110c18bfSDaniel Golle 	if (!priv)
29110c18bfSDaniel Golle 		return -ENOMEM;
30110c18bfSDaniel Golle 
31110c18bfSDaniel Golle 	priv->bus = NULL;
32110c18bfSDaniel Golle 	priv->dev = &pdev->dev;
33110c18bfSDaniel Golle 
34110c18bfSDaniel Golle 	ret = mt7530_probe_common(priv);
35110c18bfSDaniel Golle 	if (ret)
36110c18bfSDaniel Golle 		return ret;
37110c18bfSDaniel Golle 
38110c18bfSDaniel Golle 	priv->rstc = devm_reset_control_get(&pdev->dev, NULL);
39110c18bfSDaniel Golle 	if (IS_ERR(priv->rstc)) {
40110c18bfSDaniel Golle 		dev_err(&pdev->dev, "Couldn't get our reset line\n");
41110c18bfSDaniel Golle 		return PTR_ERR(priv->rstc);
42110c18bfSDaniel Golle 	}
43110c18bfSDaniel Golle 
44110c18bfSDaniel Golle 	base_addr = devm_platform_ioremap_resource(pdev, 0);
45110c18bfSDaniel Golle 	if (IS_ERR(base_addr)) {
46110c18bfSDaniel Golle 		dev_err(&pdev->dev, "cannot request I/O memory space\n");
47110c18bfSDaniel Golle 		return -ENXIO;
48110c18bfSDaniel Golle 	}
49110c18bfSDaniel Golle 
50110c18bfSDaniel Golle 	sw_regmap_config = devm_kzalloc(&pdev->dev, sizeof(*sw_regmap_config), GFP_KERNEL);
51110c18bfSDaniel Golle 	if (!sw_regmap_config)
52110c18bfSDaniel Golle 		return -ENOMEM;
53110c18bfSDaniel Golle 
54110c18bfSDaniel Golle 	sw_regmap_config->name = "switch";
55110c18bfSDaniel Golle 	sw_regmap_config->reg_bits = 16;
56110c18bfSDaniel Golle 	sw_regmap_config->val_bits = 32;
57110c18bfSDaniel Golle 	sw_regmap_config->reg_stride = 4;
58110c18bfSDaniel Golle 	sw_regmap_config->max_register = MT7530_CREV;
59110c18bfSDaniel Golle 	priv->regmap = devm_regmap_init_mmio(&pdev->dev, base_addr, sw_regmap_config);
60110c18bfSDaniel Golle 	if (IS_ERR(priv->regmap))
61110c18bfSDaniel Golle 		return PTR_ERR(priv->regmap);
62110c18bfSDaniel Golle 
63110c18bfSDaniel Golle 	return dsa_register_switch(priv->ds);
64110c18bfSDaniel Golle }
65110c18bfSDaniel Golle 
66110c18bfSDaniel Golle static int
mt7988_remove(struct platform_device * pdev)67110c18bfSDaniel Golle mt7988_remove(struct platform_device *pdev)
68110c18bfSDaniel Golle {
69110c18bfSDaniel Golle 	struct mt7530_priv *priv = platform_get_drvdata(pdev);
70110c18bfSDaniel Golle 
71110c18bfSDaniel Golle 	if (priv)
72110c18bfSDaniel Golle 		mt7530_remove_common(priv);
73110c18bfSDaniel Golle 
74110c18bfSDaniel Golle 	return 0;
75110c18bfSDaniel Golle }
76110c18bfSDaniel Golle 
mt7988_shutdown(struct platform_device * pdev)77110c18bfSDaniel Golle static void mt7988_shutdown(struct platform_device *pdev)
78110c18bfSDaniel Golle {
79110c18bfSDaniel Golle 	struct mt7530_priv *priv = platform_get_drvdata(pdev);
80110c18bfSDaniel Golle 
81110c18bfSDaniel Golle 	if (!priv)
82110c18bfSDaniel Golle 		return;
83110c18bfSDaniel Golle 
84110c18bfSDaniel Golle 	dsa_switch_shutdown(priv->ds);
85110c18bfSDaniel Golle 
86110c18bfSDaniel Golle 	dev_set_drvdata(&pdev->dev, NULL);
87110c18bfSDaniel Golle }
88110c18bfSDaniel Golle 
89110c18bfSDaniel Golle static struct platform_driver mt7988_platform_driver = {
90110c18bfSDaniel Golle 	.probe  = mt7988_probe,
91110c18bfSDaniel Golle 	.remove = mt7988_remove,
92110c18bfSDaniel Golle 	.shutdown = mt7988_shutdown,
93110c18bfSDaniel Golle 	.driver = {
94110c18bfSDaniel Golle 		.name = "mt7530-mmio",
95110c18bfSDaniel Golle 		.of_match_table = mt7988_of_match,
96110c18bfSDaniel Golle 	},
97110c18bfSDaniel Golle };
98110c18bfSDaniel Golle module_platform_driver(mt7988_platform_driver);
99110c18bfSDaniel Golle 
100110c18bfSDaniel Golle MODULE_AUTHOR("Daniel Golle <daniel@makrotopia.org>");
101110c18bfSDaniel Golle MODULE_DESCRIPTION("Driver for Mediatek MT7530 Switch (MMIO)");
102110c18bfSDaniel Golle MODULE_LICENSE("GPL");
103