summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-pxa/speed-pxa3xx.c
blob: b24b7a8fc380ef97fef27835772e11cea18cd5b2 (plain)
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
/*
 * clock.h - implementation of the PXA clock functions
 *
 * Copyright (C) 2014 by Robert Jarzmik <robert.jarzmik@free.fr>
 *
 * This file is released under the GPLv2
 *
 */

#include <common.h>
#include <init.h>
#include <linux/clk.h>
#include <linux/clkdev.h>
#include <mach/clock.h>
#include <mach/pxa-regs.h>

/* Crystal clock: 13MHz */
#define BASE_CLK	13000000

unsigned long pxa_get_uartclk(void)
{
	return 14857000;
}

unsigned long pxa_get_pwmclk(void)
{
	return BASE_CLK;
}

static int pxa3xx_clock_init(void)
{
	unsigned long nand_rate = (cpu_is_pxa320()) ? 104000000 : 156000000;
	struct clk *clk;
	int ret;

	clk = clk_fixed("nand", nand_rate);
	ret = clk_register_clkdev(clk, NULL, "nand");
	if (ret)
		return ret;

	return 0;
}
postcore_initcall(pxa3xx_clock_init);