aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm/arch-ns9xxx/clock.h
blob: b943d3a92a1d9437c50c056d419b617dba389171 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * include/asm-arm/arch-ns9xxx/clock.h
 *
 * Copyright (C) 2007 by Digi International Inc.
 * All rights reserved.
 *
 * 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.
 */
#ifndef __ASM_ARCH_CLOCK_H
#define __ASM_ARCH_CLOCK_H

#include <asm/arch-ns9xxx/regs-sys.h>

#define CRYSTAL 29491200 /* Hz */

/* The HRM calls this value f_vco */
static inline u32 ns9xxx_systemclock(void) __attribute__((const));
static inline u32 ns9xxx_systemclock(void)
{
	u32 pll = __raw_readl(SYS_PLL);

	/*
	 * The system clock should be a multiple of HZ * TIMERCLOCKSELECT (in
	 * time.c).
	 *
	 * The following values are given:
	 *   - TIMERCLOCKSELECT == 2^i for an i in {0 .. 6}
	 *   - CRYSTAL == 29491200 == 2^17 * 3^2 * 5^2
	 *   - ND in {0 .. 31}
	 *   - FS in {0 .. 3}
	 *
	 * Assuming the worst, we consider:
	 *   - TIMERCLOCKSELECT == 64
	 *   - ND == 0
	 *   - FS == 3
	 *
	 * So HZ should be a divisor of:
	 *      (CRYSTAL * (ND + 1) >> FS) / TIMERCLOCKSELECT
	 *   == (2^17 * 3^2 * 5^2 * 1 >> 3) / 64
	 *   == 2^8 * 3^2 * 5^2
	 *   == 57600
	 *
	 * Currently HZ is defined to be 100 for this platform.
	 *
	 * Fine.
	 */
	return CRYSTAL * (REGGETIM(pll, SYS_PLL, ND) + 1)
		>> REGGETIM(pll, SYS_PLL, FS);
}

static inline u32 ns9xxx_cpuclock(void) __attribute__((const));
static inline u32 ns9xxx_cpuclock(void)
{
	return ns9xxx_systemclock() / 2;
}

static inline u32 ns9xxx_ahbclock(void) __attribute__((const));
static inline u32 ns9xxx_ahbclock(void)
{
	return ns9xxx_systemclock() / 4;
}

static inline u32 ns9xxx_bbusclock(void) __attribute__((const));
static inline u32 ns9xxx_bbusclock(void)
{
	return ns9xxx_systemclock() / 8;
}

#endif /* ifndef __ASM_ARCH_CLOCK_H */