mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 02:35:28 +00:00
Add nopll command to turn off the PLL, reducing the system clock to 16Mhz. Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=chrome-os-partner:8798 TEST=manual boot system press power button to boot x86 temps // should print all temperatures timerinfo timerinfo timerinfo // convince yourself this is counting up at about 1MHz nopll // this drops the system clock to 16MHz temps // should still print all temperatures timerinfo timerinfo timerinfo // should still be counting up at about 1MHz Change-Id: Ie29ceb17af348148bffadf63d60c1b731f4c3f6d
24 lines
611 B
C
24 lines
611 B
C
/* Copyright (c) 2012 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 and power management settings */
|
|
|
|
#ifndef __CROS_EC_CLOCK_H
|
|
#define __CROS_EC_CLOCK_H
|
|
|
|
#include "common.h"
|
|
|
|
/* Set the CPU clocks and PLLs. */
|
|
int clock_init(void);
|
|
|
|
/* Returns the current clock frequency in Hz. */
|
|
int clock_get_freq(void);
|
|
|
|
/* Wait <cycles> system clock cycles. Simple busy waiting for before
|
|
* clocks/timers are initialized. */
|
|
void clock_wait_cycles(uint32_t cycles);
|
|
|
|
#endif /* __CROS_EC_CLOCK_H */
|