diff options
author | Vitaly Lubart <vitaly.lubart@intel.com> | 2021-09-24 21:14:37 +0200 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@intel.com> | 2021-10-04 19:10:17 +0200 |
commit | c2004ce99ed73788755d61b7b691ff072fdada20 (patch) | |
tree | 22b013241919d72ba61952d25e6af319c6bc51d6 /drivers/misc/mei/pxp/mei_pxp.h | |
parent | drm/i915/pxp: Define PXP component interface (diff) | |
download | linux-c2004ce99ed73788755d61b7b691ff072fdada20.tar.xz linux-c2004ce99ed73788755d61b7b691ff072fdada20.zip |
mei: pxp: export pavp client to me client bus
Export PAVP client to work with i915 driver,
for binding it uses kernel component framework.
v2:drop debug prints, refactor match code to match mei_hdcp (Tomas)
Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210924191452.1539378-3-alan.previn.teres.alexis@intel.com
Diffstat (limited to 'drivers/misc/mei/pxp/mei_pxp.h')
-rw-r--r-- | drivers/misc/mei/pxp/mei_pxp.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/misc/mei/pxp/mei_pxp.h b/drivers/misc/mei/pxp/mei_pxp.h new file mode 100644 index 000000000000..e7b15373fefd --- /dev/null +++ b/drivers/misc/mei/pxp/mei_pxp.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Copyright © 2020 Intel Corporation + * + * Authors: + * Vitaly Lubart <vitaly.lubart@intel.com> + */ + +#ifndef __MEI_PXP_H__ +#define __MEI_PXP_H__ + +/* me_pxp_status: Enumeration of all PXP Status Codes */ +enum me_pxp_status { + ME_PXP_STATUS_SUCCESS = 0x0000, + +}; + +#endif /* __MEI_PXP_H__ */ |