summaryrefslogtreecommitdiff
path: root/chip/mt_scp/rv32i_common/clock_chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'chip/mt_scp/rv32i_common/clock_chip.h')
-rw-r--r--chip/mt_scp/rv32i_common/clock_chip.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/chip/mt_scp/rv32i_common/clock_chip.h b/chip/mt_scp/rv32i_common/clock_chip.h
deleted file mode 100644
index ee1c22be92..0000000000
--- a/chip/mt_scp/rv32i_common/clock_chip.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Copyright 2020 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 "registers.h"
-
-enum scp_clock_source {
- SCP_CLK_26M = CLK_SW_SEL_26M,
- SCP_CLK_32K = CLK_SW_SEL_32K,
- SCP_CLK_ULPOSC2 = CLK_SW_SEL_ULPOSC2,
- SCP_CLK_ULPOSC1 = CLK_SW_SEL_ULPOSC1,
-};
-
-/* Switches to use 'src' clock */
-void clock_select_clock(enum scp_clock_source src);
-
-#endif /* __CROS_EC_CLOCK_CHIP_H */