Simon Glass | fcfd26e | 2019-12-08 17:40:14 -0700 | [diff] [blame] | 1 | /* 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 */ | ||||
17 | void cpu_flush_l1d_to_l2(void); | ||||
18 | #endif | ||||
19 | |||||
20 | #endif /* _ASM_ARCH_CPU_H */ |