aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/pccbb
Commit message (Expand)AuthorAgeFilesLines
...
* Better name for this routine... it doesn't reset the card, but resetsWarner Losh2009-03-121-4/+4
* Hold off root mounting until we've gone through the loop of our threadWarner Losh2009-02-173-0/+11
* Correct signatures to match kobj function definitions.Warner Losh2009-02-043-22/+19
* Update to the interrupt handling code:Warner Losh2008-12-111-35/+58
* Minor tweaks to some of the comments. Also, add a XXX wondering if weWarner Losh2008-12-071-17/+18
* Use '0' rather than PZERO to not change the priority that I'm waitingWarner Losh2008-12-071-3/+3
* Use atomic_add_int rather than a simple ++ to ensure no cache races ifWarner Losh2008-12-071-1/+1
* Move to using filter for the change interrupts. Also rework the powerWarner Losh2008-12-053-37/+24
* Minor style nit.Warner Losh2008-12-051-2/+2
* Augment comments, and move things around a smidge.Warner Losh2008-12-051-17/+17
* Implement a method described in NetBSD PR 36652 for coping with theWarner Losh2008-12-051-1/+12
* Return BUS_PROBE_GENERIC rather BUS_PROBE_DEFAULT for generic CBB we match.Warner Losh2008-10-021-1/+1
* Don't forget to match on a CLASS of PCIC_BRIDGE as well as subclassWarner Losh2008-10-021-1/+4
* Read the config space of the child, not the bridge, to determine whenWarner Losh2008-08-101-5/+5
* fix typoWarner Losh2008-08-091-1/+1
* It turns out that checking the first DWORD register is more reliableWarner Losh2008-08-091-15/+17
* After some intial testing, there are even slower cards than the onesWarner Losh2008-08-091-13/+24
* Rather than waiting a fixed amount of time, which might not be enoughWarner Losh2008-08-091-12/+23
* While most bridges can bring a card out of reset in 20ms, there areWarner Losh2008-08-091-3/+4
* Rename the kthread_xxx (e.g. kthread_create()) callsJulian Elischer2007-10-202-4/+4
* Make the PCI code aware of PCI domains (aka PCI segments) so we canMarius Strobl2007-09-303-0/+9
* Migrate from setting a CARD_OK flag in a shared word, to setting itsWarner Losh2007-06-043-32/+21
* Don't register cb_func_filt if the client driver doesn't have a filter.Warner Losh2007-06-041-4/+3
* Minor filter tweaks:Warner Losh2007-06-031-26/+47
* Make the interrupt handler wrapper capable of correctly support filter+ithrea...Paolo Pisati2007-05-312-8/+22
* o Don't hold lock over bus_teardown_intr when we're waiting for theWarner Losh2007-05-161-5/+3
* Better message on cbb resource alloc failureWarner Losh2007-05-161-1/+1
* Use different wait channel name for second of two sleeps. Minor commentaryWarner Losh2007-03-051-2/+2
* Reduce the number of retries to 10 from 20 for not_a_card retry test.Warner Losh2007-03-041-5/+8
* Use pause() instead of tsleep()'s on the softc pointer that have noJohn Baldwin2007-02-271-6/+6
* o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati2007-02-233-5/+7
* Two changes:Warner Losh2007-02-161-1/+4
* Fix typo in commentWarner Losh2007-02-161-1/+1
* It turns out that it is easier to not NULL out pccard and cardbusWarner Losh2007-02-151-14/+6
* Fix three bugs:Warner Losh2007-02-151-6/+25
* Batch of changes:Warner Losh2006-08-123-61/+112
* We don't have a ISA specific shutdown routine at this time, so removeWarner Losh2006-06-031-1/+0
* Since we turn off the interrupts, we don't need to disestablishWarner Losh2006-06-031-13/+0
* Move shutdown, and pci specific methods into pccbb_pci.c. Many moreWarner Losh2006-06-033-74/+67
* The interrupt routine is pci specific. Move it into pccbb_pci.c.Warner Losh2006-06-032-70/+71
* Fix a couple printf's to be properly terminated.Warner Losh2006-06-031-3/+3
* Succeed for writing bus value... nobody that calls must care :-(Warner Losh2006-06-031-1/+1
* Zero out the devices when they are deleted. We can access the pointer afterWarner Losh2006-06-021-1/+5
* Export the pribus, secbus and subbus as sysctls for informationWarner Losh2006-05-242-20/+31
* Suspend the children before we turn off card events in hardware. ThisWarner Losh2006-05-241-2/+4
* Fix a race when detaching the cbb worker thread. There were a coupleWarner Losh2006-05-241-1/+7
* Whitespace nitsWarner Losh2006-05-231-3/+3
* Since DELAY() was moved, most <machine/clock.h> #includes have beenPoul-Henning Kamp2006-05-162-2/+0
* Add missing ~. We want all the INVALID bits to be 0... Let's see if thisWarner Losh2006-04-161-1/+1
* On some laptops, under very high loads, the socket event register readWarner Losh2006-03-301-2/+13