summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_an_pci.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.mpi2015-11-241-2/+1
|
* use nitems(); no binary change for drivers that are compiled on amd64.jasper2011-04-031-2/+2
| | | | ok claudio@
* make various strings ("can't map mem space" and similar) more consistentsthen2009-03-291-2/+2
| | | | | | | between instances, saving space in the kernel. feedback from many (some incorporated, some left for future work). ok deraadt, kettenis, "why not" miod.
* ansi. no binary change.jsg2006-03-101-9/+3
|
* Add basic radiotap support. Modelled somewhat afterjsg2006-01-301-1/+2
| | | | | ral and NetBSD wi radiotap. "looks ok" damien@
* Move an(4) to a driver based on the NetBSD one.jsg2006-01-091-4/+6
| | | | | | | | | | This brings net80211 support and support for newer hardware. In addition ancontrol is no longer needed. This driver does not yet work on big endian archs like the previous one did. "do it" deraadt@
* only include what is needed (tree.h) and not the whole metric assload of unrelated crap (mbuf.h)mickey2005-09-131-2/+2
|
* replace the node hash table with a red-black tree. this fixes somereyk2005-09-131-1/+2
| | | | | | | bugs in the node table (like duplicate nodes in hostap mode), we get rid of possible hash collisions, and it simplifies the code. tested by many, ok damien@, jsg@
* do not set PCI_COMMAND_MASTER_ENABLE explicitly as it's already set in pcisubmatch(); kettenis@ testing; brad@ okmickey2005-08-091-7/+1
|
* Replace arpcom in the softc with ieee80211com in preparation forjsg2005-06-201-1/+3
| | | | further net80211 changes. ok mickey@
* Add a simplistic table driven lookup routine and use it where appropriate.jason2002-11-191-11/+10
|
* another 4800 weirdo from cisco; from condor@vcable.netmickey2002-05-221-2/+3
|
* First round of __P removal in sysmillert2002-03-141-3/+3
|
* if_media support, from freebsdmickey2001-09-291-1/+2
|
* Change pci_intr_map to take pci_attach_args as an argument.art2001-08-251-3/+2
| | | | | | | | | | | All callers actually took all arguments to pci_intr_map from pci_attach_args structs, so this simplifies code. This also allows more complicated interrupt assignment schemes like the one on sparc64. This makes sparc64 pci interrupts work. Inspired by the same change in NetBSD.
* enable attaching on pci35x models, seems to work okmickey2001-06-231-2/+3
|
* Make pci_mapreg_map take an extra argument where we canniklas2001-06-121-2/+2
| | | | | | | put a size limitation of the PCI region to map. That makes the PERC 3/Di raid controller usable, as it publishes too much PCI memory for us to map in the kernel virtual memory. As we only access the first 256 byte it is of no use to map 128MB of kvm.
* Use pci_mapreg_map() instead of pci_io_find() and pci_mapreg_map()millert2000-04-101-10/+4
|
* Aironet PCI shim; all the real meat is in sys/ic/an.c.millert2000-04-101-0/+160
Based on the FreeBSD if_an_pci.c but really the only things that remain the same are the informative comments at the top. I retained Bill Paul's Copyright since it seems silly to add my own copyright to what is simply boilerplate.