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> |
| 15 | #include <linux/of_gpio.h> |
| 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 | |
| 20 | #define MDIO_MUX_GPIO_MAX_BITS 8 |
| 21 | |
| 22 | struct mdio_mux_gpio_state { |
Rojhalat Ibrahim | 441e002 | 2014-11-25 10:31:18 +0100 | [diff] [blame] | 23 | struct gpio_desc *gpio[MDIO_MUX_GPIO_MAX_BITS]; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 24 | unsigned int num_gpios; |
| 25 | void *mux_handle; |
| 26 | }; |
| 27 | |
| 28 | static int mdio_mux_gpio_switch_fn(int current_child, int desired_child, |
| 29 | void *data) |
| 30 | { |
Rojhalat Ibrahim | 441e002 | 2014-11-25 10:31:18 +0100 | [diff] [blame] | 31 | int values[MDIO_MUX_GPIO_MAX_BITS]; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 32 | unsigned int n; |
| 33 | struct mdio_mux_gpio_state *s = data; |
| 34 | |
| 35 | if (current_child == desired_child) |
| 36 | return 0; |
| 37 | |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 38 | for (n = 0; n < s->num_gpios; n++) { |
Rojhalat Ibrahim | 441e002 | 2014-11-25 10:31:18 +0100 | [diff] [blame] | 39 | values[n] = (desired_child >> n) & 1; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 40 | } |
Rojhalat Ibrahim | 441e002 | 2014-11-25 10:31:18 +0100 | [diff] [blame] | 41 | gpiod_set_array_cansleep(s->num_gpios, s->gpio, values); |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 42 | |
| 43 | return 0; |
| 44 | } |
| 45 | |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 46 | static int mdio_mux_gpio_probe(struct platform_device *pdev) |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 47 | { |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 48 | struct mdio_mux_gpio_state *s; |
Grant Likely | e80beb2 | 2013-02-12 17:48:37 +0000 | [diff] [blame] | 49 | int num_gpios; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 50 | unsigned int n; |
| 51 | int r; |
| 52 | |
| 53 | if (!pdev->dev.of_node) |
| 54 | return -ENODEV; |
| 55 | |
| 56 | num_gpios = of_gpio_count(pdev->dev.of_node); |
Grant Likely | e80beb2 | 2013-02-12 17:48:37 +0000 | [diff] [blame] | 57 | if (num_gpios <= 0 || num_gpios > MDIO_MUX_GPIO_MAX_BITS) |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 58 | return -ENODEV; |
| 59 | |
| 60 | s = devm_kzalloc(&pdev->dev, sizeof(*s), GFP_KERNEL); |
| 61 | if (!s) |
| 62 | return -ENOMEM; |
| 63 | |
| 64 | s->num_gpios = num_gpios; |
| 65 | |
| 66 | for (n = 0; n < num_gpios; ) { |
Rojhalat Ibrahim | 441e002 | 2014-11-25 10:31:18 +0100 | [diff] [blame] | 67 | struct gpio_desc *gpio = gpiod_get_index(&pdev->dev, NULL, n, |
| 68 | GPIOD_OUT_LOW); |
| 69 | if (IS_ERR(gpio)) { |
| 70 | r = PTR_ERR(gpio); |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 71 | goto err; |
| 72 | } |
| 73 | s->gpio[n] = gpio; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 74 | n++; |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | r = mdio_mux_init(&pdev->dev, |
| 78 | mdio_mux_gpio_switch_fn, &s->mux_handle, s); |
| 79 | |
| 80 | if (r == 0) { |
| 81 | pdev->dev.platform_data = s; |
| 82 | return 0; |
| 83 | } |
| 84 | err: |
| 85 | while (n) { |
| 86 | n--; |
Rojhalat Ibrahim | 441e002 | 2014-11-25 10:31:18 +0100 | [diff] [blame] | 87 | gpiod_put(s->gpio[n]); |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 88 | } |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 89 | return r; |
| 90 | } |
| 91 | |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 92 | static int mdio_mux_gpio_remove(struct platform_device *pdev) |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 93 | { |
Rojhalat Ibrahim | 441e002 | 2014-11-25 10:31:18 +0100 | [diff] [blame] | 94 | unsigned int n; |
Jingoo Han | 1b0e53a | 2013-08-30 14:09:26 +0900 | [diff] [blame] | 95 | struct mdio_mux_gpio_state *s = dev_get_platdata(&pdev->dev); |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 96 | mdio_mux_uninit(s->mux_handle); |
Rojhalat Ibrahim | 441e002 | 2014-11-25 10:31:18 +0100 | [diff] [blame] | 97 | for (n = 0; n < s->num_gpios; n++) |
| 98 | gpiod_put(s->gpio[n]); |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 99 | return 0; |
| 100 | } |
| 101 | |
Fabian Frederick | d8a7dad | 2015-03-17 19:40:23 +0100 | [diff] [blame] | 102 | static const struct of_device_id mdio_mux_gpio_match[] = { |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 103 | { |
| 104 | .compatible = "mdio-mux-gpio", |
| 105 | }, |
| 106 | { |
| 107 | /* Legacy compatible property. */ |
| 108 | .compatible = "cavium,mdio-mux-sn74cbtlv3253", |
| 109 | }, |
| 110 | {}, |
| 111 | }; |
| 112 | MODULE_DEVICE_TABLE(of, mdio_mux_gpio_match); |
| 113 | |
| 114 | static struct platform_driver mdio_mux_gpio_driver = { |
| 115 | .driver = { |
| 116 | .name = "mdio-mux-gpio", |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 117 | .of_match_table = mdio_mux_gpio_match, |
| 118 | }, |
| 119 | .probe = mdio_mux_gpio_probe, |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 120 | .remove = mdio_mux_gpio_remove, |
David Daney | 416912a | 2012-05-02 15:16:39 +0000 | [diff] [blame] | 121 | }; |
| 122 | |
| 123 | module_platform_driver(mdio_mux_gpio_driver); |
| 124 | |
| 125 | MODULE_DESCRIPTION(DRV_DESCRIPTION); |
| 126 | MODULE_VERSION(DRV_VERSION); |
| 127 | MODULE_AUTHOR("David Daney"); |
| 128 | MODULE_LICENSE("GPL"); |