bus.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * linux/include/amba/bus.h
  3. *
  4. * This device type deals with ARM PrimeCells and anything else that
  5. * presents a proper CID (0xB105F00D) at the end of the I/O register
  6. * region or that is derived from a PrimeCell.
  7. *
  8. * Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #ifndef ASMARM_AMBA_H
  15. #define ASMARM_AMBA_H
  16. #include <linux/device.h>
  17. #include <linux/resource.h>
  18. #define AMBA_NR_IRQS 2
  19. struct amba_device {
  20. struct device dev;
  21. struct resource res;
  22. u64 dma_mask;
  23. unsigned int periphid;
  24. unsigned int irq[AMBA_NR_IRQS];
  25. };
  26. struct amba_id {
  27. unsigned int id;
  28. unsigned int mask;
  29. void *data;
  30. };
  31. struct amba_driver {
  32. struct device_driver drv;
  33. int (*probe)(struct amba_device *, struct amba_id *);
  34. int (*remove)(struct amba_device *);
  35. void (*shutdown)(struct amba_device *);
  36. int (*suspend)(struct amba_device *, pm_message_t);
  37. int (*resume)(struct amba_device *);
  38. struct amba_id *id_table;
  39. };
  40. enum amba_vendor {
  41. AMBA_VENDOR_ARM = 0x41,
  42. AMBA_VENDOR_ST = 0x80,
  43. };
  44. #define amba_get_drvdata(d) dev_get_drvdata(&d->dev)
  45. #define amba_set_drvdata(d,p) dev_set_drvdata(&d->dev, p)
  46. int amba_driver_register(struct amba_driver *);
  47. void amba_driver_unregister(struct amba_driver *);
  48. int amba_device_register(struct amba_device *, struct resource *);
  49. void amba_device_unregister(struct amba_device *);
  50. struct amba_device *amba_find_device(const char *, struct device *, unsigned int, unsigned int);
  51. int amba_request_regions(struct amba_device *, const char *);
  52. void amba_release_regions(struct amba_device *);
  53. #define amba_config(d) (((d)->periphid >> 24) & 0xff)
  54. #define amba_rev(d) (((d)->periphid >> 20) & 0x0f)
  55. #define amba_manf(d) (((d)->periphid >> 12) & 0xff)
  56. #define amba_part(d) ((d)->periphid & 0xfff)
  57. #endif