pcu_l1_if_phy: add new PHY API function to disconnect PDCH

There is a function l1if_connect_pdch, but no complementary function
like we have it with l1if_open_pdch and l1if_close_pdch. The reason for
this is that the PHY implementations that rely on a femtocell DSP do not
need to disconnect the pdch explcitly. However, the planned support for
the E1 based Ercisson RBS CCU will require an explicit disconnect. So
lets add a function call for this.

Change-Id: Ied88f3289bda87c48f5f9255c4591470633cc805
Related: OS#5198
diff --git a/tests/alloc/AllocTest.cpp b/tests/alloc/AllocTest.cpp
index 21fa6f2..08f5910 100644
--- a/tests/alloc/AllocTest.cpp
+++ b/tests/alloc/AllocTest.cpp
@@ -861,6 +861,7 @@
 extern "C" {
 void l1if_pdch_req() { abort(); }
 void l1if_connect_pdch() { abort(); }
+void l1if_disconnect_pdch() { abort(); }
 void l1if_close_pdch() { abort(); }
 void l1if_open_pdch() { abort(); }
 }
diff --git a/tests/alloc/MslotTest.cpp b/tests/alloc/MslotTest.cpp
index 1b06b0b..1d5ff97 100644
--- a/tests/alloc/MslotTest.cpp
+++ b/tests/alloc/MslotTest.cpp
@@ -175,6 +175,7 @@
 extern "C" {
 void l1if_pdch_req() { abort(); }
 void l1if_connect_pdch() { abort(); }
+void l1if_disconnect_pdch() { abort(); }
 void l1if_close_pdch() { abort(); }
 void l1if_open_pdch() { abort(); }
 }
diff --git a/tests/app_info/AppInfoTest.cpp b/tests/app_info/AppInfoTest.cpp
index 668b081..659c011 100644
--- a/tests/app_info/AppInfoTest.cpp
+++ b/tests/app_info/AppInfoTest.cpp
@@ -198,6 +198,7 @@
 extern "C" {
 void l1if_pdch_req() { abort(); }
 void l1if_connect_pdch() { abort(); }
+void l1if_disconnect_pdch() { abort(); }
 void l1if_close_pdch() { abort(); }
 void l1if_open_pdch() { abort(); }
 }
diff --git a/tests/edge/EdgeTest.cpp b/tests/edge/EdgeTest.cpp
index dd318c0..4cc7960 100644
--- a/tests/edge/EdgeTest.cpp
+++ b/tests/edge/EdgeTest.cpp
@@ -1427,6 +1427,7 @@
 extern "C" {
 void l1if_pdch_req() { abort(); }
 void l1if_connect_pdch() { abort(); }
+void l1if_disconnect_pdch() { abort(); }
 void l1if_close_pdch() { abort(); }
 void l1if_open_pdch() { abort(); }
 }
diff --git a/tests/emu/pcu_emu.cpp b/tests/emu/pcu_emu.cpp
index b08c31d..c1ccf07 100644
--- a/tests/emu/pcu_emu.cpp
+++ b/tests/emu/pcu_emu.cpp
@@ -170,6 +170,7 @@
 extern "C" {
 void l1if_pdch_req() { abort(); }
 void l1if_connect_pdch() { abort(); }
+void l1if_disconnect_pdch() { abort(); }
 void l1if_close_pdch() { abort(); }
 void l1if_open_pdch() { abort(); }
 }
diff --git a/tests/fn/FnTest.cpp b/tests/fn/FnTest.cpp
index ae15164..f4b998c 100644
--- a/tests/fn/FnTest.cpp
+++ b/tests/fn/FnTest.cpp
@@ -171,6 +171,8 @@
 		abort();
 	} void l1if_connect_pdch() {
 		abort();
+	} void l1if_disconnect_pdch() {
+		abort();
 	}
 	void l1if_close_pdch() {
 		abort();
diff --git a/tests/llc/LlcTest.cpp b/tests/llc/LlcTest.cpp
index bdc5863..547dc79 100644
--- a/tests/llc/LlcTest.cpp
+++ b/tests/llc/LlcTest.cpp
@@ -381,6 +381,7 @@
 extern "C" {
 void l1if_pdch_req() { abort(); }
 void l1if_connect_pdch() { abort(); }
+void l1if_disconnect_pdch() { abort(); }
 void l1if_close_pdch() { abort(); }
 void l1if_open_pdch() { abort(); }
 }
diff --git a/tests/ms/MsTest.cpp b/tests/ms/MsTest.cpp
index cbafee9..6a770c9 100644
--- a/tests/ms/MsTest.cpp
+++ b/tests/ms/MsTest.cpp
@@ -661,6 +661,7 @@
 extern "C" {
 void l1if_pdch_req() { abort(); }
 void l1if_connect_pdch() { abort(); }
+void l1if_disconnect_pdch() { abort(); }
 void l1if_close_pdch() { abort(); }
 void l1if_open_pdch() { abort(); }
 }
diff --git a/tests/tbf/TbfTest.cpp b/tests/tbf/TbfTest.cpp
index aa3c121..0b2e868 100644
--- a/tests/tbf/TbfTest.cpp
+++ b/tests/tbf/TbfTest.cpp
@@ -3517,6 +3517,7 @@
 extern "C" {
 void l1if_pdch_req() { abort(); }
 void l1if_connect_pdch() { abort(); }
+void l1if_disconnect_pdch() { abort(); }
 void l1if_close_pdch() { abort(); }
 void l1if_open_pdch() { abort(); }
 }
diff --git a/tests/types/TypesTest.cpp b/tests/types/TypesTest.cpp
index c728af1..a4f6db6 100644
--- a/tests/types/TypesTest.cpp
+++ b/tests/types/TypesTest.cpp
@@ -975,6 +975,7 @@
 extern "C" {
 void l1if_pdch_req() { abort(); }
 void l1if_connect_pdch() { abort(); }
+void l1if_disconnect_pdch() { abort(); }
 void l1if_close_pdch() { abort(); }
 void l1if_open_pdch() { abort(); }
 }
diff --git a/tests/ulc/PdchUlcTest.cpp b/tests/ulc/PdchUlcTest.cpp
index a199311..44aef34 100644
--- a/tests/ulc/PdchUlcTest.cpp
+++ b/tests/ulc/PdchUlcTest.cpp
@@ -338,6 +338,8 @@
 		abort();
 	} void l1if_connect_pdch() {
 		abort();
+	} void l1if_disconnect_pdch() {
+		abort();
 	}
 	void l1if_close_pdch() {
 		abort();