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