blob: c56efc70ac16c40502aeccb0e5bf459d40659682 [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 */
Stephen Boydac82a8b2016-03-01 11:00:05 -080059 clk = clk_register_fixed_rate(NULL, "apb_pclk", NULL, 0, 0);
Linus Walleijf9a6aa42012-08-06 18:32:08 +020060 clk_register_clkdev(clk, "apb_pclk", NULL);
61
62 /* 24 MHz clock */
Stephen Boydac82a8b2016-03-01 11:00:05 -080063 clk = clk_register_fixed_rate(NULL, "clk24mhz", NULL, 0, 24000000);
Linus Walleijf9a6aa42012-08-06 18:32:08 +020064 clk_register_clkdev(clk, NULL, "dev:uart0");
65 clk_register_clkdev(clk, NULL, "dev:uart1");
66 clk_register_clkdev(clk, NULL, "dev:uart2");
67 clk_register_clkdev(clk, NULL, "fpga:kmi0");
68 clk_register_clkdev(clk, NULL, "fpga:kmi1");
69 clk_register_clkdev(clk, NULL, "fpga:mmc0");
70 clk_register_clkdev(clk, NULL, "dev:ssp0");
71 if (is_pb1176) {
72 /*
73 * UART3 is on the dev chip in PB1176
74 * UART4 only exists in PB1176
75 */
76 clk_register_clkdev(clk, NULL, "dev:uart3");
77 clk_register_clkdev(clk, NULL, "dev:uart4");
78 } else
79 clk_register_clkdev(clk, NULL, "fpga:uart3");
80
81
82 /* 1 MHz clock */
Stephen Boydac82a8b2016-03-01 11:00:05 -080083 clk = clk_register_fixed_rate(NULL, "clk1mhz", NULL, 0, 1000000);
Linus Walleijf9a6aa42012-08-06 18:32:08 +020084 clk_register_clkdev(clk, NULL, "sp804");
85
86 /* ICST VCO clock */
Linus Walleij7a9ad672012-11-20 23:01:04 +010087 if (is_pb1176)
Linus Walleijae6e6942013-11-22 11:30:05 +010088 clk = icst_clk_register(NULL, &realview_osc0_desc,
Linus Walleijbf6edb42014-01-20 21:31:41 +010089 "osc0", NULL, sysbase);
Linus Walleij7a9ad672012-11-20 23:01:04 +010090 else
Linus Walleijae6e6942013-11-22 11:30:05 +010091 clk = icst_clk_register(NULL, &realview_osc4_desc,
Linus Walleijbf6edb42014-01-20 21:31:41 +010092 "osc4", NULL, sysbase);
Linus Walleij7a9ad672012-11-20 23:01:04 +010093
Linus Walleijf9a6aa42012-08-06 18:32:08 +020094 clk_register_clkdev(clk, NULL, "dev:clcd");
95 clk_register_clkdev(clk, NULL, "issp:clcd");
96}