aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-msm/proc_comm.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2010-05-12arm: msm: smd: fix SMD modem processor sync conditionDaniel Walker1-1/+14
When booting up we need to wait for the modem processor to partially boot. This is because the modem processor does resource allocation for us. If we don't wait the modem won't honor our requests and we end up crashing or in an unknown state. This change just formalizes the waiting process. Signed-off-by: Daniel Walker <c_dwalke@quicinc.com>
2010-05-12arm: msm: correctly signal the apps-to-modem irq in smd/proc_commDima Zavin1-2/+9
Signed-off-by: Dima Zavin <dima@android.com> Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
2008-10-22[ARM] msm: add proc_comm support, necessary for clock and power controlBrian Swetland1-0/+110
The proc_comm protocol is the lowest level protocol available for communicating with the modem core. It provides access to clock and power control, among other things, and is safe for use from atomic contexts, unlike the higher level SMD and RPC transports. Signed-off-by: Brian Swetland <swetland@google.com>