summaryrefslogtreecommitdiff
path: root/arch/arm/mach-ux500/include/mach/dcache.h
blob: 83fe618b04f44f8f4327386d0d0939df821043ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * Copyright (C) ST-Ericsson SA 2011
 *
 * Data cache helpers
 *
 * Author: Johan Mossberg <johan.xx.mossberg@stericsson.com>
 * for ST-Ericsson.
 *
 * License terms: GNU General Public License (GPL), version 2.
 */

#ifndef _MACH_UX500_DCACHE_H_
#define _MACH_UX500_DCACHE_H_

#include <linux/types.h>

void drain_cpu_write_buf(void);
void clean_cpu_dcache(void *vaddr, u32 paddr, u32 length, bool inner_only,
						bool *cleaned_everything);
void flush_cpu_dcache(void *vaddr, u32 paddr, u32 length, bool inner_only,
						bool *flushed_everything);
bool speculative_data_prefetch(void);
/* Returns 1 if no cache is present */
u32 get_dcache_granularity(void);

#endif /* _MACH_UX500_DCACHE_H_ */