1 2 3 4 5 6 7 8
9
10 11 12 13
14 package ti.catalog.c5500;
15
16 /*!
17 * ======== TMS320C5510A ========
18 * The C5510A device data sheet module.
19 *
20 * This module implements the xdc.platform.ICpuDataSheet interface and is
21 * used by platforms to obtain "data sheet" information about this device.
22 */
23 metaonly module TMS320C5510A inherits ITMS320C55xx
24 {
25 instance:
26 override config string cpuCoreRevision = "1.0";
27
28 /*!
29 * ======== memMap ========
30 * The default memory map for this device
31 */
32 config xdc.platform.IPlatform.Memory memMap[string] = [
33 ["DARAM", {
34 comment: "8 blocks of 8K bytes of on-chip Dual-Access RAM",
35 name: "DARAM",
36 base: 0x000000,
37 len: 0x010000,
38 space: "code/data",
39 access: "RWX"
40 }],
41
42 ["SARAM", {
43 comment: "32 blocks of 8K bytes of on-chip Single-Access RAM",
44 name: "SARAM",
45 base: 0x10000,
46 len: 0x40000,
47 space: "code/data",
48 access: "RWX"
49 }],
50 ];
51 };
52 53 54
55