2 * PROJECT: ReactOS Kernel
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: ntoskrnl/mm/ARM3/mminit.c
5 * PURPOSE: ARM Memory Manager Initialization
6 * PROGRAMMERS: ReactOS Portable Systems Group
9 /* INCLUDES *******************************************************************/
16 #define MODULE_INVOLVED_IN_ARM3
19 /* GLOBALS ********************************************************************/
22 // These are all registry-configurable, but by default, the memory manager will
23 // figure out the most appropriate values.
25 ULONG MmMaximumNonPagedPoolPercent
;
26 ULONG MmSizeOfNonPagedPoolInBytes
;
27 ULONG MmMaximumNonPagedPoolInBytes
;
29 /* Some of the same values, in pages */
30 PFN_NUMBER MmMaximumNonPagedPoolInPages
;
33 // These numbers describe the discrete equation components of the nonpaged
34 // pool sizing algorithm.
36 // They are described on http://support.microsoft.com/default.aspx/kb/126402/ja
37 // along with the algorithm that uses them, which is implemented later below.
39 ULONG MmMinimumNonPagedPoolSize
= 256 * 1024;
40 ULONG MmMinAdditionNonPagedPoolPerMb
= 32 * 1024;
41 ULONG MmDefaultMaximumNonPagedPool
= 1024 * 1024;
42 ULONG MmMaxAdditionNonPagedPoolPerMb
= 400 * 1024;
45 // The memory layout (and especially variable names) of the NT kernel mode
46 // components can be a bit hard to twig, especially when it comes to the non
49 // There are really two components to the non-paged pool:
51 // - The initial nonpaged pool, sized dynamically up to a maximum.
52 // - The expansion nonpaged pool, sized dynamically up to a maximum.
54 // The initial nonpaged pool is physically continuous for performance, and
55 // immediately follows the PFN database, typically sharing the same PDE. It is
56 // a very small resource (32MB on a 1GB system), and capped at 128MB.
58 // Right now we call this the "ARM³ Nonpaged Pool" and it begins somewhere after
59 // the PFN database (which starts at 0xB0000000).
61 // The expansion nonpaged pool, on the other hand, can grow much bigger (400MB
62 // for a 1GB system). On ARM³ however, it is currently capped at 128MB.
64 // The address where the initial nonpaged pool starts is aptly named
65 // MmNonPagedPoolStart, and it describes a range of MmSizeOfNonPagedPoolInBytes
68 // Expansion nonpaged pool starts at an address described by the variable called
69 // MmNonPagedPoolExpansionStart, and it goes on for MmMaximumNonPagedPoolInBytes
70 // minus MmSizeOfNonPagedPoolInBytes bytes, always reaching MmNonPagedPoolEnd
71 // (because of the way it's calculated) at 0xFFBE0000.
73 // Initial nonpaged pool is allocated and mapped early-on during boot, but what
74 // about the expansion nonpaged pool? It is instead composed of special pages
75 // which belong to what are called System PTEs. These PTEs are the matter of a
76 // later discussion, but they are also considered part of the "nonpaged" OS, due
77 // to the fact that they are never paged out -- once an address is described by
78 // a System PTE, it is always valid, until the System PTE is torn down.
80 // System PTEs are actually composed of two "spaces", the system space proper,
81 // and the nonpaged pool expansion space. The latter, as we've already seen,
82 // begins at MmNonPagedPoolExpansionStart. Based on the number of System PTEs
83 // that the system will support, the remaining address space below this address
84 // is used to hold the system space PTEs. This address, in turn, is held in the
85 // variable named MmNonPagedSystemStart, which itself is never allowed to go
86 // below 0xEB000000 (thus creating an upper bound on the number of System PTEs).
88 // This means that 330MB are reserved for total nonpaged system VA, on top of
89 // whatever the initial nonpaged pool allocation is.
91 // The following URLs, valid as of April 23rd, 2008, support this evidence:
93 // http://www.cs.miami.edu/~burt/journal/NT/memory.html
94 // http://www.ditii.com/2007/09/28/windows-memory-management-x86-virtual-address-space/
96 PVOID MmNonPagedSystemStart
;
97 PVOID MmNonPagedPoolStart
;
98 PVOID MmNonPagedPoolExpansionStart
;
99 PVOID MmNonPagedPoolEnd
= MI_NONPAGED_POOL_END
;
102 // This is where paged pool starts by default
104 PVOID MmPagedPoolStart
= MI_PAGED_POOL_START
;
105 PVOID MmPagedPoolEnd
;
108 // And this is its default size
110 ULONG MmSizeOfPagedPoolInBytes
= MI_MIN_INIT_PAGED_POOLSIZE
;
111 PFN_NUMBER MmSizeOfPagedPoolInPages
= MI_MIN_INIT_PAGED_POOLSIZE
/ PAGE_SIZE
;
114 // Session space starts at 0xBFFFFFFF and grows downwards
115 // By default, it includes an 8MB image area where we map win32k and video card
116 // drivers, followed by a 4MB area containing the session's working set. This is
117 // then followed by a 20MB mapped view area and finally by the session's paged
118 // pool, by default 16MB.
120 // On a normal system, this results in session space occupying the region from
121 // 0xBD000000 to 0xC0000000
123 // See miarm.h for the defines that determine the sizing of this region. On an
124 // NT system, some of these can be configured through the registry, but we don't
127 PVOID MiSessionSpaceEnd
; // 0xC0000000
128 PVOID MiSessionImageEnd
; // 0xC0000000
129 PVOID MiSessionImageStart
; // 0xBF800000
130 PVOID MiSessionViewStart
; // 0xBE000000
131 PVOID MiSessionPoolEnd
; // 0xBE000000
132 PVOID MiSessionPoolStart
; // 0xBD000000
133 PVOID MmSessionBase
; // 0xBD000000
135 ULONG MmSessionViewSize
;
136 ULONG MmSessionPoolSize
;
137 ULONG MmSessionImageSize
;
140 * These are the PTE addresses of the boundaries carved out above
142 PMMPTE MiSessionImagePteStart
;
143 PMMPTE MiSessionImagePteEnd
;
144 PMMPTE MiSessionBasePte
;
145 PMMPTE MiSessionLastPte
;
148 // The system view space, on the other hand, is where sections that are memory
149 // mapped into "system space" end up.
151 // By default, it is a 16MB region.
153 PVOID MiSystemViewStart
;
154 ULONG MmSystemViewSize
;
157 // A copy of the system page directory (the page directory associated with the
158 // System process) is kept (double-mapped) by the manager in order to lazily
159 // map paged pool PDEs into external processes when they fault on a paged pool
162 PFN_NUMBER MmSystemPageDirectory
[PD_COUNT
];
163 PMMPTE MmSystemPagePtes
;
166 // The system cache starts right after hyperspace. The first few pages are for
167 // keeping track of the system working set list.
169 // This should be 0xC0C00000 -- the cache itself starts at 0xC1000000
171 PMMWSL MmSystemCacheWorkingSetList
= MI_SYSTEM_CACHE_WS_START
;
174 // Windows NT seems to choose between 7000, 11000 and 50000
175 // On systems with more than 32MB, this number is then doubled, and further
176 // aligned up to a PDE boundary (4MB).
178 ULONG MmNumberOfSystemPtes
;
181 // This is how many pages the PFN database will take up
182 // In Windows, this includes the Quark Color Table, but not in ARM³
184 ULONG MxPfnAllocation
;
187 // Unlike the old ReactOS Memory Manager, ARM³ (and Windows) does not keep track
188 // of pages that are not actually valid physical memory, such as ACPI reserved
189 // regions, BIOS address ranges, or holes in physical memory address space which
190 // could indicate device-mapped I/O memory.
192 // In fact, the lack of a PFN entry for a page usually indicates that this is
193 // I/O space instead.
195 // A bitmap, called the PFN bitmap, keeps track of all page frames by assigning
196 // a bit to each. If the bit is set, then the page is valid physical RAM.
198 RTL_BITMAP MiPfnBitMap
;
201 // This structure describes the different pieces of RAM-backed address space
203 PPHYSICAL_MEMORY_DESCRIPTOR MmPhysicalMemoryBlock
;
206 // This is where we keep track of the most basic physical layout markers
208 ULONG MmNumberOfPhysicalPages
, MmHighestPhysicalPage
, MmLowestPhysicalPage
= -1;
211 // The total number of pages mapped by the boot loader, which include the kernel
212 // HAL, boot drivers, registry, NLS files and other loader data structures is
213 // kept track of here. This depends on "LoaderPagesSpanned" being correct when
214 // coming from the loader.
216 // This number is later aligned up to a PDE boundary.
218 ULONG MmBootImageSize
;
221 // These three variables keep track of the core separation of address space that
222 // exists between kernel mode and user mode.
224 ULONG MmUserProbeAddress
;
225 PVOID MmHighestUserAddress
;
226 PVOID MmSystemRangeStart
;
228 /* And these store the respective highest PTE/PDE address */
229 PMMPTE MiHighestUserPte
;
230 PMMPDE MiHighestUserPde
;
232 /* These variables define the system cache address space */
233 PVOID MmSystemCacheStart
;
234 PVOID MmSystemCacheEnd
;
235 MMSUPPORT MmSystemCacheWs
;
238 // This is where hyperspace ends (followed by the system cache working set)
240 PVOID MmHyperSpaceEnd
;
243 // Page coloring algorithm data
245 ULONG MmSecondaryColors
;
246 ULONG MmSecondaryColorMask
;
249 // Actual (registry-configurable) size of a GUI thread's stack
251 ULONG MmLargeStackSize
= KERNEL_LARGE_STACK_SIZE
;
254 // Before we have a PFN database, memory comes straight from our physical memory
255 // blocks, which is nice because it's guaranteed contiguous and also because once
256 // we take a page from here, the system doesn't see it anymore.
257 // However, once the fun is over, those pages must be re-integrated back into
258 // PFN society life, and that requires us keeping a copy of the original layout
259 // so that we can parse it later.
261 PMEMORY_ALLOCATION_DESCRIPTOR MxFreeDescriptor
;
262 MEMORY_ALLOCATION_DESCRIPTOR MxOldFreeDescriptor
;
265 * For each page's worth bytes of L2 cache in a given set/way line, the zero and
266 * free lists are organized in what is called a "color".
268 * This array points to the two lists, so it can be thought of as a multi-dimensional
269 * array of MmFreePagesByColor[2][MmSecondaryColors]. Since the number is dynamic,
270 * we describe the array in pointer form instead.
272 * On a final note, the color tables themselves are right after the PFN database.
274 C_ASSERT(FreePageList
== 1);
275 PMMCOLOR_TABLES MmFreePagesByColor
[FreePageList
+ 1];
277 /* An event used in Phase 0 before the rest of the system is ready to go */
280 /* All the events used for memory threshold notifications */
281 PKEVENT MiLowMemoryEvent
;
282 PKEVENT MiHighMemoryEvent
;
283 PKEVENT MiLowPagedPoolEvent
;
284 PKEVENT MiHighPagedPoolEvent
;
285 PKEVENT MiLowNonPagedPoolEvent
;
286 PKEVENT MiHighNonPagedPoolEvent
;
288 /* The actual thresholds themselves, in page numbers */
289 PFN_NUMBER MmLowMemoryThreshold
;
290 PFN_NUMBER MmHighMemoryThreshold
;
291 PFN_NUMBER MiLowPagedPoolThreshold
;
292 PFN_NUMBER MiHighPagedPoolThreshold
;
293 PFN_NUMBER MiLowNonPagedPoolThreshold
;
294 PFN_NUMBER MiHighNonPagedPoolThreshold
;
297 * This number determines how many free pages must exist, at minimum, until we
298 * start trimming working sets and flushing modified pages to obtain more free
301 * This number changes if the system detects that this is a server product
303 PFN_NUMBER MmMinimumFreePages
= 26;
306 * This number indicates how many pages we consider to be a low limit of having
307 * "plenty" of free memory.
309 * It is doubled on systems that have more than 63MB of memory
311 PFN_NUMBER MmPlentyFreePages
= 400;
313 /* These values store the type of system this is (small, med, large) and if server */
315 MM_SYSTEMSIZE MmSystemSize
;
318 * These values store the cache working set minimums and maximums, in pages
320 * The minimum value is boosted on systems with more than 24MB of RAM, and cut
321 * down to only 32 pages on embedded (<24MB RAM) systems.
323 * An extra boost of 2MB is given on systems with more than 33MB of RAM.
325 PFN_NUMBER MmSystemCacheWsMinimum
= 288;
326 PFN_NUMBER MmSystemCacheWsMaximum
= 350;
328 /* FIXME: Move to cache/working set code later */
329 BOOLEAN MmLargeSystemCache
;
331 /* PRIVATE FUNCTIONS **********************************************************/
334 // In Bavaria, this is probably a hate crime
338 MiSyncARM3WithROS(IN PVOID AddressStart
,
342 // Puerile piece of junk-grade carbonized horseshit puss sold to the lowest bidder
344 ULONG Pde
= MiGetPdeOffset(AddressStart
);
345 while (Pde
<= MiGetPdeOffset(AddressEnd
))
348 // This both odious and heinous
350 extern ULONG MmGlobalKernelPageDirectory
[];
351 MmGlobalKernelPageDirectory
[Pde
] = ((PULONG
)PDE_BASE
)[Pde
];
358 MxGetNextPage(IN PFN_NUMBER PageCount
)
362 /* Make sure we have enough pages */
363 if (PageCount
> MxFreeDescriptor
->PageCount
)
365 /* Crash the system */
366 KeBugCheckEx(INSTALL_MORE_MEMORY
,
367 MmNumberOfPhysicalPages
,
368 MxFreeDescriptor
->PageCount
,
369 MxOldFreeDescriptor
.PageCount
,
373 /* Use our lowest usable free pages */
374 Pfn
= MxFreeDescriptor
->BasePage
;
375 MxFreeDescriptor
->BasePage
+= PageCount
;
376 MxFreeDescriptor
->PageCount
-= PageCount
;
382 MiComputeColorInformation(VOID
)
384 ULONG L2Associativity
;
386 /* Check if no setting was provided already */
387 if (!MmSecondaryColors
)
389 /* Get L2 cache information */
390 L2Associativity
= KiGetSecondLevelDCacheSize();
392 /* The number of colors is the number of cache bytes by set/way */
393 MmSecondaryColors
= KiGetSecondLevelDCacheSize();
394 if (L2Associativity
) MmSecondaryColors
/= L2Associativity
;
397 /* Now convert cache bytes into pages */
398 MmSecondaryColors
>>= PAGE_SHIFT
;
399 if (!MmSecondaryColors
)
401 /* If there was no cache data from the KPCR, use the default colors */
402 MmSecondaryColors
= MI_SECONDARY_COLORS
;
406 /* Otherwise, make sure there aren't too many colors */
407 if (MmSecondaryColors
> MI_MAX_SECONDARY_COLORS
)
409 /* Set the maximum */
410 MmSecondaryColors
= MI_MAX_SECONDARY_COLORS
;
413 /* Make sure there aren't too little colors */
414 if (MmSecondaryColors
< MI_MIN_SECONDARY_COLORS
)
416 /* Set the default */
417 MmSecondaryColors
= MI_SECONDARY_COLORS
;
420 /* Finally make sure the colors are a power of two */
421 if (MmSecondaryColors
& (MmSecondaryColors
- 1))
423 /* Set the default */
424 MmSecondaryColors
= MI_SECONDARY_COLORS
;
428 /* Compute the mask and store it */
429 MmSecondaryColorMask
= MmSecondaryColors
- 1;
430 KeGetCurrentPrcb()->SecondaryColorMask
= MmSecondaryColorMask
;
435 MiInitializeColorTables(VOID
)
438 PMMPTE PointerPte
, LastPte
;
439 MMPTE TempPte
= ValidKernelPte
;
441 /* The color table starts after the ARM3 PFN database */
442 MmFreePagesByColor
[0] = (PMMCOLOR_TABLES
)&MmPfnDatabase
[1][MmHighestPhysicalPage
+ 1];
444 /* Loop the PTEs. We have two color tables for each secondary color */
445 PointerPte
= MiAddressToPte(&MmFreePagesByColor
[0][0]);
446 LastPte
= MiAddressToPte((ULONG_PTR
)MmFreePagesByColor
[0] +
447 (2 * MmSecondaryColors
* sizeof(MMCOLOR_TABLES
))
449 while (PointerPte
<= LastPte
)
451 /* Check for valid PTE */
452 if (PointerPte
->u
.Hard
.Valid
== 0)
454 /* Get a page and map it */
455 TempPte
.u
.Hard
.PageFrameNumber
= MxGetNextPage(1);
456 ASSERT(TempPte
.u
.Hard
.Valid
== 1);
457 *PointerPte
= TempPte
;
459 /* Zero out the page */
460 RtlZeroMemory(MiPteToAddress(PointerPte
), PAGE_SIZE
);
467 /* Now set the address of the next list, right after this one */
468 MmFreePagesByColor
[1] = &MmFreePagesByColor
[0][MmSecondaryColors
];
470 /* Now loop the lists to set them up */
471 for (i
= 0; i
< MmSecondaryColors
; i
++)
473 /* Set both free and zero lists for each color */
474 MmFreePagesByColor
[ZeroedPageList
][i
].Flink
= 0xFFFFFFFF;
475 MmFreePagesByColor
[ZeroedPageList
][i
].Blink
= (PVOID
)0xFFFFFFFF;
476 MmFreePagesByColor
[ZeroedPageList
][i
].Count
= 0;
477 MmFreePagesByColor
[FreePageList
][i
].Flink
= 0xFFFFFFFF;
478 MmFreePagesByColor
[FreePageList
][i
].Blink
= (PVOID
)0xFFFFFFFF;
479 MmFreePagesByColor
[FreePageList
][i
].Count
= 0;
485 MiIsRegularMemory(IN PLOADER_PARAMETER_BLOCK LoaderBlock
,
488 PLIST_ENTRY NextEntry
;
489 PMEMORY_ALLOCATION_DESCRIPTOR MdBlock
;
491 /* Loop the memory descriptors */
492 NextEntry
= LoaderBlock
->MemoryDescriptorListHead
.Flink
;
493 while (NextEntry
!= &LoaderBlock
->MemoryDescriptorListHead
)
495 /* Get the memory descriptor */
496 MdBlock
= CONTAINING_RECORD(NextEntry
,
497 MEMORY_ALLOCATION_DESCRIPTOR
,
500 /* Check if this PFN could be part of the block */
501 if (Pfn
>= (MdBlock
->BasePage
))
503 /* Check if it really is part of the block */
504 if (Pfn
< (MdBlock
->BasePage
+ MdBlock
->PageCount
))
506 /* Check if the block is actually memory we don't map */
507 if ((MdBlock
->MemoryType
== LoaderFirmwarePermanent
) ||
508 (MdBlock
->MemoryType
== LoaderBBTMemory
) ||
509 (MdBlock
->MemoryType
== LoaderSpecialMemory
))
511 /* We don't need PFN database entries for this memory */
515 /* This is memory we want to map */
521 /* Blocks are ordered, so if it's not here, it doesn't exist */
525 /* Get to the next descriptor */
526 NextEntry
= MdBlock
->ListEntry
.Flink
;
529 /* Check if this PFN is actually from our free memory descriptor */
530 if ((Pfn
>= MxOldFreeDescriptor
.BasePage
) &&
531 (Pfn
< MxOldFreeDescriptor
.BasePage
+ MxOldFreeDescriptor
.PageCount
))
533 /* We use these pages for initial mappings, so we do want to count them */
537 /* Otherwise this isn't memory that we describe or care about */
543 MiMapPfnDatabase(IN PLOADER_PARAMETER_BLOCK LoaderBlock
)
545 ULONG FreePage
, FreePageCount
, PagesLeft
, BasePage
, PageCount
;
546 PLIST_ENTRY NextEntry
;
547 PMEMORY_ALLOCATION_DESCRIPTOR MdBlock
;
548 PMMPTE PointerPte
, LastPte
;
549 MMPTE TempPte
= ValidKernelPte
;
551 /* Get current page data, since we won't be using MxGetNextPage as it would corrupt our state */
552 FreePage
= MxFreeDescriptor
->BasePage
;
553 FreePageCount
= MxFreeDescriptor
->PageCount
;
556 /* Loop the memory descriptors */
557 NextEntry
= LoaderBlock
->MemoryDescriptorListHead
.Flink
;
558 while (NextEntry
!= &LoaderBlock
->MemoryDescriptorListHead
)
560 /* Get the descriptor */
561 MdBlock
= CONTAINING_RECORD(NextEntry
,
562 MEMORY_ALLOCATION_DESCRIPTOR
,
564 if ((MdBlock
->MemoryType
== LoaderFirmwarePermanent
) ||
565 (MdBlock
->MemoryType
== LoaderBBTMemory
) ||
566 (MdBlock
->MemoryType
== LoaderSpecialMemory
))
568 /* These pages are not part of the PFN database */
569 NextEntry
= MdBlock
->ListEntry
.Flink
;
573 /* Next, check if this is our special free descriptor we've found */
574 if (MdBlock
== MxFreeDescriptor
)
576 /* Use the real numbers instead */
577 BasePage
= MxOldFreeDescriptor
.BasePage
;
578 PageCount
= MxOldFreeDescriptor
.PageCount
;
582 /* Use the descriptor's numbers */
583 BasePage
= MdBlock
->BasePage
;
584 PageCount
= MdBlock
->PageCount
;
587 /* Get the PTEs for this range */
588 PointerPte
= MiAddressToPte(&MmPfnDatabase
[0][BasePage
]);
589 LastPte
= MiAddressToPte(((ULONG_PTR
)&MmPfnDatabase
[0][BasePage
+ PageCount
]) - 1);
590 DPRINT("MD Type: %lx Base: %lx Count: %lx\n", MdBlock
->MemoryType
, BasePage
, PageCount
);
593 while (PointerPte
<= LastPte
)
595 /* We'll only touch PTEs that aren't already valid */
596 if (PointerPte
->u
.Hard
.Valid
== 0)
598 /* Use the next free page */
599 TempPte
.u
.Hard
.PageFrameNumber
= FreePage
;
600 ASSERT(FreePageCount
!= 0);
602 /* Consume free pages */
608 KeBugCheckEx(INSTALL_MORE_MEMORY
,
609 MmNumberOfPhysicalPages
,
611 MxOldFreeDescriptor
.PageCount
,
615 /* Write out this PTE */
617 ASSERT(PointerPte
->u
.Hard
.Valid
== 0);
618 ASSERT(TempPte
.u
.Hard
.Valid
== 1);
619 *PointerPte
= TempPte
;
622 RtlZeroMemory(MiPteToAddress(PointerPte
), PAGE_SIZE
);
629 /* Get the PTEs for this range */
630 PointerPte
= MiAddressToPte(&MmPfnDatabase
[1][BasePage
]);
631 LastPte
= MiAddressToPte(((ULONG_PTR
)&MmPfnDatabase
[1][BasePage
+ PageCount
]) - 1);
632 DPRINT("MD Type: %lx Base: %lx Count: %lx\n", MdBlock
->MemoryType
, BasePage
, PageCount
);
635 while (PointerPte
<= LastPte
)
637 /* We'll only touch PTEs that aren't already valid */
638 if (PointerPte
->u
.Hard
.Valid
== 0)
640 /* Use the next free page */
641 TempPte
.u
.Hard
.PageFrameNumber
= FreePage
;
642 ASSERT(FreePageCount
!= 0);
644 /* Consume free pages */
650 KeBugCheckEx(INSTALL_MORE_MEMORY
,
651 MmNumberOfPhysicalPages
,
653 MxOldFreeDescriptor
.PageCount
,
657 /* Write out this PTE */
659 ASSERT(PointerPte
->u
.Hard
.Valid
== 0);
660 ASSERT(TempPte
.u
.Hard
.Valid
== 1);
661 *PointerPte
= TempPte
;
664 RtlZeroMemory(MiPteToAddress(PointerPte
), PAGE_SIZE
);
671 /* Do the next address range */
672 NextEntry
= MdBlock
->ListEntry
.Flink
;
675 /* Now update the free descriptors to consume the pages we used up during the PFN allocation loop */
676 MxFreeDescriptor
->BasePage
= FreePage
;
677 MxFreeDescriptor
->PageCount
= FreePageCount
;
682 MiBuildPfnDatabaseFromPages(IN PLOADER_PARAMETER_BLOCK LoaderBlock
)
687 PFN_NUMBER PageFrameIndex
, StartupPdIndex
, PtePageIndex
;
689 ULONG_PTR BaseAddress
= 0;
691 /* PFN of the startup page directory */
692 StartupPdIndex
= PFN_FROM_PTE(MiAddressToPde(PDE_BASE
));
694 /* Start with the first PDE and scan them all */
695 PointerPde
= MiAddressToPde(NULL
);
696 Count
= PD_COUNT
* PDE_COUNT
;
697 for (i
= 0; i
< Count
; i
++)
699 /* Check for valid PDE */
700 if (PointerPde
->u
.Hard
.Valid
== 1)
702 /* Get the PFN from it */
703 PageFrameIndex
= PFN_FROM_PTE(PointerPde
);
705 /* Do we want a PFN entry for this page? */
706 if (MiIsRegularMemory(LoaderBlock
, PageFrameIndex
))
708 /* Yes we do, set it up */
709 Pfn1
= MI_PFN_TO_PFNENTRY(PageFrameIndex
);
710 Pfn1
->u4
.PteFrame
= StartupPdIndex
;
711 Pfn1
->PteAddress
= (PMMPTE
)PointerPde
;
712 Pfn1
->u2
.ShareCount
++;
713 Pfn1
->u3
.e2
.ReferenceCount
= 1;
714 Pfn1
->u3
.e1
.PageLocation
= ActiveAndValid
;
715 Pfn1
->u3
.e1
.CacheAttribute
= MiNonCached
;
723 /* Now get the PTE and scan the pages */
724 PointerPte
= MiAddressToPte(BaseAddress
);
725 for (j
= 0; j
< PTE_COUNT
; j
++)
727 /* Check for a valid PTE */
728 if (PointerPte
->u
.Hard
.Valid
== 1)
730 /* Increase the shared count of the PFN entry for the PDE */
731 ASSERT(Pfn1
!= NULL
);
732 Pfn1
->u2
.ShareCount
++;
734 /* Now check if the PTE is valid memory too */
735 PtePageIndex
= PFN_FROM_PTE(PointerPte
);
736 if (MiIsRegularMemory(LoaderBlock
, PtePageIndex
))
739 * Only add pages above the end of system code or pages
740 * that are part of nonpaged pool
742 if ((BaseAddress
>= 0xA0000000) ||
743 ((BaseAddress
>= (ULONG_PTR
)MmNonPagedPoolStart
) &&
744 (BaseAddress
< (ULONG_PTR
)MmNonPagedPoolStart
+
745 MmSizeOfNonPagedPoolInBytes
)))
747 /* Get the PFN entry and make sure it too is valid */
748 Pfn2
= MI_PFN_TO_PFNENTRY(PtePageIndex
);
749 if ((MmIsAddressValid(Pfn2
)) &&
750 (MmIsAddressValid(Pfn2
+ 1)))
752 /* Setup the PFN entry */
753 Pfn2
->u4
.PteFrame
= PageFrameIndex
;
754 Pfn2
->PteAddress
= PointerPte
;
755 Pfn2
->u2
.ShareCount
++;
756 Pfn2
->u3
.e2
.ReferenceCount
= 1;
757 Pfn2
->u3
.e1
.PageLocation
= ActiveAndValid
;
758 Pfn2
->u3
.e1
.CacheAttribute
= MiNonCached
;
766 BaseAddress
+= PAGE_SIZE
;
771 /* Next PDE mapped address */
772 BaseAddress
+= PDE_MAPPED_VA
;
782 MiBuildPfnDatabaseZeroPage(VOID
)
787 /* Grab the lowest page and check if it has no real references */
788 Pfn1
= MI_PFN_TO_PFNENTRY(MmLowestPhysicalPage
);
789 if (!(MmLowestPhysicalPage
) && !(Pfn1
->u3
.e2
.ReferenceCount
))
791 /* Make it a bogus page to catch errors */
792 PointerPde
= MiAddressToPde(0xFFFFFFFF);
793 Pfn1
->u4
.PteFrame
= PFN_FROM_PTE(PointerPde
);
794 Pfn1
->PteAddress
= (PMMPTE
)PointerPde
;
795 Pfn1
->u2
.ShareCount
++;
796 Pfn1
->u3
.e2
.ReferenceCount
= 0xFFF0;
797 Pfn1
->u3
.e1
.PageLocation
= ActiveAndValid
;
798 Pfn1
->u3
.e1
.CacheAttribute
= MiNonCached
;
804 MiBuildPfnDatabaseFromLoaderBlock(IN PLOADER_PARAMETER_BLOCK LoaderBlock
)
806 PLIST_ENTRY NextEntry
;
807 PFN_NUMBER PageCount
= 0;
808 PMEMORY_ALLOCATION_DESCRIPTOR MdBlock
;
809 PFN_NUMBER PageFrameIndex
;
814 /* Now loop through the descriptors */
815 NextEntry
= LoaderBlock
->MemoryDescriptorListHead
.Flink
;
816 while (NextEntry
!= &LoaderBlock
->MemoryDescriptorListHead
)
818 /* Get the current descriptor */
819 MdBlock
= CONTAINING_RECORD(NextEntry
,
820 MEMORY_ALLOCATION_DESCRIPTOR
,
824 PageCount
= MdBlock
->PageCount
;
825 PageFrameIndex
= MdBlock
->BasePage
;
827 /* Don't allow memory above what the PFN database is mapping */
828 if (PageFrameIndex
> MmHighestPhysicalPage
)
830 /* Since they are ordered, everything past here will be larger */
834 /* On the other hand, the end page might be higher up... */
835 if ((PageFrameIndex
+ PageCount
) > (MmHighestPhysicalPage
+ 1))
837 /* In which case we'll trim the descriptor to go as high as we can */
838 PageCount
= MmHighestPhysicalPage
+ 1 - PageFrameIndex
;
839 MdBlock
->PageCount
= PageCount
;
841 /* But if there's nothing left to trim, we got too high, so quit */
842 if (!PageCount
) break;
845 /* Now check the descriptor type */
846 switch (MdBlock
->MemoryType
)
848 /* Check for bad RAM */
851 DPRINT1("You have damaged RAM modules. Stopping boot\n");
855 /* Check for free RAM */
857 case LoaderLoadedProgram
:
858 case LoaderFirmwareTemporary
:
859 case LoaderOsloaderStack
:
861 /* Get the last page of this descriptor. Note we loop backwards */
862 PageFrameIndex
+= PageCount
- 1;
863 Pfn1
= MI_PFN_TO_PFNENTRY(PageFrameIndex
);
866 /* If the page really has no references, mark it as free */
867 if (!Pfn1
->u3
.e2
.ReferenceCount
)
869 Pfn1
->u3
.e1
.CacheAttribute
= MiNonCached
;
870 //MiInsertPageInFreeList(PageFrameIndex);
873 /* Go to the next page */
878 /* Done with this block */
881 /* Check for pages that are invisible to us */
882 case LoaderFirmwarePermanent
:
883 case LoaderSpecialMemory
:
884 case LoaderBBTMemory
:
891 /* Map these pages with the KSEG0 mapping that adds 0x80000000 */
892 PointerPte
= MiAddressToPte(KSEG0_BASE
+ (PageFrameIndex
<< PAGE_SHIFT
));
893 Pfn1
= MI_PFN_TO_PFNENTRY(PageFrameIndex
);
896 /* Check if the page is really unused */
897 PointerPde
= MiAddressToPde(KSEG0_BASE
+ (PageFrameIndex
<< PAGE_SHIFT
));
898 if (!Pfn1
->u3
.e2
.ReferenceCount
)
900 /* Mark it as being in-use */
901 Pfn1
->u4
.PteFrame
= PFN_FROM_PTE(PointerPde
);
902 Pfn1
->PteAddress
= PointerPte
;
903 Pfn1
->u2
.ShareCount
++;
904 Pfn1
->u3
.e2
.ReferenceCount
= 1;
905 Pfn1
->u3
.e1
.PageLocation
= ActiveAndValid
;
906 Pfn1
->u3
.e1
.CacheAttribute
= MiNonCached
;
908 /* Check for RAM disk page */
909 if (MdBlock
->MemoryType
== LoaderXIPRom
)
911 /* Make it a pseudo-I/O ROM mapping */
913 Pfn1
->u2
.ShareCount
= 0;
914 Pfn1
->u3
.e2
.ReferenceCount
= 0;
915 Pfn1
->u3
.e1
.PageLocation
= 0;
917 Pfn1
->u4
.InPageError
= 0;
918 Pfn1
->u3
.e1
.PrototypePte
= 1;
922 /* Advance page structures */
930 /* Next descriptor entry */
931 NextEntry
= MdBlock
->ListEntry
.Flink
;
937 MiBuildPfnDatabaseSelf(VOID
)
939 PMMPTE PointerPte
, LastPte
;
942 /* Loop the PFN database page */
943 PointerPte
= MiAddressToPte(MI_PFN_TO_PFNENTRY(MmLowestPhysicalPage
));
944 LastPte
= MiAddressToPte(MI_PFN_TO_PFNENTRY(MmHighestPhysicalPage
));
945 while (PointerPte
<= LastPte
)
947 /* Make sure the page is valid */
948 if (PointerPte
->u
.Hard
.Valid
== 1)
950 /* Get the PFN entry and just mark it referenced */
951 Pfn1
= MI_PFN_TO_PFNENTRY(PointerPte
->u
.Hard
.PageFrameNumber
);
952 Pfn1
->u2
.ShareCount
= 1;
953 Pfn1
->u3
.e2
.ReferenceCount
= 1;
963 MiInitializePfnDatabase(IN PLOADER_PARAMETER_BLOCK LoaderBlock
)
965 /* Scan memory and start setting up PFN entries */
966 MiBuildPfnDatabaseFromPages(LoaderBlock
);
968 /* Add the zero page */
969 MiBuildPfnDatabaseZeroPage();
971 /* Scan the loader block and build the rest of the PFN database */
972 MiBuildPfnDatabaseFromLoaderBlock(LoaderBlock
);
974 /* Finally add the pages for the PFN database itself */
975 MiBuildPfnDatabaseSelf();
980 MiAdjustWorkingSetManagerParameters(IN BOOLEAN Client
)
982 /* This function needs to do more work, for now, we tune page minimums */
984 /* Check for a system with around 64MB RAM or more */
985 if (MmNumberOfPhysicalPages
>= (63 * _1MB
) / PAGE_SIZE
)
987 /* Double the minimum amount of pages we consider for a "plenty free" scenario */
988 MmPlentyFreePages
*= 2;
994 MiNotifyMemoryEvents(VOID
)
996 /* Are we in a low-memory situation? */
997 if (MmAvailablePages
< MmLowMemoryThreshold
)
999 /* Clear high, set low */
1000 if (KeReadStateEvent(MiHighMemoryEvent
)) KeClearEvent(MiHighMemoryEvent
);
1001 if (!KeReadStateEvent(MiLowMemoryEvent
)) KeSetEvent(MiLowMemoryEvent
, 0, FALSE
);
1003 else if (MmAvailablePages
< MmHighMemoryThreshold
)
1005 /* We are in between, clear both */
1006 if (KeReadStateEvent(MiHighMemoryEvent
)) KeClearEvent(MiHighMemoryEvent
);
1007 if (KeReadStateEvent(MiLowMemoryEvent
)) KeClearEvent(MiLowMemoryEvent
);
1011 /* Clear low, set high */
1012 if (KeReadStateEvent(MiLowMemoryEvent
)) KeClearEvent(MiLowMemoryEvent
);
1013 if (!KeReadStateEvent(MiHighMemoryEvent
)) KeSetEvent(MiHighMemoryEvent
, 0, FALSE
);
1019 MiCreateMemoryEvent(IN PUNICODE_STRING Name
,
1026 OBJECT_ATTRIBUTES ObjectAttributes
;
1027 SECURITY_DESCRIPTOR SecurityDescriptor
;
1030 Status
= RtlCreateSecurityDescriptor(&SecurityDescriptor
,
1031 SECURITY_DESCRIPTOR_REVISION
);
1032 if (!NT_SUCCESS(Status
)) return Status
;
1034 /* One ACL with 3 ACEs, containing each one SID */
1035 DaclLength
= sizeof(ACL
) +
1036 3 * sizeof(ACCESS_ALLOWED_ACE
) +
1037 RtlLengthSid(SeLocalSystemSid
) +
1038 RtlLengthSid(SeAliasAdminsSid
) +
1039 RtlLengthSid(SeWorldSid
);
1041 /* Allocate space for the DACL */
1042 Dacl
= ExAllocatePoolWithTag(PagedPool
, DaclLength
, 'lcaD');
1043 if (!Dacl
) return STATUS_INSUFFICIENT_RESOURCES
;
1045 /* Setup the ACL inside it */
1046 Status
= RtlCreateAcl(Dacl
, DaclLength
, ACL_REVISION
);
1047 if (!NT_SUCCESS(Status
)) goto CleanUp
;
1049 /* Add query rights for everyone */
1050 Status
= RtlAddAccessAllowedAce(Dacl
,
1052 SYNCHRONIZE
| EVENT_QUERY_STATE
| READ_CONTROL
,
1054 if (!NT_SUCCESS(Status
)) goto CleanUp
;
1056 /* Full rights for the admin */
1057 Status
= RtlAddAccessAllowedAce(Dacl
,
1061 if (!NT_SUCCESS(Status
)) goto CleanUp
;
1063 /* As well as full rights for the system */
1064 Status
= RtlAddAccessAllowedAce(Dacl
,
1068 if (!NT_SUCCESS(Status
)) goto CleanUp
;
1070 /* Set this DACL inside the SD */
1071 Status
= RtlSetDaclSecurityDescriptor(&SecurityDescriptor
,
1075 if (!NT_SUCCESS(Status
)) goto CleanUp
;
1077 /* Setup the event attributes, making sure it's a permanent one */
1078 InitializeObjectAttributes(&ObjectAttributes
,
1080 OBJ_KERNEL_HANDLE
| OBJ_PERMANENT
,
1082 &SecurityDescriptor
);
1084 /* Create the event */
1085 Status
= ZwCreateEvent(&EventHandle
,
1094 /* Check if this is the success path */
1095 if (NT_SUCCESS(Status
))
1097 /* Add a reference to the object, then close the handle we had */
1098 Status
= ObReferenceObjectByHandle(EventHandle
,
1104 ZwClose (EventHandle
);
1113 MiInitializeMemoryEvents(VOID
)
1115 UNICODE_STRING LowString
= RTL_CONSTANT_STRING(L
"\\KernelObjects\\LowMemoryCondition");
1116 UNICODE_STRING HighString
= RTL_CONSTANT_STRING(L
"\\KernelObjects\\HighMemoryCondition");
1117 UNICODE_STRING LowPagedPoolString
= RTL_CONSTANT_STRING(L
"\\KernelObjects\\LowPagedPoolCondition");
1118 UNICODE_STRING HighPagedPoolString
= RTL_CONSTANT_STRING(L
"\\KernelObjects\\HighPagedPoolCondition");
1119 UNICODE_STRING LowNonPagedPoolString
= RTL_CONSTANT_STRING(L
"\\KernelObjects\\LowNonPagedPoolCondition");
1120 UNICODE_STRING HighNonPagedPoolString
= RTL_CONSTANT_STRING(L
"\\KernelObjects\\HighNonPagedPoolCondition");
1123 /* Check if we have a registry setting */
1124 if (MmLowMemoryThreshold
)
1126 /* Convert it to pages */
1127 MmLowMemoryThreshold
*= (_1MB
/ PAGE_SIZE
);
1131 /* The low memory threshold is hit when we don't consider that we have "plenty" of free pages anymore */
1132 MmLowMemoryThreshold
= MmPlentyFreePages
;
1134 /* More than one GB of memory? */
1135 if (MmNumberOfPhysicalPages
> 0x40000)
1137 /* Start at 32MB, and add another 16MB for each GB */
1138 MmLowMemoryThreshold
= (32 * _1MB
) / PAGE_SIZE
;
1139 MmLowMemoryThreshold
+= ((MmNumberOfPhysicalPages
- 0x40000) >> 7);
1141 else if (MmNumberOfPhysicalPages
> 0x8000)
1143 /* For systems with > 128MB RAM, add another 4MB for each 128MB */
1144 MmLowMemoryThreshold
+= ((MmNumberOfPhysicalPages
- 0x8000) >> 5);
1147 /* Don't let the minimum threshold go past 64MB */
1148 MmLowMemoryThreshold
= min(MmLowMemoryThreshold
, (64 * _1MB
) / PAGE_SIZE
);
1151 /* Check if we have a registry setting */
1152 if (MmHighMemoryThreshold
)
1154 /* Convert it into pages */
1155 MmHighMemoryThreshold
*= (_1MB
/ PAGE_SIZE
);
1159 /* Otherwise, the default is three times the low memory threshold */
1160 MmHighMemoryThreshold
= 3 * MmLowMemoryThreshold
;
1161 ASSERT(MmHighMemoryThreshold
> MmLowMemoryThreshold
);
1164 /* Make sure high threshold is actually higher than the low */
1165 MmHighMemoryThreshold
= max(MmHighMemoryThreshold
, MmLowMemoryThreshold
);
1167 /* Create the memory events for all the thresholds */
1168 Status
= MiCreateMemoryEvent(&LowString
, &MiLowMemoryEvent
);
1169 if (!NT_SUCCESS(Status
)) return FALSE
;
1170 Status
= MiCreateMemoryEvent(&HighString
, &MiHighMemoryEvent
);
1171 if (!NT_SUCCESS(Status
)) return FALSE
;
1172 Status
= MiCreateMemoryEvent(&LowPagedPoolString
, &MiLowPagedPoolEvent
);
1173 if (!NT_SUCCESS(Status
)) return FALSE
;
1174 Status
= MiCreateMemoryEvent(&HighPagedPoolString
, &MiHighPagedPoolEvent
);
1175 if (!NT_SUCCESS(Status
)) return FALSE
;
1176 Status
= MiCreateMemoryEvent(&LowNonPagedPoolString
, &MiLowNonPagedPoolEvent
);
1177 if (!NT_SUCCESS(Status
)) return FALSE
;
1178 Status
= MiCreateMemoryEvent(&HighNonPagedPoolString
, &MiHighNonPagedPoolEvent
);
1179 if (!NT_SUCCESS(Status
)) return FALSE
;
1181 /* Now setup the pool events */
1182 MiInitializePoolEvents();
1184 /* Set the initial event state */
1185 MiNotifyMemoryEvents();
1191 MiAddHalIoMappings(VOID
)
1196 ULONG i
, j
, PdeCount
;
1197 PFN_NUMBER PageFrameIndex
;
1199 /* HAL Heap address -- should be on a PDE boundary */
1200 BaseAddress
= (PVOID
)0xFFC00000;
1201 ASSERT(MiAddressToPteOffset(BaseAddress
) == 0);
1203 /* Check how many PDEs the heap has */
1204 PointerPde
= MiAddressToPde(BaseAddress
);
1205 PdeCount
= PDE_COUNT
- MiGetPdeOffset(BaseAddress
);
1206 for (i
= 0; i
< PdeCount
; i
++)
1208 /* Does the HAL own this mapping? */
1209 if ((PointerPde
->u
.Hard
.Valid
== 1) &&
1210 (PointerPde
->u
.Hard
.LargePage
== 0))
1212 /* Get the PTE for it and scan each page */
1213 PointerPte
= MiAddressToPte(BaseAddress
);
1214 for (j
= 0 ; j
< PTE_COUNT
; j
++)
1216 /* Does the HAL own this page? */
1217 if (PointerPte
->u
.Hard
.Valid
== 1)
1219 /* Is the HAL using it for device or I/O mapped memory? */
1220 PageFrameIndex
= PFN_FROM_PTE(PointerPte
);
1221 if (!MiGetPfnEntry(PageFrameIndex
))
1223 /* FIXME: For PAT, we need to track I/O cache attributes for coherency */
1224 DPRINT1("HAL I/O Mapping at %p is unsafe\n", BaseAddress
);
1228 /* Move to the next page */
1229 BaseAddress
= (PVOID
)((ULONG_PTR
)BaseAddress
+ PAGE_SIZE
);
1235 /* Move to the next address */
1236 BaseAddress
= (PVOID
)((ULONG_PTR
)BaseAddress
+ PDE_MAPPED_VA
);
1239 /* Move to the next PDE */
1246 MmDumpArmPfnDatabase(VOID
)
1250 PCHAR Consumer
= "Unknown";
1252 ULONG ActivePages
= 0, FreePages
= 0, OtherPages
= 0;
1254 KeRaiseIrql(HIGH_LEVEL
, &OldIrql
);
1257 // Loop the PFN database
1259 for (i
= 0; i
<= MmHighestPhysicalPage
; i
++)
1261 Pfn1
= MI_PFN_TO_PFNENTRY(i
);
1262 if (!Pfn1
) continue;
1265 // Get the page location
1267 switch (Pfn1
->u3
.e1
.PageLocation
)
1269 case ActiveAndValid
:
1271 Consumer
= "Active and Valid";
1277 Consumer
= "Free Page List";
1283 Consumer
= "Other (ASSERT!)";
1289 // Pretty-print the page
1291 DbgPrint("0x%08p:\t%20s\t(%02d.%02d) [%08p-%08p])\n",
1294 Pfn1
->u3
.e2
.ReferenceCount
,
1295 Pfn1
->u2
.ShareCount
,
1300 DbgPrint("Active: %d pages\t[%d KB]\n", ActivePages
, (ActivePages
<< PAGE_SHIFT
) / 1024);
1301 DbgPrint("Free: %d pages\t[%d KB]\n", FreePages
, (FreePages
<< PAGE_SHIFT
) / 1024);
1302 DbgPrint("Other: %d pages\t[%d KB]\n", OtherPages
, (OtherPages
<< PAGE_SHIFT
) / 1024);
1304 KeLowerIrql(OldIrql
);
1309 MiPagesInLoaderBlock(IN PLOADER_PARAMETER_BLOCK LoaderBlock
,
1310 IN PBOOLEAN IncludeType
)
1312 PLIST_ENTRY NextEntry
;
1313 PFN_NUMBER PageCount
= 0;
1314 PMEMORY_ALLOCATION_DESCRIPTOR MdBlock
;
1317 // Now loop through the descriptors
1319 NextEntry
= LoaderBlock
->MemoryDescriptorListHead
.Flink
;
1320 while (NextEntry
!= &LoaderBlock
->MemoryDescriptorListHead
)
1323 // Grab each one, and check if it's one we should include
1325 MdBlock
= CONTAINING_RECORD(NextEntry
,
1326 MEMORY_ALLOCATION_DESCRIPTOR
,
1328 if ((MdBlock
->MemoryType
< LoaderMaximum
) &&
1329 (IncludeType
[MdBlock
->MemoryType
]))
1332 // Add this to our running total
1334 PageCount
+= MdBlock
->PageCount
;
1338 // Try the next descriptor
1340 NextEntry
= MdBlock
->ListEntry
.Flink
;
1349 PPHYSICAL_MEMORY_DESCRIPTOR
1351 MmInitializeMemoryLimits(IN PLOADER_PARAMETER_BLOCK LoaderBlock
,
1352 IN PBOOLEAN IncludeType
)
1354 PLIST_ENTRY NextEntry
;
1355 ULONG Run
= 0, InitialRuns
= 0;
1356 PFN_NUMBER NextPage
= -1, PageCount
= 0;
1357 PPHYSICAL_MEMORY_DESCRIPTOR Buffer
, NewBuffer
;
1358 PMEMORY_ALLOCATION_DESCRIPTOR MdBlock
;
1361 // Scan the memory descriptors
1363 NextEntry
= LoaderBlock
->MemoryDescriptorListHead
.Flink
;
1364 while (NextEntry
!= &LoaderBlock
->MemoryDescriptorListHead
)
1367 // For each one, increase the memory allocation estimate
1370 NextEntry
= NextEntry
->Flink
;
1374 // Allocate the maximum we'll ever need
1376 Buffer
= ExAllocatePoolWithTag(NonPagedPool
,
1377 sizeof(PHYSICAL_MEMORY_DESCRIPTOR
) +
1378 sizeof(PHYSICAL_MEMORY_RUN
) *
1381 if (!Buffer
) return NULL
;
1384 // For now that's how many runs we have
1386 Buffer
->NumberOfRuns
= InitialRuns
;
1389 // Now loop through the descriptors again
1391 NextEntry
= LoaderBlock
->MemoryDescriptorListHead
.Flink
;
1392 while (NextEntry
!= &LoaderBlock
->MemoryDescriptorListHead
)
1395 // Grab each one, and check if it's one we should include
1397 MdBlock
= CONTAINING_RECORD(NextEntry
,
1398 MEMORY_ALLOCATION_DESCRIPTOR
,
1400 if ((MdBlock
->MemoryType
< LoaderMaximum
) &&
1401 (IncludeType
[MdBlock
->MemoryType
]))
1404 // Add this to our running total
1406 PageCount
+= MdBlock
->PageCount
;
1409 // Check if the next page is described by the next descriptor
1411 if (MdBlock
->BasePage
== NextPage
)
1414 // Combine it into the same physical run
1416 ASSERT(MdBlock
->PageCount
!= 0);
1417 Buffer
->Run
[Run
- 1].PageCount
+= MdBlock
->PageCount
;
1418 NextPage
+= MdBlock
->PageCount
;
1423 // Otherwise just duplicate the descriptor's contents
1425 Buffer
->Run
[Run
].BasePage
= MdBlock
->BasePage
;
1426 Buffer
->Run
[Run
].PageCount
= MdBlock
->PageCount
;
1427 NextPage
= Buffer
->Run
[Run
].BasePage
+ Buffer
->Run
[Run
].PageCount
;
1430 // And in this case, increase the number of runs
1437 // Try the next descriptor
1439 NextEntry
= MdBlock
->ListEntry
.Flink
;
1443 // We should not have been able to go past our initial estimate
1445 ASSERT(Run
<= Buffer
->NumberOfRuns
);
1448 // Our guess was probably exaggerated...
1450 if (InitialRuns
> Run
)
1453 // Allocate a more accurately sized buffer
1455 NewBuffer
= ExAllocatePoolWithTag(NonPagedPool
,
1456 sizeof(PHYSICAL_MEMORY_DESCRIPTOR
) +
1457 sizeof(PHYSICAL_MEMORY_RUN
) *
1463 // Copy the old buffer into the new, then free it
1465 RtlCopyMemory(NewBuffer
->Run
,
1467 sizeof(PHYSICAL_MEMORY_RUN
) * Run
);
1471 // Now use the new buffer
1478 // Write the final numbers, and return it
1480 Buffer
->NumberOfRuns
= Run
;
1481 Buffer
->NumberOfPages
= PageCount
;
1487 MiBuildPagedPool(VOID
)
1491 MMPTE TempPte
= ValidKernelPte
;
1492 MMPDE TempPde
= ValidKernelPde
;
1493 PFN_NUMBER PageFrameIndex
;
1495 ULONG Size
, BitMapSize
;
1498 // Get the page frame number for the system page directory
1500 PointerPte
= MiAddressToPte(PDE_BASE
);
1501 ASSERT(PD_COUNT
== 1);
1502 MmSystemPageDirectory
[0] = PFN_FROM_PTE(PointerPte
);
1505 // Allocate a system PTE which will hold a copy of the page directory
1507 PointerPte
= MiReserveSystemPtes(1, SystemPteSpace
);
1509 MmSystemPagePtes
= MiPteToAddress(PointerPte
);
1512 // Make this system PTE point to the system page directory.
1513 // It is now essentially double-mapped. This will be used later for lazy
1514 // evaluation of PDEs accross process switches, similarly to how the Global
1515 // page directory array in the old ReactOS Mm is used (but in a less hacky
1518 TempPte
= ValidKernelPte
;
1519 ASSERT(PD_COUNT
== 1);
1520 TempPte
.u
.Hard
.PageFrameNumber
= MmSystemPageDirectory
[0];
1521 ASSERT(PointerPte
->u
.Hard
.Valid
== 0);
1522 ASSERT(TempPte
.u
.Hard
.Valid
== 1);
1523 *PointerPte
= TempPte
;
1526 // Let's get back to paged pool work: size it up.
1527 // By default, it should be twice as big as nonpaged pool.
1529 MmSizeOfPagedPoolInBytes
= 2 * MmMaximumNonPagedPoolInBytes
;
1530 if (MmSizeOfPagedPoolInBytes
> ((ULONG_PTR
)MmNonPagedSystemStart
-
1531 (ULONG_PTR
)MmPagedPoolStart
))
1534 // On the other hand, we have limited VA space, so make sure that the VA
1535 // for paged pool doesn't overflow into nonpaged pool VA. Otherwise, set
1536 // whatever maximum is possible.
1538 MmSizeOfPagedPoolInBytes
= (ULONG_PTR
)MmNonPagedSystemStart
-
1539 (ULONG_PTR
)MmPagedPoolStart
;
1543 // Get the size in pages and make sure paged pool is at least 32MB.
1545 Size
= MmSizeOfPagedPoolInBytes
;
1546 if (Size
< MI_MIN_INIT_PAGED_POOLSIZE
) Size
= MI_MIN_INIT_PAGED_POOLSIZE
;
1547 Size
= BYTES_TO_PAGES(Size
);
1550 // Now check how many PTEs will be required for these many pages.
1552 Size
= (Size
+ (1024 - 1)) / 1024;
1555 // Recompute the page-aligned size of the paged pool, in bytes and pages.
1557 MmSizeOfPagedPoolInBytes
= Size
* PAGE_SIZE
* 1024;
1558 MmSizeOfPagedPoolInPages
= MmSizeOfPagedPoolInBytes
>> PAGE_SHIFT
;
1561 // Let's be really sure this doesn't overflow into nonpaged system VA
1563 ASSERT((MmSizeOfPagedPoolInBytes
+ (ULONG_PTR
)MmPagedPoolStart
) <=
1564 (ULONG_PTR
)MmNonPagedSystemStart
);
1567 // This is where paged pool ends
1569 MmPagedPoolEnd
= (PVOID
)(((ULONG_PTR
)MmPagedPoolStart
+
1570 MmSizeOfPagedPoolInBytes
) - 1);
1573 // So now get the PDE for paged pool and zero it out
1575 PointerPde
= MiAddressToPde(MmPagedPoolStart
);
1576 RtlZeroMemory(PointerPde
,
1577 (1 + MiAddressToPde(MmPagedPoolEnd
) - PointerPde
) * sizeof(MMPTE
));
1580 // Next, get the first and last PTE
1582 PointerPte
= MiAddressToPte(MmPagedPoolStart
);
1583 MmPagedPoolInfo
.FirstPteForPagedPool
= PointerPte
;
1584 MmPagedPoolInfo
.LastPteForPagedPool
= MiAddressToPte(MmPagedPoolEnd
);
1587 // Lock the PFN database
1589 OldIrql
= KeAcquireQueuedSpinLock(LockQueuePfnLock
);
1592 // Allocate a page and map the first paged pool PDE
1594 PageFrameIndex
= MmAllocPage(MC_NPPOOL
);
1595 TempPde
.u
.Hard
.PageFrameNumber
= PageFrameIndex
;
1596 ASSERT(PointerPde
->u
.Hard
.Valid
== 0);
1597 ASSERT(TempPde
.u
.Hard
.Valid
== 1);
1598 *PointerPde
= TempPde
;
1601 // Release the PFN database lock
1603 KeReleaseQueuedSpinLock(LockQueuePfnLock
, OldIrql
);
1606 // We only have one PDE mapped for now... at fault time, additional PDEs
1607 // will be allocated to handle paged pool growth. This is where they'll have
1610 MmPagedPoolInfo
.NextPdeForPagedPoolExpansion
= (PMMPTE
)(PointerPde
+ 1);
1613 // We keep track of each page via a bit, so check how big the bitmap will
1614 // have to be (make sure to align our page count such that it fits nicely
1615 // into a 4-byte aligned bitmap.
1617 // We'll also allocate the bitmap header itself part of the same buffer.
1620 ASSERT(Size
== MmSizeOfPagedPoolInPages
);
1622 Size
= sizeof(RTL_BITMAP
) + (((Size
+ 31) / 32) * sizeof(ULONG
));
1625 // Allocate the allocation bitmap, which tells us which regions have not yet
1626 // been mapped into memory
1628 MmPagedPoolInfo
.PagedPoolAllocationMap
= ExAllocatePoolWithTag(NonPagedPool
,
1631 ASSERT(MmPagedPoolInfo
.PagedPoolAllocationMap
);
1634 // Initialize it such that at first, only the first page's worth of PTEs is
1635 // marked as allocated (incidentially, the first PDE we allocated earlier).
1637 RtlInitializeBitMap(MmPagedPoolInfo
.PagedPoolAllocationMap
,
1638 (PULONG
)(MmPagedPoolInfo
.PagedPoolAllocationMap
+ 1),
1640 RtlSetAllBits(MmPagedPoolInfo
.PagedPoolAllocationMap
);
1641 RtlClearBits(MmPagedPoolInfo
.PagedPoolAllocationMap
, 0, 1024);
1644 // We have a second bitmap, which keeps track of where allocations end.
1645 // Given the allocation bitmap and a base address, we can therefore figure
1646 // out which page is the last page of that allocation, and thus how big the
1647 // entire allocation is.
1649 MmPagedPoolInfo
.EndOfPagedPoolBitmap
= ExAllocatePoolWithTag(NonPagedPool
,
1652 ASSERT(MmPagedPoolInfo
.EndOfPagedPoolBitmap
);
1653 RtlInitializeBitMap(MmPagedPoolInfo
.EndOfPagedPoolBitmap
,
1654 (PULONG
)(MmPagedPoolInfo
.EndOfPagedPoolBitmap
+ 1),
1658 // Since no allocations have been made yet, there are no bits set as the end
1660 RtlClearAllBits(MmPagedPoolInfo
.EndOfPagedPoolBitmap
);
1663 // Initialize paged pool.
1665 InitializePool(PagedPool
, 0);
1667 /* Default low threshold of 30MB or one fifth of paged pool */
1668 MiLowPagedPoolThreshold
= (30 * _1MB
) >> PAGE_SHIFT
;
1669 MiLowPagedPoolThreshold
= min(MiLowPagedPoolThreshold
, Size
/ 5);
1671 /* Default high threshold of 60MB or 25% */
1672 MiHighPagedPoolThreshold
= (60 * _1MB
) >> PAGE_SHIFT
;
1673 MiHighPagedPoolThreshold
= min(MiHighPagedPoolThreshold
, (Size
* 2) / 5);
1674 ASSERT(MiLowPagedPoolThreshold
< MiHighPagedPoolThreshold
);
1679 MmArmInitSystem(IN ULONG Phase
,
1680 IN PLOADER_PARAMETER_BLOCK LoaderBlock
)
1683 BOOLEAN IncludeType
[LoaderMaximum
];
1685 PPHYSICAL_MEMORY_RUN Run
;
1686 PFN_NUMBER PageCount
;
1689 // Instantiate memory that we don't consider RAM/usable
1690 // We use the same exclusions that Windows does, in order to try to be
1691 // compatible with WinLDR-style booting
1693 for (i
= 0; i
< LoaderMaximum
; i
++) IncludeType
[i
] = TRUE
;
1694 IncludeType
[LoaderBad
] = FALSE
;
1695 IncludeType
[LoaderFirmwarePermanent
] = FALSE
;
1696 IncludeType
[LoaderSpecialMemory
] = FALSE
;
1697 IncludeType
[LoaderBBTMemory
] = FALSE
;
1700 /* Initialize the phase 0 temporary event */
1701 KeInitializeEvent(&MiTempEvent
, NotificationEvent
, FALSE
);
1703 /* Set all the events to use the temporary event for now */
1704 MiLowMemoryEvent
= &MiTempEvent
;
1705 MiHighMemoryEvent
= &MiTempEvent
;
1706 MiLowPagedPoolEvent
= &MiTempEvent
;
1707 MiHighPagedPoolEvent
= &MiTempEvent
;
1708 MiLowNonPagedPoolEvent
= &MiTempEvent
;
1709 MiHighNonPagedPoolEvent
= &MiTempEvent
;
1712 // Define the basic user vs. kernel address space separation
1714 MmSystemRangeStart
= (PVOID
)KSEG0_BASE
;
1715 MmUserProbeAddress
= (ULONG_PTR
)MmSystemRangeStart
- 0x10000;
1716 MmHighestUserAddress
= (PVOID
)(MmUserProbeAddress
- 1);
1718 /* Highest PTE and PDE based on the addresses above */
1719 MiHighestUserPte
= MiAddressToPte(MmHighestUserAddress
);
1720 MiHighestUserPde
= MiAddressToPde(MmHighestUserAddress
);
1723 // Get the size of the boot loader's image allocations and then round
1724 // that region up to a PDE size, so that any PDEs we might create for
1725 // whatever follows are separate from the PDEs that boot loader might've
1726 // already created (and later, we can blow all that away if we want to).
1728 MmBootImageSize
= KeLoaderBlock
->Extension
->LoaderPagesSpanned
;
1729 MmBootImageSize
*= PAGE_SIZE
;
1730 MmBootImageSize
= (MmBootImageSize
+ PDE_MAPPED_VA
- 1) & ~(PDE_MAPPED_VA
- 1);
1731 ASSERT((MmBootImageSize
% PDE_MAPPED_VA
) == 0);
1734 // Set the size of session view, pool, and image
1736 MmSessionSize
= MI_SESSION_SIZE
;
1737 MmSessionViewSize
= MI_SESSION_VIEW_SIZE
;
1738 MmSessionPoolSize
= MI_SESSION_POOL_SIZE
;
1739 MmSessionImageSize
= MI_SESSION_IMAGE_SIZE
;
1742 // Set the size of system view
1744 MmSystemViewSize
= MI_SYSTEM_VIEW_SIZE
;
1747 // This is where it all ends
1749 MiSessionImageEnd
= (PVOID
)PTE_BASE
;
1752 // This is where we will load Win32k.sys and the video driver
1754 MiSessionImageStart
= (PVOID
)((ULONG_PTR
)MiSessionImageEnd
-
1755 MmSessionImageSize
);
1758 // So the view starts right below the session working set (itself below
1761 MiSessionViewStart
= (PVOID
)((ULONG_PTR
)MiSessionImageEnd
-
1762 MmSessionImageSize
-
1763 MI_SESSION_WORKING_SET_SIZE
-
1767 // Session pool follows
1769 MiSessionPoolEnd
= MiSessionViewStart
;
1770 MiSessionPoolStart
= (PVOID
)((ULONG_PTR
)MiSessionPoolEnd
-
1774 // And it all begins here
1776 MmSessionBase
= MiSessionPoolStart
;
1779 // Sanity check that our math is correct
1781 ASSERT((ULONG_PTR
)MmSessionBase
+ MmSessionSize
== PTE_BASE
);
1784 // Session space ends wherever image session space ends
1786 MiSessionSpaceEnd
= MiSessionImageEnd
;
1789 // System view space ends at session space, so now that we know where
1790 // this is, we can compute the base address of system view space itself.
1792 MiSystemViewStart
= (PVOID
)((ULONG_PTR
)MmSessionBase
-
1795 /* Compute the PTE addresses for all the addresses we carved out */
1796 MiSessionImagePteStart
= MiAddressToPte(MiSessionImageStart
);
1797 MiSessionImagePteEnd
= MiAddressToPte(MiSessionImageEnd
);
1798 MiSessionBasePte
= MiAddressToPte(MmSessionBase
);
1799 MiSessionLastPte
= MiAddressToPte(MiSessionSpaceEnd
);
1801 /* Initialize the user mode image list */
1802 InitializeListHead(&MmLoadedUserImageList
);
1804 /* Initialize the paged pool mutex */
1805 KeInitializeGuardedMutex(&MmPagedPoolMutex
);
1807 /* Initialize the Loader Lock */
1808 KeInitializeMutant(&MmSystemLoadLock
, FALSE
);
1811 // Count physical pages on the system
1813 PageCount
= MiPagesInLoaderBlock(LoaderBlock
, IncludeType
);
1816 // Check if this is a machine with less than 19MB of RAM
1818 if (PageCount
< MI_MIN_PAGES_FOR_SYSPTE_TUNING
)
1821 // Use the very minimum of system PTEs
1823 MmNumberOfSystemPtes
= 7000;
1828 // Use the default, but check if we have more than 32MB of RAM
1830 MmNumberOfSystemPtes
= 11000;
1831 if (PageCount
> MI_MIN_PAGES_FOR_SYSPTE_BOOST
)
1834 // Double the amount of system PTEs
1836 MmNumberOfSystemPtes
<<= 1;
1840 DPRINT("System PTE count has been tuned to %d (%d bytes)\n",
1841 MmNumberOfSystemPtes
, MmNumberOfSystemPtes
* PAGE_SIZE
);
1843 /* Initialize the platform-specific parts */
1844 MiInitMachineDependent(LoaderBlock
);
1847 // Sync us up with ReactOS Mm
1849 MiSyncARM3WithROS(MmNonPagedSystemStart
, (PVOID
)((ULONG_PTR
)MmNonPagedPoolEnd
- 1));
1850 MiSyncARM3WithROS(MmPfnDatabase
[0], (PVOID
)((ULONG_PTR
)MmNonPagedPoolStart
+ MmSizeOfNonPagedPoolInBytes
- 1));
1851 MiSyncARM3WithROS((PVOID
)HYPER_SPACE
, (PVOID
)(HYPER_SPACE
+ PAGE_SIZE
- 1));
1854 // Build the physical memory block
1856 MmPhysicalMemoryBlock
= MmInitializeMemoryLimits(LoaderBlock
,
1860 // Allocate enough buffer for the PFN bitmap
1861 // Align it up to a 32-bit boundary
1863 Bitmap
= ExAllocatePoolWithTag(NonPagedPool
,
1864 (((MmHighestPhysicalPage
+ 1) + 31) / 32) * 4,
1871 KeBugCheckEx(INSTALL_MORE_MEMORY
,
1872 MmNumberOfPhysicalPages
,
1873 MmLowestPhysicalPage
,
1874 MmHighestPhysicalPage
,
1879 // Initialize it and clear all the bits to begin with
1881 RtlInitializeBitMap(&MiPfnBitMap
,
1883 MmHighestPhysicalPage
+ 1);
1884 RtlClearAllBits(&MiPfnBitMap
);
1887 // Loop physical memory runs
1889 for (i
= 0; i
< MmPhysicalMemoryBlock
->NumberOfRuns
; i
++)
1894 Run
= &MmPhysicalMemoryBlock
->Run
[i
];
1895 DPRINT("PHYSICAL RAM [0x%08p to 0x%08p]\n",
1896 Run
->BasePage
<< PAGE_SHIFT
,
1897 (Run
->BasePage
+ Run
->PageCount
) << PAGE_SHIFT
);
1900 // Make sure it has pages inside it
1905 // Set the bits in the PFN bitmap
1907 RtlSetBits(&MiPfnBitMap
, Run
->BasePage
, Run
->PageCount
);
1911 /* Look for large page cache entries that need caching */
1912 MiSyncCachedRanges();
1914 /* Loop for HAL Heap I/O device mappings that need coherency tracking */
1915 MiAddHalIoMappings();
1917 /* Set the initial resident page count */
1918 MmResidentAvailablePages
= MmAvailablePages
- 32;
1920 /* Initialize large page structures on PAE/x64, and MmProcessList on x86 */
1921 MiInitializeLargePageSupport();
1923 /* Check if the registry says any drivers should be loaded with large pages */
1924 MiInitializeDriverLargePageList();
1926 /* Relocate the boot drivers into system PTE space and fixup their PFNs */
1927 MiReloadBootLoadedDrivers(LoaderBlock
);
1929 /* FIXME: Call out into Driver Verifier for initialization */
1931 /* Check how many pages the system has */
1932 if (MmNumberOfPhysicalPages
<= (13 * _1MB
))
1934 /* Set small system */
1935 MmSystemSize
= MmSmallSystem
;
1937 else if (MmNumberOfPhysicalPages
<= (19 * _1MB
))
1939 /* Set small system and add 100 pages for the cache */
1940 MmSystemSize
= MmSmallSystem
;
1941 MmSystemCacheWsMinimum
+= 100;
1945 /* Set medium system and add 400 pages for the cache */
1946 MmSystemSize
= MmMediumSystem
;
1947 MmSystemCacheWsMinimum
+= 400;
1950 /* Check for less than 24MB */
1951 if (MmNumberOfPhysicalPages
< ((24 * _1MB
) / PAGE_SIZE
))
1953 /* No more than 32 pages */
1954 MmSystemCacheWsMinimum
= 32;
1957 /* Check for more than 32MB */
1958 if (MmNumberOfPhysicalPages
>= ((32 * _1MB
) / PAGE_SIZE
))
1960 /* Check for product type being "Wi" for WinNT */
1961 if (MmProductType
== '\0i\0W')
1963 /* Then this is a large system */
1964 MmSystemSize
= MmLargeSystem
;
1968 /* For servers, we need 64MB to consider this as being large */
1969 if (MmNumberOfPhysicalPages
>= ((64 * _1MB
) / PAGE_SIZE
))
1971 /* Set it as large */
1972 MmSystemSize
= MmLargeSystem
;
1977 /* Check for more than 33 MB */
1978 if (MmNumberOfPhysicalPages
> ((33 * _1MB
) / PAGE_SIZE
))
1980 /* Add another 500 pages to the cache */
1981 MmSystemCacheWsMinimum
+= 500;
1984 /* Now setup the shared user data fields */
1985 ASSERT(SharedUserData
->NumberOfPhysicalPages
== 0);
1986 SharedUserData
->NumberOfPhysicalPages
= MmNumberOfPhysicalPages
;
1987 SharedUserData
->LargePageMinimum
= 0;
1989 /* Check for workstation (Wi for WinNT) */
1990 if (MmProductType
== '\0i\0W')
1992 /* Set Windows NT Workstation product type */
1993 SharedUserData
->NtProductType
= NtProductWinNt
;
1998 /* Check for LanMan server */
1999 if (MmProductType
== '\0a\0L')
2001 /* This is a domain controller */
2002 SharedUserData
->NtProductType
= NtProductLanManNt
;
2006 /* Otherwise it must be a normal server */
2007 SharedUserData
->NtProductType
= NtProductServer
;
2010 /* Set the product type, and make the system more aggressive with low memory */
2012 MmMinimumFreePages
= 81;
2015 /* Update working set tuning parameters */
2016 MiAdjustWorkingSetManagerParameters(!MmProductType
);
2018 /* Finetune the page count by removing working set and NP expansion */
2019 MmResidentAvailablePages
-= MiExpansionPoolPagesInitialCharge
;
2020 MmResidentAvailablePages
-= MmSystemCacheWsMinimum
;
2021 MmResidentAvailableAtInit
= MmResidentAvailablePages
;
2022 if (MmResidentAvailablePages
<= 0)
2024 /* This should not happen */
2025 DPRINT1("System cache working set too big\n");
2029 /* Size up paged pool and build the shadow system page directory */
2034 // Always return success for now
2036 return STATUS_SUCCESS
;