* [patch 1/1] i2c-i801: SMBus patch for Intel Ibex Peak DeviceIDs
@ 2008-08-20 23:45 akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b
[not found] ` <200808202345.m7KNjRBv005585-AB4EexQrvXRQetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b @ 2008-08-20 23:45 UTC (permalink / raw)
To: khali-PUYAD+kWke1g9hUCZPvPmw
Cc: seth.heasley-ral2JQCrhuEAvxtiuMwx3w, i2c-GZX6beZjE8VD60Wz+7aTrA
From: Seth Heasley <seth.heasley-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Add the Intel Ibex Peak (PCH) SMBus Controller DeviceIDs.
Signed-off-by: Seth Heasley <seth.heasley-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
Signed-off-by: Andrew Morton <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
---
drivers/i2c/busses/Kconfig | 1 +
drivers/i2c/busses/i2c-i801.c | 3 +++
2 files changed, 4 insertions(+)
diff -puN drivers/i2c/busses/Kconfig~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids drivers/i2c/busses/Kconfig
--- a/drivers/i2c/busses/Kconfig~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids
+++ a/drivers/i2c/busses/Kconfig
@@ -97,6 +97,7 @@ config I2C_I801
ICH9
Tolapai
ICH10
+ PCH
This driver can also be built as a module. If so, the module
will be called i2c-i801.
diff -puN drivers/i2c/busses/i2c-i801.c~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids drivers/i2c/busses/i2c-i801.c
--- a/drivers/i2c/busses/i2c-i801.c~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids
+++ a/drivers/i2c/busses/i2c-i801.c
@@ -41,6 +41,7 @@
Tolapai 0x5032 32 hard yes yes yes
ICH10 0x3a30 32 hard yes yes yes
ICH10 0x3a60 32 hard yes yes yes
+ PCH 0x3b30 32 hard yes yes yes
Features supported by this driver:
Software PEC no
@@ -576,6 +577,7 @@ static struct pci_device_id i801_ids[] =
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TOLAPAI_1) },
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
+ { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PCH_2) },
{ 0, }
};
@@ -599,6 +601,7 @@ static int __devinit i801_probe(struct p
case PCI_DEVICE_ID_INTEL_TOLAPAI_1:
case PCI_DEVICE_ID_INTEL_ICH10_4:
case PCI_DEVICE_ID_INTEL_ICH10_5:
+ case PCI_DEVICE_ID_INTEL_PCH_2:
i801_features |= FEATURE_I2C_BLOCK_READ;
/* fall through */
case PCI_DEVICE_ID_INTEL_82801DB_3:
_
_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c
^ permalink raw reply [flat|nested] 4+ messages in thread[parent not found: <200808202345.m7KNjRBv005585-AB4EexQrvXRQetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>]
* Re: [patch 1/1] i2c-i801: SMBus patch for Intel Ibex Peak DeviceIDs [not found] ` <200808202345.m7KNjRBv005585-AB4EexQrvXRQetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org> @ 2008-08-21 6:44 ` Jean Delvare [not found] ` <20080821084446.6cdb11d3-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Jean Delvare @ 2008-08-21 6:44 UTC (permalink / raw) To: akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b Cc: seth.heasley-ral2JQCrhuEAvxtiuMwx3w, i2c-GZX6beZjE8VD60Wz+7aTrA Hi Andrew, On Wed, 20 Aug 2008 16:45:26 -0700, akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org wrote: > From: Seth Heasley <seth.heasley-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > Add the Intel Ibex Peak (PCH) SMBus Controller DeviceIDs. > > Signed-off-by: Seth Heasley <seth.heasley-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > Cc: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org> > Signed-off-by: Andrew Morton <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> > --- > > drivers/i2c/busses/Kconfig | 1 + > drivers/i2c/busses/i2c-i801.c | 3 +++ > 2 files changed, 4 insertions(+) I have this patch in my tree already, but I can't export it, because it depends on a pci_ids.h patch which is not yet in Linus' tree. > > diff -puN drivers/i2c/busses/Kconfig~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids drivers/i2c/busses/Kconfig > --- a/drivers/i2c/busses/Kconfig~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids > +++ a/drivers/i2c/busses/Kconfig > @@ -97,6 +97,7 @@ config I2C_I801 > ICH9 > Tolapai > ICH10 > + PCH > > This driver can also be built as a module. If so, the module > will be called i2c-i801. > diff -puN drivers/i2c/busses/i2c-i801.c~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids drivers/i2c/busses/i2c-i801.c > --- a/drivers/i2c/busses/i2c-i801.c~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids > +++ a/drivers/i2c/busses/i2c-i801.c > @@ -41,6 +41,7 @@ > Tolapai 0x5032 32 hard yes yes yes > ICH10 0x3a30 32 hard yes yes yes > ICH10 0x3a60 32 hard yes yes yes > + PCH 0x3b30 32 hard yes yes yes > > Features supported by this driver: > Software PEC no > @@ -576,6 +577,7 @@ static struct pci_device_id i801_ids[] = > { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TOLAPAI_1) }, > { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) }, > { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) }, > + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PCH_2) }, > { 0, } > }; > > @@ -599,6 +601,7 @@ static int __devinit i801_probe(struct p > case PCI_DEVICE_ID_INTEL_TOLAPAI_1: > case PCI_DEVICE_ID_INTEL_ICH10_4: > case PCI_DEVICE_ID_INTEL_ICH10_5: > + case PCI_DEVICE_ID_INTEL_PCH_2: > i801_features |= FEATURE_I2C_BLOCK_READ; > /* fall through */ > case PCI_DEVICE_ID_INTEL_82801DB_3: > _ -- Jean Delvare _______________________________________________ i2c mailing list i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org http://lists.lm-sensors.org/mailman/listinfo/i2c ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <20080821084446.6cdb11d3-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>]
* Re: [patch 1/1] i2c-i801: SMBus patch for Intel Ibex Peak DeviceIDs [not found] ` <20080821084446.6cdb11d3-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org> @ 2008-08-21 6:55 ` Andrew Morton [not found] ` <20080820235541.da8f690c.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Andrew Morton @ 2008-08-21 6:55 UTC (permalink / raw) To: Jean Delvare Cc: seth.heasley-ral2JQCrhuEAvxtiuMwx3w, i2c-GZX6beZjE8VD60Wz+7aTrA On Thu, 21 Aug 2008 08:44:46 +0200 Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org> wrote: > Hi Andrew, > > On Wed, 20 Aug 2008 16:45:26 -0700, akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org wrote: > > From: Seth Heasley <seth.heasley-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > > > Add the Intel Ibex Peak (PCH) SMBus Controller DeviceIDs. > > > > Signed-off-by: Seth Heasley <seth.heasley-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > Cc: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org> > > Signed-off-by: Andrew Morton <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> > > --- > > > > drivers/i2c/busses/Kconfig | 1 + > > drivers/i2c/busses/i2c-i801.c | 3 +++ > > 2 files changed, 4 insertions(+) > > I have this patch in my tree already, but I can't export it, because it > depends on a pci_ids.h patch which is not yet in Linus' tree. Sigh. > > > > diff -puN drivers/i2c/busses/Kconfig~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids drivers/i2c/busses/Kconfig > > --- a/drivers/i2c/busses/Kconfig~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids > > +++ a/drivers/i2c/busses/Kconfig > > @@ -97,6 +97,7 @@ config I2C_I801 > > ICH9 > > Tolapai > > ICH10 > > + PCH > > > > This driver can also be built as a module. If so, the module > > will be called i2c-i801. > > diff -puN drivers/i2c/busses/i2c-i801.c~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids drivers/i2c/busses/i2c-i801.c > > --- a/drivers/i2c/busses/i2c-i801.c~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids > > +++ a/drivers/i2c/busses/i2c-i801.c > > @@ -41,6 +41,7 @@ > > Tolapai 0x5032 32 hard yes yes yes > > ICH10 0x3a30 32 hard yes yes yes > > ICH10 0x3a60 32 hard yes yes yes > > + PCH 0x3b30 32 hard yes yes yes > > > > Features supported by this driver: > > Software PEC no > > @@ -576,6 +577,7 @@ static struct pci_device_id i801_ids[] = > > { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TOLAPAI_1) }, > > { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) }, > > { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) }, > > + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PCH_2) }, > > { 0, } > > }; > > > > @@ -599,6 +601,7 @@ static int __devinit i801_probe(struct p > > case PCI_DEVICE_ID_INTEL_TOLAPAI_1: > > case PCI_DEVICE_ID_INTEL_ICH10_4: > > case PCI_DEVICE_ID_INTEL_ICH10_5: > > + case PCI_DEVICE_ID_INTEL_PCH_2: > > i801_features |= FEATURE_I2C_BLOCK_READ; > > /* fall through */ > > case PCI_DEVICE_ID_INTEL_82801DB_3: > > _ Are you sure? PCI_DEVICE_ID_INTEL_PCH_2 is there in 2.6.27-rc4. _______________________________________________ i2c mailing list i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org http://lists.lm-sensors.org/mailman/listinfo/i2c ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <20080820235541.da8f690c.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>]
* Re: [patch 1/1] i2c-i801: SMBus patch for Intel Ibex Peak DeviceIDs [not found] ` <20080820235541.da8f690c.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> @ 2008-08-21 7:05 ` Jean Delvare 0 siblings, 0 replies; 4+ messages in thread From: Jean Delvare @ 2008-08-21 7:05 UTC (permalink / raw) To: Andrew Morton Cc: seth.heasley-ral2JQCrhuEAvxtiuMwx3w, i2c-GZX6beZjE8VD60Wz+7aTrA On Wed, 20 Aug 2008 23:55:41 -0700, Andrew Morton wrote: > On Thu, 21 Aug 2008 08:44:46 +0200 Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org> wrote: > > > Hi Andrew, > > > > On Wed, 20 Aug 2008 16:45:26 -0700, akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org wrote: > > > From: Seth Heasley <seth.heasley-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > > > > > Add the Intel Ibex Peak (PCH) SMBus Controller DeviceIDs. > > > > > > Signed-off-by: Seth Heasley <seth.heasley-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > > Cc: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org> > > > Signed-off-by: Andrew Morton <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> > > > --- > > > > > > drivers/i2c/busses/Kconfig | 1 + > > > drivers/i2c/busses/i2c-i801.c | 3 +++ > > > 2 files changed, 4 insertions(+) > > > > I have this patch in my tree already, but I can't export it, because it > > depends on a pci_ids.h patch which is not yet in Linus' tree. > > Sigh. > > > > > > > diff -puN drivers/i2c/busses/Kconfig~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids drivers/i2c/busses/Kconfig > > > --- a/drivers/i2c/busses/Kconfig~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids > > > +++ a/drivers/i2c/busses/Kconfig > > > @@ -97,6 +97,7 @@ config I2C_I801 > > > ICH9 > > > Tolapai > > > ICH10 > > > + PCH > > > > > > This driver can also be built as a module. If so, the module > > > will be called i2c-i801. > > > diff -puN drivers/i2c/busses/i2c-i801.c~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids drivers/i2c/busses/i2c-i801.c > > > --- a/drivers/i2c/busses/i2c-i801.c~i2c-i801-smbus-patch-for-intel-ibex-peak-deviceids > > > +++ a/drivers/i2c/busses/i2c-i801.c > > > @@ -41,6 +41,7 @@ > > > Tolapai 0x5032 32 hard yes yes yes > > > ICH10 0x3a30 32 hard yes yes yes > > > ICH10 0x3a60 32 hard yes yes yes > > > + PCH 0x3b30 32 hard yes yes yes > > > > > > Features supported by this driver: > > > Software PEC no > > > @@ -576,6 +577,7 @@ static struct pci_device_id i801_ids[] = > > > { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TOLAPAI_1) }, > > > { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) }, > > > { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) }, > > > + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PCH_2) }, > > > { 0, } > > > }; > > > > > > @@ -599,6 +601,7 @@ static int __devinit i801_probe(struct p > > > case PCI_DEVICE_ID_INTEL_TOLAPAI_1: > > > case PCI_DEVICE_ID_INTEL_ICH10_4: > > > case PCI_DEVICE_ID_INTEL_ICH10_5: > > > + case PCI_DEVICE_ID_INTEL_PCH_2: > > > i801_features |= FEATURE_I2C_BLOCK_READ; > > > /* fall through */ > > > case PCI_DEVICE_ID_INTEL_82801DB_3: > > > _ > > Are you sure? PCI_DEVICE_ID_INTEL_PCH_2 is there in 2.6.27-rc4. Ah, must have happened overnight, it wasn't there yesterday. I'll resync my tree now. -- Jean Delvare _______________________________________________ i2c mailing list i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org http://lists.lm-sensors.org/mailman/listinfo/i2c ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-08-21 7:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-20 23:45 [patch 1/1] i2c-i801: SMBus patch for Intel Ibex Peak DeviceIDs akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b
[not found] ` <200808202345.m7KNjRBv005585-AB4EexQrvXRQetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
2008-08-21 6:44 ` Jean Delvare
[not found] ` <20080821084446.6cdb11d3-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
2008-08-21 6:55 ` Andrew Morton
[not found] ` <20080820235541.da8f690c.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
2008-08-21 7:05 ` Jean Delvare
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.