1 2 3 4 5 6 7 8 9 10 11
12
13 14 15
16
17 package ti.platforms.evm6748;
18
19 /*!
20 * ======== Platform ========
21 * Platform support for the evm6748
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 readonly config xdc.platform.IPlatform.Board BOARD = {
39 id: "0",
40 boardName: "evm6748",
41 boardFamily: "evm6748",
42 boardRevision: null,
43 };
44
45 readonly config xdc.platform.IExeContext.Cpu CPU = {
46 id: "0",
47 clockRate: 300.0,
48 catalogName: "ti.catalog.c6000",
49 deviceName: "TMS320C6748",
50 revision: "",
51 };
52
53 instance:
54
55 override readonly config xdc.platform.IPlatform.Memory
56 externalMemoryMap[string] = [
57 ["DDR", {name: "DDR", base: 0xC0000000, len: 0x08000000}],
58 ];
59
60 61 62 63 64
65 override config string codeMemory = "DDR";
66
67 override config string dataMemory = "DDR";
68
69 override config string stackMemory = "DDR";
70
71 72 73 74 75 76
77 config String l1PMode = "32k";
78
79 80 81 82 83 84
85 config String l1DMode = "32k";
86
87 88 89 90 91 92
93 config String l2Mode = "0k";
94
95 };
96 97 98
99