mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-30 07:39:24 +00:00

Move avs driver code to common directory, so that the same code can be re-used by both R-Car Gen3 and RZ/G2 platforms. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Change-Id: I85d9fa8b6abf158ce2521f1696478f7c5339fc42
20 lines
416 B
C
20 lines
416 B
C
/*
|
|
* Copyright (c) 2015-2017, Renesas Electronics Corporation. All rights
|
|
* reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef AVS_DRIVER_H
|
|
#define AVS_DRIVER_H
|
|
|
|
/* AVS Setting. 1:enable / 0:disable */
|
|
#ifndef AVS_SETTING_ENABLE
|
|
#define AVS_SETTING_ENABLE 1
|
|
#endif /* AVS_SETTING_ENABLE */
|
|
|
|
void rcar_avs_init(void);
|
|
void rcar_avs_setting(void);
|
|
void rcar_avs_end(void);
|
|
|
|
#endif /* AVS_DRIVER_H */
|