source: rtems/bsps/x86_64/amd64/start/page.c @ a660e9dc

Last change on this file since a660e9dc was a660e9dc, checked in by Sebastian Huber <sebastian.huber@…>, on 09/08/22 at 08:37:05

Do not use RTEMS_INLINE_ROUTINE

Directly use "static inline" which is available in C99 and later. This brings
the RTEMS implementation closer to standard C.

Close #3935.

  • Property mode set to 100644
File size: 5.3 KB
Line 
1/*
2 * This file sets up page sizes to 1GiB (i.e. huge pages, using only the PML4
3 * and PDPT, skipping the PDT, and PT).
4 * We set up identity-page mapping for the 512 GiBs addressable by using static
5 * PML4 and PDPT tables.
6 *
7 * Section 4.5 "4-Level Paging" of Volume 3 of the Intel Software Developer
8 * Manual guides a lot of the code used in this file.
9 */
10
11/*
12 * Copyright (c) 2018.
13 * Amaan Cheval <amaan.cheval@gmail.com>
14 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 *    notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 *    notice, this list of conditions and the following disclaimer in the
22 *    documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#include <stdio.h>
38#include <assert.h>
39#include <bsp.h>
40#include <rtems.h>
41#include <libcpu/page.h>
42#include <rtems/score/cpu.h>
43
44uint64_t amd64_pml4[NUM_PAGE_TABLE_ENTRIES] RTEMS_ALIGNED(4096);
45uint64_t amd64_pdpt[NUM_PAGE_TABLE_ENTRIES] RTEMS_ALIGNED(4096);
46
47bool paging_1gib_pages_supported(void)
48{
49  /*
50   * If CPUID.80000001H:EDX.Page1GB [bit 26] = 1, 1-GByte pages are supported
51   * with 4-level paging.
52   */
53  uint32_t a, b, c, d;
54  cpuid(0x80000001, &a, &b, &c, &d);
55  return (d >> 26) & 1;
56}
57
58uint8_t get_maxphysaddr(void)
59{
60  /*
61   * CPUID.80000008H:EAX[15:8] reports the linear-address width supported by the
62   * processor. Generally, this value is 48 if CPUID.80000001H:EDX.LM [bit 29] =
63   * 1 and 32 otherwise.
64   */
65  uint32_t a, b, c, d;
66  cpuid(0x80000008, &a, &b, &c, &d);
67
68  uint8_t maxphysaddr = (a >> 8) & 0xff;
69  /* This width is referred to as MAXPHYADDR. MAXPHYADDR is at most 52. */
70  assert(maxphysaddr <= 52);
71
72  return maxphysaddr;
73}
74
75uint64_t get_mask_for_bits(uint8_t start, uint8_t end)
76{
77  /*
78   * Create a mask that lets you select bits start:end when logically ANDed with
79   * a value. For eg.
80   *   get_mask_for_bits(48, 64) = 0xffff000000000000
81   */
82  uint64_t mask = (((uint64_t) 1 << (end - start)) - 1) << start;
83  return mask;
84}
85
86static inline void assert_0s_from_bit(uint64_t entry, uint8_t bit_pos)
87{
88  /* Confirm that bit_pos:64 are all 0s */
89  assert((entry & get_mask_for_bits(bit_pos, 64)) == 0);
90}
91
92uint64_t create_cr3_entry(
93  uint64_t phys_addr, uint8_t maxphysaddr, uint64_t flags
94)
95{
96  /* Confirm PML4 address is aligned on a 4KiB boundary */
97  assert((phys_addr & 0xfff) == 0);
98  uint64_t entry = (phys_addr & get_mask_for_bits(12, maxphysaddr)) | flags;
99
100  /* Confirm that bits maxphysaddr:64 are 0s */
101  assert_0s_from_bit(entry, maxphysaddr);
102  return entry;
103}
104
105uint64_t create_pml4_entry(
106  uint64_t phys_addr, uint8_t maxphysaddr, uint64_t flags
107)
108{
109  /* Confirm address we're writing is aligned on a 4KiB boundary */
110  assert((phys_addr & 0xfff) == 0);
111  uint64_t entry = (phys_addr & get_mask_for_bits(12, maxphysaddr)) | flags;
112
113  /*
114   * Confirm that bits maxphysaddr:64 are 0s; there are other usable bits there
115   * such as PAGE_FLAGS_NO_EXECUTE, but we're asserting that those aren't set
116   * either.
117   */
118  assert_0s_from_bit(entry, maxphysaddr);
119  return entry;
120}
121
122uint64_t create_pdpt_entry(
123  uint64_t phys_addr, uint8_t maxphysaddr, uint64_t flags
124)
125{
126  /* Confirm physical address is a 1GiB aligned page address */
127  assert((phys_addr & 0x3fffffff) == 0);
128  uint64_t entry = (phys_addr & get_mask_for_bits(30, maxphysaddr)) | flags;
129
130  /*
131   * Confirm that bits maxphysaddr:64 are 0s; there are other usable bits there
132   * such as the protection key and PAGE_FLAGS_NO_EXECUTE, but we're asserting
133   * that those aren't set either.
134   */
135  assert_0s_from_bit(entry, maxphysaddr);
136  return entry;
137}
138
139void paging_init(void)
140{
141  if ( !paging_1gib_pages_supported() ) {
142    printf("warning: 1 GiB pages aren't supported - trying anyway.\n");
143  }
144  const uint8_t maxphysaddr = get_maxphysaddr();
145  DBG_PRINTF("maxphysaddr = %d\n", maxphysaddr);
146
147  const uint64_t gib = (1 << 30);
148
149  for (uint32_t i = 0; i < NUM_PAGE_TABLE_ENTRIES; i++) {
150    amd64_pdpt[i] = create_pdpt_entry(
151      /* This is the i-th GiB for identity-mapping */
152      (uint64_t) i * gib,
153      maxphysaddr,
154      /* Setting huge page in the PDPTE gives us 1 GiB pages */
155      PAGE_FLAGS_DEFAULTS | PAGE_FLAGS_HUGE_PAGE
156    );
157
158    amd64_pml4[i] = create_pml4_entry(
159      (uint64_t) amd64_pdpt,
160      maxphysaddr,
161      PAGE_FLAGS_DEFAULTS
162    );
163  }
164
165  amd64_set_cr3(
166    create_cr3_entry(
167      (uint64_t) &amd64_pml4,
168      maxphysaddr,
169      PAGE_FLAGS_WRITE_THROUGH
170    )
171  );
172}
Note: See TracBrowser for help on using the repository browser.