rc32434.h 357 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Definitions for IDT RC323434 CPU.
  4. */
  5. #ifndef _ASM_RC32434_RC32434_H_
  6. #define _ASM_RC32434_RC32434_H_
  7. #include <linux/delay.h>
  8. #include <linux/io.h>
  9. #define IDT_CLOCK_MULT 2
  10. /* cpu pipeline flush */
  11. static inline void rc32434_sync(void)
  12. {
  13. __asm__ volatile ("sync");
  14. }
  15. #endif /* _ASM_RC32434_RC32434_H_ */