From: Abraham vd M. <ab...@us...> - 2003-08-06 22:55:44
|
Update of /cvsroot/blob/blob/include/blob In directory sc8-pr-cvs1:/tmp/cvs-serv7704/include/blob Modified Files: Makefile.am arch.h led.h linux.h Log Message: Support for CSIR IMS board and also a working PXA25x port. Still needs some cleaning up and the lubbock and PXA IDP targets are going to be broken by this (not sure if they ever worked and fixing them is trivial). Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/include/blob/Makefile.am,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- Makefile.am 3 Apr 2003 14:51:34 -0000 1.19 +++ Makefile.am 6 Aug 2003 22:55:40 -0000 1.20 @@ -11,7 +11,8 @@ ########################################################################### SUBDIRS = \ - arch + arch \ + proc noinst_HEADERS = \ @@ -47,8 +48,6 @@ partition.h \ pcmcia.h \ reboot.h \ - sa1100.h \ - sa1111.h \ serial.h \ tar.h \ time.h \ Index: arch.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/arch.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- arch.h 3 Apr 2003 15:02:59 -0000 1.13 +++ arch.h 6 Aug 2003 22:55:40 -0000 1.14 @@ -27,10 +27,10 @@ #define BLOB_ARCH_H /* processor specific include files */ -#if defined PXA_IDP +#if defined(PXA_IDP) || defined(CSIR_IMS) #include <blob/proc/pxa.h> #else -#include <blob/proc/sa11x0.h> +#include <blob/proc/sa1100.h> #endif /* architecture specific include files */ @@ -76,6 +76,8 @@ # include <blob/arch/trizeps.h> #elif defined PXA_IDP # include <blob/arch/pxa_idp.h> +#elif defined CSIR_IMS +# include <blob/arch/csir_ims.h> #else # error "Please add an architecture specific include file" #endif Index: led.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/led.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- led.h 13 Feb 2003 01:10:52 -0000 1.4 +++ led.h 6 Aug 2003 22:55:40 -0000 1.5 @@ -27,7 +27,7 @@ -int led_init(void); +void led_init(void); int led_on(void); int led_off(void); void led_toggle(void); Index: linux.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/linux.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- linux.h 3 Apr 2003 15:02:59 -0000 1.13 +++ linux.h 6 Aug 2003 22:55:40 -0000 1.14 @@ -72,12 +72,11 @@ # define ARCH_NUMBER (112) #elif defined TRIZEPS # define ARCH_NUMBER (74) +#elif defined CSIR_IMS +# define ARCH_NUMBER (358) #else #warning "FIXME: Calling the kernel with a generic SA1100 architecture code. YMMV!" #define ARCH_NUMBER (18) #endif - - - #endif |