mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-30 12:13:51 -04:00
Update Qualcomm copyrights per current legal guidance. Assisted-by: Claude:claude-sonnet-4-6 Link: https://patch.msgid.link/20260608-ath12k-copyright-v2-2-37504d70b03c@oss.qualcomm.com Signed-off-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
28 lines
603 B
C
28 lines
603 B
C
/* SPDX-License-Identifier: BSD-3-Clause-Clear */
|
|
/*
|
|
* Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
*/
|
|
|
|
#ifndef ATH11K_FW_H
|
|
#define ATH11K_FW_H
|
|
|
|
#define ATH11K_FW_API2_FILE "firmware-2.bin"
|
|
#define ATH11K_FIRMWARE_MAGIC "QCOM-ATH11K-FW"
|
|
|
|
enum ath11k_fw_ie_type {
|
|
ATH11K_FW_IE_TIMESTAMP = 0,
|
|
ATH11K_FW_IE_FEATURES = 1,
|
|
ATH11K_FW_IE_AMSS_IMAGE = 2,
|
|
ATH11K_FW_IE_M3_IMAGE = 3,
|
|
};
|
|
|
|
enum ath11k_fw_features {
|
|
/* keep last */
|
|
ATH11K_FW_FEATURE_COUNT,
|
|
};
|
|
|
|
int ath11k_fw_pre_init(struct ath11k_base *ab);
|
|
void ath11k_fw_destroy(struct ath11k_base *ab);
|
|
|
|
#endif /* ATH11K_FW_H */
|