diff options
author | wonhee <wonhee48.seo@samsung.com> | 2011-09-30 18:23:14 +0900 |
---|---|---|
committer | Benoit Goby <benoit@android.com> | 2011-09-30 13:11:35 -0700 |
commit | f9d1181512fe790709035536cce11873e94cd1d2 (patch) | |
tree | 8f599047bd84bd4c86f7d1a73530c49ebcc0d8f8 /arch/arm/mach-omap2/board-tuna-modems.c | |
parent | c457d5156e7f63f8464c8eb9e70a6f662d2c7807 (diff) | |
download | kernel_samsung_tuna-f9d1181512fe790709035536cce11873e94cd1d2.zip kernel_samsung_tuna-f9d1181512fe790709035536cce11873e94cd1d2.tar.gz kernel_samsung_tuna-f9d1181512fe790709035536cce11873e94cd1d2.tar.bz2 |
misc: modem_if: Add io device for AT CMD channel
1. Add 'cdma_rmnet6' iodevice for AT CMD request by RIL.
- Verizon CPE Lab requires handling AT command for SVLTE Test
- Simultaneous data and voice call is tested by sending the following AT commands automatically
: Reset (+CFUN)
: Answer 1x voice call(+ATA)
: Dial 1x voice call(+CDV)
: Hang-up/end 1x voice call (+CHV)
: Mute during 1x voice call
: Internet PDN attach(+CGATT)
: Internet PDN Detach(+CGACT)
- Thus, interface code needs to be changed for forwarding AT command to modem
2. Need permission 'radio' for accessing by ril.
Change-Id: I6523b189aeccc4b541211e951fc6857280d30c55
Signed-off-by: wonhee <wonhee48.seo@samsung.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-tuna-modems.c')
-rwxr-xr-x[-rw-r--r--] | arch/arm/mach-omap2/board-tuna-modems.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-tuna-modems.c b/arch/arm/mach-omap2/board-tuna-modems.c index 194596e..d895f3b 100644..100755 --- a/arch/arm/mach-omap2/board-tuna-modems.c +++ b/arch/arm/mach-omap2/board-tuna-modems.c @@ -309,6 +309,13 @@ static struct modem_io_t cdma_io_devices[] = { .io_type = IODEV_MISC, .link = LINKDEV_DPRAM, }, + [10] = { + .name = "cdma_rmnet6", /* AT CMD io-device */ + .id = 0x31, + .format = IPC_RAW, + .io_type = IODEV_MISC, + .link = LINKDEV_DPRAM, + }, }; /* cdma target platform data */ |