annotate loadtools/compaldummy.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 2e699aa67f03
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
423
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
1 /*
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
2 * If you need to build a version of loadtools without compalstage support,
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
3 * e.g., because you are building for GTA01/02 AP, substitute this dummy
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
4 * module in the place of compalload.c to get a passing build.
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
5 */
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
6
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
7 void
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
8 set_compalstage_short()
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
9 {
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
10 }
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
11
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
12 void
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
13 set_compalstage_fullpath()
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
14 {
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
15 }
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
16
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
17 perform_compal_stage()
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
18 {
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
19 return(0);
2e699aa67f03 loadtools: GTA02 AP build updated
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
20 }