From: M. R. B. <mr...@us...> - 2001-03-01 10:53:31
|
Update of /cvsroot/linuxdc/linux In directory usw-pr-cvs1:/tmp/cvs-serv8847 Modified Files: ChangeLog.dc Log Message: Framebuffer and PowerVR2DC interrupt fixes Index: ChangeLog.dc =================================================================== RCS file: /cvsroot/linuxdc/linux/ChangeLog.dc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** ChangeLog.dc 2001/02/21 15:13:44 1.1 --- ChangeLog.dc 2001/03/01 10:54:52 1.2 *************** *** 1,2 **** --- 1,28 ---- + 2001-03-01 M. R. Brown <mr...@0x...> + + * arch/sh/kernel/setup_powervr2dc.c (disable_powervr2dc_irq, + enable_powervr2dc_irq, ack_powervr2dc_irq): Fixed bug where irq offset + was incorrectly calculated. + (powervr2dc_irq_demux): Made sure interrupts were being masked + according to the IMR, this fixed the problem where scanline NMIs + interfered with the VBL interrupt. + (setup_powervr2dc): Misc. cleanups. + + * drivers/char/Makefile (CONFIG_SH_DREAMCAST): Removed LinuxSH's KEYBD + definition as it conflicts with LinuxDC. + * drivers/video/Config.in: Changed LinuxSH's config macros into + LinuxDC macros: CONFIG_FB_DC -> CONFIG_FB_PVR2DC. + (CONFIG_FB_PVR2DC): Added default console color modes. + * drivers/video/Makefile: Changed LinuxSH's config macros into LinuxDC + macros; added the pvr2dcfb.o file. + * drivers/video/fbmem.c: Updated configuration from CONFIG_FB_DC to + CONFIG_FB_PVR2DC, including fb name (pvr2dc) and setup routine. + + * drivers/video/pvr2dcfb.c: New file. + + * include/asm-sh/keyboard.h (kbd_init_hw): Removed Dreamcast keyboard + initialization code, added by LinuxSH. + + 2001-02-21 M. R. Brown <mr...@0x...> |