1 // SPDX-License-Identifier: GPL-2.0
3 * MMIO register bitfield-controlled multiplexer driver
5 * Copyright (C) 2017 Pengutronix, Philipp Zabel <kernel@pengutronix.de>
8 #include <linux/bitops.h>
10 #include <linux/mfd/syscon.h>
11 #include <linux/module.h>
12 #include <linux/mux/driver.h>
14 #include <linux/platform_device.h>
15 #include <linux/property.h>
16 #include <linux/regmap.h>
18 static int mux_mmio_set(struct mux_control *mux, int state)
20 struct regmap_field **fields = mux_chip_priv(mux->chip);
22 return regmap_field_write(fields[mux_control_get_index(mux)], state);
25 static const struct mux_control_ops mux_mmio_ops = {
29 static const struct of_device_id mux_mmio_dt_ids[] = {
30 { .compatible = "mmio-mux", },
31 { .compatible = "reg-mux", },
34 MODULE_DEVICE_TABLE(of, mux_mmio_dt_ids);
36 static int mux_mmio_probe(struct platform_device *pdev)
38 struct device *dev = &pdev->dev;
39 struct device_node *np = dev->of_node;
40 struct regmap_field **fields;
41 struct mux_chip *mux_chip;
42 struct regmap *regmap;
47 if (of_device_is_compatible(np, "mmio-mux"))
48 regmap = syscon_node_to_regmap(np->parent);
50 regmap = dev_get_regmap(dev->parent, NULL) ?: ERR_PTR(-ENODEV);
52 ret = PTR_ERR(regmap);
53 dev_err(dev, "failed to get regmap: %d\n", ret);
57 ret = of_property_count_u32_elems(np, "mux-reg-masks");
58 if (ret == 0 || ret % 2)
61 dev_err(dev, "mux-reg-masks property missing or invalid: %d\n",
67 mux_chip = devm_mux_chip_alloc(dev, num_fields, num_fields *
70 return PTR_ERR(mux_chip);
72 fields = mux_chip_priv(mux_chip);
74 for (i = 0; i < num_fields; i++) {
75 struct mux_control *mux = &mux_chip->mux[i];
76 struct reg_field field;
77 s32 idle_state = MUX_IDLE_AS_IS;
81 ret = of_property_read_u32_index(np, "mux-reg-masks",
84 ret = of_property_read_u32_index(np, "mux-reg-masks",
87 dev_err(dev, "bitfield %d: failed to read mux-reg-masks property: %d\n",
93 field.msb = fls(mask) - 1;
94 field.lsb = ffs(mask) - 1;
96 if (mask != GENMASK(field.msb, field.lsb)) {
97 dev_err(dev, "bitfield %d: invalid mask 0x%x\n",
102 fields[i] = devm_regmap_field_alloc(dev, regmap, field);
103 if (IS_ERR(fields[i])) {
104 ret = PTR_ERR(fields[i]);
105 dev_err(dev, "bitfield %d: failed allocate: %d\n",
110 bits = 1 + field.msb - field.lsb;
111 mux->states = 1 << bits;
113 of_property_read_u32_index(np, "idle-states", i,
115 if (idle_state != MUX_IDLE_AS_IS) {
116 if (idle_state < 0 || idle_state >= mux->states) {
117 dev_err(dev, "bitfield: %d: out of range idle state %d\n",
122 mux->idle_state = idle_state;
126 mux_chip->ops = &mux_mmio_ops;
128 return devm_mux_chip_register(dev, mux_chip);
131 static struct platform_driver mux_mmio_driver = {
134 .of_match_table = mux_mmio_dt_ids,
136 .probe = mux_mmio_probe,
138 module_platform_driver(mux_mmio_driver);
140 MODULE_DESCRIPTION("MMIO register bitfield-controlled multiplexer driver");
141 MODULE_AUTHOR("Philipp Zabel <p.zabel@pengutronix.de>");
142 MODULE_LICENSE("GPL v2");