1. 05 9月, 2005 4 次提交
  2. 24 8月, 2005 1 次提交
  3. 19 8月, 2005 1 次提交
  4. 16 8月, 2005 2 次提交
    • A
      [PATCH] intelfb/fbdev: Save info->flags in a local variable · 3edea483
      Antonino A. Daplas 提交于
      Reported by: Pavel Kysilka (Bugzilla Bug 5059)
      
      The intelfb driver does not keep resolution set with fbset after
      switching to anot console and back.
      
      Steps to reproduce:
      
        initial options: tty1,tty2 - 1024x768-60
        1) tty1 - fbset after booting (1024x768-60)
        2) tty1 - fbset 800x600-100
        tty1: 800x600-100
        3) swith to tty2, swith to tty1
        tty1: 1024x768-60 (the same resolution as default from kernel booting)
      
      This bug is caused by intelfb unintentionally destroying info->flags in
      set_par(). Therefore the flag, FBINFO_MISC_USEREVENT used to notify
      fbcon of a mode change was cleared causing the above problem. This bug
      though is not intelfb specific, as other drivers may also be affected.
      
      The fix is to save info->flags in a local variable before calling any
      of the driver hooks.  A more definitive fix (for post 2.6.13) is to
      separate info->flags into one that is set by the driver and another that
      is set by core fbdev/fbcon.
      Signed-off-by: NAntonino Daplas <adaplas@pol.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      3edea483
    • S
      [PATCH] intelfb: Do not ioremap entire graphics aperture · 6bd49341
      Sylvain Meyer 提交于
      Reported by: Pavel Kysilka (Bugzilla Bug 4738)
      
      modprobe of intelfb results in the following error message:
      
      	intelfb: Framebuffer driver for Intel(R) 830M/845G/852GM/855GM/865G/915G chi
      	intelfb: Version 0.9.2
      	ACPI: PCI Interrupt 0000:00:02.0[A] -> GSI 16 (level, low) -> IRQ 16
      	allocation failed: out of vmalloc space - use vmalloc=<size> to increase siz
      	intelfb: Cannot remap FB region.
      
      This will fail if the graphics aperture size is greater than 128 MB.
      
      Fix is to ioremap only from the beginning of graphics aperture to the
      end of the used framebuffer memory.
      Signed-off-by: NSylvain Meyer <sylvain.meyer@worldonline.fr>
      Signed-off-by: NAntonino Daplas <adaplas@pol.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      6bd49341
  5. 10 8月, 2005 1 次提交
  6. 09 8月, 2005 1 次提交
    • A
      [PATCH] nvidiafb: Fix initial display corruption on certain laptops · db6778db
      Antonino Daplas 提交于
      Reported by:Vincent Fortier (Bugzilla Bug 4768)
      
      "At boot time the screen appears moved to the mid right portion of the actual
      video pannel making the end of the line appears at the left edge...  It simply
      looks like moved half way to the right"
      
      His particular hardware has a display with an unusual dimension (1920x1200) but
      unfortunately has no EDID block. None of the entries in the global mode
      database is correct for this particular display, and it particularly has
      difficulty scaling up 640x480 (the default startup mode of nvidiafb) to
      1920x1200 which causes the above described problem.
      
      1, Add 1920x1200 to the global mode database.
      
      2. Let nvidiafb base the startup mode from the flatpanel dimensions only if the
        EDID block is absent, no boot mode parameter is specified by the user, and
        a flatpanel/LCD display is attached.
      Signed-off-by: NAntonino Daplas <adaplas@pol.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      db6778db
  7. 07 8月, 2005 1 次提交
  8. 02 8月, 2005 2 次提交
    • A
      [PATCH] tridentfb: Fix scrolling artifacts during disk IO · 8d894c47
      Antonino A. Daplas 提交于
      Reported by: Jochen Hein (Bugzilla Bug 4312)
      
      When there is disk I/O happening, the framebuffer has a little snow on
      the screen.  Once I/O has finished, no garbage remains on screen.
      
      This bug was explained by: Knut Petersen
      
      Most important is CRTC register 2f, signal quality is also improved for
      higher vclk values by changing set_vclk() according to the X drivers and
      cyblafb.c
      
      The fix is to set the performance register (0x2f) with a more stable
      value.
      Signed-off-by: NAntonino Daplas <adaplas@pol.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      8d894c47
    • A
      [PATCH] tridentfb: Fix scrolling artifacts if acceleration is enabled · 8dad46cf
      Antonino A. Daplas 提交于
      Reported by: Jochen Hein (Bugzilla Bug 4386)
      
      booting leaves the end of long lines in the last line on screen when
      scrolling.  When X is running, scrolling puts garbage on the screen
      (looks like X data) Console switch fixes the screen.  Behaviour seems to
      be identical with noaccel and without on the video=tridentfb parameter
      in lilo.conf.
      
      This bug was explained by: Knut_Petersen
      
      Acceleration is broken for all BLADE 3D chips for all versions of kernel
      2.6 except for 32bit modes.  Most important reason is that the u32 col
      parameter of the graphics engine needs the color value replicated to all
      u8 of the u32 (8bit modes) and to both u16 of the u32.
      
      Fix color value passed to graphics engine, verified by the reporter.
      Signed-off-by: NAntonino Daplas <adaplas@pol.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      8dad46cf
  9. 01 8月, 2005 1 次提交
  10. 30 7月, 2005 2 次提交
  11. 29 7月, 2005 1 次提交
  12. 28 7月, 2005 9 次提交
  13. 18 7月, 2005 1 次提交
  14. 08 7月, 2005 3 次提交
  15. 07 7月, 2005 1 次提交
  16. 30 6月, 2005 1 次提交
  17. 28 6月, 2005 1 次提交
  18. 26 6月, 2005 5 次提交
  19. 24 6月, 2005 1 次提交
  20. 22 6月, 2005 1 次提交
    • J
      [PATCH] I2C: Kill address ranges in non-sensors i2c chip drivers · b3d5496e
      Jean Delvare 提交于
      Some months ago, you killed the address ranges mechanism from all
      sensors i2c chip drivers (both the module parameters and the in-code
      address lists). I think it was a very good move, as the ranges can
      easily be replaced by individual addresses, and this allowed for
      significant cleanups in the i2c core (let alone the impressive size
      shrink for all these drivers).
      
      Unfortunately you did not do the same for non-sensors i2c chip drivers.
      These need the address ranges even less, so we could get rid of the
      ranges here as well for another significant i2c core cleanup. Here comes
      a patch which does just that. Since the process is exactly the same as
      what you did for the other drivers set already, I did not split this one
      in parts.
      
      A documentation update is included.
      
      The change saves 308 bytes in the i2c core, and an average 1382 bytes
      for chip drivers which use I2C_CLIENT_INSMOD, 126 bytes for those which
      do not.
      
      This change is required if we want to merge the sensors and non-sensors
      i2c code (and we want to do this).
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      
      Index: gregkh-2.6/Documentation/i2c/writing-clients
      ===================================================================
      b3d5496e