M7350/kernel/arch/arm/include/asm/mmu.h

38 lines
647 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#ifndef __ARM_MMU_H
#define __ARM_MMU_H
#ifdef CONFIG_MMU
typedef struct {
#ifdef CONFIG_CPU_HAS_ASID
2024-09-09 08:57:42 +00:00
atomic64_t id;
#else
int switch_pending;
2024-09-09 08:52:07 +00:00
#endif
2024-09-09 08:57:42 +00:00
unsigned int vmalloc_seq;
2024-09-09 08:52:07 +00:00
unsigned long sigpage;
} mm_context_t;
#ifdef CONFIG_CPU_HAS_ASID
2024-09-09 08:57:42 +00:00
#define ASID_BITS 8
#define ASID_MASK ((~0ULL) << ASID_BITS)
#define ASID(mm) ((unsigned int)((mm)->context.id.counter & ~ASID_MASK))
2024-09-09 08:52:07 +00:00
#else
#define ASID(mm) (0)
#endif
#else
/*
* From nommu.h:
* Copyright (C) 2002, David McCullough <davidm@snapgear.com>
* modified for 2.6 by Hyok S. Choi <hyok.choi@samsung.com>
*/
typedef struct {
2024-09-09 08:57:42 +00:00
unsigned long end_brk;
2024-09-09 08:52:07 +00:00
} mm_context_t;
#endif
#endif