Duy Truong | 790f06d | 2013-02-13 16:38:12 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2012, The Linux Foundation. All rights reserved. |
Michael Bohan | dd975e5 | 2012-07-25 11:04:55 -0700 | [diff] [blame] | 2 | * |
| 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 | |
| 16 | enum 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 | |
| 28 | struct q_clkdiv; |
| 29 | |
| 30 | struct q_clkdiv *qpnp_clkdiv_get(struct device *dev, const char *name); |
| 31 | int qpnp_clkdiv_enable(struct q_clkdiv *q_clkdiv); |
| 32 | int qpnp_clkdiv_disable(struct q_clkdiv *q_clkdiv); |
| 33 | int qpnp_clkdiv_config(struct q_clkdiv *q_clkdiv, |
| 34 | enum q_clkdiv_cfg cfg); |
| 35 | #endif |