blob: 52537115b2ff1dcb1baf31106543b0fccd4a6450 [file] [log] [blame]
Duy Truong790f06d2013-02-13 16:38:12 -08001/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
Michael Bohandd975e52012-07-25 11:04:55 -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#ifndef QPNP_CLKDIV_H
14#define QPNP_CLKDIV_H
15
16enum q_clkdiv_cfg {
17 Q_CLKDIV_NO_CLK = 0,
18 Q_CLKDIV_XO_DIV_1,
19 Q_CLKDIV_XO_DIV_2,
20 Q_CLKDIV_XO_DIV_4,
21 Q_CLKDIV_XO_DIV_8,
22 Q_CLKDIV_XO_DIV_16,
23 Q_CLKDIV_XO_DIV_32,
24 Q_CLKDIV_XO_DIV_64,
25 Q_CLKDIV_INVALID,
26};
27
28struct q_clkdiv;
29
30struct q_clkdiv *qpnp_clkdiv_get(struct device *dev, const char *name);
31int qpnp_clkdiv_enable(struct q_clkdiv *q_clkdiv);
32int qpnp_clkdiv_disable(struct q_clkdiv *q_clkdiv);
33int qpnp_clkdiv_config(struct q_clkdiv *q_clkdiv,
34 enum q_clkdiv_cfg cfg);
35#endif