aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Ferre <nicolas.ferre@atmel.com>2015-06-17 08:40:38 -0400
committerStephen Boyd <sboyd@codeaurora.org>2015-10-01 15:39:41 -0400
commit96ef36e9c424b7a66413bb9229ef5afcddf4fef4 (patch)
tree636ed3e2dafa26a9b51de5ef0cea33cdf5252204
parenta3ff23375aa4dac7ceee2087f02b4141c78c762e (diff)
clk: at91: cleanup PMC header file for PCR register fields
Add _MASK and _OFFSET values and cleanup register fields layout. Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r--drivers/clk/at91/clk-peripheral.c8
-rw-r--r--include/linux/clk/at91_pmc.h14
2 files changed, 10 insertions, 12 deletions
diff --git a/drivers/clk/at91/clk-peripheral.c b/drivers/clk/at91/clk-peripheral.c
index e4d7b574f1ea..0a66b959f99b 100644
--- a/drivers/clk/at91/clk-peripheral.c
+++ b/drivers/clk/at91/clk-peripheral.c
@@ -165,7 +165,7 @@ static int clk_sam9x5_peripheral_enable(struct clk_hw *hw)
165 if (periph->id < PERIPHERAL_ID_MIN) 165 if (periph->id < PERIPHERAL_ID_MIN)
166 return 0; 166 return 0;
167 167
168 pmc_write(pmc, AT91_PMC_PCR, (periph->id & AT91_PMC_PCR_PID) | 168 pmc_write(pmc, AT91_PMC_PCR, (periph->id & AT91_PMC_PCR_PID_MASK) |
169 AT91_PMC_PCR_CMD | 169 AT91_PMC_PCR_CMD |
170 AT91_PMC_PCR_DIV(periph->div) | 170 AT91_PMC_PCR_DIV(periph->div) |
171 AT91_PMC_PCR_EN); 171 AT91_PMC_PCR_EN);
@@ -180,7 +180,7 @@ static void clk_sam9x5_peripheral_disable(struct clk_hw *hw)
180 if (periph->id < PERIPHERAL_ID_MIN) 180 if (periph->id < PERIPHERAL_ID_MIN)
181 return; 181 return;
182 182
183 pmc_write(pmc, AT91_PMC_PCR, (periph->id & AT91_PMC_PCR_PID) | 183 pmc_write(pmc, AT91_PMC_PCR, (periph->id & AT91_PMC_PCR_PID_MASK) |
184 AT91_PMC_PCR_CMD); 184 AT91_PMC_PCR_CMD);
185} 185}
186 186
@@ -194,7 +194,7 @@ static int clk_sam9x5_peripheral_is_enabled(struct clk_hw *hw)
194 return 1; 194 return 1;
195 195
196 pmc_lock(pmc); 196 pmc_lock(pmc);
197 pmc_write(pmc, AT91_PMC_PCR, (periph->id & AT91_PMC_PCR_PID)); 197 pmc_write(pmc, AT91_PMC_PCR, (periph->id & AT91_PMC_PCR_PID_MASK));
198 ret = !!(pmc_read(pmc, AT91_PMC_PCR) & AT91_PMC_PCR_EN); 198 ret = !!(pmc_read(pmc, AT91_PMC_PCR) & AT91_PMC_PCR_EN);
199 pmc_unlock(pmc); 199 pmc_unlock(pmc);
200 200
@@ -213,7 +213,7 @@ clk_sam9x5_peripheral_recalc_rate(struct clk_hw *hw,
213 return parent_rate; 213 return parent_rate;
214 214
215 pmc_lock(pmc); 215 pmc_lock(pmc);
216 pmc_write(pmc, AT91_PMC_PCR, (periph->id & AT91_PMC_PCR_PID)); 216 pmc_write(pmc, AT91_PMC_PCR, (periph->id & AT91_PMC_PCR_PID_MASK));
217 tmp = pmc_read(pmc, AT91_PMC_PCR); 217 tmp = pmc_read(pmc, AT91_PMC_PCR);
218 pmc_unlock(pmc); 218 pmc_unlock(pmc);
219 219
diff --git a/include/linux/clk/at91_pmc.h b/include/linux/clk/at91_pmc.h
index 7669f7618f39..dfc59e2b64fb 100644
--- a/include/linux/clk/at91_pmc.h
+++ b/include/linux/clk/at91_pmc.h
@@ -182,13 +182,11 @@ extern void __iomem *at91_pmc_base;
182#define AT91_PMC_PCSR1 0x108 /* Peripheral Clock Enable Register 1 */ 182#define AT91_PMC_PCSR1 0x108 /* Peripheral Clock Enable Register 1 */
183 183
184#define AT91_PMC_PCR 0x10c /* Peripheral Control Register [some SAM9 and SAMA5] */ 184#define AT91_PMC_PCR 0x10c /* Peripheral Control Register [some SAM9 and SAMA5] */
185#define AT91_PMC_PCR_PID (0x3f << 0) /* Peripheral ID */ 185#define AT91_PMC_PCR_PID_MASK 0x3f
186#define AT91_PMC_PCR_CMD (0x1 << 12) /* Command (read=0, write=1) */ 186#define AT91_PMC_PCR_CMD (0x1 << 12) /* Command (read=0, write=1) */
187#define AT91_PMC_PCR_DIV(n) ((n) << 16) /* Divisor Value */ 187#define AT91_PMC_PCR_DIV_OFFSET 16
188#define AT91_PMC_PCR_DIV0 0x0 /* Peripheral clock is MCK */ 188#define AT91_PMC_PCR_DIV_MASK (0x3 << AT91_PMC_PCR_DIV_OFFSET)
189#define AT91_PMC_PCR_DIV2 0x1 /* Peripheral clock is MCK/2 */ 189#define AT91_PMC_PCR_DIV(n) ((n) << AT91_PMC_PCR_DIV_OFFSET) /* Divisor Value */
190#define AT91_PMC_PCR_DIV4 0x2 /* Peripheral clock is MCK/4 */ 190#define AT91_PMC_PCR_EN (0x1 << 28) /* Enable */
191#define AT91_PMC_PCR_DIV8 0x3 /* Peripheral clock is MCK/8 */
192#define AT91_PMC_PCR_EN (0x1 << 28) /* Enable */
193 191
194#endif 192#endif