summaryrefslogtreecommitdiff
path: root/drivers/clk/msm/reset.h
blob: 538a432fed600a0f26445891340b465c1a97d254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * Copyright (c) 2016, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef __DRIVERS_CLK_RESET_H
#define __DRIVERS_CLK_RESET_H

#include <linux/platform_device.h>
#include <linux/reset-controller.h>

struct msm_reset_map {
	unsigned int reg;
	u8 bit;
};

struct msm_reset_controller {
	const struct msm_reset_map *reset_map;
	struct reset_controller_dev rcdev;
	void __iomem  *base;
};

#define to_msm_reset_controller(r) \
	container_of(r, struct msm_reset_controller, rcdev)

extern struct reset_control_ops msm_reset_ops;

int msm_reset_controller_register(struct platform_device *pdev,
		const struct msm_reset_map *map, unsigned int nr_resets,
		void __iomem *virt_base);
#endif