[OpenWrt-Devel] [PATCH 5/7] ramips: fix mt7621 cpu clock speed. set spi clock to system clock
Mingyu Li
igvtee at gmail.com
Mon Oct 5 06:29:05 EDT 2015
according to mtk sdk 4300 at kernel version linux-2.6.36.x
at 40Mhz Xtal it use 20 not 40.
#elif defined (CONFIG_RALINK_MT7621)
case 0:
reg = (*(volatile u32 *)(RALINK_SYSCTL_BASE + 0x44));
cpu_fdiv = ((reg >> 8) & 0x1F);
cpu_ffrac = (reg & 0x1F);
mips_cpu_feq = (500 * cpu_ffrac / cpu_fdiv) * 1000 * 1000;
break;
case 1: //CPU PLL
reg = (*(volatile u32 *)(RALINK_MEMCTRL_BASE + 0x648));
fbdiv = ((reg >> 4) & 0x7F) + 1;
reg = (*(volatile u32 *)(RALINK_SYSCTL_BASE + 0x10));
reg = (reg >> 6) & 0x7;
if(reg >= 6) { //25Mhz Xtal
mips_cpu_feq = 25 * fbdiv * 1000 * 1000;
} else if(reg >=3) { //40Mhz Xtal
mips_cpu_feq = 20 * fbdiv * 1000 * 1000;
} else { // 20Mhz Xtal
/* TODO */
}
break;
#elif defined (CONFIG_RALINK_MT7628)
2015-10-05 18:11 GMT+08:00 John Crispin <blogic at openwrt.org>:
> Hi,
>
> comments inline,
>
> On 22/09/2015 15:26, Michael Lee wrote:
> > From: michael lee <igvtee at gmail.com>
> >
> > spi clock is the same as system clock measured by logic analyzer.
> >
> > Signed-off-by: Michael Lee <igvtee at gmail.com>
> > ---
> > .../0012-MIPS-ralink-add-MT7621-support.patch | 29
> +++++++++++++++++-----
> > 1 file changed, 23 insertions(+), 6 deletions(-)
> >
> > diff --git
> a/target/linux/ramips/patches-3.18/0012-MIPS-ralink-add-MT7621-support.patch
> b/target/linux/ramips/patches-3.18/0012-MIPS-ralink-add-MT7621-support.patch
> > index 23d3268..bb4a8e1 100644
> > ---
> a/target/linux/ramips/patches-3.18/0012-MIPS-ralink-add-MT7621-support.patch
> > +++
> b/target/linux/ramips/patches-3.18/0012-MIPS-ralink-add-MT7621-support.patch
> > @@ -520,7 +520,7 @@ Signed-off-by: John Crispin <blogic at openwrt.org>
> > +}
> > --- /dev/null
> > +++ b/arch/mips/ralink/mt7621.c
> > -@@ -0,0 +1,209 @@
> > +@@ -0,0 +1,226 @@
> > +/*
> > + * This program is free software; you can redistribute it and/or
> modify it
> > + * under the terms of the GNU General Public License version 2 as
> published
> > @@ -553,6 +553,8 @@ Signed-off-by: John Crispin <blogic at openwrt.org>
> > +#define SYSC_REG_CUR_CLK_STS 0x44
> > +#define CPU_CLK_SEL (BIT(30) | BIT(31))
> > +
> > ++#define MEMC_REG_BASE 0x5000
> > ++
> > +#define MT7621_GPIO_MODE_UART1 1
> > +#define MT7621_GPIO_MODE_I2C 2
> > +#define MT7621_GPIO_MODE_UART3_MASK 0x3
> > @@ -645,7 +647,7 @@ Signed-off-by: John Crispin <blogic at openwrt.org>
> > + int fbdiv = 0;
> > + u32 clk_sts, syscfg;
> > + u8 clk_sel = 0, xtal_mode;
> > -+ u32 cpu_clk;
> > ++ u32 cpu_clk, sys_clk;
> > +
> > + if ((rt_sysc_r32(SYSC_REG_CPLL_CLKCFG0) & CPU_CLK_SEL) != 0)
> > + clk_sel = 1;
> > @@ -656,24 +658,39 @@ Signed-off-by: John Crispin <blogic at openwrt.org>
> > + cpu_fdiv = ((clk_sts >> 8) & 0x1F);
> > + cpu_ffrac = (clk_sts & 0x1F);
> > + cpu_clk = (500 * cpu_ffrac / cpu_fdiv) * 1000 * 1000;
> > ++ if (((clk_sts >> 16) & 0x7) == 3)
> > ++ sys_clk = cpu_clk / 3;
> > ++ else
> > ++ sys_clk = cpu_clk / 4;
> > + break;
> > +
> > + case 1:
> > -+ fbdiv = ((rt_sysc_r32(0x648) >> 4) & 0x7F) + 1;
> > ++ fbdiv = ((rt_sysc_r32(MEMC_REG_BASE + 0x648) >> 4) & 0x7F)
> + 1;
> > + syscfg = rt_sysc_r32(SYSC_REG_SYSCFG);
> > + xtal_mode = (syscfg >> 6) & 0x7;
> > + if(xtal_mode >= 6) { //25Mhz Xtal
> > + cpu_clk = 25 * fbdiv * 1000 * 1000;
> > + } else if(xtal_mode >=3) { //40Mhz Xtal
> > -+ cpu_clk = 40 * fbdiv * 1000 * 1000;
> > ++ cpu_clk = 20 * fbdiv * 1000 * 1000;
>
> this looks wrong. can you confirm that this is intentional and not a typo ?
>
>
>
> > + } else { // 20Mhz Xtal
> > + cpu_clk = 20 * fbdiv * 1000 * 1000;
> > + }
> > ++ if (syscfg & BIT(5))
> > ++ sys_clk = cpu_clk / 4;
> > ++ else
> > ++ sys_clk = cpu_clk / 3;
> > + break;
> > + }
> > -+ cpu_clk = 880000000;
> > ++
> > ++#define RFMT(label) label ":%u.%03uMHz "
> > ++#define RINT(x) ((x) / 1000000)
> > ++#define RFRAC(x) (((x) / 1000) % 1000)
> > ++ pr_debug(RFMT("CPU") RFMT("SYS"),
> > ++ RINT(cpu_clk), RFRAC(cpu_clk),
> > ++ RINT(sys_clk), RFRAC(sys_clk));
> > ++
> > + ralink_clk_add("cpu", cpu_clk);
> > -+ ralink_clk_add("1e000b00.spi", 50000000);
> > ++ ralink_clk_add("1e000b00.spi", sys_clk);
> > + ralink_clk_add("1e000c00.uartlite", 50000000);
> > + ralink_clk_add("1e000d00.uart", 50000000);
> > +}
> >
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.infradead.org/pipermail/openwrt-devel/attachments/20151005/c469dfa3/attachment.htm>
-------------- next part --------------
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list