Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Copyright 2018 Red Hat Inc.
0003  *
0004  * Permission is hereby granted, free of charge, to any person obtaining a
0005  * copy of this software and associated documentation files (the "Software"),
0006  * to deal in the Software without restriction, including without limitation
0007  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
0008  * and/or sell copies of the Software, and to permit persons to whom the
0009  * Software is furnished to do so, subject to the following conditions:
0010  *
0011  * The above copyright notice and this permission notice shall be included in
0012  * all copies or substantial portions of the Software.
0013  *
0014  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0015  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0016  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
0017  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
0018  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
0019  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
0020  * OTHER DEALINGS IN THE SOFTWARE.
0021  *
0022  * Authors: Lyude Paul
0023  */
0024 
0025 #ifndef __GK104_THERM_H__
0026 #define __GK104_THERM_H__
0027 #define gk104_therm(p) (container_of((p), struct gk104_therm, base))
0028 
0029 #include <subdev/therm.h>
0030 #include "priv.h"
0031 #include "gf100.h"
0032 
0033 struct gk104_clkgate_engine_info {
0034     enum nvkm_subdev_type type;
0035     int inst;
0036     u8 offset;
0037 };
0038 
0039 struct gk104_therm {
0040     struct nvkm_therm base;
0041 
0042     const struct gk104_clkgate_engine_info *clkgate_order;
0043     const struct gf100_idle_filter *idle_filter;
0044 };
0045 
0046 extern const struct gk104_clkgate_engine_info gk104_clkgate_engine_info[];
0047 extern const struct gf100_idle_filter gk104_idle_filter;
0048 
0049 #endif