From: Matthew Garrett <mjg@redhat.com>
To: linux-acpi@vger.kernel.org
Cc: linux-ide@vger.kernel.org, linux-scsi@vger.kernel.org,
lenb@kernel.org, James.Bottomley@suse.de, jgarzik@pobox.com,
Matthew Garrett <mjg@redhat.com>
Subject: [PATCHv2] acpi: Add support for linking docks to the objects they contain
Date: Wed, 15 Sep 2010 16:16:21 -0400 [thread overview]
Message-ID: <1284581781-3396-1-git-send-email-mjg@redhat.com> (raw)
In-Reply-To: <20100915130504.099bbeb6.randy.dunlap@oracle.com>
When undocking, it's helpful to know which devices are going to disappear.
This patch adds support for adding symlinks to the device into the docking
bay.
Signed-off-by: Matthew Garrett <mjg@redhat.com>
---
Updated to fix the kerneldoc
drivers/acpi/dock.c | 78 +++++++++++++++++++++++++++++++++++++++++++
include/acpi/acpi_drivers.h | 10 +++++
2 files changed, 88 insertions(+), 0 deletions(-)
diff --git a/drivers/acpi/dock.c b/drivers/acpi/dock.c
index 3fe29e9..6578015 100644
--- a/drivers/acpi/dock.c
+++ b/drivers/acpi/dock.c
@@ -276,6 +276,84 @@ int is_dock_device(acpi_handle handle)
EXPORT_SYMBOL_GPL(is_dock_device);
/**
+ * dock_link_device - link a device from the dock
+ * @handle: acpi handle of the potentially dependent device
+ */
+struct device **dock_link_device(acpi_handle handle)
+{
+ struct device *dev = acpi_get_physical_device(handle);
+ struct dock_station *dock_station;
+ int ret, dock = 0;
+ struct device **devices;
+
+ devices = kmalloc(dock_station_count * sizeof(struct device *),
+ GFP_KERNEL);
+
+ if (!dev)
+ return NULL;
+
+ if (is_dock(handle)) {
+ put_device(dev);
+ return NULL;
+ }
+
+ list_for_each_entry(dock_station, &dock_stations, sibling) {
+ if (find_dock_dependent_device(dock_station, handle)) {
+ ret = sysfs_create_link(&dock_station->dock_device->dev.kobj,
+ &dev->kobj, dev_name(dev));
+ WARN_ON(ret);
+ devices[dock] = &dock_station->dock_device->dev;
+ dock++;
+ }
+ }
+ if (!dock)
+ put_device(dev);
+
+ devices[dock] = NULL;
+ return devices;
+}
+EXPORT_SYMBOL_GPL(dock_link_device);
+
+/**
+ * dock_unlink_device - unlink a device from the dock
+ * @handle: acpi handle of the potentially dependent device
+ */
+struct device **dock_unlink_device(acpi_handle handle)
+{
+ struct device *dev = acpi_get_physical_device(handle);
+ struct dock_station *dock_station;
+ int dock = 0;
+ struct device **devices =
+ kmalloc(dock_station_count * sizeof(struct device *),
+ GFP_KERNEL);
+
+ if (!dev)
+ return NULL;
+
+ if (is_dock(handle)) {
+ put_device(dev);
+ return NULL;
+ }
+
+ list_for_each_entry(dock_station, &dock_stations, sibling) {
+ if (find_dock_dependent_device(dock_station, handle)) {
+ sysfs_remove_link(&dock_station->dock_device->dev.kobj,
+ dev_name(dev));
+ devices[dock] = &dock_station->dock_device->dev;
+ dock++;
+ }
+ }
+ /* An extra reference has been held while the link existed */
+ if (dock)
+ put_device(dev);
+
+ put_device(dev);
+ devices[dock] = NULL;
+ return devices;
+}
+EXPORT_SYMBOL_GPL(dock_unlink_device);
+
+/**
* dock_present - see if the dock station is present.
* @ds: the dock station
*
diff --git a/include/acpi/acpi_drivers.h b/include/acpi/acpi_drivers.h
index 23d78b4..59774b5 100644
--- a/include/acpi/acpi_drivers.h
+++ b/include/acpi/acpi_drivers.h
@@ -133,6 +133,8 @@ extern int register_hotplug_dock_device(acpi_handle handle,
struct acpi_dock_ops *ops,
void *context);
extern void unregister_hotplug_dock_device(acpi_handle handle);
+extern struct device **dock_link_device(acpi_handle handle);
+extern struct device **dock_unlink_device(acpi_handle handle);
#else
static inline int is_dock_device(acpi_handle handle)
{
@@ -154,6 +156,14 @@ static inline int register_hotplug_dock_device(acpi_handle handle,
static inline void unregister_hotplug_dock_device(acpi_handle handle)
{
}
+static inline struct device **dock_link_device(acpi_handle handle)
+{
+ return NULL;
+}
+static inline struct device **dock_unlink_device(acpi_handle handle)
+{
+ return NULL;
+}
#endif
#endif /*__ACPI_DRIVERS_H__*/
--
1.7.1
next prev parent reply other threads:[~2010-09-15 20:18 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-15 19:57 [PATCH 1/5] scsi: Export scsi_bus_type Matthew Garrett
2010-09-15 19:58 ` [PATCH 2/5] libata: Bind the Linux device tree to the ACPI device tree Matthew Garrett
2010-09-15 19:58 ` [PATCH 3/5] libata: Migrate ACPI code over to new bindings Matthew Garrett
2010-09-15 19:58 ` [PATCH 4/5] acpi: Add support for linking docks to the objects they contain Matthew Garrett
2010-09-15 20:05 ` Randy Dunlap
2010-09-15 20:16 ` Matthew Garrett [this message]
2010-09-15 19:58 ` [PATCH 5/5] libata: Add links between removable devices and docks Matthew Garrett
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=1284581781-3396-1-git-send-email-mjg@redhat.com \
--to=mjg@redhat.com \
--cc=James.Bottomley@suse.de \
--cc=jgarzik@pobox.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-scsi@vger.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;
as well as URLs for NNTP newsgroup(s).