sb/intel: Fix pointer casts
Fix some compiler warnings due to pointer to integer conversions with different size. Required for 64bit ramstage. Change-Id: Ibfb3cacf25adfb4a242d38e4ea290fdc3929a684 Signed-off-by: Patrick Rudolph <siro@das-labor.org> Reviewed-on: https://review.coreboot.org/c/29875 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
571477b514
commit
4af2add608
|
@ -150,7 +150,7 @@ void smm_setup_structures(void *gnvs, void *tcg, void *smi1)
|
||||||
"outb %%al, %%dx\n\t"
|
"outb %%al, %%dx\n\t"
|
||||||
: /* ignore result */
|
: /* ignore result */
|
||||||
: "a" (APM_CNT_GNVS_UPDATE),
|
: "a" (APM_CNT_GNVS_UPDATE),
|
||||||
"b" ((u32)gnvs),
|
"b" ((uintptr_t)gnvs),
|
||||||
"d" (APM_CNT)
|
"d" (APM_CNT)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -278,7 +278,7 @@ static void azalia_init(struct device *dev)
|
||||||
// NOTE this will break as soon as the Azalia get's a bar above
|
// NOTE this will break as soon as the Azalia get's a bar above
|
||||||
// 4G. Is there anything we can do about it?
|
// 4G. Is there anything we can do about it?
|
||||||
base = res2mmio(res, 0, 0);
|
base = res2mmio(res, 0, 0);
|
||||||
printk(BIOS_DEBUG, "Azalia: base = %08x\n", (u32)base);
|
printk(BIOS_DEBUG, "Azalia: base = %p\n", base);
|
||||||
codec_mask = codec_detect(base);
|
codec_mask = codec_detect(base);
|
||||||
|
|
||||||
if (codec_mask) {
|
if (codec_mask) {
|
||||||
|
|
|
@ -553,7 +553,7 @@ static void southbridge_inject_dsdt(struct device *dev)
|
||||||
|
|
||||||
/* Add it to SSDT. */
|
/* Add it to SSDT. */
|
||||||
acpigen_write_scope("\\");
|
acpigen_write_scope("\\");
|
||||||
acpigen_write_name_dword("NVSA", (u32) gnvs);
|
acpigen_write_name_dword("NVSA", (uintptr_t)gnvs);
|
||||||
acpigen_pop_len();
|
acpigen_pop_len();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,9 +30,14 @@ static void sata_enable_ahci_mmap(struct device *const dev, const u8 port_map,
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
u32 reg32;
|
u32 reg32;
|
||||||
|
struct resource *res;
|
||||||
|
|
||||||
/* Initialize AHCI memory-mapped space */
|
/* Initialize AHCI memory-mapped space */
|
||||||
u8 *abar = (u8 *)pci_read_config32(dev, PCI_BASE_ADDRESS_5);
|
res = find_resource(dev, PCI_BASE_ADDRESS_5);
|
||||||
|
if (!res)
|
||||||
|
return;
|
||||||
|
|
||||||
|
u8 *abar = res2mmio(res, 0, 0);
|
||||||
printk(BIOS_DEBUG, "ABAR: %p\n", abar);
|
printk(BIOS_DEBUG, "ABAR: %p\n", abar);
|
||||||
|
|
||||||
/* Set AHCI access mode.
|
/* Set AHCI access mode.
|
||||||
|
|
Loading…
Reference in New Issue