All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH v5 0/7] drm: add simpledrm driver
@ 2018-07-24 12:27 Mads Lønsethagen
  2018-08-07 16:42 ` Daniel Vetter
  0 siblings, 1 reply; 9+ messages in thread
From: Mads Lønsethagen @ 2018-07-24 12:27 UTC (permalink / raw)
  To: dh.herrmann, dri-devel

> Hey
> 
> On request of Noralf, I picked up the patches and prepared v5. Works 
> fine with
> Xorg, if configured according to:
>     
> https://lists.freedesktop.org/archives/dri-devel/2014-January/052777.html
> If anyone knows how to make Xorg pick it up dynamically without such a 
> static
> configuration, please let me know.
> 
> Thanks
> David
> 
> David Herrmann (7):
>   x86/sysfb: add support for 64bit EFI lfb_base
>   x86/sysfb: fix lfb_size calculation
>   of/platform: expose of_platform_device_destroy()
>   video: add generic framebuffer eviction
>   drm: switch to sysfb_evict_conflicts()
>   drm: add SimpleDRM driver
>   drm/simpledrm: add fbdev fallback support
> ...

Hi!

I asked Noralf about this patch set recently, and he mentioned that this 
never made it any further than this patch series...

Are there still any interest in getting this mainlined? Does the code 
exist in any repo anywhere? For my own part, this would be an awesome 
driver to have to resurrect some old hardware I have lying around...

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

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PATCH v5 0/7] drm: add simpledrm driver
@ 2016-09-02  8:22 David Herrmann
  2021-03-10  2:50 ` nerdopolis
  0 siblings, 1 reply; 9+ messages in thread
From: David Herrmann @ 2016-09-02  8:22 UTC (permalink / raw)
  To: dri-devel

Hey

On request of Noralf, I picked up the patches and prepared v5. Works fine with
Xorg, if configured according to:
    https://lists.freedesktop.org/archives/dri-devel/2014-January/052777.html
If anyone knows how to make Xorg pick it up dynamically without such a static
configuration, please let me know.

Thanks
David

David Herrmann (7):
  x86/sysfb: add support for 64bit EFI lfb_base
  x86/sysfb: fix lfb_size calculation
  of/platform: expose of_platform_device_destroy()
  video: add generic framebuffer eviction
  drm: switch to sysfb_evict_conflicts()
  drm: add SimpleDRM driver
  drm/simpledrm: add fbdev fallback support

 MAINTAINERS                                  |   6 +
 arch/x86/kernel/sysfb_simplefb.c             |  39 ++-
 drivers/gpu/drm/Kconfig                      |   3 +
 drivers/gpu/drm/Makefile                     |   1 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c      |  24 +-
 drivers/gpu/drm/bochs/bochs_drv.c            |  19 +-
 drivers/gpu/drm/i915/i915_drv.c              |  73 +---
 drivers/gpu/drm/mgag200/mgag200_drv.c        |  27 +-
 drivers/gpu/drm/mgag200/mgag200_main.c       |   9 -
 drivers/gpu/drm/nouveau/nouveau_drm.c        |  33 +-
 drivers/gpu/drm/radeon/radeon_drv.c          |  24 +-
 drivers/gpu/drm/simpledrm/Kconfig            |  19 ++
 drivers/gpu/drm/simpledrm/Makefile           |   9 +
 drivers/gpu/drm/simpledrm/simpledrm.h        |  91 +++++
 drivers/gpu/drm/simpledrm/simpledrm_damage.c | 194 +++++++++++
 drivers/gpu/drm/simpledrm/simpledrm_drv.c    | 477 +++++++++++++++++++++++++++
 drivers/gpu/drm/simpledrm/simpledrm_fbdev.c  | 143 ++++++++
 drivers/gpu/drm/simpledrm/simpledrm_gem.c    | 109 ++++++
 drivers/gpu/drm/simpledrm/simpledrm_kms.c    | 270 +++++++++++++++
 drivers/gpu/drm/simpledrm/simpledrm_of.c     | 265 +++++++++++++++
 drivers/gpu/drm/sun4i/sun4i_drv.c            |  24 +-
 drivers/gpu/drm/vc4/vc4_drv.c                |  25 +-
 drivers/gpu/drm/virtio/virtgpu_drm_bus.c     |  24 +-
 drivers/of/platform.c                        |  35 +-
 drivers/video/Kconfig                        |   4 +
 drivers/video/Makefile                       |   1 +
 drivers/video/sysfb.c                        | 327 ++++++++++++++++++
 include/linux/of_platform.h                  |   1 +
 include/linux/sysfb.h                        |  34 ++
 29 files changed, 2054 insertions(+), 256 deletions(-)
 create mode 100644 drivers/gpu/drm/simpledrm/Kconfig
 create mode 100644 drivers/gpu/drm/simpledrm/Makefile
 create mode 100644 drivers/gpu/drm/simpledrm/simpledrm.h
 create mode 100644 drivers/gpu/drm/simpledrm/simpledrm_damage.c
 create mode 100644 drivers/gpu/drm/simpledrm/simpledrm_drv.c
 create mode 100644 drivers/gpu/drm/simpledrm/simpledrm_fbdev.c
 create mode 100644 drivers/gpu/drm/simpledrm/simpledrm_gem.c
 create mode 100644 drivers/gpu/drm/simpledrm/simpledrm_kms.c
 create mode 100644 drivers/gpu/drm/simpledrm/simpledrm_of.c
 create mode 100644 drivers/video/sysfb.c
 create mode 100644 include/linux/sysfb.h

-- 
2.9.3

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

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2021-03-12 13:25 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-24 12:27 [PATCH v5 0/7] drm: add simpledrm driver Mads Lønsethagen
2018-08-07 16:42 ` Daniel Vetter
  -- strict thread matches above, loose matches on Subject: below --
2016-09-02  8:22 David Herrmann
2021-03-10  2:50 ` nerdopolis
2021-03-10  9:10   ` Thomas Zimmermann
2021-03-10 13:52     ` nerdopolis
2021-03-12  3:49     ` nerdopolis
2021-03-12  8:03       ` Thomas Zimmermann
2021-03-12 13:25         ` nerdopolis

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.