prcc.h 336 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. #ifndef __PRCC_H
  3. #define __PRCC_H
  4. #define PRCC_NUM_PERIPH_CLUSTERS 6
  5. #define PRCC_PERIPHS_PER_CLUSTER 32
  6. /* CLKRST4 is missing making it hard to index things */
  7. enum clkrst_index {
  8. CLKRST1_INDEX = 0,
  9. CLKRST2_INDEX,
  10. CLKRST3_INDEX,
  11. CLKRST5_INDEX,
  12. CLKRST6_INDEX,
  13. CLKRST_MAX,
  14. };
  15. #endif