All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] add support for pci in the pvpanic driver
@ 2021-02-03 14:43 Mihai Carabas
  2021-02-03 14:43 ` [PATCH 1/2] misc/pvpanic: split-up generic and platform dependent code Mihai Carabas
  2021-02-03 14:43 ` [PATCH 2/2] misc/pvpanic: add pci driver Mihai Carabas
  0 siblings, 2 replies; 12+ messages in thread
From: Mihai Carabas @ 2021-02-03 14:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: gregkh, arnd, andriy.shevchenko, bobo.shaobowang, Mihai Carabas

This patchset adds support for pci in the pvpanic driver. The device already
got in qemu [1].

[1] https://github.com/qemu/qemu/commit/9df52f58e76e904fb141b10318362d718f470db2

Mihai Carabas (2):
  misc/pvpanic: split-up generic and platform dependent code
  misc/pvpanic: add pci driver

 drivers/misc/Kconfig                |   9 +--
 drivers/misc/Makefile               |   2 +-
 drivers/misc/pvpanic.c              | 111 ------------------------------------
 drivers/misc/pvpanic/Kconfig        |  28 +++++++++
 drivers/misc/pvpanic/Makefile       |   9 +++
 drivers/misc/pvpanic/pvpanic-mmio.c |  83 +++++++++++++++++++++++++++
 drivers/misc/pvpanic/pvpanic-pci.c  |  54 ++++++++++++++++++
 drivers/misc/pvpanic/pvpanic.c      |  59 +++++++++++++++++++
 drivers/misc/pvpanic/pvpanic.h      |  17 ++++++
 9 files changed, 252 insertions(+), 120 deletions(-)
 delete mode 100644 drivers/misc/pvpanic.c
 create mode 100644 drivers/misc/pvpanic/Kconfig
 create mode 100644 drivers/misc/pvpanic/Makefile
 create mode 100644 drivers/misc/pvpanic/pvpanic-mmio.c
 create mode 100644 drivers/misc/pvpanic/pvpanic-pci.c
 create mode 100644 drivers/misc/pvpanic/pvpanic.c
 create mode 100644 drivers/misc/pvpanic/pvpanic.h

-- 
1.8.3.1


^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH] add support for pci in the pvpanic driver
@ 2020-10-29 11:43 Mihai Carabas
  0 siblings, 0 replies; 12+ messages in thread
From: Mihai Carabas @ 2020-10-29 11:43 UTC (permalink / raw)
  To: linux-kernel; +Cc: Mihai Carabas

This patchset adds support for pci in the pvpanic driver. They were assembled
from an old RFC from 2019 [1] which was left unmerged.

In order to test this, you need also to apply the patches I have sent for pci
pvpanic support in qemu [2].

[1] https://lwn.net/ml/linux-kernel/1550575668-6240-1-git-send-email-peng.hao2@zte.com.cn/
[2] https://lists.nongnu.org/archive/html/qemu-devel/2020-10/msg08709.html

Peng Hao (4):
  misc/pvpanic : preparing for pvpanic driver framework
  misc/pvpanic: Add pvpanic driver framework
  misc/pvpanic: Avoid initializing multiple pvpanic devices
  misc/pvpanic: add new pvpanic pci driver

 drivers/misc/Kconfig                |   1 +
 drivers/misc/Makefile               |   2 +-
 drivers/misc/pvpanic.c              | 196 ------------------------------------
 drivers/misc/pvpanic/Kconfig        |  34 +++++++
 drivers/misc/pvpanic/Makefile       |   8 ++
 drivers/misc/pvpanic/pvpanic-acpi.c |  77 ++++++++++++++
 drivers/misc/pvpanic/pvpanic-of.c   |  53 ++++++++++
 drivers/misc/pvpanic/pvpanic-pci.c  |  56 +++++++++++
 drivers/misc/pvpanic/pvpanic.c      | 150 +++++++++++++++++++++++++++
 drivers/misc/pvpanic/pvpanic.h      |  15 +++
 10 files changed, 395 insertions(+), 197 deletions(-)
 delete mode 100644 drivers/misc/pvpanic.c
 create mode 100644 drivers/misc/pvpanic/Kconfig
 create mode 100644 drivers/misc/pvpanic/Makefile
 create mode 100644 drivers/misc/pvpanic/pvpanic-acpi.c
 create mode 100644 drivers/misc/pvpanic/pvpanic-of.c
 create mode 100644 drivers/misc/pvpanic/pvpanic-pci.c
 create mode 100644 drivers/misc/pvpanic/pvpanic.c
 create mode 100644 drivers/misc/pvpanic/pvpanic.h

-- 
1.8.3.1


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

end of thread, other threads:[~2021-02-03 23:21 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-03 14:43 [PATCH] add support for pci in the pvpanic driver Mihai Carabas
2021-02-03 14:43 ` [PATCH 1/2] misc/pvpanic: split-up generic and platform dependent code Mihai Carabas
2021-02-03 15:44   ` Greg KH
2021-02-03 17:13   ` Randy Dunlap
2021-02-03 19:57   ` kernel test robot
2021-02-03 19:57     ` kernel test robot
2021-02-03 23:18   ` kernel test robot
2021-02-03 23:18     ` kernel test robot
2021-02-03 14:43 ` [PATCH 2/2] misc/pvpanic: add pci driver Mihai Carabas
2021-02-03 15:41   ` Greg KH
2021-02-03 15:44   ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2020-10-29 11:43 [PATCH] add support for pci in the pvpanic driver Mihai Carabas

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.