drivers/db8500-cpufreq: delete dangling include
[linux-block.git] / include / linux / mfd / dbx500-prcmu.h
CommitLineData
fea799e3
MN
1/*
2 * Copyright (C) ST Ericsson SA 2011
3 *
4 * License Terms: GNU General Public License v2
5 *
6 * STE Ux500 PRCMU API
7 */
8#ifndef __MACH_PRCMU_H
9#define __MACH_PRCMU_H
10
11#include <linux/interrupt.h>
12#include <linux/notifier.h>
0508901c 13#include <linux/err.h>
fea799e3
MN
14
15/* PRCMU Wakeup defines */
16enum prcmu_wakeup_index {
17 PRCMU_WAKEUP_INDEX_RTC,
18 PRCMU_WAKEUP_INDEX_RTT0,
19 PRCMU_WAKEUP_INDEX_RTT1,
20 PRCMU_WAKEUP_INDEX_HSI0,
21 PRCMU_WAKEUP_INDEX_HSI1,
22 PRCMU_WAKEUP_INDEX_USB,
23 PRCMU_WAKEUP_INDEX_ABB,
24 PRCMU_WAKEUP_INDEX_ABB_FIFO,
25 PRCMU_WAKEUP_INDEX_ARM,
26 PRCMU_WAKEUP_INDEX_CD_IRQ,
27 NUM_PRCMU_WAKEUP_INDICES
28};
29#define PRCMU_WAKEUP(_name) (BIT(PRCMU_WAKEUP_INDEX_##_name))
30
31/* EPOD (power domain) IDs */
32
33/*
34 * DB8500 EPODs
35 * - EPOD_ID_SVAMMDSP: power domain for SVA MMDSP
36 * - EPOD_ID_SVAPIPE: power domain for SVA pipe
37 * - EPOD_ID_SIAMMDSP: power domain for SIA MMDSP
38 * - EPOD_ID_SIAPIPE: power domain for SIA pipe
39 * - EPOD_ID_SGA: power domain for SGA
40 * - EPOD_ID_B2R2_MCDE: power domain for B2R2 and MCDE
41 * - EPOD_ID_ESRAM12: power domain for ESRAM 1 and 2
42 * - EPOD_ID_ESRAM34: power domain for ESRAM 3 and 4
43 * - NUM_EPOD_ID: number of power domains
44 *
45 * TODO: These should be prefixed.
46 */
47#define EPOD_ID_SVAMMDSP 0
48#define EPOD_ID_SVAPIPE 1
49#define EPOD_ID_SIAMMDSP 2
50#define EPOD_ID_SIAPIPE 3
51#define EPOD_ID_SGA 4
52#define EPOD_ID_B2R2_MCDE 5
53#define EPOD_ID_ESRAM12 6
54#define EPOD_ID_ESRAM34 7
55#define NUM_EPOD_ID 8
56
fea799e3
MN
57/*
58 * state definition for EPOD (power domain)
59 * - EPOD_STATE_NO_CHANGE: The EPOD should remain unchanged
60 * - EPOD_STATE_OFF: The EPOD is switched off
61 * - EPOD_STATE_RAMRET: The EPOD is switched off with its internal RAM in
62 * retention
63 * - EPOD_STATE_ON_CLK_OFF: The EPOD is switched on, clock is still off
64 * - EPOD_STATE_ON: Same as above, but with clock enabled
65 */
66#define EPOD_STATE_NO_CHANGE 0x00
67#define EPOD_STATE_OFF 0x01
68#define EPOD_STATE_RAMRET 0x02
69#define EPOD_STATE_ON_CLK_OFF 0x03
70#define EPOD_STATE_ON 0x04
71
72/*
73 * CLKOUT sources
74 */
75#define PRCMU_CLKSRC_CLK38M 0x00
76#define PRCMU_CLKSRC_ACLK 0x01
77#define PRCMU_CLKSRC_SYSCLK 0x02
78#define PRCMU_CLKSRC_LCDCLK 0x03
79#define PRCMU_CLKSRC_SDMMCCLK 0x04
80#define PRCMU_CLKSRC_TVCLK 0x05
81#define PRCMU_CLKSRC_TIMCLK 0x06
82#define PRCMU_CLKSRC_CLK009 0x07
83/* These are only valid for CLKOUT1: */
84#define PRCMU_CLKSRC_SIAMMDSPCLK 0x40
85#define PRCMU_CLKSRC_I2CCLK 0x41
86#define PRCMU_CLKSRC_MSP02CLK 0x42
87#define PRCMU_CLKSRC_ARMPLL_OBSCLK 0x43
88#define PRCMU_CLKSRC_HSIRXCLK 0x44
89#define PRCMU_CLKSRC_HSITXCLK 0x45
90#define PRCMU_CLKSRC_ARMCLKFIX 0x46
91#define PRCMU_CLKSRC_HDMICLK 0x47
92
93/*
94 * Clock identifiers.
95 */
96enum prcmu_clock {
97 PRCMU_SGACLK,
98 PRCMU_UARTCLK,
99 PRCMU_MSP02CLK,
100 PRCMU_MSP1CLK,
101 PRCMU_I2CCLK,
102 PRCMU_SDMMCCLK,
6b6fae2b 103 PRCMU_SPARE1CLK,
fea799e3
MN
104 PRCMU_SLIMCLK,
105 PRCMU_PER1CLK,
106 PRCMU_PER2CLK,
107 PRCMU_PER3CLK,
108 PRCMU_PER5CLK,
109 PRCMU_PER6CLK,
110 PRCMU_PER7CLK,
111 PRCMU_LCDCLK,
112 PRCMU_BMLCLK,
113 PRCMU_HSITXCLK,
114 PRCMU_HSIRXCLK,
115 PRCMU_HDMICLK,
116 PRCMU_APEATCLK,
117 PRCMU_APETRACECLK,
118 PRCMU_MCDECLK,
119 PRCMU_IPI2CCLK,
120 PRCMU_DSIALTCLK,
121 PRCMU_DMACLK,
122 PRCMU_B2R2CLK,
123 PRCMU_TVCLK,
124 PRCMU_SSPCLK,
125 PRCMU_RNGCLK,
126 PRCMU_UICCCLK,
127 PRCMU_PWMCLK,
128 PRCMU_IRDACLK,
129 PRCMU_IRRCCLK,
130 PRCMU_SIACLK,
131 PRCMU_SVACLK,
6b6fae2b 132 PRCMU_ACLK,
fea799e3
MN
133 PRCMU_NUM_REG_CLOCKS,
134 PRCMU_SYSCLK = PRCMU_NUM_REG_CLOCKS,
6b6fae2b 135 PRCMU_CDCLK,
fea799e3
MN
136 PRCMU_TIMCLK,
137 PRCMU_PLLSOC0,
138 PRCMU_PLLSOC1,
20aee5b6 139 PRCMU_ARMSS,
fea799e3 140 PRCMU_PLLDDR,
6b6fae2b
MN
141 PRCMU_PLLDSI,
142 PRCMU_DSI0CLK,
143 PRCMU_DSI1CLK,
144 PRCMU_DSI0ESCCLK,
145 PRCMU_DSI1ESCCLK,
146 PRCMU_DSI2ESCCLK,
fea799e3
MN
147};
148
149/**
150 * enum ape_opp - APE OPP states definition
151 * @APE_OPP_INIT:
152 * @APE_NO_CHANGE: The APE operating point is unchanged
153 * @APE_100_OPP: The new APE operating point is ape100opp
154 * @APE_50_OPP: 50%
4d64d2e3 155 * @APE_50_PARTLY_25_OPP: 50%, except some clocks at 25%.
fea799e3
MN
156 */
157enum ape_opp {
158 APE_OPP_INIT = 0x00,
159 APE_NO_CHANGE = 0x01,
160 APE_100_OPP = 0x02,
4d64d2e3
MN
161 APE_50_OPP = 0x03,
162 APE_50_PARTLY_25_OPP = 0xFF,
fea799e3
MN
163};
164
165/**
166 * enum arm_opp - ARM OPP states definition
167 * @ARM_OPP_INIT:
168 * @ARM_NO_CHANGE: The ARM operating point is unchanged
169 * @ARM_100_OPP: The new ARM operating point is arm100opp
170 * @ARM_50_OPP: The new ARM operating point is arm50opp
171 * @ARM_MAX_OPP: Operating point is "max" (more than 100)
172 * @ARM_MAX_FREQ100OPP: Set max opp if available, else 100
173 * @ARM_EXTCLK: The new ARM operating point is armExtClk
174 */
175enum arm_opp {
176 ARM_OPP_INIT = 0x00,
177 ARM_NO_CHANGE = 0x01,
178 ARM_100_OPP = 0x02,
179 ARM_50_OPP = 0x03,
180 ARM_MAX_OPP = 0x04,
181 ARM_MAX_FREQ100OPP = 0x05,
182 ARM_EXTCLK = 0x07
183};
184
185/**
186 * enum ddr_opp - DDR OPP states definition
187 * @DDR_100_OPP: The new DDR operating point is ddr100opp
188 * @DDR_50_OPP: The new DDR operating point is ddr50opp
189 * @DDR_25_OPP: The new DDR operating point is ddr25opp
190 */
191enum ddr_opp {
192 DDR_100_OPP = 0x00,
193 DDR_50_OPP = 0x01,
194 DDR_25_OPP = 0x02,
195};
196
197/*
198 * Definitions for controlling ESRAM0 in deep sleep.
199 */
200#define ESRAM0_DEEP_SLEEP_STATE_OFF 1
201#define ESRAM0_DEEP_SLEEP_STATE_RET 2
202
203/**
204 * enum ddr_pwrst - DDR power states definition
205 * @DDR_PWR_STATE_UNCHANGED: SDRAM and DDR controller state is unchanged
206 * @DDR_PWR_STATE_ON:
207 * @DDR_PWR_STATE_OFFLOWLAT:
208 * @DDR_PWR_STATE_OFFHIGHLAT:
209 */
210enum ddr_pwrst {
211 DDR_PWR_STATE_UNCHANGED = 0x00,
212 DDR_PWR_STATE_ON = 0x01,
213 DDR_PWR_STATE_OFFLOWLAT = 0x02,
214 DDR_PWR_STATE_OFFHIGHLAT = 0x03
215};
216
217#include <linux/mfd/db8500-prcmu.h>
fea799e3 218
dece3709 219#if defined(CONFIG_UX500_SOC_DB8500)
fea799e3
MN
220
221static inline void __init prcmu_early_init(void)
222{
dece3709 223 return db8500_prcmu_early_init();
fea799e3
MN
224}
225
226static inline int prcmu_set_power_state(u8 state, bool keep_ulp_clk,
227 bool keep_ap_pll)
228{
dece3709
LW
229 return db8500_prcmu_set_power_state(state, keep_ulp_clk,
230 keep_ap_pll);
fea799e3
MN
231}
232
4d64d2e3
MN
233static inline u8 prcmu_get_power_state_result(void)
234{
dece3709 235 return db8500_prcmu_get_power_state_result();
4d64d2e3
MN
236}
237
485540dc
DL
238static inline int prcmu_gic_decouple(void)
239{
dece3709 240 return db8500_prcmu_gic_decouple();
485540dc
DL
241}
242
243static inline int prcmu_gic_recouple(void)
244{
dece3709 245 return db8500_prcmu_gic_recouple();
485540dc
DL
246}
247
cc9a0f68
DL
248static inline bool prcmu_gic_pending_irq(void)
249{
dece3709 250 return db8500_prcmu_gic_pending_irq();
cc9a0f68
DL
251}
252
34fe6f10
DL
253static inline bool prcmu_is_cpu_in_wfi(int cpu)
254{
dece3709 255 return db8500_prcmu_is_cpu_in_wfi(cpu);
34fe6f10
DL
256}
257
9f60d33e
DL
258static inline int prcmu_copy_gic_settings(void)
259{
dece3709 260 return db8500_prcmu_copy_gic_settings();
9f60d33e
DL
261}
262
9ab492e1
DL
263static inline bool prcmu_pending_irq(void)
264{
dece3709 265 return db8500_prcmu_pending_irq();
9ab492e1
DL
266}
267
fea799e3
MN
268static inline int prcmu_set_epod(u16 epod_id, u8 epod_state)
269{
dece3709 270 return db8500_prcmu_set_epod(epod_id, epod_state);
fea799e3
MN
271}
272
273static inline void prcmu_enable_wakeups(u32 wakeups)
274{
dece3709 275 db8500_prcmu_enable_wakeups(wakeups);
fea799e3
MN
276}
277
278static inline void prcmu_disable_wakeups(void)
279{
280 prcmu_enable_wakeups(0);
281}
282
283static inline void prcmu_config_abb_event_readout(u32 abb_events)
284{
dece3709 285 db8500_prcmu_config_abb_event_readout(abb_events);
fea799e3
MN
286}
287
288static inline void prcmu_get_abb_event_buffer(void __iomem **buf)
289{
dece3709 290 db8500_prcmu_get_abb_event_buffer(buf);
fea799e3
MN
291}
292
293int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size);
294int prcmu_abb_write(u8 slave, u8 reg, u8 *value, u8 size);
3c3e4898 295int prcmu_abb_write_masked(u8 slave, u8 reg, u8 *value, u8 *mask, u8 size);
fea799e3
MN
296
297int prcmu_config_clkout(u8 clkout, u8 source, u8 div);
298
299static inline int prcmu_request_clock(u8 clock, bool enable)
300{
dece3709 301 return db8500_prcmu_request_clock(clock, enable);
fea799e3
MN
302}
303
0508901c
MN
304unsigned long prcmu_clock_rate(u8 clock);
305long prcmu_round_clock_rate(u8 clock, unsigned long rate);
306int prcmu_set_clock_rate(u8 clock, unsigned long rate);
307
308static inline int prcmu_set_ddr_opp(u8 opp)
309{
dece3709 310 return db8500_prcmu_set_ddr_opp(opp);
0508901c
MN
311}
312static inline int prcmu_get_ddr_opp(void)
313{
dece3709 314 return db8500_prcmu_get_ddr_opp();
0508901c 315}
fea799e3
MN
316
317static inline int prcmu_set_arm_opp(u8 opp)
318{
dece3709 319 return db8500_prcmu_set_arm_opp(opp);
fea799e3
MN
320}
321
322static inline int prcmu_get_arm_opp(void)
323{
dece3709 324 return db8500_prcmu_get_arm_opp();
fea799e3
MN
325}
326
0508901c
MN
327static inline int prcmu_set_ape_opp(u8 opp)
328{
dece3709 329 return db8500_prcmu_set_ape_opp(opp);
0508901c
MN
330}
331
332static inline int prcmu_get_ape_opp(void)
333{
dece3709 334 return db8500_prcmu_get_ape_opp();
0508901c
MN
335}
336
686f871b
UH
337static inline int prcmu_request_ape_opp_100_voltage(bool enable)
338{
339 return db8500_prcmu_request_ape_opp_100_voltage(enable);
340}
341
fea799e3
MN
342static inline void prcmu_system_reset(u16 reset_code)
343{
dece3709 344 return db8500_prcmu_system_reset(reset_code);
fea799e3
MN
345}
346
347static inline u16 prcmu_get_reset_code(void)
348{
dece3709 349 return db8500_prcmu_get_reset_code();
fea799e3
MN
350}
351
5261e101 352int prcmu_ac_wake_req(void);
fea799e3 353void prcmu_ac_sleep_req(void);
0508901c
MN
354static inline void prcmu_modem_reset(void)
355{
dece3709 356 return db8500_prcmu_modem_reset();
0508901c
MN
357}
358
fea799e3
MN
359static inline bool prcmu_is_ac_wake_requested(void)
360{
dece3709 361 return db8500_prcmu_is_ac_wake_requested();
fea799e3
MN
362}
363
364static inline int prcmu_set_display_clocks(void)
365{
dece3709 366 return db8500_prcmu_set_display_clocks();
fea799e3
MN
367}
368
369static inline int prcmu_disable_dsipll(void)
370{
dece3709 371 return db8500_prcmu_disable_dsipll();
fea799e3
MN
372}
373
374static inline int prcmu_enable_dsipll(void)
375{
dece3709 376 return db8500_prcmu_enable_dsipll();
fea799e3
MN
377}
378
379static inline int prcmu_config_esram0_deep_sleep(u8 state)
380{
dece3709 381 return db8500_prcmu_config_esram0_deep_sleep(state);
fea799e3 382}
0508901c
MN
383
384static inline int prcmu_config_hotdog(u8 threshold)
385{
dece3709 386 return db8500_prcmu_config_hotdog(threshold);
0508901c
MN
387}
388
389static inline int prcmu_config_hotmon(u8 low, u8 high)
390{
dece3709 391 return db8500_prcmu_config_hotmon(low, high);
0508901c
MN
392}
393
394static inline int prcmu_start_temp_sense(u16 cycles32k)
395{
dece3709 396 return db8500_prcmu_start_temp_sense(cycles32k);
0508901c
MN
397}
398
399static inline int prcmu_stop_temp_sense(void)
400{
dece3709 401 return db8500_prcmu_stop_temp_sense();
0508901c
MN
402}
403
b4a6dbd5
MN
404static inline u32 prcmu_read(unsigned int reg)
405{
dece3709 406 return db8500_prcmu_read(reg);
b4a6dbd5
MN
407}
408
409static inline void prcmu_write(unsigned int reg, u32 value)
410{
dece3709 411 db8500_prcmu_write(reg, value);
b4a6dbd5
MN
412}
413
414static inline void prcmu_write_masked(unsigned int reg, u32 mask, u32 value)
415{
dece3709 416 db8500_prcmu_write_masked(reg, mask, value);
b4a6dbd5
MN
417}
418
0508901c
MN
419static inline int prcmu_enable_a9wdog(u8 id)
420{
dece3709 421 return db8500_prcmu_enable_a9wdog(id);
0508901c
MN
422}
423
424static inline int prcmu_disable_a9wdog(u8 id)
425{
dece3709 426 return db8500_prcmu_disable_a9wdog(id);
0508901c
MN
427}
428
429static inline int prcmu_kick_a9wdog(u8 id)
430{
dece3709 431 return db8500_prcmu_kick_a9wdog(id);
0508901c
MN
432}
433
434static inline int prcmu_load_a9wdog(u8 id, u32 timeout)
435{
dece3709 436 return db8500_prcmu_load_a9wdog(id, timeout);
0508901c
MN
437}
438
439static inline int prcmu_config_a9wdog(u8 num, bool sleep_auto_off)
440{
dece3709 441 return db8500_prcmu_config_a9wdog(num, sleep_auto_off);
0508901c 442}
fea799e3
MN
443#else
444
445static inline void __init prcmu_early_init(void) {}
446
447static inline int prcmu_set_power_state(u8 state, bool keep_ulp_clk,
448 bool keep_ap_pll)
449{
450 return 0;
451}
452
453static inline int prcmu_set_epod(u16 epod_id, u8 epod_state)
454{
455 return 0;
456}
457
458static inline void prcmu_enable_wakeups(u32 wakeups) {}
459
460static inline void prcmu_disable_wakeups(void) {}
461
462static inline int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size)
463{
464 return -ENOSYS;
465}
466
467static inline int prcmu_abb_write(u8 slave, u8 reg, u8 *value, u8 size)
468{
469 return -ENOSYS;
470}
471
3c3e4898
MN
472static inline int prcmu_abb_write_masked(u8 slave, u8 reg, u8 *value, u8 *mask,
473 u8 size)
474{
475 return -ENOSYS;
476}
477
fea799e3
MN
478static inline int prcmu_config_clkout(u8 clkout, u8 source, u8 div)
479{
480 return 0;
481}
482
483static inline int prcmu_request_clock(u8 clock, bool enable)
484{
485 return 0;
6b6fae2b
MN
486}
487
488static inline long prcmu_round_clock_rate(u8 clock, unsigned long rate)
489{
490 return 0;
491}
492
493static inline int prcmu_set_clock_rate(u8 clock, unsigned long rate)
494{
495 return 0;
496}
497
498static inline unsigned long prcmu_clock_rate(u8 clock)
499{
500 return 0;
fea799e3
MN
501}
502
503static inline int prcmu_set_ape_opp(u8 opp)
504{
505 return 0;
506}
507
508static inline int prcmu_get_ape_opp(void)
509{
510 return APE_100_OPP;
511}
512
686f871b
UH
513static inline int prcmu_request_ape_opp_100_voltage(bool enable)
514{
515 return 0;
516}
517
fea799e3
MN
518static inline int prcmu_set_arm_opp(u8 opp)
519{
520 return 0;
521}
522
523static inline int prcmu_get_arm_opp(void)
524{
525 return ARM_100_OPP;
526}
527
528static inline int prcmu_set_ddr_opp(u8 opp)
529{
530 return 0;
531}
532
533static inline int prcmu_get_ddr_opp(void)
534{
535 return DDR_100_OPP;
536}
537
538static inline void prcmu_system_reset(u16 reset_code) {}
539
540static inline u16 prcmu_get_reset_code(void)
541{
542 return 0;
543}
544
5261e101
AM
545static inline int prcmu_ac_wake_req(void)
546{
547 return 0;
548}
fea799e3
MN
549
550static inline void prcmu_ac_sleep_req(void) {}
551
552static inline void prcmu_modem_reset(void) {}
553
554static inline bool prcmu_is_ac_wake_requested(void)
555{
556 return false;
557}
558
559static inline int prcmu_set_display_clocks(void)
560{
561 return 0;
562}
563
564static inline int prcmu_disable_dsipll(void)
565{
566 return 0;
567}
568
569static inline int prcmu_enable_dsipll(void)
570{
571 return 0;
572}
573
574static inline int prcmu_config_esram0_deep_sleep(u8 state)
575{
576 return 0;
577}
578
579static inline void prcmu_config_abb_event_readout(u32 abb_events) {}
580
581static inline void prcmu_get_abb_event_buffer(void __iomem **buf)
582{
583 *buf = NULL;
584}
585
0508901c
MN
586static inline int prcmu_config_hotdog(u8 threshold)
587{
588 return 0;
589}
590
591static inline int prcmu_config_hotmon(u8 low, u8 high)
592{
593 return 0;
594}
595
596static inline int prcmu_start_temp_sense(u16 cycles32k)
597{
598 return 0;
599}
600
601static inline int prcmu_stop_temp_sense(void)
602{
603 return 0;
604}
605
b4a6dbd5
MN
606static inline u32 prcmu_read(unsigned int reg)
607{
608 return 0;
609}
610
611static inline void prcmu_write(unsigned int reg, u32 value) {}
612
613static inline void prcmu_write_masked(unsigned int reg, u32 mask, u32 value) {}
614
615#endif
616
617static inline void prcmu_set(unsigned int reg, u32 bits)
618{
619 prcmu_write_masked(reg, bits, bits);
620}
621
622static inline void prcmu_clear(unsigned int reg, u32 bits)
623{
624 prcmu_write_masked(reg, bits, 0);
625}
626
fea799e3
MN
627/* PRCMU QoS APE OPP class */
628#define PRCMU_QOS_APE_OPP 1
629#define PRCMU_QOS_DDR_OPP 2
4d64d2e3 630#define PRCMU_QOS_ARM_OPP 3
fea799e3
MN
631#define PRCMU_QOS_DEFAULT_VALUE -1
632
4d64d2e3 633#ifdef CONFIG_DBX500_PRCMU_QOS_POWER
fea799e3
MN
634
635unsigned long prcmu_qos_get_cpufreq_opp_delay(void);
636void prcmu_qos_set_cpufreq_opp_delay(unsigned long);
637void prcmu_qos_force_opp(int, s32);
638int prcmu_qos_requirement(int pm_qos_class);
639int prcmu_qos_add_requirement(int pm_qos_class, char *name, s32 value);
640int prcmu_qos_update_requirement(int pm_qos_class, char *name, s32 new_value);
641void prcmu_qos_remove_requirement(int pm_qos_class, char *name);
642int prcmu_qos_add_notifier(int prcmu_qos_class,
643 struct notifier_block *notifier);
644int prcmu_qos_remove_notifier(int prcmu_qos_class,
645 struct notifier_block *notifier);
646
647#else
648
649static inline unsigned long prcmu_qos_get_cpufreq_opp_delay(void)
650{
651 return 0;
652}
653
654static inline void prcmu_qos_set_cpufreq_opp_delay(unsigned long n) {}
655
656static inline void prcmu_qos_force_opp(int prcmu_qos_class, s32 i) {}
657
658static inline int prcmu_qos_requirement(int prcmu_qos_class)
659{
660 return 0;
661}
662
663static inline int prcmu_qos_add_requirement(int prcmu_qos_class,
664 char *name, s32 value)
665{
666 return 0;
667}
668
669static inline int prcmu_qos_update_requirement(int prcmu_qos_class,
670 char *name, s32 new_value)
671{
672 return 0;
673}
674
675static inline void prcmu_qos_remove_requirement(int prcmu_qos_class, char *name)
676{
677}
678
679static inline int prcmu_qos_add_notifier(int prcmu_qos_class,
680 struct notifier_block *notifier)
681{
682 return 0;
683}
684static inline int prcmu_qos_remove_notifier(int prcmu_qos_class,
685 struct notifier_block *notifier)
686{
687 return 0;
688}
689
690#endif
691
692#endif /* __MACH_PRCMU_H */