m32r_sio.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * m32r_sio.h
  3. *
  4. * Driver for M32R serial ports
  5. *
  6. * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
  7. * Based on drivers/serial/8250.h.
  8. *
  9. * Copyright (C) 2001 Russell King.
  10. * Copyright (C) 2004 Hirokazu Takata <takata at linux-m32r.org>
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. */
  17. #include <linux/pci.h>
  18. struct m32r_sio_probe {
  19. struct module *owner;
  20. int (*pci_init_one)(struct pci_dev *dev);
  21. void (*pci_remove_one)(struct pci_dev *dev);
  22. void (*pnp_init)(void);
  23. };
  24. int m32r_sio_register_probe(struct m32r_sio_probe *probe);
  25. void m32r_sio_unregister_probe(struct m32r_sio_probe *probe);
  26. void m32r_sio_get_irq_map(unsigned int *map);
  27. void m32r_sio_suspend_port(int line);
  28. void m32r_sio_resume_port(int line);
  29. struct old_serial_port {
  30. unsigned int uart;
  31. unsigned int baud_base;
  32. unsigned int port;
  33. unsigned int irq;
  34. unsigned int flags;
  35. unsigned char io_type;
  36. unsigned char __iomem *iomem_base;
  37. unsigned short iomem_reg_shift;
  38. };
  39. #define _INLINE_ inline
  40. #define PROBE_RSA (1 << 0)
  41. #define PROBE_ANY (~0)
  42. #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)