1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-10-16 07:11:53 +02:00
Files
flashrom/platform/endian_big.c
Antonio Vázquez 3471cba18a platform: Use SPDX in headers
Change-Id: I3322366ebfa7db1d1f1e0fe60c808efd839b2858
Signed-off-by: Antonio Vázquez <antoniovazquezblanco@gmail.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/89369
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
2025-10-14 10:40:26 +00:00

34 lines
958 B
C

/*
* This file is part of the flashrom project.
*
* SPDX-License-Identifier: GPL-2.0-or-later
* SPDX-FileCopyrightText: 2022 secunet Security Networks AG and Thomas Heijligen <thomas.heijligen@secunet.com>
*/
#include "platform.h"
#include "platform/swap.h"
/* convert cpu native endian to little endian */
___return_swapped(cpu_to_le, 8)
___return_swapped(cpu_to_le, 16)
___return_swapped(cpu_to_le, 32)
___return_swapped(cpu_to_le, 64)
/* convert cpu native endian to big endian */
___return_same(cpu_to_be, 8)
___return_same(cpu_to_be, 16)
___return_same(cpu_to_be, 32)
___return_same(cpu_to_be, 64)
/* convert little endian to cpu native endian */
___return_swapped(le_to_cpu, 8)
___return_swapped(le_to_cpu, 16)
___return_swapped(le_to_cpu, 32)
___return_swapped(le_to_cpu, 64)
/* convert big endian to cpu native endian */
___return_same(be_to_cpu, 8)
___return_same(be_to_cpu, 16)
___return_same(be_to_cpu, 32)
___return_same(be_to_cpu, 64)