epat.c 6.98 KB
Newer Older
1 2 3 4 5 6 7 8 9
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * (c) 1997-1998  Grant R. Guenther <grant@torque.net>
 *
 * This is the low level protocol driver for the EPAT parallel
 * to IDE adapter from Shuttle Technologies.  This adapter is
 * used in many popular parallel port disk products such as the
 * SyQuest EZ drives, the Avatar Shark and the Imation SuperDisk.
 */
Linus Torvalds's avatar
Linus Torvalds committed
10 11 12 13 14 15 16 17

#include <linux/module.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/wait.h>
#include <asm/io.h>
18
#include "pata_parport.h"
Linus Torvalds's avatar
Linus Torvalds committed
19

20 21
#define j44(a, b)	(((a >> 4) & 0x0f) + (b & 0xf0))
#define j53(a, b)	(((a >> 3) & 0x1f) + ((b << 4) & 0xe0))
Linus Torvalds's avatar
Linus Torvalds committed
22 23 24 25

static int epatc8;

module_param(epatc8, int, 0);
26 27 28 29 30 31 32 33 34
MODULE_PARM_DESC(epatc8,
		 "support for the Shuttle EP1284 chip, "
		 "used in any recent Imation SuperDisk (LS-120) drive.");

/*
 * cont =  0   IDE register file
 * cont =  1   IDE control registers
 * cont =  2   internal EPAT registers
 */
Linus Torvalds's avatar
Linus Torvalds committed
35 36
static int cont_map[3] = { 0x18, 0x10, 0 };

37
static void epat_write_regr(struct pi_adapter *pi, int cont, int regr, int val)
38 39
{
	int r = regr + cont_map[cont];
Linus Torvalds's avatar
Linus Torvalds committed
40 41 42 43

	switch (pi->mode) {
	case 0:
	case 1:
44 45
	case 2:
		w0(0x60+r); w2(1); w0(val); w2(4);
Linus Torvalds's avatar
Linus Torvalds committed
46 47 48
		break;
	case 3:
	case 4:
49 50
	case 5:
		w3(0x40+r); w4(val);
Linus Torvalds's avatar
Linus Torvalds committed
51 52 53 54
		break;
	}
}

55
static int epat_read_regr(struct pi_adapter *pi, int cont, int regr)
56 57
{
	int  a, b, r;
Linus Torvalds's avatar
Linus Torvalds committed
58 59 60 61 62

	r = regr + cont_map[cont];

	switch (pi->mode) {

63 64
	case 0:
		w0(r); w2(1); w2(3);
Linus Torvalds's avatar
Linus Torvalds committed
65
		a = r1(); w2(4); b = r1();
66 67 68
		return j44(a, b);
	case 1:
		w0(0x40+r); w2(1); w2(4);
Linus Torvalds's avatar
Linus Torvalds committed
69
		a = r1(); b = r2(); w0(0xff);
70 71 72
		return j53(a, b);
	case 2:
		w0(0x20+r); w2(1); w2(0x25);
Linus Torvalds's avatar
Linus Torvalds committed
73 74 75 76
		a = r0(); w2(4);
		return a;
	case 3:
	case 4:
77 78
	case 5:
		w3(r); w2(0x24); a = r4(); w2(4);
Linus Torvalds's avatar
Linus Torvalds committed
79 80
		return a;
	}
81

Linus Torvalds's avatar
Linus Torvalds committed
82 83 84
	return -1;	/* never gets here */
}

85
static void epat_read_block(struct pi_adapter *pi, char *buf, int count)
86 87
{
	int  k, ph, a, b;
Linus Torvalds's avatar
Linus Torvalds committed
88 89 90

	switch (pi->mode) {

91 92
	case 0:
		w0(7); w2(1); w2(3); w0(0xff);
Linus Torvalds's avatar
Linus Torvalds committed
93
		ph = 0;
94 95 96 97 98 99 100 101 102 103
		for (k = 0; k < count; k++) {
			if (k == count-1)
				w0(0xfd);
			w2(6 + ph); a = r1();
			if (a & 8) {
				b = a;
			} else {
				w2(4+ph); b = r1();
			}
			buf[k] = j44(a, b);
Linus Torvalds's avatar
Linus Torvalds committed
104 105 106 107 108
			ph =  1 - ph;
		}
		w0(0); w2(4);
		break;

109 110
	case 1:
		w0(0x47); w2(1); w2(5); w0(0xff);
Linus Torvalds's avatar
Linus Torvalds committed
111
		ph = 0;
112 113 114 115
		for (k = 0; k < count; k++) {
			if (k == count - 1)
				w0(0xfd);
			w2(4 + ph);
Linus Torvalds's avatar
Linus Torvalds committed
116
			a = r1(); b = r2();
117
			buf[k] = j53(a, b);
Linus Torvalds's avatar
Linus Torvalds committed
118 119 120 121 122
			ph = 1 - ph;
		}
		w0(0); w2(4);
		break;

123 124
	case 2:
		w0(0x27); w2(1); w2(0x25); w0(0);
Linus Torvalds's avatar
Linus Torvalds committed
125
		ph = 0;
126 127
		for (k = 0; k < count - 1; k++) {
			w2(0x24 + ph);
Linus Torvalds's avatar
Linus Torvalds committed
128 129 130
			buf[k] = r0();
			ph = 1 - ph;
		}
131 132
		w2(0x26); w2(0x27);
		buf[count - 1] = r0();
Linus Torvalds's avatar
Linus Torvalds committed
133 134 135
		w2(0x25); w2(4);
		break;

136 137 138 139 140 141
	case 3:
		w3(0x80); w2(0x24);
		for (k = 0; k < count - 1; k++)
			buf[k] = r4();
		w2(4); w3(0xa0); w2(0x24);
		buf[count - 1] = r4();
Linus Torvalds's avatar
Linus Torvalds committed
142 143 144
		w2(4);
		break;

145 146 147 148 149 150 151
	case 4:
		w3(0x80); w2(0x24);
		for (k = 0; k < count / 2 - 1; k++)
			((u16 *)buf)[k] = r4w();
		buf[count - 2] = r4();
		w2(4); w3(0xa0); w2(0x24);
		buf[count - 1] = r4();
Linus Torvalds's avatar
Linus Torvalds committed
152 153 154
		w2(4);
		break;

155 156 157 158 159 160 161 162
	case 5:
		w3(0x80); w2(0x24);
		for (k = 0; k < count / 4 - 1; k++)
			((u32 *)buf)[k] = r4l();
		for (k = count - 4; k < count - 1; k++)
			buf[k] = r4();
		w2(4); w3(0xa0); w2(0x24);
		buf[count - 1] = r4();
Linus Torvalds's avatar
Linus Torvalds committed
163 164 165 166 167
		w2(4);
		break;
	}
}

168
static void epat_write_block(struct pi_adapter *pi, char *buf, int count)
169 170
{
	int ph, k;
Linus Torvalds's avatar
Linus Torvalds committed
171 172 173 174

	switch (pi->mode) {
	case 0:
	case 1:
175 176
	case 2:
		w0(0x67); w2(1); w2(5);
Linus Torvalds's avatar
Linus Torvalds committed
177
		ph = 0;
178
		for (k = 0; k < count; k++) {
Linus Torvalds's avatar
Linus Torvalds committed
179
		  	w0(buf[k]);
180
			w2(4 + ph);
Linus Torvalds's avatar
Linus Torvalds committed
181 182 183 184
			ph = 1 - ph;
		}
		w2(7); w2(4);
		break;
185 186 187 188
	case 3:
		w3(0xc0);
		for (k = 0; k < count; k++)
			w4(buf[k]);
Linus Torvalds's avatar
Linus Torvalds committed
189 190
		w2(4);
		break;
191 192 193 194
	case 4:
		w3(0xc0);
		for (k = 0; k < count / 2; k++)
			w4w(((u16 *)buf)[k]);
Linus Torvalds's avatar
Linus Torvalds committed
195 196
		w2(4);
		break;
197 198 199 200
	case 5:
		w3(0xc0);
		for (k = 0; k < count / 4; k++)
			w4l(((u32 *)buf)[k]);
Linus Torvalds's avatar
Linus Torvalds committed
201 202 203 204 205 206 207
		w2(4);
		break;
	}
}

/* these macros access the EPAT registers in native addressing */

208 209
#define	WR(r, v)	epat_write_regr(pi, 2, r, v)
#define	RR(r)		epat_read_regr(pi, 2, r)
Linus Torvalds's avatar
Linus Torvalds committed
210 211 212

/* and these access the IDE task file */

213 214
#define WRi(r, v)	epat_write_regr(pi, 0, r, v)
#define RRi(r)		epat_read_regr(pi, 0, r)
Linus Torvalds's avatar
Linus Torvalds committed
215 216 217

/* FIXME:  the CPP stuff should be fixed to handle multiple EPATs on a chain */

218 219 220 221 222 223 224
#define CPP(x)					\
	do {					\
		w2(4); w0(0x22); w0(0xaa);	\
		w0(0x55); w0(0); w0(0xff);	\
		w0(0x87); w0(0x78); w0(x);	\
		w2(4); w2(5); w2(4); w0(0xff);	\
	} while (0)
Linus Torvalds's avatar
Linus Torvalds committed
225

226
static void epat_connect(struct pi_adapter *pi)
227 228 229
{
	pi->saved_r0 = r0();
	pi->saved_r2 = r2();
Linus Torvalds's avatar
Linus Torvalds committed
230 231 232 233 234

 	/* Initialize the chip */
	CPP(0);

	if (epatc8) {
235 236 237 238 239 240 241
		CPP(0x40); CPP(0xe0);
		w0(0); w2(1); w2(4);
		WR(0x8, 0x12);
		WR(0xc, 0x14);
		WR(0x12, 0x10);
		WR(0xe, 0xf);
		WR(0xf, 4);
Linus Torvalds's avatar
Linus Torvalds committed
242
		/* WR(0xe,0xa);WR(0xf,4); */
243 244
		WR(0xe, 0xd);
		WR(0xf, 0);
Linus Torvalds's avatar
Linus Torvalds committed
245 246 247 248 249
		/* CPP(0x30); */
	}

        /* Connect to the chip */
	CPP(0xe0);
250
	w0(0); w2(1); w2(4); /* Idle into SPP */
Linus Torvalds's avatar
Linus Torvalds committed
251
        if (pi->mode >= 3) {
252 253 254
		w0(0); w2(1); w2(4); w2(0xc);
		/* Request EPP */
		w0(0x40); w2(6); w2(7); w2(4); w2(0xc); w2(4);
Linus Torvalds's avatar
Linus Torvalds committed
255 256 257
        }

	if (!epatc8) {
258 259 260 261
		WR(8, 0x10);
		WR(0xc, 0x14);
		WR(0xa, 0x38);
		WR(0x12, 0x10);
Linus Torvalds's avatar
Linus Torvalds committed
262 263 264
	}
}

265
static void epat_disconnect(struct pi_adapter *pi)
266 267
{
	CPP(0x30);
Linus Torvalds's avatar
Linus Torvalds committed
268 269 270 271
	w0(pi->saved_r0);
	w2(pi->saved_r2);
}

272
static int epat_test_proto(struct pi_adapter *pi)
273 274 275
{
	int k, j, f, cc;
	int e[2] = { 0, 0 };
276
	char scratch[512];
Linus Torvalds's avatar
Linus Torvalds committed
277

278
	epat_connect(pi);
Linus Torvalds's avatar
Linus Torvalds committed
279 280 281 282 283
	cc = RR(0xd);
	epat_disconnect(pi);

	epat_connect(pi);
	for (j=0;j<2;j++) {
284 285 286 287 288 289 290 291 292
		WRi(6, 0xa0 + j * 0x10);
		for (k = 0; k < 256; k++) {
			WRi(2, k ^ 0xaa);
			WRi(3, k ^ 0x55);
			if (RRi(2) != (k ^ 0xaa))
				e[j]++;
		}
	}
	epat_disconnect(pi);
Linus Torvalds's avatar
Linus Torvalds committed
293

294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
	f = 0;
	epat_connect(pi);
	WR(0x13, 1); WR(0x13, 0); WR(0xa, 0x11);
	epat_read_block(pi, scratch, 512);

	for (k = 0; k < 256; k++) {
		if ((scratch[2 * k] & 0xff) != k)
			f++;
		if ((scratch[2 * k + 1] & 0xff) != 0xff - k)
			f++;
	}
	epat_disconnect(pi);

	dev_dbg(&pi->dev,
		"epat: port 0x%x, mode %d, ccr %x, test=(%d,%d,%d)\n",
		pi->port, pi->mode, cc, e[0], e[1], f);

	return (e[0] && e[1]) || f;
Linus Torvalds's avatar
Linus Torvalds committed
312 313
}

314
static void epat_log_adapter(struct pi_adapter *pi)
315 316 317 318
{
	int ver;
	char *mode_string[6] =
		{ "4-bit", "5/3", "8-bit", "EPP-8", "EPP-16", "EPP-32" };
Linus Torvalds's avatar
Linus Torvalds committed
319 320

	epat_connect(pi);
321 322 323
	WR(0xa, 0x38);		/* read the version code */
	ver = RR(0xb);
	epat_disconnect(pi);
Linus Torvalds's avatar
Linus Torvalds committed
324

325 326
	dev_info(&pi->dev,
		 "Shuttle EPAT chip %x at 0x%x, mode %d (%s), delay %d\n",
327
		 ver, pi->port, pi->mode, mode_string[pi->mode], pi->delay);
Linus Torvalds's avatar
Linus Torvalds committed
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
}

static struct pi_protocol epat = {
	.owner		= THIS_MODULE,
	.name		= "epat",
	.max_mode	= 6,
	.epp_first	= 3,
	.default_delay	= 1,
	.max_units	= 1,
	.write_regr	= epat_write_regr,
	.read_regr	= epat_read_regr,
	.write_block	= epat_write_block,
	.read_block	= epat_read_block,
	.connect	= epat_connect,
	.disconnect	= epat_disconnect,
	.test_proto	= epat_test_proto,
	.log_adapter	= epat_log_adapter,
};

static int __init epat_init(void)
{
349
#ifdef CONFIG_PATA_PARPORT_EPATC8
Linus Torvalds's avatar
Linus Torvalds committed
350 351
	epatc8 = 1;
#endif
352
	return pata_parport_register_driver(&epat);
Linus Torvalds's avatar
Linus Torvalds committed
353 354 355 356
}

static void __exit epat_exit(void)
{
357
	pata_parport_unregister_driver(&epat);
Linus Torvalds's avatar
Linus Torvalds committed
358 359 360
}

MODULE_LICENSE("GPL");
361 362 363
MODULE_AUTHOR("Grant R. Guenther <grant@torque.net>");
MODULE_DESCRIPTION("Shuttle Technologies EPAT parallel port IDE adapter "
		   "protocol driver");
Linus Torvalds's avatar
Linus Torvalds committed
364 365
module_init(epat_init)
module_exit(epat_exit)