dm9000.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* dm9000.h: Davicom DM9000 adapter configuration
  2. *
  3. * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #ifndef _ASM_DM9000_H
  12. #define _ASM_DM9000_H
  13. #include <asm/mb-regs.h>
  14. #define DM9000_ARCH_IOBASE (__region_CS6 + 0x300)
  15. #define DM9000_ARCH_IRQ IRQ_CPU_EXTERNAL3 /* XIRQ #3 (shared with FPGA) */
  16. #undef DM9000_ARCH_IRQ_ACTLOW /* IRQ pin active high */
  17. #define DM9000_ARCH_BUS_INFO "CS6#+0x300" /* bus info for ethtool */
  18. #undef __is_PCI_IO
  19. #define __is_PCI_IO(addr) 0 /* not PCI */
  20. #undef inl
  21. #define inl(addr) \
  22. ({ \
  23. unsigned long __ioaddr = (unsigned long) addr; \
  24. uint32_t x = readl(__ioaddr); \
  25. ((x & 0xff) << 24) | ((x & 0xff00) << 8) | ((x >> 8) & 0xff00) | ((x >> 24) & 0xff); \
  26. })
  27. #undef insl
  28. #define insl(a,b,l) __insl(a,b,l,0) /* don't byte-swap */
  29. #endif /* _ASM_DM9000_H */