gm100.c 6.9 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
		device->oclass[NVDEV_SUBDEV_GPIO   ] =  gk104_gpio_oclass;
32
		device->oclass[NVDEV_SUBDEV_I2C    ] =  gf110_i2c_oclass;
33
		device->oclass[NVDEV_SUBDEV_FUSE   ] = &gm107_fuse_oclass;
34
		device->oclass[NVDEV_SUBDEV_THERM  ] = &gm107_therm_oclass;
B
Ben Skeggs 已提交
35
		device->oclass[NVDEV_SUBDEV_MXM    ] = &nv50_mxm_oclass;
36
		device->oclass[NVDEV_SUBDEV_MC     ] =  gk20a_mc_oclass;
B
Ben Skeggs 已提交
37 38
		device->oclass[NVDEV_SUBDEV_TIMER  ] = &gk20a_timer_oclass;
		device->oclass[NVDEV_SUBDEV_FB     ] =  gm107_fb_oclass;
39
		device->oclass[NVDEV_SUBDEV_LTC    ] =  gm107_ltc_oclass;
40
		device->oclass[NVDEV_SUBDEV_IBUS   ] = &gk104_ibus_oclass;
B
Ben Skeggs 已提交
41
		device->oclass[NVDEV_SUBDEV_INSTMEM] =  nv50_instmem_oclass;
42
		device->oclass[NVDEV_SUBDEV_MMU    ] = &gf100_mmu_oclass;
43
		device->oclass[NVDEV_SUBDEV_PMU    ] =  gk208_pmu_oclass;
44 45

#if 0
B
Ben Skeggs 已提交
46 47
		device->oclass[NVDEV_SUBDEV_VOLT   ] = &nv40_volt_oclass;
#endif
48
		device->oclass[NVDEV_ENGINE_DMAOBJ ] =  gf110_dmaeng_oclass;
49
		device->oclass[NVDEV_ENGINE_FIFO   ] =  gk208_fifo_oclass;
50
		device->oclass[NVDEV_ENGINE_SW     ] =  gf100_sw_oclass;
51
		device->oclass[NVDEV_ENGINE_GR     ] =  gm107_gr_oclass;
B
Ben Skeggs 已提交
52
		device->oclass[NVDEV_ENGINE_DISP   ] =  gm107_disp_oclass;
53
		device->oclass[NVDEV_ENGINE_CE0    ] = &gk104_ce0_oclass;
B
Ben Skeggs 已提交
54
#if 0
55
		device->oclass[NVDEV_ENGINE_CE1    ] = &gk104_ce1_oclass;
B
Ben Skeggs 已提交
56
#endif
57
		device->oclass[NVDEV_ENGINE_CE2    ] = &gk104_ce2_oclass;
B
Ben Skeggs 已提交
58
#if 0
59
		device->oclass[NVDEV_ENGINE_MSVLD  ] = &gk104_msvld_oclass;
60
		device->oclass[NVDEV_ENGINE_MSPDEC ] = &gk104_mspdec_oclass;
61
		device->oclass[NVDEV_ENGINE_MSPPP  ] = &gf100_msppp_oclass;
B
Ben Skeggs 已提交
62 63 64
#endif
		break;
	case 0x124:
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
		device->oclass[NVDEV_SUBDEV_GPIO   ] =  gk104_gpio_oclass;
		device->oclass[NVDEV_SUBDEV_I2C    ] =  gm204_i2c_oclass;
		device->oclass[NVDEV_SUBDEV_FUSE   ] = &gm107_fuse_oclass;
#if 0
		/* looks to be some non-trivial changes */
		/* priv ring says no to 0x10eb14 writes */
		device->oclass[NVDEV_SUBDEV_THERM  ] = &gm107_therm_oclass;
#endif
		device->oclass[NVDEV_SUBDEV_MXM    ] = &nv50_mxm_oclass;
		device->oclass[NVDEV_SUBDEV_MC     ] =  gk20a_mc_oclass;
		device->oclass[NVDEV_SUBDEV_TIMER  ] = &gk20a_timer_oclass;
		device->oclass[NVDEV_SUBDEV_FB     ] =  gm107_fb_oclass;
		device->oclass[NVDEV_SUBDEV_LTC    ] =  gm107_ltc_oclass;
		device->oclass[NVDEV_SUBDEV_IBUS   ] = &gk104_ibus_oclass;
		device->oclass[NVDEV_SUBDEV_INSTMEM] =  nv50_instmem_oclass;
		device->oclass[NVDEV_SUBDEV_MMU    ] = &gf100_mmu_oclass;
		device->oclass[NVDEV_SUBDEV_PMU    ] =  gk208_pmu_oclass;
#if 0
		device->oclass[NVDEV_SUBDEV_VOLT   ] = &nv40_volt_oclass;
#endif
		device->oclass[NVDEV_ENGINE_DMAOBJ ] =  gf110_dmaeng_oclass;
86
		device->oclass[NVDEV_ENGINE_FIFO   ] =  gm204_fifo_oclass;
87
		device->oclass[NVDEV_ENGINE_SW     ] =  gf100_sw_oclass;
88
		device->oclass[NVDEV_ENGINE_GR     ] =  gm204_gr_oclass;
89 90 91 92
		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;
93
#if 0
94 95 96 97 98 99
		device->oclass[NVDEV_ENGINE_MSVLD  ] = &gk104_msvld_oclass;
		device->oclass[NVDEV_ENGINE_MSPDEC ] = &gk104_mspdec_oclass;
		device->oclass[NVDEV_ENGINE_MSPPP  ] = &gf100_msppp_oclass;
#endif
		break;
	case 0x126:
100
		device->oclass[NVDEV_SUBDEV_GPIO   ] =  gk104_gpio_oclass;
B
Ben Skeggs 已提交
101 102 103 104 105 106 107 108 109 110 111 112
		device->oclass[NVDEV_SUBDEV_I2C    ] =  gm204_i2c_oclass;
		device->oclass[NVDEV_SUBDEV_FUSE   ] = &gm107_fuse_oclass;
#if 0
		/* looks to be some non-trivial changes */
		/* priv ring says no to 0x10eb14 writes */
		device->oclass[NVDEV_SUBDEV_THERM  ] = &gm107_therm_oclass;
#endif
		device->oclass[NVDEV_SUBDEV_MXM    ] = &nv50_mxm_oclass;
		device->oclass[NVDEV_SUBDEV_MC     ] =  gk20a_mc_oclass;
		device->oclass[NVDEV_SUBDEV_TIMER  ] = &gk20a_timer_oclass;
		device->oclass[NVDEV_SUBDEV_FB     ] =  gm107_fb_oclass;
		device->oclass[NVDEV_SUBDEV_LTC    ] =  gm107_ltc_oclass;
113
		device->oclass[NVDEV_SUBDEV_IBUS   ] = &gk104_ibus_oclass;
B
Ben Skeggs 已提交
114
		device->oclass[NVDEV_SUBDEV_INSTMEM] =  nv50_instmem_oclass;
115
		device->oclass[NVDEV_SUBDEV_MMU    ] = &gf100_mmu_oclass;
116
		device->oclass[NVDEV_SUBDEV_PMU    ] =  gk208_pmu_oclass;
B
Ben Skeggs 已提交
117 118 119
#if 0
		device->oclass[NVDEV_SUBDEV_VOLT   ] = &nv40_volt_oclass;
#endif
120
		device->oclass[NVDEV_ENGINE_DMAOBJ ] =  gf110_dmaeng_oclass;
121
		device->oclass[NVDEV_ENGINE_FIFO   ] =  gm204_fifo_oclass;
122
		device->oclass[NVDEV_ENGINE_SW     ] =  gf100_sw_oclass;
123
		device->oclass[NVDEV_ENGINE_GR     ] =  gm206_gr_oclass;
B
Ben Skeggs 已提交
124
		device->oclass[NVDEV_ENGINE_DISP   ] =  gm204_disp_oclass;
125 126 127
		device->oclass[NVDEV_ENGINE_CE0    ] = &gm204_ce0_oclass;
		device->oclass[NVDEV_ENGINE_CE1    ] = &gm204_ce1_oclass;
		device->oclass[NVDEV_ENGINE_CE2    ] = &gm204_ce2_oclass;
128
#if 0
129
		device->oclass[NVDEV_ENGINE_MSVLD  ] = &gk104_msvld_oclass;
130
		device->oclass[NVDEV_ENGINE_MSPDEC ] = &gk104_mspdec_oclass;
131
		device->oclass[NVDEV_ENGINE_MSPPP  ] = &gf100_msppp_oclass;
B
Ben Skeggs 已提交
132 133
#endif
		break;
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
	case 0x12b:

		device->oclass[NVDEV_SUBDEV_MC     ] =  gk20a_mc_oclass;
		device->oclass[NVDEV_SUBDEV_MMU    ] = &gf100_mmu_oclass;
		device->oclass[NVDEV_SUBDEV_FUSE   ] = &gm107_fuse_oclass;
		device->oclass[NVDEV_SUBDEV_TIMER  ] = &gk20a_timer_oclass;
		device->oclass[NVDEV_SUBDEV_FB     ] =  gk20a_fb_oclass;
		device->oclass[NVDEV_SUBDEV_LTC    ] =  gm107_ltc_oclass;
		device->oclass[NVDEV_SUBDEV_IBUS   ] = &gk20a_ibus_oclass;
		device->oclass[NVDEV_SUBDEV_INSTMEM] = gk20a_instmem_oclass;
		device->oclass[NVDEV_SUBDEV_MMU    ] = &gf100_mmu_oclass;
		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 已提交
151 152 153 154 155 156
	default:
		return -EINVAL;
	}

	return 0;
}