/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * $Id$ * * Copyright (C) 2006 by Linus Nielsen Feltzing * * All files in this archive are subject to the GNU General Public License. * See the file COPYING in the source tree root for full license agreement. * * 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 #include "kernel.h" #include "system.h" #include "hwcompat.h" #include "logf.h" #include "debug.h" #include "string.h" #include "generic_i2c.h" void pcf50606_sda_output(void) { or_l( 0x00001000, &GPIO1_ENABLE); } void pcf50606_sda_input(void) { and_l(~0x00001000, &GPIO1_ENABLE); } void pcf50606_sda_lo(void) { and_l(~0x00001000, &GPIO1_OUT); } void pcf50606_sda_hi(void) { or_l( 0x00001000, &GPIO1_OUT); } int pcf50606_sda(void) { return 0x00001000 & GPIO1_READ; } void pcf50606_scl_output(void) { or_l( 0x00000400, &GPIO_ENABLE); } void pcf50606_scl_input(void) { and_l(~0x00000400, &GPIO_ENABLE); } int pcf50606_scl(void) { return 0x00000400 & GPIO_READ; } void pcf50606_scl_lo(void) { and_l(~0x00000400, &GPIO_OUT); } void pcf50606_scl_hi(void) { pcf50606_scl_input(); while(!pcf50606_scl()) { } or_l(0x0400, &GPIO_OUT); pcf50606_scl_output(); } void pcf50606_delay(void) { do { int _x; for(_x=0;_x<32;_x++);} while(0); } struct i2c_interface pcf50606_i2c = { 0x10, /* Address */ /* Bit-banged interface definitions */ pcf50606_scl_hi, /* Drive SCL high, might sleep on clk stretch */ pcf50606_scl_lo, /* Drive SCL low */ pcf50606_sda_hi, /* Drive SDA high */ pcf50606_sda_lo, /* Drive SDA low */ pcf50606_sda_input, /* Set SDA as input */ pcf50606_sda_output, /* Set SDA as output */ pcf50606_scl_input, /* Set SCL as input */ pcf50606_scl_output, /* Set SCL as output */ pcf50606_scl, /* Read SCL, returns 0 or nonzero */ pcf50606_sda, /* Read SDA, returns 0 or nonzero */ pcf50606_delay, /* START SDA hold time (tHD:SDA) */ pcf50606_delay, /* SDA hold time (tHD:DAT) */ pcf50606_delay, /* SDA setup time (tSU:DAT) */ pcf50606_delay, /* STOP setup time (tSU:STO) */ pcf50606_delay, /* Rep. START setup time (tSU:STA) */ pcf50606_delay, /* SCL high period (tHIGH) */ }; int pcf50606_read_multiple(int address, unsigned char* buf, int count) { return i2c_read_data(0x10, address, buf, count); } int pcf50606_read(int address) { int ret; unsigned char c; ret = pcf50606_read_multiple(address, &c, 1); if(ret >= 0) return c; else return ret; } int pcf50606_write_multiple(int address, const unsigned char* buf, int count) { return i2c_write_data(0x10, address, buf, count); } int pcf50606_write(int address, unsigned char val) { return pcf50606_write_multiple(address, &val, 1); } /* These voltages were determined by measuring the output of the PCF50606 on a running X5, and verified by disassembling the original firmware */ static void set_voltages(void) { static const unsigned char buf[5] = { 0xf4, /* IOREGC = 2.9V, ON in all states */ 0xf0, /* D1REGC = 2.5V, ON in all states */ 0xf6, /* D2REGC = 3.1V, ON in all states */ 0xf4, /* D3REGC = 2.9V, ON in all states */ }; pcf50606_write_multiple(0x23, buf, 4); } void pcf50606_init(void) { unsigned char read[3]; /* Bit banged I2C */ or_l(0x00001000, &GPIO1_OUT); or_l(0x00000400, &GPIO_OUT); or_l(0x00001000, &GPIO1_ENABLE); or_l(0x00000400, &GPIO_ENABLE); or_l(0x00001000, &GPIO1_FUNCTION); or_l(0x00000400, &GPIO_FUNCTION); i2c_add_node(&pcf50606_i2c); /* make sure GPI0 interrupt is off before unmasking anything */ and_l(~0xF, &INTPRI5); /* INT32 - Priority 0 (Off) */ /* unmask ONKEY1S - ONKEY held low for 1 second */ pcf50606_write(0x05, ~0x04); /* clear INT1-3 as these are left set after standby */ pcf50606_read_multiple(0x02, read, 3); /* Set to read pcf50606 INT but keep GPI0 off until init completes */ and_l(~0x00000001, &GPIO_ENABLE); or_l(0x00000001, &GPIO_FUNCTION); or_l(0x00000100, &GPIO_INT_EN); /* GPI0 H-L */ set_voltages(); pcf50606_write(0x39, 0x00); /* GPOOD0 = green led OFF */ pcf50606_write(0x3a, 0x00); /* GPOOD1 = red led OFF */ /* D305A datasheet says PWM clock frequency should be 400Hz - 2000Hz so * I changed it from 7kHz to 512Hz. The lower frequency looks the same. * GPO1 is also inverted so that display brightness increases with PWM * cycle. */ pcf50606_write(0x35, 0x11); /* Backlight PWM = 512Hz, 8/16, Active */ #ifdef BOOTLOADER /* Backlight starts OFF in bootloader */ pcf50606_write(0x38, 0x80); /* Backlight OFF, GPO1INV=1, GPO1ACT=011 */ #else /* Keep backlight on when changing to firmware */ pcf50606_write(0x38, 0xb0); /* Backlight ON, GPO1INV=1, GPO1ACT=011 */ #endif /* allow GPI0 interrupts from PMU now */ or_l(0x6, &INTPRI5); /* INT32 - Priority 6 */ } /* Handles interrupts generated by the pcf50606 */ void GPI0(void) __attribute__ ((interrupt_handler, section(".text"))); void GPI0(void) { char read[3]; /* 0 = INT1, 1 = INT2, 2 = INT3 */ /* Clear pending interrupts from pcf50606 - reading all INT* registers resets the INT pin to high */ pcf50606_read_multiple(0x02, read, 3); if (read[0] & 0x04) { /** ONKEY1S **/ /* reset timeout or else pcf50606 will go into standby in 8s */ pcf50606_write(0x08, pcf50606_read(0x08) | 0x02); /* OOCC1 - TOTRST=1 */ } /* Clear pending GPI0 interrupts */ or_l(0x00000100, &GPIO_INT_CLEAR); }