search for: radeonfb

Displaying 17 results from an estimated 17 matches for "radeonfb".

Did you mean: radeon_fb
2006 Aug 21
0
Problems: xen with 4 processors!
Hi! I`m trying to boot dom0 with 4 processor activated. I used the option "dom0_max_vcpus=4" in my elilo.conf My 4 processors was loaded correctly, BUT the dom0 "hangs/crash" in radeonfb (I don`t understand...): ps: if I don`t set "dom0_max_vcpus=4" my dom0 loads perfect (but just with 1 processor) . . . radeonfb (0000:01:05.0): Mapped 1638k videoram radeonfb: found intel x86 BIOS ROM Image (it hangs here!) Thanks!!! _______________________________________________ X...
2007 Jun 16
1
4 GB USB flash disk with FAT ok, with ext3 corrupted files
I recently bought 2 different USB flash disks. These are some cheap no-name devices. Their parameters: bytes C/H/S ID 4194304512 509/255/63 Vendor: Generic Model: USB Flash Drive Rev: 1.00 ANSI SCSI revision: 02 4288676352 1023/132/62 Vendor: USB Model: USB 2.0 Rev: 1.00 ANSI SCSI revision: 02 When I put a FAT32 filesystem on them,
2006 Sep 07
1
Radeon 9000 breaks with CentOS 4.4
Dell Inspiron 600M w/ Radeon 9000 card. This worked with CentOS 4.3, also works with Knoppix 4.0.2. Graphical installation succeeds, but upon reboot, and all subsequent rebbots, graphical mode does not work, the screen becomes black. In addition to the 2.6.9-42 kernel, we have also tried the 2.6.9-42.0.2 kernel. Same problem exists on both kernel. Running system-config-display --reconfig
2020 Oct 28
0
[PATCH] fbcon: Disable accelerated scrolling
...-------------------------------------- 1 file changed, 4 insertions(+), 296 deletions(-) drivers/video/fbdev/aty/radeon_accel.c | 174 --------------------------------- drivers/video/fbdev/aty/radeon_base.c | 43 ++------ drivers/video/fbdev/aty/radeon_pm.c | 7 -- drivers/video/fbdev/aty/radeonfb.h | 3 - 4 files changed, 7 insertions(+), 220 deletions(-) This may open up the discussion if the right course of action would be to drop the drivers in favour of drm counterparts - but thats another story. Sam > @@ -1961,7 +1963,6 @@ static void updatescrollmode(struct fbcon_display...
2010 Nov 03
5
wow.exe Wont Run in Wine 1.2.1
...y 0, IRQ 42 Memory at d0000000 (32-bit, prefetchable) [size=128M] I/O ports at de00 [size=256] Memory at dfdf0000 (32-bit, non-prefetchable) [size=64K] [virtual] Expansion ROM at dfd00000 [disabled] [size=128K] Capabilities: <access denied> Kernel driver in use: radeon Kernel modules: radeon, radeonfb 02:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5751 Gigabit Ethernet PCI Express (rev 01) Subsystem: Dell Latitude D610 Flags: bus master, fast devsel, latency 0, IRQ 16 Memory at dfcf0000 (64-bit, non-prefetchable) [size=64K] Expansion ROM at <ignored> [disabled] Capabilitie...
2020 Oct 28
8
[PATCH] fbcon: Disable accelerated scrolling
So ever since syzbot discovered fbcon, we have solid proof that it's full of bugs. And often the solution is to just delete code and remove features, e.g. 50145474f6ef ("fbcon: remove soft scrollback code"). Now the problem is that most modern-ish drivers really only treat fbcon as an dumb kernel console until userspace takes over, and Oops printer for some emergencies. Looking at
2017 Feb 28
2
[PATCH 0/2] gpu: drm: Use pr_cont and neaten logging
Joe Perches (2): drm: Use pr_cont where appropriate gpu: drm: Convert printk(KERN_<LEVEL> to pr_<level> drivers/gpu/drm/amd/amdgpu/amdgpu.h | 3 +- drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c | 4 +- drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.c | 4 +- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 4 +-
2017 Feb 28
0
[PATCH 2/2] gpu: drm: Convert printk(KERN_<LEVEL> to pr_<level>
...644 --- a/drivers/gpu/drm/radeon/radeon_clocks.c +++ b/drivers/gpu/drm/radeon/radeon_clocks.c @@ -111,7 +111,7 @@ static bool radeon_read_clocks_OF(struct drm_device *dev) return false; val = of_get_property(dp, "ATY,RefCLK", NULL); if (!val || !*val) { - printk(KERN_WARNING "radeonfb: No ATY,RefCLK property !\n"); + pr_warn("radeonfb: No ATY,RefCLK property !\n"); return false; } p1pll->reference_freq = p2pll->reference_freq = (*val) / 10; diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c index 4b0c388be3f5...
2011 Jan 20
1
[PATCH] change acquire/release_console_sem() to console_lock/unlock()
...; - release_console_sem(); + console_unlock(); pdev->dev.power.power_state = PMSG_ON; diff --git a/drivers/video/aty/radeon_pm.c b/drivers/video/aty/radeon_pm.c index c4e1764..92bda58 100644 --- a/drivers/video/aty/radeon_pm.c +++ b/drivers/video/aty/radeon_pm.c @@ -2626,7 +2626,7 @@ int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) goto done; } - acquire_console_sem(); + console_lock(); fb_set_suspend(info, 1); @@ -2690,7 +2690,7 @@ int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) if (rinfo->pm_mode & radeon_pm_d2) radeon_set_suspen...
2011 Jan 20
1
[PATCH] change acquire/release_console_sem() to console_lock/unlock()
...; - release_console_sem(); + console_unlock(); pdev->dev.power.power_state = PMSG_ON; diff --git a/drivers/video/aty/radeon_pm.c b/drivers/video/aty/radeon_pm.c index c4e1764..92bda58 100644 --- a/drivers/video/aty/radeon_pm.c +++ b/drivers/video/aty/radeon_pm.c @@ -2626,7 +2626,7 @@ int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) goto done; } - acquire_console_sem(); + console_lock(); fb_set_suspend(info, 1); @@ -2690,7 +2690,7 @@ int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) if (rinfo->pm_mode & radeon_pm_d2) radeon_set_suspen...
2011 Jan 20
1
[PATCH] change acquire/release_console_sem() to console_lock/unlock()
...; - release_console_sem(); + console_unlock(); pdev->dev.power.power_state = PMSG_ON; diff --git a/drivers/video/aty/radeon_pm.c b/drivers/video/aty/radeon_pm.c index c4e1764..92bda58 100644 --- a/drivers/video/aty/radeon_pm.c +++ b/drivers/video/aty/radeon_pm.c @@ -2626,7 +2626,7 @@ int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) goto done; } - acquire_console_sem(); + console_lock(); fb_set_suspend(info, 1); @@ -2690,7 +2690,7 @@ int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) if (rinfo->pm_mode & radeon_pm_d2) radeon_set_suspen...
2016 Aug 04
2
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...diff --git a/drivers/video/fbdev/aty/radeon_backlight.c b/drivers/video/fbdev/aty/radeon_backlight.c >> index 301d6d6aeead..a8c9ef618e42 100644 >> --- a/drivers/video/fbdev/aty/radeon_backlight.c >> +++ b/drivers/video/fbdev/aty/radeon_backlight.c >> @@ -155,7 +155,8 @@ void radeonfb_bl_init(struct radeonfb_info *rinfo) >> props.type = BACKLIGHT_RAW; >> props.max_brightness = FB_BACKLIGHT_LEVELS - 1; >> bd = backlight_device_register(name, rinfo->info->dev, pdata, >> - &radeon_bl_data, &props); >> + &rade...
2016 Jul 12
0
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...\n"); > diff --git a/drivers/video/fbdev/aty/radeon_backlight.c b/drivers/video/fbdev/aty/radeon_backlight.c > index 301d6d6aeead..a8c9ef618e42 100644 > --- a/drivers/video/fbdev/aty/radeon_backlight.c > +++ b/drivers/video/fbdev/aty/radeon_backlight.c > @@ -155,7 +155,8 @@ void radeonfb_bl_init(struct radeonfb_info *rinfo) > props.type = BACKLIGHT_RAW; > props.max_brightness = FB_BACKLIGHT_LEVELS - 1; > bd = backlight_device_register(name, rinfo->info->dev, pdata, > - &radeon_bl_data, &props); > + &radeon_bl_data, &pro...
2016 Jun 30
6
[PATCH] backlight: Avoid double fbcon backlight handling
...light registration failed\n"); diff --git a/drivers/video/fbdev/aty/radeon_backlight.c b/drivers/video/fbdev/aty/radeon_backlight.c index 301d6d6aeead..a8c9ef618e42 100644 --- a/drivers/video/fbdev/aty/radeon_backlight.c +++ b/drivers/video/fbdev/aty/radeon_backlight.c @@ -155,7 +155,8 @@ void radeonfb_bl_init(struct radeonfb_info *rinfo) props.type = BACKLIGHT_RAW; props.max_brightness = FB_BACKLIGHT_LEVELS - 1; bd = backlight_device_register(name, rinfo->info->dev, pdata, - &radeon_bl_data, &props); + &radeon_bl_data, &props, + BACKLIGHT...
2016 Aug 04
1
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
.../video/fbdev/aty/radeon_backlight.c b/drivers/video/fbdev/aty/radeon_backlight.c > >> index 301d6d6aeead..a8c9ef618e42 100644 > >> --- a/drivers/video/fbdev/aty/radeon_backlight.c > >> +++ b/drivers/video/fbdev/aty/radeon_backlight.c > >> @@ -155,7 +155,8 @@ void radeonfb_bl_init(struct radeonfb_info *rinfo) > >> props.type = BACKLIGHT_RAW; > >> props.max_brightness = FB_BACKLIGHT_LEVELS - 1; > >> bd = backlight_device_register(name, rinfo->info->dev, pdata, > >> - &radeon_bl_data, &props); > >&...
2017 Feb 28
8
[PATCH 2/2] gpu: drm: Convert printk(KERN_<LEVEL> to pr_<level>
...on/radeon_clocks.c > +++ b/drivers/gpu/drm/radeon/radeon_clocks.c > @@ -111,7 +111,7 @@ static bool radeon_read_clocks_OF(struct drm_device *dev) > return false; > val = of_get_property(dp, "ATY,RefCLK", NULL); > if (!val || !*val) { > - printk(KERN_WARNING "radeonfb: No ATY,RefCLK property !\n"); > + pr_warn("radeonfb: No ATY,RefCLK property !\n"); > return false; > } > p1pll->reference_freq = p2pll->reference_freq = (*val) / 10; > diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_de...
2008 Dec 22
56
[git patches] Ocfs2 patches for merge window, batch 2/3
Hi, This is the second batch of Ocfs2 patches intended for the merge window. The 1st batch were sent out previously: http://lkml.org/lkml/2008/12/19/280 The bulk of this set is comprised of Jan Kara's patches to add quota support to Ocfs2. Many of the quota patches are to generic code, which I carried to make merging of the Ocfs2 support easier. All of the non-ocfs2 patches should have