summaryrefslogtreecommitdiff
path: root/chip/mt_scp/mt8183/clock_chip.h
blob: a16bf2e54eda3e2062cc2771ea109aa79e946fe4 (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
29
30
31
32
33
34
/* Copyright 2019 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Clocks, PLL and power settings */

#ifndef __CROS_EC_CLOCK_CHIP_H
#define __CROS_EC_CLOCK_CHIP_H

#include "common.h"
#include "registers.h"

/* Default ULPOSC clock speed in MHz */
#ifndef ULPOSC1_CLOCK_MHZ
#define ULPOSC1_CLOCK_MHZ 240
#endif
#ifndef ULPOSC2_CLOCK_MHZ
#define ULPOSC2_CLOCK_MHZ 330
#endif

void scp_enable_clock(void);

enum scp_clock_source {
	SCP_CLK_26M = CLK_SEL_SYS_26M,
	SCP_CLK_32K = CLK_SEL_32K,
	SCP_CLK_ULPOSC2 = CLK_SEL_ULPOSC_2,
	SCP_CLK_ULPOSC1 = CLK_SEL_ULPOSC_1,
};

/* Switches to use 'src' clock */
void scp_use_clock(enum scp_clock_source src);

#endif /* __CROS_EC_CLOCK_CHIP_H */