source: umon/ports/beagleboneblack/config_header.S @ 63834b9

Last change on this file since 63834b9 was 63834b9, checked in by Jarielle Catbagan <jcatbagan93@…>, on 08/21/15 at 17:05:59

BBB: Add proper attributions to the files modified

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[220ee4b]1        .file "config_header.S"
2
[63834b9]3/*
4 * Copyright (c) 2015 Jarielle Catbagan <jcatbagan93@gmail.com>
5 *
6 * The license and distribution terms for this file may be
7 * found in the file LICENSE in this distribution or at
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 *
11 * This is the Configuration Header TOC Structure that must be prepended to a GP Header followed
[220ee4b]12 * by the uMon image in order to boot from non-XIP devices such as an SD card using "raw" mode.
13 * Please refer to the AM335x TRM, Section 26.1.7.5.5.1 "Configuration Header" for more information.
14 */
15
16        /* Start */
17        .word 0x000000a0
18        /* Size */
19        .word 0x00000050
20        /* Reserved */
21        .word 0x00000000
22        .word 0x00000000
23        .word 0x00000000
24        /* Filename */
25        .word 0x45534843
26        .word 0x4e495454
27        .word 0x00005347
28        /* Closing Item */
29        .word 0xffffffff
30        .word 0xffffffff
31        .word 0xffffffff
32        .word 0xffffffff
33        .word 0xffffffff
34        .word 0xffffffff
35        .word 0xffffffff
36        .word 0xffffffff
37
38        /* Gap between Configuration Header TOC Structure and Configuration Header Settings */
39        .rept 24
40        .word 0x00000000
41        .endr
42
43        /* Section Key */
44        .word 0xc0c0c0c1
45        /* Valid */
46        .byte 0x00
47        /* Version */
48        .byte 0x01
49        /* Reserved */
50        .rept 86
51        .word 0x00000000
52        .endr
53        .byte 0x00
54        .byte 0x00
Note: See TracBrowser for help on using the repository browser.