platform_device.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * platform_device.h - generic, centralized driver model
  3. *
  4. * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
  5. *
  6. * This file is released under the GPLv2
  7. *
  8. * See Documentation/driver-model/ for more information.
  9. */
  10. #ifndef _PLATFORM_DEVICE_H_
  11. #define _PLATFORM_DEVICE_H_
  12. #include <linux/device.h>
  13. #include <linux/mod_devicetable.h>
  14. struct platform_device {
  15. const char * name;
  16. int id;
  17. struct device dev;
  18. u32 num_resources;
  19. struct resource * resource;
  20. void *platform_data;
  21. struct platform_device_id *id_entry;
  22. };
  23. #define platform_get_device_id(pdev) ((pdev)->id_entry)
  24. #define to_platform_device(x) container_of((x), struct platform_device, dev)
  25. extern int platform_device_register(struct platform_device *);
  26. extern void platform_device_unregister(struct platform_device *);
  27. extern struct bus_type platform_bus_type;
  28. extern struct device platform_bus;
  29. extern struct resource *platform_get_resource(struct platform_device *, unsigned int, unsigned int);
  30. extern int platform_get_irq(struct platform_device *, unsigned int);
  31. extern struct resource *platform_get_resource_byname(struct platform_device *, unsigned int, char *);
  32. extern int platform_get_irq_byname(struct platform_device *, char *);
  33. extern int platform_add_devices(struct platform_device **, int);
  34. extern struct platform_device *platform_device_register_simple(const char *, int id,
  35. struct resource *, unsigned int);
  36. extern struct platform_device *platform_device_register_data(struct device *,
  37. const char *, int, const void *, size_t);
  38. extern struct platform_device *platform_device_alloc(const char *name, int id);
  39. extern int platform_device_add_resources(struct platform_device *pdev, struct resource *res, unsigned int num);
  40. extern int platform_device_add_data(struct platform_device *pdev, const void *data, size_t size);
  41. extern int platform_device_add(struct platform_device *pdev);
  42. extern void platform_device_del(struct platform_device *pdev);
  43. extern void platform_device_put(struct platform_device *pdev);
  44. struct platform_driver {
  45. int (*probe)(struct platform_device *);
  46. int (*remove)(struct platform_device *);
  47. void (*shutdown)(struct platform_device *);
  48. int (*suspend)(struct platform_device *, pm_message_t state);
  49. int (*suspend_late)(struct platform_device *, pm_message_t state);
  50. int (*resume_early)(struct platform_device *);
  51. int (*resume)(struct platform_device *);
  52. struct device_driver driver;
  53. struct platform_device_id *id_table;
  54. };
  55. extern int platform_driver_register(struct platform_driver *);
  56. extern void platform_driver_unregister(struct platform_driver *);
  57. /* non-hotpluggable platform devices may use this so that probe() and
  58. * its support may live in __init sections, conserving runtime memory.
  59. */
  60. extern int platform_driver_probe(struct platform_driver *driver,
  61. int (*probe)(struct platform_device *));
  62. #define platform_get_drvdata(_dev) dev_get_drvdata(&(_dev)->dev)
  63. #define platform_set_drvdata(_dev,data) dev_set_drvdata(&(_dev)->dev, (data))
  64. #endif /* _PLATFORM_DEVICE_H_ */