src/nb: Use 'print("%s...", __func__)'
Change-Id: I7dd6dd8e8debe1b6419625fca38670be375ef581 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39328 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
682b166886
commit
3cd4327ad9
|
@ -133,8 +133,7 @@ void sdram_initialize(struct pei_data *pei_data)
|
||||||
/* If MRC data is not found we cannot continue S3 resume. */
|
/* If MRC data is not found we cannot continue S3 resume. */
|
||||||
if (pei_data->boot_mode == 2 && !pei_data->mrc_input) {
|
if (pei_data->boot_mode == 2 && !pei_data->mrc_input) {
|
||||||
post_code(POST_RESUME_FAILURE);
|
post_code(POST_RESUME_FAILURE);
|
||||||
printk(BIOS_DEBUG, "Giving up in sdram_initialize: "
|
printk(BIOS_DEBUG, "Giving up in %s: No MRC data\n", __func__);
|
||||||
"No MRC data\n");
|
|
||||||
system_reset();
|
system_reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -88,9 +88,9 @@ static int gtt_setup(u8 *mmiobase)
|
||||||
|
|
||||||
/* verify */
|
/* verify */
|
||||||
if (read32(mmiobase + PGETBL_CTL) & PGETBL_ENABLED) {
|
if (read32(mmiobase + PGETBL_CTL) & PGETBL_ENABLED) {
|
||||||
printk(BIOS_DEBUG, "gtt_setup is enabled.\n");
|
printk(BIOS_DEBUG, "%s is enabled.\n", __func__);
|
||||||
} else {
|
} else {
|
||||||
printk(BIOS_DEBUG, "gtt_setup failed!!!\n");
|
printk(BIOS_DEBUG, "%s failed!!!\n", __func__);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
write32(mmiobase + GFX_FLSH_CNTL, 0);
|
write32(mmiobase + GFX_FLSH_CNTL, 0);
|
||||||
|
|
|
@ -111,7 +111,7 @@ static int memclk(void)
|
||||||
case 2: return 533;
|
case 2: return 533;
|
||||||
case 3: return 667;
|
case 3: return 667;
|
||||||
default:
|
default:
|
||||||
printk(BIOS_DEBUG, "memclk: unknown register value %x\n",
|
printk(BIOS_DEBUG, "%s: unknown register value %x\n", __func__,
|
||||||
((MCHBAR32(CLKCFG) >> 4) & 7) - offset);
|
((MCHBAR32(CLKCFG) >> 4) & 7) - offset);
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -125,7 +125,7 @@ static u16 fsbclk(void)
|
||||||
case 1: return 533;
|
case 1: return 533;
|
||||||
case 3: return 667;
|
case 3: return 667;
|
||||||
default:
|
default:
|
||||||
printk(BIOS_DEBUG, "fsbclk: unknown register value %x\n",
|
printk(BIOS_DEBUG, "%s: unknown register value %x\n", __func__,
|
||||||
MCHBAR32(CLKCFG) & 7);
|
MCHBAR32(CLKCFG) & 7);
|
||||||
}
|
}
|
||||||
return 0xffff;
|
return 0xffff;
|
||||||
|
@ -135,7 +135,7 @@ static u16 fsbclk(void)
|
||||||
case 1: return 533;
|
case 1: return 533;
|
||||||
case 2: return 800;
|
case 2: return 800;
|
||||||
default:
|
default:
|
||||||
printk(BIOS_DEBUG, "fsbclk: unknown register value %x\n",
|
printk(BIOS_DEBUG, "%s: unknown register value %x\n", __func__,
|
||||||
MCHBAR32(CLKCFG) & 7);
|
MCHBAR32(CLKCFG) & 7);
|
||||||
}
|
}
|
||||||
return 0xffff;
|
return 0xffff;
|
||||||
|
|
|
@ -64,7 +64,7 @@ static void set_receive_enable(int channel_offset, u8 medium, u8 coarse)
|
||||||
{
|
{
|
||||||
u32 reg32;
|
u32 reg32;
|
||||||
|
|
||||||
printk(BIOS_SPEW, " set_receive_enable() medium=0x%x, coarse=0x%x\n", medium, coarse);
|
printk(BIOS_SPEW, " %s() medium=0x%x, coarse=0x%x\n", __func__, medium, coarse);
|
||||||
|
|
||||||
reg32 = MCHBAR32(C0DRT1 + channel_offset);
|
reg32 = MCHBAR32(C0DRT1 + channel_offset);
|
||||||
reg32 &= 0xf0ffffff;
|
reg32 &= 0xf0ffffff;
|
||||||
|
@ -73,7 +73,7 @@ static void set_receive_enable(int channel_offset, u8 medium, u8 coarse)
|
||||||
|
|
||||||
/* This should never happen: */
|
/* This should never happen: */
|
||||||
if (coarse > 0x0f)
|
if (coarse > 0x0f)
|
||||||
printk(BIOS_DEBUG, "set_receive_enable: coarse overflow: 0x%02x.\n", coarse);
|
printk(BIOS_DEBUG, "%s: coarse overflow: 0x%02x.\n", __func__, coarse);
|
||||||
|
|
||||||
/* medium control
|
/* medium control
|
||||||
*
|
*
|
||||||
|
@ -99,7 +99,7 @@ static void set_receive_enable(int channel_offset, u8 medium, u8 coarse)
|
||||||
|
|
||||||
static int normalize(int channel_offset, u8 *mediumcoarse, u8 *fine)
|
static int normalize(int channel_offset, u8 *mediumcoarse, u8 *fine)
|
||||||
{
|
{
|
||||||
printk(BIOS_SPEW, " normalize()\n");
|
printk(BIOS_SPEW, " %s()\n", __func__);
|
||||||
|
|
||||||
if (*fine < 0x80)
|
if (*fine < 0x80)
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -126,7 +126,7 @@ static int find_preamble(int channel_offset, u8 *mediumcoarse,
|
||||||
/* find start of the data phase */
|
/* find start of the data phase */
|
||||||
u32 reg32;
|
u32 reg32;
|
||||||
|
|
||||||
printk(BIOS_SPEW, " find_preamble()\n");
|
printk(BIOS_SPEW, " %s()\n", __func__);
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if (*mediumcoarse < 4) {
|
if (*mediumcoarse < 4) {
|
||||||
|
@ -156,7 +156,7 @@ static int find_preamble(int channel_offset, u8 *mediumcoarse,
|
||||||
|
|
||||||
static int add_quarter_clock(int channel_offset, u8 *mediumcoarse, u8 *fine)
|
static int add_quarter_clock(int channel_offset, u8 *mediumcoarse, u8 *fine)
|
||||||
{
|
{
|
||||||
printk(BIOS_SPEW, " add_quarter_clock() mediumcoarse=%02x fine=%02x\n",
|
printk(BIOS_SPEW, " %s() mediumcoarse=%02x fine=%02x\n", __func__,
|
||||||
*mediumcoarse, *fine);
|
*mediumcoarse, *fine);
|
||||||
if (*fine >= 0x80) {
|
if (*fine >= 0x80) {
|
||||||
*fine -= 0x80;
|
*fine -= 0x80;
|
||||||
|
@ -183,7 +183,7 @@ static int find_strobes_low(int channel_offset, u8 *mediumcoarse, u8 *fine,
|
||||||
{
|
{
|
||||||
u32 rcvenmt;
|
u32 rcvenmt;
|
||||||
|
|
||||||
printk(BIOS_SPEW, " find_strobes_low()\n");
|
printk(BIOS_SPEW, " %s()\n", __func__);
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
MCHBAR8(C0WL0REOST + channel_offset) = *fine;
|
MCHBAR8(C0WL0REOST + channel_offset) = *fine;
|
||||||
|
@ -219,7 +219,7 @@ static int find_strobes_edge(int channel_offset, u8 *mediumcoarse, u8 *fine,
|
||||||
int counter;
|
int counter;
|
||||||
u32 rcvenmt;
|
u32 rcvenmt;
|
||||||
|
|
||||||
printk(BIOS_SPEW, " find_strobes_edge()\n");
|
printk(BIOS_SPEW, " %s()\n", __func__);
|
||||||
|
|
||||||
counter = 8;
|
counter = 8;
|
||||||
set_receive_enable(channel_offset, *mediumcoarse & 3,
|
set_receive_enable(channel_offset, *mediumcoarse & 3,
|
||||||
|
@ -283,8 +283,7 @@ static int receive_enable_autoconfig(int channel_offset,
|
||||||
u8 mediumcoarse;
|
u8 mediumcoarse;
|
||||||
u8 fine;
|
u8 fine;
|
||||||
|
|
||||||
printk(BIOS_SPEW, "receive_enable_autoconfig() for channel %d\n",
|
printk(BIOS_SPEW, "%s() for channel %d\n", __func__, channel_offset ? 1 : 0);
|
||||||
channel_offset ? 1 : 0);
|
|
||||||
|
|
||||||
/* Set initial values */
|
/* Set initial values */
|
||||||
mediumcoarse = (sysinfo->cas << 2) | 3;
|
mediumcoarse = (sysinfo->cas << 2) | 3;
|
||||||
|
|
|
@ -212,7 +212,7 @@ void sdram_initialize(struct pei_data *pei_data)
|
||||||
|
|
||||||
/* If MRC data is not found we cannot continue S3 resume. */
|
/* If MRC data is not found we cannot continue S3 resume. */
|
||||||
if (pei_data->boot_mode == 2 && !pei_data->mrc_input) {
|
if (pei_data->boot_mode == 2 && !pei_data->mrc_input) {
|
||||||
printk(BIOS_DEBUG, "Giving up in sdram_initialize: No MRC data\n");
|
printk(BIOS_DEBUG, "Giving up in %s: No MRC data\n", __func__);
|
||||||
system_reset();
|
system_reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue