1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17
18 package ti.platforms.evmAM3359;
19
20 /*!
21 * ======== Platform ========
22 * Platform support for the evmAM3359
23 *
24 * This module implements xdc.platform.IPlatform and defines configuration
25 * parameters that correspond to this platform's Cpu's, Board's, etc.
26 *
27 * The configuration parameters are initialized in this package's
28 * configuration script (package.cfg) and "bound" to the TCOM object
29 * model. Once they are part of the model, these parameters are
30 * queried by a program's configuration script.
31 *
32 */
33 metaonly module Platform inherits xdc.platform.IPlatform
34 {
35 readonly config xdc.platform.IPlatform.Board BOARD = {
36 id: "0",
37 boardName: "evmAM3359",
38 boardFamily: "evmAM3359",
39 boardRevision: null
40 };
41
42
43 readonly config xdc.platform.IExeContext.Cpu GPP = {
44 id: "2",
45 clockRate: 550.0,
46 catalogName: "ti.catalog.arm.cortexa8",
47 deviceName: "AM3359",
48 revision: "1.0"
49 };
50
51 instance:
52
53 override readonly config xdc.platform.IPlatform.Memory
54 externalMemoryMap[string] = [
55 ["DDR3", {
56 comment: "DDR3 Memory",
57 name: "DDR3",
58 base: 0x80000000,
59 len: 0x20000000
60 }],
61 ];
62 };
63 64 65
66