You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
54 lines
1.6 KiB
/*
|
|
* 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
|