1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17
18 package ti.platforms.sim64Pxx;
19
20 /*!
21 * ======== Platform ========
22 * Platform support for the sim64Pxx
23 *
24 * This module implements xdc.platform.IPlatform and defines configuration
25 * parameters that correspond to this platform's Cpu's, Board's, etc.
26 *
27 * The configuration parameters are initialized in this package's
28 * configuration script (package.cfg) and "bound" to the TCOM object
29 * model. Once they are part of the model, these parameters are
30 * queried by a program's configuration script.
31 *
32 * This particular platform has a single Cpu, and therefore, only
33 * declares a single CPU configuration object. Multi-CPU platforms
34 * would declare multiple Cpu configuration parameters (one per
35 * platform CPU).
36 */
37 metaonly module Platform inherits xdc.platform.IPlatform
38 {
39 readonly config xdc.platform.IPlatform.Board BOARD = {
40 id: "0",
41 boardName: "sim64Pxx",
42 boardFamily: "sim64Pxx",
43 boardRevision: null,
44 };
45
46 readonly config xdc.platform.IExeContext.Cpu CPU = {
47 id: "0",
48 clockRate: 1000,
49 catalogName: "ti.catalog.c6000",
50 deviceName: "TMS320CTCI6482",
51 revision: "",
52 };
53
54 instance:
55
56 override readonly config xdc.platform.IPlatform.Memory
57 externalMemoryMap[string] = [
58 ["DDR", {name: "DDR", base: 0x80000000, len: 0x10000000}],
59 ];
60
61 /*!
62 * ======== deviceName ========
63 * The CPU simulated by this simulator platform.
64 *
65 * This parameter is optional. If it's not set, then the Platform module
66 * parameter CPU.deviceName is used.
67 */
68 config string deviceName;
69
70 /*!
71 * ======== ftpath ========
72 * Installation directory of the Foundational Tools Suite
73 *
74 * The underlying simulation engine used to run executables produced
75 * using this platform is part of the Target Server / Foundational Tools
76 * product (http://www.hou.asp.ti.com/asp/sds/eft/projects/Foundation_Tools/Releases/index.html).
77 */
78 readonly config String ftpath;
79
80 override config string codeMemory = "DDR";
81
82 override config string dataMemory = "DDR";
83
84 override config string stackMemory = "DDR";
85
86 87 88 89 90 91
92 config String l1PMode = "32k";
93
94 95 96 97 98 99
100 config String l1DMode = "32k";
101
102 103 104 105 106 107
108 config String l2Mode = "0k";
109 };
110 111 112
113