amba.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/hardware/amba.h
  3.  *
  4.  *  Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. #ifndef ASMARM_AMBA_H
  11. #define ASMARM_AMBA_H
  12. #define AMBA_NR_IRQS 2
  13. struct amba_device {
  14. struct device dev;
  15. struct resource res;
  16. u64 dma_mask;
  17. unsigned int periphid;
  18. unsigned int irq[AMBA_NR_IRQS];
  19. };
  20. struct amba_id {
  21. unsigned int id;
  22. unsigned int mask;
  23. void *data;
  24. };
  25. struct amba_driver {
  26. struct device_driver drv;
  27. int (*probe)(struct amba_device *, void *);
  28. int (*remove)(struct amba_device *);
  29. void (*shutdown)(struct amba_device *);
  30. int (*suspend)(struct amba_device *, pm_message_t);
  31. int (*resume)(struct amba_device *);
  32. struct amba_id *id_table;
  33. };
  34. #define amba_get_drvdata(d) dev_get_drvdata(&d->dev)
  35. #define amba_set_drvdata(d,p) dev_set_drvdata(&d->dev, p)
  36. int amba_driver_register(struct amba_driver *);
  37. void amba_driver_unregister(struct amba_driver *);
  38. int amba_device_register(struct amba_device *, struct resource *);
  39. void amba_device_unregister(struct amba_device *);
  40. struct amba_device *amba_find_device(const char *, struct device *, unsigned int, unsigned int);
  41. int amba_request_regions(struct amba_device *, const char *);
  42. void amba_release_regions(struct amba_device *);
  43. #define amba_config(d) (((d)->periphid >> 24) & 0xff)
  44. #define amba_rev(d) (((d)->periphid >> 20) & 0x0f)
  45. #define amba_manf(d) (((d)->periphid >> 12) & 0xff)
  46. #define amba_part(d) ((d)->periphid & 0xfff)
  47. #endif