blob: 6d58b3cf131e6a95120d56505a62d5c4f96a0f4f [file] [log] [blame]
Duy Truong790f06d2013-02-13 16:38:12 -08001/* Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13
14#ifndef __ARCH_ARM_MACH_MSM_CLOCK_VOTER_H
15#define __ARCH_ARM_MACH_MSM_CLOCK_VOTER_H
16
Matt Wagantall33d01f52012-02-23 23:27:44 -080017#include <mach/clk-provider.h>
18
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070019struct clk_ops;
20extern struct clk_ops clk_ops_voter;
21
22struct clk_voter {
Vikram Mulukutlaa1b20072013-02-04 15:07:35 -080023 int is_branch;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070024 bool enabled;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070025 struct clk c;
26};
27
28static inline struct clk_voter *to_clk_voter(struct clk *clk)
29{
30 return container_of(clk, struct clk_voter, c);
31}
32
Vikram Mulukutlaa1b20072013-02-04 15:07:35 -080033#define __DEFINE_CLK_VOTER(clk_name, _parent, _default_rate, _is_branch) \
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070034 struct clk_voter clk_name = { \
Vikram Mulukutlaa1b20072013-02-04 15:07:35 -080035 .is_branch = (_is_branch), \
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070036 .c = { \
Saravana Kannan7a6532e2012-10-18 20:51:13 -070037 .parent = _parent, \
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070038 .dbg_name = #clk_name, \
39 .ops = &clk_ops_voter, \
Matt Wagantall35e78fc2012-04-05 14:18:44 -070040 .rate = _default_rate, \
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070041 CLK_INIT(clk_name.c), \
42 }, \
43 }
44
Vikram Mulukutlaa1b20072013-02-04 15:07:35 -080045#define DEFINE_CLK_VOTER(clk_name, _parent, _default_rate) \
46 __DEFINE_CLK_VOTER(clk_name, _parent, _default_rate, 0)
47
48#define DEFINE_CLK_BRANCH_VOTER(clk_name, _parent) \
49 __DEFINE_CLK_VOTER(clk_name, _parent, 1000, 1)
50
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070051#endif