clk.c 3.5 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 *  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
 *  by the Free Software Foundation.
 *
 * Copyright (C) 2010 Thomas Langer <thomas.langer@lantiq.com>
 * Copyright (C) 2010 John Crispin <blogic@openwrt.org>
 */
#include <linux/io.h>
10
#include <linux/export.h>
11 12 13 14
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/clk.h>
15
#include <linux/clkdev.h>
16 17 18 19 20 21 22 23 24 25
#include <linux/err.h>
#include <linux/list.h>

#include <asm/time.h>
#include <asm/irq.h>
#include <asm/div64.h>

#include <lantiq_soc.h>

#include "clk.h"
26
#include "prom.h"
27

28
/* lantiq socs have 3 static clocks */
29
static struct clk cpu_clk_generic[4];
30

31 32
void clkdev_add_static(unsigned long cpu, unsigned long fpi,
			unsigned long io, unsigned long ppe)
33 34 35 36
{
	cpu_clk_generic[0].rate = cpu;
	cpu_clk_generic[1].rate = fpi;
	cpu_clk_generic[2].rate = io;
37
	cpu_clk_generic[3].rate = ppe;
38
}
39

40 41 42 43 44 45 46 47 48 49 50 51
struct clk *clk_get_cpu(void)
{
	return &cpu_clk_generic[0];
}

struct clk *clk_get_fpi(void)
{
	return &cpu_clk_generic[1];
}
EXPORT_SYMBOL_GPL(clk_get_fpi);

struct clk *clk_get_io(void)
52
{
53
	return &cpu_clk_generic[2];
54 55
}

56 57 58 59 60 61
struct clk *clk_get_ppe(void)
{
	return &cpu_clk_generic[3];
}
EXPORT_SYMBOL_GPL(clk_get_ppe);

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
static inline int clk_good(struct clk *clk)
{
	return clk && !IS_ERR(clk);
}

unsigned long clk_get_rate(struct clk *clk)
{
	if (unlikely(!clk_good(clk)))
		return 0;

	if (clk->rate != 0)
		return clk->rate;

	if (clk->get_rate != NULL)
		return clk->get_rate();

	return 0;
}
EXPORT_SYMBOL(clk_get_rate);

82
int clk_set_rate(struct clk *clk, unsigned long rate)
83
{
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
	if (unlikely(!clk_good(clk)))
		return 0;
	if (clk->rates && *clk->rates) {
		unsigned long *r = clk->rates;

		while (*r && (*r != rate))
			r++;
		if (!*r) {
			pr_err("clk %s.%s: trying to set invalid rate %ld\n",
				clk->cl.dev_id, clk->cl.con_id, rate);
			return -1;
		}
	}
	clk->rate = rate;
	return 0;
99
}
100
EXPORT_SYMBOL(clk_set_rate);
101

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
long clk_round_rate(struct clk *clk, unsigned long rate)
{
	if (unlikely(!clk_good(clk)))
		return 0;
	if (clk->rates && *clk->rates) {
		unsigned long *r = clk->rates;

		while (*r && (*r != rate))
			r++;
		if (!*r) {
			return clk->rate;
		}
	}
	return rate;
}
EXPORT_SYMBOL(clk_round_rate);

119 120
int clk_enable(struct clk *clk)
{
121 122 123 124 125 126 127
	if (unlikely(!clk_good(clk)))
		return -1;

	if (clk->enable)
		return clk->enable(clk);

	return -1;
128 129 130 131 132
}
EXPORT_SYMBOL(clk_enable);

void clk_disable(struct clk *clk)
{
133 134 135 136 137
	if (unlikely(!clk_good(clk)))
		return;

	if (clk->disable)
		clk->disable(clk);
138 139 140
}
EXPORT_SYMBOL(clk_disable);

141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
int clk_activate(struct clk *clk)
{
	if (unlikely(!clk_good(clk)))
		return -1;

	if (clk->activate)
		return clk->activate(clk);

	return -1;
}
EXPORT_SYMBOL(clk_activate);

void clk_deactivate(struct clk *clk)
{
	if (unlikely(!clk_good(clk)))
		return;

	if (clk->deactivate)
		clk->deactivate(clk);
}
EXPORT_SYMBOL(clk_deactivate);

163 164 165 166 167
struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
{
	return NULL;
}

168
static inline u32 get_counter_resolution(void)
169 170 171 172
{
	u32 res;

	__asm__ __volatile__(
R
Ralf Baechle 已提交
173 174 175
		".set	push\n"
		".set	mips32r2\n"
		"rdhwr	%0, $3\n"
176 177 178 179 180 181 182 183 184 185 186 187
		".set pop\n"
		: "=&r" (res)
		: /* no input */
		: "memory");

	return res;
}

void __init plat_time_init(void)
{
	struct clk *clk;

188
	ltq_soc_init();
189

190 191
	clk = clk_get_cpu();
	mips_hpt_frequency = clk_get_rate(clk) / get_counter_resolution();
192
	write_c0_compare(read_c0_count());
193
	pr_info("CPU Clock: %ldMHz\n", clk_get_rate(clk) / 1000000);
194 195
	clk_put(clk);
}