
Advanced System-on-Chip Design: Interfaces and Memory Mapping
Explore the world of system-on-chip design with a focus on microprocessor interfaces, memory mapping, memory-mapped interfaces, mailboxes, FIFOs, shared memory, and coprocessor interfaces. Learn about unique addresses in the system address space, volatile memory mapping, data transfer mechanisms, and high-throughput coprocessor examples. Dive into reading guide sections for a comprehensive understanding of CoDesign principles.
Download Presentation

Please find below an Image/Link to download the presentation.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.
You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.
E N D
Presentation Transcript
System-on-Chip Design Microprocessor Interfaces Hao Zheng Comp Sci & Eng U of South Florida 1
Memory-Mapping Interface Each component has an unique address in the system address space. 2
Memory Mapped Interfaces volatileint *MMReg = (int*) 0x8000; int value = *MMReg; *MMReg = 5; 4
FIFOs This FIFO has two slave interfaces. 6
Shared Memory To transfer large chunks of data. 7
Coprocessor Interfaces + high throughput, fixed latency - non-reusable. 8
Coprocessor Interfaces: An Example put rD, FLSx // copy register rD to FSL interface FSLx get rd, FSLx // copy FSL interface FSLx into register rD 9
Reading Guide Section 11.1 11.2, the CoDesign book. Skip 11.1.6, 11.2.2 11