1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16 17
18
19 package ti.platforms.evmAM437X;
20
21 /*!
22 * ======== Platform ========
23 * Platform support for the evmAM437X
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 */
34 metaonly module Platform inherits xdc.platform.IPlatform
35 {
36 readonly config xdc.platform.IPlatform.Board BOARD = {
37 id: "0",
38 boardName: "evmAM437X",
39 boardFamily: "evmAM437X",
40 boardRevision: null
41 };
42
43
44 readonly config xdc.platform.IExeContext.Cpu GPP = {
45 id: "1",
46 clockRate: 600.0,
47 catalogName: "ti.catalog.arm.cortexa9",
48 deviceName: "AM437X",
49 revision: "1.0"
50 };
51
52 instance:
53
54 override readonly config xdc.platform.IPlatform.Memory
55 externalMemoryMap[string] = [
56 ["EXT_RAM", {
57 comment: "External RAM",
58 name: "EXT_RAM",
59 base: 0x80000000,
60 len: 0x08000000
61 }],
62 ];
63
64 override config string codeMemory = "EXT_RAM";
65 override config string dataMemory = "EXT_RAM";
66 override config string stackMemory = "EXT_RAM";
67 };
68 69 70
71