summaryrefslogtreecommitdiffstats
path: root/sys/pc98/conf/gethints.pl
blob: 684d5b2d8cc011a3c8bafd6937829eb89452579c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#! /usr/bin/perl
#
# This is a transition aid. It extracts old-style configuration information
# from a config file and writes an equivalent device.hints file to stdout.
# You can use that with loader(8) or statically compile it in with the
# 'hints' directive.  See how GENERIC and GENERIC.hints fit together for
# a static example.  You should use loader(8) if at all possible.
#
# $FreeBSD$

while (<>) {
	$line++;
	chop;
	s/#.*//;
	next unless /^device/;
	s/"//g;
	($dev, $nameunit, $at, $where, @rest) = split;
	next unless $at eq "at" && $where ne "";
	$name = $nameunit;
	$name =~ s/[0-9]*$//g;
	$unit = $nameunit;
	$unit =~ s/.*[^0-9]//g;
	$where =~ s/\?$//;
	print "hint.$name.$unit.at=\"$where\"\n";
	while ($key = shift(@rest)) {
		if ($key eq "disable") {
			print "hint.$name.$unit.disabled=\"1\"\n";
			next;
		}
		if ($key eq "port") {
			$val = shift(@rest);
			$val =~ s/IO_A20CT/0x0F6/;
			$val =~ s/IO_A2OEN/0x0F2/;
			$val =~ s/IO_BEEPF/0x3FDB/;
			$val =~ s/IO_BMS/0x7FD9/;
			$val =~ s/IO_CGROM/0x0A1/;
			$val =~ s/IO_COM1/0x030/;
			$val =~ s/IO_COM2/0x0B1/;
			$val =~ s/IO_COM3/0x0B9/;
			$val =~ s/IO_DMA/0x001/;
			$val =~ s/IO_DMAPG/0x021/;
			$val =~ s/IO_EGC/0x4A0/;
			$val =~ s/IO_FD1/0x090/;
			$val =~ s/IO_FD2/0x0C8/;
			$val =~ s/IO_FDPORT/0x0BE/;
			$val =~ s/IO_GDC1/0x060/;
			$val =~ s/IO_GDC2/0x0A0/;
			$val =~ s/IO_ICU1/0x000/;
			$val =~ s/IO_ICU2/0x008/;
			$val =~ s/IO_KBD/0x041/;
			$val =~ s/IO_LPT/0x040/;
			$val =~ s/IO_MOUSE/0x7FD9/;
			$val =~ s/IO_MOUSETM/0xDFBD/;
			$val =~ s/IO_MSE/0x7FD9/;
			$val =~ s/IO_NMI/0x050/;
			$val =~ s/IO_NPX/0x0F8/;
			$val =~ s/IO_PPI/0x035/;
			$val =~ s/IO_REEST/0x0F0/;
			$val =~ s/IO_RTC/0x020/;
			$val =~ s/IO_SASI/0x080/;
			$val =~ s/IO_SCSI/0xCC0/;
			$val =~ s/IO_SIO1/0x0D0/;
			$val =~ s/IO_SIO2/0x8D0/;
			$val =~ s/IO_SOUND/0x188/;
			$val =~ s/IO_SYSPORT/0x031/;
			$val =~ s/IO_TIMER1/0x071/;
			$val =~ s/IO_WAIT/0x05F/;
			$val =~ s/IO_WD1/0x640/;
			$val =~ s/IO_WD1_EPSON/0x80/;
			$val =~ s/IO_WD1_NEC/0x640/;
			if ($val ne "?") {
				print "hint.$name.$unit.port=\"$val\"\n";
			}
			next;
		}
		if ($key eq "port?" || $key eq "drq?" || $key eq "irq?" ||
		    $key eq "iomem?" || $key eq "iosiz?") {
			next;
		}
		if ($key eq "irq" || $key eq "drq" || $key eq "drive" ||
		    $key eq "iomem" || $key eq "iosiz" || $key eq "flags"||
		    $key eq "bus" || $key eq "target" || $key eq "unit") {
			$key =~ s/iomem/maddr/;
			$key =~ s/iosiz/msize/;
			$val = shift(@rest);
			if ($val ne "?") {
				print "hint.$name.$unit.$key=\"$val\"\n";
			}
			next;
		}
		print STDERR "unrecognized config token '$key' on line $line\n";
	}
}
OpenPOWER on IntegriCloud