blob: 86f70997d59dce436d34c9c5aef74be0f367f869 [file] [log] [blame]
Linus Walleij401301c2012-11-20 22:39:31 +01001/*
2 * Clock driver for the ARM RealView boards
3 * Copyright (C) 2012 Linus Walleij
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
Linus Walleijf9a6aa42012-08-06 18:32:08 +02009#include <linux/clkdev.h>
10#include <linux/err.h>
11#include <linux/io.h>
12#include <linux/clk-provider.h>
13
14#include <mach/hardware.h>
15#include <mach/platform.h>
16
17#include "clk-icst.h"
18
19/*
20 * Implementation of the ARM RealView clock trees.
21 */
22
Linus Walleijf9a6aa42012-08-06 18:32:08 +020023static const struct icst_params realview_oscvco_params = {
24 .ref = 24000000,
25 .vco_max = ICST307_VCO_MAX,
26 .vco_min = ICST307_VCO_MIN,
27 .vd_min = 4 + 8,
28 .vd_max = 511 + 8,
29 .rd_min = 1 + 2,
30 .rd_max = 127 + 2,
31 .s2div = icst307_s2div,
32 .idx2s = icst307_idx2s,
33};
34
Nicolas Pitree3ee2762015-07-28 19:43:20 -040035static const struct clk_icst_desc realview_osc0_desc __initconst = {
Linus Walleijf9a6aa42012-08-06 18:32:08 +020036 .params = &realview_oscvco_params,
Linus Walleij7a9ad672012-11-20 23:01:04 +010037 .vco_offset = REALVIEW_SYS_OSC0_OFFSET,
38 .lock_offset = REALVIEW_SYS_LOCK_OFFSET,
39};
40
Nicolas Pitree3ee2762015-07-28 19:43:20 -040041static const struct clk_icst_desc realview_osc4_desc __initconst = {
Linus Walleij7a9ad672012-11-20 23:01:04 +010042 .params = &realview_oscvco_params,
43 .vco_offset = REALVIEW_SYS_OSC4_OFFSET,
44 .lock_offset = REALVIEW_SYS_LOCK_OFFSET,
Linus Walleijf9a6aa42012-08-06 18:32:08 +020045};
46
47/*
48 * realview_clk_init() - set up the RealView clock tree
49 */
50void __init realview_clk_init(void __iomem *sysbase, bool is_pb1176)
51{
52 struct clk *clk;
53
Linus Walleijf9a6aa42012-08-06 18:32:08 +020054 /* APB clock dummy */
55 clk = clk_register_fixed_rate(NULL, "apb_pclk", NULL, CLK_IS_ROOT, 0);
56 clk_register_clkdev(clk, "apb_pclk", NULL);
57
58 /* 24 MHz clock */
59 clk = clk_register_fixed_rate(NULL, "clk24mhz", NULL, CLK_IS_ROOT,
60 24000000);
61 clk_register_clkdev(clk, NULL, "dev:uart0");
62 clk_register_clkdev(clk, NULL, "dev:uart1");
63 clk_register_clkdev(clk, NULL, "dev:uart2");
64 clk_register_clkdev(clk, NULL, "fpga:kmi0");
65 clk_register_clkdev(clk, NULL, "fpga:kmi1");
66 clk_register_clkdev(clk, NULL, "fpga:mmc0");
67 clk_register_clkdev(clk, NULL, "dev:ssp0");
68 if (is_pb1176) {
69 /*
70 * UART3 is on the dev chip in PB1176
71 * UART4 only exists in PB1176
72 */
73 clk_register_clkdev(clk, NULL, "dev:uart3");
74 clk_register_clkdev(clk, NULL, "dev:uart4");
75 } else
76 clk_register_clkdev(clk, NULL, "fpga:uart3");
77
78
79 /* 1 MHz clock */
80 clk = clk_register_fixed_rate(NULL, "clk1mhz", NULL, CLK_IS_ROOT,
81 1000000);
82 clk_register_clkdev(clk, NULL, "sp804");
83
84 /* ICST VCO clock */
Linus Walleij7a9ad672012-11-20 23:01:04 +010085 if (is_pb1176)
Linus Walleijae6e6942013-11-22 11:30:05 +010086 clk = icst_clk_register(NULL, &realview_osc0_desc,
Linus Walleijbf6edb42014-01-20 21:31:41 +010087 "osc0", NULL, sysbase);
Linus Walleij7a9ad672012-11-20 23:01:04 +010088 else
Linus Walleijae6e6942013-11-22 11:30:05 +010089 clk = icst_clk_register(NULL, &realview_osc4_desc,
Linus Walleijbf6edb42014-01-20 21:31:41 +010090 "osc4", NULL, sysbase);
Linus Walleij7a9ad672012-11-20 23:01:04 +010091
Linus Walleijf9a6aa42012-08-06 18:32:08 +020092 clk_register_clkdev(clk, NULL, "dev:clcd");
93 clk_register_clkdev(clk, NULL, "issp:clcd");
94}