Fedora Linux Support Community & Resources Center
  #1  
Old 3rd April 2010, 01:04 PM
seaoss Offline
Registered User
 
Join Date: Nov 2009
Location: In a stable
Posts: 54
linuxfedorafirefox
Question HP screen brightness F12

I am using fedora-12 64bit (XFCE desktop) on my hp laptop (see sig)
I have the latest kernel (2.6.32.10-90.fc12.x86_64) and updates.

On boot - when the blue screen with teardrop comes up, i can see the screen is bright, as the teardrop fills the brightness drops considerably. I have looked through settings and the only thing i can find with brightness is in the desktop settings but this only affects my desktop wallpaper - not the overall brightness of the screen.

Is this connected to video drivers? I am running the nouveau driver and I get an error on boot up about a suspected broken bios and something referring to the nouveu but its so fast i can't read it. I have booted runlevel 3 to try to install the latest nvidia driver but i get a kernel issue - no nvidia.ko.

I really would like some brightness control - any ideas? (my fn+brightness keys also don't work)
__________________
HP DV7-3111ea
Intel® Core™ i5 Processor i5-430M 2.26 GHz, Level 2 cache 3 MB
4 GB DDR3 RAM
NVIDIA® GeForce® G 105M
Broadcom 43225 wireless card

Two wrongs don't make a right but 3 lefts do...
  #2  
Old 3rd April 2010, 03:55 PM
CSchwangler Offline
Registered User
 
Join Date: Feb 2009
Posts: 2,535
linuxfedorafirefox
Re: HP screen brightness F12

Is the message about the BIOS similar to these common problems?

https://fedoraproject.org/wiki/Commo...IOMMU_handling

It should not happen on x86_64, but who knows.

If that is not the problem, it would be good if you could post the complete error message.
  #3  
Old 3rd April 2010, 04:30 PM
seaoss Offline
Registered User
 
Join Date: Nov 2009
Location: In a stable
Posts: 54
linuxfedorafirefox
Re: HP screen brightness F12

I've yet to find an efficient way to find the error messages in the logs...
bios error is not the ones in the link but reads as follows
Code:
Fail in evaluating the _REG object of EC device. Broken bios is suspected.
i think the nouveau message is
Code:
nouveau 0000:01:00.0: Pointer to BIT loadval table invalid
but it flashes very quickly
__________________
HP DV7-3111ea
Intel® Core™ i5 Processor i5-430M 2.26 GHz, Level 2 cache 3 MB
4 GB DDR3 RAM
NVIDIA® GeForce® G 105M
Broadcom 43225 wireless card

Two wrongs don't make a right but 3 lefts do...

Last edited by seaoss; 3rd April 2010 at 04:40 PM.
  #4  
Old 3rd April 2010, 05:54 PM
BugRocks1's Avatar
BugRocks1 Offline
Registered User
 
Join Date: Jan 2010
Posts: 897
linuxfedorafirefox
Re: HP screen brightness F12

http://www.linuxhq.com/kernel/v2.6/32/drivers/acpi/ec.c

EC = Embeded Controller

Code:
if (ACPI_FAILURE(status)) {
+      if (status == AE_NOT_FOUND) {
+         /*
+          * Maybe OS fails in evaluating the _REG object.
+          * The AE_NOT_FOUND error will be ignored and OS
+          * continue to initialize EC.
+          */
+         printk(KERN_ERR "Fail in evaluating the _REG object"
+            " of EC device. Broken bios is suspected.\n");
+      } else {
+         acpi_remove_gpe_handler(NULL, ec->gpe,
+            &acpi_ec_gpe_handler);
+         return -ENODEV;


---------- Post added at 08:36 AM CDT ---------- Previous post was at 08:34 AM CDT ----------

http://www.opensubscriber.com/messag...m/9845549.html

---------- Post added at 08:54 AM CDT ---------- Previous post was at 08:36 AM CDT ----------

Code:
+static int parse_bit_A_tbl_entry(struct drm_device *dev, struct nvbios *bios, struct bit_entry *bitentry)
+{
+	/*
+	 * Parses the load detect values for g80 cards.
+	 *
+	 * offset + 0 (16 bits): loadval table pointer
+	 */
+
+	uint16_t load_table_ptr;
+	uint8_t version, headerlen, entrylen, num_entries;
+
+	if (bitentry->length != 3) {
+		NV_ERROR(dev, "Do not understand BIT A table\n");
+		return -EINVAL;
+	}
+
+	load_table_ptr = ROM16(bios->data[bitentry->offset]);
+
+	if (load_table_ptr == 0x0) {
+		NV_ERROR(dev, "Pointer to BIT loadval table invalid\n");
+		return -EINVAL;
+	}
For the brightness problem maybe disabling ACPI support may solve that.
  #5  
Old 4th April 2010, 02:29 AM
ozjd's Avatar
ozjd Online
Registered User
 
Join Date: Feb 2008
Location: Sydney Australia
Age: 57
Posts: 2,228
linuxsafari
Re: HP screen brightness F12

If you want to install the nvidia drivers see the nvidia thread in my signature. It is the preferred method in Fedora.
  #6  
Old 4th April 2010, 10:58 AM
seaoss Offline
Registered User
 
Join Date: Nov 2009
Location: In a stable
Posts: 54
linuxfedorafirefox
Re: HP screen brightness F12

Quote:
Originally Posted by ozjd View Post
If you want to install the nvidia drivers see the nvidia thread in my signature. It is the preferred method in Fedora.
i have looked through this thread several times and cannot find the bit for 64-bit.
I have tried several times to install proprietry drivers as the process is supposed to be easy (i have a friend with 64bit who has done it several times and i followed the exact same steps) - it just doesn't seem to want to know my system
__________________
HP DV7-3111ea
Intel® Core™ i5 Processor i5-430M 2.26 GHz, Level 2 cache 3 MB
4 GB DDR3 RAM
NVIDIA® GeForce® G 105M
Broadcom 43225 wireless card

Two wrongs don't make a right but 3 lefts do...
  #7  
Old 4th April 2010, 11:39 PM
ozjd's Avatar
ozjd Online
Registered User
 
Join Date: Feb 2008
Location: Sydney Australia
Age: 57
Posts: 2,228
linuxsafari
Re: HP screen brightness F12

The commands given will work for 64 bit, I'm on a 64 bit machine now with it installed, yum automatically selects the correct arch for you. Only those using the pae kernel need a special command.
  #8  
Old 7th April 2010, 10:17 PM
seaoss Offline
Registered User
 
Join Date: Nov 2009
Location: In a stable
Posts: 54
linuxfedorafirefox
Re: HP screen brightness F12

well duh at me! right clicked the panel and added the item that control LCD Brightness - gave me a scroll bar thing that was as low as possible... its now 2 thirds up and a good brightness -it would give me a headache on full i think!

ETA: xfce4-brightness-plugin 0.8.5 is the plugin for the panel - now to get my fn keys to work...
__________________
HP DV7-3111ea
Intel® Core™ i5 Processor i5-430M 2.26 GHz, Level 2 cache 3 MB
4 GB DDR3 RAM
NVIDIA® GeForce® G 105M
Broadcom 43225 wireless card

Two wrongs don't make a right but 3 lefts do...

Last edited by seaoss; 7th April 2010 at 10:34 PM. Reason: more details
Closed Thread

Tags
brightness, fedora12, screen

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Adjust screen brightness (laptops) dsmyth Guides & Solutions (No Questions) 0 27th February 2010 09:55 PM
About MBP screen brightness adjustment berko3000 Mac Chat 3 21st April 2009 03:13 PM
Screen brightness increases automatically in F8 amanpreet_82 Hardware & Laptops 4 13th November 2007 05:28 PM
Screen brightness SeriyVolk Hardware & Laptops 0 6th April 2007 05:00 AM
problems with screen brightness john2006 Hardware & Laptops 9 20th October 2006 03:00 AM


Current GMT-time: 22:32 (Monday, 20-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat