Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1360489 > unrolled thread
| Started by | Alexey Brodkin <Alexey.Brodkin@synopsys.com> |
|---|---|
| First post | 2016-03-18 11:10 +0100 |
| Last post | 2016-03-21 18:20 +0100 |
| Articles | 7 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 0/3] drm: introduce drm_connector_plug_all() helper Alexey Brodkin <Alexey.Brodkin@synopsys.com> - 2016-03-18 11:10 +0100
[PATCH 1/3] drm: introduce drm_connector_plug_all() helper Alexey Brodkin <Alexey.Brodkin@synopsys.com> - 2016-03-18 11:10 +0100
Re: [PATCH 1/3] drm: introduce drm_connector_plug_all() helper Daniel Vetter <daniel@ffwll.ch> - 2016-03-18 19:10 +0100
Re: [PATCH 1/3] drm: introduce drm_connector_plug_all() helper Alexey Brodkin <Alexey.Brodkin@synopsys.com> - 2016-03-18 23:00 +0100
Re: [PATCH 1/3] drm: introduce drm_connector_plug_all() helper Daniel Vetter <daniel@ffwll.ch> - 2016-03-19 11:10 +0100
Re: [PATCH 1/3] drm: introduce drm_connector_plug_all() helper Alexey Brodkin <Alexey.Brodkin@synopsys.com> - 2016-03-21 12:10 +0100
Re: [PATCH 1/3] drm: introduce drm_connector_plug_all() helper Daniel Vetter <daniel@ffwll.ch> - 2016-03-21 18:20 +0100
| From | Alexey Brodkin <Alexey.Brodkin@synopsys.com> |
|---|---|
| Date | 2016-03-18 11:10 +0100 |
| Subject | [PATCH 0/3] drm: introduce drm_connector_plug_all() helper |
| Message-ID | <rdZvX-4at-3@gated-at.bofh.it> |
As a pair to already existing drm_connector_unplug_all() we're adding generic implementation of what is already done in some drivers. After implementation of that new helper we're updating 2 drivers that used to use it's own implementation: [1] atmel_hlcdc [2] rcar_du Other drivers still use load() callback and so should be first modified so their load() gets called from their probe() explicitly. Build- and run-tested on yet to be upstreamed ARC PGU (part of AXS10x board). Alexey Brodkin (3): drm: introduce drm_connector_plug_all() helper drm: atmel_hldc - use generic drm_connector_plug_all() helper drm: rcar-du - use generic drm_connector_plug_all() helper drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c | 39 ++---------------------- drivers/gpu/drm/drm_crtc.c | 44 +++++++++++++++++++++++++++- drivers/gpu/drm/drm_drv.c | 3 +- drivers/gpu/drm/rcar-du/rcar_du_drv.c | 9 +----- include/drm/drm_crtc.h | 3 +- 5 files changed, 50 insertions(+), 48 deletions(-) Cc: Daniel Vetter <daniel@ffwll.ch> Cc: David Airlie <airlied@linux.ie> Cc: Boris Brezillon <boris.brezillon@free-electrons.com> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Cc: linux-renesas-soc@vger.kernel.org -- 2.5.0
[toc] | [next] | [standalone]
| From | Alexey Brodkin <Alexey.Brodkin@synopsys.com> |
|---|---|
| Date | 2016-03-18 11:10 +0100 |
| Subject | [PATCH 1/3] drm: introduce drm_connector_plug_all() helper |
| Message-ID | <rdZvZ-4at-25@gated-at.bofh.it> |
| In reply to | #1360489 |
As a pair to already existing drm_connector_unplug_all() we're adding
generic implementation of what is already done in some drivers.
Once this helper is implemented we'll be ready to switch existing
driver-specific implementations with generic one.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: David Airlie <airlied@linux.ie>
---
drivers/gpu/drm/drm_crtc.c | 44 +++++++++++++++++++++++++++++++++++++++++++-
drivers/gpu/drm/drm_drv.c | 3 ++-
include/drm/drm_crtc.h | 3 ++-
3 files changed, 47 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c
index 65258ac..ce27420 100644
--- a/drivers/gpu/drm/drm_crtc.c
+++ b/drivers/gpu/drm/drm_crtc.c
@@ -1080,6 +1080,46 @@ void drm_connector_unregister(struct drm_connector *connector)
}
EXPORT_SYMBOL(drm_connector_unregister);
+/**
+ * drm_connector_plug_all - register connector userspace interfaces
+ * @dev: drm device
+ *
+ * This function registers all connector userspace interfaces in sysfs. Should
+ * be call when the device is disconnected, e.g. from an usb driver's
+ * ->connect callback.
+ */
+int drm_connector_plug_all(struct drm_device *dev)
+{
+ struct drm_connector *connector, *failed;
+ int ret;
+
+ mutex_lock(&dev->mode_config.mutex);
+
+ list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
+ ret = drm_connector_register(connector);
+ if (ret) {
+ failed = connector;
+ goto err;
+ }
+ }
+
+ mutex_unlock(&dev->mode_config.mutex);
+
+ return 0;
+
+err:
+ list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
+ if (failed == connector)
+ break;
+
+ drm_connector_unregister(connector);
+ }
+
+ mutex_unlock(&dev->mode_config.mutex);
+
+ return ret;
+}
+EXPORT_SYMBOL(drm_connector_plug_all);
/**
* drm_connector_unplug_all - unregister connector userspace interfaces
@@ -1093,10 +1133,12 @@ void drm_connector_unplug_all(struct drm_device *dev)
{
struct drm_connector *connector;
- /* FIXME: taking the mode config mutex ends up in a clash with sysfs */
+ mutex_lock(&dev->mode_config.mutex);
+
list_for_each_entry(connector, &dev->mode_config.connector_list, head)
drm_connector_unregister(connector);
+ mutex_unlock(&dev->mode_config.mutex);
}
EXPORT_SYMBOL(drm_connector_unplug_all);
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
index 167c8d3..4a559c6 100644
--- a/drivers/gpu/drm/drm_drv.c
+++ b/drivers/gpu/drm/drm_drv.c
@@ -715,7 +715,8 @@ EXPORT_SYMBOL(drm_dev_unref);
*
* Register the DRM device @dev with the system, advertise device to user-space
* and start normal device operation. @dev must be allocated via drm_dev_alloc()
- * previously.
+ * previously and right after drm_dev_register() driver should call
+ * drm_connector_plug_all() to register all connectors in sysfs.
*
* Never call this twice on any device!
*
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h
index 8c7fb3d..aa8789e 100644
--- a/include/drm/drm_crtc.h
+++ b/include/drm/drm_crtc.h
@@ -2214,7 +2214,8 @@ void drm_connector_unregister(struct drm_connector *connector);
extern void drm_connector_cleanup(struct drm_connector *connector);
extern unsigned int drm_connector_index(struct drm_connector *connector);
-/* helper to unplug all connectors from sysfs for device */
+/* helpers to plug/unplug all connectors to/from sysfs for device */
+extern int drm_connector_plug_all(struct drm_device *dev);
extern void drm_connector_unplug_all(struct drm_device *dev);
extern int drm_bridge_add(struct drm_bridge *bridge);
--
2.5.0
[toc] | [prev] | [next] | [standalone]
| From | Daniel Vetter <daniel@ffwll.ch> |
|---|---|
| Date | 2016-03-18 19:10 +0100 |
| Subject | Re: [PATCH 1/3] drm: introduce drm_connector_plug_all() helper |
| Message-ID | <re70u-49j-11@gated-at.bofh.it> |
| In reply to | #1360490 |
On Fri, Mar 18, 2016 at 01:01:42PM +0300, Alexey Brodkin wrote:
> As a pair to already existing drm_connector_unplug_all() we're adding
> generic implementation of what is already done in some drivers.
>
> Once this helper is implemented we'll be ready to switch existing
> driver-specific implementations with generic one.
>
> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
> Cc: Daniel Vetter <daniel@ffwll.ch>
> Cc: David Airlie <airlied@linux.ie>
> ---
> drivers/gpu/drm/drm_crtc.c | 44 +++++++++++++++++++++++++++++++++++++++++++-
> drivers/gpu/drm/drm_drv.c | 3 ++-
> include/drm/drm_crtc.h | 3 ++-
> 3 files changed, 47 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c
> index 65258ac..ce27420 100644
> --- a/drivers/gpu/drm/drm_crtc.c
> +++ b/drivers/gpu/drm/drm_crtc.c
> @@ -1080,6 +1080,46 @@ void drm_connector_unregister(struct drm_connector *connector)
> }
> EXPORT_SYMBOL(drm_connector_unregister);
>
> +/**
> + * drm_connector_plug_all - register connector userspace interfaces
> + * @dev: drm device
> + *
> + * This function registers all connector userspace interfaces in sysfs. Should
> + * be call when the device is disconnected, e.g. from an usb driver's
Still talks about disconnect ;-) Please also mention that this just calls
drm_connector_register() exactly like this including () to generate a
kerneldoc hyperlink.
> + * ->connect callback.
Returns: section is missing, specifying how this can fail. Just copy the
one from connector_register().
> + */
> +int drm_connector_plug_all(struct drm_device *dev)
> +{
> + struct drm_connector *connector, *failed;
> + int ret;
> +
> + mutex_lock(&dev->mode_config.mutex);
> +
> + list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
for_each_connector here please. And the s/plug/register/ naming discussion
we've had.
> + ret = drm_connector_register(connector);
> + if (ret) {
> + failed = connector;
> + goto err;
> + }
> + }
> +
> + mutex_unlock(&dev->mode_config.mutex);
> +
> + return 0;
> +
> +err:
> + list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
> + if (failed == connector)
> + break;
> +
> + drm_connector_unregister(connector);
> + }
> +
> + mutex_unlock(&dev->mode_config.mutex);
> +
> + return ret;
> +}
> +EXPORT_SYMBOL(drm_connector_plug_all);
>
> /**
> * drm_connector_unplug_all - unregister connector userspace interfaces
> @@ -1093,10 +1133,12 @@ void drm_connector_unplug_all(struct drm_device *dev)
> {
> struct drm_connector *connector;
>
> - /* FIXME: taking the mode config mutex ends up in a clash with sysfs */
> + mutex_lock(&dev->mode_config.mutex);
You can't drop that FIXME, the bug is still there.
> +
> list_for_each_entry(connector, &dev->mode_config.connector_list, head)
> drm_connector_unregister(connector);
>
> + mutex_unlock(&dev->mode_config.mutex);
> }
> EXPORT_SYMBOL(drm_connector_unplug_all);
>
> diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
> index 167c8d3..4a559c6 100644
> --- a/drivers/gpu/drm/drm_drv.c
> +++ b/drivers/gpu/drm/drm_drv.c
> @@ -715,7 +715,8 @@ EXPORT_SYMBOL(drm_dev_unref);
> *
> * Register the DRM device @dev with the system, advertise device to user-space
> * and start normal device operation. @dev must be allocated via drm_dev_alloc()
> - * previously.
> + * previously and right after drm_dev_register() driver should call
It'd do 2 sentences here for simplicity, not connect them with and. Also
"... _the_ driver should ..."
> + * drm_connector_plug_all() to register all connectors in sysfs.
Maybe mention why this is separate: "This is a separate call for backwards
compatibility with drivers still using the deprecated ->load() callback,
where connectors are registered from within the ->load() callback."
Besides these details looks good.
-Daniel
> *
> * Never call this twice on any device!
> *
> diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h
> index 8c7fb3d..aa8789e 100644
> --- a/include/drm/drm_crtc.h
> +++ b/include/drm/drm_crtc.h
> @@ -2214,7 +2214,8 @@ void drm_connector_unregister(struct drm_connector *connector);
>
> extern void drm_connector_cleanup(struct drm_connector *connector);
> extern unsigned int drm_connector_index(struct drm_connector *connector);
> -/* helper to unplug all connectors from sysfs for device */
> +/* helpers to plug/unplug all connectors to/from sysfs for device */
> +extern int drm_connector_plug_all(struct drm_device *dev);
> extern void drm_connector_unplug_all(struct drm_device *dev);
>
> extern int drm_bridge_add(struct drm_bridge *bridge);
> --
> 2.5.0
>
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
[toc] | [prev] | [next] | [standalone]
| From | Alexey Brodkin <Alexey.Brodkin@synopsys.com> |
|---|---|
| Date | 2016-03-18 23:00 +0100 |
| Subject | Re: [PATCH 1/3] drm: introduce drm_connector_plug_all() helper |
| Message-ID | <reaB4-1dO-11@gated-at.bofh.it> |
| In reply to | #1360850 |
Hi Daniel, On Fri, 2016-03-18 at 19:06 +-0100, Daniel Vetter wrote: +AD4- On Fri, Mar 18, 2016 at 01:01:42PM +-0300, Alexey Brodkin wrote: +AD4- +AD4- +AD4- +AD4- As a pair to already existing drm+AF8-connector+AF8-unplug+AF8-all() we're adding +AD4- +AD4- generic implementation of what is already done in some drivers. +AD4- +AD4- +AD4- +AD4- Once this helper is implemented we'll be ready to switch existing +AD4- +AD4- driver-specific implementations with generic one. +AD4- +AD4- +AD4- +AD4- Signed-off-by: Alexey Brodkin +ADw-abrodkin+AEA-synopsys.com+AD4- +AD4- +AD4- Cc: Daniel Vetter +ADw-daniel+AEA-ffwll.ch+AD4- +AD4- +AD4- Cc: David Airlie +ADw-airlied+AEA-linux.ie+AD4- +AD4- +AD4- --- +AD4- +AD4- +AKA-drivers/gpu/drm/drm+AF8-crtc.c +AHw- 44 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-- +AD4- +AD4- +AKA-drivers/gpu/drm/drm+AF8-drv.c+AKAAoAB8AKAAoA-3 +-+-- +AD4- +AD4- +AKA-include/drm/drm+AF8-crtc.h+AKAAoACgAKAAoAB8AKAAoA-3 +-+-- +AD4- +AD4- +AKA-3 files changed, 47 insertions(+-), 3 deletions(-) +AD4- +AD4- +AD4- +AD4- diff --git a/drivers/gpu/drm/drm+AF8-crtc.c b/drivers/gpu/drm/drm+AF8-crtc.c +AD4- +AD4- index 65258ac..ce27420 100644 +AD4- +AD4- --- a/drivers/gpu/drm/drm+AF8-crtc.c +AD4- +AD4- +-+-+- b/drivers/gpu/drm/drm+AF8-crtc.c +AD4- +AD4- +AEAAQA- -1080,6 +-1080,46 +AEAAQA- void drm+AF8-connector+AF8-unregister(struct drm+AF8-connector +ACo-connector) +AD4- +AD4- +AKAAfQ- +AD4- +AD4- +AKA-EXPORT+AF8-SYMBOL(drm+AF8-connector+AF8-unregister)+ADs- +AD4- +AD4- +AKA- +AD4- +AD4- +-/+ACoAKg- +AD4- +AD4- +- +ACo- drm+AF8-connector+AF8-plug+AF8-all - register connector userspace interfaces +AD4- +AD4- +- +ACo- +AEA-dev: drm device +AD4- +AD4- +- +ACo- +AD4- +AD4- +- +ACo- This function registers all connector userspace interfaces in sysfs. Should +AD4- +AD4- +- +ACo- be call when the device is disconnected, e.g. from an usb driver's +AD4- Still talks about disconnect +ADs--) Please also mention that this just calls +AD4- drm+AF8-connector+AF8-register() exactly like this including () to generate a +AD4- kerneldoc hyperlink. Well I intentionally left in description of drm+AF8-connector+AF8-register+AF8-all(): +ACI-Should be call when the device is disconnected, e.g. from an usb driver's +AKA--+AD4-connect callback.+ACI- I did mean it. Or is this statement is incorrect and example of invocation of drm+AF8-connector+AF8-register+AF8-all() should be different? Which one works better then? +AD4- +AD4- +AD4- +AD4- +- +ACo- -+AD4-connect callback. +AD4- Returns: section is missing, specifying how this can fail. Just copy the +AD4- one from connector+AF8-register(). Yeah, correct. Blind copy-paste doesn't work equally good always :( +AD4- +AD4- +AD4- +AD4- +- +ACo-/ +AD4- +AD4- +-int drm+AF8-connector+AF8-plug+AF8-all(struct drm+AF8-device +ACo-dev) +AD4- +AD4- +-+AHs- +AD4- +AD4- +- struct drm+AF8-connector +ACo-connector, +ACo-failed+ADs- +AD4- +AD4- +- int ret+ADs- +AD4- +AD4- +- +AD4- +AD4- +- mutex+AF8-lock(+ACY-dev-+AD4-mode+AF8-config.mutex)+ADs- +AD4- +AD4- +- +AD4- +AD4- +- list+AF8-for+AF8-each+AF8-entry(connector, +ACY-dev-+AD4-mode+AF8-config.connector+AF8-list, head) +AHs- +AD4- for+AF8-each+AF8-connector here please. And the s/plug/register/ naming discussion +AD4- we've had. Ok. +AD4- +AD4- +AD4- +AD4- +- ret +AD0- drm+AF8-connector+AF8-register(connector)+ADs- +AD4- +AD4- +- if (ret) +AHs- +AD4- +AD4- +- failed +AD0- connector+ADs- +AD4- +AD4- +- goto err+ADs- +AD4- +AD4- +- +AH0- +AD4- +AD4- +- +AH0- +AD4- +AD4- +- +AD4- +AD4- +- mutex+AF8-unlock(+ACY-dev-+AD4-mode+AF8-config.mutex)+ADs- +AD4- +AD4- +- +AD4- +AD4- +- return 0+ADs- +AD4- +AD4- +- +AD4- +AD4- +-err: +AD4- +AD4- +- list+AF8-for+AF8-each+AF8-entry(connector, +ACY-dev-+AD4-mode+AF8-config.connector+AF8-list, head) +AHs- +AD4- +AD4- +- if (failed +AD0APQ- connector) +AD4- +AD4- +- break+ADs- +AD4- +AD4- +- +AD4- +AD4- +- drm+AF8-connector+AF8-unregister(connector)+ADs- +AD4- +AD4- +- +AH0- +AD4- +AD4- +- +AD4- +AD4- +- mutex+AF8-unlock(+ACY-dev-+AD4-mode+AF8-config.mutex)+ADs- +AD4- +AD4- +- +AD4- +AD4- +- return ret+ADs- +AD4- +AD4- +-+AH0- +AD4- +AD4- +-EXPORT+AF8-SYMBOL(drm+AF8-connector+AF8-plug+AF8-all)+ADs- +AD4- +AD4- +AKA- +AD4- +AD4- +AKA-/+ACoAKg- +AD4- +AD4- +AKA- +ACo- drm+AF8-connector+AF8-unplug+AF8-all - unregister connector userspace interfaces +AD4- +AD4- +AEAAQA- -1093,10 +-1133,12 +AEAAQA- void drm+AF8-connector+AF8-unplug+AF8-all(struct drm+AF8-device +ACo-dev) +AD4- +AD4- +AKAAew- +AD4- +AD4- +AKA- struct drm+AF8-connector +ACo-connector+ADs- +AD4- +AD4- +AKA- +AD4- +AD4- - /+ACo- FIXME: taking the mode config mutex ends up in a clash with sysfs +ACo-/ +AD4- +AD4- +- mutex+AF8-lock(+ACY-dev-+AD4-mode+AF8-config.mutex)+ADs- +AD4- You can't drop that FIXME, the bug is still there. That's clear given your explanation in the previous email. +AD4- +AD4- +AD4- +AD4- +- +AD4- +AD4- +AKA- list+AF8-for+AF8-each+AF8-entry(connector, +ACY-dev-+AD4-mode+AF8-config.connector+AF8-list, head) +AD4- +AD4- +AKA- drm+AF8-connector+AF8-unregister(connector)+ADs- +AD4- +AD4- +AKA- +AD4- +AD4- +- mutex+AF8-unlock(+ACY-dev-+AD4-mode+AF8-config.mutex)+ADs- +AD4- +AD4- +AKAAfQ- +AD4- +AD4- +AKA-EXPORT+AF8-SYMBOL(drm+AF8-connector+AF8-unplug+AF8-all)+ADs- +AD4- +AD4- +AKA- +AD4- +AD4- diff --git a/drivers/gpu/drm/drm+AF8-drv.c b/drivers/gpu/drm/drm+AF8-drv.c +AD4- +AD4- index 167c8d3..4a559c6 100644 +AD4- +AD4- --- a/drivers/gpu/drm/drm+AF8-drv.c +AD4- +AD4- +-+-+- b/drivers/gpu/drm/drm+AF8-drv.c +AD4- +AD4- +AEAAQA- -715,7 +-715,8 +AEAAQA- EXPORT+AF8-SYMBOL(drm+AF8-dev+AF8-unref)+ADs- +AD4- +AD4- +AKA- +ACo- +AD4- +AD4- +AKA- +ACo- Register the DRM device +AEA-dev with the system, advertise device to user-space +AD4- +AD4- +AKA- +ACo- and start normal device operation. +AEA-dev must be allocated via drm+AF8-dev+AF8-alloc() +AD4- +AD4- - +ACo- previously. +AD4- +AD4- +- +ACo- previously and right after drm+AF8-dev+AF8-register() driver should call +AD4- It'd do 2 sentences here for simplicity, not connect them with and. Also +AD4- +ACI-... +AF8-the+AF8- driver should ...+ACI- Ok. +AD4- +AD4- +AD4- +AD4- +- +ACo- drm+AF8-connector+AF8-plug+AF8-all() to register all connectors in sysfs. +AD4- Maybe mention why this is separate: +ACI-This is a separate call for backwards +AD4- compatibility with drivers still using the deprecated -+AD4-load() callback, +AD4- where connectors are registered from within the -+AD4-load() callback.+ACI- Ok. -Alexey
[toc] | [prev] | [next] | [standalone]
| From | Daniel Vetter <daniel@ffwll.ch> |
|---|---|
| Date | 2016-03-19 11:10 +0100 |
| Subject | Re: [PATCH 1/3] drm: introduce drm_connector_plug_all() helper |
| Message-ID | <relZw-6PZ-15@gated-at.bofh.it> |
| In reply to | #1360956 |
On Fri, Mar 18, 2016 at 09:58:49PM +0000, Alexey Brodkin wrote:
> Hi Daniel,
>
> On Fri, 2016-03-18 at 19:06 +0100, Daniel Vetter wrote:
> > On Fri, Mar 18, 2016 at 01:01:42PM +0300, Alexey Brodkin wrote:
> > >
> > > As a pair to already existing drm_connector_unplug_all() we're adding
> > > generic implementation of what is already done in some drivers.
> > >
> > > Once this helper is implemented we'll be ready to switch existing
> > > driver-specific implementations with generic one.
> > >
> > > Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
> > > Cc: Daniel Vetter <daniel@ffwll.ch>
> > > Cc: David Airlie <airlied@linux.ie>
> > > ---
> > > drivers/gpu/drm/drm_crtc.c | 44 +++++++++++++++++++++++++++++++++++++++++++-
> > > drivers/gpu/drm/drm_drv.c | 3 ++-
> > > include/drm/drm_crtc.h | 3 ++-
> > > 3 files changed, 47 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c
> > > index 65258ac..ce27420 100644
> > > --- a/drivers/gpu/drm/drm_crtc.c
> > > +++ b/drivers/gpu/drm/drm_crtc.c
> > > @@ -1080,6 +1080,46 @@ void drm_connector_unregister(struct drm_connector *connector)
> > > }
> > > EXPORT_SYMBOL(drm_connector_unregister);
> > >
> > > +/**
> > > + * drm_connector_plug_all - register connector userspace interfaces
> > > + * @dev: drm device
> > > + *
> > > + * This function registers all connector userspace interfaces in sysfs. Should
> > > + * be call when the device is disconnected, e.g. from an usb driver's
> > Still talks about disconnect ;-) Please also mention that this just calls
> > drm_connector_register() exactly like this including () to generate a
> > kerneldoc hyperlink.
>
> Well I intentionally left in description of drm_connector_register_all():
> "Should be call when the device is disconnected, e.g. from an usb driver's
> ->connect callback."
You use "disconnected" for connecting stuff. That doesn't make sense to me
at all - register_all is for when you want to publish something, not for
unpublishing when the device disappears. Or maybe this is a case of lost
in translation, and you mean something else?
-Daniel
> I did mean it. Or is this statement is incorrect and example of invocation of
> drm_connector_register_all() should be different? Which one works better then?
>
> > >
> > > + * ->connect callback.
> > Returns: section is missing, specifying how this can fail. Just copy the
> > one from connector_register().
>
> Yeah, correct. Blind copy-paste doesn't work equally good always :(
>
> > >
> > > + */
> > > +int drm_connector_plug_all(struct drm_device *dev)
> > > +{
> > > + struct drm_connector *connector, *failed;
> > > + int ret;
> > > +
> > > + mutex_lock(&dev->mode_config.mutex);
> > > +
> > > + list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
> > for_each_connector here please. And the s/plug/register/ naming discussion
> > we've had.
>
> Ok.
>
> > >
> > > + ret = drm_connector_register(connector);
> > > + if (ret) {
> > > + failed = connector;
> > > + goto err;
> > > + }
> > > + }
> > > +
> > > + mutex_unlock(&dev->mode_config.mutex);
> > > +
> > > + return 0;
> > > +
> > > +err:
> > > + list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
> > > + if (failed == connector)
> > > + break;
> > > +
> > > + drm_connector_unregister(connector);
> > > + }
> > > +
> > > + mutex_unlock(&dev->mode_config.mutex);
> > > +
> > > + return ret;
> > > +}
> > > +EXPORT_SYMBOL(drm_connector_plug_all);
> > >
> > > /**
> > > * drm_connector_unplug_all - unregister connector userspace interfaces
> > > @@ -1093,10 +1133,12 @@ void drm_connector_unplug_all(struct drm_device *dev)
> > > {
> > > struct drm_connector *connector;
> > >
> > > - /* FIXME: taking the mode config mutex ends up in a clash with sysfs */
> > > + mutex_lock(&dev->mode_config.mutex);
> > You can't drop that FIXME, the bug is still there.
>
> That's clear given your explanation in the previous email.
>
> > >
> > > +
> > > list_for_each_entry(connector, &dev->mode_config.connector_list, head)
> > > drm_connector_unregister(connector);
> > >
> > > + mutex_unlock(&dev->mode_config.mutex);
> > > }
> > > EXPORT_SYMBOL(drm_connector_unplug_all);
> > >
> > > diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
> > > index 167c8d3..4a559c6 100644
> > > --- a/drivers/gpu/drm/drm_drv.c
> > > +++ b/drivers/gpu/drm/drm_drv.c
> > > @@ -715,7 +715,8 @@ EXPORT_SYMBOL(drm_dev_unref);
> > > *
> > > * Register the DRM device @dev with the system, advertise device to user-space
> > > * and start normal device operation. @dev must be allocated via drm_dev_alloc()
> > > - * previously.
> > > + * previously and right after drm_dev_register() driver should call
> > It'd do 2 sentences here for simplicity, not connect them with and. Also
> > "... _the_ driver should ..."
>
> Ok.
>
> > >
> > > + * drm_connector_plug_all() to register all connectors in sysfs.
> > Maybe mention why this is separate: "This is a separate call for backwards
> > compatibility with drivers still using the deprecated ->load() callback,
> > where connectors are registered from within the ->load() callback."
>
> Ok.
>
> -Alexey
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
[toc] | [prev] | [next] | [standalone]
| From | Alexey Brodkin <Alexey.Brodkin@synopsys.com> |
|---|---|
| Date | 2016-03-21 12:10 +0100 |
| Subject | Re: [PATCH 1/3] drm: introduce drm_connector_plug_all() helper |
| Message-ID | <rf5SG-4J7-15@gated-at.bofh.it> |
| In reply to | #1361076 |
Hi Daniel, On Sat, 2016-03-19 at 11:02 +-0100, Daniel Vetter wrote: +AD4- On Fri, Mar 18, 2016 at 09:58:49PM +-0000, Alexey Brodkin wrote: +AD4- +AD4- +AD4- +AD4- Hi Daniel, +AD4- +AD4- +AD4- +AD4- On Fri, 2016-03-18 at 19:06 +-0100, Daniel Vetter wrote: +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- On Fri, Mar 18, 2016 at 01:01:42PM +-0300, Alexey Brodkin wrote: +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- As a pair to already existing drm+AF8-connector+AF8-unplug+AF8-all() we're adding +AD4- +AD4- +AD4- +AD4- generic implementation of what is already done in some drivers. +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- Once this helper is implemented we'll be ready to switch existing +AD4- +AD4- +AD4- +AD4- driver-specific implementations with generic one. +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- Signed-off-by: Alexey Brodkin +ADw-abrodkin+AEA-synopsys.com+AD4- +AD4- +AD4- +AD4- +AD4- Cc: Daniel Vetter +ADw-daniel+AEA-ffwll.ch+AD4- +AD4- +AD4- +AD4- +AD4- Cc: David Airlie +ADw-airlied+AEA-linux.ie+AD4- +AD4- +AD4- +AD4- +AD4- --- +AD4- +AD4- +AD4- +AD4- +AKA-drivers/gpu/drm/drm+AF8-crtc.c +AHw- 44 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-- +AD4- +AD4- +AD4- +AD4- +AKA-drivers/gpu/drm/drm+AF8-drv.c+AKAAoAB8AKAAoA-3 +-+-- +AD4- +AD4- +AD4- +AD4- +AKA-include/drm/drm+AF8-crtc.h+AKAAoACgAKAAoAB8AKAAoA-3 +-+-- +AD4- +AD4- +AD4- +AD4- +AKA-3 files changed, 47 insertions(+-), 3 deletions(-) +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- +AD4- diff --git a/drivers/gpu/drm/drm+AF8-crtc.c b/drivers/gpu/drm/drm+AF8-crtc.c +AD4- +AD4- +AD4- +AD4- index 65258ac..ce27420 100644 +AD4- +AD4- +AD4- +AD4- --- a/drivers/gpu/drm/drm+AF8-crtc.c +AD4- +AD4- +AD4- +AD4- +-+-+- b/drivers/gpu/drm/drm+AF8-crtc.c +AD4- +AD4- +AD4- +AD4- +AEAAQA- -1080,6 +-1080,46 +AEAAQA- void drm+AF8-connector+AF8-unregister(struct drm+AF8-connector +ACo-connector) +AD4- +AD4- +AD4- +AD4- +AKAAfQ- +AD4- +AD4- +AD4- +AD4- +AKA-EXPORT+AF8-SYMBOL(drm+AF8-connector+AF8-unregister)+ADs- +AD4- +AD4- +AD4- +AD4- +AKA- +AD4- +AD4- +AD4- +AD4- +-/+ACoAKg- +AD4- +AD4- +AD4- +AD4- +- +ACo- drm+AF8-connector+AF8-plug+AF8-all - register connector userspace interfaces +AD4- +AD4- +AD4- +AD4- +- +ACo- +AEA-dev: drm device +AD4- +AD4- +AD4- +AD4- +- +ACo- +AD4- +AD4- +AD4- +AD4- +- +ACo- This function registers all connector userspace interfaces in sysfs. Should +AD4- +AD4- +AD4- +AD4- +- +ACo- be call when the device is disconnected, e.g. from an usb driver's +AD4- +AD4- +AD4- Still talks about disconnect +ADs--) Please also mention that this just calls +AD4- +AD4- +AD4- drm+AF8-connector+AF8-register() exactly like this including () to generate a +AD4- +AD4- +AD4- kerneldoc hyperlink. +AD4- +AD4- Well I intentionally left in description of drm+AF8-connector+AF8-register+AF8-all(): +AD4- +AD4- +ACI-Should be call when the device is disconnected, e.g. from an usb driver's +AD4- +AD4- +AKA--+AD4-connect callback.+ACI- +AD4- You use +ACI-disconnected+ACI- for connecting stuff. That doesn't make sense to me +AD4- at all - register+AF8-all is for when you want to publish something, not for +AD4- unpublishing when the device disappears. Or maybe this is a case of lost +AD4- in translation, and you mean something else? Let me try to explain what I meant. We execute -+AD4-connect() callback of USB device when USB device is still in +ACI-disconnected+ACI- state (well at least that was my thought). And only when that -+AD4-connect() callback succeeds we're entering +ACI-connected+ACI- state. Probably above sentence is not correct. Then could you please help me with correct wording of comment to+AKA-drm+AF8-connector+AF8-register+AF8-all()? -Alexey
[toc] | [prev] | [next] | [standalone]
| From | Daniel Vetter <daniel@ffwll.ch> |
|---|---|
| Date | 2016-03-21 18:20 +0100 |
| Subject | Re: [PATCH 1/3] drm: introduce drm_connector_plug_all() helper |
| Message-ID | <rfbEK-mO-9@gated-at.bofh.it> |
| In reply to | #1361713 |
On Mon, Mar 21, 2016 at 11:02:21AM +0000, Alexey Brodkin wrote: > Hi Daniel, > > On Sat, 2016-03-19 at 11:02 +0100, Daniel Vetter wrote: > > On Fri, Mar 18, 2016 at 09:58:49PM +0000, Alexey Brodkin wrote: > > > > > > Hi Daniel, > > > > > > On Fri, 2016-03-18 at 19:06 +0100, Daniel Vetter wrote: > > > > > > > > On Fri, Mar 18, 2016 at 01:01:42PM +0300, Alexey Brodkin wrote: > > > > > > > > > > > > > > > As a pair to already existing drm_connector_unplug_all() we're adding > > > > > generic implementation of what is already done in some drivers. > > > > > > > > > > Once this helper is implemented we'll be ready to switch existing > > > > > driver-specific implementations with generic one. > > > > > > > > > > Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> > > > > > Cc: Daniel Vetter <daniel@ffwll.ch> > > > > > Cc: David Airlie <airlied@linux.ie> > > > > > --- > > > > > drivers/gpu/drm/drm_crtc.c | 44 +++++++++++++++++++++++++++++++++++++++++++- > > > > > drivers/gpu/drm/drm_drv.c | 3 ++- > > > > > include/drm/drm_crtc.h | 3 ++- > > > > > 3 files changed, 47 insertions(+), 3 deletions(-) > > > > > > > > > > diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c > > > > > index 65258ac..ce27420 100644 > > > > > --- a/drivers/gpu/drm/drm_crtc.c > > > > > +++ b/drivers/gpu/drm/drm_crtc.c > > > > > @@ -1080,6 +1080,46 @@ void drm_connector_unregister(struct drm_connector *connector) > > > > > } > > > > > EXPORT_SYMBOL(drm_connector_unregister); > > > > > > > > > > +/** > > > > > + * drm_connector_plug_all - register connector userspace interfaces > > > > > + * @dev: drm device > > > > > + * > > > > > + * This function registers all connector userspace interfaces in sysfs. Should > > > > > + * be call when the device is disconnected, e.g. from an usb driver's > > > > Still talks about disconnect ;-) Please also mention that this just calls > > > > drm_connector_register() exactly like this including () to generate a > > > > kerneldoc hyperlink. > > > Well I intentionally left in description of drm_connector_register_all(): > > > "Should be call when the device is disconnected, e.g. from an usb driver's > > > ->connect callback." > > You use "disconnected" for connecting stuff. That doesn't make sense to me > > at all - register_all is for when you want to publish something, not for > > unpublishing when the device disappears. Or maybe this is a case of lost > > in translation, and you mean something else? > > Let me try to explain what I meant. > > We execute ->connect() callback of USB device when USB device is still in "disconnected" state > (well at least that was my thought). And only when that ->connect() callback succeeds we're > entering "connected" state. > > Probably above sentence is not correct. Then could you please help me with correct wording of > comment to drm_connector_register_all()? Yeah, your sentence suggests more that register_all should be called when someone unplugs udl. What about: "This function registers all connectors in sysfs and other places so that userspace can start to access them. Drivers can call it after calling drm_dev_register() to complete the device registration, if they don't call drm_connector_register() on each connector individually. When a device is unplugged and should be removed from userspace access, call drm_connector_unregister_all(), which is the inverse of this function." And for drm_connector_unregister_all: "This functions unregisters all connectors from sysfs and other places so that userspace can no longer access them. Drivers should call this as the first step tearing down the device instace, or when the underlying physical device disappeared (e.g. USB unplug), right before calling drm_dev_unregister()." Thinking about this we might want to merge drm_dev_register and drm_connector_register_all, but that's a long-term goal which will need some trickery to no break drivers. Cheers, Daniel -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web