From 3c84261e84318708c9c16ee5df5c2549c609dd0a Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Thu, 22 Nov 2012 15:30:05 +0100 Subject: yabel: Use X86_* instead of the more verbose M.x86.REG_* Makes it more similar to what realmode looks like. Change-Id: I4407431f2d979c43dd186114d67ed11845907afe Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/1892 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- src/mainboard/samsung/lumpy/mainboard.c | 34 ++++++++++++++++---------------- src/mainboard/samsung/stumpy/mainboard.c | 22 ++++++++++----------- 2 files changed, 28 insertions(+), 28 deletions(-) (limited to 'src/mainboard/samsung') diff --git a/src/mainboard/samsung/lumpy/mainboard.c b/src/mainboard/samsung/lumpy/mainboard.c index a3dc2c0c06..d111181f26 100644 --- a/src/mainboard/samsung/lumpy/mainboard.c +++ b/src/mainboard/samsung/lumpy/mainboard.c @@ -151,9 +151,9 @@ static int int15_handler(void) static int int15_handler(void) { printk(BIOS_DEBUG, "%s: AX=%04x BX=%04x CX=%04x DX=%04x\n", - __func__, M.x86.R_AX, M.x86.R_BX, M.x86.R_CX, M.x86.R_DX); + __func__, X86_AX, X86_BX, X86_CX, X86_DX); - switch (M.x86.R_AX) { + switch (X86_AX) { case 0x5f34: /* * Set Panel Fitting Hook: @@ -162,8 +162,8 @@ static int int15_handler(void) * bit 0 = Centering (do not set with bit1 or bit2) * 0 = video bios default */ - M.x86.R_AX = 0x005f; - M.x86.R_CL = 0x00; + X86_AX = 0x005f; + X86_CL = 0x00; break; case 0x5f35: /* @@ -177,8 +177,8 @@ static int int15_handler(void) * bit 6 = EFP2 * * bit 7 = LFP2 */ - M.x86.R_AX = 0x005f; - M.x86.R_CX = 0x0000; + X86_AX = 0x005f; + X86_CX = 0x0000; break; case 0x5f51: /* @@ -188,40 +188,40 @@ static int int15_handler(void) * 02h = SVDO-LVDS, LFP driven by SVDO decoder * 03h = eDP, LFP Driven by Int-DisplayPort encoder */ - M.x86.R_AX = 0x005f; - M.x86.R_CX = 1; + X86_AX = 0x005f; + X86_CX = 1; break; case 0x5f70: - switch (M.x86.R_CH) { + switch (X86_CH) { case 0: /* Get Mux */ printk(BIOS_DEBUG, "Get Mux\n"); - M.x86.R_AX = 0x005f; - M.x86.R_CL = 0; + X86_AX = 0x005f; + X86_CL = 0; break; case 1: printk(BIOS_DEBUG, "Set Mux\n"); /* Set Mux */ - M.x86.R_AX = 0x005f; - M.x86.R_CX = 0; + X86_AX = 0x005f; + X86_CX = 0; break; case 2: printk(BIOS_DEBUG, "Get SG Mode\n"); /* Get SG/Non-SG mode */ - M.x86.R_AX = 0x005f; - M.x86.R_CX = 0; + X86_AX = 0x005f; + X86_CX = 0; break; default: /* Interrupt was not handled */ printk(BIOS_DEBUG, "Unknown INT15 5f70 function: 0x%02x\n", - M.x86.R_CH); + X86_CH); return 0; } break; default: /* Interrupt was not handled */ printk(BIOS_DEBUG, "Unknown INT15 function: 0x%04x\n", - M.x86.R_AX); + X86_AX); return 0; } diff --git a/src/mainboard/samsung/stumpy/mainboard.c b/src/mainboard/samsung/stumpy/mainboard.c index b0981fd711..a465bb2862 100644 --- a/src/mainboard/samsung/stumpy/mainboard.c +++ b/src/mainboard/samsung/stumpy/mainboard.c @@ -144,9 +144,9 @@ static int int15_handler(void) static int int15_handler(void) { printk(BIOS_DEBUG, "%s: AX=%04x BX=%04x CX=%04x DX=%04x\n", - __func__, M.x86.R_AX, M.x86.R_BX, M.x86.R_CX, M.x86.R_DX); + __func__, X86_AX, X86_BX, X86_CX, X86_DX); - switch (M.x86.R_AX) { + switch (X86_AX) { case 0x5f34: /* * Set Panel Fitting Hook: @@ -154,8 +154,8 @@ static int int15_handler(void) * bit 1 = Text Stretching * bit 0 = Centering (do not set with bit1 or bit2) */ - M.x86.R_AX = 0x005f; - M.x86.R_CX = 0x0001; + X86_AX = 0x005f; + X86_CX = 0x0001; break; case 0x5f35: /* @@ -169,8 +169,8 @@ static int int15_handler(void) * bit 6 = EFP2 * * bit 7 = LFP2 */ - M.x86.R_AX = 0x005f; - M.x86.R_CX = 0x0000; + X86_AX = 0x005f; + X86_CX = 0x0000; break; case 0x5f51: /* @@ -180,18 +180,18 @@ static int int15_handler(void) * 02h = SVDO-LVDS, LFP driven by SVDO decoder * 03h = eDP, LFP Driven by Int-DisplayPort encoder */ - M.x86.R_AX = 0x005f; - M.x86.R_CX = 3; + X86_AX = 0x005f; + X86_CX = 3; break; case 0x5f70: /* Unknown */ - M.x86.R_AX = 0x005f; - M.x86.R_CX = 0; + X86_AX = 0x005f; + X86_CX = 0; break; default: /* Interrupt was not handled */ printk(BIOS_DEBUG, "Unknown INT15 function: 0x%04x\n", - M.x86.R_AX); + X86_AX); return 0; } -- cgit v1.2.3