Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Add some Mobile 4th generation Intel Core Proces...



details:   https://anonhg.NetBSD.org/src/rev/d83c4c46d870
branches:  trunk
changeset: 791172:d83c4c46d870
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Thu Nov 07 15:55:08 2013 +0000

description:
Add some Mobile 4th generation Intel Core Processor devices
(Lynx Point-LP).

diffstat:

 sys/dev/pci/ichsmb.c  |   5 +++--
 sys/dev/pci/pucdata.c |  13 +++++++++++--
 2 files changed, 14 insertions(+), 4 deletions(-)

diffs (60 lines):

diff -r 401a16c50ed1 -r d83c4c46d870 sys/dev/pci/ichsmb.c
--- a/sys/dev/pci/ichsmb.c      Thu Nov 07 15:26:36 2013 +0000
+++ b/sys/dev/pci/ichsmb.c      Thu Nov 07 15:55:08 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ichsmb.c,v 1.32 2013/07/18 22:14:54 soren Exp $        */
+/*     $NetBSD: ichsmb.c,v 1.33 2013/11/07 15:55:08 msaitoh Exp $      */
 /*     $OpenBSD: ichiic.c,v 1.18 2007/05/03 09:36:26 dlg Exp $ */
 
 /*
@@ -22,7 +22,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ichsmb.c,v 1.32 2013/07/18 22:14:54 soren Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ichsmb.c,v 1.33 2013/11/07 15:55:08 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -110,6 +110,7 @@
                case PCI_PRODUCT_INTEL_6SERIES_SMB:
                case PCI_PRODUCT_INTEL_7SERIES_SMB:
                case PCI_PRODUCT_INTEL_8SERIES_SMB:
+               case PCI_PRODUCT_INTEL_CORE4G_M_SMB:
                case PCI_PRODUCT_INTEL_C600_SMBUS:
                case PCI_PRODUCT_INTEL_C600_SMB_0:
                case PCI_PRODUCT_INTEL_C600_SMB_1:
diff -r 401a16c50ed1 -r d83c4c46d870 sys/dev/pci/pucdata.c
--- a/sys/dev/pci/pucdata.c     Thu Nov 07 15:26:36 2013 +0000
+++ b/sys/dev/pci/pucdata.c     Thu Nov 07 15:55:08 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pucdata.c,v 1.86 2013/09/04 17:38:37 christos Exp $    */
+/*     $NetBSD: pucdata.c,v 1.87 2013/11/07 15:55:08 msaitoh Exp $     */
 
 /*
  * Copyright (c) 1998, 1999 Christopher G. Demetriou.  All rights reserved.
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pucdata.c,v 1.86 2013/09/04 17:38:37 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pucdata.c,v 1.87 2013/11/07 15:55:08 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1806,6 +1806,15 @@
            },
        },
 
+       /* Intel Core 4G (mobile) KT */
+       {   "Intel Core 4G (mobile) KT",
+           {   PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_CORE4G_M_KT, 0, 0 },
+           {   0xffff, 0xffff, 0,      0       },
+           {
+               { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+           },
+       },
+
        /* Intel EG20T UART */
        {   "Intel EG20T UART #0",
            {   PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_EG20T_UART_0, 0, 0 },



Home | Main Index | Thread Index | Old Index