| .. | .. |
|---|
| 26 | 26 | |
|---|
| 27 | 27 | static const struct nvkm_pmu_func |
|---|
| 28 | 28 | gk208_pmu = { |
|---|
| 29 | + .flcn = >215_pmu_flcn, |
|---|
| 29 | 30 | .code.data = gk208_pmu_code, |
|---|
| 30 | 31 | .code.size = sizeof(gk208_pmu_code), |
|---|
| 31 | 32 | .data.data = gk208_pmu_data, |
|---|
| .. | .. |
|---|
| 40 | 41 | .pgob = gk110_pmu_pgob, |
|---|
| 41 | 42 | }; |
|---|
| 42 | 43 | |
|---|
| 44 | +static const struct nvkm_pmu_fwif |
|---|
| 45 | +gk208_pmu_fwif[] = { |
|---|
| 46 | + { -1, gf100_pmu_nofw, &gk208_pmu }, |
|---|
| 47 | + {} |
|---|
| 48 | +}; |
|---|
| 49 | + |
|---|
| 43 | 50 | int |
|---|
| 44 | 51 | gk208_pmu_new(struct nvkm_device *device, int index, struct nvkm_pmu **ppmu) |
|---|
| 45 | 52 | { |
|---|
| 46 | | - return nvkm_pmu_new_(&gk208_pmu, device, index, ppmu); |
|---|
| 53 | + return nvkm_pmu_new_(gk208_pmu_fwif, device, index, ppmu); |
|---|
| 47 | 54 | } |
|---|