wbflush.h 694 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Header file for using the wbflush routine
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. *
  8. * Copyright (c) 1998 Harald Koerfgen
  9. * Copyright (C) 2002 Maciej W. Rozycki
  10. */
  11. #ifndef _ASM_WBFLUSH_H
  12. #define _ASM_WBFLUSH_H
  13. #ifdef CONFIG_CPU_HAS_WB
  14. extern void (*__wbflush)(void);
  15. extern void wbflush_setup(void);
  16. #define wbflush() \
  17. do { \
  18. __sync(); \
  19. __wbflush(); \
  20. } while (0)
  21. #else /* !CONFIG_CPU_HAS_WB */
  22. #define wbflush_setup() do { } while (0)
  23. #define wbflush() fast_iob()
  24. #endif /* !CONFIG_CPU_HAS_WB */
  25. #endif /* _ASM_WBFLUSH_H */