* make ERROR define to always show AtomBIOS parsing errors

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42739 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Alexander von Gluck IV 2011-09-11 17:15:14 +00:00
parent 1be3653a7b
commit d06251a95a
1 changed files with 8 additions and 7 deletions

View File

@ -44,6 +44,7 @@
# define TRACE(x...) ; # define TRACE(x...) ;
#endif #endif
#define ERROR(x...) _sPrintf("radeon_hd: " x)
#define ATOM_COND_ABOVE 0 #define ATOM_COND_ABOVE 0
#define ATOM_COND_ABOVEOREQUAL 1 #define ATOM_COND_ABOVEOREQUAL 1
@ -641,7 +642,7 @@ atom_op_jump(atom_exec_context *ctx, int *ptr, int arg)
if (execute) { if (execute) {
if (ctx->last_jump == (ctx->start + target)) { if (ctx->last_jump == (ctx->start + target)) {
if (ctx->last_jump_count > 128) { if (ctx->last_jump_count > 128) {
TRACE("%s: DANGER! AtomBIOS stuck in infinite loop" ERROR("%s: DANGER! AtomBIOS stuck in infinite loop"
" for more then 128 jumps... abort!\n", __func__); " for more then 128 jumps... abort!\n", __func__);
ctx->abort = true; ctx->abort = true;
} else { } else {
@ -1146,7 +1147,7 @@ atom_execute_table_locked(atom_context *ctx, int index, uint32 * params)
TRACE("%s: unknown (0x%" B_PRIX16 ")\n", __func__, ptr - 1); TRACE("%s: unknown (0x%" B_PRIX16 ")\n", __func__, ptr - 1);
if (ectx.abort == true) { if (ectx.abort == true) {
TRACE("AtomBios parser was aborted executing (0x%" B_PRIX16 ")\n", ERROR("AtomBios parser was aborted executing (0x%" B_PRIX16 ")\n",
ptr - 1); ptr - 1);
free(ectx.ws); free(ectx.ws);
return B_ERROR; return B_ERROR;
@ -1172,7 +1173,7 @@ atom_execute_table(atom_context *ctx, int index, uint32 *params)
{ {
if (acquire_sem_etc(ctx->exec_sem, 1, B_RELATIVE_TIMEOUT, 5000000) if (acquire_sem_etc(ctx->exec_sem, 1, B_RELATIVE_TIMEOUT, 5000000)
!= B_NO_ERROR) { != B_NO_ERROR) {
TRACE("%s: Timeout to obtain semaphore!\n", __func__); ERROR("%s: Timeout to obtain semaphore!\n", __func__);
return B_ERROR; return B_ERROR;
} }
/* reset reg block */ /* reset reg block */
@ -1211,7 +1212,7 @@ atom_parse(card_info *card, uint8 *bios)
atom_context *ctx = (atom_context*)malloc(sizeof(atom_context)); atom_context *ctx = (atom_context*)malloc(sizeof(atom_context));
if (ctx == NULL) { if (ctx == NULL) {
TRACE("%s: Error: No memory for atom_context mapping\n", __func__); ERROR("%s: Error: No memory for atom_context mapping\n", __func__);
return NULL; return NULL;
} }
@ -1219,13 +1220,13 @@ atom_parse(card_info *card, uint8 *bios)
ctx->bios = bios; ctx->bios = bios;
if (CU16(0) != ATOM_BIOS_MAGIC) { if (CU16(0) != ATOM_BIOS_MAGIC) {
TRACE("Invalid BIOS magic.\n"); ERROR("Invalid BIOS magic.\n");
free(ctx); free(ctx);
return NULL; return NULL;
} }
if (strncmp(CSTR(ATOM_ATI_MAGIC_PTR), ATOM_ATI_MAGIC, if (strncmp(CSTR(ATOM_ATI_MAGIC_PTR), ATOM_ATI_MAGIC,
strlen(ATOM_ATI_MAGIC))) { strlen(ATOM_ATI_MAGIC))) {
TRACE("Invalid ATI magic.\n"); ERROR("Invalid ATI magic.\n");
free(ctx); free(ctx);
return NULL; return NULL;
} }
@ -1233,7 +1234,7 @@ atom_parse(card_info *card, uint8 *bios)
int base = CU16(ATOM_ROM_TABLE_PTR); int base = CU16(ATOM_ROM_TABLE_PTR);
if (strncmp(CSTR(base + ATOM_ROM_MAGIC_PTR), ATOM_ROM_MAGIC, if (strncmp(CSTR(base + ATOM_ROM_MAGIC_PTR), ATOM_ROM_MAGIC,
strlen(ATOM_ROM_MAGIC))) { strlen(ATOM_ROM_MAGIC))) {
TRACE("Invalid ATOM magic.\n"); ERROR("Invalid ATOM magic.\n");
free(ctx); free(ctx);
return NULL; return NULL;
} }