blob: a99ed3cb987bd027ed7c3aca68d89829173a5632 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef __CPU_TI_AM335X_DMTIMER_H__
#define __CPU_TI_AM335X_DMTIMER_H__
#include <stdint.h>
#define OSC_HZ 24000000
void dmtimer_start(int num);
uint64_t dmtimer_raw_value(int num);
#endif
|