#include <linux/mfd/syscon.h>
#include <linux/of_address.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/reset-controller.h>
#define BERLIN_MAX_RESETS 32
#define to_berlin_reset_priv(p) \
container_of((p), struct berlin_reset_priv, rcdev)
struct berlin_reset_priv {
struct reset_controller_dev rcdev;
static int berlin_reset_reset(struct reset_controller_dev *rcdev,
struct berlin_reset_priv *priv = to_berlin_reset_priv(rcdev);
int mask = BIT(id & 0x1f);
regmap_write(priv->regmap, offset, mask);
static const struct reset_control_ops berlin_reset_ops = {
.reset = berlin_reset_reset,
static int berlin_reset_xlate(struct reset_controller_dev *rcdev,
const struct of_phandle_args *reset_spec)
offset = reset_spec->args[0];
bit = reset_spec->args[1];
if (bit >= BERLIN_MAX_RESETS)