From: <bob...@us...> - 2006-09-29 09:07:39
|
Revision: 596 http://svn.sourceforge.net/hackndev/?rev=596&view=rev Author: bobofdoom Date: 2006-09-29 02:07:33 -0700 (Fri, 29 Sep 2006) Log Message: ----------- palmld: Removed phys_ram to allow compile on 2.6.17. Modified Paths: -------------- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c Modified: linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c =================================================================== --- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2006-09-29 08:32:23 UTC (rev 595) +++ linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2006-09-29 09:07:33 UTC (rev 596) @@ -441,7 +441,6 @@ } MACHINE_START(XSCALE_PALMLD, "Palm LifeDrive") - .phys_ram = 0xa0000000, .phys_io = 0x40000000, .io_pg_offst = io_p2v(0x40000000), .boot_params = 0xa0000100, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bob...@us...> - 2006-10-01 09:23:06
|
Revision: 611 http://svn.sourceforge.net/hackndev/?rev=611&view=rev Author: bobofdoom Date: 2006-10-01 02:22:58 -0700 (Sun, 01 Oct 2006) Log Message: ----------- palmld: now using the same PXA27x keyboard driver as the HTC group. (missed includes) Modified Paths: -------------- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c Modified: linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c =================================================================== --- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2006-10-01 09:21:02 UTC (rev 610) +++ linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2006-10-01 09:22:58 UTC (rev 611) @@ -12,6 +12,7 @@ #include <linux/device.h> #include <linux/platform_device.h> #include <linux/fb.h> +#include <linux/input.h> #include <asm/mach-types.h> #include <asm/mach/arch.h> @@ -23,7 +24,7 @@ #include <asm/arch/pxafb.h> #include <asm/arch/pxa-regs.h> #include <asm/arch/palmld-gpio.h> -#include <asm/arch/pxa27x-keypad.h> +#include <asm/arch/pxa27x_keyboard.h> #include <asm/arch/pxapwm-bl.h> #include <asm/arch/pxa-pm_ll.h> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mar...@us...> - 2007-02-10 16:27:44
|
Revision: 802 http://svn.sourceforge.net/hackndev/?rev=802&view=rev Author: marex_z71 Date: 2007-02-10 08:27:40 -0800 (Sat, 10 Feb 2007) Log Message: ----------- l4p: fix LD LCD margins (so it?\194?\180s 2px:2px on left and right, not 1px:3px) Modified Paths: -------------- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c Modified: linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c =================================================================== --- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2007-02-09 23:33:53 UTC (rev 801) +++ linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2007-02-10 16:27:40 UTC (rev 802) @@ -265,10 +265,10 @@ /* fixme: these are the margins PalmOS has set, * they seem to work but could be better. */ - .left_margin = 31, - .right_margin = 3, + .left_margin = 32, + .right_margin = 1, .upper_margin = 7, //5, - .lower_margin = 8, //3, + .lower_margin = 1, //3, .sync = FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mar...@us...> - 2007-03-09 21:25:29
|
Revision: 901 http://svn.sourceforge.net/hackndev/?rev=901&view=rev Author: marex_z71 Date: 2007-03-09 13:25:11 -0800 (Fri, 09 Mar 2007) Log Message: ----------- PalmLD: Fixed backlight oops problem Modified Paths: -------------- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c Modified: linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c =================================================================== --- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2007-03-09 20:57:22 UTC (rev 900) +++ linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2007-03-09 21:25:11 UTC (rev 901) @@ -169,11 +169,11 @@ static struct pxapwmbl_platform_data palmld_backlight_data = { .pwm = 0, - .max_intensity = 0x120, - .default_intensity = 0x11a, + .max_intensity = 0xff, + .default_intensity = 0x7f, .limit_mask = 0x7f, - .prescaler = 7, - .period = 0x16c, + .prescaler = 1, + .period = 0x12c, }; static struct platform_device palmld_backlight = { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mar...@us...> - 2007-04-21 07:47:16
|
Revision: 959 http://svn.sourceforge.net/hackndev/?rev=959&view=rev Author: marex_z71 Date: 2007-04-21 00:47:13 -0700 (Sat, 21 Apr 2007) Log Message: ----------- PalmLD: prevent WM9712 constantly interrupting the CPU as on other palms Modified Paths: -------------- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c Modified: linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c =================================================================== --- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2007-04-19 18:09:06 UTC (rev 958) +++ linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2007-04-21 07:47:13 UTC (rev 959) @@ -362,6 +362,18 @@ static void __init palmld_init(void) { + // disable interrupt to prevent WM9712 constantly interrupting the CPU + // and preventing the boot process to complete (Thanx Alex & Shadowmite!) + + GCR &= ~GCR_PRIRDY_IEN; + + // set AC97's GPIOs + + pxa_gpio_mode(GPIO28_BITCLK_AC97_MD); + pxa_gpio_mode(GPIO29_SDATA_IN_AC97_MD); + pxa_gpio_mode(GPIO30_SDATA_OUT_AC97_MD); + pxa_gpio_mode(GPIO31_SYNC_AC97_MD); + set_pxa_fb_info( &palmld_lcd_screen ); pxa_set_mci_info( &palmld_mci_platform_data ); platform_add_devices( devices, ARRAY_SIZE(devices) ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |