1 2 3 4 5 6 7 8 9 10 11
12
13 14 15
16
17 package ti.platforms.generic;
18
19 /*!
20 * ======== Platform ========
21 * A generic platform that supports any HW platform
22 *
23 * This module implements xdc.platform.IPlatform and defines configuration
24 * parameters that correspond to this platform's Cpu's, Board's, etc.
25 *
26 * The configuration parameters are initialized in this package's
27 * configuration script (package.cfg) and "bound" to the TCOM object
28 * model. Once they are part of the model, these parameters are
29 * queried by a program's configuration script.
30 *
31 * This particular platform has a single Cpu, and therefore, only
32 * declares a single CPU configuration object. Multi-CPU platforms
33 * would declare multiple Cpu configuration parameters (one per
34 * platform CPU).
35 */
36 metaonly module Platform inherits xdc.platform.IPlatform
37 {
38 config xdc.platform.IPlatform.Board BOARD = {
39 id: "0",
40 boardName: "generic",
41 boardFamily: null,
42 boardRevision: null
43 };
44
45 instance:
46
47 config xdc.platform.IExeContext.Cpu CPU = {
48 id: "0",
49 clockRate: 0,
50 catalogName: null,
51 deviceName: null,
52 revision: "",
53 };
54
55 /*!
56 * ======== deviceName ========
57 * The CPU simulated by this simulator platform.
58 *
59 * This parameter is required.
60 */
61 config string deviceName;
62
63 /*!
64 * ======== catalogName ========
65 * The name of the package that contains the module 'deviceName'.
66 *
67 * This parameter is required.
68 */
69 config string catalogName;
70
71 /*!
72 * ======== clockRate ========
73 * The clock rate in MHz for the simulated device.
74 *
75 * This parameter is required. There are no checks if the simulated device
76 * supports the given clock rate.
77 */
78 config Double clockRate;
79
80 override config string codeMemory = null;
81
82 override config string dataMemory = null;
83
84 override config string stackMemory = null;
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