autoconf.c revision 1.118
11.118Sthorpej/*	$NetBSD: autoconf.c,v 1.118 2021/04/24 23:36:24 thorpej Exp $	*/
21.25Scgd
31.1Smw/*
41.17Schopps * Copyright (c) 1994 Christian E. Hopps
51.1Smw * All rights reserved.
61.1Smw *
71.1Smw * Redistribution and use in source and binary forms, with or without
81.1Smw * modification, are permitted provided that the following conditions
91.1Smw * are met:
101.1Smw * 1. Redistributions of source code must retain the above copyright
111.1Smw *    notice, this list of conditions and the following disclaimer.
121.1Smw * 2. Redistributions in binary form must reproduce the above copyright
131.1Smw *    notice, this list of conditions and the following disclaimer in the
141.1Smw *    documentation and/or other materials provided with the distribution.
151.1Smw * 3. All advertising materials mentioning features or use of this software
161.1Smw *    must display the following acknowledgement:
171.17Schopps *      This product includes software developed by Christian E. Hopps.
181.17Schopps * 4. The name of the author may not be used to endorse or promote products
191.17Schopps *    derived from this software without specific prior written permission
201.4Smw *
211.17Schopps * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
221.17Schopps * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
231.17Schopps * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
241.17Schopps * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
251.17Schopps * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
261.17Schopps * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
271.17Schopps * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
281.17Schopps * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
291.17Schopps * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
301.17Schopps * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
311.1Smw */
321.80Saymeric
331.80Saymeric#include <sys/cdefs.h>
341.118Sthorpej__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.118 2021/04/24 23:36:24 thorpej Exp $");
351.80Saymeric
361.9Schopps#include <sys/param.h>
371.9Schopps#include <sys/systm.h>
381.17Schopps#include <sys/reboot.h>
391.9Schopps#include <sys/conf.h>
401.46Sthorpej#include <sys/buf.h>
411.17Schopps#include <sys/device.h>
421.17Schopps#include <sys/disklabel.h>
431.46Sthorpej#include <sys/disk.h>
441.90Sthorpej#include <sys/proc.h>
451.19Schopps#include <machine/cpu.h>
461.17Schopps#include <amiga/amiga/cfdev.h>
471.17Schopps#include <amiga/amiga/device.h>
481.9Schopps#include <amiga/amiga/custom.h>
491.104Sphx#ifdef DRACO
501.104Sphx#include <amiga/amiga/drcustom.h>
511.104Sphx#endif
521.112Srkujawa#ifdef P5PB_CONSOLE
531.112Srkujawa#include <amiga/pci/p5pbvar.h>
541.112Srkujawa#endif /* P5PB_CONSOLE */
551.1Smw
561.116Srkujawa#include "acafh.h"
571.116Srkujawa#if NACAFH > 0
581.116Srkujawa#include <amiga/dev/acafhvar.h>
591.116Srkujawa#endif /* NACAFH > 0 */
601.115Srkujawa
611.79Saymericstatic void findroot(void);
621.107Smattvoid mbattach(device_t, device_t, void *);
631.79Saymericint mbprint(void *, const char *);
641.107Smattint mbmatch(device_t, cfdata_t, void *);
651.11Schopps
661.17Schopps#include <sys/kernel.h>
671.46Sthorpej
681.47Smhitchu_long boot_partition;
691.81Saymeric
701.81Saymericint amiga_realconfig;
711.46Sthorpej
721.1Smw/*
731.17Schopps * called at boot time, configure all devices on system
741.1Smw */
751.11Schoppsvoid
761.102Sceggercpu_configure(void)
771.1Smw{
781.44Sis	int s;
791.62Sis#ifdef DEBUG_KERNEL_START
801.62Sis	int i;
811.62Sis#endif
821.49Sgwr
831.17Schopps	/*
841.17Schopps	 * this is the real thing baby (i.e. not console init)
851.17Schopps	 */
861.17Schopps	amiga_realconfig = 1;
871.36Sis#ifdef DRACO
881.36Sis	if (is_draco()) {
891.36Sis		*draco_intena &= ~DRIRQ_GLOBAL;
901.36Sis	} else
911.36Sis#endif
921.3Smw	custom.intena = INTF_INTEN;
931.44Sis	s = splhigh();
941.1Smw
951.95Sjmc	if (config_rootfound("mainbus", NULL) == NULL)
961.17Schopps		panic("no mainbus found");
971.36Sis
981.39Sis#ifdef DEBUG_KERNEL_START
991.43Schristos	printf("survived autoconf, going to enable interrupts\n");
1001.39Sis#endif
1011.79Saymeric
1021.36Sis#ifdef DRACO
1031.36Sis	if (is_draco()) {
1041.36Sis		*draco_intena |= DRIRQ_GLOBAL;
1051.36Sis		/* softints always enabled */
1061.36Sis	} else
1071.36Sis#endif
1081.36Sis	{
1091.36Sis		custom.intena = INTF_SETCLR | INTF_INTEN;
1101.28Schopps
1111.36Sis		/* also enable hardware aided software interrupts */
1121.36Sis		custom.intena = INTF_SETCLR | INTF_SOFTINT;
1131.36Sis	}
1141.39Sis#ifdef DEBUG_KERNEL_START
1151.62Sis	for (i=splhigh(); i>=s ;i-=0x100) {
1161.62Sis		splx(i);
1171.62Sis		printf("%d...", (i>>8) & 7);
1181.62Sis	}
1191.43Schristos	printf("survived interrupt enable\n");
1201.62Sis#else
1211.62Sis	splx(s);
1221.39Sis#endif
1231.63Sthorpej#ifdef DEBUG_KERNEL_START
1241.63Sthorpej	printf("survived configure...\n");
1251.63Sthorpej#endif
1261.49Sgwr}
1271.49Sgwr
1281.49Sgwrvoid
1291.102Sceggercpu_rootconf(void)
1301.49Sgwr{
1311.77Sfrueauf	findroot();
1321.39Sis#ifdef DEBUG_KERNEL_START
1331.46Sthorpej	printf("survived findroot()\n");
1341.39Sis#endif
1351.113Smlelstv	rootconf();
1361.17Schopps}
1371.3Smw
1381.17Schopps/*ARGSUSED*/
1391.17Schoppsint
1401.114Schssimple_devprint(void *aux, const char *pnp)
1411.17Schopps{
1421.17Schopps	return(QUIET);
1431.1Smw}
1441.1Smw
1451.17Schoppsint
1461.101Sdslmatchname(const char *fp, const char *sp)
1471.17Schopps{
1481.17Schopps	int len;
1491.1Smw
1501.17Schopps	len = strlen(fp);
1511.17Schopps	if (strlen(sp) != len)
1521.17Schopps		return(0);
1531.103Scegger	if (memcmp(fp, sp, len) == 0)
1541.17Schopps		return(1);
1551.17Schopps	return(0);
1561.17Schopps}
1571.1Smw
1581.17Schopps/*
1591.96Sdrochner * use config_search_ia to find appropriate device, then call that device
1601.79Saymeric * directly with NULL device variable storage.  A device can then
1611.79Saymeric * always tell the difference betwean the real and console init
1621.17Schopps * by checking for NULL.
1631.17Schopps */
1641.11Schoppsint
1651.114Schsamiga_config_found(cfdata_t pcfp, device_t parent, void *aux, cfprint_t pfn)
1661.1Smw{
1671.17Schopps	struct device temp;
1681.107Smatt	cfdata_t cf;
1691.86Sthorpej	const struct cfattach *ca;
1701.17Schopps
1711.17Schopps	if (amiga_realconfig)
1721.118Sthorpej		return(config_found(parent, aux, pfn, CFARG_EOL) != NULL);
1731.17Schopps
1741.114Schs	if (parent == NULL) {
1751.89Saymeric		memset(&temp, 0, sizeof temp);
1761.114Schs		parent = &temp;
1771.89Saymeric	}
1781.17Schopps
1791.114Schs	parent->dv_cfdata = pcfp;
1801.114Schs	parent->dv_cfdriver = config_cfdriver_lookup(pcfp->cf_name);
1811.114Schs	parent->dv_unit = pcfp->cf_unit;
1821.89Saymeric
1831.118Sthorpej	if ((cf = config_search(parent, aux, CFARG_EOL)) != NULL) {
1841.86Sthorpej		ca = config_cfattach_lookup(cf->cf_name, cf->cf_atname);
1851.86Sthorpej		if (ca != NULL) {
1861.114Schs			(*ca->ca_attach)(parent, NULL, aux);
1871.114Schs			parent->dv_cfdata = NULL;
1881.86Sthorpej			return(1);
1891.86Sthorpej		}
1901.1Smw	}
1911.114Schs	parent->dv_cfdata = NULL;
1921.17Schopps	return(0);
1931.17Schopps}
1941.17Schopps
1951.17Schopps/*
1961.17Schopps * this function needs to get enough configured to do a console
1971.79Saymeric * basically this means start attaching the grfxx's that support
1981.17Schopps * the console. Kinda hacky but it works.
1991.17Schopps */
2001.32Sveegovoid
2011.102Sceggerconfig_console(void)
2021.79Saymeric{
2031.107Smatt	cfdata_t cf;
2041.84Sthorpej
2051.84Sthorpej	config_init();
2061.36Sis
2071.17Schopps	/*
2081.17Schopps	 * we need mainbus' cfdata.
2091.17Schopps	 */
2101.95Sjmc	cf = config_rootsearch(NULL, "mainbus", NULL);
2111.36Sis	if (cf == NULL) {
2121.17Schopps		panic("no mainbus");
2131.36Sis	}
2141.114Schs
2151.1Smw	/*
2161.44Sis	 * delay clock calibration.
2171.44Sis	 */
2181.95Sjmc	amiga_config_found(cf, NULL, __UNCONST("clock"), NULL);
2191.44Sis
2201.44Sis	/*
2211.17Schopps	 * internal grf.
2221.1Smw	 */
2231.36Sis#ifdef DRACO
2241.36Sis	if (!(is_draco()))
2251.36Sis#endif
2261.95Sjmc		amiga_config_found(cf, NULL, __UNCONST("grfcc"), NULL);
2271.67Saymeric
2281.1Smw	/*
2291.27Schopps	 * zbus knows when its not for real and will
2301.21Schopps	 * only configure the appropriate hardware
2311.1Smw	 */
2321.95Sjmc	amiga_config_found(cf, NULL, __UNCONST("zbus"), NULL);
2331.1Smw}
2341.1Smw
2351.79Saymeric/*
2361.79Saymeric * mainbus driver
2371.17Schopps */
2381.107SmattCFATTACH_DECL_NEW(mainbus, 0,
2391.85Sthorpej    mbmatch, mbattach, NULL, NULL);
2401.17Schopps
2411.11Schoppsint
2421.114Schsmbmatch(device_t parent, cfdata_t cf, void *aux)
2431.1Smw{
2441.72Sis#if 0	/*
2451.72Sis	 * XXX is this right? but we need to be found twice
2461.72Sis	 * (early console init hack)
2471.72Sis	 */
2481.71Skleink	static int mainbus_matched = 0;
2491.30Sthorpej
2501.71Skleink	/* Allow only one instance. */
2511.71Skleink	if (mainbus_matched)
2521.71Skleink		return (0);
2531.71Skleink
2541.71Skleink	mainbus_matched = 1;
2551.72Sis#endif
2561.71Skleink	return (1);
2571.1Smw}
2581.1Smw
2591.1Smw/*
2601.17Schopps * "find" all the things that should be there.
2611.1Smw */
2621.11Schoppsvoid
2631.114Schsmbattach(device_t parent, device_t self, void *aux)
2641.1Smw{
2651.43Schristos	printf("\n");
2661.118Sthorpej	config_found(self, __UNCONST("clock"), simple_devprint, CFARG_EOL);
2671.52Sis	if (is_a3000() || is_a4000()) {
2681.118Sthorpej		config_found(self, __UNCONST("a34kbbc"), simple_devprint,
2691.118Sthorpej		    CFARG_EOL);
2701.58Sis	} else
2711.53Sis#ifdef DRACO
2721.58Sis	if (!is_draco())
2731.53Sis#endif
2741.58Sis	{
2751.118Sthorpej		config_found(self, __UNCONST("a2kbbc"), simple_devprint,
2761.118Sthorpej		    CFARG_EOL);
2771.52Sis	}
2781.36Sis#ifdef DRACO
2791.36Sis	if (is_draco()) {
2801.118Sthorpej		config_found(self, __UNCONST("drbbc"), simple_devprint,
2811.118Sthorpej		    CFARG_EOL);
2821.118Sthorpej		config_found(self, __UNCONST("kbd"), simple_devprint,
2831.118Sthorpej		    CFARG_EOL);
2841.118Sthorpej		config_found(self, __UNCONST("drsc"), simple_devprint,
2851.118Sthorpej		    CFARG_EOL);
2861.118Sthorpej		config_found(self, __UNCONST("drsupio"), simple_devprint,
2871.118Sthorpej		    CFARG_EOL);
2881.79Saymeric	} else
2891.36Sis#endif
2901.36Sis	{
2911.118Sthorpej		config_found(self, __UNCONST("ser"), simple_devprint,
2921.118Sthorpej		    CFARG_EOL);
2931.118Sthorpej		config_found(self, __UNCONST("par"), simple_devprint,
2941.118Sthorpej		    CFARG_EOL);
2951.118Sthorpej		config_found(self, __UNCONST("kbd"), simple_devprint,
2961.118Sthorpej		    CFARG_EOL);
2971.118Sthorpej		config_found(self, __UNCONST("ms"), simple_devprint,
2981.118Sthorpej		    CFARG_EOL);
2991.118Sthorpej		config_found(self, __UNCONST("grfcc"), simple_devprint,
3001.118Sthorpej		    CFARG_EOL);
3011.118Sthorpej		config_found(self, __UNCONST("amidisplaycc"), simple_devprint,
3021.118Sthorpej		    CFARG_EOL);
3031.118Sthorpej		config_found(self, __UNCONST("fdc"), simple_devprint,
3041.118Sthorpej		    CFARG_EOL);
3051.36Sis	}
3061.106Sphx	if (is_a4000() || is_a1200() || is_a600())
3071.118Sthorpej		config_found(self, __UNCONST("wdc"), simple_devprint,
3081.118Sthorpej		    CFARG_EOL);
3091.29Schopps	if (is_a4000())			/* Try to configure A4000T SCSI */
3101.118Sthorpej		config_found(self, __UNCONST("afsc"), simple_devprint,
3111.118Sthorpej		    CFARG_EOL);
3121.17Schopps	if (is_a3000())
3131.118Sthorpej		config_found(self, __UNCONST("ahsc"), simple_devprint,
3141.118Sthorpej		    CFARG_EOL);
3151.106Sphx	if (is_a600() || is_a1200())
3161.118Sthorpej		config_found(self, __UNCONST("pccard"), simple_devprint,
3171.118Sthorpej		    CFARG_EOL);
3181.111Srkujawa	if (is_a1200())
3191.118Sthorpej		config_found(self, __UNCONST("a1k2cp"), simple_devprint,
3201.118Sthorpej		    CFARG_EOL);
3211.54Sis#ifdef DRACO
3221.54Sis	if (!is_draco())
3231.54Sis#endif
3241.118Sthorpej		config_found(self, __UNCONST("aucc"), simple_devprint,
3251.118Sthorpej		    CFARG_EOL);
3261.54Sis
3271.116Srkujawa#if NACAFH > 0
3281.116Srkujawa	if (!is_a600() && !is_a1200() && !is_a3000() && !is_a4000())
3291.116Srkujawa		if (acafh_mbattach_probe() == true)
3301.118Sthorpej			config_found(self, __UNCONST("acafh"), simple_devprint,
3311.118Sthorpej			    CFARG_EOL);
3321.115Srkujawa#endif
3331.115Srkujawa
3341.118Sthorpej	config_found(self, __UNCONST("zbus"), simple_devprint, CFARG_EOL);
3351.1Smw}
3361.1Smw
3371.11Schoppsint
3381.114Schsmbprint(void *aux, const char *pnp)
3391.1Smw{
3401.17Schopps	if (pnp)
3411.114Schs		aprint_normal("%s at %s", (char *)aux, pnp);
3421.17Schopps	return(UNCONF);
3431.1Smw}
3441.1Smw
3451.46Sthorpej/*
3461.46Sthorpej * The system will assign the "booted device" indicator (and thus
3471.46Sthorpej * rootdev if rootspec is wildcarded) to the first partition 'a'
3481.46Sthorpej * in preference of boot.  However, it does walk unit backwards
3491.46Sthorpej * to remain compatible with the old Amiga method of picking the
3501.46Sthorpej * last root found.
3511.46Sthorpej */
3521.46Sthorpej#include <sys/fcntl.h>		/* XXXX and all that uses it */
3531.46Sthorpej#include <sys/proc.h>		/* XXXX and all that uses it */
3541.17Schopps
3551.46Sthorpej#include "fd.h"
3561.46Sthorpej#include "sd.h"
3571.46Sthorpej#include "cd.h"
3581.67Saymeric#include "wd.h"
3591.1Smw
3601.46Sthorpej#if NFD > 0
3611.46Sthorpejextern  struct cfdriver fd_cd;
3621.82Sgehennaextern	const struct bdevsw fd_bdevsw;
3631.46Sthorpej#endif
3641.46Sthorpej#if NSD > 0
3651.69Smhitchextern  struct cfdriver sd_cd;
3661.82Sgehennaextern	const struct bdevsw sd_bdevsw;
3671.46Sthorpej#endif
3681.46Sthorpej#if NCD > 0
3691.46Sthorpejextern  struct cfdriver cd_cd;
3701.82Sgehennaextern	const struct bdevsw cd_bdevsw;
3711.46Sthorpej#endif
3721.67Saymeric#if NWD > 0
3731.69Smhitchextern  struct cfdriver wd_cd;
3741.82Sgehennaextern	const struct bdevsw wd_bdevsw;
3751.67Saymeric#endif
3761.1Smw
3771.46Sthorpejstruct cfdriver *genericconf[] = {
3781.46Sthorpej#if NFD > 0
3791.46Sthorpej	&fd_cd,
3801.46Sthorpej#endif
3811.46Sthorpej#if NSD > 0
3821.46Sthorpej	&sd_cd,
3831.46Sthorpej#endif
3841.69Smhitch#if NWD > 0
3851.69Smhitch	&wd_cd,
3861.69Smhitch#endif
3871.46Sthorpej#if NCD > 0
3881.46Sthorpej	&cd_cd,
3891.46Sthorpej#endif
3901.46Sthorpej	NULL,
3911.1Smw};
3921.1Smw
3931.11Schoppsvoid
3941.76Smattfindroot(void)
3951.1Smw{
3961.46Sthorpej	struct disk *dkp;
3971.46Sthorpej	struct partition *pp;
3981.99Scegger	device_t *devs;
3991.46Sthorpej	int i, maj, unit;
4001.82Sgehenna	const struct bdevsw *bdp;
4011.47Smhitch
4021.47Smhitch#if NSD > 0
4031.47Smhitch	/*
4041.47Smhitch	 * If we have the boot partition offset (boot_partition), try
4051.47Smhitch	 * to locate the device corresponding to that partition.
4061.47Smhitch	 */
4071.56Sis#ifdef DEBUG_KERNEL_START
4081.56Sis	printf("Boot partition offset is %ld\n", boot_partition);
4091.56Sis#endif
4101.47Smhitch	if (boot_partition != 0) {
4111.47Smhitch
4121.47Smhitch		for (unit = 0; unit < sd_cd.cd_ndevs; ++unit) {
4131.56Sis#ifdef DEBUG_KERNEL_START
4141.56Sis			printf("probing for sd%d\n", unit);
4151.56Sis#endif
4161.99Scegger			if (device_lookup(&sd_cd,unit) == NULL)
4171.47Smhitch				continue;
4181.47Smhitch
4191.47Smhitch			/*
4201.47Smhitch			 * Find the disk corresponding to the current
4211.47Smhitch			 * device.
4221.47Smhitch			 */
4231.114Schs			devs = sd_cd.cd_devs;
4241.99Scegger			if ((dkp = disk_find(device_xname(device_lookup(&sd_cd, unit)))) == NULL)
4251.47Smhitch				continue;
4261.47Smhitch
4271.47Smhitch			if (dkp->dk_driver == NULL ||
4281.47Smhitch			    dkp->dk_driver->d_strategy == NULL)
4291.47Smhitch				continue;
4301.82Sgehenna			bdp = &sd_bdevsw;
4311.82Sgehenna			maj = bdevsw_lookup_major(bdp);
4321.82Sgehenna			if ((*bdp->d_open)(MAKEDISKDEV(maj, unit, RAW_PART),
4331.98Schristos			    FREAD | FNONBLOCK, 0, curlwp))
4341.47Smhitch				continue;
4351.82Sgehenna			(*bdp->d_close)(MAKEDISKDEV(maj, unit, RAW_PART),
4361.98Schristos			    FREAD | FNONBLOCK, 0, curlwp);
4371.47Smhitch			pp = &dkp->dk_label->d_partitions[0];
4381.54Sis			for (i = 0; i < dkp->dk_label->d_npartitions;
4391.54Sis			    i++, pp++) {
4401.56Sis#ifdef DEBUG_KERNEL_START
4411.56Sis				printf("sd%d%c type %d offset %d size %d\n",
4421.56Sis					unit, i+'a', pp->p_fstype,
4431.56Sis					pp->p_offset, pp->p_size);
4441.56Sis#endif
4451.54Sis				if (pp->p_size == 0 ||
4461.54Sis				    (pp->p_fstype != FS_BSDFFS &&
4471.54Sis				    pp->p_fstype != FS_SWAP))
4481.54Sis					continue;
4491.54Sis				if (pp->p_offset == boot_partition) {
4501.76Smatt					if (booted_device == NULL) {
4511.76Smatt						booted_device = devs[unit];
4521.76Smatt						booted_partition = i;
4531.54Sis					} else
4541.54Sis						printf("Ambiguous boot device\n");
4551.54Sis				}
4561.47Smhitch			}
4571.47Smhitch		}
4581.47Smhitch	}
4591.76Smatt	if (booted_device != NULL)
4601.47Smhitch		return;		/* we found the boot device */
4611.47Smhitch#endif
4621.46Sthorpej
4631.46Sthorpej	for (i = 0; genericconf[i] != NULL; i++) {
4641.46Sthorpej		for (unit = genericconf[i]->cd_ndevs - 1; unit >= 0; unit--) {
4651.46Sthorpej			if (genericconf[i]->cd_devs[unit] == NULL)
4661.46Sthorpej				continue;
4671.46Sthorpej
4681.46Sthorpej			/*
4691.46Sthorpej			 * Find the disk structure corresponding to the
4701.46Sthorpej			 * current device.
4711.46Sthorpej			 */
4721.99Scegger			devs = (device_t *)genericconf[i]->cd_devs;
4731.99Scegger			if ((dkp = disk_find(device_xname(devs[unit]))) == NULL)
4741.46Sthorpej				continue;
4751.46Sthorpej
4761.46Sthorpej			if (dkp->dk_driver == NULL ||
4771.46Sthorpej			    dkp->dk_driver->d_strategy == NULL)
4781.46Sthorpej				continue;
4791.46Sthorpej
4801.92Smhitch			bdp = NULL;
4811.82Sgehenna#if NFD > 0
4821.82Sgehenna			if (fd_bdevsw.d_strategy == dkp->dk_driver->d_strategy)
4831.82Sgehenna				bdp = &fd_bdevsw;
4841.82Sgehenna#endif
4851.82Sgehenna#if NSD > 0
4861.82Sgehenna			if (sd_bdevsw.d_strategy == dkp->dk_driver->d_strategy)
4871.82Sgehenna				bdp = &sd_bdevsw;
4881.82Sgehenna#endif
4891.82Sgehenna#if NWD > 0
4901.82Sgehenna			if (wd_bdevsw.d_strategy == dkp->dk_driver->d_strategy)
4911.82Sgehenna				bdp = &wd_bdevsw;
4921.82Sgehenna#endif
4931.82Sgehenna#if NCD > 0
4941.82Sgehenna			if (cd_bdevsw.d_strategy == dkp->dk_driver->d_strategy)
4951.82Sgehenna				bdp = &cd_bdevsw;
4961.82Sgehenna#endif
4971.46Sthorpej#ifdef DIAGNOSTIC
4981.82Sgehenna			if (bdp == NULL)
4991.46Sthorpej				panic("findroot: impossible");
5001.46Sthorpej#endif
5011.82Sgehenna			maj = bdevsw_lookup_major(bdp);
5021.46Sthorpej
5031.46Sthorpej			/* Open disk; forces read of disklabel. */
5041.117Smlelstv			if ((*bdp->d_open)(MAKEDISKDEV(maj, unit, RAW_PART),
5051.117Smlelstv				FREAD|FNONBLOCK, 0, &lwp0))
5061.46Sthorpej				continue;
5071.117Smlelstv			(void)(*bdp->d_close)(MAKEDISKDEV(maj, unit, RAW_PART),
5081.117Smlelstv				FREAD|FNONBLOCK, 0, &lwp0);
5091.46Sthorpej
5101.46Sthorpej			pp = &dkp->dk_label->d_partitions[0];
5111.46Sthorpej			if (pp->p_size != 0 && pp->p_fstype == FS_BSDFFS) {
5121.76Smatt				booted_device = devs[unit];
5131.76Smatt				booted_partition = 0;
5141.46Sthorpej				return;
5151.46Sthorpej			}
5161.1Smw		}
5171.1Smw	}
5181.3Smw}
5191.17Schopps
5201.11Schopps/*
5211.11Schopps * Try to determine, of this machine is an A3000, which has a builtin
5221.11Schopps * realtime clock and scsi controller, so that this hardware is only
5231.11Schopps * included as "configured" if this IS an A3000
5241.11Schopps */
5251.5Smw
5261.5Smwint a3000_flag = 1;		/* patchable */
5271.5Smw#ifdef A4000
5281.5Smwint a4000_flag = 1;		/* patchable - default to A4000 */
5291.5Smw#else
5301.5Smwint a4000_flag = 0;		/* patchable */
5311.5Smw#endif
5321.5Smw
5331.3Smwint
5341.110Smattis_a3000(void)
5351.3Smw{
5361.11Schopps	/* this is a dirty kludge.. but how do you do this RIGHT ? :-) */
5371.22Schopps	extern long boot_fphystart;
5381.11Schopps	short sc;
5391.11Schopps
5401.19Schopps	if ((machineid >> 16) == 3000)
5411.19Schopps		return (1);			/* It's an A3000 */
5421.19Schopps	if (machineid >> 16)
5431.19Schopps		return (0);			/* It's not an A3000 */
5441.19Schopps	/* Machine type is unknown, so try to guess it */
5451.11Schopps	/* where is fastram on the A4000 ?? */
5461.11Schopps	/* if fastram is below 0x07000000, assume it's not an A3000 */
5471.22Schopps	if (boot_fphystart < 0x07000000)
5481.17Schopps		return(0);
5491.11Schopps	/*
5501.11Schopps	 * OK, fastram starts at or above 0x07000000, check specific
5511.11Schopps	 * machines
5521.11Schopps	 */
5531.17Schopps	for (sc = 0; sc < ncfdev; sc++) {
5541.17Schopps		switch (cfdev[sc].rom.manid) {
5551.17Schopps		case 2026:		/* Progressive Peripherals, Inc */
5561.17Schopps			switch (cfdev[sc].rom.prodid) {
5571.17Schopps			case 0:		/* PPI Mercury - A3000 */
5581.17Schopps			case 1:		/* PP&S A3000 '040 */
5591.17Schopps				return(1);
5601.17Schopps			case 150:	/* PPI Zeus - it's an A2000 */
5611.17Schopps			case 105:	/* PP&S A2000 '040 */
5621.17Schopps			case 187:	/* PP&S A500 '040 */
5631.17Schopps				return(0);
5641.11Schopps			}
5651.11Schopps			break;
5661.3Smw
5671.17Schopps		case 2112:			/* IVS */
5681.17Schopps			switch (cfdev[sc].rom.prodid) {
5691.17Schopps			case 242:
5701.17Schopps				return(0);	/* A2000 accelerator? */
5711.11Schopps			}
5721.11Schopps			break;
5731.11Schopps		}
5741.11Schopps	}
5751.17Schopps	return (a3000_flag);		/* XXX let flag tell now */
5761.5Smw}
5771.5Smw
5781.5Smwint
5791.110Smattis_a4000(void)
5801.5Smw{
5811.19Schopps	if ((machineid >> 16) == 4000)
5821.19Schopps		return (1);		/* It's an A4000 */
5831.24Schopps	if ((machineid >> 16) == 1200)
5841.24Schopps		return (0);		/* It's an A1200, so not A4000 */
5851.36Sis#ifdef DRACO
5861.36Sis	if (is_draco())
5871.36Sis		return (0);
5881.36Sis#endif
5891.24Schopps	/* Do I need this any more? */
5901.19Schopps	if ((custom.deniseid & 0xff) == 0xf8)
5911.19Schopps		return (1);
5921.19Schopps#ifdef DEBUG
5931.19Schopps	if (a4000_flag)
5941.43Schristos		printf("Denise ID = %04x\n", (unsigned short)custom.deniseid);
5951.19Schopps#endif
5961.19Schopps	if (machineid >> 16)
5971.19Schopps		return (0);		/* It's not an A4000 */
5981.19Schopps	return (a4000_flag);		/* Machine type not set */
5991.24Schopps}
6001.24Schopps
6011.24Schoppsint
6021.110Smattis_a1200(void)
6031.24Schopps{
6041.24Schopps	if ((machineid >> 16) == 1200)
6051.24Schopps		return (1);		/* It's an A1200 */
6061.24Schopps	return (0);			/* Machine type not set */
6071.1Smw}
6081.106Sphx
6091.106Sphxint
6101.110Smattis_a600(void)
6111.106Sphx{
6121.106Sphx	if ((machineid >> 16) == 600)
6131.106Sphx		return (1);		/* It's an A600 */
6141.106Sphx	return (0);			/* Machine type not set */
6151.106Sphx}
6161.108Srkujawa
6171.108Srkujawavoid
6181.108Srkujawadevice_register(device_t dev, void *aux)
6191.108Srkujawa{
6201.112Srkujawa#ifdef P5PB_CONSOLE
6211.112Srkujawa	p5pb_device_register(dev, aux);
6221.112Srkujawa#endif /* P5PB_CONSOLE */
6231.108Srkujawa}
624