blob: e720c6b533c3975cce1c92547d8adafd7384608c [file] [log] [blame]
Troy Kisky71a988a2013-01-18 16:14:24 +00001/*
2 * Copyright (C) 2012 Freescale Semiconductor, Inc.
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not write to the Free Software
19 * Foundation Inc. 51 Franklin Street Fifth Floor Boston,
20 * MA 02110-1301 USA
21 *
Anatolij Gustschinb1e6c4c2013-04-30 11:15:33 +000022 * Refer doc/README.imximage for more details about how-to configure
Troy Kisky71a988a2013-01-18 16:14:24 +000023 * and create imximage boot image
24 *
25 * The syntax is taken as close as possible with the kwbimage
26 */
27/* image version */
Fabio Estevam7dd65452012-09-24 08:09:33 +000028
29IMAGE_VERSION 2
30
Troy Kisky71a988a2013-01-18 16:14:24 +000031/*
32 * Boot Device : one of
33 * spi, sd (the board has no nand neither onenand)
34 */
Fabio Estevam7dd65452012-09-24 08:09:33 +000035BOOT_FROM sd
36
Troy Kisky71a988a2013-01-18 16:14:24 +000037/*
38 * Device Configuration Data (DCD)
39 *
40 * Each entry must have the format:
41 * Addr-type Address Value
42 *
43 * where:
44 * Addr-type register length (1,2 or 4 bytes)
45 * Address absolute address of the register
46 * value value to be stored in the register
47 */
Fabio Estevam7dd65452012-09-24 08:09:33 +000048DATA 4 0x020e05a8 0x00000028
49DATA 4 0x020e05b0 0x00000028
50DATA 4 0x020e0524 0x00000028
51DATA 4 0x020e051c 0x00000028
52
53DATA 4 0x020e0518 0x00000028
54DATA 4 0x020e050c 0x00000028
55DATA 4 0x020e05b8 0x00000028
56DATA 4 0x020e05c0 0x00000028
57
58DATA 4 0x020e05ac 0x00000028
59DATA 4 0x020e05b4 0x00000028
60DATA 4 0x020e0528 0x00000028
61DATA 4 0x020e0520 0x00000028
62
63DATA 4 0x020e0514 0x00000028
64DATA 4 0x020e0510 0x00000028
65DATA 4 0x020e05bc 0x00000028
66DATA 4 0x020e05c4 0x00000028
67
68DATA 4 0x020e056c 0x00000030
69DATA 4 0x020e0578 0x00000030
70DATA 4 0x020e0588 0x00000030
71DATA 4 0x020e0594 0x00000030
72
73DATA 4 0x020e057c 0x00000030
74DATA 4 0x020e0590 0x00000030
75DATA 4 0x020e0598 0x00000030
76DATA 4 0x020e058c 0x00000000
77
78DATA 4 0x020e059c 0x00003030
79DATA 4 0x020e05a0 0x00003030
80DATA 4 0x020e0784 0x00000028
81DATA 4 0x020e0788 0x00000028
82
83DATA 4 0x020e0794 0x00000028
84DATA 4 0x020e079c 0x00000028
85DATA 4 0x020e07a0 0x00000028
86DATA 4 0x020e07a4 0x00000028
87
88DATA 4 0x020e07a8 0x00000028
89DATA 4 0x020e0748 0x00000028
90DATA 4 0x020e074c 0x00000030
91DATA 4 0x020e0750 0x00020000
92
93DATA 4 0x020e0758 0x00000000
94DATA 4 0x020e0774 0x00020000
95DATA 4 0x020e078c 0x00000030
96DATA 4 0x020e0798 0x000C0000
97
98DATA 4 0x021b081c 0x33333333
99DATA 4 0x021b0820 0x33333333
100DATA 4 0x021b0824 0x33333333
101DATA 4 0x021b0828 0x33333333
102
103DATA 4 0x021b481c 0x33333333
104DATA 4 0x021b4820 0x33333333
105DATA 4 0x021b4824 0x33333333
106DATA 4 0x021b4828 0x33333333
107
108DATA 4 0x021b0018 0x00001740
109
110DATA 4 0x021b001c 0x00008000
111DATA 4 0x021b000c 0x8A8F7975
112DATA 4 0x021b0010 0xFF538E64
113DATA 4 0x021b0014 0x01FF00DB
114DATA 4 0x021b002c 0x000026D2
115
116DATA 4 0x021b0030 0x008F0E21
117DATA 4 0x021b0008 0x09444040
118DATA 4 0x021b0004 0x00020036
119DATA 4 0x021b0040 0x00000047
120DATA 4 0x021b0000 0x841A0000
121
122DATA 4 0x021b001c 0x04088032
123DATA 4 0x021b001c 0x00008033
124DATA 4 0x021b001c 0x00428031
125DATA 4 0x021b001c 0x09408030
126
127DATA 4 0x021b001c 0x04008040
128DATA 4 0x021b0800 0xA1380003
129DATA 4 0x021b0020 0x00005800
130DATA 4 0x021b0818 0x00000007
131DATA 4 0x021b4818 0x00000007
132
Troy Kisky71a988a2013-01-18 16:14:24 +0000133/* Calibration values based on ARD and 528MHz */
Fabio Estevam7dd65452012-09-24 08:09:33 +0000134DATA 4 0x021b083c 0x434B0358
135DATA 4 0x021b0840 0x033D033C
136DATA 4 0x021b483c 0x03520362
137DATA 4 0x021b4840 0x03480318
138DATA 4 0x021b0848 0x41383A3C
139DATA 4 0x021b4848 0x3F3C374A
140DATA 4 0x021b0850 0x42434444
141DATA 4 0x021b4850 0x4932473A
142
143DATA 4 0x021b080c 0x001F001F
144DATA 4 0x021b0810 0x001F001F
145
146DATA 4 0x021b480c 0x001F001F
147DATA 4 0x021b4810 0x001F001F
148
149DATA 4 0x021b08b8 0x00000800
150DATA 4 0x021b48b8 0x00000800
151
152DATA 4 0x021b0404 0x00011006
153DATA 4 0x021b0004 0x00025576
154
155DATA 4 0x021b001c 0x00000000
156
157DATA 4 0x020c4068 0x00C03F3F
158DATA 4 0x020c406c 0x0030FC00
159DATA 4 0x020c4070 0x0FFFC000
160DATA 4 0x020c4074 0x3FF00000
161DATA 4 0x020c4078 0x00FFF300
162DATA 4 0x020c407c 0x0F0000C3
163DATA 4 0x020c4080 0x000003FF