1 2 3 4 5 6 7 8
9
10 11 12
13
14 package ti.platforms.dsk6416;
15
16 /*!
17 * ======== Platform ========
18 * Platform support for the dsk6416
19 *
20 * This module implements xdc.platform.IPlatform and defines configuration
21 * parameters that correspond to this platform's Cpu's, Board's, etc.
22 *
23 * The configuration parameters are initialized in this package's
24 * configuration script (package.cfg) and "bound" to the TCOM object
25 * model. Once they are part of the model, these parameters are
26 * queried by a program's configuration script.
27 *
28 * This particular platform has a single Cpu, and therefore, only
29 * declares a single CPU configuration object. Multi-CPU platforms
30 * would declare multiple Cpu configuration parameters (one per
31 * platform CPU).
32 */
33 metaonly module Platform inherits xdc.platform.IPlatform
34 {
35 readonly config xdc.platform.IPlatform.Board BOARD = {
36 id: "0",
37 boardName: "dsk6416",
38 boardFamily: "dsk6416",
39 boardRevision: null,
40 };
41
42 readonly config xdc.platform.IExeContext.Cpu CPU = {
43 id: "0",
44 clockRate: 600.0,
45 catalogName: "ti.catalog.c6000",
46 deviceName: "TMS320C6416",
47 revision: "",
48 };
49
50 instance:
51
52 override readonly config xdc.platform.IPlatform.Memory
53 externalMemoryMap[string] = [
54 ["SDRAM", {name: "SDRAM", base: 0x80000000, len: 0x01000000}],
55 ];
56
57 /*!
58 * ======== ftpath ========
59 * Installation directory of the Foundational Tools Suite
60 *
61 * The underlying simulation engine used to run executables produced
62 * using this platform is part of the Target Server / Foundational Tools
63 * product (http://www.hou.asp.ti.com/asp/sds/eft/projects/Foundation_Tools/Releases/index.html).
64 */
65 readonly config String ftpath;
66
67 68 69 70 71
72 override config string codeMemory = "IRAM";
73
74 override config string dataMemory = "SDRAM";
75
76 override config string stackMemory = "SDRAM";
77 };
78 79 80
81