blob: 37a5ffe673d5da8c9ac6ee955d835d48b596ca7f [file] [log] [blame]
Rafał Miłecki8369ae32011-05-09 18:56:46 +02001/*
2 * Broadcom specific AMBA
3 * Core ops
4 *
5 * Licensed under the GNU/GPL. See COPYING for details.
6 */
7
8#include "bcma_private.h"
Paul Gortmaker44a8e372011-07-27 21:21:04 -04009#include <linux/export.h>
Rafał Miłecki8369ae32011-05-09 18:56:46 +020010#include <linux/bcma/bcma.h>
11
Rafał Miłecki972da7e2013-06-17 18:34:32 +020012static bool bcma_core_wait_value(struct bcma_device *core, u16 reg, u32 mask,
13 u32 value, int timeout)
14{
15 unsigned long deadline = jiffies + timeout;
16 u32 val;
17
18 do {
19 val = bcma_aread32(core, reg);
20 if ((val & mask) == value)
21 return true;
22 cpu_relax();
23 udelay(10);
24 } while (!time_after_eq(jiffies, deadline));
25
26 bcma_warn(core->bus, "Timeout waiting for register 0x%04X!\n", reg);
27
28 return false;
29}
30
Rafał Miłecki8369ae32011-05-09 18:56:46 +020031bool bcma_core_is_enabled(struct bcma_device *core)
32{
33 if ((bcma_aread32(core, BCMA_IOCTL) & (BCMA_IOCTL_CLK | BCMA_IOCTL_FGC))
34 != BCMA_IOCTL_CLK)
35 return false;
36 if (bcma_aread32(core, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET)
37 return false;
38 return true;
39}
40EXPORT_SYMBOL_GPL(bcma_core_is_enabled);
41
Arend van Spriele3ae0ca2011-06-09 20:07:20 +020042void bcma_core_disable(struct bcma_device *core, u32 flags)
Rafał Miłecki8369ae32011-05-09 18:56:46 +020043{
44 if (bcma_aread32(core, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET)
45 return;
46
Rafał Miłecki972da7e2013-06-17 18:34:32 +020047 bcma_core_wait_value(core, BCMA_RESET_ST, ~0, 0, 300);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020048
49 bcma_awrite32(core, BCMA_RESET_CTL, BCMA_RESET_CTL_RESET);
Nathan Hintz044e68c2012-05-04 21:56:36 -070050 bcma_aread32(core, BCMA_RESET_CTL);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020051 udelay(1);
Rafał Miłecki972da7e2013-06-17 18:34:32 +020052
53 bcma_awrite32(core, BCMA_IOCTL, flags);
54 bcma_aread32(core, BCMA_IOCTL);
55 udelay(10);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020056}
Arend van Spriele3ae0ca2011-06-09 20:07:20 +020057EXPORT_SYMBOL_GPL(bcma_core_disable);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020058
59int bcma_core_enable(struct bcma_device *core, u32 flags)
60{
61 bcma_core_disable(core, flags);
62
63 bcma_awrite32(core, BCMA_IOCTL, (BCMA_IOCTL_CLK | BCMA_IOCTL_FGC | flags));
64 bcma_aread32(core, BCMA_IOCTL);
65
66 bcma_awrite32(core, BCMA_RESET_CTL, 0);
Rafał Miłecki972da7e2013-06-17 18:34:32 +020067 bcma_aread32(core, BCMA_RESET_CTL);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020068 udelay(1);
69
70 bcma_awrite32(core, BCMA_IOCTL, (BCMA_IOCTL_CLK | flags));
71 bcma_aread32(core, BCMA_IOCTL);
72 udelay(1);
73
74 return 0;
75}
76EXPORT_SYMBOL_GPL(bcma_core_enable);
Rafał Miłecki7424dd02011-07-17 01:06:04 +020077
78void bcma_core_set_clockmode(struct bcma_device *core,
79 enum bcma_clkmode clkmode)
80{
81 u16 i;
82
83 WARN_ON(core->id.id != BCMA_CORE_CHIPCOMMON &&
84 core->id.id != BCMA_CORE_PCIE &&
85 core->id.id != BCMA_CORE_80211);
86
87 switch (clkmode) {
88 case BCMA_CLKMODE_FAST:
89 bcma_set32(core, BCMA_CLKCTLST, BCMA_CLKCTLST_FORCEHT);
Rafał Miłecki1fd41a62012-09-25 10:17:22 +020090 usleep_range(64, 300);
Rafał Miłecki7424dd02011-07-17 01:06:04 +020091 for (i = 0; i < 1500; i++) {
92 if (bcma_read32(core, BCMA_CLKCTLST) &
93 BCMA_CLKCTLST_HAVEHT) {
94 i = 0;
95 break;
96 }
97 udelay(10);
98 }
99 if (i)
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200100 bcma_err(core->bus, "HT force timeout\n");
Rafał Miłecki7424dd02011-07-17 01:06:04 +0200101 break;
102 case BCMA_CLKMODE_DYNAMIC:
Hauke Mehrtens0b2948e2012-04-29 02:18:49 +0200103 bcma_set32(core, BCMA_CLKCTLST, ~BCMA_CLKCTLST_FORCEHT);
Rafał Miłecki7424dd02011-07-17 01:06:04 +0200104 break;
105 }
106}
107EXPORT_SYMBOL_GPL(bcma_core_set_clockmode);
Rafał Miłecki6f539122011-07-17 01:06:05 +0200108
109void bcma_core_pll_ctl(struct bcma_device *core, u32 req, u32 status, bool on)
110{
111 u16 i;
112
113 WARN_ON(req & ~BCMA_CLKCTLST_EXTRESREQ);
114 WARN_ON(status & ~BCMA_CLKCTLST_EXTRESST);
115
116 if (on) {
117 bcma_set32(core, BCMA_CLKCTLST, req);
118 for (i = 0; i < 10000; i++) {
119 if ((bcma_read32(core, BCMA_CLKCTLST) & status) ==
120 status) {
121 i = 0;
122 break;
123 }
124 udelay(10);
125 }
126 if (i)
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200127 bcma_err(core->bus, "PLL enable timeout\n");
Rafał Miłecki6f539122011-07-17 01:06:05 +0200128 } else {
Rafał Miłeckic7228392013-02-26 10:02:23 +0100129 /*
130 * Mask the PLL but don't wait for it to be disabled. PLL may be
131 * shared between cores and will be still up if there is another
132 * core using it.
133 */
134 bcma_mask32(core, BCMA_CLKCTLST, ~req);
135 bcma_read32(core, BCMA_CLKCTLST);
Rafał Miłecki6f539122011-07-17 01:06:05 +0200136 }
137}
138EXPORT_SYMBOL_GPL(bcma_core_pll_ctl);
Rafał Miłecki05aec232011-07-20 19:52:15 +0200139
140u32 bcma_core_dma_translation(struct bcma_device *core)
141{
142 switch (core->bus->hosttype) {
Hauke Mehrtensecd177c2011-07-23 01:20:08 +0200143 case BCMA_HOSTTYPE_SOC:
144 return 0;
Rafał Miłecki05aec232011-07-20 19:52:15 +0200145 case BCMA_HOSTTYPE_PCI:
146 if (bcma_aread32(core, BCMA_IOST) & BCMA_IOST_DMA64)
147 return BCMA_DMA_TRANSLATION_DMA64_CMT;
148 else
149 return BCMA_DMA_TRANSLATION_DMA32_CMT;
150 default:
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200151 bcma_err(core->bus, "DMA translation unknown for host %d\n",
152 core->bus->hosttype);
Rafał Miłecki05aec232011-07-20 19:52:15 +0200153 }
154 return BCMA_DMA_TRANSLATION_NONE;
155}
156EXPORT_SYMBOL(bcma_core_dma_translation);