]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
MIPS: ralink: add rt2880 wmac clock
authorJohn Crispin <blogic@openwrt.org>
Mon, 4 Aug 2014 07:52:22 +0000 (09:52 +0200)
committerRalf Baechle <ralf@linux-mips.org>
Mon, 24 Nov 2014 06:45:20 +0000 (07:45 +0100)
Register the wireleass mac clock on rt2880. This is required by the wifi driver.

Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/8006/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/ralink/rt288x.c

index f87de1ab21983d28e7915b127d3b4ad2bcd34e98..90e89349bd18c1cbd15836edfda3fb64fde751b1 100644 (file)
@@ -76,7 +76,7 @@ struct ralink_pinmux rt_gpio_pinmux = {
 
 void __init ralink_clk_init(void)
 {
-       unsigned long cpu_rate;
+       unsigned long cpu_rate, wmac_rate = 40000000;
        u32 t = rt_sysc_r32(SYSC_REG_SYSTEM_CONFIG);
        t = ((t >> SYSTEM_CONFIG_CPUCLK_SHIFT) & SYSTEM_CONFIG_CPUCLK_MASK);
 
@@ -101,6 +101,7 @@ void __init ralink_clk_init(void)
        ralink_clk_add("300500.uart", cpu_rate / 2);
        ralink_clk_add("300c00.uartlite", cpu_rate / 2);
        ralink_clk_add("400000.ethernet", cpu_rate / 2);
+       ralink_clk_add("480000.wmac", wmac_rate);
 }
 
 void __init ralink_of_remap(void)