/*1* Permission is hereby granted, free of charge, to any person obtaining a copy2* of this software and associated documentation files (the "Software"), to3* deal in the Software without restriction, including without limitation the4* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or5* sell copies of the Software, and to permit persons to whom the Software is6* furnished to do so, subject to the following conditions:7*8* The above copyright notice and this permission notice shall be included in9* all copies or substantial portions of the Software.10*11* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR12* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,13* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE14* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER15* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING16* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER17* DEALINGS IN THE SOFTWARE.18*19* Copyright (c) 2006, Keir Fraser20*/2122#ifndef __XEN_PUBLIC_HVM_E820_H__23#define __XEN_PUBLIC_HVM_E820_H__2425#include "../xen.h"2627/* E820 location in HVM virtual address space. */28#define HVM_E820_PAGE 0x0009000029#define HVM_E820_NR_OFFSET 0x000001E830#define HVM_E820_OFFSET 0x000002D03132#define HVM_BELOW_4G_RAM_END 0xF000000033#define HVM_BELOW_4G_MMIO_START HVM_BELOW_4G_RAM_END34#define HVM_BELOW_4G_MMIO_LENGTH ((xen_mk_ullong(1) << 32) - \35HVM_BELOW_4G_MMIO_START)3637#endif /* __XEN_PUBLIC_HVM_E820_H__ */383940