gm100.c 3.3 KB
Newer Older
B
Ben Skeggs 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright 2012 Red Hat Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors: Ben Skeggs
 */
24
#include "priv.h"
B
Ben Skeggs 已提交
25 26

int
27
gm100_identify(struct nvkm_device *device)
B
Ben Skeggs 已提交
28 29 30
{
	switch (device->chipset) {
	case 0x117:
31 32

#if 0
B
Ben Skeggs 已提交
33
#endif
34
		device->oclass[NVDEV_ENGINE_DMAOBJ ] =  gf110_dmaeng_oclass;
35
		device->oclass[NVDEV_ENGINE_FIFO   ] =  gk208_fifo_oclass;
36
		device->oclass[NVDEV_ENGINE_SW     ] =  gf100_sw_oclass;
37
		device->oclass[NVDEV_ENGINE_GR     ] =  gm107_gr_oclass;
B
Ben Skeggs 已提交
38
		device->oclass[NVDEV_ENGINE_DISP   ] =  gm107_disp_oclass;
39
		device->oclass[NVDEV_ENGINE_CE0    ] = &gk104_ce0_oclass;
B
Ben Skeggs 已提交
40
#if 0
41
		device->oclass[NVDEV_ENGINE_CE1    ] = &gk104_ce1_oclass;
B
Ben Skeggs 已提交
42
#endif
43
		device->oclass[NVDEV_ENGINE_CE2    ] = &gk104_ce2_oclass;
B
Ben Skeggs 已提交
44
#if 0
B
Ben Skeggs 已提交
45 46 47
#endif
		break;
	case 0x124:
48 49 50 51 52 53 54
#if 0
		/* looks to be some non-trivial changes */
		/* priv ring says no to 0x10eb14 writes */
#endif
#if 0
#endif
		device->oclass[NVDEV_ENGINE_DMAOBJ ] =  gf110_dmaeng_oclass;
55
		device->oclass[NVDEV_ENGINE_FIFO   ] =  gm204_fifo_oclass;
56
		device->oclass[NVDEV_ENGINE_SW     ] =  gf100_sw_oclass;
57
		device->oclass[NVDEV_ENGINE_GR     ] =  gm204_gr_oclass;
58 59 60 61
		device->oclass[NVDEV_ENGINE_DISP   ] =  gm204_disp_oclass;
		device->oclass[NVDEV_ENGINE_CE0    ] = &gm204_ce0_oclass;
		device->oclass[NVDEV_ENGINE_CE1    ] = &gm204_ce1_oclass;
		device->oclass[NVDEV_ENGINE_CE2    ] = &gm204_ce2_oclass;
62
#if 0
63 64 65
#endif
		break;
	case 0x126:
B
Ben Skeggs 已提交
66 67 68 69 70 71
#if 0
		/* looks to be some non-trivial changes */
		/* priv ring says no to 0x10eb14 writes */
#endif
#if 0
#endif
72
		device->oclass[NVDEV_ENGINE_DMAOBJ ] =  gf110_dmaeng_oclass;
73
		device->oclass[NVDEV_ENGINE_FIFO   ] =  gm204_fifo_oclass;
74
		device->oclass[NVDEV_ENGINE_SW     ] =  gf100_sw_oclass;
75
		device->oclass[NVDEV_ENGINE_GR     ] =  gm206_gr_oclass;
B
Ben Skeggs 已提交
76
		device->oclass[NVDEV_ENGINE_DISP   ] =  gm204_disp_oclass;
77 78 79
		device->oclass[NVDEV_ENGINE_CE0    ] = &gm204_ce0_oclass;
		device->oclass[NVDEV_ENGINE_CE1    ] = &gm204_ce1_oclass;
		device->oclass[NVDEV_ENGINE_CE2    ] = &gm204_ce2_oclass;
80
#if 0
B
Ben Skeggs 已提交
81 82
#endif
		break;
83 84 85 86 87 88 89 90
	case 0x12b:

		device->oclass[NVDEV_ENGINE_DMAOBJ ] =  gf110_dmaeng_oclass;
		device->oclass[NVDEV_ENGINE_FIFO   ] =  gm20b_fifo_oclass;
		device->oclass[NVDEV_ENGINE_SW     ] =  gf100_sw_oclass;
		device->oclass[NVDEV_ENGINE_GR     ] =  gm20b_gr_oclass;
		device->oclass[NVDEV_ENGINE_CE2    ] = &gm204_ce2_oclass;
		break;
B
Ben Skeggs 已提交
91 92 93 94 95 96
	default:
		return -EINVAL;
	}

	return 0;
}