mini/utils.h

204 lines
4.0 KiB
C
Raw Normal View History

/*
mini - a Free Software replacement for the Nintendo/BroadOn IOS.
random utilities
Copyright (C) 2008, 2009 Hector Martin "marcan" <marcan@marcansoft.com>
2009-05-11 07:53:16 +02:00
# This code is licensed to you under the terms of the GNU GPL, version 2;
# see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
*/
2009-05-11 07:53:16 +02:00
2008-12-28 14:35:37 +01:00
#ifndef __UTILS_H__
#define __UTILS_H__
static inline u32 read32(u32 addr)
{
u32 data;
2009-05-06 18:55:00 +02:00
__asm__ volatile ("ldr\t%0, [%1]" : "=l" (data) : "l" (addr));
2008-12-28 14:35:37 +01:00
return data;
}
static inline void write32(u32 addr, u32 data)
{
2009-05-06 18:55:00 +02:00
__asm__ volatile ("str\t%0, [%1]" : : "l" (data), "l" (addr));
2008-12-28 14:35:37 +01:00
}
static inline u32 set32(u32 addr, u32 set)
{
u32 data;
__asm__ volatile (
"ldr\t%0, [%1]\n"
"\torr\t%0, %2\n"
"\tstr\t%0, [%1]"
2009-05-06 18:55:00 +02:00
: "=&l" (data)
: "l" (addr), "l" (set)
2008-12-28 14:35:37 +01:00
);
return data;
}
static inline u32 clear32(u32 addr, u32 clear)
{
u32 data;
__asm__ volatile (
"ldr\t%0, [%1]\n"
"\tbic\t%0, %2\n"
"\tstr\t%0, [%1]"
2009-05-06 18:55:00 +02:00
: "=&l" (data)
: "l" (addr), "l" (clear)
2008-12-28 14:35:37 +01:00
);
return data;
}
static inline u32 mask32(u32 addr, u32 clear, u32 set)
{
u32 data;
__asm__ volatile (
"ldr\t%0, [%1]\n"
"\tbic\t%0, %3\n"
"\torr\t%0, %2\n"
"\tstr\t%0, [%1]"
2009-05-06 18:55:00 +02:00
: "=&l" (data)
: "l" (addr), "l" (set), "l" (clear)
2008-12-28 14:35:37 +01:00
);
return data;
}
static inline u16 read16(u32 addr)
{
u32 data;
2009-05-06 18:55:00 +02:00
__asm__ volatile ("ldrh\t%0, [%1]" : "=l" (data) : "l" (addr));
2008-12-28 14:35:37 +01:00
return data;
}
static inline void write16(u32 addr, u16 data)
{
2009-05-06 18:55:00 +02:00
__asm__ volatile ("strh\t%0, [%1]" : : "l" (data), "l" (addr));
2008-12-28 14:35:37 +01:00
}
static inline u16 set16(u32 addr, u16 set)
{
u16 data;
__asm__ volatile (
"ldrh\t%0, [%1]\n"
"\torr\t%0, %2\n"
"\tstrh\t%0, [%1]"
2009-05-06 18:55:00 +02:00
: "=&l" (data)
: "l" (addr), "l" (set)
2008-12-28 14:35:37 +01:00
);
return data;
}
static inline u16 clear16(u32 addr, u16 clear)
{
u16 data;
__asm__ volatile (
"ldrh\t%0, [%1]\n"
"\tbic\t%0, %2\n"
"\tstrh\t%0, [%1]"
2009-05-06 18:55:00 +02:00
: "=&l" (data)
: "l" (addr), "l" (clear)
2008-12-28 14:35:37 +01:00
);
return data;
}
static inline u16 mask16(u32 addr, u16 clear, u16 set)
{
u16 data;
__asm__ volatile (
"ldrh\t%0, [%1]\n"
"\tbic\t%0, %3\n"
"\torr\t%0, %2\n"
"\tstrh\t%0, [%1]"
2009-05-06 18:55:00 +02:00
: "=&l" (data)
: "l" (addr), "l" (set), "l" (clear)
2008-12-28 14:35:37 +01:00
);
return data;
}
static inline u8 read8(u32 addr)
{
u32 data;
2009-05-06 18:55:00 +02:00
__asm__ volatile ("ldrb\t%0, [%1]" : "=l" (data) : "l" (addr));
2008-12-28 14:35:37 +01:00
return data;
}
static inline void write8(u32 addr, u8 data)
{
2009-05-06 18:55:00 +02:00
__asm__ volatile ("strb\t%0, [%1]" : : "l" (data), "l" (addr));
2008-12-28 14:35:37 +01:00
}
static inline u8 set8(u32 addr, u8 set)
{
u8 data;
__asm__ volatile (
"ldrb\t%0, [%1]\n"
"\torr\t%0, %2\n"
"\tstrb\t%0, [%1]"
2009-05-06 18:55:00 +02:00
: "=&l" (data)
: "l" (addr), "l" (set)
2008-12-28 14:35:37 +01:00
);
return data;
}
static inline u8 clear8(u32 addr, u8 clear)
{
u8 data;
__asm__ volatile (
"ldrb\t%0, [%1]\n"
"\tbic\t%0, %2\n"
"\tstrb\t%0, [%1]"
2009-05-06 18:55:00 +02:00
: "=&l" (data)
: "l" (addr), "l" (clear)
2008-12-28 14:35:37 +01:00
);
return data;
}
static inline u8 mask8(u32 addr, u8 clear, u8 set)
{
u8 data;
__asm__ volatile (
"ldrb\t%0, [%1]\n"
"\tbic\t%0, %3\n"
"\torr\t%0, %2\n"
"\tstrb\t%0, [%1]"
2009-05-06 18:55:00 +02:00
: "=&l" (data)
: "l" (addr), "l" (set), "l" (clear)
2008-12-28 14:35:37 +01:00
);
return data;
}
/*
* These functions are guaranteed to copy by reading from src and writing to dst in <n>-bit units
* If size is not aligned, the remaining bytes are not copied
*/
void memset32(void *dst, u32 value, u32 size);
void memcpy32(void *dst, void *src, u32 size);
void memset16(void *dst, u16 value, u32 size);
void memcpy16(void *dst, void *src, u32 size);
void memset8(void *dst, u8 value, u32 size);
void memcpy8(void *dst, void *src, u32 size);
void hexdump(void *d, int len);
int sprintf(char *str, const char *fmt, ...);
2009-01-08 23:27:22 +01:00
void udelay(u32 d);
void panic(u8 v);
2008-12-28 14:35:37 +01:00
2009-01-16 08:48:12 +01:00
static inline u32 get_cpsr(void)
{
u32 data;
__asm__ volatile ( "mrs\t%0, cpsr" : "=r" (data) );
return data;
}
2009-05-02 12:56:32 +02:00
#define STACK_ALIGN(type, name, cnt, alignment) \
u8 _al__##name[((sizeof(type)*(cnt)) + (alignment) + \
(((sizeof(type)*(cnt))%(alignment)) > 0 ? ((alignment) - \
((sizeof(type)*(cnt))%(alignment))) : 0))]; \
type *name = (type*)(((u32)(_al__##name)) + ((alignment) - (( \
(u32)(_al__##name))&((alignment)-1))))
2008-12-28 14:35:37 +01:00
#endif