hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * Header providing constants for Rockchip suspend bindings.
 *
 * Copyright (C) 2017, Fuzhou Rockchip Electronics Co., Ltd
 * Author: XiaoDong.Huang
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */
#ifndef __DT_BINDINGS_ROCKCHIP_PM_H__
#define __DT_BINDINGS_ROCKCHIP_PM_H__
/******************************bits ops************************************/
 
#ifndef BIT
#define BIT(nr)                (1 << (nr))
#endif
 
#define RKPM_SLP_ARMPD            BIT(0)
#define RKPM_SLP_ARMOFF            BIT(1)
#define RKPM_SLP_ARMOFF_DDRPD        BIT(2)
#define RKPM_SLP_ARMOFF_LOGOFF        BIT(3)
 
/* all plls except ddr's pll*/
#define RKPM_SLP_PMU_HW_PLLS_PD        BIT(8)
#define RKPM_SLP_PMU_PMUALIVE_32K    BIT(9)
#define RKPM_SLP_PMU_DIS_OSC        BIT(10)
 
#define RKPM_SLP_CLK_GT            BIT(16)
#define RKPM_SLP_PMIC_LP        BIT(17)
 
#define RKPM_SLP_32K_EXT        BIT(24)
#define RKPM_SLP_TIME_OUT_WKUP        BIT(25)
#define RKPM_SLP_PMU_DBG        BIT(26)
 
/* the wake up source */
#define RKPM_CLUSTER_WKUP_EN        BIT(0)
#define RKPM_GPIO_WKUP_EN        BIT(2)
#define RKPM_SDIO_WKUP_EN        BIT(3)
#define RKPM_SDMMC_WKUP_EN        BIT(4)
#define RKPM_UART0_WKUP_EN        BIT(5)
#define RKPM_TIMER_WKUP_EN        BIT(6)
#define RKPM_USB_WKUP_EN        BIT(7)
#define RKPM_SFT_WKUP_EN        BIT(8)
#define RKPM_TIME_OUT_WKUP_EN        BIT(10)
 
#endif