1 /* $NetBSD: pcnet_isapnp.c,v 1.8 2008/12/14 18:46:33 christos Exp $ */
5 * Matthias Drochner. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include <sys/types.h>
31 #include <machine/pio.h>
33 #include <lib/libsa/stand.h>
34 #include <lib/libkern/libkern.h>
37 #include <isapnpvar.h>
38 #include <isadmavar.h>
45 #define ISAPNPID 0x516e0010 /* TKN0010 */
48 int lance_rap
, lance_rdp
;
52 extern void am7990_init(void);
53 extern void am7990_stop(void);
55 static struct btinfo_netif bi_netif
;
58 EtherInit(unsigned char *myadr
)
60 int iobase
, dmachan
, i
;
62 if (isapnp_finddev(ISAPNPID
, &iobase
, &dmachan
)) {
63 printf("cannot find PCNET\n");
67 printf("printf using PCNET @ %x\n", iobase
);
69 lance_rap
= iobase
+ 0x12;
70 lance_rdp
= iobase
+ 0x10;
72 /* make sure it's stopped */
75 for (i
= 0; i
< 6; i
++)
76 myadr
[i
] = eth_myaddr
[i
] = inb(iobase
+ i
);
78 isa_dmacascade(dmachan
);
82 strncpy(bi_netif
.ifname
, "le", sizeof(bi_netif
.ifname
));
83 bi_netif
.bus
= BI_BUS_ISA
;
84 bi_netif
.addr
.iobase
= iobase
;
86 BI_ADD(&bi_netif
, BTINFO_NETIF
, sizeof(bi_netif
));