Skip to content

Commit cf0d9fb

Browse files
committed
FROMLIST: media: venus: IRIS2 EOS quirk (#51)
Constrain the check to IRIS2 (SM8250) only, which is the only platform that needs this quirk, by replacing IS_V6() with IS_IRIS2(). This restores correct behavior on SC7280 and avoids a forced NULL EOS buffer address. Signed-off-by: Dikshita Agarwal <dikshita.agarwal@oss.qualcomm.com>
1 parent 86a3a89 commit cf0d9fb

7 files changed

Lines changed: 506 additions & 446 deletions

File tree

.github/actions/lava_job_render/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ runs:
6868
6969
- name: Upload metadata.json
7070
id: upload_metadata
71-
uses: qualcomm-linux/video-driver/.github/actions/aws_s3_helper@video.upstream(stage)
71+
uses: qualcomm-linux/video-driver/.github/actions/aws_s3_helper@video.upstream
7272
with:
7373
local_file: ../job_render/data/metadata.json
7474
s3_bucket: qli-prd-video-gh-artifacts

.github/workflows/loading.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
full_matrix: ${{ steps.loading.outputs.full_matrix }}
2121
steps:
2222
- name: Sync codebase
23-
uses: qualcomm-linux/video-driver/.github/actions/sync@video.upstream(stage)
23+
uses: qualcomm-linux/video-driver/.github/actions/sync@video.upstream
2424
with:
2525
event_name: ${{ github.event_name }}
2626
# For pull_request: github.head_ref is the source branch of the PR
@@ -34,4 +34,4 @@ jobs:
3434

3535
- name: Load Parameters
3636
id: loading
37-
uses: qualcomm-linux/video-driver/.github/actions/loading@video.upstream(stage)
37+
uses: qualcomm-linux/video-driver/.github/actions/loading@video.upstream

.github/workflows/pre_merge.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,34 @@ description: |
66
on:
77
push:
88
branches:
9-
- 'video.upstream(stage)'
9+
- 'video.upstream'
10+
- 'video.upstream.stage'
1011
workflow_dispatch:
12+
branches:
13+
- 'video.upstream'
14+
- 'video.upstream.stage'
1115
pull_request:
1216
types: [opened, synchronize, reopened]
1317
branches:
14-
- 'video.upstream(stage)'
18+
- 'video.upstream'
19+
1520

1621
jobs:
1722
loading:
18-
uses: qualcomm-linux/video-driver/.github/workflows/loading.yml@video.upstream(stage)
23+
uses: qualcomm-linux/video-driver/.github/workflows/loading.yml@video.upstream
1924
secrets: inherit
2025

2126
build:
2227
needs: loading
23-
uses: qualcomm-linux/video-driver/.github/workflows/sync-and-build.yml@video.upstream(stage)
28+
uses: qualcomm-linux/video-driver/.github/workflows/sync-and-build.yml@video.upstream
2429
secrets: inherit
2530
with:
2631
docker_image: kmake-image:ver.1.0
2732
build_matrix: ${{ needs.loading.outputs.build_matrix }}
2833

2934
lava-test:
3035
needs: [loading, build]
31-
uses: qualcomm-linux/video-driver/.github/workflows/test.yml@video.upstream(stage)
36+
uses: qualcomm-linux/video-driver/.github/workflows/test.yml@video.upstream
3237
secrets: inherit
3338
with:
3439
docker_image: kmake-image:ver.1.0

0 commit comments

Comments
 (0)