Patrick Georgi submitted this change.

View Change

Approvals: build bot (Jenkins): Verified Tim Wawrzynczak: Looks good to me, approved
nb/intel/ironlake: Avoid casting pointers to structs

Instead, convert the struct to a union and pass in a pointer to it.

Tested on out-of-tree HP ProBook 6550b, still boots.

Change-Id: I60e3dca7ad101d840759bdc0c88c50d9f07d65e2
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/45367
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
---
M src/northbridge/intel/ironlake/raminit.c
1 file changed, 16 insertions(+), 14 deletions(-)

diff --git a/src/northbridge/intel/ironlake/raminit.c b/src/northbridge/intel/ironlake/raminit.c
index a5de86a..f073dda 100644
--- a/src/northbridge/intel/ironlake/raminit.c
+++ b/src/northbridge/intel/ironlake/raminit.c
@@ -1649,8 +1649,20 @@
return 0;
}

+union uma_reply {
+ struct {
+ u8 group_id;
+ u8 command;
+ u8 reserved;
+ u8 result;
+ u8 field2;
+ u8 unk3[0x48 - 4 - 1];
+ };
+ u32 dwords[0x48 / sizeof(u32)];
+} __packed;
+
/* FIXME: Add timeout. */
-static int recv_heci_message(u32 *message, u32 *message_size)
+static int recv_heci_message(union uma_reply *message, u32 *message_size)
{
struct mei_header head;
int current_position;
@@ -1660,7 +1672,7 @@
u32 current_size;
current_size = *message_size - current_position;
if (recv_heci_packet
- (&head, message + (current_position >> 2),
+ (&head, &message->dwords[current_position / sizeof(u32)],
&current_size) == -1)
break;
if (!current_size)
@@ -1680,17 +1692,7 @@

static void send_heci_uma_message(const u64 heci_uma_addr, const unsigned int heci_uma_size)
{
- volatile struct uma_reply {
- u8 group_id;
- u8 command;
- u8 reserved;
- u8 result;
- u8 field2;
- u8 unk3[0x48 - 4 - 1];
- } __packed reply;
-
- /* FIXME: recv_heci_message() does not always initialize 'reply' */
- reply.command = 0;
+ union uma_reply reply;

struct uma_message {
u8 group_id;
@@ -1716,7 +1718,7 @@
send_heci_message((u8 *) &msg, sizeof(msg), 0, 7);

reply_size = sizeof(reply);
- if (recv_heci_message((u32 *) &reply, &reply_size) == -1)
+ if (recv_heci_message(&reply, &reply_size) == -1)
return;

if (reply.command != (MKHI_SET_UMA | (1 << 7)))

To view, visit change 45367. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I60e3dca7ad101d840759bdc0c88c50d9f07d65e2
Gerrit-Change-Number: 45367
Gerrit-PatchSet: 5
Gerrit-Owner: Angel Pons <th3fanbus@gmail.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi@google.com>
Gerrit-Reviewer: Patrick Rudolph <siro@das-labor.org>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak@chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter@users.sourceforge.net>
Gerrit-MessageType: merged