summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/stand/tftpboot/netdev.c
blob: 50020b0aa888a5927611ec45435549a9a41e8cb3 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*	$OpenBSD: netdev.c,v 1.4 2012/11/25 14:10:47 miod Exp $ */

/*
 * Copyright (c) 1993 Paul Kranenburg
 * 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 Paul Kranenburg.
 * 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.
 */

#include <sys/param.h>
#include <machine/prom.h>
#include <string.h>

#include "stand.h"
#include "tftpfs.h"

#include "libsa.h"

struct bugdev_softc {
	short	clun;
	short	dlun;
} bugdev_softc[1];

int
devopen(f, fname, file)
	struct open_file *f;
	const char *fname;
	char **file;
{
	struct bugdev_softc *pp = &bugdev_softc[0];

	pp->clun = (short)bugargs.ctrl_lun;
	pp->dlun = (short)bugargs.dev_lun;

	f->f_devdata = (void *)pp;
	f->f_dev = &devsw[0];
	*file = (char *)fname;
	return (0);
}

#define	NFR_TIMEOUT	5

int
net_strategy(devdata, func, nblk, size, buf, rsize)
	void *devdata;
	int func;
	daddr32_t nblk;
	size_t size;
	void *buf;
	size_t *rsize;
{
	struct bugdev_softc *pp = (struct bugdev_softc *)devdata;
	struct mvmeprom_netfread nfr;
	int attempts;

	for (attempts = 0; attempts < 10; attempts++) {
		nfr.ctrl = pp->clun;
		nfr.dev = pp->dlun;
		nfr.status = 0;
		nfr.addr = (u_long)buf;
		nfr.bytes = 0;
		nfr.blk = nblk;
		nfr.timeout = NFR_TIMEOUT;
		mvmeprom_netfread(&nfr);
	
		if (rsize) {
			*rsize = nfr.bytes;
		}

		if (nfr.status == 0)
			return (0);
	}

	return (EIO);
}

int
net_open(struct open_file *f, ...)
{
	va_list ap;
	struct mvmeprom_netcfig ncfg;
	struct mvmeprom_netfopen nfo;
	struct mvmeprom_ncp ncp;
#if 0
	struct mvmeprom_netctrl nctrl;
#endif
	struct bugdev_softc *pp = (struct bugdev_softc *)f->f_devdata;
	char *filename;
	const char *failure = NULL;

	va_start(ap, f);
	filename = va_arg(ap, char *);
	va_end(ap);

	/*
	 * It seems that, after loading tftpboot from the network, the BUG
	 * will reset its current network settings before giving us control
	 * of the system.  This causes any network parameter not stored in
	 * the NIOT area to be lost.  However, unless we force the `always
	 * send a reverse arp request' setting is set, the BUG will `believe'
	 * it doesn't need to send any (because it had to in order to load
	 * this code), and will fail to connect to the tftp server.
	 *
	 * Unfortunately, updating the in-memory network configuration to
	 * force reverse arp requests to be sent always doesn't work, even
	 * after issueing a `reset device' command.
	 *
	 * The best we can do is recognize this situation, warn the user
	 * and return to the BUG.
	 */

	bzero(&ncp, sizeof ncp);
	ncfg.ctrl = pp->clun;
	ncfg.dev = pp->dlun;
	ncfg.ncp_addr = (u_long)&ncp;
	ncfg.flags = NETCFIG_READ;
	if (mvmeprom_netcfig(&ncfg) == 0 && ncp.magic == NETCFIG_MAGIC) {
		if (ncp.rarp_control != 'A' && ncp.client_ip == 0) {
#if 0
			ncp.rarp_control = 'A';
			ncp.update_control = 'Y';

			bzero(&ncp, sizeof ncp);
			ncfg.ctrl = pp->clun;
			ncfg.dev = pp->dlun;
			ncfg.ncp_addr = (u_long)&ncp;
			ncfg.flags = NETCFIG_WRITE;
		
			if (mvmeprom_netcfig(&ncfg) == 0) {
				bzero(&nctrl, sizeof nctrl);
				nctrl.ctrl = pp->clun;
				nctrl.dev = pp->dlun;
				nctrl.cmd = NETCTRLCMD_RESET;
				if (mvmeprom_netctrl(&nctrl) != 0)
					failure = "reset network interface";
			} else
				failure = "update NIOT configuration";
#else
			printf("Invalid network configuration\n"
			    "Please update the NIOT parameters and set\n"
			    "``BOOTP/RARP Request Control: Always/When-Needed (A/W)'' to `A'\n");
			_rtt();
#endif
		}
	} else
		failure = "read NIOT configuration";

	if (failure != NULL)
		printf("failed to %s (0x%x), "
		    "hope RARP is set to `A'lways\n", failure, ncfg.status);

	nfo.ctrl = pp->clun;
	nfo.dev = pp->dlun;
	nfo.status = 0;
	strlcpy(nfo.filename, filename, sizeof nfo.filename);
	mvmeprom_netfopen(&nfo);
	
#ifdef DEBUG
	printf("tftp open(%s): 0x%x\n", filename, nfo.status);
#endif
	return (nfo.status);
}

int
net_close(f)
	struct open_file *f;
{
	return (0);
}

int
net_ioctl(f, cmd, data)
	struct open_file *f;
	u_long cmd;
	void *data;
{
	return (EIO);
}