diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2011-07-16 19:06:04 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-07-19 17:03:11 -0400 |
commit | 7424dd0d03502b9844b96bf6efd0716b79c36607 (patch) | |
tree | 936de32a86d93664e79e2ec6697d19bd69e1a204 | |
parent | 3de1a7748f68c63daed7c9e04ac9f048efcd9f20 (diff) |
bcma: allow setting FAST clockmode for a core
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/bcma/core.c | 31 | ||||
-rw-r--r-- | include/linux/bcma/bcma.h | 8 |
2 files changed, 38 insertions, 1 deletions
diff --git a/drivers/bcma/core.c b/drivers/bcma/core.c index 1ec7d4528dd0..0686b1b5f27a 100644 --- a/drivers/bcma/core.c +++ b/drivers/bcma/core.c | |||
@@ -50,3 +50,34 @@ int bcma_core_enable(struct bcma_device *core, u32 flags) | |||
50 | return 0; | 50 | return 0; |
51 | } | 51 | } |
52 | EXPORT_SYMBOL_GPL(bcma_core_enable); | 52 | EXPORT_SYMBOL_GPL(bcma_core_enable); |
53 | |||
54 | void bcma_core_set_clockmode(struct bcma_device *core, | ||
55 | enum bcma_clkmode clkmode) | ||
56 | { | ||
57 | u16 i; | ||
58 | |||
59 | WARN_ON(core->id.id != BCMA_CORE_CHIPCOMMON && | ||
60 | core->id.id != BCMA_CORE_PCIE && | ||
61 | core->id.id != BCMA_CORE_80211); | ||
62 | |||
63 | switch (clkmode) { | ||
64 | case BCMA_CLKMODE_FAST: | ||
65 | bcma_set32(core, BCMA_CLKCTLST, BCMA_CLKCTLST_FORCEHT); | ||
66 | udelay(64); | ||
67 | for (i = 0; i < 1500; i++) { | ||
68 | if (bcma_read32(core, BCMA_CLKCTLST) & | ||
69 | BCMA_CLKCTLST_HAVEHT) { | ||
70 | i = 0; | ||
71 | break; | ||
72 | } | ||
73 | udelay(10); | ||
74 | } | ||
75 | if (i) | ||
76 | pr_err("HT force timeout\n"); | ||
77 | break; | ||
78 | case BCMA_CLKMODE_DYNAMIC: | ||
79 | pr_warn("Dynamic clockmode not supported yet!\n"); | ||
80 | break; | ||
81 | } | ||
82 | } | ||
83 | EXPORT_SYMBOL_GPL(bcma_core_set_clockmode); | ||
diff --git a/include/linux/bcma/bcma.h b/include/linux/bcma/bcma.h index 6e5dc7b3c024..37017c1cc6b7 100644 --- a/include/linux/bcma/bcma.h +++ b/include/linux/bcma/bcma.h | |||
@@ -25,6 +25,11 @@ struct bcma_chipinfo { | |||
25 | u8 pkg; | 25 | u8 pkg; |
26 | }; | 26 | }; |
27 | 27 | ||
28 | enum bcma_clkmode { | ||
29 | BCMA_CLKMODE_FAST, | ||
30 | BCMA_CLKMODE_DYNAMIC, | ||
31 | }; | ||
32 | |||
28 | struct bcma_host_ops { | 33 | struct bcma_host_ops { |
29 | u8 (*read8)(struct bcma_device *core, u16 offset); | 34 | u8 (*read8)(struct bcma_device *core, u16 offset); |
30 | u16 (*read16)(struct bcma_device *core, u16 offset); | 35 | u16 (*read16)(struct bcma_device *core, u16 offset); |
@@ -253,6 +258,7 @@ void bcma_awrite32(struct bcma_device *core, u16 offset, u32 value) | |||
253 | extern bool bcma_core_is_enabled(struct bcma_device *core); | 258 | extern bool bcma_core_is_enabled(struct bcma_device *core); |
254 | extern void bcma_core_disable(struct bcma_device *core, u32 flags); | 259 | extern void bcma_core_disable(struct bcma_device *core, u32 flags); |
255 | extern int bcma_core_enable(struct bcma_device *core, u32 flags); | 260 | extern int bcma_core_enable(struct bcma_device *core, u32 flags); |
256 | 261 | extern void bcma_core_set_clockmode(struct bcma_device *core, | |
262 | enum bcma_clkmode clkmode); | ||
257 | 263 | ||
258 | #endif /* LINUX_BCMA_H_ */ | 264 | #endif /* LINUX_BCMA_H_ */ |