diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2009-11-23 19:11:07 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2009-11-23 19:11:07 +0000 |
commit | b3a91e36bb8e33e50e69effebb753c1a91409e59 (patch) | |
tree | a681276193ca95188944309af44a8a3c81e64337 | |
parent | b441200e48f163d3945f5a343666d4fde967f080 (diff) |
move things from athn_attach() to athn_init() such that we can
power off the cardbus slot after athn_attach() and in athn_stop().
-rw-r--r-- | sys/dev/cardbus/if_athn_cardbus.c | 9 | ||||
-rw-r--r-- | sys/dev/ic/athn.c | 89 |
2 files changed, 50 insertions, 48 deletions
diff --git a/sys/dev/cardbus/if_athn_cardbus.c b/sys/dev/cardbus/if_athn_cardbus.c index 7219b3e3169..ddc13bd10e5 100644 --- a/sys/dev/cardbus/if_athn_cardbus.c +++ b/sys/dev/cardbus/if_athn_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_athn_cardbus.c,v 1.1 2009/11/14 16:55:11 damien Exp $ */ +/* $OpenBSD: if_athn_cardbus.c,v 1.2 2009/11/23 19:11:06 damien Exp $ */ /*- * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr> @@ -131,17 +131,12 @@ athn_cardbus_attach(struct device *parent, struct device *self, void *aux) csc->sc_bar_val = base | CARDBUS_MAPREG_TYPE_MEM; /* Set up the PCI configuration registers. */ -#ifdef notyet athn_cardbus_setup(csc); -#else - athn_cardbus_enable(sc); -#endif + printf(": irq %d", csc->sc_intrline); athn_attach(sc); -#ifdef notyet Cardbus_function_disable(ct); -#endif } int diff --git a/sys/dev/ic/athn.c b/sys/dev/ic/athn.c index 091dbd8dff4..9e578d2bdbc 100644 --- a/sys/dev/ic/athn.c +++ b/sys/dev/ic/athn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: athn.c,v 1.16 2009/11/23 18:42:50 damien Exp $ */ +/* $OpenBSD: athn.c,v 1.17 2009/11/23 19:11:06 damien Exp $ */ /*- * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr> @@ -76,6 +76,7 @@ void athn_tx_free(struct athn_softc *); int athn_rx_alloc(struct athn_softc *); void athn_rx_free(struct athn_softc *); void athn_rx_start(struct athn_softc *); +void athn_led_init(struct athn_softc *); void athn_btcoex_init(struct athn_softc *); void athn_btcoex_enable(struct athn_softc *); void athn_btcoex_disable(struct athn_softc *); @@ -200,7 +201,7 @@ athn_attach(struct athn_softc *sc) struct ifnet *ifp = &ic->ic_if; struct ar_base_eep_header *base; uint8_t eep_ver, kc_entries_exp; - int i, error; + int error; if ((error = athn_reset_power_on(sc)) != 0) { printf(": could not reset chip\n"); @@ -241,6 +242,9 @@ athn_attach(struct athn_softc *sc) } base = sc->eep; + /* We can put the chip in sleep state now. */ + athn_set_power_sleep(sc); + eep_ver = (base->version >> 12) & 0xf; sc->eep_rev = (base->version & 0xfff); if (eep_ver != AR_EEP_VER || sc->eep_rev == 0) { @@ -254,8 +258,18 @@ athn_attach(struct athn_softc *sc) IEEE80211_ADDR_COPY(ic->ic_myaddr, base->macAddr); printf(", address %s\n", ether_sprintf(ic->ic_myaddr)); - if (base->rfSilent & AR_EEP_RFSILENT_ENABLED) + /* Check if we have a hardware radio switch. */ + if (base->rfSilent & AR_EEP_RFSILENT_ENABLED) { sc->flags |= ATHN_FLAG_RFSILENT; + /* Get GPIO pin used by hardware radio switch. */ + sc->rfsilent_pin = MS(base->rfSilent, + AR_EEP_RFSILENT_GPIO_SEL); + /* Get polarity of hardware radio switch. */ + if (base->rfSilent & AR_EEP_RFSILENT_POLARITY) + sc->flags |= ATHN_FLAG_RFSILENT_REVERSED; + DPRINTFN(2, ("Found RF switch connected to GPIO pin %d\n", + sc->rfsilent_pin)); + } /* Get the number of HW key cache entries. */ kc_entries_exp = MS(base->deviceCap, AR_EEP_DEVCAP_KC_ENTRIES); @@ -305,25 +319,6 @@ athn_attach(struct athn_softc *sc) return (error); } - /* Reset HW key cache entries (XXX not here.) */ - for (i = 0; i < sc->kc_entries; i++) - athn_reset_key(sc, i); - - /* XXX not here. */ - AR_SETBITS(sc, AR_PHY_CCK_DETECT, - AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV); - -#ifdef ATHN_BT_COEXISTENCE - /* Initialize bluetooth coexistence for combo chips. */ - if (sc->flags & ATHN_FLAG_BTCOEX) - athn_btcoex_init(sc); -#endif - - athn_gpio_config_output(sc, sc->led_pin, - AR_GPIO_OUTPUT_MUX_AS_OUTPUT); - /* LED off, active low. */ - athn_gpio_write(sc, sc->led_pin, 1); - if (AR_SINGLE_CHIP(sc)) { printf("%s: %s rev %d (%dT%dR), ROM rev %d\n", sc->sc_dev.dv_xname, athn_get_mac_name(sc), sc->mac_rev, @@ -1605,6 +1600,14 @@ athn_delete_key(struct ieee80211com *ic, struct ieee80211_node *ni, } } +void +athn_led_init(struct athn_softc *sc) +{ + athn_gpio_config_output(sc, sc->led_pin, AR_GPIO_OUTPUT_MUX_AS_OUTPUT); + /* LED off, active low. */ + athn_gpio_write(sc, sc->led_pin, 1); +} + #ifdef ATHN_BT_COEXISTENCE void athn_btcoex_init(struct athn_softc *sc) @@ -1706,17 +1709,8 @@ athn_btcoex_disable(struct athn_softc *sc) void athn_rfsilent_init(struct athn_softc *sc) { - struct ar_base_eep_header *base = sc->eep; uint32_t reg; - /* Get GPIO pin used by hardware radio switch. */ - sc->rfsilent_pin = MS(base->rfSilent, AR_EEP_RFSILENT_GPIO_SEL); - /* Get polarity of hardware radio switch. */ - if (base->rfSilent & AR_EEP_RFSILENT_POLARITY) - sc->flags |= ATHN_FLAG_RFSILENT_REVERSED; - DPRINTFN(2, ("Found RF switch connected to GPIO pin %d\n", - sc->rfsilent_pin)); - /* Configure hardware radio switch. */ AR_SETBITS(sc, AR_GPIO_INPUT_EN_VAL, AR_GPIO_INPUT_EN_VAL_RFSILENT_BB); reg = AR_READ(sc, AR_GPIO_INPUT_MUX2); @@ -4115,10 +4109,6 @@ athn_hw_reset(struct athn_softc *sc, struct ieee80211_channel *c, athn_init_pll(sc, c); athn_set_rf_mode(sc, c); - /* XXX move to attach? */ - if (sc->flags & ATHN_FLAG_RFSILENT) - athn_rfsilent_init(sc); - if (sc->flags & ATHN_FLAG_RFSILENT) { /* Check that the radio is not disabled by hardware switch. */ reg = athn_gpio_read(sc, sc->rfsilent_pin); @@ -4628,7 +4618,7 @@ athn_init(struct ifnet *ifp) struct athn_softc *sc = ifp->if_softc; struct ieee80211com *ic = &sc->sc_ic; struct ieee80211_channel *c, *extc; - int error; + int i, error; c = ic->ic_bss->ni_chan = ic->ic_ibss_chan; extc = NULL; @@ -4636,7 +4626,6 @@ athn_init(struct ifnet *ifp) /* In case a new MAC address has been configured. */ IEEE80211_ADDR_COPY(ic->ic_myaddr, LLADDR(ifp->if_sadl)); -#ifdef notyet /* For CardBus, power on the socket. */ if (sc->sc_enable != NULL) { if ((error = sc->sc_enable(sc)) != 0) { @@ -4650,10 +4639,30 @@ athn_init(struct ifnet *ifp) goto fail; } } + if (!(sc->flags & ATHN_FLAG_PCIE)) + athn_config_nonpcie(sc); + else + athn_config_pcie(sc); + + /* Reset HW key cache entries. */ + for (i = 0; i < sc->kc_entries; i++) + athn_reset_key(sc, i); + + AR_SETBITS(sc, AR_PHY_CCK_DETECT, + AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV); + +#ifdef ATHN_BT_COEXISTENCE + /* Configure bluetooth coexistence for combo chips. */ + if (sc->flags & ATHN_FLAG_BTCOEX) + athn_btcoex_init(sc); #endif - if (sc->flags & ATHN_FLAG_PCIE) - athn_config_pcie(sc); + /* Configure LED. */ + athn_led_init(sc); + + /* Configure hardware radio switch. */ + if (sc->flags & ATHN_FLAG_RFSILENT) + athn_rfsilent_init(sc); if ((error = athn_hw_reset(sc, c, extc)) != 0) { printf("%s: unable to reset hardware; reset status %d\n", @@ -4742,9 +4751,7 @@ athn_stop(struct ifnet *ifp, int disable) athn_set_power_sleep(sc); -#ifdef notyet /* For CardBus, power down the socket. */ if (disable && sc->sc_disable != NULL) sc->sc_disable(sc); -#endif } |