All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/18] loongarch-to-apply queue
@ 2024-12-19  7:54 Bibo Mao
  2024-12-19  7:54 ` [PULL 01/18] include: Add loongarch_pic_common header file Bibo Mao
                   ` (15 more replies)
  0 siblings, 16 replies; 26+ messages in thread
From: Bibo Mao @ 2024-12-19  7:54 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, Song Gao

The following changes since commit 8032c78e556cd0baec111740a6c636863f9bd7c8:

  Merge tag 'firmware-20241216-pull-request' of https://gitlab.com/kraxel/qemu into staging (2024-12-16 14:20:33 -0500)

are available in the Git repository at:

  https://gitlab.com/bibo-mao/qemu.git tags/pull-loongarch-20241219

for you to fetch changes up to 6f6006ad07243543595c7607ffbeee7f45b94b80:

  hw/intc/loongarch_extioi: Code cleanup about loongarch_extioi (2024-12-19 15:23:30 +0800)

----------------------------------------------------------------
pull-loongarch-20241219
  v2 .. v3:
      1. Fix make check issue on freeBSD 14

  v1 .. v2:
      1. Push patch again since forgot to push to upstream

----------------------------------------------------------------
Bibo Mao (18):
      include: Add loongarch_pic_common header file
      include: Move struct LoongArchPCHPIC to loongarch_pic_common header file
      hw/intc/loongarch_pch: Merge instance_init() into realize()
      hw/intc/loongarch_pch: Rename LoongArchPCHPIC with LoongArchPICCommonState
      hw/intc/loongarch_pch: Move some functions to file loongarch_pic_common
      hw/intc/loongarch_pch: Inherit from loongarch_pic_common
      hw/intc/loongarch_pch: Add pre_save and post_load interfaces
      hw/intc/loongarch_pch: Code cleanup about loongarch_pch_pic
      include: Add loongarch_extioi_common header file
      include: Move struct LoongArchExtIOI to header file loongarch_extioi_common
      include: Rename LoongArchExtIOI with LoongArchExtIOICommonState
      hw/intc/loongarch_extioi: Rename LoongArchExtIOI with LoongArchExtIOICommonState
      hw/intc/loongarch_extioi: Add common realize interface
      hw/intc/loongarch_extioi: Add unrealize interface
      hw/intc/loongarch_extioi: Add common file loongarch_extioi_common
      hw/intc/loongarch_extioi: Inherit from loongarch_extioi_common
      hw/intc/loongarch_extioi: Add pre_save interface
      hw/intc/loongarch_extioi: Code cleanup about loongarch_extioi

 hw/intc/loongarch_extioi.c                | 112 ++++++++++-------------------
 hw/intc/loongarch_extioi_common.c         | 113 ++++++++++++++++++++++++++++++
 hw/intc/loongarch_pch_pic.c               | 106 +++++++++-------------------
 hw/intc/loongarch_pic_common.c            |  97 +++++++++++++++++++++++++
 hw/intc/meson.build                       |   4 +-
 hw/loongarch/virt.c                       |   2 +-
 include/hw/intc/loongarch_extioi.h        |  84 +++-------------------
 include/hw/intc/loongarch_extioi_common.h |  98 ++++++++++++++++++++++++++
 include/hw/intc/loongarch_pch_pic.h       |  70 ++++--------------
 include/hw/intc/loongarch_pic_common.h    |  82 ++++++++++++++++++++++
 10 files changed, 490 insertions(+), 278 deletions(-)
 create mode 100644 hw/intc/loongarch_extioi_common.c
 create mode 100644 hw/intc/loongarch_pic_common.c
 create mode 100644 include/hw/intc/loongarch_extioi_common.h
 create mode 100644 include/hw/intc/loongarch_pic_common.h



^ permalink raw reply	[flat|nested] 26+ messages in thread
* [PULL 00/18] loongarch-to-apply queue
@ 2024-12-16  1:55 Bibo Mao
  2024-12-16 19:19 ` Stefan Hajnoczi
  0 siblings, 1 reply; 26+ messages in thread
From: Bibo Mao @ 2024-12-16  1:55 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, Song Gao

The following changes since commit ca80a5d026a280762e0772615f1988db542b3ade:

  Merge tag 'hw-misc-20241214' of https://github.com/philmd/qemu into staging (2024-12-14 08:42:53 -0500)

are available in the Git repository at:

  https://gitlab.com/bibo-mao/qemu.git tags/pull-loongarch-20241216

for you to fetch changes up to efada537c6c49e414ae87ce66803d6d8543ad140:

  hw/intc/loongarch_extioi: Code cleanup about loongarch_extioi (2024-12-16 09:05:14 +0800)

----------------------------------------------------------------
pull-loongarch-20241216
  v1 .. v2: Push patch again since forgot to push to upstream

----------------------------------------------------------------
Bibo Mao (18):
      include: Add loongarch_pic_common header file
      include: Move struct LoongArchPCHPIC to loongarch_pic_common header file
      hw/intc/loongarch_pch: Merge instance_init() into realize()
      hw/intc/loongarch_pch: Rename LoongArchPCHPIC with LoongArchPICCommonState
      hw/intc/loongarch_pch: Move some functions to file loongarch_pic_common
      hw/intc/loongarch_pch: Inherit from loongarch_pic_common
      hw/intc/loongarch_pch: Add pre_save and post_load interfaces
      hw/intc/loongarch_pch: Code cleanup about loongarch_pch_pic
      include: Add loongarch_extioi_common header file
      include: Move struct LoongArchExtIOI to header file loongarch_extioi_common
      include: Rename LoongArchExtIOI with LoongArchExtIOICommonState
      hw/intc/loongarch_extioi: Rename LoongArchExtIOI with LoongArchExtIOICommonState
      hw/intc/loongarch_extioi: Add common realize interface
      hw/intc/loongarch_extioi: Add unrealize interface
      hw/intc/loongarch_extioi: Add common file loongarch_extioi_common
      hw/intc/loongarch_extioi: Inherit from loongarch_extioi_common
      hw/intc/loongarch_extioi: Add pre_save interface
      hw/intc/loongarch_extioi: Code cleanup about loongarch_extioi

 hw/intc/loongarch_extioi.c                | 110 +++++++++--------------------
 hw/intc/loongarch_extioi_common.c         | 113 ++++++++++++++++++++++++++++++
 hw/intc/loongarch_pch_pic.c               | 106 +++++++++-------------------
 hw/intc/loongarch_pic_common.c            |  97 +++++++++++++++++++++++++
 hw/intc/meson.build                       |   4 +-
 hw/loongarch/virt.c                       |   2 +-
 include/hw/intc/loongarch_extioi.h        |  84 +++-------------------
 include/hw/intc/loongarch_extioi_common.h |  98 ++++++++++++++++++++++++++
 include/hw/intc/loongarch_pch_pic.h       |  70 ++++--------------
 include/hw/intc/loongarch_pic_common.h    |  82 ++++++++++++++++++++++
 10 files changed, 488 insertions(+), 278 deletions(-)
 create mode 100644 hw/intc/loongarch_extioi_common.c
 create mode 100644 hw/intc/loongarch_pic_common.c
 create mode 100644 include/hw/intc/loongarch_extioi_common.h
 create mode 100644 include/hw/intc/loongarch_pic_common.h



^ permalink raw reply	[flat|nested] 26+ messages in thread
* [PULL 00/18] loongarch-to-apply queue
@ 2024-12-13  9:40 Bibo Mao
  2024-12-14 13:39 ` Stefan Hajnoczi
  0 siblings, 1 reply; 26+ messages in thread
From: Bibo Mao @ 2024-12-13  9:40 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Richard Henderson, Song Gao

The following changes since commit a5ba0a7e4e150d1350a041f0d0ef9ca6c8d7c307:

  Merge tag 'pull-aspeed-20241211' of https://github.com/legoater/qemu into staging (2024-12-11 15:16:47 +0000)

are available in the Git repository at:

  https://gitlab.com/bibo-mao/qemu.git pull-loongarch-20241213

for you to fetch changes up to 78aa256571aa06f32001bd80635a1858187c609b:

  hw/intc/loongarch_pch: Code cleanup about loongarch_pch_pic (2024-12-13 14:39:39 +0800)

----------------------------------------------------------------
pull-loongarch-20241213

----------------------------------------------------------------
Bibo Mao (8):
      include: Add loongarch_pic_common header file
      include: Move struct LoongArchPCHPIC to loongarch_pic_common header file
      hw/intc/loongarch_pch: Merge instance_init() into realize()
      hw/intc/loongarch_pch: Rename LoongArchPCHPIC with LoongArchPICCommonState
      hw/intc/loongarch_pch: Move some functions to file loongarch_pic_common
      hw/intc/loongarch_pch: Inherit from loongarch_pic_common
      hw/intc/loongarch_pch: Add pre_save and post_load interfaces
      hw/intc/loongarch_pch: Code cleanup about loongarch_pch_pic

 hw/intc/loongarch_pch_pic.c            | 106 +++++++++++----------------------
 hw/intc/loongarch_pic_common.c         |  97 ++++++++++++++++++++++++++++++
 hw/intc/meson.build                    |   2 +-
 hw/loongarch/virt.c                    |   2 +-
 include/hw/intc/loongarch_pch_pic.h    |  70 +++++-----------------
 include/hw/intc/loongarch_pic_common.h |  82 +++++++++++++++++++++++++
 6 files changed, 230 insertions(+), 129 deletions(-)
 create mode 100644 hw/intc/loongarch_pic_common.c
 create mode 100644 include/hw/intc/loongarch_pic_common.h



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

end of thread, other threads:[~2024-12-20 16:27 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-19  7:54 [PULL 00/18] loongarch-to-apply queue Bibo Mao
2024-12-19  7:54 ` [PULL 01/18] include: Add loongarch_pic_common header file Bibo Mao
2024-12-19  7:54 ` [PULL 02/18] include: Move struct LoongArchPCHPIC to " Bibo Mao
2024-12-19  7:54 ` [PULL 03/18] hw/intc/loongarch_pch: Merge instance_init() into realize() Bibo Mao
2024-12-19  7:54 ` [PULL 04/18] hw/intc/loongarch_pch: Rename LoongArchPCHPIC with LoongArchPICCommonState Bibo Mao
2024-12-19  7:54 ` [PULL 05/18] hw/intc/loongarch_pch: Move some functions to file loongarch_pic_common Bibo Mao
2024-12-19  7:54 ` [PULL 06/18] hw/intc/loongarch_pch: Inherit from loongarch_pic_common Bibo Mao
2024-12-19  7:54 ` [PULL 07/18] hw/intc/loongarch_pch: Add pre_save and post_load interfaces Bibo Mao
2024-12-19  7:54 ` [PULL 08/18] hw/intc/loongarch_pch: Code cleanup about loongarch_pch_pic Bibo Mao
2024-12-19  7:54 ` [PULL 09/18] include: Add loongarch_extioi_common header file Bibo Mao
2024-12-19  7:54 ` [PULL 10/18] include: Move struct LoongArchExtIOI to header file loongarch_extioi_common Bibo Mao
2024-12-19  7:54 ` [PULL 11/18] include: Rename LoongArchExtIOI with LoongArchExtIOICommonState Bibo Mao
2024-12-19  7:54 ` [PULL 12/18] hw/intc/loongarch_extioi: " Bibo Mao
2024-12-19  7:54 ` [PULL 13/18] hw/intc/loongarch_extioi: Add common realize interface Bibo Mao
2024-12-19  7:54 ` [PULL 14/18] hw/intc/loongarch_extioi: Add unrealize interface Bibo Mao
2024-12-19  8:07 ` [PULL 15/18] hw/intc/loongarch_extioi: Add common file loongarch_extioi_common Bibo Mao
2024-12-19  8:07   ` [PULL 16/18] hw/intc/loongarch_extioi: Inherit from loongarch_extioi_common Bibo Mao
2024-12-19  8:07   ` [PULL 17/18] hw/intc/loongarch_extioi: Add pre_save interface Bibo Mao
2024-12-19  8:07   ` [PULL 18/18] hw/intc/loongarch_extioi: Code cleanup about loongarch_extioi Bibo Mao
2024-12-20 16:20 ` [PULL 00/18] loongarch-to-apply queue Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2024-12-16  1:55 Bibo Mao
2024-12-16 19:19 ` Stefan Hajnoczi
2024-12-18  8:55   ` bibo mao
2024-12-13  9:40 Bibo Mao
2024-12-14 13:39 ` Stefan Hajnoczi
2024-12-16  0:57   ` bibo mao

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.