Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e32003b authored by Hridya Valsaraju's avatar Hridya Valsaraju
Browse files

Move .hal file for FMQ tests to harware/interfaces

This is required to convert to the new hidl-gen.

Change-Id: I87a5d3d006fe80ad16d4abb63d400b3c52a2bae9
parent 6a7412ef
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE := android.hardware.tests.msgq@1.0
LOCAL_MODULE_CLASS := SHARED_LIBRARIES

intermediates := $(local-generated-sources-dir)

HIDL := $(HOST_OUT_EXECUTABLES)/hidl-gen$(HOST_EXECUTABLE_SUFFIX)

#
# Build ITestMsgQ.hal
#
GEN := $(intermediates)/android/hardware/tests/msgq/1.0/TestMsgQAll.cpp
$(GEN): $(HIDL)
$(GEN): PRIVATE_HIDL := $(HIDL)
$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/ITestMsgQ.hal
$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates)
$(GEN): PRIVATE_CUSTOM_TOOL = \
    $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \
    -Lc++ -randroid.hardware:hardware/interfaces\
    android.hardware.tests.msgq@1.0::$(patsubst %.hal,%,$(notdir $(PRIVATE_DEPS)))

$(GEN): $(LOCAL_PATH)/ITestMsgQ.hal
	$(transform-generated-source)
LOCAL_GENERATED_SOURCES += $(GEN)

LOCAL_EXPORT_C_INCLUDE_DIRS := $(intermediates)
LOCAL_SHARED_LIBRARIES := \
  libhwbinder \
  libutils \

include $(BUILD_SHARED_LIBRARY)
+28 −0
Original line number Diff line number Diff line
package android.hardware.tests.msgq@1.0;

interface ITestMsgQ {

  struct shm_t {
    uint32_t fdIndex;
    uint32_t offset;
    uint32_t extent;
  };
  struct WireGrantorDescriptor {
    uint32_t flags;
    shm_t shm;
  };

  struct WireMQDescriptor {
    vec<WireGrantorDescriptor> grantors;
    handle mq_handle;
    uint32_t quantum;
    uint32_t nQuanta;
    uint32_t flags;
  };


  configure() generates ( WireMQDescriptor mq_desc );
  requestWrite (int32_t count) generates (int32_t ret);
  requestRead(int32_t count) generates (int32_t ret);

};