FreeCalypso > hg > freecalypso-sw
view loadtools/gtapower.c @ 884:353daaa6014d
gsm-fw/gpf/conf/gsmcomp.c: increased max partition in the voice-only config
The code we got from TCS211 had the maximum prim pool partition size set to
900 bytes in the voice-only config (no FAX_AND_DATA, no GPRS) and to 1600 bytes
in every other config. As it turns out, this "minimized" config breaks when
the AT command interface is used with %CPI enabled, as the responsible code in
ATI does an ACI_MALLOC of 1012 bytes. TI may have considered this case to be
unsupported usage (perhaps they didn't care about the combination of a
voice-only PS with AT command control), but we do want this use case to work
without crashing. Solution: I made the largest prim pool the same as it is
with FAX_AND_DATA: 3 partitions of 1600 bytes.
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 27 Jun 2015 07:31:30 +0000 |
parents | ccc5161848c7 |
children |
line wrap: on
line source
/* * This module is included only when loadtools are being built to run on the * GTA0x application processor (AP). It provides automated modem power * control, i.e., coordinates modem power control with loadtools operations * for convenience. */ #include <sys/types.h> #include <sys/file.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> /* * Check this pathname: it is correct for the kernel version I'm using * on my test GTA02, but it differs for some other kernel versions. */ static char modem_powerctl_pathname[] = "/sys/bus/platform/devices/gta02-pm-gsm.0/power_on"; void set_gta_modem_power_ctrl(boolval) { char strbuf[16]; int len, fd; len = sprintf(strbuf, "%d\n", boolval); fd = open(modem_powerctl_pathname, O_WRONLY); if (fd < 0) { perror(modem_powerctl_pathname); exit(1); } write(fd, strbuf, len); close(fd); } void fork_gta_modem_poweron() { int i; i = fork(); if (i < 0) { perror("fork"); exit(1); } if (i) return; printf("Toggling %s\n", modem_powerctl_pathname); set_gta_modem_power_ctrl(0); usleep(350000); set_gta_modem_power_ctrl(1); exit(0); }