blob: 5e906c5e7d7b8f79752845c25124f0a6a14f873e [file] [log] [blame]
Simon Glassfcfd26e2019-12-08 17:40:14 -07001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright 2019 Google LLC
4 */
5
6#ifndef _ASM_ARCH_CPU_H
7#define _ASM_ARCH_CPU_H
8
9/* Common Timer Copy (CTC) frequency - 19.2MHz */
10#define CTC_FREQ 19200000
11
12#define MAX_PCIE_PORTS 6
13#define CLKREQ_DISABLED 0xf
14
15#ifndef __ASSEMBLY__
16/* Flush L1D to L2 */
17void cpu_flush_l1d_to_l2(void);
18#endif
19
20#endif /* _ASM_ARCH_CPU_H */