summaryrefslogtreecommitdiff
path: root/sys/arch/sh5/dev/dtfcons.c
blob: 21421d209ac2fd9c11b14a8211e1c264d5f3479f (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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*	$NetBSD: dtfcons.c,v 1.7 2003/07/15 03:35:58 lukem Exp $	*/

/*
 * Copyright 2002 Wasabi Systems, Inc.
 * All rights reserved.
 *
 * Written by Steve C. Woodford for Wasabi Systems, Inc.
 *
 * 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 for the NetBSD Project by
 *      Wasabi Systems, Inc.
 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
 *    or promote products derived from this software without specific prior
 *    written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``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 WASABI SYSTEMS, INC
 * 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.
 */

/*
 * TTY-like device for use under SH5 simulator/debugger such that
 * console I/O is directed to the host.
 *
 * Well, that's the theory anyway. The "Posix" interface is isn't up
 * to the job and I can't find documentation for any other interface
 * hiding behind the host's DTF code.
 */

#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: dtfcons.c,v 1.7 2003/07/15 03:35:58 lukem Exp $");

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/device.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/select.h>
#include <sys/tty.h>

#include <machine/cpu.h>
#include <machine/bus.h>

#include <sh5/dev/dtfconsvar.h>

#include <sh5/sh5/dtf_comms.h>
#include <sh5/sh5/mainbus.h>

#include <dev/cons.h>

dev_type_open(dtfconsopen);
dev_type_close(dtfconsclose);
dev_type_read(dtfconsread);
dev_type_write(dtfconswrite);
dev_type_ioctl(dtfconsioctl);
dev_type_tty(dtfconstty);
dev_type_poll(dtfconspoll);
cons_decl(dtfcons);

const struct cdevsw dtf_cdevsw = {
	dtfconsopen, dtfconsclose, dtfconsread, dtfconswrite, dtfconsioctl,
	nostop, dtfconstty, dtfconspoll, nommap, ttykqfilter, D_TTY
};

static int dtfconsmatch(struct device *, struct cfdata *, void *);
static void dtfconsattach(struct device *, struct device *, void *);

CFATTACH_DECL(dtfcons, sizeof(struct device),
    dtfconsmatch, dtfconsattach, NULL, NULL);
extern struct cfdriver dtfcons_cd;

static int dtf_is_console;

static int
dtfconsmatch(struct device *parent, struct cfdata *cf, void *args)
{
        struct mainbus_attach_args *ma = args;

	if (dtf_is_console == 0)
		return (0);

	return (strcmp(ma->ma_name, dtfcons_cd.cd_name) == 0);
}

static void
dtfconsattach(struct device *parent, struct device *self, void *args)
{
#if 0
        struct mainbus_attach_args *ma = args;
#endif
	printf(": DTF Console\n");
}

int
dtfconsopen(dev_t dev, int flag, int mode, struct proc *p)
{
	return (0);
}

int
dtfconsclose(dev_t dev, int flag, int mode, struct proc *p)
{
	return (0);
}

int
dtfconsread(dev_t dev, struct uio *uio, int flag)
{
	return (EIO);
}

int
dtfconswrite(dev_t dev, struct uio *uio, int flag)
{
	return (EIO);
}

int
dtfconspoll(dev_t dev, int events, struct proc *p)
{
	return (EIO);
}

struct tty *
dtfconstty(dev_t dev)
{
	return (NULL);
}

int
dtfconsioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
{
	return (ENOTTY);
}

void
dtfcons_cnattach(void)
{

	dtf_is_console = 1;
}

int
dtfconscngetc(dev_t dev)
{
	u_int32_t status;
	u_int8_t buff[16];
	u_int8_t *p = buff;
	int len;
	int s;

	s = splhigh();

	do {
		p = buff;
		*p++ = DTF_POSIX_POLLKEY;
		len = (int)(p - buff);

		if (dtf_transaction(buff, &len) < 0 || len != 8)
			if (panicstr == NULL)
				panic("dtfconscngetc: lost link to DTF host");

		p = dtf_unpackdword(buff, &status);
	} while (status == 0);

	p = dtf_unpackdword(p, &status);

	splx(s);

	return ((int)status);
}

void
dtfconscnputc(dev_t dev, int ch)
{
	u_int8_t buff[16];
	u_int8_t *p = buff;
	int len;
	int s;

	s = splhigh();

	p = buff;
	*p++ = DTF_POSIX_WRITE;
	p = dtf_packdword(p, 1);
	*p++ = (u_int8_t)ch;
	len = (int)(p - buff);

	if (dtf_transaction(buff, &len) < 0 || len != 4)
		if (panicstr == NULL)
			panic("dtfconscnputc: lost link to DTF host");

	splx(s);
}

/*ARGSUSED*/
void
dtfconscnpollc(dev_t dev, int on)
{
}