OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_47/] [or1ksim/] [testbench/] [uos/] [uos.h] - Diff between revs 1419 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 1419 Rev 1765
/* This file is part of test microkernel for OpenRISC 1000. */
/* This file is part of test microkernel for OpenRISC 1000. */
/* (C) 2000 Damjan Lampret, lampret@opencores.org */
/* (C) 2000 Damjan Lampret, lampret@opencores.org */
 
 
/* Length of the IPC message's useful data. */
/* Length of the IPC message's useful data. */
#define MAX_MSGLEN 100
#define MAX_MSGLEN 100
 
 
/* Number of user tasks in the system. */
/* Number of user tasks in the system. */
#define MAX_TASKS 8
#define MAX_TASKS 8
 
 
/* Number of IPC messages in the system. */
/* Number of IPC messages in the system. */
#define MAX_MSGS 16
#define MAX_MSGS 16
 
 
/* Number of general purpose registers (not counting r0 and r1). */
/* Number of general purpose registers (not counting r0 and r1). */
#define GPRS 30
#define GPRS 30
 
 
/* Size of kernel and user task stacks. Size for individual task. */
/* Size of kernel and user task stacks. Size for individual task. */
#define STACK_SIZE 2048 
#define STACK_SIZE 2048 
 
 
/* Define this if you want kernel debug output. Note that you must
/* Define this if you want kernel debug output. Note that you must
   assemble except_or32.S with KERNEL_OUTPUT defined in Makefile. This
   assemble except_or32.S with KERNEL_OUTPUT defined in Makefile. This
   definition is only for main uos.c. */
   definition is only for main uos.c. */
#define KERNEL_OUTPUT 0
#define KERNEL_OUTPUT 0
 
 
/* Define this if you want task switch at every system call. */
/* Define this if you want task switch at every system call. */
#define KERNEL_SYSCALL_SCHED 0
#define KERNEL_SYSCALL_SCHED 0
 
 
/* System tick timer period */
/* System tick timer period */
#define TICK_PERIOD 0x500
#define TICK_PERIOD 0x500
 
 
/* Task ID type (if we would have processes then we would call it PID) */
/* Task ID type (if we would have processes then we would call it PID) */
typedef int tid_t;
typedef int tid_t;
 
 
/* System call numbers */
/* System call numbers */
#define IPC_MSGSND 1
#define IPC_MSGSND 1
#define IPC_MSGRCV 2
#define IPC_MSGRCV 2
 
 
/* Message Control Block structure */
/* Message Control Block structure */
struct mcb {
struct mcb {
        char msg[MAX_MSGLEN];           /* Message's data */
        char msg[MAX_MSGLEN];           /* Message's data */
        int length;                     /* Message's length */
        int length;                     /* Message's length */
        tid_t origin;                   /* TID of message's origin task */
        tid_t origin;                   /* TID of message's origin task */
        struct mcb *next;               /* Next message in linked list */
        struct mcb *next;               /* Next message in linked list */
};
};
 
 
/* Task Control Block structure */
/* Task Control Block structure */
struct tcb {
struct tcb {
        struct regs {
        struct regs {
                unsigned long pc;               /* Task's PC */
                unsigned long pc;               /* Task's PC */
                unsigned long sp;               /* Task's stack (r1)*/
                unsigned long sp;               /* Task's stack (r1)*/
                unsigned long gprs[GPRS];       /* Task's GPRs r2-r15 */
                unsigned long gprs[GPRS];       /* Task's GPRs r2-r15 */
                unsigned long sr;               /* Task's supervision register */
                unsigned long sr;               /* Task's supervision register */
        } regs;
        } regs;
        struct mcb *waiting_msgs;       /* Waiting messages */
        struct mcb *waiting_msgs;       /* Waiting messages */
};
};
 
 
extern void dispatch();
extern void dispatch();
/* Called by kernel_init to collect all tasks entries. */
/* Called by kernel_init to collect all tasks entries. */
extern void tasks_entries();
extern void tasks_entries();
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.