summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_bcw_pci.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* After been attacked by Michael Buesch <mb@bu3sch.de> because we initiallymglocker2007-04-051-202/+0
| | | | | | were using some of their routines in the bcw driver, I decided to stop working on it. To avoid any further license chit chat I plain drop the driver.
* There is no need to keep the intrstr in the drivers softc struct.mglocker2007-04-011-11/+12
|
* Enable interrupts.mglocker2007-03-311-47/+16
|
* Fix strict alignment panic. Makes my BCM4306 attach on sparc64.mglocker2007-03-041-4/+4
|
* Kill a cardbus dependency which breaked kernel compilation e.g. formglocker2007-03-041-14/+15
| | | | | | sparc*. OK deraadt
* Some KNF.mglocker2007-02-261-22/+19
|
* Remove PCI powerhooks, bcw_pci_enable() and bcw_pci_disable().mglocker2007-02-261-32/+1
|
* We need to save some PCI infos in our softc struct for further decisionsmglocker2007-02-261-1/+4
| | | | in the driver code.
* Get correct chip revision and also get chip package.mglocker2007-02-241-2/+1
|
* Don't wrap line before printing MAC address.mglocker2007-01-031-2/+2
|
* From Jon Simola <simola@mecha.com>:mglocker2006-12-081-17/+12
| | | | Style and whitespace cleanup.
* From Jon Simola <simola@mecha.com>:mglocker2006-12-061-3/+22
| | | | | Add bus-specific config space read and write functions, this fixes the attach for ian@darwinsys.com and properly enumerates multiple cores.
* From Jon Simola <simola@mecha.com>:mglocker2006-11-291-39/+14
| | | | | New bcw_powercontrol_crystal_on() function, and fix the license for the pci wrapper.
* add the BCM4312 PCI id.brad2006-11-221-1/+2
|
* Some more minor cleanup in the PCI hookup.mglocker2006-11-221-11/+1
| | | | From Jon Simola <jon@mecha.ca>.
* From Jon Simola <simola@mecha.com>:mglocker2006-11-211-24/+21
| | | | | | Lots of help from Jonathan Gray. bcw_regs has been removed, and DMA/descriptor style changes that look more normal. Tested, no loss in current unfunctionality.
* This is a very initial import for a driver which supports the IEEE 802.11mglocker2006-11-171-0/+286
Broadcom BCM43xx chipset. Device attaches, but has no further functionality yet. The work has been done by Jon Simola <jsimola@gmail.com>, based on the existing bce(4) code. He will continue to work on the driver and try to make further progress. ok deraadt@