All of lore.kernel.org
 help / color / mirror / Atom feed
* CDMA voicecall driver
@ 2013-06-20  0:24 TengChou Yang
  2013-06-21 15:58 ` Denis Kenzior
  2013-06-25  2:11 ` Forest Bond
  0 siblings, 2 replies; 6+ messages in thread
From: TengChou Yang @ 2013-06-20  0:24 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 574 bytes --]

Hi all,
I am currently working on Sierra modem (MC5728V). Looks like CDMA is not
fully supported for the voicecall yet.
What I see from ofono master branch there are only probe, remove, dial,
hangup had been implemented. I am working
on other's method step by step. I am wondering is it worth it to change the
dbus service path from org.ofono.cdma.voicecallmanager
to org.ofono.voicecallmanager? In this case, application doesn't need to
care about it's GSM modem or CDMA modem,
what they need to do is connecting to the same dbus path.
Sincerely,
TengChou Yang

[-- Attachment #2: attachment.html --]
[-- Type: text/html, Size: 710 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: CDMA voicecall driver
  2013-06-20  0:24 CDMA voicecall driver TengChou Yang
@ 2013-06-21 15:58 ` Denis Kenzior
  2013-06-21 17:49   ` Yang TengChou
  2013-06-25  2:11 ` Forest Bond
  1 sibling, 1 reply; 6+ messages in thread
From: Denis Kenzior @ 2013-06-21 15:58 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 982 bytes --]

Hi,

On 06/19/2013 07:24 PM, TengChou Yang wrote:
> Hi all,
> I am currently working on Sierra modem (MC5728V). Looks like CDMA is not
> fully supported for the voicecall yet.
> What I see from ofono master branch there are only probe, remove, dial,
> hangup had been implemented. I am working
> on other's method step by step. I am wondering is it worth it to change
> the dbus service path from org.ofono.cdma.voicecallmanager

Err, that is not a dbus service path.  The service path is always the 
same, org.ofono.  What you're referring to is the dbus interface name.

> to org.ofono.voicecallmanager? In this case, application doesn't need to
> care about it's GSM modem or CDMA modem,
> what they need to do is connecting to the same dbus path.

No, the API has been specifically designed to separate CDMA and GSM 
details.  There are too many differences in the two systems and their 
respective capabilities to mash them together.

Regards,
-Denis


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: CDMA voicecall driver
  2013-06-21 17:49   ` Yang TengChou
@ 2013-06-21 17:04     ` Denis Kenzior
  2013-06-21 19:44       ` Yang TengChou
  0 siblings, 1 reply; 6+ messages in thread
From: Denis Kenzior @ 2013-06-21 17:04 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 978 bytes --]

Hi,

 > They do have a lot of differences but not in dbus method layer. For
> example,
> ofono_voicecall_driver has methods like dial, answer, hangup all,
> hold_all_active...etc,
> I believe cdma will have almost same methods like GSM. When we are using
> them in
> application layer, we will call the same method name but different kind
> of modem driver.
> I am wondering why ofono created two different interface name and provide
> the same call method?

The basics are the same, sure.  However, once you get into the details 
of three way calls, call waiting, multiparty calls, etc the logic and 
API becomes vastly different.

Not to mention the various differences between carriers and their 
specific extensions.

Bottom line is, compared to insanity of GSM/UMTS, CDMA is even more of a 
mess and the API needs to evolve on its own.  In the future, if it makes 
sense to unify them, then we can do so.  That time is not now.

Regards,
-Denis


^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: CDMA voicecall driver
  2013-06-21 15:58 ` Denis Kenzior
@ 2013-06-21 17:49   ` Yang TengChou
  2013-06-21 17:04     ` Denis Kenzior
  0 siblings, 1 reply; 6+ messages in thread
From: Yang TengChou @ 2013-06-21 17:49 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1834 bytes --]

Hi Denis,

> Date: Fri, 21 Jun 2013 10:58:53 -0500
> From: denkenz(a)gmail.com
> To: ofono(a)ofono.org
> Subject: Re: CDMA voicecall driver
> 
> Hi,
> 
> On 06/19/2013 07:24 PM, TengChou Yang wrote:
> > Hi all,
> > I am currently working on Sierra modem (MC5728V). Looks like CDMA is not
> > fully supported for the voicecall yet.
> > What I see from ofono master branch there are only probe, remove, dial,
> > hangup had been implemented. I am working
> > on other's method step by step. I am wondering is it worth it to change
> > the dbus service path from org.ofono.cdma.voicecallmanager
> 
> Err, that is not a dbus service path.  The service path is always the 
> same, org.ofono.  What you're referring to is the dbus interface name.
> 
Thanks for the correction, I was referring to interface name.
> > to org.ofono.voicecallmanager? In this case, application doesn't need to
> > care about it's GSM modem or CDMA modem,
> > what they need to do is connecting to the same dbus path.
> 
> No, the API has been specifically designed to separate CDMA and GSM 
> details.  There are too many differences in the two systems and their 
> respective capabilities to mash them together.
They do have a lot of differences but not in dbus method layer. For example, ofono_voicecall_driver has methods like dial, answer, hangup all, hold_all_active...etc, I believe cdma will have almost same methods like GSM. When we are using them in application layer, we will call the same method name but different kind of modem driver.I am wondering why ofono created two different interface name and providethe same call method?
> 
> Regards,
> -Denis
> 
> _______________________________________________
> ofono mailing list
> ofono(a)ofono.org
> https://lists.ofono.org/mailman/listinfo/ofono
 		 	   		  

[-- Attachment #2: attachment.html --]
[-- Type: text/html, Size: 2862 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: CDMA voicecall driver
  2013-06-21 17:04     ` Denis Kenzior
@ 2013-06-21 19:44       ` Yang TengChou
  0 siblings, 0 replies; 6+ messages in thread
From: Yang TengChou @ 2013-06-21 19:44 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1399 bytes --]

> Date: Fri, 21 Jun 2013 12:04:04 -0500
> From: denkenz(a)gmail.com
> To: ofono(a)ofono.org
> Subject: Re: CDMA voicecall driver
> 
> Hi,
> 
>  > They do have a lot of differences but not in dbus method layer. For
> > example,
> > ofono_voicecall_driver has methods like dial, answer, hangup all,
> > hold_all_active...etc,
> > I believe cdma will have almost same methods like GSM. When we are using
> > them in
> > application layer, we will call the same method name but different kind
> > of modem driver.
> > I am wondering why ofono created two different interface name and provide
> > the same call method?
> 
> The basics are the same, sure.  However, once you get into the details 
> of three way calls, call waiting, multiparty calls, etc the logic and 
> API becomes vastly different.
> 
> Not to mention the various differences between carriers and their 
> specific extensions.
> 
> Bottom line is, compared to insanity of GSM/UMTS, CDMA is even more of a 
> mess and the API needs to evolve on its own.  In the future, if it makes 
> sense to unify them, then we can do so.  That time is not now.
>> Regards,
> -Denis
> 
> _______________________________________________
> ofono mailing list
> ofono(a)ofono.org
> https://lists.ofono.org/mailman/listinfo/ofono

Hi Denis,I get it. Thanks a lot for your answer.
Sincerely,TengChou Yang 		 	   		  

[-- Attachment #2: attachment.html --]
[-- Type: text/html, Size: 1947 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: CDMA voicecall driver
  2013-06-20  0:24 CDMA voicecall driver TengChou Yang
  2013-06-21 15:58 ` Denis Kenzior
@ 2013-06-25  2:11 ` Forest Bond
  1 sibling, 0 replies; 6+ messages in thread
From: Forest Bond @ 2013-06-25  2:11 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 553 bytes --]

Hi,

On Wed, Jun 19, 2013 at 05:24:50PM -0700, TengChou Yang wrote:
> Hi all,
> I am currently working on Sierra modem (MC5728V). Looks like CDMA is not fully
> supported for the voicecall yet.

I did not do anything with voicecall functionality, but you may want to look at
my (not accepted) Sierra Wireless CDMA patches from earlier this year.  I am
also using the MC5728V.

https://lists.ofono.org/pipermail/ofono/2012-December/013981.html

Thanks,
Forest
-- 
Forest Bond
http://www.alittletooquiet.net
http://www.rapidrollout.com

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-06-25  2:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-20  0:24 CDMA voicecall driver TengChou Yang
2013-06-21 15:58 ` Denis Kenzior
2013-06-21 17:49   ` Yang TengChou
2013-06-21 17:04     ` Denis Kenzior
2013-06-21 19:44       ` Yang TengChou
2013-06-25  2:11 ` Forest Bond

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.