1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17
18 /*!
19 * ======== Platform ========
20 * Platform support for the evmTCI6488
21 *
22 * This module implements xdc.platform.IPlatform and defines configuration
23 * parameters that correspond to this platform's Cpu's, Board's, etc.
24 *
25 * The configuration parameters are initialized in this package's
26 * configuration script (package.cfg) and "bound" to the TCOM object
27 * model. Once they are part of the model, these parameters are
28 * queried by a program's configuration script.
29 *
30 * This particular platform has a single Cpu, and therefore, only
31 * declares a single CPU configuration object. Multi-CPU platforms
32 * would declare multiple Cpu configuration parameters (one per
33 * platform CPU).
34 */
35 metaonly module Platform inherits xdc.platform.IPlatform
36 {
37 readonly config xdc.platform.IPlatform.Board BOARD = {
38 id: "0",
39 boardName: "evmTCI6488",
40 boardFamily: "evmTCI6488",
41 boardRevision: null,
42 };
43
44 readonly config xdc.platform.IExeContext.Cpu CPU = {
45 id: "0",
46 clockRate: 1044,
47 catalogName: "ti.catalog.c6000",
48 deviceName: "TMS320CTCI6488",
49 revision: "",
50 };
51
52 instance:
53
54 override readonly config xdc.platform.IPlatform.Memory
55 externalMemoryMap[string] = [
56 ["DDR2", {name: "DDR2", base: 0x80000000, len: 0x08000000}],
57 ];
58
59 override config string codeMemory = "DDR2";
60
61 override config string dataMemory = "DDR2";
62
63 override config string stackMemory = "DDR2";
64
65 66 67 68 69 70
71 config String l1PMode = "32k";
72
73 74 75 76 77 78
79 config String l1DMode = "32k";
80
81 82 83 84 85 86
87 config String l2Mode = "0k";
88 };
89 90 91
92