This source file includes following definitions.
- hp_plus_probe
- hpp_probe1
- hpp_open
- hpp_close
- hpp_reset_8390
- hpp_io_block_input
- hpp_mem_block_input
- hpp_io_block_output
- hpp_mem_block_output
- init_module
- cleanup_module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 static const char *version =
22 "hp-plus.c:v1.10 9/24/94 Donald Becker (becker@cesdis.gsfc.nasa.gov)\n";
23
24 #ifdef MODULE
25 #include <linux/module.h>
26 #include <linux/version.h>
27 #endif
28
29 #include <linux/string.h>
30 #include <linux/kernel.h>
31 #include <linux/sched.h>
32 #include <linux/errno.h>
33 #include <linux/ioport.h>
34 #include <linux/netdevice.h>
35 #include <linux/etherdevice.h>
36
37 #include <asm/system.h>
38 #include <asm/io.h>
39
40
41 #include "8390.h"
42
43
44 static unsigned int hpplus_portlist[] =
45 {0x200, 0x240, 0x280, 0x2C0, 0x300, 0x320, 0x340, 0};
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 #define HP_ID 0x00
73 #define HP_PAGING 0x02
74 #define HPP_OPTION 0x04
75 #define HPP_OUT_ADDR 0x08
76 #define HPP_IN_ADDR 0x0A
77 #define HP_DATAPORT 0x0c
78 #define NIC_OFFSET 0x10
79 #define HP_IO_EXTENT 32
80
81 #define HP_START_PG 0x00
82 #define HP_STOP_PG 0x80
83
84
85 enum PageName {
86 Perf_Page = 0,
87 MAC_Page = 1,
88 HW_Page = 2,
89 LAN_Page = 4,
90 ID_Page = 6 };
91
92
93 enum HP_Option {
94 NICReset = 1, ChipReset = 2,
95 EnableIRQ = 4, FakeIntr = 8, BootROMEnb = 0x10, IOEnb = 0x20,
96 MemEnable = 0x40, ZeroWait = 0x80, MemDisable = 0x1000, };
97
98 int hp_plus_probe(struct device *dev);
99 int hpp_probe1(struct device *dev, int ioaddr);
100
101 static void hpp_reset_8390(struct device *dev);
102 static int hpp_open(struct device *dev);
103 static int hpp_close(struct device *dev);
104 static int hpp_mem_block_input(struct device *dev, int count,
105 char *buf, int ring_offset);
106 static void hpp_mem_block_output(struct device *dev, int count,
107 const unsigned char *buf, const start_page);
108 static int hpp_io_block_input(struct device *dev, int count,
109 char *buf, int ring_offset);
110 static void hpp_io_block_output(struct device *dev, int count,
111 const unsigned char *buf, const start_page);
112
113
114
115
116 #ifdef HAVE_DEVLIST
117
118
119 struct netdev_entry hpplus_drv =
120 {"hpplus", hpp_probe1, HP_IO_EXTENT, hpplus_portlist};
121 #else
122
123 int hp_plus_probe(struct device *dev)
124 {
125 int i;
126 int base_addr = dev ? dev->base_addr : 0;
127
128 if (base_addr > 0x1ff)
129 return hpp_probe1(dev, base_addr);
130 else if (base_addr != 0)
131 return ENXIO;
132
133 for (i = 0; hpplus_portlist[i]; i++) {
134 int ioaddr = hpplus_portlist[i];
135 if (check_region(ioaddr, HP_IO_EXTENT))
136 continue;
137 if (hpp_probe1(dev, ioaddr) == 0)
138 return 0;
139 }
140
141 return ENODEV;
142 }
143 #endif
144
145
146 int hpp_probe1(struct device *dev, int ioaddr)
147 {
148 int i;
149 unsigned char checksum = 0;
150 const char *name = "HP-PC-LAN+";
151 int mem_start;
152
153
154 if (inw(ioaddr + HP_ID) != 0x4850
155 || (inw(ioaddr + HP_PAGING) & 0xfff0) != 0x5300)
156 return ENODEV;
157
158 if (dev == NULL)
159 dev = init_etherdev(0, sizeof(struct ei_device), 0);
160
161 printk("%s: %s at %#3x,", dev->name, name, ioaddr);
162
163
164 outw(MAC_Page, ioaddr + HP_PAGING);
165
166 for(i = 0; i < ETHER_ADDR_LEN; i++) {
167 unsigned char inval = inb(ioaddr + 8 + i);
168 dev->dev_addr[i] = inval;
169 checksum += inval;
170 printk(" %2.2x", inval);
171 }
172 checksum += inb(ioaddr + 14);
173
174 if (checksum != 0xff) {
175 printk(" bad checksum %2.2x.\n", checksum);
176 return ENODEV;
177 } else {
178
179 outw(ID_Page, ioaddr + HP_PAGING);
180 printk(" ID %4.4x", inw(ioaddr + 12));
181 }
182
183
184 request_region(ioaddr, HP_IO_EXTENT,"hp-plus");
185
186
187 outw(HW_Page, ioaddr + HP_PAGING);
188 {
189 int irq = inb(ioaddr + 13) & 0x0f;
190 int option = inw(ioaddr + HPP_OPTION);
191
192 dev->irq = irq;
193 if (option & MemEnable) {
194 mem_start = inw(ioaddr + 9) << 8;
195 printk(", IRQ %d, memory address %#x.\n", irq, mem_start);
196 } else {
197 mem_start = 0;
198 printk(", IRQ %d, programmed-I/O mode.\n", irq);
199 }
200 }
201
202 printk( "%s%s", KERN_INFO, version);
203
204
205 outw((HP_START_PG + TX_2X_PAGES) | ((HP_STOP_PG - 1) << 8), ioaddr + 14);
206
207
208 dev->base_addr = ioaddr + NIC_OFFSET;
209
210 ethdev_init(dev);
211
212 dev->open = &hpp_open;
213 dev->stop = &hpp_close;
214
215 ei_status.name = name;
216 ei_status.word16 = 0;
217 ei_status.tx_start_page = HP_START_PG;
218 ei_status.rx_start_page = HP_START_PG + TX_2X_PAGES;
219 ei_status.stop_page = HP_STOP_PG;
220
221 ei_status.reset_8390 = &hpp_reset_8390;
222 ei_status.block_input = &hpp_io_block_input;
223 ei_status.block_output = &hpp_io_block_output;
224
225
226 if (mem_start) {
227 ei_status.block_input = &hpp_mem_block_input;
228 ei_status.block_output = &hpp_mem_block_output;
229 dev->mem_start = mem_start;
230 dev->rmem_start = dev->mem_start + TX_2X_PAGES*256;
231 dev->mem_end = dev->rmem_end
232 = dev->mem_start + (HP_STOP_PG - HP_START_PG)*256;
233 }
234
235 outw(Perf_Page, ioaddr + HP_PAGING);
236 NS8390_init(dev, 0);
237
238 outw(inw(ioaddr + HPP_OPTION) & ~EnableIRQ, ioaddr + HPP_OPTION);
239
240 return 0;
241 }
242
243 static int
244 hpp_open(struct device *dev)
245 {
246 int ioaddr = dev->base_addr - NIC_OFFSET;
247 int option_reg;
248
249 if (request_irq(dev->irq, &ei_interrupt, 0, "hp-plus")) {
250 return -EAGAIN;
251 }
252
253
254 option_reg = inw(ioaddr + HPP_OPTION);
255 outw(option_reg & ~(NICReset + ChipReset), ioaddr + HPP_OPTION);
256 SLOW_DOWN_IO; SLOW_DOWN_IO;
257
258 outw(option_reg | (EnableIRQ + NICReset + ChipReset), ioaddr + HPP_OPTION);
259
260
261 outw(HW_Page, ioaddr + HP_PAGING);
262 outw((HP_START_PG + TX_2X_PAGES) | ((HP_STOP_PG - 1) << 8), ioaddr + 14);
263
264
265 outw(Perf_Page, ioaddr + HP_PAGING);
266
267 return ei_open(dev);
268 }
269
270 static int
271 hpp_close(struct device *dev)
272 {
273 int ioaddr = dev->base_addr - NIC_OFFSET;
274 int option_reg = inw(ioaddr + HPP_OPTION);
275
276 free_irq(dev->irq);
277 irq2dev_map[dev->irq] = NULL;
278 NS8390_init(dev, 0);
279 outw((option_reg & ~EnableIRQ) | MemDisable | NICReset | ChipReset,
280 ioaddr + HPP_OPTION);
281
282 return 0;
283 }
284
285 static void
286 hpp_reset_8390(struct device *dev)
287 {
288 int ioaddr = dev->base_addr - NIC_OFFSET;
289 int option_reg = inw(ioaddr + HPP_OPTION);
290
291 if (ei_debug > 1) printk("resetting the 8390 time=%ld...", jiffies);
292
293 outw(option_reg & ~(NICReset + ChipReset), ioaddr + HPP_OPTION);
294
295 SLOW_DOWN_IO;
296 SLOW_DOWN_IO;
297 ei_status.txing = 0;
298 outw(option_reg | (EnableIRQ + NICReset + ChipReset), ioaddr + HPP_OPTION);
299
300 SLOW_DOWN_IO; SLOW_DOWN_IO;
301
302
303 if ((inb_p(ioaddr+NIC_OFFSET+EN0_ISR) & ENISR_RESET) == 0)
304 printk("%s: hp_reset_8390() did not complete.\n", dev->name);
305
306 if (ei_debug > 1) printk("8390 reset done (%ld).", jiffies);
307 return;
308 }
309
310
311
312
313 static int
314 hpp_io_block_input(struct device *dev, int count, char *buf, int ring_offset)
315 {
316 int ioaddr = dev->base_addr - NIC_OFFSET;
317
318 outw(ring_offset, ioaddr + HPP_IN_ADDR);
319 insw(ioaddr + HP_DATAPORT, buf, count>>1);
320 if (count & 0x01)
321 buf[count-1] = inw(ioaddr + HP_DATAPORT);
322 return ring_offset + count;
323 }
324
325 static int
326 hpp_mem_block_input(struct device *dev, int count, char *buf, int ring_offset)
327 {
328 int ioaddr = dev->base_addr - NIC_OFFSET;
329 int option_reg = inw(ioaddr + HPP_OPTION);
330
331 outw(ring_offset, ioaddr + HPP_IN_ADDR);
332
333 outw(option_reg & ~(MemDisable + BootROMEnb), ioaddr + HPP_OPTION);
334
335 memcpy(buf, (char*)dev->mem_start, (count + 3) & ~3);
336 outw(option_reg, ioaddr + HPP_OPTION);
337
338 return ring_offset + count;
339 }
340
341
342
343 static void
344 hpp_io_block_output(struct device *dev, int count,
345 const unsigned char *buf, const start_page)
346 {
347 int ioaddr = dev->base_addr - NIC_OFFSET;
348 outw(start_page << 8, ioaddr + HPP_OUT_ADDR);
349 outsl(ioaddr + HP_DATAPORT, buf, (count+3)>>2);
350 return;
351 }
352
353 static void
354 hpp_mem_block_output(struct device *dev, int count,
355 const unsigned char *buf, const start_page)
356 {
357 int ioaddr = dev->base_addr - NIC_OFFSET;
358 int option_reg = inw(ioaddr + HPP_OPTION);
359
360 outw(start_page << 8, ioaddr + HPP_OUT_ADDR);
361 outw(option_reg & ~(MemDisable + BootROMEnb), ioaddr + HPP_OPTION);
362 memcpy((char *)dev->mem_start, buf, (count + 3) & ~3);
363 outw(option_reg, ioaddr + HPP_OPTION);
364
365 return;
366 }
367
368 #ifdef MODULE
369 char kernel_version[] = UTS_RELEASE;
370 static char devicename[9] = { 0, };
371 static struct device dev_hp = {
372 devicename,
373 0, 0, 0, 0,
374 0, 0,
375 0, 0, 0, NULL, hp_plus_probe };
376
377 int io = 0x200;
378 int irq = 0;
379
380 int init_module(void)
381 {
382 if (io == 0)
383 printk("HP-plus: You should not use auto-probing with insmod!\n");
384 dev_hp.base_addr = io;
385 dev_hp.irq = irq;
386 if (register_netdev(&dev_hp) != 0) {
387 printk("HP-plus: register_netdev() returned non-zero.\n");
388 return -EIO;
389 }
390 return 0;
391 }
392
393 void
394 cleanup_module(void)
395 {
396 if (MOD_IN_USE)
397 printk("HP-plus: device busy, remove delayed\n");
398 else
399 {
400 int ioaddr = dev_hp.base_addr - NIC_OFFSET;
401
402 unregister_netdev(&dev_hp);
403
404
405 release_region(ioaddr, HP_IO_EXTENT);
406 }
407 }
408 #endif
409
410
411
412
413
414
415
416
417
418