430N/A/*
2362N/A * Copyright (c) 2007, 2008, Oracle and/or its affiliates. All rights reserved.
430N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
430N/A *
430N/A * This code is free software; you can redistribute it and/or modify it
430N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
430N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
430N/A *
430N/A * This code is distributed in the hope that it will be useful, but WITHOUT
430N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
430N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
430N/A * version 2 for more details (a copy is included in the LICENSE file that
430N/A * accompanied this code).
430N/A *
430N/A * You should have received a copy of the GNU General Public License version
430N/A * 2 along with this work; if not, write to the Free Software Foundation,
430N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
430N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
430N/A */
430N/A
430N/A#ifndef D3DBADHARDWARE_H
430N/A#define D3DBADHARDWARE_H
430N/A
430N/A#include "D3DPipeline.h"
430N/A#include "D3DPipelineManager.h"
430N/A
430N/Atypedef struct ADAPTER_INFO {
430N/A DWORD VendorId;
430N/A DWORD DeviceId;
430N/A LONGLONG DriverVersion; // minimum driver version to pass, or NO_VERSION
430N/A USHORT OsInfo; // OSes where the DriverVersion is relevant or, OS_ALL
430N/A} ADAPTER_INFO;
430N/A
430N/A// this DeviceId means that all vendor boards are to be excluded
430N/A#define ALL_DEVICEIDS (0xffffffff)
430N/A
430N/A#define D_VERSION(H1, H2, L1, L2) \
430N/A (((LONGLONG)((H1 << 16) | H2) << 32) | ((L1 << 16) | (L2)))
430N/A
430N/A// this driver version is used to pass the driver version check
430N/A// as it is always greater than any driver version
430N/A#define MAX_VERSION D_VERSION(0x7fff, 0x7fff, 0x7fff, 0x7fff)
430N/A// this DriverVersion means that the version of the driver doesn't matter,
430N/A// all versions must fail ("there's no version of the driver that passes")
430N/A#define NO_VERSION D_VERSION(0xffff, 0xffff, 0xffff, 0xffff)
430N/A
430N/Astatic const ADAPTER_INFO badHardware[] = {
430N/A
430N/A // any Intel chip
430N/A // Reason: workaround for 6620073, 6612195, 6620073
430N/A { 0x8086, ALL_DEVICEIDS, NO_VERSION, OS_ALL },
430N/A
430N/A // ATI Mobility Radeon X1600, X1400, X1450, X1300, X1350
430N/A // Reason: workaround for 6613066, 6687166
430N/A // X1300 (four sub ids)
430N/A { 0x1002, 0x714A, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x714A, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A { 0x1002, 0x7149, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x7149, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A { 0x1002, 0x714B, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x714B, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A { 0x1002, 0x714C, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x714C, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A // X1350 (three sub ids)
430N/A { 0x1002, 0x718B, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x718B, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A { 0x1002, 0x718C, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x718C, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A { 0x1002, 0x7196, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x7196, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A // X1400
430N/A { 0x1002, 0x7145, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x7145, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A // X1450 (two sub ids)
430N/A { 0x1002, 0x7186, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x7186, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A { 0x1002, 0x718D, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x718D, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A // X1600
430N/A { 0x1002, 0x71C5, D_VERSION(6,14,10,6706), OS_WINXP },
430N/A { 0x1002, 0x71C5, D_VERSION(7,14,10,0567), OS_VISTA },
430N/A
777N/A // ATI Mobility Radeon 9700
777N/A // Reason: workaround for 6773336
777N/A { 0x1002, 0x4E50, D_VERSION(6,14,10,6561), OS_WINXP },
777N/A
754N/A // Nvidia FX 5200
754N/A // Reason: workaround for 6717988
754N/A { 0x10DE, 0x0322, D_VERSION(6,14,11,6921), OS_WINXP },
754N/A
754N/A // Nvidia FX Go5600, Go5700
754N/A // Reason: workaround for 6714579
754N/A { 0x10DE, 0x031A, D_VERSION(6,14,11,6921), OS_WINXP },
754N/A { 0x10DE, 0x0347, D_VERSION(6,14,11,6921), OS_WINXP },
754N/A
430N/A // Nvidia Quadro NVS 110M
430N/A // Reason: workaround for 6629891
430N/A { 0x10DE, 0x01D7, D_VERSION(6,14,11,5665), OS_WINXP },
430N/A
430N/A // Nvidia Quadro PCI-E series
430N/A // Reason: workaround for 6653860
430N/A { 0x10DE, 0x00FD, D_VERSION(6,14,10,6573), OS_WINXP },
430N/A
777N/A // Nvidia Quadro FX family
777N/A // Reason: workaround for 6772137
777N/A { 0x10DE, 0x00F8, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x009D, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x029C, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x029D, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x029E, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x029F, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x01DE, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x039E, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x019D, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x019E, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x040A, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x040E, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x040F, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x061A, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x06F9, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x05FD, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x05FE, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x004E, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x00CD, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x00CE, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x014C, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x014D, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A { 0x10DE, 0x014E, D_VERSION(6,14,10,9381), OS_WINXP },
777N/A
430N/A // Nvidia GeForce 6200 TurboCache(TM)
430N/A // Reason: workaround for 6588384
430N/A { 0x10DE, 0x0161, NO_VERSION, OS_VISTA },
430N/A
430N/A // any Matrox board
430N/A // Reason: there are no known Matrox boards with proper Direct3D support
430N/A { 0x102B, ALL_DEVICEIDS, NO_VERSION, OS_ALL },
430N/A
430N/A // any SiS board
430N/A // Reason: there aren't many PS2.0-capable SiS boards and they weren't
430N/A // tested
430N/A { 0x1039, ALL_DEVICEIDS, NO_VERSION, OS_ALL },
430N/A
430N/A // any S3 board
430N/A // Reason: no available S3 Chrome (the only S3 boards with PS2.0 support)
430N/A // for testing
430N/A { 0x5333, ALL_DEVICEIDS, NO_VERSION, OS_ALL },
430N/A
430N/A // any S3 board (in VIA motherboards)
430N/A // Reason: These are S3 chips in VIA motherboards
430N/A { 0x1106, ALL_DEVICEIDS, NO_VERSION, OS_ALL },
430N/A
430N/A // last record must be empty
430N/A { 0x0000, 0x0000, NO_VERSION, OS_ALL }
430N/A};
430N/A
430N/A#endif // D3DBADHARDWARE_H