clock.h 3.6 KB
Newer Older
1 2 3
/*
 * TI DaVinci clock definitions
 *
4 5
 * Copyright (C) 2006-2007 Texas Instruments.
 * Copyright (C) 2008-2009 Deep Root Systems, LLC
6 7 8 9 10 11 12 13 14
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef __ARCH_ARM_DAVINCI_CLOCK_H
#define __ARCH_ARM_DAVINCI_CLOCK_H

15 16 17 18 19 20 21
#define DAVINCI_PLL1_BASE 0x01c40800
#define DAVINCI_PLL2_BASE 0x01c40c00
#define MAX_PLL 2

/* PLL/Reset register offsets */
#define PLLCTL          0x100
#define PLLCTL_PLLEN    BIT(0)
22 23 24 25
#define PLLCTL_PLLPWRDN	BIT(1)
#define PLLCTL_PLLRST	BIT(3)
#define PLLCTL_PLLDIS	BIT(4)
#define PLLCTL_PLLENSRC	BIT(5)
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
#define PLLCTL_CLKMODE  BIT(8)

#define PLLM		0x110
#define PLLM_PLLM_MASK  0xff

#define PREDIV          0x114
#define PLLDIV1         0x118
#define PLLDIV2         0x11c
#define PLLDIV3         0x120
#define POSTDIV         0x128
#define BPDIV           0x12c
#define PLLCMD		0x138
#define PLLSTAT		0x13c
#define PLLALNCTL	0x140
#define PLLDCHANGE	0x144
#define PLLCKEN		0x148
#define PLLCKSTAT	0x14c
#define PLLSYSTAT	0x150
#define PLLDIV4         0x160
#define PLLDIV5         0x164
#define PLLDIV6         0x168
#define PLLDIV7         0x16c
#define PLLDIV8         0x170
#define PLLDIV9         0x174
#define PLLDIV_EN       BIT(15)
#define PLLDIV_RATIO_MASK 0x1f

53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
/*
 * OMAP-L138 system reference guide recommends a wait for 4 OSCIN/CLKIN
 * cycles to ensure that the PLLC has switched to bypass mode. Delay of 1us
 * ensures we are good for all > 4MHz OSCIN/CLKIN inputs. Typically the input
 * is ~25MHz. Units are micro seconds.
 */
#define PLL_BYPASS_TIME		1
/* From OMAP-L138 datasheet table 6-4. Units are micro seconds */
#define PLL_RESET_TIME		1
/*
 * From OMAP-L138 datasheet table 6-4; assuming prediv = 1, sqrt(pllm) = 4
 * Units are micro seconds.
 */
#define PLL_LOCK_TIME		20

68 69 70
#ifndef __ASSEMBLER__

#include <linux/list.h>
71
#include <linux/clkdev.h>
72

73 74 75
#define PLLSTAT_GOSTAT	BIT(0)
#define PLLCMD_GOSET	BIT(0)

76 77 78 79 80 81
struct pll_data {
	u32 phys_base;
	void __iomem *base;
	u32 num;
	u32 flags;
	u32 input_rate;
82
	u32 div_ratio_mask;
83 84 85 86
};
#define PLL_HAS_PREDIV          0x01
#define PLL_HAS_POSTDIV         0x02

87 88 89 90
struct clk {
	struct list_head	node;
	struct module		*owner;
	const char		*name;
91
	unsigned long		rate;
92
	unsigned long		maxrate;	/* H/W supported max rate */
93 94
	u8			usecount;
	u8			lpsc;
95
	u8			gpsc;
96
	u32			flags;
97
	struct clk              *parent;
98 99
	struct list_head	children; 	/* list of children */
	struct list_head	childnode;	/* parent's child list node */
100 101
	struct pll_data         *pll_data;
	u32                     div_reg;
102
	unsigned long (*recalc) (struct clk *);
103 104
	int (*set_rate) (struct clk *clk, unsigned long rate);
	int (*round_rate) (struct clk *clk, unsigned long rate);
105 106
};

107
/* Clock flags: SoC-specific flags start at BIT(16) */
108
#define ALWAYS_ENABLED		BIT(1)
109 110
#define CLK_PSC			BIT(2)
#define PSC_DSP			BIT(3) /* PSC uses DSP domain, not ARM */
111
#define CLK_PLL			BIT(4) /* PLL-derived clock */
112 113
#define PRE_PLL			BIT(5) /* source is before PLL mult/div */
#define PSC_SWRSTDISABLE	BIT(6) /* Disable state is SwRstDisable */
114
#define PSC_FORCE		BIT(7) /* Force module state transtition */
115

116 117 118 119 120 121 122 123
#define CLK(dev, con, ck) 	\
	{			\
		.dev_id = dev,	\
		.con_id = con,	\
		.clk = ck,	\
	}			\

int davinci_clk_init(struct clk_lookup *clocks);
124 125
int davinci_set_pllrate(struct pll_data *pll, unsigned int prediv,
				unsigned int mult, unsigned int postdiv);
126
int davinci_set_sysclk_rate(struct clk *clk, unsigned long rate);
127 128

extern struct platform_device davinci_wdt_device;
129
extern void davinci_watchdog_reset(struct platform_device *);
130

131
#endif
132 133

#endif