File: highmem.c

package info (click to toggle)
linux 6.12.38-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,675,544 kB
  • sloc: ansic: 25,916,840; asm: 269,589; sh: 136,393; python: 65,219; makefile: 55,714; perl: 37,750; xml: 19,284; cpp: 5,894; yacc: 4,927; lex: 2,939; awk: 1,594; sed: 28; ruby: 25
file content (59 lines) | stat: -rw-r--r-- 1,480 bytes parent folder | download | duplicates (32)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * High memory support for Xtensa architecture
 *
 * This file is subject to the terms and conditions of the GNU General
 * Public License.  See the file "COPYING" in the main directory of
 * this archive for more details.
 *
 * Copyright (C) 2014 Cadence Design Systems Inc.
 */

#include <linux/export.h>
#include <linux/highmem.h>
#include <asm/tlbflush.h>

#if DCACHE_WAY_SIZE > PAGE_SIZE
unsigned int last_pkmap_nr_arr[DCACHE_N_COLORS];
wait_queue_head_t pkmap_map_wait_arr[DCACHE_N_COLORS];

static void __init kmap_waitqueues_init(void)
{
	unsigned int i;

	for (i = 0; i < ARRAY_SIZE(pkmap_map_wait_arr); ++i)
		init_waitqueue_head(pkmap_map_wait_arr + i);
}

static inline enum fixed_addresses kmap_idx(int type, unsigned long color)
{
	int idx = (type + KM_MAX_IDX * smp_processor_id()) * DCACHE_N_COLORS;

	/*
	 * The fixmap operates top down, so the color offset needs to be
	 * reverse as well.
	 */
	return idx + DCACHE_N_COLORS - 1 - color;
}

enum fixed_addresses kmap_local_map_idx(int type, unsigned long pfn)
{
	return kmap_idx(type, DCACHE_ALIAS(pfn << PAGE_SHIFT));
}

enum fixed_addresses kmap_local_unmap_idx(int type, unsigned long addr)
{
	return kmap_idx(type, DCACHE_ALIAS(addr));
}

#else
static inline void kmap_waitqueues_init(void) { }
#endif

void __init kmap_init(void)
{
	/* Check if this memory layout is broken because PKMAP overlaps
	 * page table.
	 */
	BUILD_BUG_ON(PKMAP_BASE < TLBTEMP_BASE_1 + TLBTEMP_SIZE);
	kmap_waitqueues_init();
}