Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Feb 10-13, 2025
Register
Loading...
Note: File does not exist in v3.5.6.
 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 */
10enum 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