File: c101.c

package info (click to toggle)
kernel-source-2.2.19 2.2.19.1-4woody1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 92,100 kB
  • ctags: 276,892
  • sloc: ansic: 1,710,384; asm: 58,709; makefile: 10,198; sh: 2,398; perl: 907; tcl: 570; lisp: 218; cpp: 186; awk: 133; sed: 72
file content (278 lines) | stat: -rw-r--r-- 6,162 bytes parent folder | download | duplicates (5)
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
 * Moxa C101 synchronous serial card driver for Linux
 *
 * Copyright (C) 2000 Krzysztof Halasa <khc@pm.waw.pl>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Requires hdlc.c, a generic HDLC support module
 * Available from ftp://ftp.pm.waw.pl/pub/Linux/hdlc/
 *
 * Current status:
 *    - this is work in progress
 *    - no support for SMP yet
 *
 * Sources of information:
 *    Hitachi HD64570 SCA User's Manual
 *    Moxa C101 User's Manual
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/malloc.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/netdevice.h>
#include <asm/io.h>
#include <asm/delay.h>

#include "syncppp.h"
#include <linux/hdlc.h>
#include "hd64570.h"

#define DEBUG_RINGS
#undef DEBUG_PKT

static const char* version = "Moxa C101 driver revision: 1.0-pre9";
static const char* devname = "C101";

#define C101_PAGE 0x1D00
#define C101_DTR 0x1E00
#define C101_SCA 0x1F00
#define C101_WINDOW_SIZE 0x2000

#define RAM_SIZE (256*1024)
#define CLOCK_BASE 9830400	/* 9.8304 MHz */
#define PAGE0_ALWAYS_MAPPED

static char *hw=NULL;		/* pointer to hw=xxx command line string */


typedef struct card_s {
	hdlc_device hdlc;	/* HDLC device struct - must be first */
	int clkmode;		/* clock speed, 0=ext */
	int loopback;
	u8 *win0base;		/* ISA window base address */
	u16 buff_offset;	/* offset of first buffer of first channel */
	u8 irq;			/* IRQ (3-15) */
	u8 ring_buffers;	/* number of buffers in a ring */
	u8 page;

	u8 rxin;		/* rx ring buffer 'in' pointer */
	u8 txin;		/* tx ring buffer 'in' and 'last' pointers */
	u8 txlast;

	struct card_s *next_card;
}card_t;

typedef card_t port_t;


#define sca_in(reg, card)	   readb((card)->win0base+C101_SCA+(reg))
#define sca_out(value, reg, card)  writeb(value, (card)->win0base+C101_SCA+(reg))
#define sca_inw(reg, card)	   readw((card)->win0base+C101_SCA+(reg))
#define sca_outw(value, reg, card) writew(value, (card)->win0base+C101_SCA+(reg))

#define port_to_card(port)	     (port)
#define log_node(port)		     (0)
#define phy_node(port)		     (0)
#define winsize(card)		     (C101_WINDOW_SIZE)
#define win0base(card)		     ((card)->win0base)
#define winbase(card)      	     ((card)->win0base+0x2000)
#define get_port(card, port)	     ((port) == 0 ? (card) : NULL)


static __inline__ u8 sca_get_page(card_t *card)
{
	return card->page;
}



static __inline__ void openwin(card_t *card, u8 page)
{
	card->page=page;
	writeb(page, card->win0base+C101_PAGE);
}


#define close_windows(card) {} /* no hardware support */


static __inline__ int set_clock(port_t *port, int clock)
{
	port->clkmode = clock;	/* selectable by jumper */
	return 0;
}


#define select_phys_iface(port, iface) (-EINVAL) /* No hardware support */


static __inline__ void open_port(port_t *port)
{
	writeb(1, port->win0base+C101_DTR);
	sca_out(0, MSCI1_OFFSET + CTL, port); /* RTS uses ch#2 output */
}


static __inline__ void close_port(port_t *port)
{
	writeb(0, port->win0base+C101_DTR);
	sca_out(CTL_NORTS, MSCI1_OFFSET + CTL, port);
}


#include "hd6457x.c"


static void c101_destroy_card(card_t *card)
{
	if (card->irq)
		free_irq(card->irq, card);

	kfree(card);
}



static int c101_run(unsigned long irq, unsigned long winbase)
{
	card_t *card;
	int result;


	if (irq<3 || irq>15 || irq == 6) /* FIXME */ {
		printk(KERN_ERR "c101: invalid IRQ value\n");
		return -ENODEV;
	}
    
	if (winbase<0xC0000 || winbase>0xDFFFF || (winbase&0x3FFF)!=0) {
		printk(KERN_ERR "c101: invalid RAM value\n");
		return -ENODEV;
	}

	card=kmalloc(sizeof(card_t), GFP_KERNEL);
	if (card==NULL) {
		printk(KERN_ERR "c101: unable to allocate memory\n");
		return -ENOBUFS;
	}
	memset(card, 0, sizeof(card_t));

	if (request_irq(irq, sca_intr, 0, devname, card)) {
		printk(KERN_ERR "c101: could not allocate IRQ\n");
		c101_destroy_card(card);
		return(-EBUSY);
	}
	card->irq=irq;

	card->win0base=(u8*)winbase;

	/* 2 rings required for 1 port */
	card->ring_buffers = (RAM_SIZE-C101_WINDOW_SIZE) / (2 * HDLC_MAX_MTU);
	printk(KERN_DEBUG "c101: using %u packets rings\n",card->ring_buffers);

	card->buff_offset = C101_WINDOW_SIZE; /* Bytes 1D00-1FFF reserved */

	readb(card->win0base+C101_PAGE); /* Resets SCA? */
	udelay(100);
	writeb(0, card->win0base+C101_PAGE);
	writeb(0, card->win0base+C101_DTR); /* Power-up for RAM? */

	sca_init(card, 0);

	card->hdlc.ioctl=sca_ioctl;
	card->hdlc.open=sca_open;
	card->hdlc.close=sca_close;
	hdlc_to_dev(&card->hdlc)->hard_start_xmit=sca_xmit;
	hdlc_to_dev(&card->hdlc)->irq=irq;
	hdlc_to_dev(&card->hdlc)->tx_queue_len=50;

	result=register_hdlc_device(&card->hdlc);
	if (result) {
		printk(KERN_WARNING "c101: unable to register hdlc device\n");
		c101_destroy_card(card);
		return result;
	}

	sca_init_sync_port(card); /* Set up C101 memory */

	*new_card=card;
	new_card=&card->next_card;
	return 0;
}



void c101_init(void)
{
	if (hw==NULL)
		return;

	printk(KERN_INFO "%s\n", version);

	do {
		unsigned long irq, ram;

		irq=simple_strtoul(hw, &hw, 0);
    
		if (*hw++ != ',')
			break;
		ram=simple_strtoul(hw, &hw, 0);

		if (*hw == ':' || *hw == '\x0')
			c101_run(irq, ram);

		if (*hw == '\x0')
			return;
	}while(*hw++ == ':');

	printk(KERN_ERR "c101: invalid hardware parameters\n");
}


#ifndef MODULE

void c101_setup(char *str, int *ints)
{
	hw=str;
}

#else

MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
MODULE_DESCRIPTION("Moxa C101 serial port driver");
MODULE_PARM(hw, "s");		/* hw=irq,ram,clock:irq,... */
EXPORT_NO_SYMBOLS;

int init_module(void)
{
	if (hw==NULL) {
		printk(KERN_ERR "c101: no card initialized\n");
		return -ENOSYS;	/* no parameters specified, abort */
	}

	c101_init();
	return first_card ? 0 : -ENOSYS;
}



void cleanup_module(void)
{
	card_t *card=first_card;

	while (card) {
		card_t *ptr=card;
		card=card->next_card;
		unregister_hdlc_device(&ptr->hdlc);
		c101_destroy_card(ptr);
	}
}

#endif /* MODULE */