Skip to content

Commit

Permalink
sparc: add {read,write}*_be routines
Browse files Browse the repository at this point in the history
This patch adds {read,write}*_be big endian memory access
routines to the io.h header used on SPARC32 and SPARC64.

Tested on SPARC32 (LEON)

Signed-off-by: Jan Andersson <jan@gaisler.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jan Andersson authored and David S. Miller committed May 12, 2011
1 parent b105428 commit 21dccdd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions arch/sparc/include/asm/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,17 @@
#else
#include <asm/io_32.h>
#endif

/*
* Defines used for both SPARC32 and SPARC64
*/

/* Big endian versions of memory read/write routines */
#define readb_be(__addr) __raw_readb(__addr)
#define readw_be(__addr) __raw_readw(__addr)
#define readl_be(__addr) __raw_readl(__addr)
#define writeb_be(__b, __addr) __raw_writeb(__b, __addr)
#define writel_be(__w, __addr) __raw_writel(__w, __addr)
#define writew_be(__l, __addr) __raw_writew(__l, __addr)

#endif

0 comments on commit 21dccdd

Please sign in to comment.