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: 720.0,
16 catalogName: "ti.catalog.arm.cortexa8",
17 deviceName: "OMAP3530",
18 externalMemoryMap:
19 [
20 ["DDR",
21 {
22 base: 0x80000000,
23 space: "code/data",
24 name: "DDR",
25 len: 0x800000,
26 access: "RWX",
27 }
28 ],
29 ["SHARED",
30 {
31 base: 0x81000000,
32 space: "code/data",
33 name: "SHARED",
34 len: 0x800000,
35 access: "RWX",
36 }
37 ],
38 ],
39
40 });
41
42 instance :
43
44 override config string codeMemory = "DDR";
45 override config string dataMemory = "DDR";
46 override config string stackMemory = "DDR";
47
48 }
49 50 51
52