David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 1 | /* |
| 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 Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 13 | #include <linux/phy.h> |
| 14 | #include <linux/mdio-mux.h> |
Rojhalat Ibrahim | 33df10e | 2015-04-27 10:37:31 +0200 | [diff] [blame] | 15 | #include <linux/gpio/consumer.h> |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 16 | |
Rojhalat Ibrahim | 441e002 | 2014-11-25 10:31:18 +0100 | [diff] [blame] | 17 | #define DRV_VERSION "1.1" |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 18 | #define DRV_DESCRIPTION "GPIO controlled MDIO bus multiplexer driver" |
| 19 | |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 20 | struct mdio_mux_gpio_state { |
Rojhalat Ibrahim | 33df10e | 2015-04-27 10:37:31 +0200 | [diff] [blame] | 21 | struct gpio_descs *gpios; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 22 | void *mux_handle; |
| 23 | }; |
| 24 | |
| 25 | static int mdio_mux_gpio_switch_fn(int current_child, int desired_child, |
| 26 | void *data) |
| 27 | { |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 28 | struct mdio_mux_gpio_state *s = data; |
Rojhalat Ibrahim | 33df10e | 2015-04-27 10:37:31 +0200 | [diff] [blame] | 29 | int values[s->gpios->ndescs]; |
| 30 | unsigned int n; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 31 | |
| 32 | if (current_child == desired_child) |
| 33 | return 0; |
| 34 | |
Rojhalat Ibrahim | 33df10e | 2015-04-27 10:37:31 +0200 | [diff] [blame] | 35 | for (n = 0; n < s->gpios->ndescs; n++) |
Rojhalat Ibrahim | 441e002 | 2014-11-25 10:31:18 +0100 | [diff] [blame] | 36 | values[n] = (desired_child >> n) & 1; |
Rojhalat Ibrahim | 33df10e | 2015-04-27 10:37:31 +0200 | [diff] [blame] | 37 | |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 38 | gpiod_set_array_value_cansleep(s->gpios->ndescs, s->gpios->desc, |
| 39 | values); |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 40 | |
| 41 | return 0; |
| 42 | } |
| 43 | |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 44 | static int mdio_mux_gpio_probe(struct platform_device *pdev) |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 45 | { |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 46 | struct mdio_mux_gpio_state *s; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 47 | int r; |
| 48 | |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 49 | s = devm_kzalloc(&pdev->dev, sizeof(*s), GFP_KERNEL); |
| 50 | if (!s) |
| 51 | return -ENOMEM; |
| 52 | |
Rojhalat Ibrahim | 33df10e | 2015-04-27 10:37:31 +0200 | [diff] [blame] | 53 | s->gpios = gpiod_get_array(&pdev->dev, NULL, GPIOD_OUT_LOW); |
| 54 | if (IS_ERR(s->gpios)) |
| 55 | return PTR_ERR(s->gpios); |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 56 | |
Corentin Labbe | 5482a97 | 2017-09-04 18:30:14 +0200 | [diff] [blame] | 57 | r = mdio_mux_init(&pdev->dev, pdev->dev.of_node, |
Pramod Kumar | f20e665 | 2016-06-10 11:03:45 +0530 | [diff] [blame] | 58 | mdio_mux_gpio_switch_fn, &s->mux_handle, s, NULL); |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 59 | |
Rojhalat Ibrahim | 33df10e | 2015-04-27 10:37:31 +0200 | [diff] [blame] | 60 | if (r != 0) { |
| 61 | gpiod_put_array(s->gpios); |
| 62 | return r; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 63 | } |
Rojhalat Ibrahim | 33df10e | 2015-04-27 10:37:31 +0200 | [diff] [blame] | 64 | |
| 65 | pdev->dev.platform_data = s; |
| 66 | return 0; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 67 | } |
| 68 | |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 69 | static int mdio_mux_gpio_remove(struct platform_device *pdev) |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 70 | { |
Jingoo Han | 1b0e53a | 2013-08-30 14:09:26 +0900 | [diff] [blame] | 71 | struct mdio_mux_gpio_state *s = dev_get_platdata(&pdev->dev); |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 72 | mdio_mux_uninit(s->mux_handle); |
Rojhalat Ibrahim | 33df10e | 2015-04-27 10:37:31 +0200 | [diff] [blame] | 73 | gpiod_put_array(s->gpios); |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 74 | return 0; |
| 75 | } |
| 76 | |
Fabian Frederick | d8a7dad | 2015-03-17 19:40:23 +0100 | [diff] [blame] | 77 | static const struct of_device_id mdio_mux_gpio_match[] = { |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 78 | { |
| 79 | .compatible = "mdio-mux-gpio", |
| 80 | }, |
| 81 | { |
| 82 | /* Legacy compatible property. */ |
| 83 | .compatible = "cavium,mdio-mux-sn74cbtlv3253", |
| 84 | }, |
| 85 | {}, |
| 86 | }; |
| 87 | MODULE_DEVICE_TABLE(of, mdio_mux_gpio_match); |
| 88 | |
| 89 | static struct platform_driver mdio_mux_gpio_driver = { |
| 90 | .driver = { |
| 91 | .name = "mdio-mux-gpio", |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 92 | .of_match_table = mdio_mux_gpio_match, |
| 93 | }, |
| 94 | .probe = mdio_mux_gpio_probe, |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 95 | .remove = mdio_mux_gpio_remove, |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | module_platform_driver(mdio_mux_gpio_driver); |
| 99 | |
| 100 | MODULE_DESCRIPTION(DRV_DESCRIPTION); |
| 101 | MODULE_VERSION(DRV_VERSION); |
| 102 | MODULE_AUTHOR("David Daney"); |
| 103 | MODULE_LICENSE("GPL"); |