1/*
2 * Copyright 2017, Data61
3 * Commonwealth Scientific and Industrial Research Organisation (CSIRO)
4 * ABN 41 687 119 230.
5 *
6 * This software may be distributed and modified according to the terms of
7 * the BSD 2-Clause license. Note that NO WARRANTY is provided.
8 * See "LICENSE_BSD2.txt" for details.
9 *
10 * @TAG(DATA61_BSD)
11 */
12
13#pragma once
14
15enum clk_id {
16    CLK_MASTER,
17    CLK_ARM,        /* 800MHz - 1.2GHz             */
18    CKL_SYS,        /* 480 MHz, with multiple PFDs */
19    CLK_ENET,       /* 630-1300MHz, set to 1000MHz */
20    CLK_AUDIO,      /* 650-1300MHz                 */
21    CLK_VIDEO,      /* 650-1300MHz                 */
22    CLK_DRAM,       /* 800-1066MHz                 */
23    NCLOCKS,
24};
25
26enum clock_gate {
27    NCLKGATES
28};
29