OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [or1ksim/] [or1ksim-0.4.0rc1/] [testsuite/] [test-code-or1k/] [uos/] [task.c] - Diff between revs 90 and 105

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

Rev 90 Rev 105
/* task.c.  Microkernel task handler for Or1ksim
/* task.c.  Microkernel task handler for Or1ksim
 
 
   Copyright (C) 2000 Damjan Lampret
   Copyright (C) 2000 Damjan Lampret
   Copyright (C) 2010 Embecosm Limited
   Copyright (C) 2010 Embecosm Limited
 
 
   Contributor Damjan Lampret <lampret@opencores.org>
   Contributor Damjan Lampret <lampret@opencores.org>
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
 
 
   This file is part of OpenRISC 1000 Architectural Simulator.
   This file is part of OpenRISC 1000 Architectural Simulator.
 
 
   This program is free software; you can redistribute it and/or modify it
   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
   under the terms of the GNU General Public License as published by the Free
   Software Foundation; either version 3 of the License, or (at your option)
   Software Foundation; either version 3 of the License, or (at your option)
   any later version.
   any later version.
 
 
   This program is distributed in the hope that it will be useful, but WITHOUT
   This program is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   more details.
   more details.
 
 
   You should have received a copy of the GNU General Public License along
   You should have received a copy of the GNU General Public License along
   with this program.  If not, see <http:  www.gnu.org/licenses/>.  */
   with this program.  If not, see <http:  www.gnu.org/licenses/>.  */
 
 
/* ----------------------------------------------------------------------------
/* ----------------------------------------------------------------------------
   This code is commented throughout for use with Doxygen.
   This code is commented throughout for use with Doxygen.
   --------------------------------------------------------------------------*/
   --------------------------------------------------------------------------*/
 
 
/* This file is part of test microkernel for OpenRISC 1000. */
/* This file is part of test microkernel for OpenRISC 1000. */
 
 
#include "support.h"
#include "support.h"
#include "uos.h"
#include "uos.h"
#include "ipc.h"
#include "ipc.h"
#include "int.h"
#include "int.h"
 
 
extern struct tcb tasks[MAX_TASKS+1];
extern struct tcb tasks[MAX_TASKS+1];
 
 
int task(int id)
int task(int id)
{
{
        struct _msg {
        struct _msg {
                char            id;
                char            id;
                unsigned long   count;
                unsigned long   count;
        } msg;
        } msg;
 
 
        printf("Task %d started\n", id);
        printf("Task %d started\n", id);
 
 
        if(id == 1) {
        if(id == 1) {
                msg.id = 1;
                msg.id = 1;
                msg.count = 0;
                msg.count = 0;
                uos_msgsnd(2, (char *)&msg, sizeof(msg));
                uos_msgsnd(2, (char *)&msg, sizeof(msg));
        }
        }
 
 
        for(;;) {
        for(;;) {
                uos_msgrcv(0, (char *)&msg, sizeof(msg));
                uos_msgrcv(0, (char *)&msg, sizeof(msg));
 
 
                printf("Task %d: Got massage from task %d: 0x%.8x. "
                printf("Task %d: Got massage from task %d: 0x%.8x. "
                       "Sending message to task %d: 0x%.8x \n", id, msg.id,
                       "Sending message to task %d: 0x%.8x \n", id, msg.id,
                       (int)msg.count, (id == 3 ? 1 : (id + 1)),
                       (int)msg.count, (id == 3 ? 1 : (id + 1)),
                       (int)(msg.count  + 1));
                       (int)(msg.count  + 1));
                msg.id = id;
                msg.id = id;
 
 
                if((id == 1) && (msg.count > 15)) {
                if((id == 1) && (msg.count > 15)) {
                  report(msg.count + 0xdeadde9c);
                  report(msg.count + 0xdeadde9c);
                  exit(0);
                  exit(0);
 
 
 
 
                        msg.count += 1;
                        msg.count += 1;
                        uos_msgsnd((id == 3 ? 1 : (id + 1)), (char *)&msg, sizeof(msg));
                        uos_msgsnd((id == 3 ? 1 : (id + 1)), (char *)&msg, sizeof(msg));
                }
                }
        }
        }
}
}
 
 
/* Called by kernel_init to collect all tasks entries. */
/* Called by kernel_init to collect all tasks entries. */
void tasks_entries()
void tasks_entries()
{
{
        tasks[1].regs.pc = (unsigned long)task;
        tasks[1].regs.pc = (unsigned long)task;
        tasks[2].regs.pc = (unsigned long)task;
        tasks[2].regs.pc = (unsigned long)task;
        tasks[3].regs.pc = (unsigned long)task;
        tasks[3].regs.pc = (unsigned long)task;
}
}
 
 
 
 

powered by: WebSVN 2.1.0

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