summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2005-01-11 21:08:00 (UTC)
committer mickeyl <mickeyl>2005-01-11 21:08:00 (UTC)
commitf89120a7a1a3d0bf9c0805456490906ca914e560 (patch) (unidiff)
tree23c184e6c2111b7870ef9eccffc11ae8bf225de2
parentf8fd8556da5649f54af740a5dbb9a8c1ead2bcfc (diff)
downloadopie-f89120a7a1a3d0bf9c0805456490906ca914e560.zip
opie-f89120a7a1a3d0bf9c0805456490906ca914e560.tar.gz
opie-f89120a7a1a3d0bf9c0805456490906ca914e560.tar.bz2
workaround a quirk in the linux kernel semantics
echo 1 >power actually powers off a device *cough*
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_zaurus.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiecore/device/odevice_zaurus.cpp b/libopie2/opiecore/device/odevice_zaurus.cpp
index 269f6c9..d3ab63a 100644
--- a/libopie2/opiecore/device/odevice_zaurus.cpp
+++ b/libopie2/opiecore/device/odevice_zaurus.cpp
@@ -403,193 +403,193 @@ bool Zaurus::setSoftSuspend ( bool soft )
403 403
404 if ( ::ioctl( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources 404 if ( ::ioctl( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources
405 res = true; 405 res = true;
406 else 406 else
407 perror ( "APM_IOCGEVTSRC" ); 407 perror ( "APM_IOCGEVTSRC" );
408 } 408 }
409 else 409 else
410 perror ( "APM_IOCGEVTSRC" ); 410 perror ( "APM_IOCGEVTSRC" );
411 411
412 ::close( fd ); 412 ::close( fd );
413 } 413 }
414 else 414 else
415 perror( "/dev/apm_bios or /dev/misc/apm_bios" ); 415 perror( "/dev/apm_bios or /dev/misc/apm_bios" );
416 416
417 return res; 417 return res;
418} 418}
419 419
420int Zaurus::displayBrightnessResolution() const 420int Zaurus::displayBrightnessResolution() const
421{ 421{
422 int res = 1; 422 int res = 1;
423 if (m_embedix) 423 if (m_embedix)
424 { 424 {
425 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_RDWR|O_NONBLOCK ); 425 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_RDWR|O_NONBLOCK );
426 if ( fd ) 426 if ( fd )
427 { 427 {
428 int value = ::ioctl( fd, SHARP_FL_IOCTL_GET_STEP, 0 ); 428 int value = ::ioctl( fd, SHARP_FL_IOCTL_GET_STEP, 0 );
429 ::close( fd ); 429 ::close( fd );
430 return value ? value : res; 430 return value ? value : res;
431 } 431 }
432 } 432 }
433 else 433 else
434 { 434 {
435 int fd = ::open( "/sys/class/backlight/corgi-bl/max_brightness", O_RDONLY|O_NONBLOCK ); 435 int fd = ::open( "/sys/class/backlight/corgi-bl/max_brightness", O_RDONLY|O_NONBLOCK );
436 if ( fd ) 436 if ( fd )
437 { 437 {
438 char buf[100]; 438 char buf[100];
439 if ( ::read( fd, &buf[0], sizeof buf ) ) ::sscanf( &buf[0], "%d", &res ); 439 if ( ::read( fd, &buf[0], sizeof buf ) ) ::sscanf( &buf[0], "%d", &res );
440 ::close( fd ); 440 ::close( fd );
441 } 441 }
442 } 442 }
443 return res; 443 return res;
444} 444}
445 445
446bool Zaurus::setDisplayBrightness( int bright ) 446bool Zaurus::setDisplayBrightness( int bright )
447{ 447{
448 //qDebug( "Zaurus::setDisplayBrightness( %d )", bright ); 448 //qDebug( "Zaurus::setDisplayBrightness( %d )", bright );
449 bool res = false; 449 bool res = false;
450 450
451 if ( bright > 255 ) bright = 255; 451 if ( bright > 255 ) bright = 255;
452 if ( bright < 0 ) bright = 0; 452 if ( bright < 0 ) bright = 0;
453 453
454 int numberOfSteps = displayBrightnessResolution(); 454 int numberOfSteps = displayBrightnessResolution();
455 int val = ( bright == 1 ) ? 1 : ( bright * numberOfSteps ) / 255; 455 int val = ( bright == 1 ) ? 1 : ( bright * numberOfSteps ) / 255;
456 456
457 if ( m_embedix ) 457 if ( m_embedix )
458 { 458 {
459 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK ); 459 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK );
460 if ( fd ) 460 if ( fd )
461 { 461 {
462 res = ( ::ioctl( fd, SHARP_FL_IOCTL_STEP_CONTRAST, val ) == 0 ); 462 res = ( ::ioctl( fd, SHARP_FL_IOCTL_STEP_CONTRAST, val ) == 0 );
463 ::close( fd ); 463 ::close( fd );
464 } 464 }
465 } 465 }
466 else 466 else
467 { 467 {
468 int fd = ::open( "/sys/class/backlight/corgi-bl/brightness", O_WRONLY|O_NONBLOCK ); 468 int fd = ::open( "/sys/class/backlight/corgi-bl/brightness", O_WRONLY|O_NONBLOCK );
469 if ( fd ) 469 if ( fd )
470 { 470 {
471 char buf[100]; 471 char buf[100];
472 int len = ::snprintf( &buf[0], sizeof buf, "%d", val ); 472 int len = ::snprintf( &buf[0], sizeof buf, "%d", val );
473 res = ( ::write( fd, &buf[0], len ) == 0 ); 473 res = ( ::write( fd, &buf[0], len ) == 0 );
474 ::close( fd ); 474 ::close( fd );
475 } 475 }
476 } 476 }
477 return res; 477 return res;
478} 478}
479 479
480bool Zaurus::setDisplayStatus( bool on ) 480bool Zaurus::setDisplayStatus( bool on )
481{ 481{
482 bool res = false; 482 bool res = false;
483 if ( m_embedix ) 483 if ( m_embedix )
484 { 484 {
485 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK ); 485 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK );
486 if ( fd ) 486 if ( fd )
487 { 487 {
488 int ioctlnum = on ? SHARP_FL_IOCTL_ON : SHARP_FL_IOCTL_OFF; 488 int ioctlnum = on ? SHARP_FL_IOCTL_ON : SHARP_FL_IOCTL_OFF;
489 res = ( ::ioctl ( fd, ioctlnum, 0 ) == 0 ); 489 res = ( ::ioctl ( fd, ioctlnum, 0 ) == 0 );
490 ::close ( fd ); 490 ::close ( fd );
491 } 491 }
492 } 492 }
493 else 493 else
494 { 494 {
495 int fd = ::open( "/sys/class/backlight/corgi-bl/power", O_WRONLY|O_NONBLOCK ); 495 int fd = ::open( "/sys/class/backlight/corgi-bl/power", O_WRONLY|O_NONBLOCK );
496 if ( fd ) 496 if ( fd )
497 { 497 {
498 char buf[10]; 498 char buf[10];
499 buf[0] = on ? '0' : '1'; 499 buf[0] = on ? '1' : '0';
500 buf[1] = '\0'; 500 buf[1] = '\0';
501 res = ( ::write( fd, &buf[0], 2 ) == 0 ); 501 res = ( ::write( fd, &buf[0], 2 ) == 0 );
502 ::close( fd ); 502 ::close( fd );
503 } 503 }
504 } 504 }
505 return res; 505 return res;
506} 506}
507 507
508bool Zaurus::suspend() 508bool Zaurus::suspend()
509{ 509{
510 qDebug("ODevice::suspend"); 510 qDebug("ODevice::suspend");
511 if ( !isQWS( ) ) // only qwsserver is allowed to suspend 511 if ( !isQWS( ) ) // only qwsserver is allowed to suspend
512 return false; 512 return false;
513 513
514 if ( d->m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices 514 if ( d->m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices
515 return false; 515 return false;
516 516
517 bool res = false; 517 bool res = false;
518 ODevice::sendSuspendmsg(); 518 ODevice::sendSuspendmsg();
519 519
520 struct timeval tvs, tvn; 520 struct timeval tvs, tvn;
521 ::gettimeofday ( &tvs, 0 ); 521 ::gettimeofday ( &tvs, 0 );
522 522
523 ::sync(); // flush fs caches 523 ::sync(); // flush fs caches
524 res = ( ::system ( "apm --suspend" ) == 0 ); 524 res = ( ::system ( "apm --suspend" ) == 0 );
525 525
526 // This is needed because the apm implementation is asynchronous and we 526 // This is needed because the apm implementation is asynchronous and we
527 // can not be sure when exactly the device is really suspended 527 // can not be sure when exactly the device is really suspended
528 if ( res ) { 528 if ( res ) {
529 do { // Yes, wait 15 seconds. This APM sucks big time. 529 do { // Yes, wait 15 seconds. This APM sucks big time.
530 ::usleep ( 200 * 1000 ); 530 ::usleep ( 200 * 1000 );
531 ::gettimeofday ( &tvn, 0 ); 531 ::gettimeofday ( &tvn, 0 );
532 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 15000 ); 532 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 15000 );
533 } 533 }
534 534
535 QCopEnvelope ( "QPE/Rotation", "rotateDefault()" ); 535 QCopEnvelope ( "QPE/Rotation", "rotateDefault()" );
536 return res; 536 return res;
537} 537}
538 538
539 539
540Transformation Zaurus::rotation() const 540Transformation Zaurus::rotation() const
541{ 541{
542 Transformation rot; 542 Transformation rot;
543 int handle = 0; 543 int handle = 0;
544 int retval = 0; 544 int retval = 0;
545 545
546 switch ( d->m_model ) { 546 switch ( d->m_model ) {
547 case Model_Zaurus_SLC3000: // fallthrough 547 case Model_Zaurus_SLC3000: // fallthrough
548 case Model_Zaurus_SLC7x0: 548 case Model_Zaurus_SLC7x0:
549 handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK); 549 handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK);
550 if (handle == -1) { 550 if (handle == -1) {
551 return Rot270; 551 return Rot270;
552 } else { 552 } else {
553 retval = ::ioctl(handle, SHARP_IOCTL_GET_ROTATION); 553 retval = ::ioctl(handle, SHARP_IOCTL_GET_ROTATION);
554 ::close (handle); 554 ::close (handle);
555 555
556 if (retval == 2 ) 556 if (retval == 2 )
557 rot = Rot0; 557 rot = Rot0;
558 else 558 else
559 rot = Rot270; 559 rot = Rot270;
560 } 560 }
561 break; 561 break;
562 case Model_Zaurus_SL6000: 562 case Model_Zaurus_SL6000:
563 case Model_Zaurus_SLB600: 563 case Model_Zaurus_SLB600:
564 case Model_Zaurus_SLA300: 564 case Model_Zaurus_SLA300:
565 case Model_Zaurus_SL5500: 565 case Model_Zaurus_SL5500:
566 case Model_Zaurus_SL5000: 566 case Model_Zaurus_SL5000:
567 default: 567 default:
568 rot = d->m_rotation; 568 rot = d->m_rotation;
569 break; 569 break;
570 } 570 }
571 571
572 return rot; 572 return rot;
573} 573}
574ODirection Zaurus::direction() const 574ODirection Zaurus::direction() const
575{ 575{
576 ODirection dir; 576 ODirection dir;
577 int handle = 0; 577 int handle = 0;
578 int retval = 0; 578 int retval = 0;
579 switch ( d->m_model ) { 579 switch ( d->m_model ) {
580 case Model_Zaurus_SLC3000: // fallthrough 580 case Model_Zaurus_SLC3000: // fallthrough
581 case Model_Zaurus_SLC7x0: 581 case Model_Zaurus_SLC7x0:
582 handle = ::open( "/dev/apm_bios", O_RDWR|O_NONBLOCK ); 582 handle = ::open( "/dev/apm_bios", O_RDWR|O_NONBLOCK );
583 if (handle == -1) { 583 if (handle == -1) {
584 dir = CW; 584 dir = CW;
585 } else { 585 } else {
586 retval = ::ioctl( handle, SHARP_IOCTL_GET_ROTATION ); 586 retval = ::ioctl( handle, SHARP_IOCTL_GET_ROTATION );
587 ::close (handle); 587 ::close (handle);
588 if (retval == 2 ) 588 if (retval == 2 )
589 dir = CCW; 589 dir = CCW;
590 else 590 else
591 dir = CW; 591 dir = CW;
592 } 592 }
593 break; 593 break;
594 case Model_Zaurus_SL6000: 594 case Model_Zaurus_SL6000:
595 case Model_Zaurus_SLA300: 595 case Model_Zaurus_SLA300: