aboutsummaryrefslogtreecommitdiff
path: root/sys/isa/isa_common.c
Commit message (Expand)AuthorAgeFilesLines
* On further testing on actual machines with this hardware, we shouldWarner Losh2017-12-301-2/+3
* Warn when nonPNP ISA devices are attached in GENERIC that they areWarner Losh2017-12-231-6/+28
* sys: general adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* Fix the resource_list_print_type() calls to use uintmax_t.Justin Hibbits2016-03-221-4/+4
* Replace all resource occurrences of '0UL/~0UL' with '0/~0'.Justin Hibbits2016-03-031-1/+1
* Replace several bus_alloc_resource() calls using default arguments with bus_a...Justin Hibbits2016-02-191-4/+4
* Convert rman to use rman_res_t instead of u_longJustin Hibbits2016-01-271-1/+1
* Retire isa_setup_intr() and isa_teardown_intr() and use the generic busJohn Baldwin2011-05-061-2/+2
* bus_add_child: change type of order parameter to u_intAndriy Gapon2010-09-101-1/+1
* Allow device hints to wire the unit numbers of devices.John Baldwin2008-11-181-64/+69
* MFp4:Warner Losh2008-11-021-3/+19
* MFp4 (my newcard tree):Warner Losh2008-08-241-54/+0
* When trying to allocate a PnP BIOS memory resource, the code loops tryingJohn Baldwin2007-04-171-1/+1
* Make the ISAPNP code optional and only enable it on i386 and pc98 (usedMarius Strobl2006-06-121-0/+6
* Remove various bits of conditional Alpha code and fixup a few comments.John Baldwin2006-05-121-3/+0
* Add pnp and location info for the ISA bus. The pnp info is theWarner Losh2005-08-011-0/+25
* Use STAILQ in preference to SLIST for the resources. Insert new resourcesWarner Losh2005-03-181-5/+5
* Protect against wrapping. This appaers to fix some hangs that peopleWarner Losh2005-01-231-1/+1
* Formatting nitsWarner Losh2004-12-271-6/+6
* Get rid of #ifdef for legacy system. Move that into the MD code.Warner Losh2004-12-241-6/+5
* A few style(9) changes before more extensive changes:Warner Losh2004-12-241-60/+55
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-171-12/+12
* - Make the isab devclass global to allow for multiple ISA bridge drivers.John Baldwin2003-07-081-0/+17
* Use __FBSDID().David E. O'Brien2003-06-111-2/+3
* Create a 'legacy' node for AMD64 as well as i386. While we'll neverPeter Wemm2003-04-301-1/+1
* Add a module version number.Matthew N. Dodd2003-04-151-0/+1
* - Use __BUS_ACCESSOR() to define the ISA ivar accessor functions instead ofJohn Baldwin2002-10-151-4/+4
* Don't leak memory in case device_add_child_ordered() returns NULL.Poul-Henning Kamp2002-09-301-3/+6
* Argh, isa(4), eisa(4) and mca(4) now attach to legacy(4) instead ofJohn Baldwin2002-09-261-2/+2
* Fix style bugs:Alfred Perlstein2002-02-241-2/+3
* Give a little more information as to why pnp configuration of a deviceAlfred Perlstein2002-02-241-1/+7
* Use the new resource_list_print_type() function.Thomas Moestl2001-12-211-40/+5
* Rework the ISA PnP driver pnp and the PnP resource parser to fixKazutaka YOKOTA2001-09-051-2/+92
* Add a new field, id_config_attr to the struct isa_device.Kazutaka YOKOTA2001-09-031-0/+8
* Safety-check against empty PnP ID lists.Mike Smith2001-08-301-1/+1
* DO NOT ALLOCATE 2+K OBJECTS ON THE KERNEL STACK!!!!Julian Elischer2001-08-101-12/+25
* It's possible for an ISA bus to be hung off an EISA bridge, so we need toMike Smith2000-12-121-0/+1
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-2/+1
* Staticize some malloc M_ instances.Poul-Henning Kamp2000-12-081-1/+1
* Reduce code duplication by using the GET_RESOURCE_LIST bus method and relatedMatthew N. Dodd2000-11-281-26/+12
* Don't assume that any ISA device that fails to probe is a PnP device,John Baldwin2000-07-121-9/+11
* Replace the unknown driver with a nomatch method in the isa driver.Doug Rabson2000-06-251-71/+70
* When allocating resources in the following cases:Mike Smith2000-02-111-5/+5
* Don't mark unallocated resources as active; the goal is to reserve them,Mike Smith2000-01-181-1/+1
* Remove the 'ivars' arguement to device_add_child() andMatthew N. Dodd1999-12-031-1/+5
* Allow NULL for startp and/or countp in bus_get_resource() so that you canPeter Wemm1999-11-201-2/+4
* Reorganise the code so that I can add custom identify drivers dynamicallyDoug Rabson1999-11-111-1/+71
* * Add struct resource_list* argument to resource_list_alloc andDoug Rabson1999-10-121-24/+27
* Disable pnp devices before running heuristic probes. This allows us toDoug Rabson1999-10-031-2/+16
* Change isa_get/set_flags() to device_get/set_flags().Doug Rabson1999-09-071-12/+3