Bus matrix for multi-master access in ARM Architecture - Time & Space Complexity
When multiple masters try to access shared resources via a bus matrix, it is important to understand how the time to complete requests grows as more masters or requests increase.
We want to know how the bus matrix handles multiple access requests and how this affects overall execution time.
Analyze the time complexity of arbitration and access in a bus matrix for multiple masters.
// Pseudocode for bus matrix arbitration
loop forever {
for each master in masters {
if (master has request) {
grant access to master;
wait for master to complete transaction;
}
}
}
This code cycles through each master, granting access one at a time if they have a request, then waits for the transaction to finish before moving on.
Identify the loops and repeated checks in the bus matrix arbitration process.
- Primary operation: Looping through each master to check for requests and grant access.
- How many times: Once per master per arbitration cycle; repeated continuously as requests come in.
As the number of masters increases, the bus matrix must check more requests each cycle, increasing the time to grant access.
| Input Size (n = number of masters) | Approx. Operations per cycle |
|---|---|
| 10 | 10 checks and possible grants |
| 100 | 100 checks and possible grants |
| 1000 | 1000 checks and possible grants |
Pattern observation: The number of operations grows linearly with the number of masters.
Time Complexity: O(n)
This means the time to process all masters' requests grows directly in proportion to the number of masters.
[X] Wrong: "The bus matrix can grant access to all masters at the same time, so time does not increase with more masters."
[OK] Correct: In reality, the bus matrix grants access one master at a time to avoid conflicts, so more masters mean more checks and longer wait times.
Understanding how bus matrices handle multiple masters helps you think about resource sharing and arbitration in hardware, a useful skill for system design discussions.
"What if the bus matrix could grant access to multiple masters simultaneously? How would the time complexity change?"