Age | Commit message (Expand) | Author |
2006-12-31 | Add a debug printf to warn when malo_init() fails and resets the card. | Claudio Jeker |
2006-12-31 | There is no need to busy wait in malo_send_cmd(). 0x0c14 only stores the | Claudio Jeker |
2006-12-31 | Use a bus_space_barrier instead of those stupid 0x0c14 reads to make sure | Claudio Jeker |
2006-12-31 | In malo_init() check for firmware loading errors and in case of an error | Claudio Jeker |
2006-12-31 | malo_stop() never fails so no need to return an error. OK mglocker@ | Claudio Jeker |
2006-12-31 | Use #ifdef MALO_DEBUG else a simple #define MALO_DEBUG will not work. | Claudio Jeker |
2006-12-30 | Fix another printf where the format string did not match with the varargs. | Claudio Jeker |
2006-12-30 | Don't use M_DUP_PKTHDR() on static mbufs. M_DUP_PKTHDR() copies the mtag | Claudio Jeker |
2006-12-30 | Why doing something as complex as for () bus_space_write_1(); when there | Claudio Jeker |
2006-12-29 | No colon after "address". | Marcus Glocker |
2006-12-12 | Make malo(4) work on macppc by adding a few letoh32(), removing some htole32() | Claudio Jeker |
2006-12-10 | Add missing argument to a DPRINTF call. | Claudio Jeker |
2006-12-03 | First bits of endian cleanup more still needed but commit early, commit often. | Claudio Jeker |
2006-12-03 | Print the number of unknown commands in malo_cmd_string(). Also don't | Claudio Jeker |
2006-11-30 | fix wep key index in firmware command. | Damien Bergamini |
2006-11-30 | Yay, forgot to add IEEE80211_C_SHPREAMBLE and IEEE80211_C_SHSLOT | Marcus Glocker |
2006-11-29 | Enable short slots, which should increase / stableize throughput | Marcus Glocker |
2006-11-29 | Enable monitor mode. | Marcus Glocker |
2006-11-28 | Instead debug message for WEP key setting, just complain if WEP key | Marcus Glocker |
2006-11-27 | Enable WEP. | Marcus Glocker |
2006-11-26 | Replace the firmware reset command by a register write which also | Marcus Glocker |
2006-11-26 | It's sizeof(struct ieee80211_frame) not sizeof(struct ieee80211_frame *). | Marcus Glocker |
2006-11-26 | do not have each net80211 driver define its own rates structures. if they use | Theo de Raadt |
2006-11-25 | Cleanup obsolete rate bits and pass right value to the TX rate descriptor. | Marcus Glocker |
2006-11-25 | If no TX rate has been calculated yet, set rate value to autoselect | Marcus Glocker |
2006-11-24 | Small KNF fix. | Marcus Glocker |
2006-11-24 | Enable setting of fixed rates. | Marcus Glocker |
2006-11-24 | Enable automatic rate adapation (done by firmware and hardware). | Marcus Glocker |
2006-11-23 | Remove 802.11a stuff. There is one RF chip (88W8030) which supports 5GHz, | Marcus Glocker |
2006-11-23 | The duration field is calculated by the firmware. Remove malo_txtime() | Marcus Glocker |
2006-11-22 | Remove rssadapt(9) bits; Firmware supports rate adaption. Also, | Marcus Glocker |
2006-11-21 | Free allocated mbufs at TX done. While there also reset some TX descriptor | Marcus Glocker |
2006-11-16 | Drop malo_reset() for now and do ENETRESET and media changes using | Marcus Glocker |
2006-11-16 | Minor cleanup; reactivate malo_cmd_reset() which seems to work now, remove | Marcus Glocker |
2006-11-15 | Quiet down debug output by default. Improve cmd response/result handling. | Marcus Glocker |
2006-11-15 | Enable data packet transmission. | Marcus Glocker |
2006-11-15 | Fix the loop in malo_tx_intr(). This fixes a infinit loop that happend after | Claudio Jeker |
2006-11-12 | In malo_send_cmd_dma() reduce the poll loop to 10 and increase the delay | Claudio Jeker |
2006-11-12 | Rewrite part of malo_tx_mgt() to do the mbuf dance in a nicer way. This | Claudio Jeker |
2006-11-12 | Simplify code and remove a delay() by actually waiting for the command to | Claudio Jeker |
2006-11-10 | Fix DMA firmware command interface (poll for command response), and get the | Marcus Glocker |
2006-11-09 | Fix a bug in the firmware command function and check if the main firmware | Marcus Glocker |
2006-11-07 | Add TX done cleanup. | Marcus Glocker |
2006-11-06 | Also reset the TX ring if the card gets stopped. | Marcus Glocker |
2006-11-06 | Enable TX of management frames. Fix/add firmware commands, add more debug | Marcus Glocker |
2006-10-29 | Reorganize malo_intr() a bit. Check for unhandled interrupt flags and | Claudio Jeker |
2006-10-29 | In malo_ioctl() if the returned error is ENETRESET reset the device. | Claudio Jeker |
2006-10-29 | MALO_CMD_RESPONSE is acting just as a flag so move it to the end of the list. | Claudio Jeker |
2006-10-29 | Fix some nasty bugs in malo_reset() and malo_cmd_set_channel() and simplify | Claudio Jeker |
2006-10-29 | Add first TX path and active scan bits. Don't expect to much yet. | Marcus Glocker |