1 /* $NetBSD: fmv.c,v 1.9 2008/04/08 12:07:26 cegger Exp $ */
4 * All Rights Reserved, Copyright (C) Fujitsu Limited 1995
6 * This software may be used, modified, copied, distributed, and sold, in
7 * both source and binary form provided that the above copyright, these
8 * terms and the following disclaimer are retained. The name of the author
9 * and/or the contributor may not be used to endorse or promote products
10 * derived from this software without specific prior written permission.
12 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND THE CONTRIBUTOR ``AS IS'' AND
13 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
14 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
15 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR THE CONTRIBUTOR BE LIABLE
16 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
17 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
18 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION.
19 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
20 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
21 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * Portions copyright (C) 1993, David Greenman. This software may be used,
27 * modified, copied, distributed, and sold, in both source and binary form
28 * provided that the above copyright and these terms are retained. Under no
29 * circumstances is the author responsible for the proper functioning of this
30 * software, nor does the author assume any responsibility for damages
31 * incurred with its use.
34 #include <sys/cdefs.h>
35 __KERNEL_RCSID(0, "$NetBSD: fmv.c,v 1.9 2008/04/08 12:07:26 cegger Exp $");
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/device.h>
42 #include <net/if_ether.h>
43 #include <net/if_media.h>
47 #include <dev/ic/mb86960reg.h>
48 #include <dev/ic/mb86960var.h>
49 #include <dev/ic/fmvreg.h>
50 #include <dev/ic/fmvvar.h>
53 #define DPRINTF printf
55 #define DPRINTF while (/* CONSTCOND */0) printf
59 * Determine type and ethernet address.
62 fmv_detect(bus_space_tag_t iot
, bus_space_handle_t ioh
, uint8_t *enaddr
)
66 /* Get our station address from EEPROM. */
67 bus_space_read_region_1(iot
, ioh
, FE_FMV4
, enaddr
, ETHER_ADDR_LEN
);
69 /* Make sure we got a valid station address. */
70 if ((enaddr
[0] & 0x03) != 0x00 ||
71 (enaddr
[0] == 0x00 && enaddr
[1] == 0x00 && enaddr
[2] == 0x00)) {
72 DPRINTF("%s: invalid ethernet address\n", __func__
);
76 /* Determine the card type. */
77 model
= bus_space_read_1(iot
, ioh
, FE_FMV0
) & FE_FMV0_MODEL
;
78 id
= bus_space_read_1(iot
, ioh
, FE_FMV1
) & FE_FMV1_CARDID_REV
;
81 case FE_FMV0_MODEL_FMV181
:
82 type
= FE_TYPE_FMV181
;
83 if (id
== FE_FMV1_CARDID_REV_A
)
84 type
= FE_TYPE_FMV181A
;
86 case FE_FMV0_MODEL_FMV182
:
87 type
= FE_TYPE_FMV182
;
88 if (id
== FE_FMV1_CARDID_REV_A
)
89 type
= FE_TYPE_FMV182A
;
90 else if (id
== FE_FMV1_CARDID_PNP
)
91 type
= FE_TYPE_FMV184
;
93 case FE_FMV0_MODEL_FMV183
:
94 type
= FE_TYPE_FMV183
;
98 DPRINTF("%s: unknown card\n", __func__
);
106 fmv_attach(struct mb86960_softc
*sc
)
109 bus_space_handle_t ioh
;
112 uint8_t myea
[ETHER_ADDR_LEN
];
117 /* Determine the card type. */
118 type
= fmv_detect(iot
, ioh
, myea
);
123 case FE_TYPE_FMV181A
:
124 typestr
= "FMV-181A";
129 case FE_TYPE_FMV182A
:
130 typestr
= "FMV-182A";
139 /* Unknown card type: maybe a new model, but... */
141 panic("%s: unknown FMV-18x card", device_xname(sc
->sc_dev
));
144 aprint_normal(": %s Ethernet\n", typestr
);
146 /* This interface is always enabled. */
147 sc
->sc_stat
|= FE_STAT_ENABLED
;
150 * Minimum initialization of the hardware.
151 * We write into registers; hope I/O ports have no
152 * overlap with other boards.
155 /* Initialize ASIC. */
156 bus_space_write_1(iot
, ioh
, FE_FMV3
, 0);
157 bus_space_write_1(iot
, ioh
, FE_FMV10
, 0);
159 /* Wait for a while. I'm not sure this is necessary. FIXME */
163 * Do generic MB86960 attach.
165 mb86960_attach(sc
, myea
);
167 /* Is this really needs to be done here? XXX */
168 /* Turn the "master interrupt control" flag of ASIC on. */
169 bus_space_write_1(iot
, ioh
, FE_FMV3
, FE_FMV3_ENABLE_FLAG
);
171 mb86960_config(sc
, NULL
, 0, 0);