d718786c68
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5195 a1c6a512-1295-4272-9138-f99709370657
181 lines
4.9 KiB
C
181 lines
4.9 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2002 by Alan Korr
|
|
*
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __SYSTEM_H__
|
|
#define __SYSTEM_H__
|
|
|
|
#include "cpu.h"
|
|
#include "config.h"
|
|
|
|
extern void system_reboot (void);
|
|
extern void system_init(void);
|
|
|
|
#define FREQ CPU_FREQ
|
|
#define BAUDRATE 9600
|
|
|
|
#ifndef NULL
|
|
#define NULL ((void*)0)
|
|
#endif
|
|
|
|
#ifndef MIN
|
|
#define MIN(a, b) (((a)<(b))?(a):(b))
|
|
#endif
|
|
|
|
#ifndef MAX
|
|
#define MAX(a, b) (((a)>(b))?(a):(b))
|
|
#endif
|
|
|
|
#ifdef LITTLE_ENDIAN
|
|
#define SWAB16(x) (x)
|
|
#define SWAB32(x) (x)
|
|
#endif
|
|
|
|
#define nop \
|
|
asm volatile ("nop")
|
|
|
|
/* gcc 3.4 changed the format of the constraints */
|
|
#if (__GNUC__ >= 3) && (__GNUC_MINOR__ > 3)
|
|
#define I_CONSTRAINT "I08"
|
|
#else
|
|
#define I_CONSTRAINT "I"
|
|
#endif
|
|
|
|
#define or_b(mask, address) \
|
|
asm \
|
|
("or.b\t%0,@(r0,gbr)" \
|
|
: \
|
|
: /* %0 */ I_CONSTRAINT((char)(mask)), \
|
|
/* %1 */ "z"(address-GBR))
|
|
|
|
#define and_b(mask, address) \
|
|
asm \
|
|
("and.b\t%0,@(r0,gbr)" \
|
|
: \
|
|
: /* %0 */ I_CONSTRAINT((char)(mask)), \
|
|
/* %1 */ "z"(address-GBR))
|
|
|
|
#define xor_b(mask, address) \
|
|
asm \
|
|
("xor.b\t%0,@(r0,gbr)" \
|
|
: \
|
|
: /* %0 */ I_CONSTRAINT((char)(mask)), \
|
|
/* %1 */ "z"(address-GBR))
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
/****************************************************************************
|
|
* Interrupt level setting
|
|
* The level is left shifted 4 bits
|
|
****************************************************************************/
|
|
#define HIGHEST_IRQ_LEVEL (15<<4)
|
|
static inline int set_irq_level(int level)
|
|
{
|
|
int i;
|
|
/* Read the old level and set the new one */
|
|
asm volatile ("stc sr, %0" : "=r" (i));
|
|
asm volatile ("ldc %0, sr" : : "r" (level));
|
|
return i;
|
|
}
|
|
|
|
static inline unsigned short SWAB16(unsigned short value)
|
|
/*
|
|
result[15..8] = value[ 7..0];
|
|
result[ 7..0] = value[15..8];
|
|
*/
|
|
{
|
|
short result;
|
|
asm volatile ("swap.b\t%1,%0" : "=r"(result) : "r"(value));
|
|
return result;
|
|
}
|
|
|
|
static inline unsigned long SWAW32(unsigned long value)
|
|
/*
|
|
result[31..16] = value[15.. 0];
|
|
result[15.. 0] = value[31..16];
|
|
*/
|
|
{
|
|
long result;
|
|
asm volatile ("swap.w\t%1,%0" : "=r"(result) : "r"(value));
|
|
return result;
|
|
}
|
|
|
|
static inline unsigned long SWAB32(unsigned long value)
|
|
/*
|
|
result[31..24] = value[ 7.. 0];
|
|
result[23..16] = value[15.. 8];
|
|
result[15.. 8] = value[23..16];
|
|
result[ 7.. 0] = value[31..24];
|
|
*/
|
|
{
|
|
asm volatile ("swap.b\t%0,%0\n"
|
|
"swap.w\t%0,%0\n"
|
|
"swap.b\t%0,%0\n" : "+r"(value));
|
|
return value;
|
|
}
|
|
|
|
/* Test And Set - UNTESTED */
|
|
static inline int tas (volatile int *pointer)
|
|
{
|
|
int result;
|
|
asm volatile ("tas.b\t@%1;movt\t%0" : "=t"(result) : "r"((char *)pointer) : "memory");
|
|
return result;
|
|
}
|
|
|
|
/* Compare And Swap */
|
|
static inline int cas (volatile int *pointer,int requested_value,int new_value)
|
|
{
|
|
unsigned int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
|
|
if (*pointer == requested_value)
|
|
{
|
|
*pointer = new_value;
|
|
set_irq_level(oldlevel);
|
|
return 1;
|
|
}
|
|
set_irq_level(oldlevel);
|
|
return 0;
|
|
}
|
|
|
|
static inline int cas2 (volatile int *pointer1,volatile int *pointer2,int requested_value1,int requested_value2,int new_value1,int new_value2)
|
|
{
|
|
unsigned int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
|
|
if (*pointer1 == requested_value1 && *pointer2 == requested_value2)
|
|
{
|
|
*pointer1 = new_value1;
|
|
*pointer2 = new_value2;
|
|
set_irq_level(oldlevel);
|
|
return 1;
|
|
}
|
|
set_irq_level(oldlevel);
|
|
return 0;
|
|
}
|
|
|
|
/* Utilize the user break controller to catch invalid memory accesses. */
|
|
int system_memory_guard(int newmode);
|
|
|
|
enum {
|
|
MEMGUARD_KEEP = -1, /* don't change the mode; for reading */
|
|
MEMGUARD_NONE = 0, /* catch nothing */
|
|
MEMGUARD_FLASH_WRITES, /* catch writes to area 02 (flash ROM) */
|
|
MEMGUARD_ZERO_AREA, /* catch all accesses to areas 00 and 01 */
|
|
MAXMEMGUARD
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|