1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16 17
18
19 package ti.platforms.evmLM3S9B92;
20
21 /*!
22 * ======== Platform ========
23 * Platform support for the evmLM3S9B92
24 *
25 * This module implements xdc.platform.IPlatform and defines configuration
26 * parameters that correspond to this platform's Cpu's, Board's, etc.
27 *
28 * The configuration parameters are initialized in this package's
29 * configuration script (package.cfg) and "bound" to the TCOM object
30 * model. Once they are part of the model, these parameters are
31 * queried by a program's configuration script.
32 *
33 * This particular platform has a single Cpu, and therefore, only
34 * declares a single CPU configuration object. Multi-CPU platforms
35 * would declare multiple Cpu configuration parameters (one per
36 * platform CPU).
37 */
38 metaonly module Platform inherits xdc.platform.IPlatform
39 {
40 readonly config xdc.platform.IPlatform.Board BOARD = {
41 id: "0",
42 boardName: "evmLM3S9B92",
43 boardFamily: "evmLM3S9B92",
44 boardRevision: null,
45 };
46
47
48 readonly config xdc.platform.IExeContext.Cpu M3 = {
49 id: "0",
50 clockRate: 80.0,
51 catalogName: "ti.catalog.arm.cortexm3",
52 deviceName: "LM3S9B92",
53 revision: "1.0",
54 };
55
56 instance:
57 override config string codeMemory = "FRAM";
58 override config string dataMemory = "IRAM";
59 override config string stackMemory = "IRAM";
60 };
61 62 63
64