diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2011-07-16 19:06:05 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-07-19 17:03:11 -0400 |
commit | 6f53912fc317ab130bd910c5c30420a21ea38115 (patch) | |
tree | 780ce23098e2cc10eb43eede985f1f64ae6bcda7 /drivers | |
parent | 7424dd0d03502b9844b96bf6efd0716b79c36607 (diff) |
bcma: allow enabling PLL
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/bcma/core.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/drivers/bcma/core.c b/drivers/bcma/core.c index 0686b1b5f27a..2d8506dbca76 100644 --- a/drivers/bcma/core.c +++ b/drivers/bcma/core.c | |||
@@ -81,3 +81,28 @@ void bcma_core_set_clockmode(struct bcma_device *core, | |||
81 | } | 81 | } |
82 | } | 82 | } |
83 | EXPORT_SYMBOL_GPL(bcma_core_set_clockmode); | 83 | EXPORT_SYMBOL_GPL(bcma_core_set_clockmode); |
84 | |||
85 | void bcma_core_pll_ctl(struct bcma_device *core, u32 req, u32 status, bool on) | ||
86 | { | ||
87 | u16 i; | ||
88 | |||
89 | WARN_ON(req & ~BCMA_CLKCTLST_EXTRESREQ); | ||
90 | WARN_ON(status & ~BCMA_CLKCTLST_EXTRESST); | ||
91 | |||
92 | if (on) { | ||
93 | bcma_set32(core, BCMA_CLKCTLST, req); | ||
94 | for (i = 0; i < 10000; i++) { | ||
95 | if ((bcma_read32(core, BCMA_CLKCTLST) & status) == | ||
96 | status) { | ||
97 | i = 0; | ||
98 | break; | ||
99 | } | ||
100 | udelay(10); | ||
101 | } | ||
102 | if (i) | ||
103 | pr_err("PLL enable timeout\n"); | ||
104 | } else { | ||
105 | pr_warn("Disabling PLL not supported yet!\n"); | ||
106 | } | ||
107 | } | ||
108 | EXPORT_SYMBOL_GPL(bcma_core_pll_ctl); | ||