From owner-freebsd-hackers@freebsd.org Mon Apr 30 05:11:18 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 E643AFC3592 for ; Mon, 30 Apr 2018 05:11:17 +0000 (UTC) (envelope-from lakhanshiva@gmail.com) Received: from mail-ot0-x22b.google.com (mail-ot0-x22b.google.com [IPv6:2607:f8b0:4003:c0f::22b]) (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 760CE7C9CC for ; Mon, 30 Apr 2018 05:11:17 +0000 (UTC) (envelope-from lakhanshiva@gmail.com) Received: by mail-ot0-x22b.google.com with SMTP id i5-v6so8264513oth.1 for ; Sun, 29 Apr 2018 22:11:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=zpeIX2JwTTFneYrpy0LIjiEa9JEeKq1tkE6rY+t9g20=; b=dcgRJ/mEvsBCeYEWbAhP8gvelLfNtpE8fRsXB1AJWIIakrFtWSrNEUkHL5DeUwCoI+ c+c8frSaDssX3UEb6ejN6k3JRoF/+6Pomg5zj1jSTGdKknZB9C6w8wzklRLjmlHLq32G tiiBG6+w8vT/WCjcmIB2m64TPoN+Do3zABvpRlWq2aCocM3sAMNr5CUHVC8NwqTyC78b 1lPfJoz22FFiVdMfDBAJfuUmsBJy93D98qQvC28cbktkBDx60P1Zy518VoJ9LfA/W7Xb 7TgnZDqGkmhrEAj9pn2swWZqx1NOwRPu06kQ6U/C4QgfnhF9ZaZ1y3SGyPR3US5lOJNI tnqw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=zpeIX2JwTTFneYrpy0LIjiEa9JEeKq1tkE6rY+t9g20=; b=g8EfIyAvNwahVP9DPSvi25FKTE7IGvRRjwd5oJDzKlDdU9f9m7svVmvxoOZxLe2lhm gdUaoCisdp1Zt5YJpYY690dwzT9nC0UvBClUoR6Wg2LeoH7a4EupPVLVGgkrENG4u9S2 2X4xBIuP1ygqujyKbnRS4ejvwtXJ4SXca/615PhSih5GFZSOS1XGYk1O6eJzZ2YNwClh xYSfT5hKAx8cr0sLLSF58rmVSA9bKVCyEYdz/x7Bh9cwgrsj5GWhTFZExFoPwsimhz58 o7NaqMrhiswJN1dJw8oyIFDsX5ticK5lC2LOw2uUuQ9XSakI1xezhczYxxfzSe9m2Mel 7cMg== X-Gm-Message-State: ALQs6tCnxUm82wy8n3Q+bu4xDsh26F9hxUHuR1LjXXoqnWoXq2mra8rK itfD3xYMij/UGJJ3uwollmjPSRyooeQAj4a6NG0= X-Google-Smtp-Source: AB8JxZqYlyzu4MfW7Tynd3jmvH3H8O14DQt+Ua89IDiRkYEO5l7a8F2fEg99dAFho7tPS8ozfaE8EbWi4urF64DTogE= X-Received: by 2002:a9d:5a17:: with SMTP id v23-v6mr4493356oth.387.1525065076482; Sun, 29 Apr 2018 22:11:16 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a9d:44ad:0:0:0:0:0 with HTTP; Sun, 29 Apr 2018 22:11:15 -0700 (PDT) From: Lakhan Shiva Date: Mon, 30 Apr 2018 10:41:15 +0530 Message-ID: Subject: 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:11:18 -0000 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 -