All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Zimmermann <tzimmermann@suse.de>
To: "Noralf Trønnes" <noralf@tronnes.org>, dri-devel@lists.freedesktop.org
Cc: hudson@trmm.net, markus@raatikainen.cc, sam@ravnborg.org,
	linux-usb@vger.kernel.org, th020394@gmail.com, lkundrak@v3.sk,
	pontus.fuchs@gmail.com, peter@stuge.se
Subject: Re: [PATCH v4 0/3] Generic USB Display driver
Date: Thu, 21 Jan 2021 10:59:28 +0100	[thread overview]
Message-ID: <ebda4ea3-3352-f35f-883e-6db751d6ca8b@suse.de> (raw)
In-Reply-To: <20210120170033.38468-1-noralf@tronnes.org>


[-- Attachment #1.1: Type: text/plain, Size: 2760 bytes --]

Hi

Am 20.01.21 um 18:00 schrieb Noralf Trønnes:
> Hi,
> 
> A while back I had the idea to turn a Raspberry Pi Zero into a $5
> USB to HDMI/SDTV/DSI/DPI display adapter.
> 
> The reason for calling it 'Generic' is so anyone can make a USB
> display/adapter against this driver, all that's needed is to add a USB
> vid:pid.

Well, I'd strongly ask to not call it "generic", because it isn't. We 
have other USB drivers and anyone can make a USB display with these 
protocols as well. That doesn't make them generic. A USB-standardized 
protocol would be generic. Maybe call it custom, or home-made.

Best regards
Thomas

> 
> Unfortunately I've had some compounding health problems that have
> severally limited the time I can spend in front of a computer. For this
> reason I've decided to keep the gadget driver out-of-tree and focus on
> getting the host driver merged first.
> 
> See the wiki[1] for more information and images for the Raspberry Pi
> Zero/4.
> 
> One big change this time is that I've followed Peter Stuge's advice to
> not let DRM stuff leak into the USB protocol. This has made the protocol
> easier to understand just from reading the header file.
> 
> Noralf.
> 
> [1] https://github.com/notro/gud/wiki
> 
> 
> Noralf Trønnes (3):
>    drm/uapi: Add USB connector type
>    drm/probe-helper: Check epoch counter in output_poll_execute()
>    drm: Add Generic USB Display driver
> 
>   MAINTAINERS                         |   8 +
>   drivers/gpu/drm/Kconfig             |   2 +
>   drivers/gpu/drm/Makefile            |   1 +
>   drivers/gpu/drm/drm_probe_helper.c  |   7 +-
>   drivers/gpu/drm/gud/Kconfig         |  14 +
>   drivers/gpu/drm/gud/Makefile        |   4 +
>   drivers/gpu/drm/gud/gud_connector.c | 722 ++++++++++++++++++++++++++++
>   drivers/gpu/drm/gud/gud_drv.c       | 620 ++++++++++++++++++++++++
>   drivers/gpu/drm/gud/gud_internal.h  | 148 ++++++
>   drivers/gpu/drm/gud/gud_pipe.c      | 472 ++++++++++++++++++
>   include/drm/gud.h                   | 356 ++++++++++++++
>   include/uapi/drm/drm_mode.h         |   1 +
>   12 files changed, 2354 insertions(+), 1 deletion(-)
>   create mode 100644 drivers/gpu/drm/gud/Kconfig
>   create mode 100644 drivers/gpu/drm/gud/Makefile
>   create mode 100644 drivers/gpu/drm/gud/gud_connector.c
>   create mode 100644 drivers/gpu/drm/gud/gud_drv.c
>   create mode 100644 drivers/gpu/drm/gud/gud_internal.h
>   create mode 100644 drivers/gpu/drm/gud/gud_pipe.c
>   create mode 100644 include/drm/gud.h
> 

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Felix Imendörffer


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Thomas Zimmermann <tzimmermann@suse.de>
To: "Noralf Trønnes" <noralf@tronnes.org>, dri-devel@lists.freedesktop.org
Cc: hudson@trmm.net, markus@raatikainen.cc, peter@stuge.se,
	linux-usb@vger.kernel.org, th020394@gmail.com, lkundrak@v3.sk,
	pontus.fuchs@gmail.com, sam@ravnborg.org
Subject: Re: [PATCH v4 0/3] Generic USB Display driver
Date: Thu, 21 Jan 2021 10:59:28 +0100	[thread overview]
Message-ID: <ebda4ea3-3352-f35f-883e-6db751d6ca8b@suse.de> (raw)
In-Reply-To: <20210120170033.38468-1-noralf@tronnes.org>


[-- Attachment #1.1.1: Type: text/plain, Size: 2760 bytes --]

Hi

Am 20.01.21 um 18:00 schrieb Noralf Trønnes:
> Hi,
> 
> A while back I had the idea to turn a Raspberry Pi Zero into a $5
> USB to HDMI/SDTV/DSI/DPI display adapter.
> 
> The reason for calling it 'Generic' is so anyone can make a USB
> display/adapter against this driver, all that's needed is to add a USB
> vid:pid.

Well, I'd strongly ask to not call it "generic", because it isn't. We 
have other USB drivers and anyone can make a USB display with these 
protocols as well. That doesn't make them generic. A USB-standardized 
protocol would be generic. Maybe call it custom, or home-made.

Best regards
Thomas

> 
> Unfortunately I've had some compounding health problems that have
> severally limited the time I can spend in front of a computer. For this
> reason I've decided to keep the gadget driver out-of-tree and focus on
> getting the host driver merged first.
> 
> See the wiki[1] for more information and images for the Raspberry Pi
> Zero/4.
> 
> One big change this time is that I've followed Peter Stuge's advice to
> not let DRM stuff leak into the USB protocol. This has made the protocol
> easier to understand just from reading the header file.
> 
> Noralf.
> 
> [1] https://github.com/notro/gud/wiki
> 
> 
> Noralf Trønnes (3):
>    drm/uapi: Add USB connector type
>    drm/probe-helper: Check epoch counter in output_poll_execute()
>    drm: Add Generic USB Display driver
> 
>   MAINTAINERS                         |   8 +
>   drivers/gpu/drm/Kconfig             |   2 +
>   drivers/gpu/drm/Makefile            |   1 +
>   drivers/gpu/drm/drm_probe_helper.c  |   7 +-
>   drivers/gpu/drm/gud/Kconfig         |  14 +
>   drivers/gpu/drm/gud/Makefile        |   4 +
>   drivers/gpu/drm/gud/gud_connector.c | 722 ++++++++++++++++++++++++++++
>   drivers/gpu/drm/gud/gud_drv.c       | 620 ++++++++++++++++++++++++
>   drivers/gpu/drm/gud/gud_internal.h  | 148 ++++++
>   drivers/gpu/drm/gud/gud_pipe.c      | 472 ++++++++++++++++++
>   include/drm/gud.h                   | 356 ++++++++++++++
>   include/uapi/drm/drm_mode.h         |   1 +
>   12 files changed, 2354 insertions(+), 1 deletion(-)
>   create mode 100644 drivers/gpu/drm/gud/Kconfig
>   create mode 100644 drivers/gpu/drm/gud/Makefile
>   create mode 100644 drivers/gpu/drm/gud/gud_connector.c
>   create mode 100644 drivers/gpu/drm/gud/gud_drv.c
>   create mode 100644 drivers/gpu/drm/gud/gud_internal.h
>   create mode 100644 drivers/gpu/drm/gud/gud_pipe.c
>   create mode 100644 include/drm/gud.h
> 

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Felix Imendörffer


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  parent reply	other threads:[~2021-01-21 10:01 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-20 17:00 [PATCH v4 0/3] Generic USB Display driver Noralf Trønnes
2021-01-20 17:00 ` Noralf Trønnes
2021-01-20 17:00 ` [PATCH v4 1/3] drm/uapi: Add USB connector type Noralf Trønnes
2021-01-20 17:00   ` Noralf Trønnes
2021-01-20 17:42   ` Daniel Vetter
2021-01-20 17:42     ` Daniel Vetter
2021-01-21  7:45     ` Thomas Zimmermann
2021-01-21  7:45       ` Thomas Zimmermann
2021-01-21  8:27       ` Daniel Vetter
2021-01-21  8:27         ` Daniel Vetter
2021-01-21  8:40         ` Simon Ser
2021-01-21  8:40           ` Simon Ser
2021-01-21 10:01         ` Thomas Zimmermann
2021-01-21 10:01           ` Thomas Zimmermann
2021-01-21 18:07           ` Noralf Trønnes
2021-01-21 18:07             ` Noralf Trønnes
2021-01-22  7:54             ` Thomas Zimmermann
2021-01-22  7:54               ` Thomas Zimmermann
2021-01-22  7:59               ` Thomas Zimmermann
2021-01-22  7:59                 ` Thomas Zimmermann
2021-01-22 11:44               ` Noralf Trønnes
2021-01-22 11:44                 ` Noralf Trønnes
2021-01-22 12:47                 ` Thomas Zimmermann
2021-01-22 12:47                   ` Thomas Zimmermann
2021-01-22 14:35                   ` Noralf Trønnes
2021-01-22 14:35                     ` Noralf Trønnes
2021-01-22 14:55                     ` Thomas Zimmermann
2021-01-22 14:55                       ` Thomas Zimmermann
2021-01-22 18:39                       ` Noralf Trønnes
2021-01-22 18:39                         ` Noralf Trønnes
2021-01-20 17:00 ` [PATCH v4 2/3] drm/probe-helper: Check epoch counter in output_poll_execute() Noralf Trønnes
2021-01-20 17:00   ` Noralf Trønnes
2021-01-20 17:41   ` Daniel Vetter
2021-01-20 17:41     ` Daniel Vetter
2021-01-20 17:00 ` [PATCH v4 3/3] drm: Add Generic USB Display driver Noralf Trønnes
2021-01-20 17:00   ` Noralf Trønnes
2021-01-20 18:02   ` Daniel Vetter
2021-01-24 16:17     ` Noralf Trønnes
2021-01-24 16:17       ` Noralf Trønnes
2021-01-21  9:59 ` Thomas Zimmermann [this message]
2021-01-21  9:59   ` [PATCH v4 0/3] " Thomas Zimmermann
2021-01-21 10:20   ` Simon Ser
2021-01-21 10:20     ` Simon Ser
2021-01-23 11:46     ` Noralf Trønnes
2021-01-23 11:46       ` Noralf Trønnes
2021-01-23 18:47 ` Lubomir Rintel
2021-01-23 18:47   ` Lubomir Rintel
2021-01-24 18:38 ` Lubomir Rintel
2021-01-24 18:38   ` Lubomir Rintel
2021-01-24 20:51   ` Noralf Trønnes
2021-01-24 20:51     ` Noralf Trønnes
2021-02-21 11:14     ` Noralf Trønnes
2021-02-21 11:14       ` Noralf Trønnes

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=ebda4ea3-3352-f35f-883e-6db751d6ca8b@suse.de \
    --to=tzimmermann@suse.de \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=hudson@trmm.net \
    --cc=linux-usb@vger.kernel.org \
    --cc=lkundrak@v3.sk \
    --cc=markus@raatikainen.cc \
    --cc=noralf@tronnes.org \
    --cc=peter@stuge.se \
    --cc=pontus.fuchs@gmail.com \
    --cc=sam@ravnborg.org \
    --cc=th020394@gmail.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.