Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / clk / actions / owl-reset.h
bloba947ffcb5a0269f92f66ff5acc19697d0a3c67f9
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 //
3 // Actions Semi Owl SoCs Reset Management Unit driver
4 //
5 // Copyright (c) 2018 Linaro Ltd.
6 // Author: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
8 #ifndef _OWL_RESET_H_
9 #define _OWL_RESET_H_
11 #include <linux/reset-controller.h>
13 struct owl_reset_map {
14 u32 reg;
15 u32 bit;
18 struct owl_reset {
19 struct reset_controller_dev rcdev;
20 const struct owl_reset_map *reset_map;
21 struct regmap *regmap;
24 static inline struct owl_reset *to_owl_reset(struct reset_controller_dev *rcdev)
26 return container_of(rcdev, struct owl_reset, rcdev);
29 extern const struct reset_control_ops owl_reset_ops;
31 #endif /* _OWL_RESET_H_ */