repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
17 lines
408 B
C
17 lines
408 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* SiFive L2 Cache Controller header file
|
|
*
|
|
*/
|
|
|
|
#ifndef __SOC_SIFIVE_L2_CACHE_H
|
|
#define __SOC_SIFIVE_L2_CACHE_H
|
|
|
|
extern int register_sifive_l2_error_notifier(struct notifier_block *nb);
|
|
extern int unregister_sifive_l2_error_notifier(struct notifier_block *nb);
|
|
|
|
#define SIFIVE_L2_ERR_TYPE_CE 0
|
|
#define SIFIVE_L2_ERR_TYPE_UE 1
|
|
|
|
#endif /* __SOC_SIFIVE_L2_CACHE_H */
|