annotate gsm-fw/g23m-aci/aci/version_dummy.c @ 923:10b4bed10192

gsm-fw/L1: fix for the DSP patch corruption bug The L1 code we got from the LoCosto fw contains a feature for DSP CPU load measurement. This feature is a LoCosto-ism, i.e., not applicable to earlier DBB chips (Calypso) with their respective earlier DSP ROMs. Most of the code dealing with that feature is conditionalized as #if (DSP >= 38), but one spot was missed, and the MCU code was writing into an API word dealing with this feature. In TCS211 this DSP API word happens to be used by the DSP code patch, hence that write was corrupting the patched DSP code.
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Mon, 19 Oct 2015 17:13:56 +0000
parents 02c65d76881f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
827
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
1 char *aci_version()
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
2 {
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
3 return "ACI version is FreeCalypso";
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
4 }
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
5
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
6 char *alr_version()
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
7 {
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
8 return "ALR version is FreeCalypso";
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
9 }
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
10
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
11 char *cc_version()
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
12 {
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
13 return "CC version is FreeCalypso";
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
14 }
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
15
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
16 char *dl_version()
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
17 {
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
18 return "DL version is FreeCalypso";
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
19 }
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
20
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
21 char *mm_version()
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
22 {
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
23 return "MM version is FreeCalypso";
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
24 }
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
25
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
26 char *rr_version()
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
27 {
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
28 return "RR version is FreeCalypso";
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
29 }
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
30
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
31 char *sim_version()
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
32 {
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
33 return "SIM version is FreeCalypso";
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
34 }
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
35
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
36 char *sms_version()
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
37 {
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
38 return "SMS version is FreeCalypso";
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
39 }
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
40
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
41 char *ss_version()
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
42 {
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
43 return "SS version is FreeCalypso";
02c65d76881f progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff changeset
44 }