mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
20187fd11c
This patch adds Keystone2 K2E SOC specific code to support MSMC cache coherency. Also create header file for msmc to hold its API. Acked-by: Murali Karicheri <m-karicheri2@ti.com> Signed-off-by: Hao Zhang <hzhang@ti.com> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
17 lines
266 B
C
17 lines
266 B
C
/*
|
|
* MSMC controller
|
|
*
|
|
* (C) Copyright 2014
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _MSMC_H_
|
|
#define _MSMC_H_
|
|
|
|
#include <asm/arch/hardware.h>
|
|
|
|
void msmc_share_all_segments(int priv_id);
|
|
|
|
#endif
|