blob: 7c6bf2d6e8d4b3ddaa76c73a9b5406f09ece43f7 [file] [log] [blame]
Tom Rinia0434ab2018-06-03 16:10:22 -04001// SPDX-License-Identifier: GPL-2.0+
Heinrich Schuchardt0073f262018-04-03 21:59:34 +02002/*
3 * efi_selftest_unaligned
4 *
5 * Copyright (c) 2018 Heinrich Schuchardt <xypron.glpk@gmx.de>
6 *
Heinrich Schuchardt0073f262018-04-03 21:59:34 +02007 * Test unaligned memory access on ARMv7.
8 */
9
10#include <efi_selftest.h>
11
12struct aligned_buffer {
13 char a[8] __aligned(8);
14};
15
16/*
Heinrich Schuchardt0aa50472022-05-01 11:24:22 +020017 * Return an u32 at a given address.
Heinrich Schuchardt0073f262018-04-03 21:59:34 +020018 * If the address is not four byte aligned, an unaligned memory access
19 * occurs.
20 *
21 * @addr: address to read
Heinrich Schuchardtfbe90212022-01-20 19:48:20 +010022 * Return: value at the address
Heinrich Schuchardt0073f262018-04-03 21:59:34 +020023 */
Heinrich Schuchardt0aa50472022-05-01 11:24:22 +020024static inline u32 deref(void *addr)
Heinrich Schuchardt0073f262018-04-03 21:59:34 +020025{
26 int ret;
27
28 asm(
29 "ldr %[out], [%[in]]\n\t"
30 : [out] "=r" (ret)
31 : [in] "r" (addr)
32 );
33 return ret;
34}
35
36/*
37 * Execute unit test.
38 * An unaligned memory access is executed. The result is checked.
39 *
Heinrich Schuchardtfbe90212022-01-20 19:48:20 +010040 * Return: EFI_ST_SUCCESS for success
Heinrich Schuchardt0073f262018-04-03 21:59:34 +020041 */
42static int execute(void)
43{
44 struct aligned_buffer buf = {
45 {0, 1, 2, 3, 4, 5, 6, 7},
Heinrich Schuchardt0aa50472022-05-01 11:24:22 +020046 };
Heinrich Schuchardt0073f262018-04-03 21:59:34 +020047 u32 r = 0;
48
49 /* Read an unaligned address */
Heinrich Schuchardt0aa50472022-05-01 11:24:22 +020050 r = deref(&buf.a[1]);
Heinrich Schuchardt0073f262018-04-03 21:59:34 +020051
52 /* UEFI only supports low endian systems */
53 if (r != 0x04030201) {
54 efi_st_error("Unaligned access failed");
55 return EFI_ST_FAILURE;
56 }
57
58 return EFI_ST_SUCCESS;
59}
60
61EFI_UNIT_TEST(unaligned) = {
62 .name = "unaligned memory access",
63 .phase = EFI_EXECUTE_BEFORE_BOOTTIME_EXIT,
64 .execute = execute,
65};