Nariman Poushin | c703f90 | 2018-03-07 10:29:57 +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 | /* |
| 8 | * As the SGM platform supports FCM (with automatic interconnect |
| 9 | * enter/exit), we should not do anything in these interface functions. |
| 10 | * They are used to override the weak functions in cci drivers. |
| 11 | */ |
| 12 | |
| 13 | /****************************************************************************** |
| 14 | * Helper function to initialize ARM interconnect driver. |
| 15 | *****************************************************************************/ |
| 16 | void plat_arm_interconnect_init(void) |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | /****************************************************************************** |
| 21 | * Helper function to place current master into coherency |
| 22 | *****************************************************************************/ |
| 23 | void plat_arm_interconnect_enter_coherency(void) |
| 24 | { |
| 25 | } |
| 26 | |
| 27 | /****************************************************************************** |
| 28 | * Helper function to remove current master from coherency |
| 29 | *****************************************************************************/ |
| 30 | void plat_arm_interconnect_exit_coherency(void) |
| 31 | { |
| 32 | } |