From owner-freebsd-hackers@freebsd.org Mon Apr 30 05:12:21 2018 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44173FC377A for ; Mon, 30 Apr 2018 05:12:21 +0000 (UTC) (envelope-from lakhanshiva@gmail.com) Received: from mail-ot0-x241.google.com (mail-ot0-x241.google.com [IPv6:2607:f8b0:4003:c0f::241]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CEEE57CCE0 for ; Mon, 30 Apr 2018 05:12:20 +0000 (UTC) (envelope-from lakhanshiva@gmail.com) Received: by mail-ot0-x241.google.com with SMTP id w4-v6so8245714ote.12 for ; Sun, 29 Apr 2018 22:12:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=XkzDXOwLbmkIBNltqJg6OowjyVmQ9v5ZS9SgjIbvyUY=; b=SLwxisXjTuMQibAN0u84Mt+JJc2Q8ujrILqNl1Ag5TqwNmlJSbeKZKMIJUNGkqwvKh F7xThSIknXpzUJmdqrAFuOGfsHL7MyMoJB0qiD+ke8qJTW5i3pc1cXfma3Plf4B4FpZR 6cKRzBMIHnYuVqNWbVH3WTf+9s9M15rWgTgqDFfbB2KLsn03tseUtk2yoegT8qMxxffS aairP4knUSWzOFVP2PSTJKuHy8fhvTu2w80vi514VPvuvqIFjA/mDADfldgVB0TXCt3v qoW5HwCywWNjBCh2U9MoRGXMjpuGT4Ocg6NiE4tXU1BWAayfXKjfWssArsxgw6S6VJ5L tuVQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=XkzDXOwLbmkIBNltqJg6OowjyVmQ9v5ZS9SgjIbvyUY=; b=YzIZJhM9EyJw7BMNfgsXCOp7avrpr60j4dsjR6WKdfgZz1lqITOJr74T131kG/84tf 9OdmiGQtJZ2hbxOzo4hJJfMsAMA7RAJR99HdIt5knvrVM7zgv+fsgugcLDdPTCWEdGku sEWyHkdVub5R3fDwwSzS17ck3h7z7mw8s92z+VVjiQW1zPHPDEdKDf1ViTEILLN0rzdO J36K0aABmiC6JRB4RbqQO664S9U3qleA7UNy9R1VM+5qpvCF33GxVY8pSe8r+g0jpXl6 IpvRWGouoNc9KAPlm341QRWa1FsAIIhy+O1nTvIuZ5TM5O8f8msxRJpbuYp94O3sIEZ7 quUQ== X-Gm-Message-State: ALQs6tAKN0G0ykIcPPr9otU+URSG9IiAmMLx/Akkbj9M6bx8UAh3wSvC Y8LEalBeu/qZFFSVparTe9wAzPorlruAf8/5EZCZjw== X-Google-Smtp-Source: AB8JxZp3ur0AM8zjOiDuu1ZHO5Rq0gx9f3KXabdLQMOgU2LNkS7rGH3d/SrnRGSkh3OAgaqF7FZKokYwK3DHuq0TjO4= X-Received: by 2002:a9d:34fc:: with SMTP id t57-v6mr7880594otd.342.1525065139953; Sun, 29 Apr 2018 22:12:19 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a9d:44ad:0:0:0:0:0 with HTTP; Sun, 29 Apr 2018 22:12:19 -0700 (PDT) In-Reply-To: References: From: Lakhan Shiva Date: Mon, 30 Apr 2018 10:42:19 +0530 Message-ID: Subject: Re: Convert PCI drivers to be table driven To: freebsd-hackers@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Apr 2018 05:12:21 -0000 https://docs.google.com/document/d/1bB_2Hgadg-3CEgashcM85-MzIOqRXT9wIEEfAstbPlU/edit?usp=sharing I would like to know if you have any feedback regarding this project - any helpful reviews or ideas. Thanks, Lakhan Kamireddy On Mon, Apr 30, 2018 at 10:41 AM, Lakhan Shiva wrote: > Hi All, > > My name is Lakhan Kamireddy. I have been accepted to GSoC for the project > to Convert PCI drivers attachments to be table driven. We currently have a > devmatch infrastructure that gives us a way to match up hardware with > kernel modules. But, for devmatch to use them, they need to have their > device ID scans done via a table. The table needs to be decorated with > PNP_INFO tag. > Here we also need to automate testing of this drivers to make sure they > work somehow. > > You can find my document below - >