1 // Copyright 2018 The Fuchsia Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 typedef enum g12b_clk_gate_idx { 6 // SYS CPU CLK 7 G12B_CLK_SYS_PLL_DIV16 = 0, 8 G12B_CLK_SYS_CPU_CLK_DIV16 = 1, 9 10 // GPIO 24MHz 11 G12B_CLK_CAM_INCK_24M = 2, 12 13 // NB: This must be the last entry 14 CLK_G12B_COUNT, 15 } g12b_clk_gate_idx_t; 16