From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <9front-bounces@9front.inri.net> X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.4 Received: from 9front.inri.net (9front.inri.net [168.235.81.73]) by inbox.vuxu.org (Postfix) with ESMTP id 88C2021FB2 for ; Sun, 6 Oct 2024 16:09:44 +0200 (CEST) Received: from duke.felloff.net ([216.126.196.34]) by 9front; Sun Oct 6 10:07:19 -0400 2024 Message-ID: <05988329CEC3D0084CA0B97A8BCD02E5@felloff.net> Date: Sun, 06 Oct 2024 16:07:09 +0200 From: cinap_lenrek@felloff.net To: 9front@9front.org In-Reply-To: <20240925192329.5619799.11468.175@loveh.art> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: generic distributed event SVG interface-scale hardware dependency wrapper Subject: Re: [9front] Request to add PCIe ID 10ec:8161 to ether8169.c driver Reply-To: 9front@9front.org Precedence: bulk what did you do? something like this? can you get at least pci(1) output? diff 40177b86bf5108016fc3a275096e44dc4ada5e9c uncommitted --- a/sys/src/9/pc/ether8169.c +++ b/sys/src/9/pc/ether8169.c @@ -264,6 +264,7 @@ Rtl8169c = (0x0116<<16)|0x16EC, /* RTL8169C+ (USR997902) */ Rtl8169sc = (0x8167<<16)|0x10EC, /* RTL8169SC */ Rtl8168b = (0x8168<<16)|0x10EC, /* RTL8168B: pci-e */ + Rtl8111b = (0x8161<<16)|0x10EC, /* RTL8111/8168/8411: pci-e */ Rtl8169 = (0x8169<<16)|0x10EC, /* RTL8169 */ }; @@ -1151,6 +1152,7 @@ continue; case Rtl8100e: /* RTL810[01]E ? */ case Rtl8168b: /* RTL8168B */ + case Rtl8111b: /* RTL8111/8168/8411 */ pcie = 1; break; case Rtl8169c: /* RTL8169C */ -- cinap