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