25 lines
785 B
25 lines
785 B
/* Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* 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_MSM_PM_H__
|
|
#define __DT_MSM_PM_H__
|
|
|
|
#define LPM_RESET_LVL_NONE 0
|
|
#define LPM_RESET_LVL_RET 1
|
|
#define LPM_RESET_LVL_GDHS 2
|
|
#define LPM_RESET_LVL_PC 3
|
|
|
|
#define LPM_AFF_LVL_CPU 0
|
|
#define LPM_AFF_LVL_L2 1
|
|
#define LPM_AFF_LVL_CCI 2
|
|
|
|
#endif
|
|
|