1
0
Fork 0
forked from len0rd/rockbox

FS#9591 by Anton Veretenenko for the Philips GoGear HDD1620/1630 (with a few changes by me). Fixes boot problem, pixel format, sound, and a few other things.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19395 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Mark Arigo 2008-12-12 04:56:25 +00:00
parent ea5d0bd7ec
commit 08585e417b
9 changed files with 88 additions and 27 deletions

View file

@ -435,6 +435,7 @@ Stéphane Quertinmont
Bartosz Fabianowski
Adam Hogan
Andrew Mahone
Anton Veretenenko
The libmad team

View file

@ -1,12 +1,12 @@
/*
* This config file is for the Philips GoGear HDD1630
* This config file is for the Philips GoGear HDD16x0/HDD63x0
*/
#define TARGET_TREE /* this target is using the target tree system */
/* For Rolo and boot loader */
#define MODEL_NUMBER 31
#define MODEL_NAME "Philips GoGear HDD1630"
#define MODEL_NAME "Philips GoGear HDD16x0"
/* define this if you use an ATA controller */
#define CONFIG_STORAGE STORAGE_ATA
@ -48,7 +48,7 @@
#define LCD_WIDTH 128
#define LCD_HEIGHT 128
#define LCD_DEPTH 16 /* 65536 colours */
#define LCD_PIXELFORMAT RGB565SWAPPED /* rgb565 byte-swapped */
#define LCD_PIXELFORMAT RGB565 /* rgb565 byte-swapped */
#ifndef BOOTLOADER
/* Define this if your LCD can be enabled/disabled */
@ -95,7 +95,7 @@
/* WM8731 has no tone controls, so we use the software ones */
#define HAVE_SW_TONE_CONTROLS
#define AB_REPEAT_ENABLE 1
/* TODO: #define AB_REPEAT_ENABLE 1 */
/* FM Tuner */
/* #define CONFIG_TUNER TEA5767 */
@ -117,8 +117,6 @@
/* define this if you have a light associated with the buttons */
/* #define HAVE_BUTTON_LIGHT */
#define AB_REPEAT_ENABLE 1
#define BATTERY_CAPACITY_DEFAULT 1550 /* default battery capacity */
#define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
#define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */
@ -162,7 +160,7 @@
#define DEFAULT_CONTRAST_SETTING 14 /* Match boot contrast */
/* We're able to shut off power to the HDD */
/* #define HAVE_ATA_POWER_OFF */
#define HAVE_ATA_POWER_OFF
/* Offset ( in the firmware file's header ) to the file CRC and data. These are
only used when loading the old format rockbox.e200 file */

View file

@ -83,6 +83,7 @@ static void adc_tick(void)
/* Figured out from how the OF does things */
void adc_init(void)
{
ADC_INIT |= 1;
ADC_INIT |= 0x40000000;
udelay(100);
@ -121,7 +122,8 @@ void adc_init(void)
ADC_ADDR |= 0x2000000;
ADC_STATUS |= 0x2000;
#if defined (IRIVER_H10) || defined(IRIVER_H10_5GB) || defined(MROBE_100)
#if defined (IRIVER_H10) || defined(IRIVER_H10_5GB) || \
defined(MROBE_100) || defined(PHILIPS_HDD1630)
/* Enable channel 2 (H10:remote) */
DEV_INIT1 &=~0x300;
DEV_INIT1 |= 0x100;

View file

@ -34,10 +34,14 @@ void _backlight_set_brightness(int brightness)
void _backlight_on(void)
{
GPO32_VAL &= ~0x1000000;
GPO32_ENABLE &= ~0x1000000;
}
void _backlight_off(void)
{
GPO32_VAL |= 0x1000000;
GPO32_ENABLE |= 0x1000000;
}
#ifdef HAVE_BUTTON_LIGHT

View file

@ -23,6 +23,21 @@
#include "button.h"
#include "backlight.h"
/* Remember last buttons, to make single buzz sound */
int btn_old;
/*
* Generate a click sound from the player (not in headphones yet)
* TODO: integrate this with the "key click" option
*/
void button_click(void)
{
GPO32_ENABLE |= 0x2000;
GPIOD_OUTPUT_VAL |= 0x8;
udelay(1000);
GPO32_VAL &= ~0x2000;
}
void button_init_device(void)
{
/* TODO...for now, hardware initialisation is done by the bootloader */
@ -49,19 +64,33 @@ int button_read_device(void)
/* device buttons */
if (!hold_button)
{
/* These are the correct button definitions
if (!(GPIOA_INPUT_VAL & 0x01)) btn |= BUTTON_MENU;
if (!(GPIOA_INPUT_VAL & 0x02)) btn |= BUTTON_VOL_UP;
if (!(GPIOA_INPUT_VAL & 0x04)) btn |= BUTTON_VOL_DOWN;
if (!(GPIOA_INPUT_VAL & 0x08)) btn |= BUTTON_VIEW;
if (!(GPIOD_INPUT_VAL & 0x20)) btn |= BUTTON_PLAYLIST;
if (!(GPIOD_INPUT_VAL & 0x40)) btn |= BUTTON_POWER;
*/
/* This is a hack until the touchpad works */
if (!(GPIOA_INPUT_VAL & 0x01)) btn |= BUTTON_LEFT; /* BUTTON_MENU */
if (!(GPIOA_INPUT_VAL & 0x02)) btn |= BUTTON_UP; /* BUTTON_VOL_UP */
if (!(GPIOA_INPUT_VAL & 0x04)) btn |= BUTTON_DOWN; /* BUTTON_VOL_DOWN */
if (!(GPIOA_INPUT_VAL & 0x08)) btn |= BUTTON_RIGHT; /* BUTTON_VIEW */
if (!(GPIOD_INPUT_VAL & 0x20)) btn |= BUTTON_SELECT; /* BUTTON_PLAYLIST */
if (!(GPIOD_INPUT_VAL & 0x40)) btn |= BUTTON_POWER;
}
if ((btn != btn_old) && (btn != BUTTON_NONE))
button_click();
btn_old = btn;
return btn;
}
bool headphones_inserted(void)
{
return true;
return (GPIOE_INPUT_VAL & 0x80) ? true : false;
}

View file

@ -84,6 +84,7 @@ void lcd_init_device(void)
LCD2_BLOCK_CTRL = 0x10008080;
LCD2_BLOCK_CONFIG = 0xF00000;
/* lcd power */
GPIOJ_ENABLE |= 0x4;
GPIOJ_OUTPUT_VAL |= 0x4;
GPIOJ_OUTPUT_EN |= 0x4;

View file

@ -35,11 +35,30 @@ bool charger_enabled;
void power_init(void)
{
/* power off bit */
GPIOB_ENABLE |= 0x80;
GPIOB_OUTPUT_VAL |= 0x80;
GPIOB_OUTPUT_EN |= 0x80;
/* charger inserted bit */
GPIOE_ENABLE |= 0x20;
GPIOE_INPUT_VAL |= 0x20;
}
unsigned int power_input_status(void)
{
return POWER_INPUT_NONE;
unsigned int status = POWER_INPUT_NONE;
/* AC charger */
if (GPIOE_INPUT_VAL & 0x20)
status |= POWER_INPUT_MAIN_CHARGER;
/* Do nothing with USB for now
if (GPIOE_INPUT_VAL & 0x4)
status |= POWER_INPUT_USB_CHARGER;
*/
return status;
}
void ide_power_enable(bool on)
@ -57,4 +76,8 @@ bool ide_powered(void)
void power_off(void)
{
/* power off bit */
GPIOB_ENABLE |= 0x80;
GPIOB_OUTPUT_VAL &= ~0x80;
GPIOB_OUTPUT_EN |= 0x80;
}

View file

@ -60,5 +60,7 @@ const unsigned short percent_to_volt_charge[11] =
/* Returns battery voltage from ADC [millivolts] */
unsigned int battery_adc_voltage(void)
{
return (adc_read(ADC_UNREG_POWER) * BATTERY_SCALE_FACTOR) >> 10;
/* For now, assume as battery full (we need to calibrate) */
/* return (adc_read(ADC_UNREG_POWER) * BATTERY_SCALE_FACTOR) >> 10; */
return 3990;
}

View file

@ -32,7 +32,8 @@
#include "i2s.h"
#include "wmcodec.h"
#if defined(IRIVER_H10) || defined(IRIVER_H10_5GB) || defined(MROBE_100)
#if defined(IRIVER_H10) || defined(IRIVER_H10_5GB) || \
defined(MROBE_100) || defined(PHILIPS_HDD1630)
/* The H10's audio codec uses an I2C address of 0x1b */
#define I2C_AUDIO_ADDRESS 0x1b
#else