blob: 01e36483ac3d0b4e5e32b768f556982ec20dd713 [file] [log] [blame]
Vladimir Barinov3e062b02007-06-05 16:36:55 +01001/*
2 * TI DaVinci clock definitions
3 *
Kevin Hilmanc5b736d2009-03-20 17:29:01 -07004 * Copyright (C) 2006-2007 Texas Instruments.
5 * Copyright (C) 2008-2009 Deep Root Systems, LLC
Vladimir Barinov3e062b02007-06-05 16:36:55 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#ifndef __ARCH_ARM_DAVINCI_CLOCK_H
13#define __ARCH_ARM_DAVINCI_CLOCK_H
14
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070015#define DAVINCI_PLL1_BASE 0x01c40800
16#define DAVINCI_PLL2_BASE 0x01c40c00
17#define MAX_PLL 2
18
19/* PLL/Reset register offsets */
20#define PLLCTL 0x100
21#define PLLCTL_PLLEN BIT(0)
Sekhar Norid6a61562009-08-31 15:48:03 +053022#define PLLCTL_PLLPWRDN BIT(1)
23#define PLLCTL_PLLRST BIT(3)
24#define PLLCTL_PLLDIS BIT(4)
25#define PLLCTL_PLLENSRC BIT(5)
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070026#define PLLCTL_CLKMODE BIT(8)
27
28#define PLLM 0x110
29#define PLLM_PLLM_MASK 0xff
30
31#define PREDIV 0x114
32#define PLLDIV1 0x118
33#define PLLDIV2 0x11c
34#define PLLDIV3 0x120
35#define POSTDIV 0x128
36#define BPDIV 0x12c
37#define PLLCMD 0x138
38#define PLLSTAT 0x13c
39#define PLLALNCTL 0x140
40#define PLLDCHANGE 0x144
41#define PLLCKEN 0x148
42#define PLLCKSTAT 0x14c
43#define PLLSYSTAT 0x150
44#define PLLDIV4 0x160
45#define PLLDIV5 0x164
46#define PLLDIV6 0x168
47#define PLLDIV7 0x16c
48#define PLLDIV8 0x170
49#define PLLDIV9 0x174
50#define PLLDIV_EN BIT(15)
51#define PLLDIV_RATIO_MASK 0x1f
52
Sekhar Nori9a219a92009-11-16 17:21:33 +053053/*
54 * OMAP-L138 system reference guide recommends a wait for 4 OSCIN/CLKIN
55 * cycles to ensure that the PLLC has switched to bypass mode. Delay of 1us
56 * ensures we are good for all > 4MHz OSCIN/CLKIN inputs. Typically the input
57 * is ~25MHz. Units are micro seconds.
58 */
59#define PLL_BYPASS_TIME 1
60/* From OMAP-L138 datasheet table 6-4. Units are micro seconds */
61#define PLL_RESET_TIME 1
62/*
63 * From OMAP-L138 datasheet table 6-4; assuming prediv = 1, sqrt(pllm) = 4
64 * Units are micro seconds.
65 */
66#define PLL_LOCK_TIME 20
67
Sekhar Norie2da3aa2009-11-16 17:21:36 +053068#ifndef __ASSEMBLER__
69
70#include <linux/list.h>
71#include <asm/clkdev.h>
72
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070073struct pll_data {
74 u32 phys_base;
75 void __iomem *base;
76 u32 num;
77 u32 flags;
78 u32 input_rate;
Cyril Chemparathyd6961e62010-04-14 14:44:49 -040079 u32 div_ratio_mask;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070080};
81#define PLL_HAS_PREDIV 0x01
82#define PLL_HAS_POSTDIV 0x02
83
Vladimir Barinov3e062b02007-06-05 16:36:55 +010084struct clk {
85 struct list_head node;
86 struct module *owner;
87 const char *name;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070088 unsigned long rate;
89 u8 usecount;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070090 u8 lpsc;
Sergei Shtylyov789a7852009-09-30 19:48:03 +040091 u8 gpsc;
Sekhar Nori5d36a332009-08-31 15:48:05 +053092 u32 flags;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070093 struct clk *parent;
Sekhar Norif02bf3b2009-08-31 15:48:01 +053094 struct list_head children; /* list of children */
95 struct list_head childnode; /* parent's child list node */
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070096 struct pll_data *pll_data;
97 u32 div_reg;
Sekhar Noride381a92009-08-31 15:48:02 +053098 unsigned long (*recalc) (struct clk *);
Sekhar Norid6a61562009-08-31 15:48:03 +053099 int (*set_rate) (struct clk *clk, unsigned long rate);
100 int (*round_rate) (struct clk *clk, unsigned long rate);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100101};
102
Sekhar Nori5d36a332009-08-31 15:48:05 +0530103/* Clock flags: SoC-specific flags start at BIT(16) */
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700104#define ALWAYS_ENABLED BIT(1)
Cyril Chemparathy52958be2010-03-25 17:43:47 -0400105#define CLK_PSC BIT(2)
106#define PSC_DSP BIT(3) /* PSC uses DSP domain, not ARM */
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700107#define CLK_PLL BIT(4) /* PLL-derived clock */
Cyril Chemparathy52958be2010-03-25 17:43:47 -0400108#define PRE_PLL BIT(5) /* source is before PLL mult/div */
109#define PSC_SWRSTDISABLE BIT(6) /* Disable state is SwRstDisable */
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100110
Kevin Hilman08aca082010-01-11 08:22:23 -0800111#define CLK(dev, con, ck) \
112 { \
113 .dev_id = dev, \
114 .con_id = con, \
115 .clk = ck, \
116 } \
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700117
Kevin Hilman08aca082010-01-11 08:22:23 -0800118int davinci_clk_init(struct clk_lookup *clocks);
Sekhar Norid6a61562009-08-31 15:48:03 +0530119int davinci_set_pllrate(struct pll_data *pll, unsigned int prediv,
120 unsigned int mult, unsigned int postdiv);
Kevin Hilmanfb631382009-04-29 16:23:59 -0700121
122extern struct platform_device davinci_wdt_device;
Cyril Chemparathyc78a5bc2010-05-01 18:38:28 -0400123extern void davinci_watchdog_reset(struct platform_device *);
Kevin Hilmanfb631382009-04-29 16:23:59 -0700124
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100125#endif
Sekhar Norie2da3aa2009-11-16 17:21:36 +0530126
127#endif