Home | History | Annotate | Download | only in drivers
      1 /*
      2  * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
      3  *
      4  * SPDX-License-Identifier: BSD-3-Clause
      5  */
      6 
      7 #ifndef __MEMCTRL_H__
      8 #define __MEMCTRL_H__
      9 
     10 void tegra_memctrl_setup(void);
     11 void tegra_memctrl_restore_settings(void);
     12 void tegra_memctrl_tzdram_setup(uint64_t phys_base, uint32_t size_in_bytes);
     13 void tegra_memctrl_tzram_setup(uint64_t phys_base, uint32_t size_in_bytes);
     14 void tegra_memctrl_videomem_setup(uint64_t phys_base, uint32_t size_in_bytes);
     15 void tegra_memctrl_disable_ahb_redirection(void);
     16 
     17 #endif /* __MEMCTRL_H__ */
     18