1 2 3 4 5 6 7 8 9
10 /*!
11 * File generated by platform wizard.
12 *
13 */
14
15 metaonly module Platform inherits xdc.platform.IPlatform {
16
17 config ti.platforms.generic.Platform.Instance plat =
18 ti.platforms.generic.Platform.create("plat", {
19 clockRate: 567.0,
20 catalogName: "ti.catalog.c6000",
21 deviceName: "TMS320CDM6446",
22 externalMemoryMap: [
23 ["DDR2", {name: "DDR2", base: 0x80000000, len: 0x01000000, space: "code/data",access: "RWX"}],
24 ["SHARED", {name: "SHARED", base: 0x82000000, len: 0x0e000000, space: "code/data",access: "RWX"}],
25 ],
26 l1DMode:"32k",
27 l1PMode:"32k",
28 l2Mode:"64k",
29 });
30
31 instance :
32
33 override config string codeMemory = "DDR2";
34 override config string dataMemory = "DDR2";
35 override config string stackMemory = "DDR2";
36
37 }