Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Louis Chauvet <louis.chauvet@bootlin.com>
To: igt-dev@lists.freedesktop.org
Cc: Petri Latvala <adrinael@adrinael.net>,
	Arkadiusz Hiler <arek@hiler.eu>,
	 Kamil Konieczny <kamil.konieczny@linux.intel.com>,
	 Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>,
	 Bhanuprakash Modem <bhanuprakash.modem@intel.com>,
	 Ashutosh Dixit <ashutosh.dixit@intel.com>,
	 Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
	nicolejadeyee@google.com,  seanpaul@google.com,
	jeremie.dautheribes@bootlin.com, markyacoub@google.com,
	 Louis Chauvet <louis.chauvet@bootlin.com>,
	 20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513@bootlin.com,
	 20241022-b4-cv3-02-monitor-edids-v2-0-7634786c21e6@bootlin.com
Subject: [PATCH i-g-t 0/4] lib/chamelium: Move chameliumv2 support in its own directory
Date: Tue, 22 Oct 2024 16:49:32 +0200	[thread overview]
Message-ID: <20241022-b4-cv3-03-cv2-split-v1-0-9f7cc8591ff9@bootlin.com> (raw)

In preparation for the introduction of Chameleon v3, this series move 
the chamelium v2 support in its own folder.

Few rename are done to avoid confusion between chamelium v2 and chamelium 
v3 code.

This series have a small conflict with [1]. If you want to reverse the 
order of the series, let me know, I will resend a new iteration.

[1]: https://lore.kernel.org/all/20240828-b4-cv3-02-monitor-edids-v1-0-29c846bcf251@bootlin.com/

In addition, this series is in conflict with at least:
-https://lore.kernel.org/igt-dev/20241018035914.1740924-1-pranay.samala@intel.com
-https://lore.kernel.org/igt-dev/20241018190627.1367970-1-swati2.sharma@intel.com

Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
Louis Chauvet (4):
      tests/chamelium: Extract Chamelium v2 tests into a separate directory
      lib/chamelium/v2: Extract chamelium v2 wrapper into its own directory
      lib/chamelium/v2: Rename chamelium to chamelium_v2
      lib/chamelium/v2: Rename HAVE_CHAMELIUM to HAVE_CHAMELIUM_V2

 .gitlab-ci.yml                                  |  2 +-
 docs/testplan/meson.build                       |  4 ++--
 lib/{ => chamelium/v2}/igt_chamelium.c          |  2 +-
 lib/{ => chamelium/v2}/igt_chamelium.h          |  0
 lib/{ => chamelium/v2}/igt_chamelium_stream.c   |  2 +-
 lib/{ => chamelium/v2}/igt_chamelium_stream.h   |  0
 lib/igt.h                                       |  6 +++---
 lib/igt_kms.c                                   |  6 +++---
 lib/meson.build                                 |  9 ++++++---
 lib/monitor_edids/monitor_edids_helper.h        |  2 +-
 lib/tests/meson.build                           |  4 ++--
 meson.build                                     | 18 +++++++++---------
 meson_options.txt                               |  4 ++--
 tests/chamelium/{ => v2}/kms_chamelium_audio.c  |  0
 tests/chamelium/{ => v2}/kms_chamelium_color.c  |  0
 tests/chamelium/{ => v2}/kms_chamelium_edid.c   |  2 +-
 tests/chamelium/{ => v2}/kms_chamelium_frames.c |  0
 tests/chamelium/{ => v2}/kms_chamelium_helper.c |  0
 tests/chamelium/{ => v2}/kms_chamelium_helper.h |  0
 tests/chamelium/{ => v2}/kms_chamelium_hpd.c    |  0
 tests/kms_color_helper.h                        |  2 +-
 tests/kms_feature_discovery.c                   |  6 +++---
 tests/kms_tiled_display.c                       |  6 +++---
 tests/meson.build                               | 18 +++++++++---------
 24 files changed, 48 insertions(+), 45 deletions(-)
---
base-commit: 9b8c0f6da8898f760bfaa2113455eb84b68a69f4
change-id: 20240829-b4-cv3-03-cv2-split-473c924261e5
prerequisite-message-id: 20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513@bootlin.com
prerequisite-patch-id: 0562bbe57a0b489e7f46a51717c54ea26296cb8c
prerequisite-patch-id: a16d6fdd238eab5a91630d0934c9186669406fc7
prerequisite-patch-id: c7fcc64d709f283da748a0f9bbe3bd6143d76300
prerequisite-patch-id: 09fc5e2f569fa8287e767ceb353bc0a0f94ae2e1
prerequisite-patch-id: 63cf2f6323333bb8cbd0dbbd883b5c9fe373dea1
prerequisite-message-id: 20241022-b4-cv3-02-monitor-edids-v2-0-7634786c21e6@bootlin.com
prerequisite-patch-id: 90ffdddeda6dd4cd2ae64e60fb31b0bbfee0250f
prerequisite-patch-id: d62e9d4981a68ac6e71544ab2a3dfec37dfa3299
prerequisite-patch-id: 3d898f58702cc303e18d3afc487e46f68641989b
prerequisite-patch-id: 57f5446073d42a01c29e6ff8a24f6609eedb49a1
prerequisite-patch-id: e6d6ee4ecd0e738a60091b19449c8622bb8bb6ae

Best regards,
-- 
Louis Chauvet <louis.chauvet@bootlin.com>


             reply	other threads:[~2024-10-22 14:49 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-22 14:49 Louis Chauvet [this message]
2024-10-22 14:49 ` [PATCH i-g-t 1/4] tests/chamelium: Extract Chamelium v2 tests into a separate directory Louis Chauvet
2024-10-22 14:49 ` [PATCH i-g-t 2/4] lib/chamelium/v2: Extract chamelium v2 wrapper into its own directory Louis Chauvet
2024-10-22 14:49 ` [PATCH i-g-t 3/4] lib/chamelium/v2: Rename chamelium to chamelium_v2 Louis Chauvet
2024-11-12  9:34   ` Vignesh Raman
2024-10-22 14:49 ` [PATCH i-g-t 4/4] lib/chamelium/v2: Rename HAVE_CHAMELIUM to HAVE_CHAMELIUM_V2 Louis Chauvet
2024-10-22 17:07 ` ✗ Fi.CI.BUILD: failure for lib/chamelium: Move chameliumv2 support in its own directory Patchwork
2024-10-23  7:53   ` Louis Chauvet

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=20241022-b4-cv3-03-cv2-split-v1-0-9f7cc8591ff9@bootlin.com \
    --to=louis.chauvet@bootlin.com \
    --cc=20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513@bootlin.com \
    --cc=20241022-b4-cv3-02-monitor-edids-v2-0-7634786c21e6@bootlin.com \
    --cc=adrinael@adrinael.net \
    --cc=arek@hiler.eu \
    --cc=ashutosh.dixit@intel.com \
    --cc=bhanuprakash.modem@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=jeremie.dautheribes@bootlin.com \
    --cc=juhapekka.heikkila@gmail.com \
    --cc=kamil.konieczny@linux.intel.com \
    --cc=markyacoub@google.com \
    --cc=nicolejadeyee@google.com \
    --cc=seanpaul@google.com \
    --cc=thomas.petazzoni@bootlin.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox