Changeset 4a0d87e in rtems
- Timestamp:
- Apr 18, 2002, 8:54:19 PM (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 600e77a
- Parents:
- 0117487
- Files:
-
- 4 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/powerpc/ChangeLog
r0117487 r4a0d87e 1 2002-04-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * asm.h: Include cpuopts.h instead of targopts.h. 4 * rtems/new-exceptions/cpu.h: Relocated from 5 libbsp/powerpc/support/new_exception_processing/rtems/score/cpu.h 6 * rtems/old-exceptions/cpu.h: Relocated from 7 c/src/lib/libbsp/powerpc/support/old_exception_processing/rtems/score/cpu.h 8 * rtems/powerpc/registers.h: Relocated and renamed from 9 libcpu/powerpc/shared/include/cpu.h. 10 * rtems/score/cpu.h: New. 11 * Makefile.am: Reflect changes above. 12 1 13 2001-04-03 Joel Sherrill <joel@OARcorp.com> 2 14 -
c/src/exec/score/cpu/powerpc/Makefile.am
r0117487 r4a0d87e 26 26 27 27 include_rtems_scoredir = $(includedir)/rtems/score 28 include_rtems_score_HEADERS = rtems/score/ppc.h rtems/score/types.h 28 include_rtems_score_HEADERS = \ 29 rtems/score/ppc.h \ 30 rtems/score/types.h 31 include_rtems_score_HEADERS += rtems/score/cpu.h 32 33 $(PROJECT_INCLUDE)/rtems/old-exceptions: 34 $(mkinstalldirs) $@ 35 36 include_rtems_old_exceptionsdir = $(includedir)/rtems/old-exceptions 37 include_rtems_old_exceptions_HEADERS = rtems/old-exceptions/cpu.h 38 39 $(PROJECT_INCLUDE)/rtems/new-exceptions: 40 $(mkinstalldirs) $@ 41 42 include_rtems_new_exceptionsdir = $(includedir)/rtems/new-exceptions 43 include_rtems_new_exceptions_HEADERS = rtems/new-exceptions/cpu.h 44 45 46 $(PROJECT_INCLUDE)/rtems/powerpc: 47 $(mkinstalldirs) $@ 48 49 include_rtems_powerpcdir = $(includedir)/rtems/powerpc 50 include_rtems_powerpc_HEADERS = rtems/powerpc/registers.h 51 29 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ 30 53 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 54 55 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions \ 56 $(include_rtems_old_exceptions_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 57 58 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions \ 59 $(include_rtems_new_exceptions_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 60 61 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc \ 62 $(include_rtems_powerpc_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 31 63 32 64 # $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o -
c/src/exec/score/cpu/powerpc/asm.h
r0117487 r4a0d87e 37 37 #define ASM 38 38 #endif 39 #include <rtems/score/ targopts.h>39 #include <rtems/score/cpuopts.h> 40 40 #include <rtems/score/ppc.h> 41 41 -
c/src/exec/score/cpu/powerpc/rtems/new-exceptions/cpu.h
r0117487 r4a0d87e 37 37 #define __CPU_h 38 38 39 #ifndef _rtems_score_cpu_h 40 #error "You should include <rtems/score/cpu.h>" 41 #endif 42 43 #include <rtems/powerpc/registers.h> 44 39 45 #ifdef __cplusplus 40 46 extern "C" { 41 #endif42 43 #include <rtems/score/ppc.h> /* pick up machine definitions */44 #include <libcpu/cpu.h>45 46 #ifndef ASM47 #include <rtems/score/types.h>48 47 #endif 49 48 … … 455 454 #endif 456 455 457 #if (defined(mpc860) || defined(mpc821) || defined( 456 #if (defined(mpc860) || defined(mpc821) || defined(mpc8260)) 458 457 unsigned32 clock_speed; /* Speed of CPU in Hz */ 459 458 #endif … … 647 646 * level is returned in _isr_cookie. 648 647 */ 649 650 #define loc_string(a,b) a " (" #b ")\n"651 648 652 649 #ifndef ASM -
c/src/exec/score/cpu/powerpc/rtems/old-exceptions/cpu.h
r0117487 r4a0d87e 34 34 #define __CPU_h 35 35 36 #ifndef _rtems_score_cpu_h 37 #error "You should include <rtems/score/cpu.h>" 38 #endif 39 36 40 #ifdef __cplusplus 37 41 extern "C" { 38 42 #endif 39 43 40 #include <rtems/score/ppc.h> /* pick up machine definitions */41 44 #ifndef ASM 42 45 struct CPU_Interrupt_frame; 43 46 typedef void ( *ppc_isr_entry )( int, struct CPU_Interrupt_frame * ); 44 45 #include <rtems/score/types.h>46 47 #endif 47 48 … … 724 725 */ 725 726 726 #define loc_string(a,b) a " (" #b ")\n"727 728 727 #define _CPU_MSR_Value( _msr_value ) \ 729 728 do { \ -
cpukit/score/cpu/powerpc/ChangeLog
r0117487 r4a0d87e 1 2002-04-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * asm.h: Include cpuopts.h instead of targopts.h. 4 * rtems/new-exceptions/cpu.h: Relocated from 5 libbsp/powerpc/support/new_exception_processing/rtems/score/cpu.h 6 * rtems/old-exceptions/cpu.h: Relocated from 7 c/src/lib/libbsp/powerpc/support/old_exception_processing/rtems/score/cpu.h 8 * rtems/powerpc/registers.h: Relocated and renamed from 9 libcpu/powerpc/shared/include/cpu.h. 10 * rtems/score/cpu.h: New. 11 * Makefile.am: Reflect changes above. 12 1 13 2001-04-03 Joel Sherrill <joel@OARcorp.com> 2 14 -
cpukit/score/cpu/powerpc/Makefile.am
r0117487 r4a0d87e 26 26 27 27 include_rtems_scoredir = $(includedir)/rtems/score 28 include_rtems_score_HEADERS = rtems/score/ppc.h rtems/score/types.h 28 include_rtems_score_HEADERS = \ 29 rtems/score/ppc.h \ 30 rtems/score/types.h 31 include_rtems_score_HEADERS += rtems/score/cpu.h 32 33 $(PROJECT_INCLUDE)/rtems/old-exceptions: 34 $(mkinstalldirs) $@ 35 36 include_rtems_old_exceptionsdir = $(includedir)/rtems/old-exceptions 37 include_rtems_old_exceptions_HEADERS = rtems/old-exceptions/cpu.h 38 39 $(PROJECT_INCLUDE)/rtems/new-exceptions: 40 $(mkinstalldirs) $@ 41 42 include_rtems_new_exceptionsdir = $(includedir)/rtems/new-exceptions 43 include_rtems_new_exceptions_HEADERS = rtems/new-exceptions/cpu.h 44 45 46 $(PROJECT_INCLUDE)/rtems/powerpc: 47 $(mkinstalldirs) $@ 48 49 include_rtems_powerpcdir = $(includedir)/rtems/powerpc 50 include_rtems_powerpc_HEADERS = rtems/powerpc/registers.h 51 29 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ 30 53 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 54 55 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions \ 56 $(include_rtems_old_exceptions_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 57 58 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions \ 59 $(include_rtems_new_exceptions_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 60 61 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc \ 62 $(include_rtems_powerpc_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 31 63 32 64 # $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o -
cpukit/score/cpu/powerpc/asm.h
r0117487 r4a0d87e 37 37 #define ASM 38 38 #endif 39 #include <rtems/score/ targopts.h>39 #include <rtems/score/cpuopts.h> 40 40 #include <rtems/score/ppc.h> 41 41 -
cpukit/score/cpu/powerpc/rtems/asm.h
r0117487 r4a0d87e 37 37 #define ASM 38 38 #endif 39 #include <rtems/score/ targopts.h>39 #include <rtems/score/cpuopts.h> 40 40 #include <rtems/score/ppc.h> 41 41 -
cpukit/score/cpu/powerpc/rtems/new-exceptions/cpu.h
r0117487 r4a0d87e 37 37 #define __CPU_h 38 38 39 #ifndef _rtems_score_cpu_h 40 #error "You should include <rtems/score/cpu.h>" 41 #endif 42 43 #include <rtems/powerpc/registers.h> 44 39 45 #ifdef __cplusplus 40 46 extern "C" { 41 #endif42 43 #include <rtems/score/ppc.h> /* pick up machine definitions */44 #include <libcpu/cpu.h>45 46 #ifndef ASM47 #include <rtems/score/types.h>48 47 #endif 49 48 … … 455 454 #endif 456 455 457 #if (defined(mpc860) || defined(mpc821) || defined( 456 #if (defined(mpc860) || defined(mpc821) || defined(mpc8260)) 458 457 unsigned32 clock_speed; /* Speed of CPU in Hz */ 459 458 #endif … … 647 646 * level is returned in _isr_cookie. 648 647 */ 649 650 #define loc_string(a,b) a " (" #b ")\n"651 648 652 649 #ifndef ASM -
cpukit/score/cpu/powerpc/rtems/old-exceptions/cpu.h
r0117487 r4a0d87e 34 34 #define __CPU_h 35 35 36 #ifndef _rtems_score_cpu_h 37 #error "You should include <rtems/score/cpu.h>" 38 #endif 39 36 40 #ifdef __cplusplus 37 41 extern "C" { 38 42 #endif 39 43 40 #include <rtems/score/ppc.h> /* pick up machine definitions */41 44 #ifndef ASM 42 45 struct CPU_Interrupt_frame; 43 46 typedef void ( *ppc_isr_entry )( int, struct CPU_Interrupt_frame * ); 44 45 #include <rtems/score/types.h>46 47 #endif 47 48 … … 724 725 */ 725 726 726 #define loc_string(a,b) a " (" #b ")\n"727 728 727 #define _CPU_MSR_Value( _msr_value ) \ 729 728 do { \
Note: See TracChangeset
for help on using the changeset viewer.