mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
23 lines
385 B
C
23 lines
385 B
C
|
/*
|
||
|
* Copyright (c) 2014 The Chromium OS Authors.
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef __X86_CPU_H
|
||
|
#define __X86_CPU_H
|
||
|
|
||
|
/**
|
||
|
* cpu_enable_paging_pae() - Enable PAE-paging
|
||
|
*
|
||
|
* @pdpt: Value to set in cr3 (PDPT or PML4T)
|
||
|
*/
|
||
|
void cpu_enable_paging_pae(ulong cr3);
|
||
|
|
||
|
/**
|
||
|
* cpu_disable_paging_pae() - Disable paging and PAE
|
||
|
*/
|
||
|
void cpu_disable_paging_pae(void);
|
||
|
|
||
|
#endif
|