]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/sun4v/include/tsb.h
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / sun4v / include / tsb.h
1 /*-
2  * Copyright (c) 2006 Kip Macy
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  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #ifndef _MACHINE_TSB_H_
30 #define _MACHINE_TSB_H_
31
32 #define MAX_TSB_INFO                     2
33
34 /*
35  * Values for "tsb_ttesz_mask" bitmask.
36  */
37 #define TSB8K   (1 << TTE8K)
38 #define TSB64K  (1 << TTE64K)
39 #define TSB512K (1 << TTE512K)
40 #define TSB4M   (1 << TTE4M)
41 #define TSB32M  (1 << TTE32M)
42 #define TSB256M (1 << TTE256M)
43
44 /*
45  * Kernel TSBs
46  */
47 #define TSB8K_INDEX           0
48 #define TSB4M_INDEX           1
49
50 extern hv_tsb_info_t kernel_td[MAX_TSB_INFO];
51
52 struct hv_tsb_info;
53
54
55 void tsb_init(struct hv_tsb_info *tsb, uint64_t *scratchval, uint64_t page_shift);
56
57 void tsb_deinit(struct hv_tsb_info *tsb);
58
59 void tsb_assert_invalid(struct hv_tsb_info *tsb, vm_offset_t va);
60
61 void tsb_set_tte(struct hv_tsb_info *tsb, vm_offset_t va, tte_t tte_data, uint64_t ctx);
62
63 void tsb_set_tte_real(struct hv_tsb_info *tsb, vm_offset_t index_va, 
64                       vm_offset_t tag_va, tte_t tte_data, uint64_t ctx);
65
66 tte_t tsb_get_tte(struct hv_tsb_info *tsb, vm_offset_t va);
67
68 tte_t tsb_lookup_tte(vm_offset_t va, uint64_t context);
69
70 void tsb_clear(struct hv_tsb_info *tsb);
71
72 void tsb_clear_tte(struct hv_tsb_info *tsb, vm_offset_t va);
73
74 void tsb_clear_range(struct hv_tsb_info *tsb, vm_offset_t sva, vm_offset_t eva);
75
76 uint64_t tsb_set_scratchpad_kernel(struct hv_tsb_info *tsb);
77
78 uint64_t tsb_set_scratchpad_user(struct hv_tsb_info *tsb);
79
80 int tsb_size(struct hv_tsb_info *tsb);
81
82 int tsb_page_shift(pmap_t pmap);
83
84 #endif /* !_MACHINE_TSB_H_ */