summaryrefslogtreecommitdiffstats
path: root/sys/dev/ichsmb/ichsmb_pci.c
Commit message (Collapse)AuthorAgeFilesLines
* MFC r281136:rpaulo2015-04-131-1/+5
| | | | ichsmb: add a device id for the Wildcat Point-LP.
* MFC r275101:mav2014-12-031-0/+4
| | | | Add bunch of PCI IDs of Intel Wildcat Point (9 Series) chipsets.
* MFC r258169:mav2014-01-051-0/+4
| | | | Add ID for Intel Avoton SMBus controller.
* Add new Coleto Creek device support: SATA, SMBus, and Watchdog devices.jfv2013-07-191-0/+4
| | | | MFC after: 1 week
* Add Intel Lynx Point PCH SMBus Device IDsjfv2013-01-021-0/+4
|
* - There's no need to overwrite the default device method with the defaultmarius2011-11-221-4/+2
| | | | | | | | | | one. Interestingly, these are actually the default for quite some time (bus_generic_driver_added(9) since r52045 and bus_generic_print_child(9) since r52045) but even recently added device drivers do this unnecessarily. Discussed with: jhb, marcel - While at it, use DEVMETHOD_END. Discussed with: jhb - Also while at it, use __FBSDID.
* Revert r224736 as the introduced value was already present.attilio2011-08-091-2/+0
| | | | | Reported by: tinderbox, pluknet Approved by: re (kib)
* Add the PCI ID for the PCH DH89xxCC on ichsmb as got from Linux counterpart.attilio2011-08-091-0/+2
| | | | | | | Sponsored by: Sandvine Incorporated Reviewed by: emaste, rstone Approved by: re (bz) MFC after: 3 days
* Chipset support for the new Intel Panther Point PCH, thanksjfv2011-05-111-0/+4
| | | | to Seth Heasley for preparing the changes.
* Support for the new Patsburg PCH chipset:jfv2011-02-011-0/+4
| | | | | | | | | | | - SMBus Controller - SATA Controller - HD Audio Controller - Watchdog Controller Thanks to Seth Heasley (seth.heasley@intel.com) for providing us code. MFC after 3 days
* Support for the new DH89xxCC PCH chipset including:jfv2011-01-311-0/+4
| | | | | | - SATA controller - Watchdog timer - SMBus controller
* Add support for Intel Cougar Point SMBus controller.jfv2010-08-271-0/+4
| | | | MFC afer 1 week
* ichsmb: add another pci idavg2009-12-161-0/+4
| | | | | | | | | This is SMBus controller found in Intel Platform Controller Hub (PCH), which is a general name that refers to Intel 5 Series chipsets and 3400 Series chipsets. Submitted by: Dmitry S. Luhtionov <mitya@cabletv.dp.ua> MFC after: 3 days
* ichsmb: drop default attachment to generic smbus hardwareavg2009-12-041-8/+0
| | | | | | | | Attach only to devices known to be supported. This change overrided and undoes r200053. Suggested by: jhb MFC after: 2 weeks (only to stable/8)
* ichsmb: try attaching only to intel hardware in the default caseavg2009-12-031-2/+4
| | | | | | | | | | Ideally we should attempt attaching only to known supported devices. But I am not sure that we have all supported PCI IDs already listed, and I am too young to die, err, I don't want to take the heat from causing a trouble to someone. MFC after: 1 week X-ToDo: drop the default case
* ichsmb: add pci ids for some newer supported hardwareavg2009-12-031-0/+12
| | | | | Submitted by: Dmitry S. Luhtionov <mitya@cabletv.dp.ua> MFC after: 5 days
* - Use bus_foo() rather than bus_space_foo() and remove bus space tag/handlejhb2008-06-061-3/+1
| | | | | | from softc. - Mark interrupt handlers MPSAFE as these drivers have been locked for a while.
* Add the Intel 82801FB (ICH6) SMBus controller and theremko2007-11-261-0/+8
| | | | | | | | | | | | Intel 82801GB (ICH7) SMBus controller. PR: 85106 [1] PR: 99663 [2] Approved by: imp (mentor), jhb Submitted by: Oliver Fromme <olli at lurza.secnetix dot de>, [1] Arthur Hartwig <arthur dot hartwig at nokia dot com>, [1] Lowell Gilbert <lgfbsd at be-well dot ilk dot org> [2]@ MFC After: 3 days
* Add a device ID for the 631xESB/6321ESB SMBus controller.jhb2007-01-111-0/+4
| | | | Submitted by: Reed A. Cartwright <reed scit.us>
* Various updates to most of the smbus(4) drivers:jhb2007-01-111-24/+6
| | | | | | | | | | | | | | | | | | - Use printf() and device_printf() instead of log() in ichsmb(4). - Create the mutex sooner during ichsmb(4) attach. - Attach the interrupt handler later during ichsmb(4) attach to avoid races. - Don't try to set PCIM_CMD_PORTEN in ichsmb(4) attach as the PCI bus driver does this already. - Add locking to alpm(4), amdpm(4), amdsmb(4), intsmb(4), nfsmb(4), and viapm(4). - Axe ALPM_SMBIO_BASE_ADDR, it's not really safe to write arbitrary values into BARs, and the PCI bus layer will allocate resources now if needed. - Merge intpm(4) and intsmb(4) into just intsmb(4). Previously, intpm(4) attached to the PCI device and created an intsmb(4) child. Now, intsmb(4) just attaches to PCI directly. - Change several intsmb functions to take a softc instead of a device_t to make things simpler.
* Make ichsmb unloadable.brian2005-07-291-1/+0
| | | | | | | | It seems that the unload problems were due to a dodgy sc->smb usage and a missing mtx_destroy(). Sponsored by: ActiveState/Sophos MFC after: 3 weeks
* Make ichsmb(4) child device handling properly.takawata2005-06-101-0/+7
|
* Make ichsmb loadable.takawata2005-06-051-0/+3
| | | | | PR: kern/81912 Submitted by: nork
* Use BUS_PROBE_DEFAULT for pci probe return valueimp2005-03-051-1/+1
|
* Add PCI Device ID for 6300ESB ICH. If allocating 16 bytes fails then try 32.ambrisko2004-06-241-0/+7
| | | | This is also require for 6300ESB.
* Add missing <sys/module.h> includesphk2004-05-301-0/+1
|
* Convert callers to the new bus_alloc_resource_any(9) API.njl2004-03-171-2/+2
| | | | | Submitted by: Mark Santcroos <marks@ripe.net> Reviewed by: imp, dfr, bde
* Update the comment to indicate ICH5 supportnjl2003-08-311-1/+1
|
* Add support for the 82801EB (ICH5) SMBus controller.njl2003-08-311-0/+4
| | | | | | PR: kern/55485 Submitted by: Shin-ichi Yoshimoto <yosimoto@waishi.jp> MFC after: 1 day
* Use __FBSDID().obrien2003-08-241-6/+6
| | | | Also some minor style cleanups.
* Prefer new location of pci include files (which have only been in theimp2003-08-221-2/+2
| | | | | tree for two or more years now), except in a few places where there's code to be compatible with older versions of FreeBSD.
* typo.nyan2002-10-181-4/+4
| | | | | Submitted by: SAWADA Hodaka <hoda@tail.gr.jp> MFC after: 1 day
* Add PCI ID for ICH4 SMBus controller.mp2002-08-121-1/+5
|
* Detect and attach to the ICH3 SMBus controller.jhb2002-05-081-0/+4
| | | | | | | PR: i386/36972 Submitted by: Colin Perkins <csp@isi.edu> Requested by: Larry Rosenman <ler@lerctr.org> MFC After: 7 days
* Catch up to header include changes:jhb2001-03-281-0/+1
| | | | | - <sys/mutex.h> now requires <sys/systm.h> - <sys/mutex.h> and <sys/sx.h> now require <sys/lock.h>
* Add missing #include.archie2000-12-081-0/+1
|
* Driver for the Intel 82801AA (ICH) SMBus controller and compatibles.archie2000-10-061-0/+204
Obtained from: Whistle source tree
OpenPOWER on IntegriCloud