aboutsummaryrefslogtreecommitdiff
path: root/product/rdn1e1/mcp_ramfw/config_clock.h
blob: 9c132f8ee0caccae04b84277d3d06e70a41084b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2018-2019, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef CONFIG_CLOCK_H
#define CONFIG_CLOCK_H

#include <fwk_macros.h>

/*
 * PIK clock rates.
 */
#define PIK_CLK_RATE_MCP_CORECLK  (300 * FWK_MHZ)
#define PIK_CLK_RATE_MCP_AXICLK   (300 * FWK_MHZ)

/*
 * PIK clock indexes.
 */
enum clock_pik_idx {
    CLOCK_PIK_IDX_MCP_CORECLK,
    CLOCK_PIK_IDX_MCP_AXICLK,
    CLOCK_PIK_IDX_COUNT
};

#endif /* CONFIG_CLOCK_H */