Files
rtems/bsps/powerpc/include/libcpu/byteorder.h
Joel Sherrill 82de7c4daa bsps/powerpc/*: Add SPDX for RTEMS legacy license
These may still be relicensed but adding SPDX is needed.

Updates #4805.
2025-08-22 10:14:12 -05:00

57 lines
1.3 KiB
C

/* SPDX-License-Identifier: GPL-2.0+-with-RTEMS-exception */
/*
* byteorder.h
*
* This file contains inline implementation of function to
* deal with endian conversion.
*
* It is a stripped down version of linux ppc file...
*
* Copyright (C) 1999 Eric Valette (eric.valette@free.fr)
* Canon Centre Recherche France.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
*/
#ifndef _LIBCPU_BYTEORDER_H
#define _LIBCPU_BYTEORDER_H
#ifdef __cplusplus
extern "C" {
#endif
static inline unsigned ld_le16(volatile uint16_t *addr)
{
unsigned val;
__asm__ volatile ("lhbrx %0,0,%1" : "=r" (val) : "r" (addr), "m" (*addr));
return val;
}
static inline void st_le16(volatile uint16_t *addr, unsigned val)
{
__asm__ volatile ("sthbrx %1,0,%2" : "=m" (*addr) : "r" (val), "r" (addr));
}
static inline unsigned ld_le32(volatile uint32_t *addr)
{
unsigned val;
__asm__ volatile ("lwbrx %0,0,%1" : "=r" (val) : "r" (addr), "m" (*addr));
return val;
}
static inline void st_le32(volatile uint32_t *addr, unsigned val)
{
__asm__ volatile ("stwbrx %1,0,%2" : "=m" (*addr) : "r" (val), "r" (addr));
}
#ifdef __cplusplus
}
#endif
#endif /* _LIBCPU_BYTEORDER_H */