Home
last modified time | relevance | path

Searched +full:gitlab +full:- +full:ci (Results 1 – 14 of 14) sorted by relevance

/linux-6.14.4/drivers/gpu/drm/ci/
Dgitlab-ci.yml2 DRM_CI_PROJECT_PATH: &drm-ci-project-path mesa/mesa
3 DRM_CI_COMMIT_SHA: &drm-ci-commit-sha c6a9a9c3bce90923f7700219354e0b6e5a3c9ba6
5 UPSTREAM_REPO: https://gitlab.freedesktop.org/drm/kernel.git
6 TARGET_BRANCH: drm-next
10 DEQP_RUNNER_GIT_URL: https://gitlab.freedesktop.org/mesa/deqp-runner.git
13 FDO_UPSTREAM_REPO: helen.fornazier/linux # The repo where the git-archive daily runs
14 MESA_TEMPLATES_COMMIT: &ci-templates-commit d5aa3941aa03c2f716595116354fb81eb8012acb
15 DRM_CI_PROJECT_URL: https://gitlab.freedesktop.org/${DRM_CI_PROJECT_PATH}
16 CI_PRE_CLONE_SCRIPT: |-
17 set -o xtrace
[all …]
Dbuild.sh2 # SPDX-License-Identifier: MIT
4 set -ex
6 # Clean up stale rebases that GitLab might not have removed when reusing a checkout dir
7 rm -rf .git/rebase-apply
9 . .gitlab-ci/container/container_pre_build.sh
11 # libssl-dev was uninstalled because it was considered an ephemeral package
12 apt-get update
13 apt-get install -y libssl-dev
16 apt-get install -y python3-lxml
19 GCC_ARCH="aarch64-linux-gnu"
[all …]
Dbuild-igt.sh2 # SPDX-License-Identifier: MIT
4 set -ex
8 while read -r line; do
16 output=$(/igt/libexec/igt-gpu-tools/"$test" --list-subtests || true)
18 if [ -z "$output" ]; then
21 echo "$output" | while read -r subtest; do
26 done < /igt/libexec/igt-gpu-tools/test-list.txt > /igt/libexec/igt-gpu-tools/ci-testlist.txt
27 set -x
30 git clone https://gitlab.freedesktop.org/drm/igt-gpu-tools.git --single-branch --no-checkout
31 cd igt-gpu-tools
[all …]
Dcheck-patch.py2 # SPDX-License-Identifier: GPL-2.0-or-later
4 # check-patch.py: run checkpatch.pl across all commits in a branch
6 # Based on qemu/.gitlab-ci.d/check-patch.py
16 repourl = "https://gitlab.freedesktop.org/%s.git" % os.environ["CI_MERGE_REQUEST_PROJECT_PATH"]
18 # GitLab CI environment does not give us any direct info about the
22 subprocess.call(["git", "remote", "remove", "check-patch"], stdout=subprocess.DEVNULL, stderr=subpr…
23 subprocess.check_call(["git", "remote", "add", "check-patch", repourl])
24 subprocess.check_call(["git", "fetch", "check-patch", os.environ["CI_MERGE_REQUEST_TARGET_BRANCH_NA…
28 ancestor = subprocess.check_output(["git", "merge-base",
29 … "check-patch/%s" % os.environ["CI_MERGE_REQUEST_TARGET_BRANCH_NAME"], "HEAD"],
[all …]
/linux-6.14.4/Documentation/gpu/
Dautomated_testing.rst1 .. SPDX-License-Identifier: GPL-2.0+
11 be very time-consuming when lots of different hardware configurations need to
20 There are facilities in gitlab.freedesktop.org to automatically test Mesa that
29 drivers/gpu/drm/ci/gitlab-ci.yml
30 --------------------------------
32 This is the root configuration file for GitLab CI. Among other less interesting
37 Repository that contains the Mesa software infrastructure for CI
49 Revision of igt-gpu-tools being used, from
50 https://gitlab.freedesktop.org/drm/igt-gpu-tools
52 drivers/gpu/drm/ci/testlist.txt
[all …]
/linux-6.14.4/drivers/gpu/drm/ci/xfails/
Dmsm-sdm845-skips.txt4 # Failing due to a bootloader/fw issue. The workaround in mesa CI involves these two patches
5 # https://gitlab.freedesktop.org/gfx-ci/linux/-/commit/4b49f902ec6f2bb382cbbf489870573f4b43371e
6 # https://gitlab.freedesktop.org/gfx-ci/linux/-/commit/38cdf4c5559771e2474ae0fecef8469f65147bc1
30 # IGT Version: 1.28-ga73311079
31 # Linux Version: 6.11.0-rc2
/linux-6.14.4/Documentation/gpu/amdgpu/display/
Dindex.rst1 .. _amdgpu-display-core:
4 drm/amd/display - Display Core (DC)
10 #. **Display Core (DC)** contains the OS-agnostic components. Things like
12 #. **Display Manager (DM)** contains the OS-dependent components. Hooks to the
16 ------------------
18 ------------------
23 repository has integration tests with our Internal Linux CI farm, and we run a
25 and APUs). Our CI also checks ARM64/32, PPC64/32, and x86_64/32 compilation
30 `amd-staging-drm-next <https://gitlab.freedesktop.org/agd5f/linux>`_. All of
60 * Cross-compilation for PowerPC 64/32, ARM 64/32, and x86 32.
[all …]
Ddisplay-contributing.rst4 AMDGPU - Display Contributions
16 Gitlab issues
21 - https://gitlab.freedesktop.org/drm/amd
33 want to pass a large set of tests to increase the test coverage in our CI. If
37 issue; it is necessary to analyze case-by-case.
41 .. _IGT: https://gitlab.freedesktop.org/drm/igt-gpu-tools
47 ------------------------
55 -------------------------------------------------
57 Linux has a User-mode Linux (UML) feature, and the kernel can be compiled to
68 -----------------------------------------------------------
[all …]
/linux-6.14.4/tools/testing/selftests/hid/
Dvmtest.sh2 # SPDX-License-Identifier: GPL-2.0
4 set -u
5 set -e
8 ARCH="$(uname -m)"
11 QEMU_BINARY=qemu-system-x86_64
22 B2C_URL="https://gitlab.freedesktop.org/gfx-ci/boot2container/-/raw/main/vm2c.py"
24 LOG_FILE_BASE="$(date +"hid_selftests.%Y-%m-%d_%H-%M-%S")"
27 CONTAINER_IMAGE="registry.freedesktop.org/bentiss/hid/fedora/39:2023-11-22.1"
30 DEFAULT_COMMAND="pip3 install hid-tools; make -C tools/testing/selftests TARGETS=${TARGETS} run_tes…
35 Usage: $0 [-j N] [-s] [-b] [-d <output_dir>] -- [<command>]
[all …]
/linux-6.14.4/drivers/gpu/drm/i915/display/
Dintel_combo_phy.c1 // SPDX-License-Identifier: MIT
18 for ((__phy) = I915_MAX_PHYS; (__phy)-- > PHY_A;) \
34 .name = "0.85V dot0 (low-voltage)",
86 (0xff << 16) | 0xff, procmon->dw1); in icl_set_procmon_ref_values()
88 intel_de_write(dev_priv, ICL_PORT_COMP_DW9(phy), procmon->dw9); in icl_set_procmon_ref_values()
89 intel_de_write(dev_priv, ICL_PORT_COMP_DW10(phy), procmon->dw10); in icl_set_procmon_ref_values()
99 drm_dbg(&dev_priv->drm, in check_phy_reg()
119 (0xff << 16) | 0xff, procmon->dw1); in icl_verify_procmon_ref_values()
121 -1U, procmon->dw9); in icl_verify_procmon_ref_values()
123 -1U, procmon->dw10); in icl_verify_procmon_ref_values()
[all …]
/linux-6.14.4/Documentation/process/
Dhandling-regressions.rst1 .. SPDX-License-Identifier: (GPL-2.0+ OR CC-BY-4.0)
7 *We don't cause regressions* -- this document describes what this "first rule of
9 Documentation/admin-guide/reporting-regressions.rst, which covers the topic from a
21 loop by immediately sending at least a brief "Reply-all" with the list
30 introduced: v5.13..v5.14-rc1``. If not, send a reply (with the regressions
39 #regzbot introduced: v5.13..v5.14-rc1
45 mandated by Documentation/process/submitting-patches.rst and
61 -----------------------------------
72 it into the loop by sending at least a brief "Reply-all" with the list CCed;
79 Documentation/admin-guide/reporting-issues.rst.
[all …]
/linux-6.14.4/Documentation/translations/sp_SP/process/
Dhandling-regressions.rst1 .. include:: ../disclaimer-sp.rst
10 *No causamos regresiones* -- este documento describe la que es la "primera
13 Documentation/admin-guide/reporting-regressions.rst, que cubre el tema
25 conversación de los correos, mandando un breve "Reply-all" con la
35 como ``#regzbot introduced v5.13..v5.14-rc1``. Si no, mandar una
45 #regzbot introduced: v5.13..v5.14-rc1
52 Documentation/process/submitting-patches.rst y
64 -----------------------------------------
76 breve "Reply-all" con la lista en CC; Intentar asegurar que la lista es
84 Documentation/admin-guide/reporting-issues.rst.
[all …]
/linux-6.14.4/
DMAINTAINERS5 ---------------------------------------------------
21 W: *Web-page* with status/info
23 B: URI for where to file *bugs*. A web-page with detailed bug
28 patches to the given subsystem. This is either an in-tree file,
29 or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
46 N: [^a-z]tegra all files whose path contains tegra
64 ----------------
83 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
85 L: linux-[email protected]
88 F: drivers/scsi/3w-*
[all …]
/linux-6.14.4/drivers/gpu/drm/amd/amdgpu/
Damdgpu_device.c37 #include <linux/pci-p2pdma.h>
38 #include <linux/apple-gmux.h>
87 #include <asm/intel-family.h>
100 #define AMDGPU_RETRY_SRIOV_RESET(r) ((r) == -EBUSY || (r) == -ETIMEDOUT || (r) == -EINVAL)
148 #define AMDGPU_IP_BLK_MASK_ALL GENMASK(AMD_IP_BLOCK_TYPE_NUM - 1, 0)
180 return (adev->init_lvl->hwini_ip_block_mask & (1U << block)) != 0; in amdgpu_ip_member_of_hwini()
188 adev->init_lvl = &amdgpu_init_minimal_xgmi; in amdgpu_set_init_level()
191 adev->init_lvl = &amdgpu_init_recovery; in amdgpu_set_init_level()
196 adev->init_lvl = &amdgpu_init_default; in amdgpu_set_init_level()
258 return -EINVAL; in amdgpu_sysfs_reg_state_get()
[all …]