mirror of
				https://review.coreboot.org/flashrom.git
				synced 2025-11-04 07:00:39 +01:00 
			
		
		
		
	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>
		
			
				
	
	
		
			34 lines
		
	
	
		
			958 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			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_same(cpu_to_le, 8)
 | 
						|
___return_same(cpu_to_le, 16)
 | 
						|
___return_same(cpu_to_le, 32)
 | 
						|
___return_same(cpu_to_le, 64)
 | 
						|
 | 
						|
/* convert cpu native endian to big endian */
 | 
						|
___return_swapped(cpu_to_be, 8)
 | 
						|
___return_swapped(cpu_to_be, 16)
 | 
						|
___return_swapped(cpu_to_be, 32)
 | 
						|
___return_swapped(cpu_to_be, 64)
 | 
						|
 | 
						|
/* convert little endian to cpu native endian */
 | 
						|
___return_same(le_to_cpu, 8)
 | 
						|
___return_same(le_to_cpu, 16)
 | 
						|
___return_same(le_to_cpu, 32)
 | 
						|
___return_same(le_to_cpu, 64)
 | 
						|
 | 
						|
/* convert big endian to cpu native endian */
 | 
						|
___return_swapped(be_to_cpu, 8)
 | 
						|
___return_swapped(be_to_cpu, 16)
 | 
						|
___return_swapped(be_to_cpu, 32)
 | 
						|
___return_swapped(be_to_cpu, 64)
 |