/*
* All Rights Reserved, Copyright (C) Fujitsu Limited 1995
*
* This software may be used, modified, copied, distributed, and sold, in
* both source and binary form provided that the above copyright, these
* terms and the following disclaimer are retained. The name of the author
* and/or the contributor may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND THE CONTRIBUTOR ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR THE CONTRIBUTOR BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION.
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
* Portions copyright (C) 1993, David Greenman. This software may be used,
* modified, copied, distributed, and sold, in both source and binary form
* provided that the above copyright and these terms are retained. Under no
* circumstances is the author responsible for the proper functioning of this
* software, nor does the author assume any responsibility for damages
* incurred with its use.
*/
/*
* Determine type and ethernet address.
*/
int
fmv_detect(bus_space_tag_t iot, bus_space_handle_t ioh, uint8_t *enaddr)
{
int model, id, type;
/* Get our station address from EEPROM. */
bus_space_read_region_1(iot, ioh, FE_FMV4, enaddr, ETHER_ADDR_LEN);
/* Make sure we got a valid station address. */
if ((enaddr[0] & 0x03) != 0x00 ||
(enaddr[0] == 0x00 && enaddr[1] == 0x00 && enaddr[2] == 0x00)) {
DPRINTF("%s: invalid ethernet address\n", __func__);
return 0;
}
/* Determine the card type. */
model = bus_space_read_1(iot, ioh, FE_FMV0) & FE_FMV0_MODEL;
id = bus_space_read_1(iot, ioh, FE_FMV1) & FE_FMV1_CARDID_REV;
switch (model) {
case FE_FMV0_MODEL_FMV181:
type = FE_TYPE_FMV181;
if (id == FE_FMV1_CARDID_REV_A)
type = FE_TYPE_FMV181A;
break;
case FE_FMV0_MODEL_FMV182:
type = FE_TYPE_FMV182;
if (id == FE_FMV1_CARDID_REV_A)
type = FE_TYPE_FMV182A;
else if (id == FE_FMV1_CARDID_PNP)
type = FE_TYPE_FMV184;
break;
case FE_FMV0_MODEL_FMV183:
type = FE_TYPE_FMV183;
break;
default:
type = 0;
DPRINTF("%s: unknown card\n", __func__);
break;
}
/* Wait for a while. I'm not sure this is necessary. FIXME */
delay(200);
/*
* Do generic MB86960 attach.
*/
mb86960_attach(sc, myea);
/* Is this really needs to be done here? XXX */
/* Turn the "master interrupt control" flag of ASIC on. */
bus_space_write_1(iot, ioh, FE_FMV3, FE_FMV3_ENABLE_FLAG);