Merge a17a340ddd594ab125002b330a51860cb0943e20 on remote branch
Change-Id: I1190524a89277f0ccbb23d678e0971137cfb17fc
diff --git a/fmapp2/res/values/arrays.xml b/fmapp2/res/values/arrays.xml
index ad30a85..cda326c 100644
--- a/fmapp2/res/values/arrays.xml
+++ b/fmapp2/res/values/arrays.xml
@@ -343,8 +343,7 @@
</string-array>
<string-array name="cfg_rf1">
- <item> Set FM RSSI Delta</item>
- <item> Set Signal Threshold</item>
+ <item> Set RSSI Threshold</item>
<item> RF Statistics</item>
</string-array>
diff --git a/fmapp2/src/com/caf/fmradio/FMStats.java b/fmapp2/src/com/caf/fmradio/FMStats.java
index fadeef2..2042052 100644
--- a/fmapp2/src/com/caf/fmradio/FMStats.java
+++ b/fmapp2/src/com/caf/fmradio/FMStats.java
@@ -355,6 +355,9 @@
this, R.array.cfg_rf2,
android.R.layout.simple_spinner_item);
}else {
+ /* default RFstats app support,used for richwave FM chip
+ * set rssi threshold supported
+ */
mSpinCfgRfListener1 = new CfgRfItemSelectedListener1();
adaptCfgRf = ArrayAdapter.createFromResource(
this, R.array.cfg_rf1,
@@ -390,6 +393,9 @@
mColumnHeader.setFreq("Freq");
mColumnHeader.setRSSI("RMSSI");
mColumnHeader.setSINR("SINR");
+ } else if(isHastingsChip()) {
+ mColumnHeader.setFreq("Freq");
+ mColumnHeader.setRSSI("RSSI");
} else {
mColumnHeader.setFreq("Freq");
mColumnHeader.setRSSI("RMSSI");
@@ -482,10 +488,10 @@
if (lastCmdSent == CMD_STNDBGPARAM_INFDETOUT)
nIntDet = msg.arg1;
}
- synchronized (obj) {
- obj.notify();
- }
- break;
+ synchronized (obj) {
+ obj.notify();
+ }
+ break;
default:
Log.e(LOGTAG, "mCallbackHandler:Default");
break;
@@ -717,24 +723,6 @@
}
}
- private View.OnClickListener mOnSetRmssitListener =
- new View.OnClickListener() {
- public void onClick(View v) {
- String a;
- a = txtbox1.getText().toString();
- try {
- int rdel = Integer.parseInt(a);
- Log.d(LOGTAG, "Value of RMSSI DELTA is : " + rdel);
- mReceiver.setRmssiDel(rdel);
- }catch (NumberFormatException e) {
- Log.e(LOGTAG, "Value entered is not in correct format: " + a);
- txtbox1.setText("");
- }catch (NullPointerException e) {
- e.printStackTrace();
- }
- }
- };
-
private View.OnClickListener mOnSetRxRePeatCount = new View.OnClickListener() {
public void onClick(View v) {
String a;
@@ -805,24 +793,6 @@
}
};
- private View.OnClickListener mOnSetSigThListener =
- new View.OnClickListener() {
- public void onClick(View v) {
- String a;
- a = txtbox1.getText().toString();
- try {
- int rdel = Integer.parseInt(a);
- Log.d(LOGTAG, "Value of Signal Th. is : " + rdel);
- mReceiver.setSignalThreshold(rdel);
- }catch (NumberFormatException e) {
- Log.e(LOGTAG, "Value entered is not in correct format: " + a);
- txtbox1.setText("");
- }catch (NullPointerException e) {
- e.printStackTrace();
- }
- }
- };
-
private View.OnClickListener mOnSetSinrSmplCntListener =
new View.OnClickListener() {
public void onClick(View v) {
@@ -1139,7 +1109,7 @@
}
};
- private View.OnClickListener mOnSetRssiThListenerSilabs =
+ private View.OnClickListener mOnSetRssiThListener =
new View.OnClickListener() {
public void onClick(View v) {
String a;
@@ -1221,31 +1191,16 @@
txtbox1.setVisibility(View.VISIBLE);
}
if (tv1 != null) {
- tv1.setText(R.string.enter_rssi);
+ tv1.setText(R.string.enter_RssiTh);
tv1.setVisibility(View.VISIBLE);
}
if (SetButton != null) {
- SetButton.setText(R.string.set_rmmsi_delta);
+ SetButton.setText(R.string.set_RssiTh);
SetButton.setVisibility(View.VISIBLE);
- SetButton.setOnClickListener(mOnSetRmssitListener);
+ SetButton.setOnClickListener(mOnSetRssiThListener);
}
break;
case 1:
- if (txtbox1 != null) {
- txtbox1.setText(R.string.type_rd);
- txtbox1.setVisibility(View.VISIBLE);
- }
- if (tv1 != null) {
- tv1.setText(R.string.enter_sigth);
- tv1.setVisibility(View.VISIBLE);
- }
- if (SetButton != null) {
- SetButton.setText(R.string.set_sigth);
- SetButton.setVisibility(View.VISIBLE);
- SetButton.setOnClickListener(mOnSetSigThListener);
- }
- break;
- case 2:
tLayout.removeAllViewsInLayout();
mNewRowIds = NEW_ROW_ID;
tLayout.setVisibility(View.VISIBLE);
@@ -2000,7 +1955,7 @@
if (SetButton != null) {
SetButton.setText(R.string.set_RssiTh);
SetButton.setVisibility(View.VISIBLE);
- SetButton.setOnClickListener(mOnSetRssiThListenerSilabs);
+ SetButton.setOnClickListener(mOnSetRssiThListener);
}
break;
case 3:
@@ -2911,6 +2866,14 @@
return false;
}
+ private boolean isHastingsChip() {
+ String chip = mReceiver.getSocName();
+
+ if(chip.equals("hastings"))
+ return true;
+ return false;
+ }
+
private void createResult(Result aRes) {
// Get the TableLayout
TableLayout tl = (TableLayout) findViewById(R.id.maintable);
@@ -2943,7 +2906,7 @@
colRMSSI.setWidth(width/4);
tr2.addView(colRMSSI);
- if(!isRomeChip()) {
+ if(!isRomeChip() && !isHastingsChip()) {
TextView colIoC = new TextView(getApplicationContext());
colIoC.setText(aRes.getIoC());
colIoC.setTextSize(TypedValue.COMPLEX_UNIT_SP, 25);
@@ -2958,13 +2921,6 @@
colSINR.setTextSize(TypedValue.COMPLEX_UNIT_SP, 25);
colSINR.setWidth(width/4);
tr2.addView(colSINR);
- } else
- {
- TextView colMpxDcc = new TextView(getApplicationContext());
- colMpxDcc.setText(aRes.getMpxDcc());
- colMpxDcc.setTextSize(TypedValue.COMPLEX_UNIT_SP, 25);
- colMpxDcc.setWidth(width/4);
- tr2.addView(colMpxDcc);
}
/* Add row to TableLayout. */
/* Add row to TableLayout. */
@@ -2978,7 +2934,7 @@
tempStr.append(String.format("%10s", aRes.getFreq()));
tempStr.append(String.format("%10s", aRes.getRSSI()));
- if(!isRomeChip()) {
+ if(!isRomeChip() && !isHastingsChip()) {
tempStr.append(String.format("%10s", aRes.getIoC()));
tempStr.append(String.format("%10s", aRes.getIntDet()));
}
@@ -2986,10 +2942,8 @@
if(isTransportLayerSMD() || isRomeChip() || isCherokeeChip())
{
tempStr.append(String.format("%10s", aRes.getSINR()));
- } else
- {
- tempStr.append(String.format("%10s", aRes.getMpxDcc()));
}
+
tempStr.append("\r\n");
String testStr = new String(tempStr);
mFileCursor.write(testStr.getBytes());
@@ -3292,7 +3246,7 @@
e.printStackTrace();
}
- if(!isRomeChip()) {
+ if(!isRomeChip() && !isHastingsChip()) {
try {
if (isCherokeeChip) {
mService.getIoC();
@@ -3341,21 +3295,9 @@
} catch (Exception e) {
e.printStackTrace();
}
- } else {
- try {
- nMpxDcc = mService.getMpxDcc();
- if (nMpxDcc != Integer.MAX_VALUE)
- result.setMpxDcc(Integer.toString(nMpxDcc));
- else
- return null;
- } catch (RemoteException e) {
- e.printStackTrace();
- } catch (Exception e) {
- e.printStackTrace();
- }
}
- if(!isRomeChip()) {
+ if(!isRomeChip() && !isHastingsChip()) {
try {
if (isCherokeeChip) {
mService.getIntDet();
diff --git a/jni/android_hardware_fm.cpp b/jni/android_hardware_fm.cpp
index bb0b25e..1a5cbba 100644
--- a/jni/android_hardware_fm.cpp
+++ b/jni/android_hardware_fm.cpp
@@ -164,6 +164,7 @@
jmethodID method_getStnDbgParamCallback;
jmethodID method_enableSlimbusCallback;
jmethodID method_enableSoftMuteCallback;
+jmethodID method_FmReceiverJNICtor;
int load_bt_configstore_lib();
@@ -188,9 +189,10 @@
} else {
if (mCallbackEnv != NULL) {
ALOGE("javaObjectRef creating");
- jobject javaObjectRef = mCallbackEnv->NewObject(javaClassRef, method_enableCallback);
+ jobject javaObjectRef = mCallbackEnv->NewObject(javaClassRef, method_FmReceiverJNICtor);
mCallbacksObj = javaObjectRef;
ALOGE("javaObjectRef = %p mCallbackobject =%p \n",javaObjectRef,mCallbacksObj);
+ mCallbackEnv->CallVoidMethod(mCallbacksObj, method_enableCallback);
}
}
ALOGD("exit %s", __func__);
@@ -550,12 +552,13 @@
static void fm_enable_slimbus_cb(int status)
{
- ALOGD("++fm_enable_slimbus_cb mCallbacksObjCreated: %d", mCallbacksObjCreated);
+ ALOGD("++fm_enable_slimbus_cb mCallbacksObjCreatedtor: %d", mCallbacksObjCreated);
slimbus_flag = 1;
if (mCallbacksObjCreated == false) {
- jobject javaObjectRef = mCallbackEnv->NewObject(javaClassRef, method_enableSlimbusCallback);
+ jobject javaObjectRef = mCallbackEnv->NewObject(javaClassRef, method_FmReceiverJNICtor);
mCallbacksObj = javaObjectRef;
mCallbacksObjCreated = true;
+ mCallbackEnv->CallVoidMethod(mCallbacksObj, method_enableSlimbusCallback, status);
return;
}
@@ -660,17 +663,37 @@
fm_enable_softmute_cb
};
/* native interface */
+
+static bool is_soc_pronto() {
+ if(strcmp(soc_name, "pronto") == 0)
+ return true;
+ else
+ return false;
+}
+
+static void get_property(int ptype, char *value)
+{
+ std::vector<vendor_property_t> vPropList;
+ bt_configstore_intf->get_vendor_properties(ptype, vPropList);
+
+ for (auto&& vendorProp : vPropList) {
+ if (vendorProp.type == ptype) {
+ strlcpy(value, vendorProp.value,PROPERTY_VALUE_MAX);
+ }
+ }
+}
+
static jint android_hardware_fmradio_FmReceiverJNI_acquireFdNative
(JNIEnv* env, jobject thiz, jstring path)
{
int fd;
int i, retval=0, err;
char value[PROPERTY_VALUE_MAX] = {'\0'};
- char versionStr[40] = {'\0'};
int init_success = 0;
jboolean isCopy;
v4l2_capability cap;
const char* radio_path = env->GetStringUTFChars(path, &isCopy);
+
if(radio_path == NULL){
return FM_JNI_FAILURE;
}
@@ -686,39 +709,33 @@
ALOGD("VIDIOC_QUERYCAP returns :%d: version: %d \n", err , cap.version );
- if( err >= 0 ) {
- ALOGD("Driver Version(Same as ChipId): %x \n", cap.version );
- /*Conver the integer to string */
- snprintf(versionStr, sizeof(versionStr), "%d", cap.version);
- property_set("vendor.hw.fm.version", versionStr);
- } else {
- close(fd);
- return FM_JNI_FAILURE;
- }
-
- if ((strcmp(soc_name, "rome") != 0) && (strcmp(soc_name, "hastings") != 0))
+ if (is_soc_pronto())
{
/*Set the mode for soc downloader*/
- property_set("vendor.hw.fm.mode", "normal");
- /* Need to clear the hw.fm.init firstly */
- property_set("vendor.hw.fm.init", "0");
- property_set("ctl.start", "fm_dl");
- sched_yield();
- for(i=0; i<45; i++) {
- property_get("vendor.hw.fm.init", value, NULL);
- if (strcmp(value, "1") == 0) {
- init_success = 1;
- break;
- } else {
- usleep(WAIT_TIMEOUT);
- }
- }
- ALOGE("init_success:%d after %f seconds \n", init_success, 0.2*i);
- if(!init_success) {
- property_set("ctl.stop", "fm_dl");
- // close the fd(power down)
- close(fd);
- return FM_JNI_FAILURE;
+ if (bt_configstore_intf != NULL) {
+ bt_configstore_intf->set_vendor_property(FM_PROP_HW_MODE, "normal");
+
+ /* Need to clear the hw.fm.init firstly */
+ bt_configstore_intf->set_vendor_property(FM_PROP_HW_INIT, "0");
+ bt_configstore_intf->set_vendor_property(FM_PROP_CTL_START, "fm_dl");
+
+ sched_yield();
+ for(i=0; i<45; i++) {
+ get_property(FM_PROP_HW_INIT, value);
+ if (strcmp(value, "1") == 0) {
+ init_success = 1;
+ break;
+ } else {
+ usleep(WAIT_TIMEOUT);
+ }
+ }
+ ALOGE("init_success:%d after %f seconds \n", init_success, 0.2*i);
+ if(!init_success) {
+ bt_configstore_intf->set_vendor_property(FM_PROP_CTL_STOP,"fm_dl");
+ // close the fd(power down)
+ close(fd);
+ return FM_JNI_FAILURE;
+ }
}
}
return fd;
@@ -732,9 +749,9 @@
int cleanup_success = 0;
char retval =0;
- if ((strcmp(soc_name, "rome") != 0) && (strcmp(soc_name, "hastings") != 0))
+ if (is_soc_pronto() && bt_configstore_intf != NULL)
{
- property_set("ctl.stop", "fm_dl");
+ bt_configstore_intf->set_vendor_property(FM_PROP_CTL_STOP,"fm_dl");
}
close(fd);
return FM_JNI_SUCCESS;
@@ -746,6 +763,7 @@
else
return false;
}
+
/********************************************************************
* Current JNI
*******************************************************************/
@@ -1201,29 +1219,33 @@
int band;
int err = 0;
- if ((strcmp(soc_name, "rome") != 0) && (strcmp(soc_name, "hastings") != 0))
+ if (is_soc_pronto() && bt_configstore_intf != NULL)
{
- /*Enable/Disable the WAN avoidance*/
- property_set("vendor.hw.fm.init", "0");
- if (aValue)
- property_set("vendor.hw.fm.mode", "wa_enable");
- else
- property_set("vendor.hw.fm.mode", "wa_disable");
+ /* Need to clear the hw.fm.init firstly */
+ bt_configstore_intf->set_vendor_property(FM_PROP_HW_INIT, "0");
- property_set("ctl.start", "fm_dl");
- sched_yield();
- for(i=0; i<10; i++) {
- property_get("vendor.hw.fm.init", value, NULL);
- if (strcmp(value, "1") == 0) {
- init_success = 1;
- break;
- } else {
- usleep(WAIT_TIMEOUT);
- }
- }
+ /*Enable/Disable the WAN avoidance*/
+ if (aValue)
+ bt_configstore_intf->set_vendor_property(FM_PROP_HW_MODE, "wa_enable");
+ else
+ bt_configstore_intf->set_vendor_property(FM_PROP_HW_MODE, "wa_disable");
+
+ bt_configstore_intf->set_vendor_property(FM_PROP_CTL_START, "fm_dl");
+
+ sched_yield();
+ for(i=0; i<10; i++) {
+ get_property(FM_PROP_HW_INIT, value);
+
+ if (strcmp(value, "1") == 0) {
+ init_success = 1;
+ break;
+ } else {
+ usleep(WAIT_TIMEOUT);
+ }
+ }
ALOGE("init_success:%d after %f seconds \n", init_success, 0.2*i);
- property_get("vendor.notch.value", notch, NULL);
+ get_property(FM_PROP_NOTCH_VALUE, notch);
ALOGE("Notch = %s",notch);
if (!strncmp("HIGH",notch,strlen("HIGH")))
band = HIGH_BAND;
@@ -1253,33 +1275,10 @@
/* native interface */
static jint android_hardware_fmradio_FmReceiverJNI_setAnalogModeNative(JNIEnv * env, jobject thiz, jboolean aValue)
{
- int i=0;
- char value[PROPERTY_VALUE_MAX] = {'\0'};
- char firmwareVersion[80];
-
- if ((strcmp(soc_name, "rome") != 0) && (strcmp(soc_name, "hastings") != 0))
- {
- /*Enable/Disable Analog Mode FM*/
- property_set("vendor.hw.fm.init", "0");
- property_set("vendor.hw.fm.mode","config_dac");
- property_set("ctl.start", "fm_dl");
- sched_yield();
- for(i=0; i<10; i++) {
- property_get("vendor.hw.fm.init", value, NULL);
- if (strcmp(value, "1") == 0) {
- return 1;
- } else {
- usleep(WAIT_TIMEOUT);
- }
- }
- }
-
+ /*DAC configuration is applicable only msm7627a target*/
return 0;
}
-
-
-
/*
* Interfaces added for Tx
*/
@@ -1702,6 +1701,7 @@
method_getStnDbgParamCallback = env->GetMethodID(javaClassRef, "getStnDbgParamCallback", "(II)V");
method_enableSlimbusCallback = env->GetMethodID(javaClassRef, "enableSlimbusCallback", "(I)V");
method_enableSoftMuteCallback = env->GetMethodID(javaClassRef, "enableSoftMuteCallback", "(I)V");
+ method_FmReceiverJNICtor = env->GetMethodID(javaClassRef,"<init>","()V");
return;
error:
diff --git a/qcom/fmradio/FmReceiverJNI.java b/qcom/fmradio/FmReceiverJNI.java
index 6d36b19..9d6c273 100644
--- a/qcom/fmradio/FmReceiverJNI.java
+++ b/qcom/fmradio/FmReceiverJNI.java
@@ -58,7 +58,7 @@
static native void initNative();
static native void cleanupNative();
- final private FmRxEvCallbacks mCallback;
+ private FmRxEvCallbacks mCallback;
static private final int STD_BUF_SIZE = 256;
static private byte[] mRdsBuffer = new byte[STD_BUF_SIZE];
@@ -315,6 +315,10 @@
initNative();
}
+ public FmReceiverJNI() {
+ Log.d(TAG, "FmReceiverJNI constructor called");
+ }
+
static native int acquireFdNative(String path);
/**