pwm-lpss-pci.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Intel Low Power Subsystem PWM controller PCI driver
  3. *
  4. * Copyright (C) 2014, Intel Corporation
  5. *
  6. * Derived from the original pwm-lpss.c
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/pci.h>
  15. #include "pwm-lpss.h"
  16. static int pwm_lpss_probe_pci(struct pci_dev *pdev,
  17. const struct pci_device_id *id)
  18. {
  19. const struct pwm_lpss_boardinfo *info;
  20. struct pwm_lpss_chip *lpwm;
  21. int err;
  22. err = pcim_enable_device(pdev);
  23. if (err < 0)
  24. return err;
  25. info = (struct pwm_lpss_boardinfo *)id->driver_data;
  26. lpwm = pwm_lpss_probe(&pdev->dev, &pdev->resource[0], info);
  27. if (IS_ERR(lpwm))
  28. return PTR_ERR(lpwm);
  29. pci_set_drvdata(pdev, lpwm);
  30. return 0;
  31. }
  32. static void pwm_lpss_remove_pci(struct pci_dev *pdev)
  33. {
  34. struct pwm_lpss_chip *lpwm = pci_get_drvdata(pdev);
  35. pwm_lpss_remove(lpwm);
  36. }
  37. static const struct pci_device_id pwm_lpss_pci_ids[] = {
  38. { PCI_VDEVICE(INTEL, 0x0f08), (unsigned long)&pwm_lpss_byt_info},
  39. { PCI_VDEVICE(INTEL, 0x0f09), (unsigned long)&pwm_lpss_byt_info},
  40. { PCI_VDEVICE(INTEL, 0x2288), (unsigned long)&pwm_lpss_bsw_info},
  41. { PCI_VDEVICE(INTEL, 0x2289), (unsigned long)&pwm_lpss_bsw_info},
  42. { },
  43. };
  44. MODULE_DEVICE_TABLE(pci, pwm_lpss_pci_ids);
  45. static struct pci_driver pwm_lpss_driver_pci = {
  46. .name = "pwm-lpss",
  47. .id_table = pwm_lpss_pci_ids,
  48. .probe = pwm_lpss_probe_pci,
  49. .remove = pwm_lpss_remove_pci,
  50. };
  51. module_pci_driver(pwm_lpss_driver_pci);
  52. MODULE_DESCRIPTION("PWM PCI driver for Intel LPSS");
  53. MODULE_LICENSE("GPL v2");