diff mbox series

[v1] e1000e: Add support to 0x15F5 Device Id of Tiger Lake

Message ID 20200119100809.38869-1-vitaly.lifshits@intel.com
State Changes Requested
Delegated to: Jeff Kirsher
Headers show
Series [v1] e1000e: Add support to 0x15F5 Device Id of Tiger Lake | expand

Commit Message

Vitaly Lifshits Jan. 19, 2020, 10:08 a.m. UTC
Added support to 0x15F5 Device ID which is part of Intel Tiger Lake
Platforms. This patch follows commit:
776f5d57ee ("e1000e: Add support for Tiger Lake").

Signed-off-by: Vitaly Lifshits <vitaly.lifshits@intel.com>
---
 drivers/net/ethernet/intel/e1000e/hw.h     | 1 +
 drivers/net/ethernet/intel/e1000e/netdev.c | 1 +
 2 files changed, 2 insertions(+)

Comments

Sasha Neftin Jan. 22, 2020, 6:23 a.m. UTC | #1
On 1/19/2020 12:08, Vitaly Lifshits wrote:
> Added support to 0x15F5 Device ID which is part of Intel Tiger Lake
> Platforms. This patch follows commit:
> 776f5d57ee ("e1000e: Add support for Tiger Lake").
> 
> Signed-off-by: Vitaly Lifshits <vitaly.lifshits@intel.com>
> ---
>   drivers/net/ethernet/intel/e1000e/hw.h     | 1 +
>   drivers/net/ethernet/intel/e1000e/netdev.c | 1 +
>   2 files changed, 2 insertions(+)
> 
> diff --git a/drivers/net/ethernet/intel/e1000e/hw.h b/drivers/net/ethernet/intel/e1000e/hw.h
> index f556163481cb..b85210ef31d9 100644
> --- a/drivers/net/ethernet/intel/e1000e/hw.h
> +++ b/drivers/net/ethernet/intel/e1000e/hw.h
> @@ -97,6 +97,7 @@ struct e1000_hw;
>   #define E1000_DEV_ID_PCH_TGP_I219_LM14		0x15F9
>   #define E1000_DEV_ID_PCH_TGP_I219_V14		0x15FA
>   #define E1000_DEV_ID_PCH_TGP_I219_LM15		0x15F4
> +#define E1000_DEV_ID_PCH_TGP_I219_V15		0x15F5
>   
>   #define E1000_REVISION_4	4
>   
> diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c
> index 8797913b2702..3c3624f276d5 100644
> --- a/drivers/net/ethernet/intel/e1000e/netdev.c
> +++ b/drivers/net/ethernet/intel/e1000e/netdev.c
> @@ -7764,6 +7764,7 @@ static const struct pci_device_id e1000_pci_tbl[] = {
>   	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_LM14), board_pch_cnp },
>   	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_V14), board_pch_cnp },
>   	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_LM15), board_pch_cnp },
> +	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_V15), board_pch_cnp },
>   
>   	{ 0, 0, 0, 0, 0, 0, 0 }	/* terminate list */
>   };
> 
Acked-by: Sasha Neftin <sasha.neftin@intel.com>
Brown, Aaron F Jan. 25, 2020, 2:45 a.m. UTC | #2
> From: Intel-wired-lan <intel-wired-lan-bounces@osuosl.org> On Behalf Of
> Vitaly Lifshits
> Sent: Sunday, January 19, 2020 2:08 AM
> To: intel-wired-lan@lists.osuosl.org
> Subject: [Intel-wired-lan] [PATCH v1] e1000e: Add support to 0x15F5 Device
> Id of Tiger Lake
> 
> Added support to 0x15F5 Device ID which is part of Intel Tiger Lake
> Platforms. This patch follows commit:
> 776f5d57ee ("e1000e: Add support for Tiger Lake").
> 
> Signed-off-by: Vitaly Lifshits <vitaly.lifshits@intel.com>
> ---
>  drivers/net/ethernet/intel/e1000e/hw.h     | 1 +
>  drivers/net/ethernet/intel/e1000e/netdev.c | 1 +
>  2 files changed, 2 insertions(+)
> 
> diff --git a/drivers/net/ethernet/intel/e1000e/hw.h
> b/drivers/net/ethernet/intel/e1000e/hw.h
> index f556163481cb..b85210ef31d9 100644
> --- a/drivers/net/ethernet/intel/e1000e/hw.h
> +++ b/drivers/net/ethernet/intel/e1000e/hw.h
> @@ -97,6 +97,7 @@ struct e1000_hw;
>  #define E1000_DEV_ID_PCH_TGP_I219_LM14		0x15F9
>  #define E1000_DEV_ID_PCH_TGP_I219_V14		0x15FA
>  #define E1000_DEV_ID_PCH_TGP_I219_LM15		0x15F4
> +#define E1000_DEV_ID_PCH_TGP_I219_V15		0x15F5
<snip>

Something seems to be missing.  After building and booting to the kernel with this patch included I do not see the 15f5 device from modinfo:
u1519:[1]/usr/src/kernels/next-queue> modinfo igc|grep -i 15f5                                                          
u1519:[1]/usr/src/kernels/next-queue>
Vitaly Lifshits Jan. 25, 2020, 12:22 p.m. UTC | #3
On 1/25/2020 04:45, Brown, Aaron F wrote:
>> From: Intel-wired-lan <intel-wired-lan-bounces@osuosl.org> On Behalf Of
>> Vitaly Lifshits
>> Sent: Sunday, January 19, 2020 2:08 AM
>> To: intel-wired-lan@lists.osuosl.org
>> Subject: [Intel-wired-lan] [PATCH v1] e1000e: Add support to 0x15F5 Device
>> Id of Tiger Lake
>>
>> Added support to 0x15F5 Device ID which is part of Intel Tiger Lake
>> Platforms. This patch follows commit:
>> 776f5d57ee ("e1000e: Add support for Tiger Lake").
>>
>> Signed-off-by: Vitaly Lifshits <vitaly.lifshits@intel.com>
>> ---
>>   drivers/net/ethernet/intel/e1000e/hw.h     | 1 +
>>   drivers/net/ethernet/intel/e1000e/netdev.c | 1 +
>>   2 files changed, 2 insertions(+)
>>
>> diff --git a/drivers/net/ethernet/intel/e1000e/hw.h
>> b/drivers/net/ethernet/intel/e1000e/hw.h
>> index f556163481cb..b85210ef31d9 100644
>> --- a/drivers/net/ethernet/intel/e1000e/hw.h
>> +++ b/drivers/net/ethernet/intel/e1000e/hw.h
>> @@ -97,6 +97,7 @@ struct e1000_hw;
>>   #define E1000_DEV_ID_PCH_TGP_I219_LM14		0x15F9
>>   #define E1000_DEV_ID_PCH_TGP_I219_V14		0x15FA
>>   #define E1000_DEV_ID_PCH_TGP_I219_LM15		0x15F4
>> +#define E1000_DEV_ID_PCH_TGP_I219_V15		0x15F5
> <snip>
> 
> Something seems to be missing.  After building and booting to the kernel with this patch included I do not see the 15f5 device from modinfo:
> u1519:[1]/usr/src/kernels/next-queue> modinfo igc|grep -i 15f5
> u1519:[1]/usr/src/kernels/next-queue>
> 

If I understand your test correctly, I think you should run:
 > modinfo e1000e | grep -i 15f5

Since the patch is to e1000e module and not igc.
Brown, Aaron F Jan. 27, 2020, 9:29 p.m. UTC | #4
> From: Lifshits, Vitaly <vitaly.lifshits@intel.com>
> Sent: Saturday, January 25, 2020 4:22 AM
> To: Brown, Aaron F <aaron.f.brown@intel.com>; intel-wired-
> lan@lists.osuosl.org
> Subject: Re: [Intel-wired-lan] [PATCH v1] e1000e: Add support to 0x15F5
> Device Id of Tiger Lake
> 
> On 1/25/2020 04:45, Brown, Aaron F wrote:
> >> From: Intel-wired-lan <intel-wired-lan-bounces@osuosl.org> On Behalf
> Of
> >> Vitaly Lifshits
> >> Sent: Sunday, January 19, 2020 2:08 AM
> >> To: intel-wired-lan@lists.osuosl.org
> >> Subject: [Intel-wired-lan] [PATCH v1] e1000e: Add support to 0x15F5
> Device
> >> Id of Tiger Lake
> >>
> >> Added support to 0x15F5 Device ID which is part of Intel Tiger Lake
> >> Platforms. This patch follows commit:
> >> 776f5d57ee ("e1000e: Add support for Tiger Lake").
> >>
> >> Signed-off-by: Vitaly Lifshits <vitaly.lifshits@intel.com>
> >> ---
> >>   drivers/net/ethernet/intel/e1000e/hw.h     | 1 +
> >>   drivers/net/ethernet/intel/e1000e/netdev.c | 1 +
> >>   2 files changed, 2 insertions(+)

Tested-by: Aaron Brown <aaron.f.brown@intel.com>

> >>  <snip>
> >
> > Something seems to be missing.  After building and booting to the kernel
> with this patch included I do not see the 15f5 device from modinfo:
> > u1519:[1]/usr/src/kernels/next-queue> modinfo igc|grep -i 15f5
> > u1519:[1]/usr/src/kernels/next-queue>
> >
> 
> If I understand your test correctly, I think you should run:
>  > modinfo e1000e | grep -i 15f5
> 
> Since the patch is to e1000e module and not igc.
Yes of course, thanks.  End of a long week ://)

u1459:[1]/usr/src/kernels/next-queue> modinfo e1000e | grep -i 15f5
alias:          pci:v00008086d000015F5sv*sd*bc*sc*i*
u1459:[1]/usr/src/kernels/next-queue>
diff mbox series

Patch

diff --git a/drivers/net/ethernet/intel/e1000e/hw.h b/drivers/net/ethernet/intel/e1000e/hw.h
index f556163481cb..b85210ef31d9 100644
--- a/drivers/net/ethernet/intel/e1000e/hw.h
+++ b/drivers/net/ethernet/intel/e1000e/hw.h
@@ -97,6 +97,7 @@  struct e1000_hw;
 #define E1000_DEV_ID_PCH_TGP_I219_LM14		0x15F9
 #define E1000_DEV_ID_PCH_TGP_I219_V14		0x15FA
 #define E1000_DEV_ID_PCH_TGP_I219_LM15		0x15F4
+#define E1000_DEV_ID_PCH_TGP_I219_V15		0x15F5
 
 #define E1000_REVISION_4	4
 
diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c
index 8797913b2702..3c3624f276d5 100644
--- a/drivers/net/ethernet/intel/e1000e/netdev.c
+++ b/drivers/net/ethernet/intel/e1000e/netdev.c
@@ -7764,6 +7764,7 @@  static const struct pci_device_id e1000_pci_tbl[] = {
 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_LM14), board_pch_cnp },
 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_V14), board_pch_cnp },
 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_LM15), board_pch_cnp },
+	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_V15), board_pch_cnp },
 
 	{ 0, 0, 0, 0, 0, 0, 0 }	/* terminate list */
 };