Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1252636

[PATCH v1 1/2] mfd: lpss: Add Broxton ACPI IDs

From Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Newsgroups linux.kernel
Subject [PATCH v1 1/2] mfd: lpss: Add Broxton ACPI IDs
Date 2015-10-21 11:50 +0200
Message-ID <qlYbV-7xO-27@gated-at.bofh.it> (permalink)
References <qlYbU-7xO-15@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


From: Mika Westerberg <mika.westerberg@linux.intel.com>

Intel Broxton has the same LPSS block than Intel Sunrisepoint so add
Broxton ACPI IDs to the list.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/mfd/intel-lpss-acpi.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/drivers/mfd/intel-lpss-acpi.c b/drivers/mfd/intel-lpss-acpi.c
index 0d92d73..b6fd904 100644
--- a/drivers/mfd/intel-lpss-acpi.c
+++ b/drivers/mfd/intel-lpss-acpi.c
@@ -25,10 +25,26 @@ static const struct intel_lpss_platform_info spt_info = {
 	.clk_rate = 120000000,
 };
 
+static const struct intel_lpss_platform_info bxt_info = {
+	.clk_rate = 100000000,
+};
+
+static const struct intel_lpss_platform_info bxt_i2c_info = {
+	.clk_rate = 133000000,
+};
+
 static const struct acpi_device_id intel_lpss_acpi_ids[] = {
 	/* SPT */
 	{ "INT3446", (kernel_ulong_t)&spt_info },
 	{ "INT3447", (kernel_ulong_t)&spt_info },
+	/* BXT */
+	{ "80860AAC", (kernel_ulong_t)&bxt_i2c_info },
+	{ "80860ABC", (kernel_ulong_t)&bxt_info },
+	{ "80860AC2", (kernel_ulong_t)&bxt_info },
+	/* APL */
+	{ "80865AAC", (kernel_ulong_t)&bxt_i2c_info },
+	{ "80865ABC", (kernel_ulong_t)&bxt_info },
+	{ "80865AC2", (kernel_ulong_t)&bxt_info },
 	{ }
 };
 MODULE_DEVICE_TABLE(acpi, intel_lpss_acpi_ids);
-- 
2.6.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v1 0/2] mfd: intel-lpss: support Intel Broxton Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2015-10-21 11:50 +0200
  [PATCH v1 2/2] mfd: lpss: Add Intel Broxton PCI IDs Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2015-10-21 11:50 +0200
    Re: [PATCH v1 2/2] mfd: lpss: Add Intel Broxton PCI IDs Lee Jones <lee.jones@linaro.org> - 2015-10-21 13:50 +0200
  [PATCH v1 1/2] mfd: lpss: Add Broxton ACPI IDs Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2015-10-21 11:50 +0200
    Re: [PATCH v1 1/2] mfd: lpss: Add Broxton ACPI IDs Lee Jones <lee.jones@linaro.org> - 2015-10-21 13:50 +0200

csiph-web