/* * (C) 2003 Bruno Ducrot * (C) 2004 Dominik Brodowski * * Licensed under the terms of the GNU GPL License version 2. * * Based on code found in * linux/include/asm-i386/ist.h and linux/arch/i386/kernel/setup.c * and originally developed by Andy Grover */ #include #include #include int main (void) { struct LRMI_regs r; int retval; if (!LRMI_init()) return 0; memset(&r, 0, sizeof(r)); r.eax = 0x0000E980; r.edx = 0x47534943; retval = LRMI_int(0x15, &r); if (!retval) { printf("Failed!\n"); return 0; } if (r.eax == 0x47534943) { printf("BIOS supports GSIC call:\n"); printf("\tsignature: %c%c%c%c\n", (r.eax >> 24) & 0xff, (r.eax >> 16) & 0xff, (r.eax >> 8) & 0xff, (r.eax) & 0xff); printf("\tcommand port = 0x%.4x\n", r.ebx & 0xffff); printf("\tcommand = 0x%.4x\n", (r.ebx >> 16) & 0xffff); printf("\tevent port = 0x%.8x\n", r.ecx); printf("\tflags = 0x%.8x\n", r.edx); if (((r.ebx >> 16) & 0xffff) != 0x82) { printf("non-default command value. If speedstep-smi " "doesn't work out of the box,\nyou may want to " "try out the default value by passing " "smi_cmd=0x82 to the module\n ON YOUR OWN " "RISK.\n"); } if ((r.ebx & 0xffff) != 0xb2) { printf("non-default command port. If speedstep-smi " "doesn't work out of the box,\nyou may want to " "try out the default value by passing " "smi_port=0x82 to the module\n ON YOUR OWN " "RISK.\n"); } } else { printf("BIOS DOES NOT support GSIC call. Dumping registers anyway:\n"); printf("eax = 0x%.8x\n", r.eax); printf("ebx = 0x%.8x\n", r.ebx); printf("ecx = 0x%.8x\n", r.ecx); printf("edx = 0x%.8x\n", r.edx); printf("Note also that some BIOS do not support the initial " "GSIC call, but the newer\nspeedstep-smi driver may " "work.\nFor this, you need to pass some arguments to " "the speedstep-smi driver:\n"); printf("\tsmi_cmd=0x?? smi_port=0x?? smi_sig=1\n"); printf("\nUnfortunately, you have to know what exactly are " "smi_cmd and smi_port, and this\nis system " "dependant.\n"); } return 1; } ption value='grep'>log msg
ipts/perl/Perf-Trace-Util/lib/Perf/Trace
diff options
AgeCommit message (Collapse)AuthorFilesLines
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2017-02-01 17:45:02 +0000
committerIngo Molnar <mingo@kernel.org>2017-02-01 21:17:49 +0100
commitc8f325a59cfc718d13a50fbc746ed9b415c25e92 (patch)
treed53fbdac9d0781e39a13b2ac6b2bd258cf3b4140 /tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace
parentbf29bddf0417a4783da3b24e8c9e017ac649326f (diff)
efi/fdt: Avoid FDT manipulation after ExitBootServices()
Some AArch64 UEFI implementations disable the MMU in ExitBootServices(), after which unaligned accesses to RAM are no longer supported. Commit: abfb7b686a3e ("efi/libstub/arm*: Pass latest memory map to the kernel") fixed an issue in the memory map handling of the stub FDT code, but inadvertently created an issue with such firmware, by moving some of the FDT manipulation to after the invocation of ExitBootServices(). Given that the stub's libfdt implementation uses the ordinary, accelerated string functions, which rely on hardware handling of unaligned accesses, manipulating the FDT with the MMU off may result in alignment faults. So fix the situation by moving the update_fdt_memmap() call into the callback function invoked by efi_exit_boot_services() right before it calls the ExitBootServices() UEFI service (which is arguably a better place for it anyway) Note that disabling the MMU in ExitBootServices() is not compliant with the UEFI spec, and carries great risk due to the fact that switching from cached to uncached memory accesses halfway through compiler generated code (i.e., involving a stack) can never be done in a way that is architecturally safe. Fixes: abfb7b686a3e ("efi/libstub/arm*: Pass latest memory map to the kernel") Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Tested-by: Riku Voipio <riku.voipio@linaro.org> Cc: <stable@vger.kernel.org> Cc: mark.rutland@arm.com Cc: linux-efi@vger.kernel.org Cc: matt@codeblueprint.co.uk Cc: leif.lindholm@linaro.org Cc: linux-arm-kernel@lists.infradead.org Link: http://lkml.kernel.org/r/1485971102-23330-2-git-send-email-ard.biesheuvel@linaro.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace')