/* $NetBSD: dec_eb66.c,v 1.32 2025/03/09 01:06:41 thorpej Exp $ */ /* * Copyright (c) 1995, 1996, 1997 Carnegie-Mellon University. * All rights reserved. * * Author: Chris G. Demetriou * * Permission to use, copy, modify and distribute this software and * its documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. */ /* * Additional Copyright (c) 1997 by Matthew Jacob for NASA/Ames Research Center */ #include /* RCS ID & Copyright macro defns */ __KERNEL_RCSID(0, "$NetBSD: dec_eb66.c,v 1.32 2025/03/09 01:06:41 thorpej Exp $"); #include #include #include #include #include #include #include #include #include void dec_eb66_init(void); static void dec_eb66_cons_init(void); static void dec_eb66_device_register(device_t, void *); const struct alpha_variation_table dec_eb66_variations[] = { { 0, "DEC EB66" }, { 0, NULL }, }; void dec_eb66_init(void) { uint64_t variation; platform.family = "EB66"; if ((platform.model = alpha_dsr_sysname()) == NULL) { variation = hwrpb->rpb_variation & SV_ST_MASK; if ((platform.model = alpha_variation_name(variation, dec_eb66_variations)) == NULL) platform.model = alpha_unknown_sysname(); } platform.iobus = "lca"; platform.cons_init = dec_eb66_cons_init; platform.device_register = dec_eb66_device_register; lca_probe_bcache(); } static void dec_eb66_cons_init(void) { struct lca_config *lcp; extern struct lca_config lca_configuration; lcp = &lca_configuration; lca_init(lcp); pci_consinit(&lcp->lc_pc, &lcp->lc_iot, &lcp->lc_memt, &lcp->lc_iot, &lcp->lc_memt); } static void dec_eb66_device_register(device_t dev, void *aux) { pci_find_bootdev(NULL, dev, aux); }