dm writecache: add cond_resched to loop in persistent_memory_claim()
[linux/fpc-iii.git] / drivers / reset / sti / reset-syscfg.c
blob91215bb88f62f29e8adc4cd4b4de22bc705b087d
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright (C) 2013 STMicroelectronics Limited
4 * Author: Stephen Gallimore <stephen.gallimore@st.com>
6 * Inspired by mach-imx/src.c
7 */
8 #include <linux/kernel.h>
9 #include <linux/platform_device.h>
10 #include <linux/module.h>
11 #include <linux/err.h>
12 #include <linux/types.h>
13 #include <linux/of_device.h>
14 #include <linux/regmap.h>
15 #include <linux/mfd/syscon.h>
17 #include "reset-syscfg.h"
19 /**
20 * Reset channel regmap configuration
22 * @reset: regmap field for the channel's reset bit.
23 * @ack: regmap field for the channel's ack bit (optional).
25 struct syscfg_reset_channel {
26 struct regmap_field *reset;
27 struct regmap_field *ack;
30 /**
31 * A reset controller which groups together a set of related reset bits, which
32 * may be located in different system configuration registers.
34 * @rst: base reset controller structure.
35 * @active_low: are the resets in this controller active low, i.e. clearing
36 * the reset bit puts the hardware into reset.
37 * @channels: An array of reset channels for this controller.
39 struct syscfg_reset_controller {
40 struct reset_controller_dev rst;
41 bool active_low;
42 struct syscfg_reset_channel *channels;
45 #define to_syscfg_reset_controller(_rst) \
46 container_of(_rst, struct syscfg_reset_controller, rst)
48 static int syscfg_reset_program_hw(struct reset_controller_dev *rcdev,
49 unsigned long idx, int assert)
51 struct syscfg_reset_controller *rst = to_syscfg_reset_controller(rcdev);
52 const struct syscfg_reset_channel *ch;
53 u32 ctrl_val = rst->active_low ? !assert : !!assert;
54 int err;
56 if (idx >= rcdev->nr_resets)
57 return -EINVAL;
59 ch = &rst->channels[idx];
61 err = regmap_field_write(ch->reset, ctrl_val);
62 if (err)
63 return err;
65 if (ch->ack) {
66 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
67 u32 ack_val;
69 while (true) {
70 err = regmap_field_read(ch->ack, &ack_val);
71 if (err)
72 return err;
74 if (ack_val == ctrl_val)
75 break;
77 if (time_after(jiffies, timeout))
78 return -ETIME;
80 cpu_relax();
84 return 0;
87 static int syscfg_reset_assert(struct reset_controller_dev *rcdev,
88 unsigned long idx)
90 return syscfg_reset_program_hw(rcdev, idx, true);
93 static int syscfg_reset_deassert(struct reset_controller_dev *rcdev,
94 unsigned long idx)
96 return syscfg_reset_program_hw(rcdev, idx, false);
99 static int syscfg_reset_dev(struct reset_controller_dev *rcdev,
100 unsigned long idx)
102 int err;
104 err = syscfg_reset_assert(rcdev, idx);
105 if (err)
106 return err;
108 return syscfg_reset_deassert(rcdev, idx);
111 static int syscfg_reset_status(struct reset_controller_dev *rcdev,
112 unsigned long idx)
114 struct syscfg_reset_controller *rst = to_syscfg_reset_controller(rcdev);
115 const struct syscfg_reset_channel *ch;
116 u32 ret_val = 0;
117 int err;
119 if (idx >= rcdev->nr_resets)
120 return -EINVAL;
122 ch = &rst->channels[idx];
123 if (ch->ack)
124 err = regmap_field_read(ch->ack, &ret_val);
125 else
126 err = regmap_field_read(ch->reset, &ret_val);
127 if (err)
128 return err;
130 return rst->active_low ? !ret_val : !!ret_val;
133 static const struct reset_control_ops syscfg_reset_ops = {
134 .reset = syscfg_reset_dev,
135 .assert = syscfg_reset_assert,
136 .deassert = syscfg_reset_deassert,
137 .status = syscfg_reset_status,
140 static int syscfg_reset_controller_register(struct device *dev,
141 const struct syscfg_reset_controller_data *data)
143 struct syscfg_reset_controller *rc;
144 int i, err;
146 rc = devm_kzalloc(dev, sizeof(*rc), GFP_KERNEL);
147 if (!rc)
148 return -ENOMEM;
150 rc->channels = devm_kcalloc(dev, data->nr_channels,
151 sizeof(*rc->channels), GFP_KERNEL);
152 if (!rc->channels)
153 return -ENOMEM;
155 rc->rst.ops = &syscfg_reset_ops,
156 rc->rst.of_node = dev->of_node;
157 rc->rst.nr_resets = data->nr_channels;
158 rc->active_low = data->active_low;
160 for (i = 0; i < data->nr_channels; i++) {
161 struct regmap *map;
162 struct regmap_field *f;
163 const char *compatible = data->channels[i].compatible;
165 map = syscon_regmap_lookup_by_compatible(compatible);
166 if (IS_ERR(map))
167 return PTR_ERR(map);
169 f = devm_regmap_field_alloc(dev, map, data->channels[i].reset);
170 if (IS_ERR(f))
171 return PTR_ERR(f);
173 rc->channels[i].reset = f;
175 if (!data->wait_for_ack)
176 continue;
178 f = devm_regmap_field_alloc(dev, map, data->channels[i].ack);
179 if (IS_ERR(f))
180 return PTR_ERR(f);
182 rc->channels[i].ack = f;
185 err = reset_controller_register(&rc->rst);
186 if (!err)
187 dev_info(dev, "registered\n");
189 return err;
192 int syscfg_reset_probe(struct platform_device *pdev)
194 struct device *dev = pdev ? &pdev->dev : NULL;
195 const struct of_device_id *match;
197 if (!dev || !dev->driver)
198 return -ENODEV;
200 match = of_match_device(dev->driver->of_match_table, dev);
201 if (!match || !match->data)
202 return -EINVAL;
204 return syscfg_reset_controller_register(dev, match->data);