xref: /openbmc/linux/drivers/clk/ux500/prcc.h (revision 6c8c1406)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __PRCC_H
4 #define __PRCC_H
5 
6 #define PRCC_NUM_PERIPH_CLUSTERS 6
7 #define PRCC_PERIPHS_PER_CLUSTER 32
8 
9 /* CLKRST4 is missing making it hard to index things */
10 enum clkrst_index {
11 	CLKRST1_INDEX = 0,
12 	CLKRST2_INDEX,
13 	CLKRST3_INDEX,
14 	CLKRST5_INDEX,
15 	CLKRST6_INDEX,
16 	CLKRST_MAX,
17 };
18 
19 #endif
20