2 * Copyright Intel Corporation (C) 2017. All Rights Reserved
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <http://www.gnu.org/licenses/>.
16 * Reset driver for Altera Arria10 MAX5 System Resource Chip
18 * Adapted from reset-socfpga.c
21 #include <linux/err.h>
22 #include <linux/mfd/altera-a10sr.h>
23 #include <linux/module.h>
25 #include <linux/platform_device.h>
26 #include <linux/reset-controller.h>
28 #include <dt-bindings/reset/altr,rst-mgr-a10sr.h>
31 struct reset_controller_dev rcdev
;
32 struct regmap
*regmap
;
35 static inline struct a10sr_reset
*to_a10sr_rst(struct reset_controller_dev
*rc
)
37 return container_of(rc
, struct a10sr_reset
, rcdev
);
40 static inline int a10sr_reset_shift(unsigned long id
)
43 case A10SR_RESET_ENET_HPS
:
45 case A10SR_RESET_PCIE
:
46 case A10SR_RESET_FILE
:
47 case A10SR_RESET_BQSPI
:
55 static int a10sr_reset_update(struct reset_controller_dev
*rcdev
,
56 unsigned long id
, bool assert)
58 struct a10sr_reset
*a10r
= to_a10sr_rst(rcdev
);
59 int offset
= a10sr_reset_shift(id
);
60 u8 mask
= ALTR_A10SR_REG_BIT_MASK(offset
);
61 int index
= ALTR_A10SR_HPS_RST_REG
+ ALTR_A10SR_REG_OFFSET(offset
);
63 return regmap_update_bits(a10r
->regmap
, index
, mask
, assert ? 0 : mask
);
66 static int a10sr_reset_assert(struct reset_controller_dev
*rcdev
,
69 return a10sr_reset_update(rcdev
, id
, true);
72 static int a10sr_reset_deassert(struct reset_controller_dev
*rcdev
,
75 return a10sr_reset_update(rcdev
, id
, false);
78 static int a10sr_reset_status(struct reset_controller_dev
*rcdev
,
82 struct a10sr_reset
*a10r
= to_a10sr_rst(rcdev
);
83 int offset
= a10sr_reset_shift(id
);
84 u8 mask
= ALTR_A10SR_REG_BIT_MASK(offset
);
85 int index
= ALTR_A10SR_HPS_RST_REG
+ ALTR_A10SR_REG_OFFSET(offset
);
88 ret
= regmap_read(a10r
->regmap
, index
, &value
);
92 return !!(value
& mask
);
95 static const struct reset_control_ops a10sr_reset_ops
= {
96 .assert = a10sr_reset_assert
,
97 .deassert
= a10sr_reset_deassert
,
98 .status
= a10sr_reset_status
,
101 static int a10sr_reset_probe(struct platform_device
*pdev
)
103 struct altr_a10sr
*a10sr
= dev_get_drvdata(pdev
->dev
.parent
);
104 struct a10sr_reset
*a10r
;
106 a10r
= devm_kzalloc(&pdev
->dev
, sizeof(struct a10sr_reset
),
111 a10r
->rcdev
.owner
= THIS_MODULE
;
112 a10r
->rcdev
.nr_resets
= A10SR_RESET_NUM
;
113 a10r
->rcdev
.ops
= &a10sr_reset_ops
;
114 a10r
->rcdev
.of_node
= pdev
->dev
.of_node
;
115 a10r
->regmap
= a10sr
->regmap
;
117 platform_set_drvdata(pdev
, a10r
);
119 return devm_reset_controller_register(&pdev
->dev
, &a10r
->rcdev
);
122 static const struct of_device_id a10sr_reset_of_match
[] = {
123 { .compatible
= "altr,a10sr-reset" },
126 MODULE_DEVICE_TABLE(of
, a10sr_reset_of_match
);
128 static struct platform_driver a10sr_reset_driver
= {
129 .probe
= a10sr_reset_probe
,
131 .name
= "altr_a10sr_reset",
134 module_platform_driver(a10sr_reset_driver
);
136 MODULE_AUTHOR("Thor Thayer <thor.thayer@linux.intel.com>");
137 MODULE_DESCRIPTION("Altera Arria10 System Resource Reset Controller Driver");
138 MODULE_LICENSE("GPL v2");