Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <arch_helpers.h> |
| 8 | #include <debug.h> |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 9 | |
| 10 | /* |
| 11 | * For SGI575 which support FCM (with automatic interconnect enter/exit), |
| 12 | * we should not do anything in these interface functions. |
| 13 | * They are used to override the weak functions in cci drivers. |
| 14 | */ |
| 15 | |
| 16 | /****************************************************************************** |
| 17 | * Helper function to initialize ARM interconnect driver. |
| 18 | *****************************************************************************/ |
Daniel Boulby | f45a4bb | 2018-09-18 13:26:03 +0100 | [diff] [blame] | 19 | void __init plat_arm_interconnect_init(void) |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 20 | { |
| 21 | } |
| 22 | |
| 23 | /****************************************************************************** |
| 24 | * Helper function to place current master into coherency |
| 25 | *****************************************************************************/ |
| 26 | void plat_arm_interconnect_enter_coherency(void) |
| 27 | { |
| 28 | } |
| 29 | |
| 30 | /****************************************************************************** |
| 31 | * Helper function to remove current master from coherency |
| 32 | *****************************************************************************/ |
| 33 | void plat_arm_interconnect_exit_coherency(void) |
| 34 | { |
| 35 | } |