1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17 package ti.catalog.c5400;
18
19 /*!
20 * ======== TMS320C5410 ========
21 * The C5410 device data sheet module.
22 *
23 * This module implements the xdc.platform.ICpuDataSheet interface and is used
24 * by platforms to obtain "data sheet" information about this device.
25 */
26 metaonly module TMS320C5410 inherits ITMS320C54xx
27 {
28 config xdc.platform.IPlatform.Memory memBlock[string] = [
29 ["P_DARAM", {
30 comment: "On-Chip Program DARAM",
31 name: "P_DARAM",
32 base: 0x0080,
33 len: 0x1F80,
34 space: "code"
35 }],
36
37 ["P_SARAM1", {
38 comment: "On-Chip Program SARAM1",
39 name: "P_SARAM1",
40 base: 0x2000,
41 len: 0x6000,
42 space: "code"
43 }],
44
45 ["P_ROM", {
46 comment: "On-Chip Program ROM",
47 name: "P_ROM",
48 base: 0xC000,
49 len: 0x3F80,
50 space: "code"
51 }],
52
53 ["VECT", {
54 comment: "On-Chip Interrupts",
55 name: "VECT",
56 base: 0xFF80,
57 len: 0x0080,
58 space: "code"
59 }],
60
61 ["P_SARAM2", {
62 comment: "On-Chip Program SARAM2",
63 name: "P_SARAM2",
64 base: 0x18000,
65 len: 0x08000,
66 space: "code"
67 }],
68
69 ["D_SPRAM", {
70 comment: "On-Chip Scratch-Pad RAM",
71 name: "D_SPRAM",
72 base: 0x60,
73 len: 0x20,
74 space: "data"
75 }],
76
77 ["D_DARAM", {
78 comment: "On-Chip Data DARAM",
79 name: "D_DARAM",
80 base: 0x0080,
81 len: 0x1F80,
82 space: "data"
83 }],
84
85 ["D_SARAM1", {
86 comment: "On-Chip Data SARAM1",
87 name: "D_SARAM1",
88 base: 0x2000,
89 len: 0x6000,
90 space: "data"
91 }],
92
93 ["D_SARAM2", {
94 comment: "On-Chip Data SARAM2",
95 name: "D_SARAM2",
96 base: 0x8000,
97 len: 0x8000,
98 space: "data"
99 }],
100
101 ];
102
103 instance:
104 override config string cpuCoreRevision = "1.0";
105
106 /*!
107 * ======== memMap ========
108 * The default memory map for this device
109 */
110 config xdc.platform.IPlatform.Memory memMap[string];
111 }
112 113 114
115