author | mickeyl <mickeyl> | 2005-01-01 19:33:30 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-01-01 19:33:30 (UTC) |
commit | 5f310dcd91f574c1b34ca99c157c0b93e6ae1e16 (patch) (unidiff) | |
tree | 50157690d75a8f925385a8ef5964b52e22d922ad | |
parent | a62cf9bfb9814a6f5ce5aa8d59fbe5b0cfb8414a (diff) | |
download | opie-5f310dcd91f574c1b34ca99c157c0b93e6ae1e16.zip opie-5f310dcd91f574c1b34ca99c157c0b93e6ae1e16.tar.gz opie-5f310dcd91f574c1b34ca99c157c0b93e6ae1e16.tar.bz2 |
rewrite backlight stuff
-rw-r--r-- | libopie2/opiecore/device/odevice_zaurus.cpp | 92 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice_zaurus.h | 20 |
2 files changed, 45 insertions, 67 deletions
diff --git a/libopie2/opiecore/device/odevice_zaurus.cpp b/libopie2/opiecore/device/odevice_zaurus.cpp index 1894e15..e75e777 100644 --- a/libopie2/opiecore/device/odevice_zaurus.cpp +++ b/libopie2/opiecore/device/odevice_zaurus.cpp | |||
@@ -399,108 +399,88 @@ bool Zaurus::setSoftSuspend ( bool soft ) | |||
399 | ::close ( fd ); | 399 | ::close ( fd ); |
400 | } | 400 | } |
401 | else | 401 | else |
402 | perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); | 402 | perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); |
403 | 403 | ||
404 | return res; | 404 | return res; |
405 | } | 405 | } |
406 | 406 | ||
407 | bool Zaurus::setDisplayBrightness( int bright ) | 407 | bool Zaurus::setDisplayBrightness( int bright ) |
408 | { | 408 | { |
409 | //qDebug( "Zaurus::setDisplayBrightness( %d )", bright ); | 409 | //qDebug( "Zaurus::setDisplayBrightness( %d )", bright ); |
410 | bool res = false; | 410 | bool res = false; |
411 | int fd; | ||
412 | 411 | ||
413 | if ( bright > 255 ) bright = 255; | 412 | if ( bright > 255 ) bright = 255; |
414 | if ( bright < 0 ) bright = 0; | 413 | if ( bright < 0 ) bright = 0; |
415 | 414 | ||
416 | if ( m_embedix ) | 415 | if ( m_embedix ) |
417 | { | 416 | { |
418 | if ( d->m_model == Model_Zaurus_SLC7x0 ) | 417 | int numberOfSteps = displayBrightnessResolution(); |
419 | { | 418 | int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK ); |
420 | //qDebug( "using special treatment for devices with the corgi backlight interface" ); | 419 | if ( fd ) |
421 | // special treatment for devices with the corgi backlight interface | ||
422 | if (( fd = ::open ( "/proc/driver/fl/corgi-bl", O_WRONLY )) >= 0 ) | ||
423 | { | ||
424 | int value = ( bright == 1 ) ? 1 : static_cast<int>( bright * ( 17.0 / 255.0 ) ); | ||
425 | char writeCommand[100]; | ||
426 | const int count = sprintf( writeCommand, "%x\n", value ); | ||
427 | res = ( ::write ( fd, writeCommand, count ) != -1 ); | ||
428 | ::close ( fd ); | ||
429 | } | ||
430 | return res; | ||
431 | } | ||
432 | else | ||
433 | if ( d->m_model == Model_Zaurus_SL6000 ) | ||
434 | { | ||
435 | //qDebug( "using special treatment for devices with the tosa backlight interface" ); | ||
436 | // special treatment for devices with the tosa backlight interface | ||
437 | if (( fd = ::open ( "/proc/driver/fl/tosa-bl", O_WRONLY )) >= 0 ) | ||
438 | { | ||
439 | int value = ( bright == 1 ) ? 1 : static_cast<int>( bright * ( 17.0 / 255.0 ) ); | ||
440 | char writeCommand[100]; | ||
441 | const int count = sprintf( writeCommand, "%x\n", value ); | ||
442 | res = ( ::write ( fd, writeCommand, count ) != -1 ); | ||
443 | ::close ( fd ); | ||
444 | } | ||
445 | return res; | ||
446 | } | ||
447 | else | ||
448 | { | 420 | { |
449 | // standard treatment for devices with the dumb embedix frontlight interface | 421 | int val = ( numberOfSteps * 255 ) / 255; |
450 | if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) { | 422 | res = ( ::ioctl ( fd, SHARP_FL_IOCTL_STEP_CONTRAST, val ) == 0 ); |
451 | int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus | 423 | ::close ( fd ); |
452 | if ( bright && !bl ) | ||
453 | bl = 1; | ||
454 | res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 ); | ||
455 | ::close ( fd ); | ||
456 | } | ||
457 | } | 424 | } |
458 | } | 425 | } |
459 | else | 426 | else |
460 | { | 427 | { |
461 | // special treatment for the OpenZaurus unified interface | 428 | qDebug( "ODevice handling for non-embedix kernels not yet implemented" ); |
462 | #define FB_BACKLIGHT_SET_BRIGHTNESS _IOW('F', 1, u_int) /* set brightness */ | 429 | } |
463 | if (( fd = ::open ( "/dev/fb0", O_WRONLY )) >= 0 ) { | 430 | return res; |
464 | res = ( ::ioctl ( fd , FB_BACKLIGHT_SET_BRIGHTNESS, bright ) == 0 ); | 431 | } |
432 | |||
433 | bool Zaurus::setDisplayStatus( bool on ) | ||
434 | { | ||
435 | bool res = false; | ||
436 | if ( m_embedix ) | ||
437 | { | ||
438 | int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK ); | ||
439 | if ( fd ) | ||
440 | { | ||
441 | int ioctlnum = on ? SHARP_FL_IOCTL_ON : SHARP_FL_IOCTL_OFF; | ||
442 | res = ( ::ioctl ( fd, ioctlnum, 0 ) == 0 ); | ||
465 | ::close ( fd ); | 443 | ::close ( fd ); |
466 | } | 444 | } |
467 | } | 445 | } |
446 | else | ||
447 | { | ||
448 | qDebug( "ODevice handling for non-embedix kernels not yet implemented" ); | ||
449 | } | ||
468 | return res; | 450 | return res; |
469 | } | 451 | } |
470 | 452 | ||
471 | bool Zaurus::suspend() | 453 | bool Zaurus::suspend() |
472 | { | 454 | { |
473 | qDebug("ODevice::suspend"); | 455 | qDebug("ODevice::suspend"); |
474 | if ( !isQWS( ) ) // only qwsserver is allowed to suspend | 456 | if ( !isQWS( ) ) // only qwsserver is allowed to suspend |
475 | return false; | 457 | return false; |
476 | 458 | ||
477 | if ( d->m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices | 459 | if ( d->m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices |
478 | return false; | 460 | return false; |
479 | 461 | ||
480 | bool res = false; | 462 | bool res = false; |
481 | ODevice::sendSuspendmsg(); | 463 | ODevice::sendSuspendmsg(); |
482 | 464 | ||
483 | struct timeval tvs, tvn; | 465 | struct timeval tvs, tvn; |
484 | ::gettimeofday ( &tvs, 0 ); | 466 | ::gettimeofday ( &tvs, 0 ); |
485 | 467 | ||
486 | ::sync(); // flush fs caches | 468 | ::sync(); // flush fs caches |
487 | res = ( ::system ( "apm --suspend" ) == 0 ); | 469 | res = ( ::system ( "apm --suspend" ) == 0 ); |
488 | 470 | ||
489 | // This is needed because the iPAQ apm implementation is asynchronous and we | 471 | // This is needed because the apm implementation is asynchronous and we |
490 | // can not be sure when exactly the device is really suspended | 472 | // can not be sure when exactly the device is really suspended |
491 | // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists. | ||
492 | |||
493 | if ( res ) { | 473 | if ( res ) { |
494 | do { // Yes, wait 15 seconds. This APM bug sucks big time. | 474 | do { // Yes, wait 15 seconds. This APM sucks big time. |
495 | ::usleep ( 200 * 1000 ); | 475 | ::usleep ( 200 * 1000 ); |
496 | ::gettimeofday ( &tvn, 0 ); | 476 | ::gettimeofday ( &tvn, 0 ); |
497 | } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 15000 ); | 477 | } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 15000 ); |
498 | } | 478 | } |
499 | 479 | ||
500 | QCopEnvelope ( "QPE/Rotation", "rotateDefault()" ); | 480 | QCopEnvelope ( "QPE/Rotation", "rotateDefault()" ); |
501 | return res; | 481 | return res; |
502 | } | 482 | } |
503 | 483 | ||
504 | 484 | ||
505 | Transformation Zaurus::rotation() const | 485 | Transformation Zaurus::rotation() const |
506 | { | 486 | { |
@@ -532,59 +512,59 @@ Transformation Zaurus::rotation() const | |||
532 | break; | 512 | break; |
533 | } | 513 | } |
534 | 514 | ||
535 | return rot; | 515 | return rot; |
536 | } | 516 | } |
537 | ODirection Zaurus::direction() const | 517 | ODirection Zaurus::direction() const |
538 | { | 518 | { |
539 | ODirection dir; | 519 | ODirection dir; |
540 | int handle = 0; | 520 | int handle = 0; |
541 | int retval = 0; | 521 | int retval = 0; |
542 | switch ( d->m_model ) { | 522 | switch ( d->m_model ) { |
543 | case Model_Zaurus_SLC7x0: | 523 | case Model_Zaurus_SLC7x0: |
544 | handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK); | 524 | handle = ::open( "/dev/apm_bios", O_RDWR|O_NONBLOCK ); |
545 | if (handle == -1) { | 525 | if (handle == -1) { |
546 | dir = CW; | 526 | dir = CW; |
547 | } else { | 527 | } else { |
548 | retval = ::ioctl(handle, SHARP_IOCTL_GET_ROTATION); | 528 | retval = ::ioctl( handle, SHARP_IOCTL_GET_ROTATION ); |
549 | ::close (handle); | 529 | ::close (handle); |
550 | if (retval == 2 ) | 530 | if (retval == 2 ) |
551 | dir = CCW; | 531 | dir = CCW; |
552 | else | 532 | else |
553 | dir = CW; | 533 | dir = CW; |
554 | } | 534 | } |
555 | break; | 535 | break; |
556 | case Model_Zaurus_SLA300: | 536 | case Model_Zaurus_SLA300: |
557 | case Model_Zaurus_SLB600: | 537 | case Model_Zaurus_SLB600: |
558 | case Model_Zaurus_SL5500: | 538 | case Model_Zaurus_SL5500: |
559 | case Model_Zaurus_SL5000: | 539 | case Model_Zaurus_SL5000: |
560 | default: | 540 | default: dir = d->m_direction; |
561 | dir = d->m_direction; | ||
562 | break; | 541 | break; |
563 | } | 542 | } |
564 | return dir; | 543 | return dir; |
565 | 544 | ||
566 | } | 545 | } |
567 | 546 | ||
568 | int Zaurus::displayBrightnessResolution() const | 547 | int Zaurus::displayBrightnessResolution() const |
569 | { | 548 | { |
570 | if (m_embedix) | 549 | if (m_embedix) |
571 | { | 550 | { |
572 | if ( d->m_model == Model_Zaurus_SLC7x0 ) return 18; | 551 | int handle = ::open( SHARP_FL_IOCTL_DEVICE, O_RDWR|O_NONBLOCK ); |
573 | if ( d->m_model == Model_Zaurus_SL6000 ) return 18; | 552 | if ( handle != -1 ) return ::ioctl( handle, SHARP_FL_IOCTL_GET_STEP, 0 ); |
574 | return 5; | 553 | else return 1; |
575 | } | 554 | } |
576 | else | 555 | else |
577 | { | 556 | { |
578 | return 256; | 557 | qDebug( "ODevice handling for non-embedix kernels not yet implemented" ); |
558 | return 1; | ||
579 | } | 559 | } |
580 | } | 560 | } |
581 | 561 | ||
582 | bool Zaurus::hasHingeSensor() const | 562 | bool Zaurus::hasHingeSensor() const |
583 | { | 563 | { |
584 | return d->m_model == Model_Zaurus_SLC7x0; | 564 | return d->m_model == Model_Zaurus_SLC7x0; |
585 | } | 565 | } |
586 | 566 | ||
587 | OHingeStatus Zaurus::readHingeSensor() | 567 | OHingeStatus Zaurus::readHingeSensor() |
588 | { | 568 | { |
589 | int handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK); | 569 | int handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK); |
590 | if (handle == -1) | 570 | if (handle == -1) |
diff --git a/libopie2/opiecore/device/odevice_zaurus.h b/libopie2/opiecore/device/odevice_zaurus.h index dc21546..37ab876 100644 --- a/libopie2/opiecore/device/odevice_zaurus.h +++ b/libopie2/opiecore/device/odevice_zaurus.h | |||
@@ -67,47 +67,45 @@ | |||
67 | #define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ | 67 | #define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ |
68 | #define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ | 68 | #define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ |
69 | #define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ | 69 | #define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ |
70 | 70 | ||
71 | // Rotation and Power Management | 71 | // Rotation and Power Management |
72 | #define SHARP_IOCTL_GET_ROTATION 0x413c | 72 | #define SHARP_IOCTL_GET_ROTATION 0x413c |
73 | 73 | ||
74 | #define APM_IOCGEVTSRC OD_IOR( 'A', 203, int ) | 74 | #define APM_IOCGEVTSRC OD_IOR( 'A', 203, int ) |
75 | #define APM_IOCSEVTSRC OD_IORW( 'A', 204, int ) | 75 | #define APM_IOCSEVTSRC OD_IORW( 'A', 204, int ) |
76 | #define APM_EVT_POWER_BUTTON (1 << 0) | 76 | #define APM_EVT_POWER_BUTTON (1 << 0) |
77 | 77 | ||
78 | // Brightness | 78 | // Brightness |
79 | #define FL_IOCTL_STEP_CONTRAST 100 | 79 | #define SHARP_FL_IOCTL_DEVICE "/dev/sharp_fl" |
80 | 80 | #define SHARP_FL_IOCTL_ON 1 | |
81 | #define CORGI_TOSA_BL_IOCTL_ON 1 | 81 | #define SHARP_FL_IOCTL_OFF 2 |
82 | #define CORGI_TOSA_BL_IOCTL_OFF 2 | 82 | #define SHARP_FL_IOCTL_STEP_CONTRAST 100 |
83 | #define CORGI_TOSA_BL_IOCTL_STEP_CONTRAST 100 | 83 | #define SHARP_FL_IOCTL_GET_STEP_CONTRAST 101 |
84 | #define CORGI_TOSA_BL_IOCTL_GET_STEP_CONTRAST 101 | 84 | #define SHARP_FL_IOCTL_GET_STEP 102 |
85 | #define CORGI_TOSA_BL_IOCTL_GET_STEP 102 | ||
86 | #define CORGI_BL_PROC_DEVICE corgi-bl | ||
87 | #define TOSA_BL_PROC_DEVICE tosa-bl | ||
88 | 85 | ||
89 | namespace Opie { | 86 | namespace Opie { |
90 | namespace Core { | 87 | namespace Core { |
91 | namespace Internal { | 88 | namespace Internal { |
92 | class Zaurus : public ODevice | 89 | class Zaurus : public ODevice |
93 | { | 90 | { |
94 | protected: | 91 | protected: |
95 | virtual void init(const QString&); | 92 | virtual void init(const QString&); |
96 | virtual void initButtons(); | 93 | virtual void initButtons(); |
97 | 94 | ||
98 | public: | 95 | public: |
99 | virtual bool setSoftSuspend ( bool soft ); | 96 | virtual bool setSoftSuspend( bool soft ); |
100 | 97 | ||
101 | virtual bool setDisplayBrightness ( int b ); | 98 | virtual bool setDisplayBrightness( int b ); |
99 | virtual bool setDisplayStatus( bool on ); | ||
102 | virtual int displayBrightnessResolution() const; | 100 | virtual int displayBrightnessResolution() const; |
103 | 101 | ||
104 | virtual void playAlarmSound(); | 102 | virtual void playAlarmSound(); |
105 | virtual void playKeySound(); | 103 | virtual void playKeySound(); |
106 | virtual void playTouchSound(); | 104 | virtual void playTouchSound(); |
107 | 105 | ||
108 | virtual QValueList <OLed> ledList() const; | 106 | virtual QValueList <OLed> ledList() const; |
109 | virtual QValueList <OLedState> ledStateList ( OLed led ) const; | 107 | virtual QValueList <OLedState> ledStateList ( OLed led ) const; |
110 | virtual OLedState ledState( OLed led ) const; | 108 | virtual OLedState ledState( OLed led ) const; |
111 | virtual bool setLedState( OLed led, OLedState st ); | 109 | virtual bool setLedState( OLed led, OLedState st ); |
112 | 110 | ||
113 | virtual bool hasHingeSensor() const; | 111 | virtual bool hasHingeSensor() const; |