1295011Sandrew/*
2295011Sandrew * Copyright (C) 2015 Broadcom Corporation
3295011Sandrew *
4295011Sandrew * This program is free software; you can redistribute it and/or
5295011Sandrew * modify it under the terms of the GNU General Public License as
6295011Sandrew * published by the Free Software Foundation version 2.
7295011Sandrew *
8295011Sandrew * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9295011Sandrew * kind, whether express or implied; without even the implied warranty
10295011Sandrew * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11295011Sandrew * GNU General Public License for more details.
12295011Sandrew */
13295011Sandrew
14295011Sandrew#define BCM2835_PLLA			0
15295011Sandrew#define BCM2835_PLLB			1
16295011Sandrew#define BCM2835_PLLC			2
17295011Sandrew#define BCM2835_PLLD			3
18295011Sandrew#define BCM2835_PLLH			4
19295011Sandrew
20295011Sandrew#define BCM2835_PLLA_CORE		5
21295011Sandrew#define BCM2835_PLLA_PER		6
22295011Sandrew#define BCM2835_PLLB_ARM		7
23295011Sandrew#define BCM2835_PLLC_CORE0		8
24295011Sandrew#define BCM2835_PLLC_CORE1		9
25295011Sandrew#define BCM2835_PLLC_CORE2		10
26295011Sandrew#define BCM2835_PLLC_PER		11
27295011Sandrew#define BCM2835_PLLD_CORE		12
28295011Sandrew#define BCM2835_PLLD_PER		13
29295011Sandrew#define BCM2835_PLLH_RCAL		14
30295011Sandrew#define BCM2835_PLLH_AUX		15
31295011Sandrew#define BCM2835_PLLH_PIX		16
32295011Sandrew
33295011Sandrew#define BCM2835_CLOCK_TIMER		17
34295011Sandrew#define BCM2835_CLOCK_OTP		18
35295011Sandrew#define BCM2835_CLOCK_UART		19
36295011Sandrew#define BCM2835_CLOCK_VPU		20
37295011Sandrew#define BCM2835_CLOCK_V3D		21
38295011Sandrew#define BCM2835_CLOCK_ISP		22
39295011Sandrew#define BCM2835_CLOCK_H264		23
40295011Sandrew#define BCM2835_CLOCK_VEC		24
41295011Sandrew#define BCM2835_CLOCK_HSM		25
42295011Sandrew#define BCM2835_CLOCK_SDRAM		26
43295011Sandrew#define BCM2835_CLOCK_TSENS		27
44295011Sandrew#define BCM2835_CLOCK_EMMC		28
45295011Sandrew#define BCM2835_CLOCK_PERI_IMAGE	29
46295011Sandrew#define BCM2835_CLOCK_PWM		30
47295011Sandrew
48295011Sandrew#define BCM2835_CLOCK_COUNT		31
49