intel-lpss-acpi.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. * Intel LPSS ACPI support.
  3. *
  4. * Copyright (C) 2015, Intel Corporation
  5. *
  6. * Authors: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
  7. * Mika Westerberg <mika.westerberg@linux.intel.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/acpi.h>
  14. #include <linux/ioport.h>
  15. #include <linux/kernel.h>
  16. #include <linux/module.h>
  17. #include <linux/pm.h>
  18. #include <linux/pm_runtime.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/property.h>
  21. #include "intel-lpss.h"
  22. static struct property_entry spt_i2c_properties[] = {
  23. PROPERTY_ENTRY_U32("i2c-sda-hold-time-ns", 230),
  24. { },
  25. };
  26. static const struct intel_lpss_platform_info spt_i2c_info = {
  27. .clk_rate = 120000000,
  28. .properties = spt_i2c_properties,
  29. };
  30. static const struct intel_lpss_platform_info bxt_info = {
  31. .clk_rate = 100000000,
  32. };
  33. static struct property_entry bxt_i2c_properties[] = {
  34. PROPERTY_ENTRY_U32("i2c-sda-hold-time-ns", 42),
  35. PROPERTY_ENTRY_U32("i2c-sda-falling-time-ns", 171),
  36. PROPERTY_ENTRY_U32("i2c-scl-falling-time-ns", 208),
  37. { },
  38. };
  39. static const struct intel_lpss_platform_info bxt_i2c_info = {
  40. .clk_rate = 133000000,
  41. .properties = bxt_i2c_properties,
  42. };
  43. static struct property_entry apl_i2c_properties[] = {
  44. PROPERTY_ENTRY_U32("i2c-sda-hold-time-ns", 207),
  45. PROPERTY_ENTRY_U32("i2c-sda-falling-time-ns", 171),
  46. PROPERTY_ENTRY_U32("i2c-scl-falling-time-ns", 208),
  47. { },
  48. };
  49. static const struct intel_lpss_platform_info apl_i2c_info = {
  50. .clk_rate = 133000000,
  51. .properties = apl_i2c_properties,
  52. };
  53. static const struct acpi_device_id intel_lpss_acpi_ids[] = {
  54. /* SPT */
  55. { "INT3446", (kernel_ulong_t)&spt_i2c_info },
  56. { "INT3447", (kernel_ulong_t)&spt_i2c_info },
  57. /* BXT */
  58. { "80860AAC", (kernel_ulong_t)&bxt_i2c_info },
  59. { "80860ABC", (kernel_ulong_t)&bxt_info },
  60. { "80860AC2", (kernel_ulong_t)&bxt_info },
  61. /* APL */
  62. { "80865AAC", (kernel_ulong_t)&apl_i2c_info },
  63. { "80865ABC", (kernel_ulong_t)&bxt_info },
  64. { "80865AC2", (kernel_ulong_t)&bxt_info },
  65. { }
  66. };
  67. MODULE_DEVICE_TABLE(acpi, intel_lpss_acpi_ids);
  68. static int intel_lpss_acpi_probe(struct platform_device *pdev)
  69. {
  70. struct intel_lpss_platform_info *info;
  71. const struct acpi_device_id *id;
  72. id = acpi_match_device(intel_lpss_acpi_ids, &pdev->dev);
  73. if (!id)
  74. return -ENODEV;
  75. info = devm_kmemdup(&pdev->dev, (void *)id->driver_data, sizeof(*info),
  76. GFP_KERNEL);
  77. if (!info)
  78. return -ENOMEM;
  79. info->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  80. info->irq = platform_get_irq(pdev, 0);
  81. pm_runtime_set_active(&pdev->dev);
  82. pm_runtime_enable(&pdev->dev);
  83. return intel_lpss_probe(&pdev->dev, info);
  84. }
  85. static int intel_lpss_acpi_remove(struct platform_device *pdev)
  86. {
  87. intel_lpss_remove(&pdev->dev);
  88. pm_runtime_disable(&pdev->dev);
  89. return 0;
  90. }
  91. static INTEL_LPSS_PM_OPS(intel_lpss_acpi_pm_ops);
  92. static struct platform_driver intel_lpss_acpi_driver = {
  93. .probe = intel_lpss_acpi_probe,
  94. .remove = intel_lpss_acpi_remove,
  95. .driver = {
  96. .name = "intel-lpss",
  97. .acpi_match_table = intel_lpss_acpi_ids,
  98. .pm = &intel_lpss_acpi_pm_ops,
  99. },
  100. };
  101. module_platform_driver(intel_lpss_acpi_driver);
  102. MODULE_AUTHOR("Andy Shevchenko <andriy.shevchenko@linux.intel.com>");
  103. MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>");
  104. MODULE_DESCRIPTION("Intel LPSS ACPI driver");
  105. MODULE_LICENSE("GPL v2");