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: 200.0,
16 catalogName: "ti.catalog.c6000",
17 deviceName: "OMAP3530",
18 externalMemoryMap:
19 [
20 ["DDR",
21 {
22 base: 0x80800000,
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 l2Mode:"64k",
40 l1PMode:"32k",
41 l1DMode:"32k",
42
43 });
44
45 instance :
46
47 override config string codeMemory = "DDR";
48 override config string dataMemory = "DDR";
49 override config string stackMemory = "DDR";
50
51 }
52 53 54
55