| History log of /src/sys/arch/mmeye/dev/mmeyepcmcia.c |
| Revision | | Date | Author | Comments |
| 1.27 |
| 13-Feb-2024 |
andvar | s/enqueing/enqueuing/ in debug messages (took a bait from recent Nick's commit) s/occaision/occasion/ in comment.
|
| 1.26 |
| 29-Sep-2023 |
andvar | Remove h->sock from DPRINTF arguments, it is leftover from shpcic_handle, removed when code was moved to mmeye specific device code in 2002. Add const for *width_names[] definition. Redefine ioaddr in mmeyepcmcia_chip_io_alloc() and calculate in advance, since DPRINTF() expects it as one of the arguments. This code was simplified with mmEye-WL added support in 2011, but broke debug code.
Fixes MMEYEPCMCIADEBUG enabled build.
|
| 1.25 |
| 07-Aug-2021 |
thorpej | Merge thorpej-cfargs2.
|
| 1.24 |
| 24-Apr-2021 |
thorpej | branches: 1.24.8; Merge thorpej-cfargs branch:
Simplify and make extensible the config_search() / config_found() / config_attach() interfaces: rather than having different variants for which arguments you want pass along, just have a single call that takes a variadic list of tag-value arguments.
Adjust all call sites: - Simplify wherever possible; don't pass along arguments that aren't actually needed. - Don't be explicit about what interface attribute is attaching if the device only has one. (More simplification.) - Add a config_probe() function to be used in indirect configuiration situations, making is visibly easier to see when indirect config is in play, and allowing for future change in semantics. (As of now, this is just a wrapper around config_match(), but that is an implementation detail.)
Remove unnecessary or redundant interface attributes where they're not needed.
There are currently 5 "cfargs" defined: - CFARG_SUBMATCH (submatch function for direct config) - CFARG_SEARCH (search function for indirect config) - CFARG_IATTR (interface attribte) - CFARG_LOCATORS (locators array) - CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)
...and a sentinel value CFARG_EOL.
Add some extra sanity checking to ensure that interface attributes aren't ambiguous.
Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark ports to associate those device handles with device_t instance. This will trickle trough to more places over time (need back-end for pre-OFW Sun OBP; any others?).
|
| 1.23 |
| 21-Nov-2020 |
thorpej | branches: 1.23.2; malloc(9) -> kmem(9)
|
| 1.22 |
| 27-Oct-2012 |
chs | branches: 1.22.50; split device_t/softc for all remaining drivers. replace "struct device *" with "device_t". use device_xname(), device_unit(), etc.
|
| 1.21 |
| 26-Jul-2011 |
dyoung | branches: 1.21.2; 1.21.12; Don't set the iobase and iosize members of pcmciabus_attach_args because they're not used in any meaningful way.
|
| 1.20 |
| 19-Jul-2011 |
dyoung | Change <machine/bus.h> to <sys/bus.h> throughout.
Split bus.h -> bus_{defs,funcs}.h.
Mark mmeye/bus.h obsolete.
|
| 1.19 |
| 19-Feb-2011 |
kiyohara | Support mmEye-WLF. Also maybe support mmEye-WL, mmEye2, mmEye2-HS.
|
| 1.18 |
| 02-Feb-2011 |
kiyohara | Remove unused macros.
|
| 1.17 |
| 02-Feb-2011 |
kiyohara | Add socket_settype of struct pcmcia_chip_functions. Always need it.
|
| 1.16 |
| 02-Feb-2011 |
kiyohara | Change to static functions.
|
| 1.15 |
| 16-Mar-2009 |
dsl | branches: 1.15.4; 1.15.6; 1.15.8; ANSIfy functions with function-pointer arguments
|
| 1.14 |
| 17-Oct-2007 |
garbled | branches: 1.14.20; 1.14.28; 1.14.34; Merge the ppcoea-renovation branch to HEAD.
This branch was a major cleanup and rototill of many of the various OEA cpu based PPC ports that focused on sharing as much code as possible between the various ports to eliminate near-identical copies of files in every tree. Additionally there is a new PIC system that unifies the interface to interrupt code for all different OEA ppc arches. The work for this branch was done by a variety of people, too long to list here.
TODO: bebox still needs work to complete the transition to -renovation. ofppc still needs a bunch of work, which I will be looking at. ev64260 still needs to be renovated amigappc was not attempted.
NOTES: pmppc was removed as an arch, and moved to a evbppc target.
|
| 1.13 |
| 09-Jul-2007 |
ad | branches: 1.13.10; Merge some of the less invasive changes from the vmlocking branch:
- kthread, callout, devsw API changes - select()/poll() improvements - miscellaneous MT safety improvements
|
| 1.12 |
| 04-Mar-2007 |
christos | branches: 1.12.2; 1.12.4; 1.12.10; Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
|
| 1.11 |
| 24-Dec-2005 |
perry | branches: 1.11.26; Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
|
| 1.10 |
| 11-Dec-2005 |
christos | merge ktrace-lwp.
|
| 1.9 |
| 28-Jun-2005 |
drochner | branches: 1.9.2; convert remaining autoconf bus "submatch" functions to use the new signature (passing locators), and remove some which obviously don't serve any purpose (untested, sorry)
|
| 1.8 |
| 28-Dec-2003 |
christos | make the printf statement a complete line.
|
| 1.7 |
| 15-Jul-2003 |
lukem | __KERNEL_RCSID()
|
| 1.6 |
| 01-Jan-2003 |
thorpej | branches: 1.6.2; Use aprint_normal() for cfprint routines.
|
| 1.5 |
| 02-Oct-2002 |
thorpej | Use CFATTACH_DECL().
|
| 1.4 |
| 27-Sep-2002 |
thorpej | Declare all cfattach structures const.
|
| 1.3 |
| 27-Sep-2002 |
thorpej | Introduce a new routine, config_match(), which invokes the cfattach->ca_match function in behalf of the caller. Use it rather than invoking cfattach->ca_match directly.
|
| 1.2 |
| 01-Jun-2002 |
lukem | branches: 1.2.2; 1.2.4; SIMPLEQ rototill: - implement SIMPLEQ_REMOVE(head, elm, type, field). whilst it's O(n), this mirrors the functionality of SLIST_REMOVE() (the other singly-linked list type) and FreeBSD's STAILQ_REMOVE() - remove the unnecessary elm arg from SIMPLEQ_REMOVE_HEAD(). this mirrors the functionality of SLIST_REMOVE_HEAD() (the other singly-linked list type) and FreeBSD's STAILQ_REMOVE_HEAD() - remove notes about SIMPLEQ not supporting arbitrary element removal - use SIMPLEQ_FOREACH() instead of home-grown for loops - use SIMPLEQ_EMPTY() appropriately - use SIMPLEQ_*() instead of accessing sqh_first,sqh_last,sqe_next directly - reorder manual page; be consistent about how the types are listed - other minor cleanups
|
| 1.1 |
| 24-Mar-2002 |
uch | branches: 1.1.2; mmeye specific devices are moved to mmeye/dev
|
| 1.1.2.1 |
| 14-Jul-2002 |
gehenna | catch up with -current.
|
| 1.2.4.3 |
| 10-Oct-2002 |
jdolecek | sync kqueue with -current; this includes merge of gehenna-devsw branch, merge of i386 MP branch, and part of autoconf rototil work
|
| 1.2.4.2 |
| 23-Jun-2002 |
jdolecek | catch up with -current on kqueue branch
|
| 1.2.4.1 |
| 01-Jun-2002 |
jdolecek | file mmeyepcmcia.c was added on branch kqueue on 2002-06-23 17:38:14 +0000
|
| 1.2.2.3 |
| 03-Jan-2003 |
thorpej | Sync with HEAD.
|
| 1.2.2.2 |
| 18-Oct-2002 |
nathanw | Catch up to -current.
|
| 1.2.2.1 |
| 01-Jun-2002 |
nathanw | file mmeyepcmcia.c was added on branch nathanw_sa on 2002-10-18 02:38:56 +0000
|
| 1.6.2.4 |
| 10-Nov-2005 |
skrll | Sync with HEAD. Here we go again...
|
| 1.6.2.3 |
| 21-Sep-2004 |
skrll | Fix the sync with head I botched.
|
| 1.6.2.2 |
| 18-Sep-2004 |
skrll | Sync with HEAD.
|
| 1.6.2.1 |
| 03-Aug-2004 |
skrll | Sync with HEAD
|
| 1.9.2.2 |
| 03-Sep-2007 |
yamt | sync with head.
|
| 1.9.2.1 |
| 21-Jun-2006 |
yamt | sync with head.
|
| 1.11.26.1 |
| 12-Mar-2007 |
rmind | Sync with HEAD.
|
| 1.12.10.1 |
| 03-Oct-2007 |
garbled | Sync with HEAD
|
| 1.12.4.1 |
| 11-Jul-2007 |
mjf | Sync with head.
|
| 1.12.2.1 |
| 15-Jul-2007 |
ad | Sync with head.
|
| 1.13.10.1 |
| 06-Nov-2007 |
matt | sync with HEAD
|
| 1.14.34.1 |
| 13-May-2009 |
jym | Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
|
| 1.14.28.1 |
| 28-Apr-2009 |
skrll | Sync with HEAD.
|
| 1.14.20.1 |
| 04-May-2009 |
yamt | sync with head.
|
| 1.15.8.2 |
| 05-Mar-2011 |
bouyer | Sync with HEAD
|
| 1.15.8.1 |
| 08-Feb-2011 |
bouyer | Sync with HEAD
|
| 1.15.6.1 |
| 06-Jun-2011 |
jruoho | Sync with HEAD.
|
| 1.15.4.1 |
| 05-Mar-2011 |
rmind | sync with head
|
| 1.21.12.1 |
| 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
| 1.21.2.1 |
| 30-Oct-2012 |
yamt | sync with head
|
| 1.22.50.1 |
| 14-Dec-2020 |
thorpej | Sync w/ HEAD.
|
| 1.23.2.1 |
| 23-Mar-2021 |
thorpej | Convert config_found_ia() call sites where the device only carries a single interface attribute to bare config_found() calls.
|
| 1.24.8.1 |
| 04-Aug-2021 |
thorpej | Adapt to CFARGS().
|