2002-04-21 22:06:12 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2002 by Bj<EFBFBD>rn Stenberg
|
|
|
|
|
*
|
|
|
|
|
* 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 _KERNEL_H_
|
|
|
|
|
#define _KERNEL_H_
|
|
|
|
|
|
2002-05-23 09:22:07 +00:00
|
|
|
|
#include <stdbool.h>
|
2006-12-19 16:50:07 +00:00
|
|
|
|
#include <inttypes.h>
|
2005-11-07 23:07:19 +00:00
|
|
|
|
#include "config.h"
|
2002-05-23 09:22:07 +00:00
|
|
|
|
|
2002-04-21 22:06:12 +00:00
|
|
|
|
/* wrap-safe macros for tick comparison */
|
|
|
|
|
#define TIME_AFTER(a,b) ((long)(b) - (long)(a) < 0)
|
|
|
|
|
#define TIME_BEFORE(a,b) TIME_AFTER(b,a)
|
|
|
|
|
|
|
|
|
|
#define HZ 100 /* number of ticks per second */
|
|
|
|
|
|
2005-11-23 08:51:48 +00:00
|
|
|
|
#define MAX_NUM_TICK_TASKS 8
|
2002-06-04 12:25:53 +00:00
|
|
|
|
|
2002-04-29 14:25:44 +00:00
|
|
|
|
#define QUEUE_LENGTH 16 /* MUST be a power of 2 */
|
|
|
|
|
#define QUEUE_LENGTH_MASK (QUEUE_LENGTH - 1)
|
|
|
|
|
|
2006-12-16 18:41:45 +00:00
|
|
|
|
/* System defined message ID's, occupying the top 5 bits of the event ID */
|
2005-01-10 22:00:54 +00:00
|
|
|
|
#define SYS_EVENT (long)0x80000000 /* SYS events are negative */
|
|
|
|
|
#define SYS_USB_CONNECTED ((SYS_EVENT | ((long)1 << 27)))
|
|
|
|
|
#define SYS_USB_CONNECTED_ACK ((SYS_EVENT | ((long)2 << 27)))
|
|
|
|
|
#define SYS_USB_DISCONNECTED ((SYS_EVENT | ((long)3 << 27)))
|
|
|
|
|
#define SYS_USB_DISCONNECTED_ACK ((SYS_EVENT | ((long)4 << 27)))
|
|
|
|
|
#define SYS_TIMEOUT ((SYS_EVENT | ((long)5 << 27)))
|
|
|
|
|
#define SYS_MMC_INSERTED ((SYS_EVENT | ((long)6 << 27)))
|
|
|
|
|
#define SYS_MMC_EXTRACTED ((SYS_EVENT | ((long)7 << 27)))
|
|
|
|
|
#define SYS_POWEROFF ((SYS_EVENT | ((long)8 << 27)))
|
2005-01-28 22:35:20 +00:00
|
|
|
|
#define SYS_FS_CHANGED ((SYS_EVENT | ((long)9 << 27)))
|
2005-04-06 11:12:22 +00:00
|
|
|
|
#define SYS_CHARGER_CONNECTED ((SYS_EVENT | ((long)10 << 27)))
|
|
|
|
|
#define SYS_CHARGER_DISCONNECTED ((SYS_EVENT | ((long)11 << 27)))
|
2006-09-26 10:03:56 +00:00
|
|
|
|
#define SYS_PHONE_PLUGGED ((SYS_EVENT | ((long)12 << 27)))
|
|
|
|
|
#define SYS_PHONE_UNPLUGGED ((SYS_EVENT | ((long)13 << 27)))
|
2004-10-10 00:35:19 +00:00
|
|
|
|
|
2002-04-29 14:25:44 +00:00
|
|
|
|
struct event
|
|
|
|
|
{
|
2006-12-19 16:50:07 +00:00
|
|
|
|
long id;
|
|
|
|
|
intptr_t data;
|
2002-04-29 14:25:44 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-12-16 18:35:12 +00:00
|
|
|
|
#ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
|
|
|
|
|
struct queue_sender_list
|
|
|
|
|
{
|
|
|
|
|
/* If non-NULL, there is a thread waiting for the corresponding event */
|
2007-03-21 22:58:53 +00:00
|
|
|
|
/* Must be statically allocated to put in non-cached ram. */
|
|
|
|
|
struct thread_entry *senders[QUEUE_LENGTH];
|
2006-12-16 18:35:12 +00:00
|
|
|
|
/* Send info for last message dequeued or NULL if replied or not sent */
|
2007-03-21 22:58:53 +00:00
|
|
|
|
struct thread_entry *curr_sender;
|
2006-12-16 18:35:12 +00:00
|
|
|
|
};
|
|
|
|
|
#endif /* HAVE_EXTENDED_MESSAGING_AND_NAME */
|
|
|
|
|
|
2002-04-29 14:25:44 +00:00
|
|
|
|
struct event_queue
|
|
|
|
|
{
|
|
|
|
|
struct event events[QUEUE_LENGTH];
|
2006-09-16 16:18:11 +00:00
|
|
|
|
struct thread_entry *thread;
|
2002-04-29 14:25:44 +00:00
|
|
|
|
unsigned int read;
|
|
|
|
|
unsigned int write;
|
2007-03-26 16:55:17 +00:00
|
|
|
|
#if NUM_CORES > 1
|
|
|
|
|
bool irq_safe;
|
|
|
|
|
#endif
|
2006-12-16 18:41:45 +00:00
|
|
|
|
#ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
|
2006-12-16 18:35:12 +00:00
|
|
|
|
struct queue_sender_list *send;
|
2006-12-16 18:41:45 +00:00
|
|
|
|
#endif
|
2002-04-29 14:25:44 +00:00
|
|
|
|
};
|
|
|
|
|
|
2002-05-16 20:57:32 +00:00
|
|
|
|
struct mutex
|
|
|
|
|
{
|
2007-03-09 08:03:18 +00:00
|
|
|
|
uint32_t locked;
|
2006-09-16 16:18:11 +00:00
|
|
|
|
struct thread_entry *thread;
|
2002-05-16 20:57:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2002-04-21 22:06:12 +00:00
|
|
|
|
/* global tick variable */
|
2006-11-22 00:41:30 +00:00
|
|
|
|
#if defined(CPU_PP) && defined(BOOTLOADER)
|
2006-01-05 17:02:48 +00:00
|
|
|
|
/* We don't enable interrupts in the iPod bootloader, so we need to fake
|
|
|
|
|
the current_tick variable */
|
2006-03-05 18:40:51 +00:00
|
|
|
|
#define current_tick (signed)(USEC_TIMER/10000)
|
2006-01-05 17:02:48 +00:00
|
|
|
|
#else
|
2002-04-21 22:06:12 +00:00
|
|
|
|
extern long current_tick;
|
2006-01-05 17:02:48 +00:00
|
|
|
|
#endif
|
2002-04-21 22:06:12 +00:00
|
|
|
|
|
2005-02-22 12:19:12 +00:00
|
|
|
|
#ifdef SIMULATOR
|
|
|
|
|
#define sleep(x) sim_sleep(x)
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-04-21 22:06:12 +00:00
|
|
|
|
/* kernel functions */
|
2002-05-05 18:34:06 +00:00
|
|
|
|
extern void kernel_init(void);
|
2002-04-21 22:06:12 +00:00
|
|
|
|
extern void yield(void);
|
|
|
|
|
extern void sleep(int ticks);
|
2002-05-06 19:26:56 +00:00
|
|
|
|
int tick_add_task(void (*f)(void));
|
|
|
|
|
int tick_remove_task(void (*f)(void));
|
2002-04-21 22:06:12 +00:00
|
|
|
|
|
2006-09-16 16:18:11 +00:00
|
|
|
|
extern void queue_init(struct event_queue *q, bool register_queue);
|
2007-03-26 16:55:17 +00:00
|
|
|
|
#if NUM_CORES > 1
|
|
|
|
|
extern void queue_set_irq_safe(struct event_queue *q, bool state);
|
|
|
|
|
#else
|
|
|
|
|
#define queue_set_irq_safe(q,state)
|
|
|
|
|
#endif
|
2006-01-23 10:53:47 +00:00
|
|
|
|
extern void queue_delete(struct event_queue *q);
|
2002-05-16 20:57:32 +00:00
|
|
|
|
extern void queue_wait(struct event_queue *q, struct event *ev);
|
2002-10-11 08:56:23 +00:00
|
|
|
|
extern void queue_wait_w_tmo(struct event_queue *q, struct event *ev, int ticks);
|
2006-12-19 16:50:07 +00:00
|
|
|
|
extern void queue_post(struct event_queue *q, long id, intptr_t data);
|
2006-12-16 18:35:12 +00:00
|
|
|
|
#ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
|
2006-12-16 18:41:45 +00:00
|
|
|
|
extern void queue_enable_queue_send(struct event_queue *q, struct queue_sender_list *send);
|
2006-12-19 16:50:07 +00:00
|
|
|
|
extern intptr_t queue_send(struct event_queue *q, long id, intptr_t data);
|
|
|
|
|
extern void queue_reply(struct event_queue *q, intptr_t retval);
|
2006-12-16 18:35:12 +00:00
|
|
|
|
extern bool queue_in_queue_send(struct event_queue *q);
|
|
|
|
|
#endif /* HAVE_EXTENDED_MESSAGING_AND_NAME */
|
2004-08-16 23:37:23 +00:00
|
|
|
|
extern bool queue_empty(const struct event_queue* q);
|
2006-12-16 18:35:12 +00:00
|
|
|
|
extern void queue_clear(struct event_queue* q);
|
2006-10-19 11:43:13 +00:00
|
|
|
|
extern void queue_remove_from_head(struct event_queue *q, long id);
|
2007-03-11 10:52:36 +00:00
|
|
|
|
extern int queue_count(const struct event_queue *q);
|
2006-12-19 16:50:07 +00:00
|
|
|
|
extern int queue_broadcast(long id, intptr_t data);
|
2002-04-21 22:06:12 +00:00
|
|
|
|
|
2002-05-16 20:57:32 +00:00
|
|
|
|
extern void mutex_init(struct mutex *m);
|
2007-03-09 08:03:18 +00:00
|
|
|
|
static inline void spinlock_init(struct mutex *m)
|
|
|
|
|
{ mutex_init(m); } /* Same thing for now */
|
2002-05-16 20:57:32 +00:00
|
|
|
|
extern void mutex_lock(struct mutex *m);
|
|
|
|
|
extern void mutex_unlock(struct mutex *m);
|
2007-03-09 08:03:18 +00:00
|
|
|
|
extern void spinlock_lock(struct mutex *m);
|
|
|
|
|
extern void spinlock_unlock(struct mutex *m);
|
2005-03-01 14:33:45 +00:00
|
|
|
|
extern void tick_start(unsigned int interval_in_ms);
|
2002-05-16 20:57:32 +00:00
|
|
|
|
|
2005-04-06 13:05:06 +00:00
|
|
|
|
#define IS_SYSEVENT(ev) ((ev & SYS_EVENT) == SYS_EVENT)
|
|
|
|
|
|
2002-04-21 22:06:12 +00:00
|
|
|
|
#endif
|