cache-uniphier.h 457 B

1234567891011121314151617
  1. /*
  2. * Copyright (C) 2016 Socionext Inc.
  3. * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef __CACHE_UNIPHIER_H
  8. #define __CACHE_UNIPHIER_H
  9. #include <linux/types.h>
  10. void uniphier_cache_prefetch_range(u32 start, u32 end, u32 ways);
  11. void uniphier_cache_touch_range(u32 start, u32 end, u32 ways);
  12. void uniphier_cache_touch_zero_range(u32 start, u32 end, u32 ways);
  13. #endif /* __CACHE_UNIPHIER_H */