1 /* 2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef DEVMGR_SERVICE_STUB_H 17 #define DEVMGR_SERVICE_STUB_H 18 19 #include "hdf_remote_service.h" 20 #include "devmgr_service_full.h" 21 #include "osal_mutex.h" 22 23 #define DEVICE_MANAGER_SERVICE "hdf_device_manager" 24 25 struct DevmgrServiceStub { 26 struct DevmgrServiceFull super; 27 struct HdfRemoteService *remote; 28 struct OsalMutex devmgrStubMutx; 29 }; 30 31 enum { 32 DEVMGR_SERVICE_ATTACH_DEVICE_HOST = 1, 33 DEVMGR_SERVICE_ATTACH_DEVICE, 34 DEVMGR_SERVICE_DETACH_DEVICE, 35 DEVMGR_SERVICE_LOAD_DEVICE, 36 DEVMGR_SERVICE_UNLOAD_DEVICE, 37 DEVMGR_SERVICE_QUERY_DEVICE, 38 DEVMGR_SERVICE_LIST_ALL_DEVICE, 39 }; 40 41 struct HdfObject *DevmgrServiceStubCreate(void); 42 void DevmgrServiceStubRelease(struct HdfObject *object); 43 44 #endif /* DEVMGR_SERVICE_STUB_H */ 45