Efficient Implementation of Application-Aware Spinlock Control in MPSoCs

Efficient Implementation of Application-Aware Spinlock Control in MPSoCs

Diandian Zhang, Li Lu, Jeronimo Castrillon, Torsten Kempf, Gerd Ascheid, Rainer Leupers, Bart Vanthournout
DOI: 10.4018/jertcs.2013010104
OnDemand:
(Individual Articles)
Available
$37.50
No Current Special Offers
TOTAL SAVINGS: $37.50

Abstract

Spinlocks are a common technique in Multi-Processor Systems-on-Chip (MPSoCs) to protect shared resources and prevent data corruption. Without a priori application knowledge, the control of spinlocks is often highly random which can degrade the system performance significantly. To improve this, a centralized control mechanism for spinlocks is proposed in this paper, which utilizes application-specific information during spinlock control. The complete control flow is presented, which starts from integrating high-level user-defined information down to a low-level realization of the control. An Application-Specific Instruction-set Processor (ASIP) called OSIP, which was originally designed for task scheduling and mapping, is extended to support this mechanism. The case studies demonstrate the high efficiency of the proposed approach and at the same time highlight the efficiency and flexibility advantages of using an ASIP as the system controller in MPSoCs.
Article Preview
Top

Motivation And Introduction

Multi-Processor Systems-on-Chip (MPSoCs) are nowadays widely used because of their high performance and power efficiency. Representative examples are TI OMAP processors (Texas Instruments, Inc., 2013), Qualcomm Snapdragon processors (Qualcomm, Inc., 2013) and the ARM MPCore technology (ARM Ltd., 2013). In MPSoCs, applications are typically partitioned into tasks for parallel execution on different processing elements (PEs). To protect shared resources like memories or I/O peripherals and to prevent data corruption, mutual exclusion needs to be guaranteed. Spinlocks are widely used to ensure that a shared resource can only be accessed by one task at a time.

In literature, many studies have been carried out on the implementation of spinlocks. Most of them focus on the fairness of spinlock acquisition or the reduction of transaction costs due to repeatedly requesting the locks. However, they typically do not consider application knowledge. This leads to a random acquisition order of spinlocks. In many cases, this results in a low parallelism in task execution, and consequently worsens the system performance. A simple example is depicted in Figure 1, in which two PEs compete for the same spinlock. In the example, two different execution sequences of tasks are possible by acquiring the lock in different orders. The execution time shows that assigning the spinlock to PE2 first (Figure 1(b)) is a better choice, which achieves a higher performance.

Figure 1.

Impact of spinlock acquisition order

jertcs.2013010104.f01

Despite its simplicity, this example shows that a smart control of spinlocks can increase the system performance. To guide the spinlock control in a smart way, application knowledge such as task sizes and task dependencies needs to be considered.

In this work, experiments are done by including application knowledge into the spinlock control flow. As the application knowledge varies from one application to another, it is important to have user-defined spinlock control algorithms, which can be adapted to the application. Instead of developing yet another control unit in the system to execute user-defined algorithms, which will introduce high area cost, they can naturally be implemented on an existing system controller. However, the controller should be programmable, can e.g. be a RISC processor or an Application-Specific Instruction-set Processor (ASIP). This work uses systems with an ASIP controller as the experiment platforms. This ASIP is called OSIP, which stands for Operating System ASIP and was originally designed for task scheduling and mapping.

The remainder of this paper is organized as follows. After discussing about the related work, a brief overview of OSIP-based MPSoCs is given. Next, an application-aware spinlock control flow in OSIP-based systems is introduced, which starts from the high-level integration of application knowledge down to the low-level realization. Two case studies – a synthetic application and a multimedia application (H.264 video decoding) are performed, which demonstrate the efficiency of the proposed spinlock control mechanism and highlight the advantages of using an ASIP as the system controller. Finally, a summary and an outlook are given.

Top

A commonly used technique to address mutual exclusion in multi-processor systems is to use spinlocks. Many implementations have been proposed for spinlocks in literature. The simplest approach is the test-and-set lock, which repeatedly tries to replace the lock flag with true in order to acquire the lock. Although the implementation is rather simple, it introduces heavy traffic load due to continuous updates of the flag, especially in cache coherent systems. One improvement is suggested by using the test and test-and-set lock (Rudolph & Segall, 1984), in which updates are only made when the lock is assumed to be available. Another important improvement is introduced by Anderson (1990) by adding a certain delay (backoff) between two unsuccessful trials.

Complete Article List

Search this Journal:
Reset
Volume 15: 1 Issue (2024): Forthcoming, Available for Pre-Order
Volume 14: 1 Issue (2023)
Volume 13: 4 Issues (2022): 1 Released, 3 Forthcoming
Volume 12: 4 Issues (2021)
Volume 11: 4 Issues (2020)
Volume 10: 4 Issues (2019)
Volume 9: 2 Issues (2018)
Volume 8: 2 Issues (2017)
Volume 7: 2 Issues (2016)
Volume 6: 2 Issues (2015)
Volume 5: 4 Issues (2014)
Volume 4: 4 Issues (2013)
Volume 3: 4 Issues (2012)
Volume 2: 4 Issues (2011)
Volume 1: 4 Issues (2010)
View Complete Journal Contents Listing