2 * Copyright (c) 2016-2017 Linaro Ltd.
3 * Copyright (c) 2016-2017 HiSilicon Technologies Co., Ltd.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 #include <linux/kernel.h>
11 #include <linux/mfd/syscon.h>
12 #include <linux/module.h>
13 #include <linux/of_device.h>
14 #include <linux/platform_device.h>
15 #include <linux/regmap.h>
16 #include <linux/reset-controller.h>
18 struct hi3660_reset_controller {
19 struct reset_controller_dev rst;
23 #define to_hi3660_reset_controller(_rst) \
24 container_of(_rst, struct hi3660_reset_controller, rst)
26 static int hi3660_reset_program_hw(struct reset_controller_dev *rcdev,
27 unsigned long idx, bool assert)
29 struct hi3660_reset_controller *rc = to_hi3660_reset_controller(rcdev);
30 unsigned int offset = idx >> 8;
31 unsigned int mask = BIT(idx & 0x1f);
34 return regmap_write(rc->map, offset, mask);
36 return regmap_write(rc->map, offset + 4, mask);
39 static int hi3660_reset_assert(struct reset_controller_dev *rcdev,
42 return hi3660_reset_program_hw(rcdev, idx, true);
45 static int hi3660_reset_deassert(struct reset_controller_dev *rcdev,
48 return hi3660_reset_program_hw(rcdev, idx, false);
51 static int hi3660_reset_dev(struct reset_controller_dev *rcdev,
56 err = hi3660_reset_assert(rcdev, idx);
60 return hi3660_reset_deassert(rcdev, idx);
63 static struct reset_control_ops hi3660_reset_ops = {
64 .reset = hi3660_reset_dev,
65 .assert = hi3660_reset_assert,
66 .deassert = hi3660_reset_deassert,
69 static int hi3660_reset_xlate(struct reset_controller_dev *rcdev,
70 const struct of_phandle_args *reset_spec)
72 unsigned int offset, bit;
74 offset = reset_spec->args[0];
75 bit = reset_spec->args[1];
77 return (offset << 8) | bit;
80 static int hi3660_reset_probe(struct platform_device *pdev)
82 struct hi3660_reset_controller *rc;
83 struct device_node *np = pdev->dev.of_node;
84 struct device *dev = &pdev->dev;
86 rc = devm_kzalloc(dev, sizeof(*rc), GFP_KERNEL);
90 rc->map = syscon_regmap_lookup_by_phandle(np, "hisi,rst-syscon");
91 if (IS_ERR(rc->map)) {
92 dev_err(dev, "failed to get hi3660,rst-syscon\n");
93 return PTR_ERR(rc->map);
96 rc->rst.ops = &hi3660_reset_ops,
98 rc->rst.of_reset_n_cells = 2;
99 rc->rst.of_xlate = hi3660_reset_xlate;
101 return reset_controller_register(&rc->rst);
104 static const struct of_device_id hi3660_reset_match[] = {
105 { .compatible = "hisilicon,hi3660-reset", },
108 MODULE_DEVICE_TABLE(of, hi3660_reset_match);
110 static struct platform_driver hi3660_reset_driver = {
111 .probe = hi3660_reset_probe,
113 .name = "hi3660-reset",
114 .of_match_table = hi3660_reset_match,
118 static int __init hi3660_reset_init(void)
120 return platform_driver_register(&hi3660_reset_driver);
122 arch_initcall(hi3660_reset_init);
124 MODULE_LICENSE("GPL");
125 MODULE_ALIAS("platform:hi3660-reset");
126 MODULE_DESCRIPTION("HiSilicon Hi3660 Reset Driver");