1 /* SPDX-License-Identifier: MIT */ 2 #ifndef __NVKM_CLK_GP10B_H__ 3 #define __NVKM_CLK_GP10B_H__ 4 5 struct gp10b_clk { 6 /* currently applied parameters */ 7 struct nvkm_clk base; 8 struct gk20a_devfreq *devfreq; 9 struct clk *clk; 10 u32 rate; 11 12 /* new parameters to apply */ 13 u32 new_rate; 14 }; 15 16 #define gp10b_clk(p) container_of((p), struct gp10b_clk, base) 17 18 #endif 19