netfilter; Add some missing default cases to switch statements in nft_reject.
[deliverable/linux.git] / drivers / net / phy / mdio-mux-gpio.c
CommitLineData
416912a1
DD
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>
416912a1
DD
13#include <linux/phy.h>
14#include <linux/mdio-mux.h>
15#include <linux/of_gpio.h>
16
441e0026 17#define DRV_VERSION "1.1"
416912a1
DD
18#define DRV_DESCRIPTION "GPIO controlled MDIO bus multiplexer driver"
19
20#define MDIO_MUX_GPIO_MAX_BITS 8
21
22struct mdio_mux_gpio_state {
441e0026 23 struct gpio_desc *gpio[MDIO_MUX_GPIO_MAX_BITS];
416912a1
DD
24 unsigned int num_gpios;
25 void *mux_handle;
26};
27
28static int mdio_mux_gpio_switch_fn(int current_child, int desired_child,
29 void *data)
30{
441e0026 31 int values[MDIO_MUX_GPIO_MAX_BITS];
416912a1
DD
32 unsigned int n;
33 struct mdio_mux_gpio_state *s = data;
34
35 if (current_child == desired_child)
36 return 0;
37
416912a1 38 for (n = 0; n < s->num_gpios; n++) {
441e0026 39 values[n] = (desired_child >> n) & 1;
416912a1 40 }
441e0026 41 gpiod_set_array_cansleep(s->num_gpios, s->gpio, values);
416912a1
DD
42
43 return 0;
44}
45
633d1594 46static int mdio_mux_gpio_probe(struct platform_device *pdev)
416912a1 47{
416912a1 48 struct mdio_mux_gpio_state *s;
e80beb27 49 int num_gpios;
416912a1
DD
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);
e80beb27 57 if (num_gpios <= 0 || num_gpios > MDIO_MUX_GPIO_MAX_BITS)
416912a1
DD
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; ) {
441e0026
RI
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);
416912a1
DD
71 goto err;
72 }
73 s->gpio[n] = gpio;
416912a1 74 n++;
416912a1
DD
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 }
84err:
85 while (n) {
86 n--;
441e0026 87 gpiod_put(s->gpio[n]);
416912a1 88 }
416912a1
DD
89 return r;
90}
91
633d1594 92static int mdio_mux_gpio_remove(struct platform_device *pdev)
416912a1 93{
441e0026 94 unsigned int n;
1b0e53a8 95 struct mdio_mux_gpio_state *s = dev_get_platdata(&pdev->dev);
416912a1 96 mdio_mux_uninit(s->mux_handle);
441e0026
RI
97 for (n = 0; n < s->num_gpios; n++)
98 gpiod_put(s->gpio[n]);
416912a1
DD
99 return 0;
100}
101
d8a7dadb 102static const struct of_device_id mdio_mux_gpio_match[] = {
416912a1
DD
103 {
104 .compatible = "mdio-mux-gpio",
105 },
106 {
107 /* Legacy compatible property. */
108 .compatible = "cavium,mdio-mux-sn74cbtlv3253",
109 },
110 {},
111};
112MODULE_DEVICE_TABLE(of, mdio_mux_gpio_match);
113
114static struct platform_driver mdio_mux_gpio_driver = {
115 .driver = {
116 .name = "mdio-mux-gpio",
416912a1
DD
117 .of_match_table = mdio_mux_gpio_match,
118 },
119 .probe = mdio_mux_gpio_probe,
633d1594 120 .remove = mdio_mux_gpio_remove,
416912a1
DD
121};
122
123module_platform_driver(mdio_mux_gpio_driver);
124
125MODULE_DESCRIPTION(DRV_DESCRIPTION);
126MODULE_VERSION(DRV_VERSION);
127MODULE_AUTHOR("David Daney");
128MODULE_LICENSE("GPL");
This page took 0.246252 seconds and 5 git commands to generate.