cregit-Linux how code gets into the kernel

Release 4.10 drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gk20a.c

/*
 * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
 *
 * 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 AUTHORS OR COPYRIGHT HOLDERS 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.
 */

#define gk20a_pmu(p) container_of((p), struct gk20a_pmu, base.subdev)
#include "priv.h"

#include <subdev/clk.h>
#include <subdev/timer.h>
#include <subdev/volt.h>


#define BUSY_SLOT	0

#define CLK_SLOT	7


struct gk20a_pmu_dvfs_data {
	
int p_load_target;
	
int p_load_max;
	
int p_smooth;
	
unsigned int avg_load;
};


struct gk20a_pmu {
	
struct nvkm_pmu base;
	
struct nvkm_alarm alarm;
	
struct gk20a_pmu_dvfs_data *data;
};


struct gk20a_pmu_dvfs_dev_status {
	
unsigned long total;
	
unsigned long busy;
	
int cur_state;
};


static int gk20a_pmu_dvfs_target(struct gk20a_pmu *pmu, int *state) { struct nvkm_clk *clk = pmu->base.subdev.device->clk; return nvkm_clk_astate(clk, *state, 0, false); }

Contributors

PersonTokensPropCommitsCommitProp
vince hsuvince hsu2967.44%120.00%
ben skeggsben skeggs1432.56%480.00%
Total43100.00%5100.00%


static int gk20a_pmu_dvfs_get_cur_state(struct gk20a_pmu *pmu, int *state) { struct nvkm_clk *clk = pmu->base.subdev.device->clk; *state = clk->pstate; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
vince hsuvince hsu2767.50%120.00%
ben skeggsben skeggs1332.50%480.00%
Total40100.00%5100.00%


static int gk20a_pmu_dvfs_get_target_state(struct gk20a_pmu *pmu, int *state, int load) { struct gk20a_pmu_dvfs_data *data = pmu->data; struct nvkm_clk *clk = pmu->base.subdev.device->clk; int cur_level, level; /* For GK20A, the performance level is directly mapped to pstate */ level = cur_level = clk->pstate; if (load > data->p_load_max) { level = min(clk->state_nr - 1, level + (clk->state_nr / 3)); } else { level += ((load - data->p_load_target) * 10 / data->p_load_target) / 2; level = max(0, level); level = min(clk->state_nr - 1, level); } nvkm_trace(&pmu->base.subdev, "cur level = %d, new level = %d\n", cur_level, level); *state = level; if (level == cur_level) return 0; else return 1; }

Contributors

PersonTokensPropCommitsCommitProp
vince hsuvince hsu14486.75%116.67%
ben skeggsben skeggs2213.25%583.33%
Total166100.00%6100.00%


static int gk20a_pmu_dvfs_get_dev_status(struct gk20a_pmu *pmu, struct gk20a_pmu_dvfs_dev_status *status) { struct nvkm_device *device = pmu->base.subdev.device; status->busy = nvkm_rd32(device, 0x10a508 + (BUSY_SLOT * 0x10)); status->total= nvkm_rd32(device, 0x10a508 + (CLK_SLOT * 0x10)); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
vince hsuvince hsu4568.18%125.00%
ben skeggsben skeggs2131.82%375.00%
Total66100.00%4100.00%


static void gk20a_pmu_dvfs_reset_dev_status(struct gk20a_pmu *pmu) { struct nvkm_device *device = pmu->base.subdev.device; nvkm_wr32(device, 0x10a508 + (BUSY_SLOT * 0x10), 0x80000000); nvkm_wr32(device, 0x10a508 + (CLK_SLOT * 0x10), 0x80000000); }

Contributors

PersonTokensPropCommitsCommitProp
vince hsuvince hsu3361.11%125.00%
ben skeggsben skeggs2138.89%375.00%
Total54100.00%4100.00%


static void gk20a_pmu_dvfs_work(struct nvkm_alarm *alarm) { struct gk20a_pmu *pmu = container_of(alarm, struct gk20a_pmu, alarm); struct gk20a_pmu_dvfs_data *data = pmu->data; struct gk20a_pmu_dvfs_dev_status status; struct nvkm_subdev *subdev = &pmu->base.subdev; struct nvkm_device *device = subdev->device; struct nvkm_clk *clk = device->clk; struct nvkm_timer *tmr = device->timer; struct nvkm_volt *volt = device->volt; u32 utilization = 0; int state, ret; /* * The PMU is initialized before CLK and VOLT, so we have to make sure the * CLK and VOLT are ready here. */ if (!clk || !volt) goto resched; ret = gk20a_pmu_dvfs_get_dev_status(pmu, &status); if (ret) { nvkm_warn(subdev, "failed to get device status\n"); goto resched; } if (status.total) utilization = div_u64((u64)status.busy * 100, status.total); data->avg_load = (data->p_smooth * data->avg_load) + utilization; data->avg_load /= data->p_smooth + 1; nvkm_trace(subdev, "utilization = %d %%, avg_load = %d %%\n", utilization, data->avg_load); ret = gk20a_pmu_dvfs_get_cur_state(pmu, &state); if (ret) { nvkm_warn(subdev, "failed to get current state\n"); goto resched; } if (gk20a_pmu_dvfs_get_target_state(pmu, &state, data->avg_load)) { nvkm_trace(subdev, "set new state to %d\n", state); gk20a_pmu_dvfs_target(pmu, &state); } resched: gk20a_pmu_dvfs_reset_dev_status(pmu); nvkm_timer_alarm(tmr, 100000000, alarm); }

Contributors

PersonTokensPropCommitsCommitProp
vince hsuvince hsu20675.46%116.67%
ben skeggsben skeggs6724.54%583.33%
Total273100.00%6100.00%


static int gk20a_pmu_fini(struct nvkm_subdev *subdev, bool suspend) { struct gk20a_pmu *pmu = gk20a_pmu(subdev); nvkm_timer_alarm_cancel(subdev->device->timer, &pmu->alarm); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
vince hsuvince hsu2151.22%114.29%
ben skeggsben skeggs1946.34%571.43%
alexandre courbotalexandre courbot12.44%114.29%
Total41100.00%7100.00%


static void * gk20a_pmu_dtor(struct nvkm_subdev *subdev) { return gk20a_pmu(subdev); }

Contributors

PersonTokensPropCommitsCommitProp
ben skeggsben skeggs1477.78%266.67%
vince hsuvince hsu422.22%133.33%
Total18100.00%3100.00%


static int gk20a_pmu_init(struct nvkm_subdev *subdev) { struct gk20a_pmu *pmu = gk20a_pmu(subdev); struct nvkm_device *device = pmu->base.subdev.device; /* init pwr perf counter */ nvkm_wr32(device, 0x10a504 + (BUSY_SLOT * 0x10), 0x00200001); nvkm_wr32(device, 0x10a50c + (BUSY_SLOT * 0x10), 0x00000002); nvkm_wr32(device, 0x10a50c + (CLK_SLOT * 0x10), 0x00000003); nvkm_timer_alarm(device->timer, 2000000000, &pmu->alarm); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
vince hsuvince hsu6263.92%112.50%
ben skeggsben skeggs3435.05%675.00%
alexandre courbotalexandre courbot11.03%112.50%
Total97100.00%8100.00%

static struct gk20a_pmu_dvfs_data gk20a_dvfs_data= { .p_load_target = 70, .p_load_max = 90, .p_smooth = 1, }; static const struct nvkm_subdev_func gk20a_pmu = { .init = gk20a_pmu_init, .fini = gk20a_pmu_fini, .dtor = gk20a_pmu_dtor, };
int gk20a_pmu_new(struct nvkm_device *device, int index, struct nvkm_pmu **ppmu) { static const struct nvkm_pmu_func func = {}; struct gk20a_pmu *pmu; if (!(pmu = kzalloc(sizeof(*pmu), GFP_KERNEL))) return -ENOMEM; pmu->base.func = &func; *ppmu = &pmu->base; nvkm_subdev_ctor(&gk20a_pmu, device, index, &pmu->base.subdev); pmu->data = &gk20a_dvfs_data; nvkm_alarm_init(&pmu->alarm, gk20a_pmu_dvfs_work); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
ben skeggsben skeggs6862.96%480.00%
vince hsuvince hsu4037.04%120.00%
Total108100.00%5100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
vince hsuvince hsu69867.70%19.09%
ben skeggsben skeggs33032.01%981.82%
alexandre courbotalexandre courbot30.29%19.09%
Total1031100.00%11100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.