From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: Mika Westerberg <mika.westerberg@linux.intel.com>
Cc: linux-kernel@vger.kernel.org,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, "H. Peter Anvin" <hpa@zytor.com>,
x86@kernel.org, Len Brown <lenb@kernel.org>,
Mike Turquette <mturquette@linaro.org>,
Arnd Bergmann <arnd@arndb.de>,
Linus Walleij <linus.walleij@linaro.org>,
Mark Brown <broonie@opensource.wolfsonmicro.com>,
Heikki Krogerus <heikki.krogerus@linux.intel.com>,
linux-acpi@vger.kernel.org
Subject: Re: [PATCH 3/3] ACPI: create Lynxpoint clocks if LPSS devices are found during scan
Date: Fri, 18 Jan 2013 00:07:16 +0100 [thread overview]
Message-ID: <2120845.xiQTdAgPNJ@vostro.rjw.lan> (raw)
In-Reply-To: <1358174788-24439-4-git-send-email-mika.westerberg@linux.intel.com>
On Monday, January 14, 2013 04:46:28 PM Mika Westerberg wrote:
> Since we don't want to create the Lynxpoint LPSS clock tree on a machines
> where no LPSS exists at all we look for the Lynxpoint device ACPI HIDs
> during ACPI namespace scan and if a known device is seen we assume that it
> is safe to create the LPSS clocks.
>
> Therefore we allow init function to be passed via acpi_platform_device_ids[]
> table which is called whenever the corresponding device is found.
>
> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
> ---
> drivers/acpi/scan.c | 36 +++++++++++++++++++++++++++---------
> 1 file changed, 27 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c
> index 6a12702..8d9965e 100644
> --- a/drivers/acpi/scan.c
> +++ b/drivers/acpi/scan.c
> @@ -11,6 +11,7 @@
> #include <linux/kthread.h>
> #include <linux/dmi.h>
> #include <linux/nls.h>
> +#include <linux/platform_device.h>
>
> #include <acpi/acpi_drivers.h>
>
> @@ -29,6 +30,15 @@ extern struct acpi_device *acpi_root;
>
> static const char *dummy_hid = "device";
>
> +static void lpt_lpss_init_once(void)
> +{
> + static struct platform_device *pdev;
> +
> + /* Lynxpoint LPSS clocks */
> + if (!pdev)
> + pdev = platform_device_register_simple("clk-lpt", -1, NULL, 0);
> +}
> +
> /*
> * The following ACPI IDs are known to be suitable for representing as
> * platform devices.
> @@ -38,14 +48,14 @@ static const struct acpi_device_id acpi_platform_device_ids[] = {
> { "PNP0D40" },
>
> /* Haswell LPSS devices */
> - { "INT33C0", 0 },
> - { "INT33C1", 0 },
> - { "INT33C2", 0 },
> - { "INT33C3", 0 },
> - { "INT33C4", 0 },
> - { "INT33C5", 0 },
> - { "INT33C6", 0 },
> - { "INT33C7", 0 },
> + { "INT33C0", (kernel_ulong_t)lpt_lpss_init_once },
> + { "INT33C1", (kernel_ulong_t)lpt_lpss_init_once },
> + { "INT33C2", (kernel_ulong_t)lpt_lpss_init_once },
> + { "INT33C3", (kernel_ulong_t)lpt_lpss_init_once },
> + { "INT33C4", (kernel_ulong_t)lpt_lpss_init_once },
> + { "INT33C5", (kernel_ulong_t)lpt_lpss_init_once },
> + { "INT33C6", (kernel_ulong_t)lpt_lpss_init_once },
> + { "INT33C7", (kernel_ulong_t)lpt_lpss_init_once },
>
> { }
> };
> @@ -1580,6 +1590,7 @@ static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
> static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
> void *not_used, void **ret_not_used)
> {
> + const struct acpi_device_id *id;
> acpi_status status = AE_OK;
> struct acpi_device *device;
> unsigned long long sta_not_used;
> @@ -1595,7 +1606,14 @@ static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
> if (acpi_bus_get_device(handle, &device))
> return AE_CTRL_DEPTH;
>
> - if (!acpi_match_device_ids(device, acpi_platform_device_ids)) {
> + id = __acpi_match_device(device, acpi_platform_device_ids);
> + if (id) {
> + void (*init)(void) = (void (*)(void))id->driver_data;
> +
> + /* Run any initialization if required */
> + if (init)
> + init();
> +
I'd prefer this to be done by acpi_create_platform_device() and you can add
an extra arg to it for this purpose.
Moreover the driver_data need not be a function pointer. I actually think it
should consist of a number of flags that may be set or unset and the 0 bit
could be ACPI_PLATFORM_CLK or something like this. Then, if that is set in
its (new) second arg, acpi_create_platform_device() will do the
platform_device_register_simple("clk-lpt", ...), if not done already.
And yes, we may need those flags for other stuff.
> /* This is a known good platform device. */
> acpi_create_platform_device(device);
> } else if (device_attach(&device->dev) < 0) {
>
Thanks,
Rafael
--
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
next prev parent reply other threads:[~2013-01-17 23:01 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-14 14:46 [PATCH 0/3] x86: enable common clk and add support for Lynxpoint clocks Mika Westerberg
2013-01-14 14:46 ` [PATCH 1/3] x86: enable common clk on x86 Mika Westerberg
2013-01-15 23:59 ` Rafael J. Wysocki
2013-01-16 5:20 ` Mika Westerberg
2013-01-16 15:01 ` Rafael J. Wysocki
2013-01-16 15:28 ` Mika Westerberg
2013-01-17 22:38 ` Rafael J. Wysocki
2013-01-14 14:46 ` [PATCH 2/3] clk: x86: add support for Lynxpoint LPSS clocks Mika Westerberg
2013-01-15 3:11 ` Mark Brown
2013-01-14 14:46 ` [PATCH 3/3] ACPI: create Lynxpoint clocks if LPSS devices are found during scan Mika Westerberg
2013-01-17 23:07 ` Rafael J. Wysocki [this message]
2013-01-15 5:27 ` [PATCH 0/3] x86: enable common clk and add support for Lynxpoint clocks Mika Westerberg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2120845.xiQTdAgPNJ@vostro.rjw.lan \
--to=rjw@sisk.pl \
--cc=arnd@arndb.de \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=heikki.krogerus@linux.intel.com \
--cc=hpa@zytor.com \
--cc=lenb@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mika.westerberg@linux.intel.com \
--cc=mingo@redhat.com \
--cc=mturquette@linaro.org \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®