elia.h 1000 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /****************************************************************************/
  2. /*
  3. * elia.h -- Lineo (formerly Moreton Bay) eLIA platform support.
  4. *
  5. * (C) Copyright 1999-2000, Moreton Bay (www.moreton.com.au)
  6. * (C) Copyright 1999-2000, Lineo (www.lineo.com)
  7. */
  8. /****************************************************************************/
  9. #ifndef elia_h
  10. #define elia_h
  11. /****************************************************************************/
  12. #include <asm/coldfire.h>
  13. #ifdef CONFIG_eLIA
  14. /*
  15. * The serial port DTR and DCD lines are also on the Parallel I/O
  16. * as well, so define those too.
  17. */
  18. #define eLIA_DCD1 0x0001
  19. #define eLIA_DCD0 0x0002
  20. #define eLIA_DTR1 0x0004
  21. #define eLIA_DTR0 0x0008
  22. #define eLIA_PCIRESET 0x0020
  23. /*
  24. * Kernel macros to set and unset the LEDs.
  25. */
  26. #ifndef __ASSEMBLY__
  27. extern unsigned short ppdata;
  28. #endif /* __ASSEMBLY__ */
  29. #endif /* CONFIG_eLIA */
  30. /****************************************************************************/
  31. #endif /* elia_h */