leon.h 380 B

12345678910111213141516171819202122232425262728
  1. /* LEON Header File select
  2. *
  3. * (C) Copyright 2007
  4. * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __ASM_LEON_H__
  9. #define __ASM_LEON_H__
  10. #if defined(CONFIG_LEON3)
  11. #include <asm/leon3.h>
  12. #elif defined(CONFIG_LEON2)
  13. #include <asm/leon2.h>
  14. #else
  15. #error Unknown LEON processor
  16. #endif
  17. /* Common stuff */
  18. #endif