#define INTEL_GSC_NUM_INTERFACES 2 /* * The HECI1 bit corresponds to bit15 and HECI2 to bit14. * The reason for this is to allow growth for more interfaces in the future.
*/ #define GSC_IRQ_INTF(_x) BIT(15 - (_x))
/** * struct intel_gsc - graphics security controller * * @intf: gsc interface * @intf.adev: MEI aux. device for this @intf * @intf.gem_obj: scratch memory GSC operations * @intf.irq: IRQ for this device (%-1 for no IRQ) * @intf.id: this interface's id number/index
*/ struct intel_gsc { struct intel_gsc_intf { struct mei_aux_device *adev; struct drm_i915_gem_object *gem_obj; int irq; unsignedint id;
} intf[INTEL_GSC_NUM_INTERFACES];
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.