Files
cubelinux-kernel/include/drm/intel/intel_lb_mei_interface.h
T
Greg Kroah-Hartman 598cf27219 Linux 6.19.3
Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com>
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com>
Tested-by: Peter Schneider <pschneider1968@googlemail.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Salvatore Bonaccorso <carnil@debian.org>
Tested-by: Brett A C Sheffield <bacs@librecast.net>
Tested-by: Mark Brown <broonie@kernel.org>
Tested-by: Luna Jernberg <droidbittin@gmail.com>
Tested-by: Ronald Warsow <rwarsow@gmx.de>
Tested-by: Justin M. Forbes <jforbes@fedoraproject.org>
Tested-by: Ron Economos <re@w6rz.net>
Tested-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2026-02-19 16:33:27 +01:00

71 lines
2.4 KiB
C

/* SPDX-License-Identifier: MIT */
/*
* Copyright (c) 2025 Intel Corporation
*/
#ifndef _INTEL_LB_MEI_INTERFACE_H_
#define _INTEL_LB_MEI_INTERFACE_H_
#include <linux/types.h>
struct device;
/**
* define INTEL_LB_FLAG_IS_PERSISTENT - Mark the payload as persistent
*
* This flag indicates that the late binding payload should be stored
* persistently in flash across warm resets.
*/
#define INTEL_LB_FLAG_IS_PERSISTENT BIT(0)
/**
* enum intel_lb_type - enum to determine late binding payload type
* @INTEL_LB_TYPE_FAN_CONTROL: Fan controller configuration
*/
enum intel_lb_type {
INTEL_LB_TYPE_FAN_CONTROL = 1,
};
/**
* enum intel_lb_status - Status codes returned on late binding transmissions
* @INTEL_LB_STATUS_SUCCESS: Operation completed successfully
* @INTEL_LB_STATUS_4ID_MISMATCH: Mismatch in the expected 4ID (firmware identity/token)
* @INTEL_LB_STATUS_ARB_FAILURE: Arbitration failure (e.g. conflicting access or state)
* @INTEL_LB_STATUS_GENERAL_ERROR: General firmware error not covered by other codes
* @INTEL_LB_STATUS_INVALID_PARAMS: One or more input parameters are invalid
* @INTEL_LB_STATUS_INVALID_SIGNATURE: Payload has an invalid or untrusted signature
* @INTEL_LB_STATUS_INVALID_PAYLOAD: Payload contents are not accepted by firmware
* @INTEL_LB_STATUS_TIMEOUT: Operation timed out before completion
*/
enum intel_lb_status {
INTEL_LB_STATUS_SUCCESS = 0,
INTEL_LB_STATUS_4ID_MISMATCH = 1,
INTEL_LB_STATUS_ARB_FAILURE = 2,
INTEL_LB_STATUS_GENERAL_ERROR = 3,
INTEL_LB_STATUS_INVALID_PARAMS = 4,
INTEL_LB_STATUS_INVALID_SIGNATURE = 5,
INTEL_LB_STATUS_INVALID_PAYLOAD = 6,
INTEL_LB_STATUS_TIMEOUT = 7,
};
/**
* struct intel_lb_component_ops - Ops for late binding services
*/
struct intel_lb_component_ops {
/**
* push_payload - Sends a payload to the authentication firmware
* @dev: Device struct corresponding to the mei device
* @type: Payload type (see &enum intel_lb_type)
* @flags: Payload flags bitmap (e.g. %INTEL_LB_FLAGS_IS_PERSISTENT)
* @payload: Pointer to payload buffer
* @payload_size: Payload buffer size in bytes
*
* Return: 0 success, negative errno value on transport failure,
* positive status returned by firmware
*/
int (*push_payload)(struct device *dev, u32 type, u32 flags,
const void *payload, size_t payload_size);
};
#endif /* _INTEL_LB_MEI_INTERFACE_H_ */