1 // SPDX-License-Identifier: GPL-2.0
3 * GPIO-controlled multiplexer driver
5 * Copyright (C) 2017 Axentia Technologies AB
10 #include <linux/err.h>
11 #include <linux/gpio/consumer.h>
12 #include <linux/module.h>
13 #include <linux/mux/driver.h>
14 #include <linux/of_platform.h>
15 #include <linux/platform_device.h>
16 #include <linux/property.h>
19 struct gpio_descs *gpios;
23 static int mux_gpio_set(struct mux_control *mux, int state)
25 struct mux_gpio *mux_gpio = mux_chip_priv(mux->chip);
28 for (i = 0; i < mux_gpio->gpios->ndescs; i++)
29 mux_gpio->val[i] = (state >> i) & 1;
31 gpiod_set_array_value_cansleep(mux_gpio->gpios->ndescs,
32 mux_gpio->gpios->desc,
38 static const struct mux_control_ops mux_gpio_ops = {
42 static const struct of_device_id mux_gpio_dt_ids[] = {
43 { .compatible = "gpio-mux", },
46 MODULE_DEVICE_TABLE(of, mux_gpio_dt_ids);
48 static int mux_gpio_probe(struct platform_device *pdev)
50 struct device *dev = &pdev->dev;
51 struct mux_chip *mux_chip;
52 struct mux_gpio *mux_gpio;
57 pins = gpiod_count(dev, "mux");
61 mux_chip = devm_mux_chip_alloc(dev, 1, sizeof(*mux_gpio) +
62 pins * sizeof(*mux_gpio->val));
64 return PTR_ERR(mux_chip);
66 mux_gpio = mux_chip_priv(mux_chip);
67 mux_gpio->val = (int *)(mux_gpio + 1);
68 mux_chip->ops = &mux_gpio_ops;
70 mux_gpio->gpios = devm_gpiod_get_array(dev, "mux", GPIOD_OUT_LOW);
71 if (IS_ERR(mux_gpio->gpios)) {
72 ret = PTR_ERR(mux_gpio->gpios);
73 if (ret != -EPROBE_DEFER)
74 dev_err(dev, "failed to get gpios\n");
77 WARN_ON(pins != mux_gpio->gpios->ndescs);
78 mux_chip->mux->states = 1 << pins;
80 ret = device_property_read_u32(dev, "idle-state", (u32 *)&idle_state);
81 if (ret >= 0 && idle_state != MUX_IDLE_AS_IS) {
82 if (idle_state < 0 || idle_state >= mux_chip->mux->states) {
83 dev_err(dev, "invalid idle-state %u\n", idle_state);
87 mux_chip->mux->idle_state = idle_state;
90 ret = devm_mux_chip_register(dev, mux_chip);
94 dev_info(dev, "%u-way mux-controller registered\n",
95 mux_chip->mux->states);
100 static struct platform_driver mux_gpio_driver = {
103 .of_match_table = of_match_ptr(mux_gpio_dt_ids),
105 .probe = mux_gpio_probe,
107 module_platform_driver(mux_gpio_driver);
109 MODULE_DESCRIPTION("GPIO-controlled multiplexer driver");
111 MODULE_LICENSE("GPL v2");