virtex.h 890 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * arch/ppc/platforms/4xx/virtex.h
  3. *
  4. * Include file that defines the Xilinx Virtex-II Pro processor
  5. *
  6. * Author: MontaVista Software, Inc.
  7. * source@mvista.com
  8. *
  9. * 2002-2004 (c) MontaVista Software, Inc. This file is licensed under the
  10. * terms of the GNU General Public License version 2. This program is licensed
  11. * "as is" without any warranty of any kind, whether express or implied.
  12. */
  13. #ifdef __KERNEL__
  14. #ifndef __ASM_VIRTEX_H__
  15. #define __ASM_VIRTEX_H__
  16. /* serial defines */
  17. #include <asm/ibm405.h>
  18. /* Ugly, ugly, ugly! BASE_BAUD defined here to keep 8250.c happy. */
  19. #if !defined(BASE_BAUD)
  20. #define BASE_BAUD (0) /* dummy value; not used */
  21. #endif
  22. /* Device type enumeration for platform bus definitions */
  23. #ifndef __ASSEMBLY__
  24. enum ppc_sys_devices {
  25. VIRTEX_UART, NUM_PPC_SYS_DEVS,
  26. };
  27. #endif
  28. #endif /* __ASM_VIRTEX_H__ */
  29. #endif /* __KERNEL__ */