mirror of
https://github.com/gnif/vendor-reset.git
synced 2026-03-28 21:22:43 +01:00
restructure and added stubs for vega10, vega20 and navi10
This commit is contained in:
59
src/device-db.h
Normal file
59
src/device-db.h
Normal file
@@ -0,0 +1,59 @@
|
||||
/*
|
||||
Vendor Reset - Vendor Specific Reset
|
||||
Copyright (C) 2020 Geoffrey McRae <geoff@hostfission.com>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free Software
|
||||
Foundation; either version 2 of the License, or (at your option) any later
|
||||
version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with
|
||||
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
||||
Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "amd/amd.h"
|
||||
|
||||
static struct vendor_reset_device vendor_reset_devices[] =
|
||||
{
|
||||
/* AMD Vega 10 */
|
||||
{ PCI_VENDOR_ID_ATI, 0x6860, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x6861, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x6862, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x6863, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x6864, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x6867, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x6868, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x6869, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x686a, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x686b, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x686c, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x686d, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x686e, &amd_vega10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x686f, &amd_vega10_ops },
|
||||
|
||||
/* AMD Vega 20 */
|
||||
{ PCI_VENDOR_ID_ATI, 0x66a0, &amd_vega20_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x66a1, &amd_vega20_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x66a2, &amd_vega20_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x66a3, &amd_vega20_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x66a4, &amd_vega20_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x66a7, &amd_vega20_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x66af, &amd_vega20_ops },
|
||||
|
||||
/* AMD Navi 10 */
|
||||
{ PCI_VENDOR_ID_ATI, 0x7310, &amd_navi10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x7312, &amd_navi10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x7318, &amd_navi10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x7319, &amd_navi10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x731a, &amd_navi10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x731b, &amd_navi10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x731e, &amd_navi10_ops },
|
||||
{ PCI_VENDOR_ID_ATI, 0x731f, &amd_navi10_ops },
|
||||
|
||||
{ 0 }
|
||||
};
|
||||
Reference in New Issue
Block a user