blob: 919949960a108bf7dcd8cc22856095b043a448d0 [file] [log] [blame]
David Daney416912a2012-05-02 15:16:39 +00001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2011, 2012 Cavium, Inc.
7 */
8
9#include <linux/platform_device.h>
10#include <linux/device.h>
11#include <linux/of_mdio.h>
12#include <linux/module.h>
David Daney416912a2012-05-02 15:16:39 +000013#include <linux/phy.h>
14#include <linux/mdio-mux.h>
Rojhalat Ibrahim33df10e2015-04-27 10:37:31 +020015#include <linux/gpio/consumer.h>
David Daney416912a2012-05-02 15:16:39 +000016
Rojhalat Ibrahim441e0022014-11-25 10:31:18 +010017#define DRV_VERSION "1.1"
David Daney416912a2012-05-02 15:16:39 +000018#define DRV_DESCRIPTION "GPIO controlled MDIO bus multiplexer driver"
19
David Daney416912a2012-05-02 15:16:39 +000020struct mdio_mux_gpio_state {
Rojhalat Ibrahim33df10e2015-04-27 10:37:31 +020021 struct gpio_descs *gpios;
David Daney416912a2012-05-02 15:16:39 +000022 void *mux_handle;
23};
24
25static int mdio_mux_gpio_switch_fn(int current_child, int desired_child,
26 void *data)
27{
David Daney416912a2012-05-02 15:16:39 +000028 struct mdio_mux_gpio_state *s = data;
Rojhalat Ibrahim33df10e2015-04-27 10:37:31 +020029 int values[s->gpios->ndescs];
30 unsigned int n;
David Daney416912a2012-05-02 15:16:39 +000031
32 if (current_child == desired_child)
33 return 0;
34
Rojhalat Ibrahim33df10e2015-04-27 10:37:31 +020035 for (n = 0; n < s->gpios->ndescs; n++)
Rojhalat Ibrahim441e0022014-11-25 10:31:18 +010036 values[n] = (desired_child >> n) & 1;
Rojhalat Ibrahim33df10e2015-04-27 10:37:31 +020037
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +020038 gpiod_set_array_value_cansleep(s->gpios->ndescs, s->gpios->desc,
39 values);
David Daney416912a2012-05-02 15:16:39 +000040
41 return 0;
42}
43
Bill Pemberton633d1592012-12-03 09:24:14 -050044static int mdio_mux_gpio_probe(struct platform_device *pdev)
David Daney416912a2012-05-02 15:16:39 +000045{
David Daney416912a2012-05-02 15:16:39 +000046 struct mdio_mux_gpio_state *s;
David Daney416912a2012-05-02 15:16:39 +000047 int r;
48
David Daney416912a2012-05-02 15:16:39 +000049 s = devm_kzalloc(&pdev->dev, sizeof(*s), GFP_KERNEL);
50 if (!s)
51 return -ENOMEM;
52
Rojhalat Ibrahim33df10e2015-04-27 10:37:31 +020053 s->gpios = gpiod_get_array(&pdev->dev, NULL, GPIOD_OUT_LOW);
54 if (IS_ERR(s->gpios))
55 return PTR_ERR(s->gpios);
David Daney416912a2012-05-02 15:16:39 +000056
57 r = mdio_mux_init(&pdev->dev,
Pramod Kumarf20e6652016-06-10 11:03:45 +053058 mdio_mux_gpio_switch_fn, &s->mux_handle, s, NULL);
David Daney416912a2012-05-02 15:16:39 +000059
Rojhalat Ibrahim33df10e2015-04-27 10:37:31 +020060 if (r != 0) {
61 gpiod_put_array(s->gpios);
62 return r;
David Daney416912a2012-05-02 15:16:39 +000063 }
Rojhalat Ibrahim33df10e2015-04-27 10:37:31 +020064
65 pdev->dev.platform_data = s;
66 return 0;
David Daney416912a2012-05-02 15:16:39 +000067}
68
Bill Pemberton633d1592012-12-03 09:24:14 -050069static int mdio_mux_gpio_remove(struct platform_device *pdev)
David Daney416912a2012-05-02 15:16:39 +000070{
Jingoo Han1b0e53a2013-08-30 14:09:26 +090071 struct mdio_mux_gpio_state *s = dev_get_platdata(&pdev->dev);
David Daney416912a2012-05-02 15:16:39 +000072 mdio_mux_uninit(s->mux_handle);
Rojhalat Ibrahim33df10e2015-04-27 10:37:31 +020073 gpiod_put_array(s->gpios);
David Daney416912a2012-05-02 15:16:39 +000074 return 0;
75}
76
Fabian Frederickd8a7dad2015-03-17 19:40:23 +010077static const struct of_device_id mdio_mux_gpio_match[] = {
David Daney416912a2012-05-02 15:16:39 +000078 {
79 .compatible = "mdio-mux-gpio",
80 },
81 {
82 /* Legacy compatible property. */
83 .compatible = "cavium,mdio-mux-sn74cbtlv3253",
84 },
85 {},
86};
87MODULE_DEVICE_TABLE(of, mdio_mux_gpio_match);
88
89static struct platform_driver mdio_mux_gpio_driver = {
90 .driver = {
91 .name = "mdio-mux-gpio",
David Daney416912a2012-05-02 15:16:39 +000092 .of_match_table = mdio_mux_gpio_match,
93 },
94 .probe = mdio_mux_gpio_probe,
Bill Pemberton633d1592012-12-03 09:24:14 -050095 .remove = mdio_mux_gpio_remove,
David Daney416912a2012-05-02 15:16:39 +000096};
97
98module_platform_driver(mdio_mux_gpio_driver);
99
100MODULE_DESCRIPTION(DRV_DESCRIPTION);
101MODULE_VERSION(DRV_VERSION);
102MODULE_AUTHOR("David Daney");
103MODULE_LICENSE("GPL");