Lines Matching full:gmu
23 * These define the different GMU wake up options - these define how both the
24 * CPU and the GMU bring up the hardware
27 /* THe GMU has already been booted and the rentention registers are active */
30 /* the GMU is coming up for the first time or back from a power collapse */
34 * These define the level of control that the GMU has - the higher the number
35 * the more things that the GMU hardware controls on its own.
38 /* The GMU does not do any idle state management */
41 /* The GMU manages SPTP power collapse */
44 /* The GMU does automatic IFPC (intra-frame power collapse) */
50 /* For serializing communication with the GMU: */
104 static inline u32 gmu_read(struct a6xx_gmu *gmu, u32 offset) in gmu_read() argument
106 return readl(gmu->mmio + (offset << 2)); in gmu_read()
109 static inline void gmu_write(struct a6xx_gmu *gmu, u32 offset, u32 value) in gmu_write() argument
111 writel(value, gmu->mmio + (offset << 2)); in gmu_write()
115 gmu_write_bulk(struct a6xx_gmu *gmu, u32 offset, const u32 *data, u32 size) in gmu_write_bulk() argument
117 memcpy_toio(gmu->mmio + (offset << 2), data, size); in gmu_write_bulk()
121 static inline void gmu_rmw(struct a6xx_gmu *gmu, u32 reg, u32 mask, u32 or) in gmu_rmw() argument
123 u32 val = gmu_read(gmu, reg); in gmu_rmw()
127 gmu_write(gmu, reg, val | or); in gmu_rmw()
130 static inline u64 gmu_read64(struct a6xx_gmu *gmu, u32 lo, u32 hi) in gmu_read64() argument
134 val = (u64) readl(gmu->mmio + (lo << 2)); in gmu_read64()
135 val |= ((u64) readl(gmu->mmio + (hi << 2)) << 32); in gmu_read64()
140 #define gmu_poll_timeout(gmu, addr, val, cond, interval, timeout) \ argument
141 readl_poll_timeout((gmu)->mmio + ((addr) << 2), val, cond, \
144 static inline u32 gmu_read_rscc(struct a6xx_gmu *gmu, u32 offset) in gmu_read_rscc() argument
146 return readl(gmu->rscc + (offset << 2)); in gmu_read_rscc()
149 static inline void gmu_write_rscc(struct a6xx_gmu *gmu, u32 offset, u32 value) in gmu_write_rscc() argument
151 writel(value, gmu->rscc + (offset << 2)); in gmu_write_rscc()
154 #define gmu_poll_timeout_rscc(gmu, addr, val, cond, interval, timeout) \ argument
155 readl_poll_timeout((gmu)->rscc + ((addr) << 2), val, cond, \
159 * These are the available OOB (out of band requests) to the GMU where "out of
160 * band" means that the CPU talks to the GMU directly and not through HFI.
163 * bit). The state is cleared by writing the "clear' bit to the GMU interrupt.
165 * These are used to force the GMU/GPU to stay on during a critical sequence or
171 * Let the GMU know that a boot or slumber operation has started. The value in
172 * REG_A6XX_GMU_BOOT_SLUMBER_OPTION lets the GMU know which operation we are
177 * Let the GMU know to not turn off any GPU registers while the CPU is in a
191 void a6xx_hfi_init(struct a6xx_gmu *gmu);
192 int a6xx_hfi_start(struct a6xx_gmu *gmu, int boot_state);
193 void a6xx_hfi_stop(struct a6xx_gmu *gmu);
194 int a6xx_hfi_send_prep_slumber(struct a6xx_gmu *gmu);
195 int a6xx_hfi_set_freq(struct a6xx_gmu *gmu, int index);
197 bool a6xx_gmu_gx_is_on(struct a6xx_gmu *gmu);
198 bool a6xx_gmu_sptprac_is_on(struct a6xx_gmu *gmu);
199 void a6xx_sptprac_disable(struct a6xx_gmu *gmu);
200 int a6xx_sptprac_enable(struct a6xx_gmu *gmu);