Newer
Older
arm-trusted-firmware / drivers / arm / gic / v3 / gic500.c
@Soby Mathew Soby Mathew on 5 Oct 2017 488 bytes GICv3: add functions for save and restore
/*
 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

/*
 * Driver for GIC500-specific features. This driver only overrides APIs that are
 * different to those generic ones in GICv3 driver.
 */
#include "gicv3_private.h"

void gicv3_distif_pre_save(unsigned int proc_num)
{
	arm_gicv3_distif_pre_save(proc_num);
}

void gicv3_distif_post_restore(unsigned int proc_num)
{
	arm_gicv3_distif_post_restore(proc_num);
}