1 2 3 4 5 6 7 8 9 10 11
12
13 14 15
16 package ti.platforms.concertoM3;
17
18 /*!
19 * ======== Platform ========
20 * A generic platform that supports any Stellaris device
21 *
22 * The device to be used by this platform is passed as the platform instance
23 * name. On the `xdc.tools.configuro` command line, it is done in the
24 * following way:
25 * @p(code)
26 * xs xdc.tools.configuro ... -p "ti.platforms.concertoM3:LM3S8971"
27 * @p
28 *
29 * In package.bld, the platform instance is selected as in:
30 * @p(code)
31 * Pkg.addExecutable("test", target, "ti.platforms.concertoM3:LM3S8971");
32 * @p
33 */
34 metaonly module Platform inherits xdc.platform.IPlatform
35 {
36 config xdc.platform.IPlatform.Board BOARD = {
37 id: "0",
38 boardName: "concertoM3",
39 boardFamily: null,
40 boardRevision: null
41 };
42
43 /*!
44 * ======== nameFormat ========
45 * Encoding of instance creation parameters in the instance's name
46 *
47 * For this platform, the parameters `deviceName` and `includeLinkCmdFile`
48 * can be encoded in the instance name supplied on `xdc.tools.configuro`
49 * command line, for example:
50 * @p(code)
51 * xs xdc.tools.configuro ... -p ti.platforms.concertoM3:LM3S8971:1
52 * @p
53 * Optional parameters can be omitted:
54 * @p(code)
55 * xs xdc.tools.configuro ... -p ti.platforms.concertoM3:LM3S8971
56 * @p
57 */
58 readonly config string nameFormat = "$(deviceName):$(includeLinkCmdFile)";
59
60 instance:
61
62 config xdc.platform.IExeContext.Cpu CPU = {
63 id: "0",
64 clockRate: 1.0,
65 catalogName: "ti.catalog.arm.cortexm3",
66 deviceName: "F28M35x",
67 revision: "",
68 };
69
70 /*!
71 * ======== deviceName ========
72 * The name of an `ICpuDataSheet` module for the device
73 *
74 * This parameter is required, but it does not have to be set explicitly;
75 * it can be encoded in the instance's name.
76 */
77 config string deviceName;
78
79 /*!
80 * ======== clockRate ========
81 * The clock rate for this device.
82 */
83 config Double clockRate;
84
85 override config string codeMemory = null;
86
87 override config string dataMemory = null;
88
89 override config string stackMemory = null;
90
91 /*!
92 * ======== includeLinkCmdFile ========
93 * The flag that specifies if the platform should include a linker command
94 * file.
95 *
96 * By default, a user is responsible for adding a linker command file to
97 * the project, or to the linker command line. However, if this flag is
98 * set, this platform will include a default linker command file for the
99 * selected device.
100 */
101 config Bool includeLinkCmdFile = false;
102 };
103 104 105
106