The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/dev/iwlwifi/fw/api/system.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
    2 /*
    3  * Copyright (C) 2012-2014, 2019-2021 Intel Corporation
    4  * Copyright (C) 2013-2015 Intel Mobile Communications GmbH
    5  * Copyright (C) 2016-2017 Intel Deutschland GmbH
    6  */
    7 #ifndef __iwl_fw_api_system_h__
    8 #define __iwl_fw_api_system_h__
    9 
   10 #define SOC_CONFIG_CMD_FLAGS_DISCRETE           BIT(0)
   11 #define SOC_CONFIG_CMD_FLAGS_LOW_LATENCY        BIT(1)
   12 
   13 #define SOC_FLAGS_LTR_APPLY_DELAY_MASK          0xc
   14 #define SOC_FLAGS_LTR_APPLY_DELAY_NONE          0
   15 #define SOC_FLAGS_LTR_APPLY_DELAY_200           1
   16 #define SOC_FLAGS_LTR_APPLY_DELAY_2500          2
   17 #define SOC_FLAGS_LTR_APPLY_DELAY_1820          3
   18 
   19 /**
   20  * struct iwl_soc_configuration_cmd - Set device stabilization latency
   21  *
   22  * @flags: soc settings flags.  In VER_1, we can only set the DISCRETE
   23  *      flag, because the FW treats the whole value as an integer. In
   24  *      VER_2, we can set the bits independently.
   25  * @latency: time for SOC to ensure stable power & XTAL
   26  */
   27 struct iwl_soc_configuration_cmd {
   28         __le32 flags;
   29         __le32 latency;
   30 } __packed; /*
   31              * SOC_CONFIGURATION_CMD_S_VER_1 (see description above)
   32              * SOC_CONFIGURATION_CMD_S_VER_2
   33              */
   34 
   35 /**
   36  * struct iwl_system_features_control_cmd - system features control command
   37  * @features: bitmap of features to disable
   38  */
   39 struct iwl_system_features_control_cmd {
   40         __le32 features[4];
   41 } __packed; /* SYSTEM_FEATURES_CONTROL_CMD_API_S_VER_1 */
   42 
   43 #endif /* __iwl_fw_api_system_h__ */

Cache object: 7dd799f3f8f9aec65cfdebbba3f1e788


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.