diff options
author | jfv <jfv@FreeBSD.org> | 2011-02-01 01:05:11 +0000 |
---|---|---|
committer | jfv <jfv@FreeBSD.org> | 2011-02-01 01:05:11 +0000 |
commit | c4f814b2fb3f8ace6692b76e2395e15fe63cca70 (patch) | |
tree | f64f78fbf84afa97813ba0ddea48fd29e61794f1 /sys/dev/ahci/ahci.c | |
parent | b1efa03054e07ab902c30a2eb3b195601954dd8f (diff) | |
download | FreeBSD-src-c4f814b2fb3f8ace6692b76e2395e15fe63cca70.zip FreeBSD-src-c4f814b2fb3f8ace6692b76e2395e15fe63cca70.tar.gz |
Support for the new Patsburg PCH chipset:
- 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
Diffstat (limited to 'sys/dev/ahci/ahci.c')
-rw-r--r-- | sys/dev/ahci/ahci.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/ahci/ahci.c b/sys/dev/ahci/ahci.c index c96795d..45e0c25 100644 --- a/sys/dev/ahci/ahci.c +++ b/sys/dev/ahci/ahci.c @@ -161,7 +161,10 @@ static struct { {0x1c038086, 0x00, "Intel Cougar Point", 0}, {0x1c048086, 0x00, "Intel Cougar Point", 0}, {0x1c058086, 0x00, "Intel Cougar Point", 0}, - {0x23238086, 0x00, "Intel DH89xxCC", 0}, + {0x23238086, 0x00, "Intel DH89xxCC", 0}, + {0x1d028086, 0x00, "Intel Patsburg", 0}, + {0x1d048086, 0x00, "Intel Patsburg", 0}, + {0x1d068086, 0x00, "Intel Patsburg", 0}, {0x2361197b, 0x00, "JMicron JMB361", AHCI_Q_NOFORCE}, {0x2363197b, 0x00, "JMicron JMB363", AHCI_Q_NOFORCE}, {0x2365197b, 0x00, "JMicron JMB365", AHCI_Q_NOFORCE}, |