3c7ada5941
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20284 a1c6a512-1295-4272-9138-f99709370657
203 lines
7.1 KiB
C
Executable file
203 lines
7.1 KiB
C
Executable file
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2007 by Karl Kurbjun
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
#include "cpu.h"
|
|
#include "system.h"
|
|
#include "string.h"
|
|
#include <stdbool.h>
|
|
#include "button.h"
|
|
#include "lcd.h"
|
|
#include "debug.h"
|
|
#include "sprintf.h"
|
|
#include "font.h"
|
|
#include "pcm.h"
|
|
#include "debug-target.h"
|
|
#include "lcd-target.h"
|
|
#include "dsp-target.h"
|
|
#include "dsp/ipc.h"
|
|
|
|
#ifndef CREATIVE_ZVx
|
|
#include "tsc2100.h"
|
|
#endif
|
|
|
|
#define ARM_BUFFER_SIZE (PCM_SIZE)
|
|
|
|
static signed short *the_rover = (signed short *)0x1900000;
|
|
static unsigned int index_rover = 0;
|
|
|
|
void pcmtest_get_more(unsigned char** start, size_t* size)
|
|
{
|
|
unsigned long sdem_addr;
|
|
sdem_addr = (unsigned long)the_rover + index_rover;
|
|
|
|
*start = (unsigned char*)(sdem_addr);
|
|
*size = ARM_BUFFER_SIZE;
|
|
|
|
index_rover += ARM_BUFFER_SIZE;
|
|
if (index_rover >= 4*1024*1024)
|
|
{
|
|
index_rover = 0;
|
|
}
|
|
|
|
DEBUGF("pcm_sdram at 0x%08lx, sdem_addr 0x%08lx",
|
|
(unsigned long)the_rover, (unsigned long)sdem_addr);
|
|
}
|
|
|
|
bool __dbg_ports(void)
|
|
{
|
|
int fd;
|
|
int bytes;
|
|
|
|
fd = open("/test.raw", O_RDONLY);
|
|
bytes = read(fd, the_rover, 4*1024*1024);
|
|
close(fd);
|
|
|
|
DEBUGF("read %d rover bytes", bytes);
|
|
|
|
pcm_play_data(&pcmtest_get_more,(unsigned char*)the_rover, ARM_BUFFER_SIZE);
|
|
|
|
return false;
|
|
}
|
|
|
|
#ifndef CREATIVE_ZVx
|
|
extern char r_buffer[5];
|
|
extern int r_button;
|
|
#endif
|
|
bool __dbg_hw_info(void)
|
|
{
|
|
int line = 0, oldline;
|
|
int button;
|
|
#ifndef CREATIVE_ZVx
|
|
int *address=0x0;
|
|
#endif
|
|
bool done=false;
|
|
char buf[100];
|
|
|
|
lcd_setfont(FONT_SYSFIXED);
|
|
lcd_clear_display();
|
|
|
|
/* Put all the static text befor the while loop */
|
|
lcd_puts(0, line++, "[Hardware info]");
|
|
|
|
lcd_puts(0, line++, "Clock info:");
|
|
#if LCD_WIDTH > 320
|
|
snprintf(buf, sizeof(buf), "IO_CLK_PLLA: 0x%04x IO_CLK_PLLB: 0x%04x IO_CLK_SEL0: 0x%04x IO_CLK_SEL1: 0x%04x",
|
|
IO_CLK_PLLA, IO_CLK_PLLB, IO_CLK_SEL0, IO_CLK_SEL1); lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), "IO_CLK_SEL2: 0x%04x IO_CLK_DIV0: 0x%04x IO_CLK_DIV1: 0x%04x IO_CLK_DIV2: 0x%04x",
|
|
IO_CLK_SEL2, IO_CLK_DIV0, IO_CLK_DIV1, IO_CLK_DIV2); lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), "IO_CLK_DIV3: 0x%04x IO_CLK_DIV4: 0x%04x IO_CLK_BYP : 0x%04x IO_CLK_INV : 0x%04x",
|
|
IO_CLK_DIV3, IO_CLK_DIV4, IO_CLK_BYP, IO_CLK_INV); lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), "IO_CLK_MOD0: 0x%04x IO_CLK_MOD1: 0x%04x IO_CLK_MOD2: 0x%04x IO_CLK_LPCTL0: 0x%04x",
|
|
IO_CLK_MOD0, IO_CLK_MOD1, IO_CLK_MOD2, IO_CLK_LPCTL0); lcd_puts(0, line++, buf);
|
|
#else
|
|
snprintf(buf, sizeof(buf), " IO_CLK_PLLA: 0x%04x IO_CLK_PLLB: 0x%04x", IO_CLK_PLLA, IO_CLK_PLLB);
|
|
lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), " IO_CLK_SEL0: 0x%04x IO_CLK_SEL1: 0x%04x", IO_CLK_SEL0, IO_CLK_SEL1);
|
|
lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), " IO_CLK_SEL2: 0x%04x IO_CLK_DIV0: 0x%04x", IO_CLK_SEL2, IO_CLK_DIV0);
|
|
lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), " IO_CLK_DIV1: 0x%04x IO_CLK_DIV2: 0x%04x", IO_CLK_DIV1, IO_CLK_DIV2);
|
|
lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), " IO_CLK_DIV3: 0x%04x IO_CLK_DIV4: 0x%04x", IO_CLK_DIV3, IO_CLK_DIV4);
|
|
lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), " IO_CLK_BYP : 0x%04x IO_CLK_INV : 0x%04x", IO_CLK_BYP, IO_CLK_INV);
|
|
lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), " IO_CLK_MOD0: 0x%04x IO_CLK_MOD1: 0x%04x ", IO_CLK_MOD0, IO_CLK_MOD1);
|
|
lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), " IO_CLK_MOD2: 0x%04x IO_CLK_LPCTL0: 0x%04x ", IO_CLK_MOD2, IO_CLK_LPCTL0);
|
|
lcd_puts(0, line++, buf);
|
|
lcd_puts(0, line++, "Interrupt info:");
|
|
snprintf(buf, sizeof(buf), " IO_INTC_EINT0: 0x%04x IO_INTC_EINT1: 0x%04x ", IO_INTC_EINT0, IO_INTC_EINT1);
|
|
lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), " IO_INTC_EINT2: 0x%04x IO_INTC_IRQ0: 0x%04x ", IO_INTC_EINT2, IO_INTC_IRQ0);
|
|
lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), " IO_INTC_IRQ1: 0x%04x IO_INTC_IRQ2: 0x%04x ", IO_INTC_IRQ1, IO_INTC_IRQ2);
|
|
lcd_puts(0, line++, buf);
|
|
#endif
|
|
|
|
lcd_puts(0, line++, "Board revision:");
|
|
switch (IO_BUSC_REVR) {
|
|
case 0x0010:
|
|
lcd_puts(0, line++, " DM320 Rev. A");
|
|
break;
|
|
case 0x0011:
|
|
lcd_puts(0, line++, " DM320 Rev. B/C");
|
|
break;
|
|
default:
|
|
lcd_puts(0, line++, " Unknown DM320 Chip ID");
|
|
}
|
|
|
|
#ifndef CREATIVE_ZVx
|
|
line++;
|
|
#endif
|
|
oldline=line;
|
|
while(!done)
|
|
{
|
|
line = oldline;
|
|
#ifndef CREATIVE_ZVx
|
|
button = button_get(false);
|
|
button&=~BUTTON_REPEAT;
|
|
if (button == BUTTON_POWER)
|
|
done=true;
|
|
if(button==BUTTON_RC_PLAY)
|
|
address+=0x01;
|
|
else if (button==BUTTON_RC_DOWN)
|
|
address-=0x01;
|
|
else if (button==BUTTON_RC_FF)
|
|
address+=0x800;
|
|
else if (button==BUTTON_RC_REW)
|
|
address-=0x800;
|
|
|
|
snprintf(buf, sizeof(buf), "Buffer: 0x%02x%02x%02x%02x%02x",
|
|
r_buffer[0], r_buffer[1], r_buffer[2], r_buffer[3],r_buffer[4] ); lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), "Button: 0x%08x, HWread: 0x%08x",
|
|
(unsigned int)button, r_button); lcd_puts(0, line++, buf);
|
|
#else
|
|
button = button_get(false);
|
|
if(button & BUTTON_POWER)
|
|
done = true;
|
|
else if(button & BUTTON_LEFT)
|
|
lcd_set_direct_fb(false);
|
|
else if(button & BUTTON_RIGHT)
|
|
lcd_set_direct_fb(true);
|
|
|
|
lcd_puts(0, line++, "LCD info:");
|
|
snprintf(buf, sizeof(buf), " LCD direct FB access? %s", (lcd_get_direct_fb() ? "yes" : "no"));
|
|
lcd_puts(0, line++, buf);
|
|
line++;
|
|
#endif
|
|
lcd_puts(0, line++, "[Rockbox info]");
|
|
snprintf(buf, sizeof(buf), "current tick: %08x Seconds running: %08d",
|
|
(unsigned int)current_tick, (unsigned int)current_tick/100); lcd_puts(0, line++, buf);
|
|
#ifndef CREATIVE_ZVx
|
|
snprintf(buf, sizeof(buf), "Address: 0x%08x Data: 0x%08x",
|
|
(unsigned int)address, *address); lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), "Address: 0x%08x Data: 0x%08x",
|
|
(unsigned int)(address+1), *(address+1)); lcd_puts(0, line++, buf);
|
|
snprintf(buf, sizeof(buf), "Address: 0x%08x Data: 0x%08x",
|
|
(unsigned int)(address+2), *(address+2)); lcd_puts(0, line++, buf);
|
|
#endif
|
|
|
|
lcd_update();
|
|
}
|
|
return false;
|
|
}
|