301fedea197bbe26bd9a76157ef496d3492d8d83
[mesa.git] / src / gallium / drivers / i915simple / i915_strings.c
1 /**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include "i915_context.h"
29 #include "i915_reg.h"
30
31
32 static const char *i915_get_vendor( struct pipe_context *pipe )
33 {
34 return "Tungsten Graphics, Inc.";
35 }
36
37
38 static const char *i915_get_name( struct pipe_context *pipe )
39 {
40 static char buffer[128];
41 const char *chipset;
42
43 switch (i915_context(pipe)->pci_id) {
44 case PCI_CHIP_I915_G:
45 chipset = "915G";
46 break;
47 case PCI_CHIP_I915_GM:
48 chipset = "915GM";
49 break;
50 case PCI_CHIP_I945_G:
51 chipset = "945G";
52 break;
53 case PCI_CHIP_I945_GM:
54 chipset = "945GM";
55 break;
56 case PCI_CHIP_I945_GME:
57 chipset = "945GME";
58 break;
59 case PCI_CHIP_G33_G:
60 chipset = "G33";
61 break;
62 case PCI_CHIP_Q35_G:
63 chipset = "Q35";
64 break;
65 case PCI_CHIP_Q33_G:
66 chipset = "Q33";
67 break;
68 default:
69 chipset = "unknown";
70 break;
71 }
72
73 sprintf(buffer, "i915 (chipset: %s)", chipset);
74 return buffer;
75 }
76
77
78 void
79 i915_init_string_functions(struct i915_context *i915)
80 {
81 i915->pipe.get_name = i915_get_name;
82 i915->pipe.get_vendor = i915_get_vendor;
83 }