Arm Community
Site
Search
User
Site
Search
User
Arm Developer
Documentation
Learning Paths
On-Demand Videos
Groups
Arm Ambassadors
Education Hub
Open Source Software and Platforms
Research Collaboration and Enablement
Forums
AI forum
Architectures and Processors forum
Arm Development Platforms forum
Arm Development Studio forum
Automotive forum
Compilers and Libraries forum
Embedded and Microcontrollers forum
Internet of Things (IoT) forum
Keil forum
Laptops and Desktops forum
Mobile, Graphics, and Gaming forum
Morello forum
Operating Systems forum
Servers and Cloud Computing forum
SoC Design and Simulation forum
SystemReady Forum
Blogs
AI blog
Announcements
Architectures and Processors blog
Automotive blog
Embedded and Microcontrollers blog
Internet of Things (IoT) blog
Laptops and Desktops blog
Mobile, Graphics, and Gaming blog
Operating Systems blog
Servers and Cloud Computing blog
SoC Design and Simulation blog
Tools, Software and IDEs blog
Support
Arm Support Services
Documentation
Downloads
Training
Arm Approved program
Arm Design Reviews
Community Help
More
Cancel
Support forums
Arm Development Studio forum
Some questions of AXI
Jump...
Cancel
Locked
Locked
Replies
2 replies
Subscribers
120 subscribers
Views
2320 views
Users
0 members are here
Options
Share
More actions
Cancel
Related
How was your experience today?
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion
Some questions of AXI
tony huang
over 11 years ago
Note: This was originally posted on 14th November 2011 at
http://forums.arm.com
>>In AMBA4 AXI rev 2.0, in chapter 4.1 About addressing options:
>>Burst must not cross 4KB boundaries to prevent them from crossing boundaries between slaves and to limit the size of the address incrementer required within slaves.
Is it mean there use 20 bits to decode which slave is selected?
>>In chapter 9.2 Write strobes:
>>The write strobe signals, WSTRB, enable sparse data transfer on the write data bus.
I don't know what is this sentence mean. anybody can explanation detail, thanks!!
Colin Campbell
over 11 years ago
Note: This was originally posted on 14th November 2011 at
http://forums.arm.com
> Is it mean there use 20 bits to decode which slave is selected?
Yes, if your smallest slaves are as small as 4K in size.
>>The write strobe signals, WSTRB, enable sparse data transfer on the write data bus.
> I don't know what is this sentence mean. anybody can explanation detail, thanks!!
It just means that not all the byte lanes of the data bus specified by AWADDR/AWSIZE will be used in the "sparse" data transfer.
An example would be AWADDR=0x0, AWSIZE=3'b011 (8 byte transfer width), but WSTRB=0x11001001. AWSIZE says that 8 bytes could be transferred, but WSTRB indicates that only byte lanes 7, 6, 3 and 0 are actually used.
AWSIZE will be constant for a burst, but WSTRB can change on each data transfer, so it gives quite a flexible way of signalling which bytes to update in a target when using a burst.
Simple masters will not use "sparse" transfers, and will just drive all the relevant WSTRB bits high for each transfer in a burst. Note that AWSIZE tells you the maximum number of WSTRB bits you can assert, so for example if you were performing a byte transfer (AWSIZE=3'b000) on a 64 bit data bus, you could only assert 1 WSTRB bit.
JD
Cancel
Vote up
0
Vote down
Cancel
tony huang
over 11 years ago
Note: This was originally posted on 15th November 2011 at
http://forums.arm.com
Hello JD,
thanks for your reply, it's really help me! thanks again.
Cancel
Vote up
0
Vote down
Cancel