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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [m68k/] [mvme136/] [shmsupp/] [mpisr.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  Shm_isr_mvme136()
2
 *
3
 *  NOTE: This routine is not used when in polling mode.  Either
4
 *        this routine OR Shm_clockisr is used in a particular system.
5
 *
6
 *  COPYRIGHT (c) 1989-1999.
7
 *  On-Line Applications Research Corporation (OAR).
8
 *
9
 *  The license and distribution terms for this file may be
10
 *  found in the file LICENSE in this distribution or at
11
 *  http://www.OARcorp.com/rtems/license.html.
12
 *
13
 *  $Id: mpisr.c,v 1.2 2001-09-27 12:00:14 chris Exp $
14
 */
15
 
16
#include <rtems.h>
17
#include <bsp.h>
18
#include <shm_driver.h>
19
 
20
rtems_isr Shm_isr_mvme136()
21
{
22
  Shm_Interrupt_count += 1;
23
  rtems_multiprocessing_announce();
24
  (*(volatile rtems_unsigned8 *)0xfffb006b) = 0; /* clear MPCSR intr */
25
}
26
 
27
/*  void _Shm_setvec( )
28
 *
29
 *  This driver routine sets the SHM interrupt vector to point to the
30
 *  driver's SHM interrupt service routine.
31
 *
32
 *  Input parameters:  NONE
33
 *
34
 *  Output parameters: NONE
35
 */
36
 
37
void Shm_setvec()
38
{
39
  /* may need to disable intr */
40
  set_vector( Shm_isr_mvme136, 75, 1 );
41
}

powered by: WebSVN 2.1.0

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