Loading...
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 | /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2021 Intel Corporation */ #ifndef __iwl_mei_h__ #define __iwl_mei_h__ #include <linux/if_ether.h> #include <linux/skbuff.h> #include <linux/ieee80211.h> /** * DOC: Introduction * * iwlmei is the kernel module that is in charge of the communication between * the iwlwifi driver and the CSME firmware's WLAN driver. This communication * uses the SAP protocol defined in another file. * iwlwifi can request or release ownership on the WiFi device through iwlmei. * iwlmei may notify iwlwifi about certain events: what filter iwlwifi should * use to passthrough inbound packets to the CSME firmware for example. iwlmei * may also use iwlwifi to send traffic. This means that we need communication * from iwlmei to iwlwifi and the other way around. */ /** * DOC: Life cycle * * iwlmei exports symbols that are needed by iwlwifi so that iwlmei will always * be loaded when iwlwifi is alive. iwlwifi registers itself to iwlmei and * provides the pointers to the functions that iwlmei calls whenever needed. * iwlwifi calls iwlmei through direct and context-free function calls. * It is assumed that only one device is accessible to the CSME firmware and * under the scope of iwlmei so that it is valid not to have any context passed * to iwlmei's functions. * * There are cases in which iwlmei can't access the CSME firmware, because the * CSME firmware is undergoing a reset, or the mei bus decided to unbind the * device. In those cases, iwlmei will need not to send requests over the mei * bus. Instead, it needs to cache the requests from iwlwifi and fulfill them * when the mei bus is available again. * * iwlmei can call iwlwifi as long as iwlwifi is registered to iwlmei. When * iwlwifi goes down (the PCI device is unbound, or the iwlwifi is unloaded) * iwlwifi needs to unregister from iwlmei. */ /** * DOC: Memory layout * * Since iwlwifi calls iwlmei without any context, iwlmei needs to hold a * global pointer to its data (which is in the mei client device's private * data area). If there was no bind on the mei bus, this pointer is NULL and * iwlmei knows not access to the CSME firmware upon requests from iwlwifi. * * iwlmei needs to cache requests from iwlwifi when there is no mei client * device available (when iwlmei has been removed from the mei bus). In this * case, all iwlmei's data that resides in the mei client device's private data * area is unavailable. For this specific case, a separate caching area is * needed. */ /** * DOC: Concurrency * * iwlwifi can call iwlmei at any time. iwlmei will take care to synchronize * the calls from iwlwifi with its internal flows. iwlwifi must not call iwlmei * in flows that cannot sleep. Moreover, iwlwifi must not call iwlmei in flows * that originated from iwlmei. */ /** * DOC: Probe and remove from mei bus driver * * When the mei bus driver enumerates its devices, it calls the iwlmei's probe * function which will send the %SAP_ME_MSG_START message. The probe completes * before the response (%SAP_ME_MSG_START_OK) is received. This response will * be handle by the Rx path. Once it arrives, the connection to the CSME * firmware is considered established and iwlwifi's requests can be treated * against the CSME firmware. * * When the mei bus driver removes the device, iwlmei loses all the data that * was attached to the mei client device. It clears the global pointer to the * mei client device since it is not available anymore. This will cause all the * requests coming from iwlwifi to be cached. This flow takes the global mutex * to be synchronized with all the requests coming from iwlwifi. */ /** * DOC: Driver load when CSME owns the device * * When the driver (iwlwifi) is loaded while CSME owns the device, * it'll ask CSME to release the device through HW registers. CSME * will release the device only in the case that there is no connection * through the mei bus. If there is a mei bus connection, CSME will refuse * to release the ownership on the device through the HW registers. In that * case, iwlwifi must first request ownership using the SAP protocol. * * Once iwlwifi will request ownership through the SAP protocol, CSME will * grant the ownership on the device through the HW registers as well. * In order to request ownership over SAP, we first need to have an interface * which means that we need to register to mac80211. * This can't happen before we get the NVM that contains all the capabilities * of the device. Reading the NVM usually requires the load the firmware, but * this is impossible as long as we don't have ownership on the device. * In order to solve this chicken and egg problem, the host driver can get * the NVM through CSME which owns the device. It can send * %SAP_MSG_NOTIF_GET_NVM, which will be replied by %SAP_MSG_NOTIF_NVM with * the NVM's content that the host driver needs. */ /** * DOC: CSME behavior regarding the ownership requests * * The ownership requests from the host can come in two different ways: * - the HW registers in iwl_pcie_set_hw_ready * - using the Software Arbitration Protocol (SAP) * * The host can ask CSME who owns the device with %SAP_MSG_NOTIF_WHO_OWNS_NIC, * and it can request ownership with %SAP_MSG_NOTIF_HOST_ASKS_FOR_NIC_OWNERSHIP. * The host will first use %SAP_MSG_NOTIF_WHO_OWNS_NIC to know what state * CSME is in. In case CSME thinks it owns the device, the host can ask for * ownership with %SAP_MSG_NOTIF_HOST_ASKS_FOR_NIC_OWNERSHIP. * * Here the table that describes CSME's behavior upon ownership request: * * +-------------------+------------+--------------+-----------------------------+------------+ * | State | HW reg bit | Reply for | Event | HW reg bit | * | | before | WHO_OWNS_NIC | | after | * +===================+============+==============+=============================+============+ * | WiAMT not | 0 | Host | HW register or | 0 | * | operational | Host owner | | HOST_ASKS_FOR_NIC_OWNERSHIP | Host owner | * +-------------------+------------+--------------+-----------------------------+------------+ * | Operational & | 1 | N/A | HW register | 0 | * | SAP down & | CSME owner | | | Host owner | * | no session active | | | | | * +-------------------+------------+--------------+-----------------------------+------------+ * | Operational & | 1 | CSME | HW register | 1 | * | SAP up | CSME owner | | | CSME owner | * +-------------------+------------+--------------+-----------------------------+------------+ * | Operational & | 1 | CSME | HOST_ASKS_FOR_NIC_OWNERSHIP | 0 | * | SAP up | CSME owner | | | Host owner | * +-------------------+------------+--------------+-----------------------------+------------+ */ /** * DOC: Driver load when CSME is associated and a session is active * * A "session" is active when CSME is associated to an access point and the * link is used to attach a remote driver or to control the system remotely. * When a session is active, we want to make sure it won't disconnect when we * take ownership on the device. * In this case, the driver can get the device, but it'll need to make * sure that it'll connect to the exact same AP (same BSSID). * In order to do so, CSME will send the connection parameters through * SAP and then the host can check if it can connect to this same AP. * If yes, it can request ownership through SAP and connect quickly without * scanning all the channels, but just probing the AP on the channel that * CSME was connected to. * In order to signal this specific scenario to iwlwifi, iwlmei will * immediately require iwlwifi to report RF-Kill to the network stack. This * RF-Kill will prevent the stack from getting the device, and it has a reason * that tells the userspace that the device is in RF-Kill because it is not * owned by the host. Once the userspace has configured the right profile, * it'll be able to let iwlmei know that it can request ownership over SAP * which will remove the RF-Kill, and finally allow the host to connect. * The host has then 3 seconds to connect (including DHCP). Had the host * failed to connect within those 3 seconds, CSME will take the device back. */ /** * DOC: Datapath * * CSME can transmit packets, through the netdev that it gets from the wifi * driver. It'll send packet in the 802.3 format and simply call * dev_queue_xmit. * * For Rx, iwlmei registers a Rx handler that it attaches to the netdev. iwlmei * may catch packets and send them to CSME, it can then either drop them so * that they are invisible to user space, or let them go the user space. * * Packets transmitted by the user space do not need to be forwarded to CSME * with the exception of the DHCP request. In order to know what IP is used * by the user space, CSME needs to get the DHCP request. See * iwl_mei_tx_copy_to_csme(). */ /** * enum iwl_mei_nvm_caps - capabilities for MEI NVM * @MEI_NVM_CAPS_LARI_SUPPORT: Lari is supported * @MEI_NVM_CAPS_11AX_SUPPORT: 11AX is supported */ enum iwl_mei_nvm_caps { MEI_NVM_CAPS_LARI_SUPPORT = BIT(0), MEI_NVM_CAPS_11AX_SUPPORT = BIT(1), }; /** * struct iwl_mei_nvm - used to pass the NVM from CSME * @hw_addr: The MAC address * @n_hw_addrs: The number of MAC addresses * @reserved: For alignment. * @radio_cfg: The radio configuration. * @caps: See &enum iwl_mei_nvm_caps. * @nvm_version: The version of the NVM. * @channels: The data for each channel. * * If a field is added, it must correspond to the SAP structure. */ struct iwl_mei_nvm { u8 hw_addr[ETH_ALEN]; u8 n_hw_addrs; u8 reserved; u32 radio_cfg; u32 caps; u32 nvm_version; u32 channels[110]; }; /** * enum iwl_mei_pairwise_cipher - cipher for UCAST key * @IWL_MEI_CIPHER_NONE: none * @IWL_MEI_CIPHER_TKIP: tkip * @IWL_MEI_CIPHER_CCMP: ccmp * @IWL_MEI_CIPHER_GCMP: gcmp * @IWL_MEI_CIPHER_GCMP_256: gcmp 256 * * Note that those values are dictated by the CSME firmware API (see sap.h) */ enum iwl_mei_pairwise_cipher { IWL_MEI_CIPHER_NONE = 0, IWL_MEI_CIPHER_TKIP = 2, IWL_MEI_CIPHER_CCMP = 4, IWL_MEI_CIPHER_GCMP = 8, IWL_MEI_CIPHER_GCMP_256 = 9, }; /** * enum iwl_mei_akm_auth - a combination of AKM and AUTH method * @IWL_MEI_AKM_AUTH_OPEN: No encryption * @IWL_MEI_AKM_AUTH_RSNA: 1X profile * @IWL_MEI_AKM_AUTH_RSNA_PSK: PSK profile * @IWL_MEI_AKM_AUTH_SAE: SAE profile * * Note that those values are dictated by the CSME firmware API (see sap.h) */ enum iwl_mei_akm_auth { IWL_MEI_AKM_AUTH_OPEN = 0, IWL_MEI_AKM_AUTH_RSNA = 6, IWL_MEI_AKM_AUTH_RSNA_PSK = 7, IWL_MEI_AKM_AUTH_SAE = 9, }; /** * struct iwl_mei_conn_info - connection info * @lp_state: link protection state * @auth_mode: authentication mode * @ssid_len: the length of SSID * @ssid: the SSID * @pairwise_cipher: the cipher used for unicast packets * @channel: the associated channel * @band: the associated band * @bssid: the BSSID */ struct iwl_mei_conn_info { u8 lp_state; u8 auth_mode; u8 ssid_len; u8 channel; u8 band; u8 pairwise_cipher; u8 bssid[ETH_ALEN]; u8 ssid[IEEE80211_MAX_SSID_LEN]; }; /** * struct iwl_mei_colloc_info - collocated AP info * @channel: the channel of the collocated AP * @bssid: the BSSID of the collocated AP */ struct iwl_mei_colloc_info { u8 channel; u8 bssid[ETH_ALEN]; }; /* * struct iwl_mei_ops - driver's operations called by iwlmei * Operations will not be called more than once concurrently. * It's not allowed to call iwlmei functions from this context. * * @me_conn_status: provide information about CSME's current connection. * @rfkill: called when the wifi driver should report a change in the rfkill * status. * @roaming_forbidden: indicates whether roaming is forbidden. * @sap_connected: indicate that SAP is now connected. Will be called in case * the wifi driver registered to iwlmei before SAP connection succeeded or * when the SAP connection is re-established. * @nic_stolen: this means that device is no longer available. The device can * still be used until the callback returns. */ struct iwl_mei_ops { void (*me_conn_status)(void *priv, const struct iwl_mei_conn_info *conn_info); void (*rfkill)(void *priv, bool blocked); void (*roaming_forbidden)(void *priv, bool forbidden); void (*sap_connected)(void *priv); void (*nic_stolen)(void *priv); }; #if IS_ENABLED(CONFIG_IWLMEI) /** * iwl_mei_is_connected() - is the connection to the CSME firmware established? * * Return: true if we have a SAP connection */ bool iwl_mei_is_connected(void); /** * iwl_mei_get_nvm() - returns the NVM for the device * * It is the caller's responsibility to free the memory returned * by this function. * This function blocks (sleeps) until the NVM is ready. * * Return: the NVM as received from CSME */ struct iwl_mei_nvm *iwl_mei_get_nvm(void); /** * iwl_mei_get_ownership() - request ownership * * This function blocks until ownership is granted or timeout expired. * * Return: 0 in case we could get ownership on the device */ int iwl_mei_get_ownership(void); /** * iwl_mei_set_rfkill_state() - set SW and HW RF kill states * @hw_rfkill: HW RF kill state. * @sw_rfkill: SW RF kill state. * * This function must be called when SW RF kill is issued by the user. */ void iwl_mei_set_rfkill_state(bool hw_rfkill, bool sw_rfkill); /** * iwl_mei_set_nic_info() - set mac address * @mac_address: mac address to set * @nvm_address: NVM mac address to set * * This function must be called upon mac address change. */ void iwl_mei_set_nic_info(const u8 *mac_address, const u8 *nvm_address); /** * iwl_mei_set_country_code() - set new country code * @mcc: the new applied MCC * * This function must be called upon country code update */ void iwl_mei_set_country_code(u16 mcc); /** * iwl_mei_set_power_limit() - set TX power limit * @power_limit: pointer to an array of 10 elements (le16) represents the power * restrictions per chain. * * This function must be called upon power restrictions change */ void iwl_mei_set_power_limit(const __le16 *power_limit); /** * iwl_mei_register() - register the wifi driver to iwlmei * @priv: a pointer to the wifi driver's context. Cannot be NULL. * @ops: the ops structure. * * Return: 0 unless something went wrong. It is illegal to call any * other API function before this function is called and succeeds. * * Only one wifi driver instance (wifi device instance really) * can register at a time. */ int iwl_mei_register(void *priv, const struct iwl_mei_ops *ops); /** * iwl_mei_start_unregister() - unregister the wifi driver from iwlmei * * From this point on, iwlmei will not used the callbacks provided by * the driver, but the device is still usable. */ void iwl_mei_start_unregister(void); /** * iwl_mei_unregister_complete() - complete the unregistration * * Must be called after iwl_mei_start_unregister. When this function returns, * the device is owned by CSME. */ void iwl_mei_unregister_complete(void); /** * iwl_mei_set_netdev() - sets the netdev for Tx / Rx. * @netdev: the net_device * * The caller should set the netdev to a non-NULL value when the * interface is added. Packets might be sent to the driver immediately * afterwards. * The caller should set the netdev to NULL when the interface is removed. * This function will call synchronize_net() after setting the netdev to NULL. * Only when this function returns, can the caller assume that iwlmei will * no longer inject packets into the netdev's Tx path. * * Context: This function can sleep and assumes rtnl_lock is taken. * The netdev must be set to NULL before iwl_mei_start_unregister() is called. */ void iwl_mei_set_netdev(struct net_device *netdev); /** * iwl_mei_tx_copy_to_csme() - must be called for each packet sent by * the wifi driver. * @skb: the skb sent * @ivlen: the size of the IV that needs to be skipped after the MAC and * before the SNAP header. * * This function doesn't take any lock, it simply tries to catch DHCP * packets sent by the wifi driver. If the packet is a DHCP packet, it * will send it to CSME. This function must not be called for virtual * interfaces that are not monitored by CSME, meaning it must be called * only for packets transmitted by the netdevice that was registered * with iwl_mei_set_netdev(). */ void iwl_mei_tx_copy_to_csme(struct sk_buff *skb, unsigned int ivlen); /** * iwl_mei_host_associated() - must be called when iwlwifi associated. * @conn_info: pointer to the connection info structure. * @colloc_info: pointer to the collocated AP info. This is relevant only in * case of UHB associated AP, otherwise set to NULL. */ void iwl_mei_host_associated(const struct iwl_mei_conn_info *conn_info, const struct iwl_mei_colloc_info *colloc_info); /** * iwl_mei_host_disassociated() - must be called when iwlwifi disassociated. */ void iwl_mei_host_disassociated(void); /** * iwl_mei_device_state() - must be called when the device changes up/down state * @up: true if the device is up, false otherwise. */ void iwl_mei_device_state(bool up); /** * iwl_mei_pldr_req() - must be called before loading the fw * * Return: 0 if the PLDR flow was successful and the fw can be loaded, negative * value otherwise. */ int iwl_mei_pldr_req(void); /** * iwl_mei_alive_notif() - must be called when alive notificaiton is received * @success: true if received alive notification, false if waiting for the * notificaiton timed out. */ void iwl_mei_alive_notif(bool success); #else static inline bool iwl_mei_is_connected(void) { return false; } static inline struct iwl_mei_nvm *iwl_mei_get_nvm(void) { return NULL; } static inline int iwl_mei_get_ownership(void) { return 0; } static inline void iwl_mei_set_rfkill_state(bool hw_rfkill, bool sw_rfkill) {} static inline void iwl_mei_set_nic_info(const u8 *mac_address, const u8 *nvm_address) {} static inline void iwl_mei_set_country_code(u16 mcc) {} static inline void iwl_mei_set_power_limit(__le16 *power_limit) {} static inline int iwl_mei_register(void *priv, const struct iwl_mei_ops *ops) { return 0; } static inline void iwl_mei_start_unregister(void) {} static inline void iwl_mei_unregister_complete(void) {} static inline void iwl_mei_set_netdev(struct net_device *netdev) {} static inline void iwl_mei_tx_copy_to_csme(struct sk_buff *skb, unsigned int ivlen) {} static inline void iwl_mei_host_associated(const struct iwl_mei_conn_info *conn_info, const struct iwl_mei_colloc_info *colloc_info) {} static inline void iwl_mei_host_disassociated(void) {} static inline void iwl_mei_device_state(bool up) {} static inline int iwl_mei_pldr_req(void) { return 0; } static inline void iwl_mei_alive_notif(bool success) {} #endif /* CONFIG_IWLMEI */ #endif /* __iwl_mei_h__ */ |