jni: Skip loading FM firmware if requested
Not all boards require a firmware download for FM. Set
TARGET_QCOM_NO_FM_FIRMWARE if the device doesn't require
a fw image to run FM
Change-Id: If18650af934f840a54f53fa9474a3341df0e3e68
jni: Confine the firmware-load skipping to the actual loading
Change If18650af934f840a54f53fa9474a3341df0e3e68 removed the
property-setting steps from the initialization routine. Bring it
back, as we may want to use those properties to trigger module
state changes from init. The recommended flow for devices with
the latest IRIS driver is the following:
on property:vendor.hw.fm.init=0
write /sys/module/radio_iris_transport/parameters/fmsmd_set 0
on property:vendor.hw.fm.init=1
write /sys/module/radio_iris_transport/parameters/fmsmd_set 1
Change-Id: Ifddf678398fec2e4bfa9688c044da7d75898e056
diff --git a/jni/Android.mk b/jni/Android.mk
index b536356..1a029ca 100644
--- a/jni/Android.mk
+++ b/jni/Android.mk
@@ -28,6 +28,10 @@
LOCAL_CFLAGS += -DFM_LEGACY_PATCHLOADER
endif
+ifeq ($(TARGET_QCOM_NO_FM_FIRMWARE),true)
+ LOCAL_CFLAGS += -DQCOM_NO_FM_FIRMWARE
+endif
+
include $(BUILD_SHARED_LIBRARY)
diff --git a/jni/android_hardware_fm.cpp b/jni/android_hardware_fm.cpp
index 7ee0273..27dd2a0 100644
--- a/jni/android_hardware_fm.cpp
+++ b/jni/android_hardware_fm.cpp
@@ -656,7 +656,7 @@
(JNIEnv* env, jobject thiz, jstring path)
{
int fd;
- int i, retval=0, err;
+ int i = 0, retval=0, err;
char value[PROPERTY_VALUE_MAX] = {'\0'};
char versionStr[40] = {'\0'};
int init_success = 0;
@@ -698,6 +698,7 @@
property_set("vendor.hw.fm.mode", "normal");
/* Need to clear the hw.fm.init firstly */
property_set("vendor.hw.fm.init", "0");
+#ifndef QCOM_NO_FM_FIRMWARE
property_set("ctl.start", "fm_dl");
sched_yield();
for(i=0; i<45; i++) {
@@ -709,6 +710,11 @@
usleep(WAIT_TIMEOUT);
}
}
+#else
+ property_set("vendor.hw.fm.init", "1");
+ usleep(WAIT_TIMEOUT);
+ init_success = 1;
+#endif
ALOGE("init_success:%d after %f seconds \n", init_success, 0.2*i);
if(!init_success) {
property_set("ctl.stop", "fm_dl");
@@ -1202,7 +1208,9 @@
static jint android_hardware_fmradio_FmReceiverJNI_setNotchFilterNative(JNIEnv * env, jobject thiz,jint fd, jint id, jboolean aValue)
{
char value[PROPERTY_VALUE_MAX] = {'\0'};
+#ifndef QCOM_NO_FM_FIRMWARE
int init_success = 0,i;
+#endif
char notch[PROPERTY_VALUE_MAX] = {0x00};
int band;
int err = 0;
@@ -1220,6 +1228,7 @@
else
property_set("vendor.hw.fm.mode", "wa_disable");
+#ifndef QCOM_NO_FM_FIRMWARE
property_set("ctl.start", "fm_dl");
sched_yield();
for(i=0; i<10; i++) {
@@ -1232,6 +1241,9 @@
}
}
ALOGE("init_success:%d after %f seconds \n", init_success, 0.2*i);
+#else
+ usleep(WAIT_TIMEOUT);
+#endif
property_get("vendor.notch.value", notch, NULL);
ALOGE("Notch = %s",notch);