1157088Simp/*-
2157088Simp * Copyright (c) 2005 M. Warner Losh.  All rights reserved.
3157088Simp *
4157088Simp * Redistribution and use in source and binary forms, with or without
5157088Simp * modification, are permitted provided that the following conditions
6157088Simp * are met:
7157088Simp * 1. Redistributions of source code must retain the above copyright
8157088Simp *    notice, this list of conditions and the following disclaimer.
9157088Simp * 2. Redistributions in binary form must reproduce the above copyright
10157088Simp *    notice, this list of conditions and the following disclaimer in the
11157088Simp *    documentation and/or other materials provided with the distribution.
12157088Simp *
13185265Simp * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14185265Simp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15185265Simp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16185265Simp * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
17185265Simp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18185265Simp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19185265Simp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20185265Simp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21185265Simp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22185265Simp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23185265Simp * SUCH DAMAGE.
24157088Simp */
25157088Simp
26157088Simp/* $FreeBSD$ */
27157088Simp
28157088Simp#ifndef ARM_AT91_AT91_PMCREG_H
29157088Simp#define ARM_AT91_AT91_PMCREG_H
30157088Simp
31157088Simp/* Registers */
32157088Simp#define	PMC_SCER	0x00		/* System Clock Enable Register */
33157088Simp#define	PMC_SCDR	0x04		/* System Clock Disable Register */
34157088Simp#define	PMC_SCSR	0x08		/* System Clock Status Register */
35157088Simp		/*	0x0c		   reserved */
36157088Simp#define	PMC_PCER	0x10		/* Peripheral Clock Enable Register */
37157088Simp#define	PMC_PCDR	0x14		/* Peripheral Clock Disable Register */
38157088Simp#define	PMC_PCSR	0x18		/* Peripheral Clock Status Register */
39238788Sandrew#define	CKGR_UCKR	0x1c		/* UTMI Clock Configuration Register */
40157088Simp#define CKGR_MOR	0x20		/* Main Oscillator Register */
41157088Simp#define CKGR_MCFR	0x24		/* Main Clock Frequency Register */
42157088Simp#define CKGR_PLLAR	0x28		/* PLL A Register */
43157088Simp#define CKGR_PLLBR	0x2c		/* PLL B Register */
44157088Simp#define PMC_MCKR	0x30		/* Master Clock Register */
45157088Simp		/*	0x34		   reserved */
46238788Sandrew#define	PMC_USB		0x38		/* USB Clock Register */
47157088Simp		/*	0x3c		   reserved */
48157088Simp#define PMC_PCK0	0x40		/* Programmable Clock 0 Register */
49157088Simp#define PMC_PCK1	0x44		/* Programmable Clock 1 Register */
50157088Simp#define PMC_PCK2	0x48		/* Programmable Clock 2 Register */
51157088Simp#define PMC_PCK3	0x4c		/* Programmable Clock 3 Register */
52157088Simp		/*	0x50		   reserved */
53157088Simp		/*	0x54		   reserved */
54157088Simp		/*	0x58		   reserved */
55157088Simp		/*	0x5c		   reserved */
56157088Simp#define PMC_IER		0x60		/* Interrupt Enable Register */
57157088Simp#define PMC_IDR		0x64		/* Interrupt Disable Register */
58157088Simp#define PMC_SR		0x68		/* Status Register */
59157088Simp#define PMC_IMR		0x6c		/* Interrupt Mask Register */
60239167Simp		/*	0x70		   reserved */
61239167Simp		/*	0x74		   reserved */
62239167Simp		/*	0x78		   reserved */
63239167Simp		/*	0x7c		   reserved */
64239167Simp#define	PMC_PLLICPR	0x80		/* PLL Charge Pump Current Register */
65157088Simp
66157088Simp/* PMC System Clock Enable Register */
67157088Simp/* PMC System Clock Disable Register */
68157088Simp/* PMC System Clock StatusRegister */
69157088Simp#define PMC_SCER_PCK	(1UL << 0)	/* PCK: Processor Clock Enable */
70157088Simp#define PMC_SCER_UDP	(1UL << 1)	/* UDP: USB Device Port Clock Enable */
71157088Simp#define PMC_SCER_MCKUDP	(1UL << 2)	/* MCKUDP: Master disable susp/res */
72157088Simp#define PMC_SCER_UHP	(1UL << 4)	/* UHP: USB Host Port Clock Enable */
73157088Simp#define PMC_SCER_PCK0	(1UL << 8)	/* PCK0: Programmable Clock out en */
74213496Scognet#define PMC_SCER_PCK1	(1UL << 9)	/* PCK1: Programmable Clock out en */
75213496Scognet#define PMC_SCER_PCK2	(1UL << 10)	/* PCK2: Programmable Clock out en */
76213496Scognet#define PMC_SCER_PCK3	(1UL << 11)	/* PCK3: Programmable Clock out en */
77213496Scognet#define PMC_SCER_UHP_SAM9 (1UL << 6)	/* UHP: USB Host Port Clock Enable */
78213496Scognet#define PMC_SCER_UDP_SAM9 (1UL << 7)	/* UDP: USB Device Port Clock Enable */
79157088Simp
80157088Simp/* PMC Peripheral Clock Enable Register */
81157088Simp/* PMC Peripheral Clock Disable Register */
82157088Simp/* PMC Peripheral Clock Status Register */
83157088Simp/* Each bit here is 1 << peripheral number  to enable/disable/status */
84157088Simp
85238788Sandrew/* PMC UTMI Clock Configuration Register */
86238788Sandrew#define	CKGR_UCKR_BIASEN	(1UL << 24)
87238788Sandrew#define	CKGR_UCKR_UPLLEN	(1UL << 16)
88238788Sandrew
89157088Simp/* PMC Clock Generator Main Oscillator Register */
90157088Simp#define CKGR_MOR_MOSCEN	(1UL << 0)	/* MOSCEN: Main Oscillator Enable */
91157088Simp#define CKGR_MOR_OSCBYPASS (1UL << 1)	/* Oscillator Bypass */
92157088Simp#define CKGR_MOR_OSCOUNT(x) (x << 8)	/* Main Oscillator Start-up Time */
93157088Simp
94157088Simp/* PMC Clock Generator Main Clock Frequency Register */
95157088Simp#define CKGR_MCFR_MAINRDY	(1UL << 16)	/* Main Clock Ready */
96157088Simp#define CKGR_MCFR_MAINF_MASK	0xfffful	/* Main Clock Frequency */
97157088Simp
98213496Scognet/* PMC Clock Generator Master Clock Register */
99213496Scognet#define PMC_MCKR_PDIV      (1 << 12)			/* SAM9G20 Only */
100213496Scognet#define PMC_MCKR_PLLADIV2  (1 << 12)			/* SAM9G45 Only */
101213498Scognet#define PMC_MCKR_CSS_MASK  (3 << 0)
102213496Scognet#define PMC_MCKR_MDIV_MASK (3 << 8)
103213496Scognet#define PMC_MCKR_PRES_MASK (7 << 2)
104213496Scognet
105238788Sandrew/* PMC USB Clock Register */
106238788Sandrew#define	PMC_USB_USBDIV(n) (((n) & 0x0F) << 8)
107238788Sandrew#define	PMC_USB_USBS (1 << 0)
108238788Sandrew
109157088Simp/* PMC Interrupt Enable Register */
110157088Simp/* PMC Interrupt Disable Register */
111157088Simp/* PMC Status Register */
112157088Simp/* PMC Interrupt Mask Register */
113157088Simp#define PMC_IER_MOSCS	(1UL << 0)	/* Main Oscillator Status */
114157088Simp#define PMC_IER_LOCKA	(1UL << 1)	/* PLL A Locked */
115157088Simp#define PMC_IER_LOCKB	(1UL << 2)	/* PLL B Locked */
116157088Simp#define PMC_IER_MCKRDY	(1UL << 3)	/* Master Clock Status */
117238788Sandrew#define	PMC_IER_LOCKU	(1UL << 6)	/* UPLL Locked */
118157088Simp#define PMC_IER_PCK0RDY	(1UL << 8)	/* Programmable Clock 0 Ready */
119157088Simp#define PMC_IER_PCK1RDY	(1UL << 9)	/* Programmable Clock 1 Ready */
120157088Simp#define PMC_IER_PCK2RDY	(1UL << 10)	/* Programmable Clock 2 Ready */
121157088Simp#define PMC_IER_PCK3RDY	(1UL << 11)	/* Programmable Clock 3 Ready */
122157088Simp
123157088Simp/*
124157088Simp * PLL input frequency spec sheet says it must be between 1MHz and 32MHz,
125157088Simp * but it works down as low as 100kHz, a frequency necessary for some
126157088Simp * output frequencies to work.
127157088Simp */
128157088Simp#define PMC_PLL_MIN_IN_FREQ	100000
129157088Simp#define PMC_PLL_MAX_IN_FREQ	32000000
130157088Simp
131157088Simp/*
132157088Simp * PLL Max output frequency is 240MHz.  The errata says 180MHz is the max
133157088Simp * for some revisions of this part.  Be more permissive and optimistic.
134157088Simp */
135157088Simp#define PMC_PLL_MAX_OUT_FREQ	240000000
136157088Simp
137157088Simp#define PMC_PLL_MULT_MIN	2
138157088Simp#define PMC_PLL_MULT_MAX	2048
139157088Simp
140157088Simp#define PMC_PLL_SHIFT_TOL	5	/* Allow errors 1 part in 32 */
141157088Simp
142157088Simp#define PMC_PLL_FAST_THRESH	155000000
143157088Simp
144157088Simp#endif /* ARM_AT91_AT91_PMCREG_H */
145