1 2 3 4
5
6 /*!
7 * File generated by platform wizard. DO NOT MODIFY
8 *
9 */
10
11 metaonly module Platform inherits xdc.platform.IPlatform {
12
13 config ti.platforms.generic.Platform.Instance CPU =
14 ti.platforms.generic.Platform.create("CPU", {
15 clockRate: 600,
16 catalogName: "ti.catalog.arm.cortexa8",
17 deviceName: "TMS320DM8148",
18 externalMemoryMap:
19 [
20 ["VECTORS",
21 {
22 base: 0x00000000,
23 space: "code/data",
24 name: "VECTORS",
25 len: 0x00010000,
26 access: "RWX",
27 }
28 ],
29 ["DDR_HOST",
30 {
31 base: 0x80000000,
32 space: "code/data",
33 name: "DDR_HOST",
34 len: 0x0B000000,
35 access: "RWX",
36 }
37 ],
38 ["DDR_SR0",
39 {
40 base: 0x8E000000,
41 space: "code/data",
42 name: "DDR_SR0",
43 len: 0x01000000,
44 access: "RWX",
45 }
46 ],
47 ],
48
49 });
50
51 instance :
52
53 override config string codeMemory = "DDR_HOST";
54 override config string dataMemory = "DDR_HOST";
55 override config string stackMemory = "DDR_HOST";
56
57 }
58 59 60
61