source: mainline/kernel/arch/mips32/include/arch/mm/tlb.h@ c5429fe

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since c5429fe was c5429fe, checked in by Jakub Jermar <jakub@…>, 7 years ago

Disambiguate architecture specific doxygroups

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[f761f1eb]1/*
[df4ed85]2 * Copyright (c) 2003-2004 Jakub Jermar
[f761f1eb]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[c5429fe]29/** @addtogroup kernel_mips32_mm
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[06e1e95]35#ifndef KERN_mips32_TLB_H_
36#define KERN_mips32_TLB_H_
[f761f1eb]37
[edebc15c]38#include <arch/mm/asid.h>
[909c6e3]39#include <arch/exception.h>
[525c5ac]40#include <stdbool.h>
[7a0359b]41#include <trace.h>
[525c5ac]42#include <typedefs.h>
[909c6e3]43
[ba5cff5]44#if defined(PROCESSOR_R4000)
[e2d97d7]45#define TLB_ENTRY_COUNT 48
[d704d7f]46#define TLB_INDEX_BITS 6
[ba5cff5]47#elif defined(PROCESSOR_4Kc)
48#define TLB_ENTRY_COUNT 16
[d704d7f]49#define TLB_INDEX_BITS 4
[ba5cff5]50#else
51#error Please define TLB_ENTRY_COUNT for the target processor.
52#endif
[ce031f0]53
[1b20da0]54#define TLB_WIRED 0
[ce031f0]55
[e2d97d7]56#define TLB_PAGE_MASK_4K (0x000 << 13)
57#define TLB_PAGE_MASK_16K (0x003 << 13)
58#define TLB_PAGE_MASK_64K (0x00f << 13)
59#define TLB_PAGE_MASK_256K (0x03f << 13)
60#define TLB_PAGE_MASK_1M (0x0ff << 13)
61#define TLB_PAGE_MASK_4M (0x3ff << 13)
62#define TLB_PAGE_MASK_16M (0xfff << 13)
[ce031f0]63
[e2d97d7]64#define PAGE_UNCACHED 2
65#define PAGE_CACHEABLE_EXC_WRITE 5
[a1a03f9]66
[b3f8fb7]67typedef union {
[cc205f1]68 struct {
[aac12264]69#ifdef __BE__
[e2d97d7]70 unsigned : 2; /* zero */
71 unsigned pfn : 24; /* frame number */
72 unsigned c : 3; /* cache coherency attribute */
73 unsigned d : 1; /* dirty/write-protect bit */
74 unsigned v : 1; /* valid bit */
75 unsigned g : 1; /* global bit */
[f15fe51]76#else
[e2d97d7]77 unsigned g : 1; /* global bit */
78 unsigned v : 1; /* valid bit */
79 unsigned d : 1; /* dirty/write-protect bit */
80 unsigned c : 3; /* cache coherency attribute */
81 unsigned pfn : 24; /* frame number */
82 unsigned : 2; /* zero */
[f15fe51]83#endif
[3bacee1]84 } __attribute__((packed));
[7f1c620]85 uint32_t value;
[b3f8fb7]86} entry_lo_t;
87
88typedef union {
[cc205f1]89 struct {
[aac12264]90#ifdef __BE__
[f15fe51]91 unsigned vpn2 : 19;
92 unsigned : 5;
93 unsigned asid : 8;
94#else
[cc205f1]95 unsigned asid : 8;
96 unsigned : 5;
97 unsigned vpn2 : 19;
[f15fe51]98#endif
[3bacee1]99 } __attribute__((packed));
[7f1c620]100 uint32_t value;
[b3f8fb7]101} entry_hi_t;
[cc205f1]102
[b3f8fb7]103typedef union {
[cc205f1]104 struct {
[aac12264]105#ifdef __BE__
[f15fe51]106 unsigned : 7;
107 unsigned mask : 12;
108 unsigned : 13;
109#else
[cc205f1]110 unsigned : 13;
111 unsigned mask : 12;
112 unsigned : 7;
[f15fe51]113#endif
[3bacee1]114 } __attribute__((packed));
[7f1c620]115 uint32_t value;
[b3f8fb7]116} page_mask_t;
[cc205f1]117
[b3f8fb7]118typedef union {
[cc205f1]119 struct {
[aac12264]120#ifdef __BE__
[f15fe51]121 unsigned p : 1;
[d704d7f]122 unsigned : 32 - TLB_INDEX_BITS - 1;
123 unsigned index : TLB_INDEX_BITS;
[f15fe51]124#else
[d704d7f]125 unsigned index : TLB_INDEX_BITS;
126 unsigned : 32 - TLB_INDEX_BITS - 1;
[cc205f1]127 unsigned p : 1;
[f15fe51]128#endif
[3bacee1]129 } __attribute__((packed));
[7f1c620]130 uint32_t value;
[b3f8fb7]131} tlb_index_t;
[cc205f1]132
[38a1a84]133/** Probe TLB for Matching Entry
134 *
135 * Probe TLB for Matching Entry.
136 */
[7a0359b]137NO_TRACE static inline void tlbp(void)
[38a1a84]138{
[e7b7be3f]139 asm volatile ("tlbp\n\t");
[38a1a84]140}
141
[ce031f0]142/** Read Indexed TLB Entry
143 *
144 * Read Indexed TLB Entry.
145 */
[7a0359b]146NO_TRACE static inline void tlbr(void)
[ce031f0]147{
[e7b7be3f]148 asm volatile ("tlbr\n\t");
[ce031f0]149}
150
151/** Write Indexed TLB Entry
152 *
153 * Write Indexed TLB Entry.
154 */
[7a0359b]155NO_TRACE static inline void tlbwi(void)
[ce031f0]156{
[e7b7be3f]157 asm volatile ("tlbwi\n\t");
[ce031f0]158}
159
160/** Write Random TLB Entry
161 *
162 * Write Random TLB Entry.
163 */
[7a0359b]164NO_TRACE static inline void tlbwr(void)
[ce031f0]165{
[e7b7be3f]166 asm volatile ("tlbwr\n\t");
[ce031f0]167}
168
[e2d97d7]169#define tlb_invalidate(asid) tlb_invalidate_asid(asid)
[dd14cced]170
[25d7709]171extern void tlb_invalid(istate_t *istate);
172extern void tlb_refill(istate_t *istate);
173extern void tlb_modified(istate_t *istate);
[edebc15c]174extern void tlb_prepare_entry_lo(entry_lo_t *lo, bool g, bool v, bool d, bool cacheable, uintptr_t pfn);
175extern void tlb_prepare_entry_hi(entry_hi_t *hi, asid_t asid, uintptr_t addr);
[f761f1eb]176
177#endif
[b45c443]178
[2f40fe4]179/** @}
[b45c443]180 */
Note: See TracBrowser for help on using the repository browser.