mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-01-24 14:16:41 -07:00
hw/ufs: Fix legacy single doorbell support bit
QEMU UFS has supported both legacy single doorbell and MCQ, but the LSDBS value was incorrectly set. This change corrects the LSDBS value to 0. Signed-off-by: Jeuk Kim <jeuk20.kim@samsung.com>
This commit is contained in:
parent
db7aa99ef8
commit
f8af22afec
1 changed files with 1 additions and 1 deletions
|
|
@ -1635,7 +1635,7 @@ static void ufs_init_hc(UfsHc *u)
|
|||
cap = FIELD_DP32(cap, CAP, OODDS, 0);
|
||||
cap = FIELD_DP32(cap, CAP, UICDMETMS, 0);
|
||||
cap = FIELD_DP32(cap, CAP, CS, 0);
|
||||
cap = FIELD_DP32(cap, CAP, LSDBS, 1);
|
||||
cap = FIELD_DP32(cap, CAP, LSDBS, 0);
|
||||
cap = FIELD_DP32(cap, CAP, MCQS, u->params.mcq);
|
||||
u->reg.cap = cap;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue