2019-05-06 18:48:40 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/*
|
|
|
|
* SiFive L2 Cache Controller header file
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-01-08 14:09:06 +08:00
|
|
|
#ifndef __SOC_SIFIVE_L2_CACHE_H
|
|
|
|
#define __SOC_SIFIVE_L2_CACHE_H
|
2019-05-06 18:48:40 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-01-08 14:09:06 +08:00
|
|
|
#endif /* __SOC_SIFIVE_L2_CACHE_H */
|