Changeset c64e4ed4 in rtems for c/src/lib/libbsp/hppa1.1/simhppa/shmsupp
- Timestamp:
- 01/15/96 21:50:28 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a625ccd
- Parents:
- 5c491aef
- Location:
- c/src/lib/libbsp/hppa1.1/simhppa/shmsupp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/hppa1.1/simhppa/shmsupp/getcfg.c
r5c491aef rc64e4ed4 36 36 37 37 #include <bsp.h> 38 #include <runway.h>39 38 40 39 #include <shm.h> … … 44 43 45 44 #define HPPA_RUNWAY_PROC_HPA_BASE ((void *) 0xFFFA0000) 46 45 47 46 /* given a processor number, where is its HPA? */ 48 47 #define HPPA_RUNWAY_HPA(cpu) \ 49 48 ((rtems_unsigned32) (HPPA_RUNWAY_PROC_HPA_BASE + ((cpu) * 0x2000))) 50 49 51 50 #define HPPA_RUNWAY_REG_IO_EIR_OFFSET 0x000 52 51 53 52 shm_config_table BSP_shm_cfgtbl; 54 53 55 void Shm_Cause_interrupt_pxfl( rtems_unsigned32 node );54 extern void Shm_Cause_interrupt_pxfl( rtems_unsigned32 node ); 56 55 57 56 void Shm_Get_configuration( -
c/src/lib/libbsp/hppa1.1/simhppa/shmsupp/intr.c
r5c491aef rc64e4ed4 23 23 24 24 #include <rtems.h> 25 #include <rtems/error.h> 26 25 27 #include <shm.h> 26 28 … … 39 41 case NO_INTERRUPT: 40 42 break; 43 41 44 case LONG: 42 45 u32 = (rtems_unsigned32 *)intr->address; … … 45 48 default: 46 49 fprintf( stderr, "Shm_Cause_interrupt_pxfl: Unsupported length!!!\n" ); 47 rtems_shutdown_executive( 0 );48 break;49 50 } 50 51 }
Note: See TracChangeset
for help on using the changeset viewer.