]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
bcma: allow setting FAST clockmode for a core
authorRafał Miłecki <zajec5@gmail.com>
Sat, 16 Jul 2011 23:06:04 +0000 (01:06 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 19 Jul 2011 21:03:11 +0000 (17:03 -0400)
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/bcma/core.c
include/linux/bcma/bcma.h

index 1ec7d4528dd0d823d4beaf2190575b28755c556b..0686b1b5f27a6b4901854415d0eaa2dfb18a6f9f 100644 (file)
@@ -50,3 +50,34 @@ int bcma_core_enable(struct bcma_device *core, u32 flags)
        return 0;
 }
 EXPORT_SYMBOL_GPL(bcma_core_enable);
+
+void bcma_core_set_clockmode(struct bcma_device *core,
+                            enum bcma_clkmode clkmode)
+{
+       u16 i;
+
+       WARN_ON(core->id.id != BCMA_CORE_CHIPCOMMON &&
+               core->id.id != BCMA_CORE_PCIE &&
+               core->id.id != BCMA_CORE_80211);
+
+       switch (clkmode) {
+       case BCMA_CLKMODE_FAST:
+               bcma_set32(core, BCMA_CLKCTLST, BCMA_CLKCTLST_FORCEHT);
+               udelay(64);
+               for (i = 0; i < 1500; i++) {
+                       if (bcma_read32(core, BCMA_CLKCTLST) &
+                           BCMA_CLKCTLST_HAVEHT) {
+                               i = 0;
+                               break;
+                       }
+                       udelay(10);
+               }
+               if (i)
+                       pr_err("HT force timeout\n");
+               break;
+       case BCMA_CLKMODE_DYNAMIC:
+               pr_warn("Dynamic clockmode not supported yet!\n");
+               break;
+       }
+}
+EXPORT_SYMBOL_GPL(bcma_core_set_clockmode);
index 6e5dc7b3c02404a9485d3bff396276d812a6e266..37017c1cc6b718587bce72697ad19c005d156090 100644 (file)
@@ -25,6 +25,11 @@ struct bcma_chipinfo {
        u8 pkg;
 };
 
+enum bcma_clkmode {
+       BCMA_CLKMODE_FAST,
+       BCMA_CLKMODE_DYNAMIC,
+};
+
 struct bcma_host_ops {
        u8 (*read8)(struct bcma_device *core, u16 offset);
        u16 (*read16)(struct bcma_device *core, u16 offset);
@@ -253,6 +258,7 @@ void bcma_awrite32(struct bcma_device *core, u16 offset, u32 value)
 extern bool bcma_core_is_enabled(struct bcma_device *core);
 extern void bcma_core_disable(struct bcma_device *core, u32 flags);
 extern int bcma_core_enable(struct bcma_device *core, u32 flags);
-
+extern void bcma_core_set_clockmode(struct bcma_device *core,
+                                   enum bcma_clkmode clkmode);
 
 #endif /* LINUX_BCMA_H_ */