2019-06-04 11:11:33 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2013-01-21 01:01:29 +04:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
|
2016-05-05 10:57:56 +03:00
|
|
|
* Copyright (C) 2013 John Crispin <john@phrozen.org>
|
2013-01-21 01:01:29 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
2017-01-29 05:05:57 +03:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/export.h>
|
2013-01-21 01:01:29 +04:00
|
|
|
#include <linux/clkdev.h>
|
|
|
|
#include <linux/clk.h>
|
2021-05-31 14:51:18 +03:00
|
|
|
#include <linux/clk-provider.h>
|
2013-01-21 01:01:29 +04:00
|
|
|
|
|
|
|
#include <asm/time.h>
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
void ralink_clk_add(const char *dev, unsigned long rate)
|
|
|
|
{
|
2021-05-31 14:51:18 +03:00
|
|
|
struct clk *clk = clk_register_fixed_rate(NULL, dev, NULL, 0, rate);
|
2013-01-21 01:01:29 +04:00
|
|
|
|
|
|
|
if (!clk)
|
2013-09-18 18:05:26 +04:00
|
|
|
panic("failed to add clock");
|
2013-01-21 01:01:29 +04:00
|
|
|
|
2021-05-31 14:51:18 +03:00
|
|
|
clkdev_create(clk, NULL, "%s", dev);
|
2021-03-17 14:26:44 +03:00
|
|
|
}
|
|
|
|
|
2013-01-21 01:01:29 +04:00
|
|
|
void __init plat_time_init(void)
|
|
|
|
{
|
|
|
|
struct clk *clk;
|
|
|
|
|
|
|
|
ralink_of_remap();
|
|
|
|
|
|
|
|
ralink_clk_init();
|
|
|
|
clk = clk_get_sys("cpu", NULL);
|
|
|
|
if (IS_ERR(clk))
|
|
|
|
panic("unable to get CPU clock, err=%ld", PTR_ERR(clk));
|
|
|
|
pr_info("CPU Clock: %ldMHz\n", clk_get_rate(clk) / 1000000);
|
|
|
|
mips_hpt_frequency = clk_get_rate(clk) / 2;
|
|
|
|
clk_put(clk);
|
2017-05-26 18:40:46 +03:00
|
|
|
timer_probe();
|
2013-01-21 01:01:29 +04:00
|
|
|
}
|