blob: bd4dd2463e23c99082345fd58104aae6268ea6e3 [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
Linus Walleijf9a6aa42012-08-06 18:32:08 +020014#include "clk-icst.h"
15
Arnd Bergmann3c30a4a2015-11-25 17:32:16 +010016#define REALVIEW_SYS_OSC0_OFFSET 0x0C
17#define REALVIEW_SYS_OSC1_OFFSET 0x10
18#define REALVIEW_SYS_OSC2_OFFSET 0x14
19#define REALVIEW_SYS_OSC3_OFFSET 0x18
20#define REALVIEW_SYS_OSC4_OFFSET 0x1C /* OSC1 for RealView/AB */
21#define REALVIEW_SYS_LOCK_OFFSET 0x20
22
Linus Walleijf9a6aa42012-08-06 18:32:08 +020023/*
24 * Implementation of the ARM RealView clock trees.
25 */
26
Linus Walleijf9a6aa42012-08-06 18:32:08 +020027static const struct icst_params realview_oscvco_params = {
28 .ref = 24000000,
29 .vco_max = ICST307_VCO_MAX,
30 .vco_min = ICST307_VCO_MIN,
31 .vd_min = 4 + 8,
32 .vd_max = 511 + 8,
33 .rd_min = 1 + 2,
34 .rd_max = 127 + 2,
35 .s2div = icst307_s2div,
36 .idx2s = icst307_idx2s,
37};
38
Nicolas Pitree3ee2762015-07-28 19:43:20 -040039static const struct clk_icst_desc realview_osc0_desc __initconst = {
Linus Walleijf9a6aa42012-08-06 18:32:08 +020040 .params = &realview_oscvco_params,
Linus Walleij7a9ad672012-11-20 23:01:04 +010041 .vco_offset = REALVIEW_SYS_OSC0_OFFSET,
42 .lock_offset = REALVIEW_SYS_LOCK_OFFSET,
43};
44
Nicolas Pitree3ee2762015-07-28 19:43:20 -040045static const struct clk_icst_desc realview_osc4_desc __initconst = {
Linus Walleij7a9ad672012-11-20 23:01:04 +010046 .params = &realview_oscvco_params,
47 .vco_offset = REALVIEW_SYS_OSC4_OFFSET,
48 .lock_offset = REALVIEW_SYS_LOCK_OFFSET,
Linus Walleijf9a6aa42012-08-06 18:32:08 +020049};
50
51/*
52 * realview_clk_init() - set up the RealView clock tree
53 */
54void __init realview_clk_init(void __iomem *sysbase, bool is_pb1176)
55{
56 struct clk *clk;
57
Linus Walleijf9a6aa42012-08-06 18:32:08 +020058 /* APB clock dummy */
59 clk = clk_register_fixed_rate(NULL, "apb_pclk", NULL, CLK_IS_ROOT, 0);
60 clk_register_clkdev(clk, "apb_pclk", NULL);
61
62 /* 24 MHz clock */
63 clk = clk_register_fixed_rate(NULL, "clk24mhz", NULL, CLK_IS_ROOT,
64 24000000);
65 clk_register_clkdev(clk, NULL, "dev:uart0");
66 clk_register_clkdev(clk, NULL, "dev:uart1");
67 clk_register_clkdev(clk, NULL, "dev:uart2");
68 clk_register_clkdev(clk, NULL, "fpga:kmi0");
69 clk_register_clkdev(clk, NULL, "fpga:kmi1");
70 clk_register_clkdev(clk, NULL, "fpga:mmc0");
71 clk_register_clkdev(clk, NULL, "dev:ssp0");
72 if (is_pb1176) {
73 /*
74 * UART3 is on the dev chip in PB1176
75 * UART4 only exists in PB1176
76 */
77 clk_register_clkdev(clk, NULL, "dev:uart3");
78 clk_register_clkdev(clk, NULL, "dev:uart4");
79 } else
80 clk_register_clkdev(clk, NULL, "fpga:uart3");
81
82
83 /* 1 MHz clock */
84 clk = clk_register_fixed_rate(NULL, "clk1mhz", NULL, CLK_IS_ROOT,
85 1000000);
86 clk_register_clkdev(clk, NULL, "sp804");
87
88 /* ICST VCO clock */
Linus Walleij7a9ad672012-11-20 23:01:04 +010089 if (is_pb1176)
Linus Walleijae6e6942013-11-22 11:30:05 +010090 clk = icst_clk_register(NULL, &realview_osc0_desc,
Linus Walleijbf6edb42014-01-20 21:31:41 +010091 "osc0", NULL, sysbase);
Linus Walleij7a9ad672012-11-20 23:01:04 +010092 else
Linus Walleijae6e6942013-11-22 11:30:05 +010093 clk = icst_clk_register(NULL, &realview_osc4_desc,
Linus Walleijbf6edb42014-01-20 21:31:41 +010094 "osc4", NULL, sysbase);
Linus Walleij7a9ad672012-11-20 23:01:04 +010095
Linus Walleijf9a6aa42012-08-06 18:32:08 +020096 clk_register_clkdev(clk, NULL, "dev:clcd");
97 clk_register_clkdev(clk, NULL, "issp:clcd");
98}