sim: bfin: fix the otp fix fix

Need to shift the upper 32-bits and not just combine directly with
the lower 32-bits.
This commit is contained in:
Mike Frysinger 2021-05-28 23:29:40 -04:00
parent 49149d595c
commit f006d9e205
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2021-05-28 Mike Frysinger <vapier@gentoo.org>
* dv-bfin_otp.c (bfin_otp_write_page): Shift data1 & data3 by 32-bits.
2021-05-23 Mike Frysinger <vapier@gentoo.org>
* dv-bfin_otp.c (bfin_otp_write_page): Fix args to

View File

@ -91,8 +91,8 @@ bfin_otp_write_page_val2 (struct bfin_otp *otp, bu16 page, bu64 lo, bu64 hi)
static void
bfin_otp_write_page (struct bfin_otp *otp, bu16 page)
{
bfin_otp_write_page_val2 (otp, page, (bu64)otp->data1 | otp->data0,
(bu64)otp->data3 | otp->data2);
bfin_otp_write_page_val2 (otp, page, ((bu64)otp->data1 << 32) | otp->data0,
((bu64)otp->data3 << 32) | otp->data2);
}
static unsigned