2007-09-21 15:51:53 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Greg White
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-09-21 15:51:53 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef SYSTEM_TARGET_H
|
|
|
|
#define SYSTEM_TARGET_H
|
|
|
|
|
|
|
|
#include "system-arm.h"
|
2008-02-05 04:43:19 +00:00
|
|
|
#include "mmu-arm.h"
|
2007-09-21 15:51:53 +00:00
|
|
|
|
2010-04-23 15:32:50 +00:00
|
|
|
/* High enough for most tasks but low enough for reduced voltage */
|
|
|
|
#define CPUFREQ_DEFAULT 264000000
|
|
|
|
/* Still quite powerful, minimum possible frequency */
|
|
|
|
#define CPUFREQ_NORMAL 132000000
|
|
|
|
/* Overdrive mode */
|
|
|
|
#define CPUFREQ_MAX 528000000
|
2007-09-21 15:51:53 +00:00
|
|
|
|
2011-01-22 18:30:24 +00:00
|
|
|
#define CPU_MULTI_FREQUENCY 3
|
|
|
|
|
2011-01-22 09:23:31 +00:00
|
|
|
static inline void udelay(unsigned long usecs)
|
2009-01-19 13:41:25 +00:00
|
|
|
{
|
2011-01-22 09:23:31 +00:00
|
|
|
unsigned long stop = GPTCNT + usecs;
|
2009-01-23 01:23:25 +00:00
|
|
|
while (TIME_BEFORE(GPTCNT, stop));
|
2009-01-19 13:41:25 +00:00
|
|
|
}
|
|
|
|
|
2011-01-22 09:23:31 +00:00
|
|
|
static inline unsigned long usec_timer(void)
|
|
|
|
{
|
|
|
|
return GPTCNT;
|
|
|
|
}
|
|
|
|
|
2013-05-11 23:59:01 +00:00
|
|
|
/* Fire an event usecs microseconds from now */
|
|
|
|
typedef void (* uevent_cb_type)(void);
|
|
|
|
void uevent(unsigned long usecs, uevent_cb_type callback);
|
|
|
|
void uevent_cancel(void);
|
|
|
|
|
2008-12-21 18:10:36 +00:00
|
|
|
void watchdog_init(unsigned int half_seconds);
|
|
|
|
void watchdog_service(void);
|
|
|
|
|
2009-01-23 01:23:25 +00:00
|
|
|
void gpt_start(void);
|
|
|
|
void gpt_stop(void);
|
|
|
|
|
2009-02-08 22:32:41 +00:00
|
|
|
unsigned int iim_system_rev(void);
|
|
|
|
|
2010-04-23 15:32:50 +00:00
|
|
|
/* Prepare for transition to (new) firmware */
|
2008-02-08 02:20:05 +00:00
|
|
|
void system_prepare_fw_start(void);
|
|
|
|
void tick_stop(void);
|
2008-04-11 08:51:27 +00:00
|
|
|
void kernel_device_init(void);
|
2010-04-23 15:32:50 +00:00
|
|
|
void system_halt(void);
|
2008-04-11 08:51:27 +00:00
|
|
|
|
|
|
|
#define KDEV_INIT
|
2008-02-08 02:20:05 +00:00
|
|
|
|
2007-09-21 15:51:53 +00:00
|
|
|
struct ARM_REGS {
|
2010-01-03 10:19:43 +00:00
|
|
|
int r0;
|
|
|
|
int r1;
|
|
|
|
int r2;
|
|
|
|
int r3;
|
|
|
|
int r4;
|
|
|
|
int r5;
|
|
|
|
int r6;
|
|
|
|
int r7;
|
|
|
|
int r8;
|
|
|
|
int r9;
|
|
|
|
int r10;
|
|
|
|
int r11;
|
|
|
|
int r12;
|
|
|
|
int sp;
|
|
|
|
int lr;
|
|
|
|
int pc;
|
|
|
|
int cpsr;
|
2007-09-21 15:51:53 +00:00
|
|
|
} regs;
|
|
|
|
|
2010-09-07 14:30:30 +00:00
|
|
|
void dumpregs(void);
|
2007-09-21 15:51:53 +00:00
|
|
|
|
2012-01-01 03:19:52 +00:00
|
|
|
bool usb_plugged(void);
|
2011-12-31 18:44:22 +00:00
|
|
|
void usb_connect_event(void);
|
|
|
|
|
|
|
|
/** Sector read/write filters **/
|
|
|
|
|
|
|
|
/* Filter some things in the MBR - see usb-gigabeat-s.c */
|
|
|
|
void usb_fix_mbr(unsigned char *mbr);
|
|
|
|
#define USBSTOR_READ_SECTORS_FILTER() \
|
|
|
|
({ if (cur_cmd.sector == 0) \
|
|
|
|
usb_fix_mbr(cur_cmd.data[cur_cmd.data_select]); \
|
|
|
|
0; })
|
|
|
|
|
|
|
|
/* Disallow MBR writes entirely since it was "fixed" in usb_fix_mbr */
|
|
|
|
#define USBSTOR_WRITE_SECTORS_FILTER() \
|
|
|
|
({ cur_cmd.sector != 0 ? 0 : -1; })
|
|
|
|
|
2007-09-21 15:51:53 +00:00
|
|
|
#endif /* SYSTEM_TARGET_H */
|