davinci: power: Prepare HAL extension

Change-Id: Ia2fcbb47d61970521eb4b3da769f4f160580c61a
This commit is contained in:
Arian 2020-04-09 14:39:57 +02:00
parent d884716edc
commit b2d6a22c11
No known key found for this signature in database
GPG Key ID: 48029380598CE3B9
4 changed files with 71 additions and 0 deletions

View File

@ -95,6 +95,9 @@ TARGET_COPY_OUT_VENDOR := vendor
# Platform
TARGET_BOARD_PLATFORM := sm6150
# Power
TARGET_POWER_SET_FEATURE_LIB := libpower_feature.davinci
# QCOM
BOARD_USES_QCOM_HARDWARE := true

28
power/Android.mk Normal file
View File

@ -0,0 +1,28 @@
#
# Copyright (C) 2020 The LineageOS Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := power-feature.c
LOCAL_SHARED_LIBRARIES := liblog libcutils
LOCAL_MODULE := libpower_feature.davinci
LOCAL_MODULE_TAGS := optional
LOCAL_VENDOR_MODULE := true
include $(BUILD_STATIC_LIBRARY)

23
power/power-feature.c Normal file
View File

@ -0,0 +1,23 @@
/*
* Copyright (C) 2020 The LineageOS Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "power-feature.h"
#include <log/log.h>
void set_device_specific_feature(feature_t feature, int state) {
// stub
}

17
power/power-feature.h Normal file
View File

@ -0,0 +1,17 @@
/*
* Copyright (C) 2020 The LineageOS Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define LOG_TAG "libpower_feature.davinci"