[PATCH 1/7] imx35: 6-bit divider helper
Marc Reilly
marc at cpdesign.com.au
Sun Jul 29 03:41:48 EDT 2012
Signed-off-by: Marc Reilly <marc at cpdesign.com.au>
---
arch/arm/mach-imx/speed-imx35.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-imx/speed-imx35.c b/arch/arm/mach-imx/speed-imx35.c
index 684dc14..905ab47 100644
--- a/arch/arm/mach-imx/speed-imx35.c
+++ b/arch/arm/mach-imx/speed-imx35.c
@@ -97,6 +97,11 @@ static unsigned long get_3_3_div(unsigned long in)
return (((in >> 3) & 0x7) + 1) * ((in & 0x7) + 1);
}
+static unsigned long get_6_div(unsigned long in)
+{
+ return ((in & 0x3f) + 1);
+}
+
static unsigned long imx_get_ipg_perclk(void)
{
ulong pdr0 = readl(IMX_CCM_BASE + CCM_PDR0);
--
1.7.7
More information about the barebox
mailing list