AN2197 - Implementing The Levinson-Durbin Algorithm On The StarCore SC140 - SC1400 Cores
AN2197 - Implementing The Levinson-Durbin Algorithm On The StarCore SC140 - SC1400 Cores
Rev. 1, 1/2005
Application Note
1 Vocoder Recommendations
Low bit rate speech coders used in digital communications systems use audio signal compression to eliminate
redundancy, thus reducing bandwidth. ITU-T has proposed several algorithms for speech signal coding at a low bit
rate. This section surveys the vocoders for which the Levinson-Durbin algorithm was implemented and optimized.
These include ITU-T Recommendations G.723-1, G.729, and G.729A, as well as the ETSI GSM EFR vocoder.
2 Freescale Semiconductor
Vocoder Recommendations
The encoder analyzes the speech signal to extract the CELP model parameters, which include linear prediction
filter coefficients and adaptive and fixed-codebook indices and gains. These parameters are transmitted to the
decoder. The decoder uses the CELP parameters to retrieve the excitation and synthesis filter parameters
corresponding to a 10 ms frame. The speech is reconstructed by passing the excitation signal through a short-term
synthesis filter based on a 10th order linear prediction filter. During the LP analysis, the LP coefficients are
converted to line spectrum pairs (LSP) and then quantized using predictive two-stage vector quantization (VQ)
with 18 bits. The fixed and adaptive codebook parameters are computed for every 5 ms (40-sample) sub-frame.
The long-term synthesis filter uses the adaptive-codebook approach. A postfilter enhances the reconstructed
speech.
Freescale Semiconductor 3
Background Theory
2 Background Theory
Linear prediction analysis characterizes the shape of the spectrum of a short segment of speech with a small
number of parameters for efficient coding. Linear prediction, also referred to as linear prediction coding (LPC),
predicts a time-domain speech sample based on a linearly-weighted combination of previous samples. LP analysis
removes the redundancy in the short-term correlation of adjacent samples.
LPC determines the coefficients of a FIR filter that predicts the next value in a sequence from current and the
previous inputs. This type of filter is also known as a one-step forward linear predictor. LP analysis is based on the
all-pole filter described in Equation 1:
1 - = --------------------------------------
1
H ( z ) = ---------- Equation 1
A(z) p
–k
1 – ∑ ak ⋅ z
k 1
where {a k ( 1 ≤k ≤p ) } are the predictor coefficients and p is the order of the filter.
Transforming Equation 1 to the time-domain, as shown in Equation 2, predicts a speech sample based on a sum of
weighted past samples.
p
s′ ( n ) = ∑ ak ⋅ s(n – k) Equation 2
k=1
where s′ ( n ) is the predicted value based on the previous values of the speech signal s ( n ) .
LP analysis requires estimating the LP parameters for a segment of speech. The idea is to find a k ⋅ s so that
Equation 2 provides the closest approximation to the speech samples. This means that s′ ( n ) is closest to s ( n ) for
all values of n in the segment. The spectral shape of s ( n ) is assumed to be stationary across the frame, or a short
segment of speech.
The error, e , between the predicted value and the actual value is
e ( n ) = s ( n ) – s′ ( n Equation 3
2
E = ∑e (n) Equation 4
n
where 0 ≤n ≤N + p – 1 .
The minimum value of E occurs when the derivative is zero with respect to each of the parameters a k . By setting
the partial derivatives of E , a set of p equations are obtained. The matrix form of these equations is
4 Freescale Semiconductor
Background Theory
The Levinson-Durbin algorithm solves the nth order system of linear equations
R⋅ a = b Equation 7
for the particular case where R is a Hermitian, positive-definite, Toeplitz matrix and b is identical to the first
column of R shifted by one element.
The autocorrelation coefficients r ( k ) are used to compute the LP filter coefficients a i , i = 1…p , by solving the
set of equations
p
∑ ai ⋅ r( i – k ) = r(k) Equation 8
i=1
where k = 1…p .
This set of equations is solved using the Levinson-Durbin recursion, Equation 9 through Equation 13.
E(0) = r(0) Equation 9
i–1
i–1
r(i) – ∑ aj ⋅ r(i – j)
j=1
k i = ------------------------------------------------------------
- Equation 10
E(i – 1)
(i)
ai = ki Equation 11
(i) i–1 (i – 1
aj = aj – ki ⋅ ai – j Equation 12
2
E ( i ) = ( 1 – ki ) ⋅ E ( i – 1 Equation 13
where 1 ≤j ≤i – 1 and 1 ≤i ≤p .
The parameters k i are known as the reflection parameters. If the condition k i ≤1 where 1 ≤i ≤p is satisfied, the
roots of the polynomial predictor all lie within the unit circle in the z-plane, and the all-pole filter is stable.
Freescale Semiconductor 5
Levinson-Durbin Implementation on the SC140 Core
/* initialization */
A[0] = 1
K = -R[1]/R[0]
A[1] = K
Alpha = R[0]* (1-K^2) (1)
For i = 2 To M
S = SUM(R[j]*A[i-j];j=1,i-1) + R[i] (2)
K = -S/Alpha
An[j] = A[j] + K*A[i-j] /*for j=1 to i-1 where An[i] = new A[i]*/ (3)
An[i] = K
Alpha = Alpha * (1-K^2)
End
If the filter proves to be unstable when the algorithm executes, the filter coefficients from the previous execution
are stored as the new values and the execution terminates. Because the algorithm contains several data
dependencies, implementation on multiple execution units is difficult. However, the optimization techniques
described in the following sections demonstrate how to take the most advantage of the StarCore architecture.
3.1 C Implementation
This section presents the optimization techniques applied to the original ITU-T G.729A Recommendation code of
the Levinson-Durbin algorithm using the Metrowerks® CodeWarrior® for StarCore, Release 1.0. The C-optimized
implementation is listed in Appendix A. The original C implementation of the Levinson-Durbin algorithm from the
ITU-T G.729A Recommendation follows the pseudo-code in Code Listing 1. Operands used in several functions
are represented in double precision format (DPF). For details on these functions and the way they are implemented,
see Appendix C.
6 Freescale Semiconductor
Levinson-Durbin Implementation on the SC140 Core
The 32-bit DPF format is designed for 16-bit processors that do not support 32-bit operations. Thus, although
StarCore processors are 16-bit processors that support 32-bit operations, the 32-bit operations must be
implemented in DPF format to maintain bit-exactness with the original ITU-T implementation. The two 16-bit
portions, originally processed in two separate DALU registers, are combined into a single 32-bit value using only
one DALU register. Thus, functions that originally received two pointers to two 16-bit arrays can now operate with
one pointer to a 32-bit array. This optimization step also reduces the required number of memory moves. The least
significant bit of partial or final computation results must be reset to maintain bit-exactness with G.729A.
The DPF representations of the algorithm input parameters (for example., the R[ ] vector of autocorrelation
coefficients and the A[ ] vector of LPC coefficients) are changed. Therefore, the L_Comp() function, which
composes a DPF 32-bit integer from two 16-bit integers, and L_Extract(), which extracts two 16-bit integers
from a DPF 32-bit integer, are no longer used.
The code for the intrinsic function div_s() is inlined in the Div_32() function to eliminate the extra cycles
required to enter and exit the subroutine and implement a hardware loop. The compiler does not inline the code for
div_s(). The inlined div_s() intrinsic consists of a loop that executes div_iter() intrinsic function
sixteen times. Code Listing 2 shows the source code for Div_32() with an inlined div_s() function.
Because the compiler does not inline the code for intrinsic function div_s(), the code for div_s() was inlined
in the Div_32() function to eliminate the extra cycles required to enter and exit the subroutine and to allow the
loop that contains div_s() to be transformed in a hardware loop. The inlined div_s() intrinsic consists of a
loop that executes the div_iter() intrinsic function sixteen times. Code Listing 2 shows the source code for
Div_32() with an inlined div_s() function.
#ifdef _SCC_METROWERKS_
{
int i;
clearSRbit(1);
L_32 = 0x3fff0000;
for ( i = 0; i < 16; i++ ){
L_32 = div_iter(L_32, extract_h(denom));
}
approx = extract_l(L_32);
}
#else
approx = div_s((Word16)0x3fff, extract_h(denom));
#endif
Freescale Semiconductor 7
Levinson-Durbin Implementation on the SC140 Core
The original implementation uses a vector to store new values of the reflection coefficients. However, these values
are no longer used in the G.729A vocoder, so the storing phase of the reflection coefficients is no longer done. As a
result, the input vector parameter for reflection coefficients and the phase of storing first two values of reflection
coefficients in case of unstable filter were eliminated from implementation, thus reducing the occupied size and the
number of execution cycles.
Referring to the pseudo-code in Code Listing 1, another optimization involves loop merging the summation part of
(2) with the equation in (3), thus making better use of the registers (refer to the section of code marked ‘E1’ in
Appendix A). In addition, the first calculation of Alpha (the alp variable) is removed from the initialization phase
of the algorithm and inserted into the outer loop.
The use of DPF representation in the first inner loop, which copies the filter coefficients values used to recompute
the backwards coefficients, results in half the number of cycles of the original implementation.
When L_shl() or L_shr() is used and the shift offset is variable, the compiler is forced to insert a function call
that checks the sign and magnitude of the offset, providing the proper offset handling and saturation. However,
when alp and the reflection coefficient K are calculated, the obtained offset is part of a normalization process, so
no overflow can occur. Thus, in these cases, the 32-bit fractional shift left intrinsic L_shl can be replaced with the
40-bit intrinsic X_shl(), which does not perform checking and is thus translated into a single SC140 instruction,
asll().
8 Freescale Semiconductor
Levinson-Durbin Implementation on the SC140 Core
In addition, the pipelining technique provides execution sets that can be used to fulfill the delay required after a
break or skipls instruction.
Freescale Semiconductor 9
Levinson-Durbin Implementation on the SC140 Core
10 Freescale Semiconductor
Levinson-Durbin Implementation on the SC140 Core
[
and d11,d3 add d1,d5,d1
mpyus d6,d7,d15
]
[
dmacss d6,d7,d15 add d1,d3,d1 ; d1=t0=Mpy_32(R[i-1],An[1]
move.l #$7ffffffe,d12
Freescale Semiconductor 11
Implementation Differences
4 Implementation Differences
This section presents the differences between various implementations of the Levinson-Durbin algorithm on
different vocoders and the implementation from the ITU-T G.729A Recommendation. The differences are based on
the ITU-T reference code.
12 Freescale Semiconductor
Conclusions
5 Conclusions
The optimized C implementation of the Levinson-Durbin algorithm provided several advantages for the assembly
implementation. The loop merging technique was used to take advantage of the StarCore architecture to reduce the
number of cycles in the Mpy_32() functions. The inlining technique reduced the number of cycles in the
Div_32() function. These changes can be also applied to the C implementation.
The major changes applied in the assembly implementation included split summation and software pipelining.
Table 1 lists the results of executing both implementations. Notice that the assembly implementation consists of
many more optimization techniques than the C implementation.
6 References
[1] ITU-T Recommendation G.723.1—Dual Rate Speech Coder for Multimedia Communications
Transmitting at 5.3 and 6.3 kbit/s, March 1996.
[2] ITU-T Recommendation G.729—Coding of Speech at 8 kbit/s Using Conjugate-Structure Algebraic-Code-
Excited Linear-Prediction (CS-ACELP), March 1996.
[3] ITU-T Recommendation G.729/Annex A—Reduced Complexity 8 kbit/s CS-ACELP Speech Codec,
November 1996.
[4] ETSI SMG2 ITU-T Recommendation GSM 6.60 EFR, January 1996.
[5] ITU-T Recommendation G.712—Transmission Performance Characteristics of Pulse Code Modulation,
September 1992.
[6] Digital Speech - Coding for Low Bit Rate Communications Systems, A.M.Kondoz (John Wiley & Sons
Ltd.: 1994).
[7] A Practical Handbook of Speech Coders, Randy Goldberg and Lance Riek. (CRC Press LLC: 2000).
Freescale Semiconductor 13
References
Appendix A
C Implementation
;*****************************************;
;* COPYRIGHT 2000 - 2005 Freescale Semiconductor, Inc.*;
;*****************************************;
;* *;
;* FILE NAME: levinson.c *;
;* TARGET PROCESSOR: StarCore SC140 *;
;*****************************************;
;*************************************************************** *;
;* NOTE: *;
;* L_shl_nosat() and L_shr_nosat() are available starting with *;
;* Metrowerks CodeWarrior for StarCore Release 1.5 *;
;*************************************************************** *;
#if defined(_SC140_)
#define L_shl_nosat(a,b) X_trunc(X_shl(X_extend(a),b))
#define L_shr_nosat(a,b) X_trunc(X_shr(X_extend(a),b))
#define L_shl_nosat_r(a,b) X_round(X_shl(X_extend(a),b))
#else
#define L_shl_nosat(a,b) L_shl(a,b)
#define L_shr_nosat(a,b) L_shr(a,b)
#define L_shl_nosat_r(a,b) round(L_shl(a,b))
#endif
void Levinson(
Word32 R[], /* autocorrelations coefs. */
Word16 A[], /* LPC coefficients */
G729A_LPC_STATUS_T * lpc_status /* lpc status */
)
{
Word16 i, j, temp,flag=0,approx; /* temporary variables */
Word32 K; /* reflection coefficient */
Word16 alp_exp = 0;
Word32 alp = R[0]; /* prediction gain */
Word32 Ac[M+1]; /* LPC coefs in DPF */
Word32 An[M+1]; /* LPC coefs. new in DPF */
Word32 t0,t1,L_32; /* temporary variables */
/* K=A[1]=-R[1]/R[0] */
K = L_abs(R[1]);
K = Div_32(K,R[0]); /* R[1]/R[0] in Q31 */
if(R[1] > 0){
K = L_negate(K); /* -R[1]/R[0] */
} /* K in DPF */
t0 = L_add(t0,Mpy_32(R[i-1], An[1]));
t0 = L_shl(t0,4); /* convert t0 to Q31 */
t0 = L_add(t0,R[i]); /* add R[i] in Q31 */
K = L_abs(t0);
/*1/L_denom=approx*(2.0-L_denom*approx)*/
L_32=Mpy_32_16(alp, approx); /* result in Q30 */
L_32 = L_sub((Word32)0x7ffffffeL,L_32); /* result in Q30 */
14 Freescale Semiconductor
References
Freescale Semiconductor 15
References
Appendix B
Assembly Implementation
;*****************************************;
;* COPYRIGHT 2000 - 2005 Freescale Semiconductor, Inc.*;
;*****************************************;
;* *;
;* FILE NAME: levinson.asm *;
;* TARGET PROCESSOR: StarCore SC140 *;
;*****************************************;
INCLUDE 'constants.inc'
SET Lvsn_AnSize MP1<<2
SET Lvsn_AcSize MP1<<2
SET Lvsn_FrameSize (Lvsn_AnSize+Lvsn_AcSize+7)&$fffffff8
SET Lvsn_AnOff Lvsn_FrameSize
SET Lvsn_AcOff Lvsn_AnOff-Lvsn_AnSize
SECTION .text LOCAL
GLOBAL _Levinson
ALIGN 16
16 Freescale Semiconductor
References
Freescale Semiconductor 17
References
LOOPEND3
L02
bmclr #<1,sr.l doensh3 #<15 ; E6
move.l (r10),d7 move.l (r3)+,d6 ; An[1]=d7 R[i-1]=d6
mpysu d6,d7,d1 mpyus d6,d7,d3 ; compute Mpy_32(R[i-1],An[1])
dmacss d6,d7,d1 div d9,d15
LOOPSTART3
div d9,d15
LOOPEND3
[
and d11,d1 tfr d9,d6 ; alp=d9=d6
aslw d15,d7 asrw d3,d3 ; approx=d7
]
[
and d11,d3 add d1,d5,d1
mpyus d6,d7,d15
]
[
dmacss d6,d7,d15 add d1,d3,d1 ; d1=t0=Mpy_32(R[i-1],An[1]
move.l #$7ffffffe,d12
]
[
and d11,d15 asll #<4,d1 ; t0=L_shl(t0,4) without sat.l
move.l (r3),d14 ; d14 = R[i]
]
[
add d1,d14,d2 add d1,d14,d6 ;t0=L_add(t0,R[i])=d2=d6
sub d15,d12,d0 tfr d7,d1 ; approx=d7=d1 L_32=d0
]
mpyus d0,d1,d3 ; compute Mpy_32_16(L_32, approx)
dmacss d0,d1,d3
abs d2 and d11,d3 ; d3=L_32 K=d2=L_abs(t0)
mpysu d2,d3,d0 mpyus d2,d3,d1 ; Mpy_32(K,L_32)
dmacss d2,d3,d0 asrw d1,d1
[
and d11,d0 and d11,d1
tstgt d6 ; test if(t0 >0)
move.w #$7fee,d4 ; d4=32750
]
add d0,d1,d5 add d0,d1,d2
asll #<2,d5 asll #<2,d2
sat.l d5 sat.l d2
[
ift ; K=L_negate(K)=d2=d5
neg d5
neg d2
]
asll d10,d5 asll d10,d2 ; K=K<<alp_exp=d2=d5
asrw d5,d5
[
tfr d2,d1 tfr d2,d0
abs d5 ; d5=abs_s(extract_h(K))
adda #<4,r4
]
[
mpysu d0,d1,d3 mpyus d0,d1,d14 ; compute Mpy_32(K,K) E1
cmpgt d4,d5 ; test for unstable filter
]
[
dmacss d0,d1,d3 asrw d14,d14 ; E1
inc d8 ; increment loop counter
]
[
ift
break L_LOOP ; unstable filter go to L_LOOP
]
[
and d11,d3 and d11,d14 E1
tfr d9,d0 clr d13 ; alp=d9=d0
; clr- dummy for loop alignment
]
add d3,d14,d3 ; t0=d3=Mpy_32(K,K)
sub d3,d12,d1 ; t0=d1=L_sub(0x7ffffffe,t0)
LOOPEND2
[
tfr d2,d3 tfr d2,d1 ; K=d2=d3=d1
doen3 #<5 dosetup3 LFINAL ; set LFINAL loop
]
move.f #$1000,d15 adda #>32,r10,r5 ; d15=4096 r10=&An[M-1]
moves.f d15,(r1)+ move.l (r5)-,d0 ; store A[0] d0=An[M-1]
18 Freescale Semiconductor
References
[
tfr d2,d14
mpysu d0,d1,d6 mpyus d0,d1,d7 ; compute Mpy_32(K,An[M-1]) E3
move.l (r5)-,d2 moves.f d15,(r11)+ ; d2=An[M-2]
; store lpc_status_oldA[0]
; K=d2=d14
]
[
clr d15 asrr #<4,d14 ; clr-dummy for loop alignment
mpysu d2,d3,d8 mpyus d2,d3,d9 ; compute Mpy_32(K,An[M-2]) E3
move.l (r10)+,d4 ; d4=An[1]
; d14=L_shr(K,4)
]
FALIGN
LOOPSTART3
LFINAL
[
dmacss d0,d1,d6 dmacss d2,d3,d8
asrw d7,d7 asrw d9,d9
move.l (r10)+,d5 ; d5=An[i]
]
[
and d11,d6 and d11,d7
and d11,d8 and d11,d9
]
add d6,d7,d6 add d8,d9,d8 ; d6=Mpy_32(K,An[M-i])
; d8=Mpy_32(K,An[M-i-1])
[
add d4,d6,d6 add d5,d8,d8 ; d6=L_add(An[i],d6)
move.l (r5)-,d0 ; d8=L_add(An[i+1],d8)
]
asl d6,d6 asl d8,d8
[
rnd d6,d12 rnd d8,d13 ; temp=d12 temp=d13
move.l (r5)-,d2 move.l (r10)+,d4 ; d2=An[M-i-2]
] ; d4=An[i+2]
[
mpysu d0,d1,d6 mpyus d0,d1,d7 ; compute Mpy_32(K,An[M-i-2]) E3
moves.f d12,(r1)+ moves.f d12,(r11)+ ; store A[i]
]
[
mpysu d2,d3,d8 mpyus d2,d3,d9 ; compute Mpy_32(K,An[M-i-3])
moves.f d13,(r1)+ moves.f d13,(r11)+ ; store A[i+1]
]
LOOPEND3
[
asl d14,d14 ; d14=L_shl(d14,1)
suba #<2,r1 suba #<2,r11 ; r1=&lpc_status->oldA[M]
; r11=&A[M]
]
[
rnd d14,d3 ; d3=round(d14)
jmpd L_END ; end Levinson
]
moves.f d3,(r11) moves.f d3,(r1) ; store A[M] value
L_LOOP
doensh3 #<11 ; set unstable filter THIRD_LOOP
nop ; dummy for loop alignment
move.f (r11)+,d4 ; get lpc_status->oldA[0]
LOOPSTART3
THIRD_LOOP
move.f (r11)+,d4 moves.f d4,(r1)+ ; A[j]=lpc_status->oldA[j]
LOOPEND3
L_END
adda #-Lvsn_FrameSize,sp,r2 ; set Levinson frame size
tfra r2,sp ; set SP to initial value
pop r6 pop r7
pop d6 pop d7
rts ; end call
ENDSEC
Freescale Semiconductor 19
References
Appendix C
32-bit DPF Format and Operations
ITU-T G.729 and G.729A use a non-standard 32-bit double precision representation known as Double Precision
Format (DPF). Equation 14 is a mathematical representation of DPF equation representation.
where L_32 is a 32-bit signed integer and hi and lo are 16-bit signed integers. The range value of this
representation is:
That both the higher and lower parts are signed increases the speed of multiplication operations. This format was
designed for 16-bit processors that do not support 32-bit operations. Even if the StarCore processors supported 32-
bit operations, the DPF format must still be used to maintain bit-exactness of the original ITU-T implementation.
The following special functions were defined to operate with this format:
1. Mpy_32()—multiplication of two 32-bit DPF values
2. Mpy_32_16()—multiplication of a 32-bit DPF value with a 16-bit signed value
3. Div_32()—division of two 32-bit DPF values
The following sections describe the assembly implementations of these functions.
C.1 Mpy_32()
The Mpy_32() function multiplies two 32-bit numbers. In Code Example 8, d0 and d1 contain 32-bit DPF
values, d4 contains –2 ($fffffffe) and the result is stored in d2.
C.2 Mpy_32_16()
The Mpy_32_16() function multiplies 32-bit number and a 16-bit number. In Code Example 9, d0 contains a
32-bit DPF value, d1.h contains the 16-bit integer, d3 contains –2 ($fffffffe), and the result is stored in d2.
C.3 Div_32()
The Div_32() function divides two 32-bit numbers. In Code Example 10 d1 and d2 contain 32-bit DPF values,
d4 contains $3fff0000, d5 contains $7FFFFFFE and d6 contains –2 ($FFFFFFFE). The result is stored in d3. This
implementation uses the Mpy_32() and Mpy_32_16() functions. The speed of this function is increased by
inlining the div_s intrinsic function.
20 Freescale Semiconductor
References
Freescale Semiconductor 21
References
NOTES:
22 Freescale Semiconductor
References
NOTES:
Freescale Semiconductor 23
How to Reach Us: Information in this document is provided solely to enable system and software implementers to
use Freescale Semiconductor products. There are no express or implied copyright licenses
Home Page: granted hereunder to design or fabricate any integrated circuits or integrated circuits based on
www.freescale.com the information in this document.
E-mail:
[email protected] Freescale Semiconductor reserves the right to make changes without further notice to any
products herein. Freescale Semiconductor makes no warranty, representation or guarantee
USA/Europe or Locations not listed: regarding the suitability of its products for any particular purpose, nor does Freescale
Freescale Semiconductor Semiconductor assume any liability arising out of the application or use of any product or
Technical Information Center, CH370
circuit, and specifically disclaims any and all liability, including without limitation consequential
1300 N. Alma School Road
Chandler, Arizona 85224 or incidental damages. “Typical” parameters which may be provided in Freescale
+1-800-521-6274 or +1-480-768-2130 Semiconductor data sheets and/or specifications can and do vary in different applications and
[email protected] actual performance may vary over time. All operating parameters, including “Typicals” must be
validated for each customer application by customer’s technical experts. Freescale
Europe, Middle East, and Africa: Semiconductor does not convey any license under its patent rights nor the rights of others.
Freescale Halbleiter Deutschland GMBH Freescale Semiconductor products are not designed, intended, or authorized for use as
Technical Information Center components in systems intended for surgical implant into the body, or other applications
Schatzbogen 7
intended to support or sustain life, or for any other application in which the failure of the
81829 München, Germany
+44 1296 380 456 (English) Freescale Semiconductor product could create a situation where personal injury or death may
+46 8 52200080 (English) occur. Should Buyer purchase or use Freescale Semiconductor products for any such
+49 89 92103 559 (German) unintended or unauthorized application, Buyer shall indemnify and hold Freescale
+33 1 69 35 48 48 (French) Semiconductor and its officers, employees, subsidiaries, affiliates, and distributors harmless
[email protected] against all claims, costs, damages, and expenses, and reasonable attorney fees arising out of,
directly or indirectly, any claim of personal injury or death associated with such unintended or
Japan: unauthorized use, even if such claim alleges that Freescale Semiconductor was negligent
Freescale Semiconductor Japan Ltd. regarding the design or manufacture of the part.
Headquarters
ARCO Tower 15F
1-8-1, Shimo-Meguro, Meguro-ku,
Tokyo 153-0064, Japan
0120 191014 or +81 3 5437 9125 Freescale™ and the Freescale logo are trademarks of Freescale Semiconductor, Inc. StarCore
[email protected] is a trademark of StarCore LLC. Metrowerks and CodeWarrior are registered trademarks of
Metrowerks Corp. in the U.S. and/or other countries.All other product or service names are the
Asia/Pacific: property of their respective owners.
Freescale Semiconductor Hong Kong Ltd.
Technical Information Center
2 Dai King Street © Freescale Semiconductor, Inc. 2005.
Tai Po Industrial Estate
Tai Po, N.T. Hong Kong
+800 2666 8080
For Literature Requests Only:
Freescale Semiconductor Literature Distribution Center
P.O. Box 5405
Denver, Colorado 80217
1-800-441-2447 or 303-675-2140
Fax: 303-675-2150
[email protected]