Ressurect from the Attic.

This commit is contained in:
thorpej 1997-09-02 14:00:11 +00:00
parent 9db8b6018f
commit e79009b830
2 changed files with 186 additions and 0 deletions

View File

@ -0,0 +1,113 @@
/* $NetBSD: cpuconf.c,v 1.5 1997/09/02 14:00:11 thorpej Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Christopher G. Demetriou
* for the NetBSD Project.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* CPU (machine) type configuration switch.
*
* This table should probably go at the end of conf.c, but
* I didn't want to make conf.c "different."
*/
#include <sys/param.h>
#include <sys/device.h>
#include <machine/cpuconf.h>
#undef DEC_2100_A50 /* config 'option' with flag brokenness */
#include "dec_2100_a50.h"
cpu_decl(dec_2100_a50);
#undef DEC_KN8AE /* config 'option' with flag brokenness */
#include "dec_kn8ae.h"
cpu_decl(dec_kn8ae);
#undef DEC_3000_300 /* config 'option' with flag brokenness */
#include "dec_3000_300.h"
cpu_decl(dec_3000_300);
#undef DEC_3000_500 /* config 'option' with flag brokenness */
#include "dec_3000_500.h"
cpu_decl(dec_3000_500);
#undef DEC_AXPPCI_33 /* config 'option' with flag brokenness */
#include "dec_axppci_33.h"
cpu_decl(dec_axppci_33);
#undef DEC_EB164 /* config 'option' with flag brokenness */
#include "dec_eb164.h"
cpu_decl(dec_eb164);
#undef DEC_KN20AA /* config 'option' with flag brokenness */
#include "dec_kn20aa.h"
cpu_decl(dec_kn20aa);
const struct cpusw cpusw[] = {
cpu_unknown(), /* 0: ??? */
cpu_notdef("Alpha Demonstration Unit"), /* 1: ST_ADU */
cpu_notdef("DEC 4000 (\"Cobra\")"), /* 2: ST_DEC_4000 */
cpu_notdef("DEC 7000 (\"Ruby\")"), /* 3: ST_DEC_7000 */
cpu_init("DEC 3000/500 (\"Flamingo\")",DEC_3000_500,dec_3000_500),
/* 4: ST_DEC_3000_500 */
cpu_unknown(), /* 5: ??? */
cpu_notdef("DEC 2000/300 (\"Jensen\")"),
/* 6: ST_DEC_2000_300 */
cpu_init("DEC 3000/300 (\"Pelican\")",DEC_3000_300,dec_3000_300),
/* 7: ST_DEC_3000_300 */
cpu_unknown(), /* 8: ??? */
cpu_notdef("DEC 2100/A500 (\"Sable\")"),
/* 9: ST_DEC_2100_A500 */
cpu_notdef("AXPvme 64"), /* 10: ST_DEC_APXVME_64 */
cpu_init("DEC AXPpci",DEC_AXPPCI_33,dec_axppci_33),
/* 11: ST_DEC_AXPPCI_33 */
cpu_init("AlphaServer 8400",DEC_KN8AE,dec_kn8ae),
/* 12: ST_DEC_21000 */
cpu_init("AlphaStation 200/400 (\"Avanti\")",DEC_2100_A50,dec_2100_a50),
/* 13: ST_DEC_2100_A50 */
cpu_notdef("Mustang"), /* 14: ST_DEC_MUSTANG */
cpu_init("AlphaStation 600 (KN20AA)",DEC_KN20AA,dec_kn20aa),
/* 15: ST_DEC_KN20AA */
cpu_unknown(), /* 16: ??? */
cpu_notdef("DEC 1000 (\"Mikasa\")"), /* 17: ST_DEC_1000 */
cpu_unknown(), /* 18: ??? */
cpu_notdef("EB66"), /* 19: ST_EB66 */
cpu_notdef("EB64+"), /* 20: ST_EB64P */
cpu_unknown(), /* 21: ??? */
cpu_notdef("DEC 4100 (\"Rawhide\")"), /* 22: ST_DEC_4100 */
cpu_notdef("??? (\"Lego\")"), /* 23: ST_DEC_EV45_PBP */
cpu_notdef("DEC 2100A/A500 (\"Lynx\")"),
/* 24: ST_DEC_2100A_A500 */
cpu_unknown(), /* 25: ??? */
cpu_init("EB164",DEC_EB164,dec_eb164), /* 26: ST_EB164 */
cpu_notdef("DEC 1000A (\"Noritake\")"), /* 27: ST_DEC_1000A */
cpu_notdef("AlphaVME 224 (\"Cortex\")"),
/* 28: ST_DEC_ALPHAVME_224 */
};
const int ncpusw = sizeof (cpusw) / sizeof (cpusw[0]);

View File

@ -0,0 +1,73 @@
/* $NetBSD: cpuconf.h,v 1.3 1997/09/02 14:00:17 thorpej Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Christopher G. Demetriou
* for the NetBSD Project.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
struct cpusw {
const char *family, *option;
int present;
const char *(*model_name) __P((void));
void (*cons_init) __P((void));
const char *(*iobus_name) __P((void));
void (*device_register) __P((struct device *dev,
void *aux));
};
#define CONCAT(a,b) __CONCAT(a,b)
#define cpu_fn_name(p,f) CONCAT(CONCAT(p,_),f)
#define cpu_decl(p) \
extern const char *cpu_fn_name(p,model_name) __P((void)); \
extern void cpu_fn_name(p,cons_init) __P((void)); \
extern const char *cpu_fn_name(p,iobus_name) __P((void)); \
extern void cpu_fn_name(p,device_register) \
__P((struct device *, void*));
#define cpu_unknown() { NULL, NULL, 0, }
#define cpu_notdef(f) { f, NULL, 0 }
#define cpu_option_string(o) __STRING(o)
#define cpu_option_present(o) (CONCAT(N,o) > NULL)
#define cpu_function_init(o,p,f) \
(cpu_option_present(o) ? cpu_fn_name(p,f) : 0)
#define cpu_init(f,o,p) \
{ \
f, cpu_option_string(o) , cpu_option_present(o), \
cpu_function_init(o,p,model_name), \
cpu_function_init(o,p,cons_init), \
cpu_function_init(o,p,iobus_name), \
cpu_function_init(o,p,device_register), \
}
#ifdef _KERNEL
extern const struct cpusw cpusw[];
extern const int ncpusw;
#endif