Re: [Xen-devel] [PATCH RFC 13/20] acpi/hvmloader: Add stdio.h, string.h and x86.h

2016-06-06 Thread Jan Beulich
>>> On 06.06.16 at 17:08, wrote: > On 06/06/2016 07:31 AM, Jan Beulich wrote: > On 06.04.16 at 03:25, wrote: >>> --- /dev/null >>> +++ b/tools/firmware/hvmloader/acpi/x86.h >>> @@ -0,0 +1,14 @@ >>> +#ifndef __ACPI_X86_H__ >>> +#define __ACPI_X86_H__ >>> + >>> +#define IOAPIC_BASE_ADDRESS 0xfe

Re: [Xen-devel] [PATCH RFC 13/20] acpi/hvmloader: Add stdio.h, string.h and x86.h

2016-06-06 Thread Boris Ostrovsky
On 06/06/2016 07:31 AM, Jan Beulich wrote: On 06.04.16 at 03:25, wrote: >> Users of ACPI builder will need to provide their own implemetations of >> strncpy(), memcpy, memset() and printf declared in stdio.h and string.h. >> For hvmloader we provide those two as wrappers around utul.h. >> >>

Re: [Xen-devel] [PATCH RFC 13/20] acpi/hvmloader: Add stdio.h, string.h and x86.h

2016-06-06 Thread Jan Beulich
>>> On 06.04.16 at 03:25, wrote: > Users of ACPI builder will need to provide their own implemetations of > strncpy(), memcpy, memset() and printf declared in stdio.h and string.h. > For hvmloader we provide those two as wrappers around utul.h. > > Some x86-specific definitions move to ACPI build

[Xen-devel] [PATCH RFC 13/20] acpi/hvmloader: Add stdio.h, string.h and x86.h

2016-04-05 Thread Boris Ostrovsky
Users of ACPI builder will need to provide their own implemetations of strncpy(), memcpy, memset() and printf declared in stdio.h and string.h. For hvmloader we provide those two as wrappers around utul.h. Some x86-specific definitions move to ACPI builder's x86.h file so that users won't have to