1 /* 2 * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved. 3 * 4 * Permission to use, copy, modify, and/or distribute this software for 5 * any purpose with or without fee is hereby granted, provided that the 6 * above copyright notice and this permission notice appear in all 7 * copies. 8 * 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL 10 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED 11 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE 12 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL 13 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 14 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 15 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 16 * PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19 #ifndef WLAN_PMO_RUNTIME_PM_CFG_H__ 20 #define WLAN_PMO_RUNTIME_PM_CFG_H__ 21 22 #ifdef FEATURE_RUNTIME_PM 23 /* 24 * <ini> 25 * gRuntimePMDelay - Set runtime pm's inactivity timer 26 * @Min: 100 27 * @Max: 10000 28 * @Default: 500 29 * 30 * This ini is used to set runtime pm's inactivity timer value. 31 * the wlan driver will wait for this number of milliseconds of 32 * inactivity before performing a runtime suspend. 33 * 34 * Related: gRuntimePM 35 * 36 * Supported Feature: Power Save 37 * 38 * Usage: External 39 * 40 * </ini> 41 */ 42 #define CFG_PMO_RUNTIME_PM_DELAY CFG_INI_UINT( \ 43 "gRuntimePMDelay", \ 44 100, \ 45 10000, \ 46 500, \ 47 CFG_VALUE_OR_DEFAULT, \ 48 "Set runtime pm's inactivity timer") 49 50 #define CFG_RUNTIME_PM_ALL \ 51 CFG(CFG_PMO_RUNTIME_PM_DELAY) 52 #else 53 #define CFG_RUNTIME_PM_ALL 54 #endif /* FEATURE_RUNTIME_PM */ 55 #endif /* WLAN_PMO_RUNTIME_PM_CFG_H__ */ 56