author | mickeyl <mickeyl> | 2003-12-05 21:24:53 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-12-05 21:24:53 (UTC) |
commit | 650d6e3ec023759f1c6566d7562857d8dd0e8028 (patch) (unidiff) | |
tree | b028807a522b553aa4cfae8bdb6fa174f9a7fe2b | |
parent | 978b8c98ba1e206dd683b2f1f0a743b8d2ce290f (diff) | |
download | opie-650d6e3ec023759f1c6566d7562857d8dd0e8028.zip opie-650d6e3ec023759f1c6566d7562857d8dd0e8028.tar.gz opie-650d6e3ec023759f1c6566d7562857d8dd0e8028.tar.bz2 |
add some comments to Zaurus class
-rw-r--r-- | libopie/odevice.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 71ed9e4..9373ef9 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp | |||
@@ -1432,128 +1432,141 @@ bool iPAQ::setDisplayBrightness ( int bright ) | |||
1432 | } | 1432 | } |
1433 | return res; | 1433 | return res; |
1434 | } | 1434 | } |
1435 | 1435 | ||
1436 | int iPAQ::displayBrightnessResolution ( ) const | 1436 | int iPAQ::displayBrightnessResolution ( ) const |
1437 | { | 1437 | { |
1438 | switch ( model ( )) { | 1438 | switch ( model ( )) { |
1439 | case Model_iPAQ_H31xx: | 1439 | case Model_iPAQ_H31xx: |
1440 | case Model_iPAQ_H36xx: | 1440 | case Model_iPAQ_H36xx: |
1441 | case Model_iPAQ_H37xx: | 1441 | case Model_iPAQ_H37xx: |
1442 | return 128; // really 256, but >128 could damage the LCD | 1442 | return 128; // really 256, but >128 could damage the LCD |
1443 | 1443 | ||
1444 | case Model_iPAQ_H38xx: | 1444 | case Model_iPAQ_H38xx: |
1445 | case Model_iPAQ_H39xx: | 1445 | case Model_iPAQ_H39xx: |
1446 | return 64; | 1446 | return 64; |
1447 | case Model_iPAQ_H5xxx: | 1447 | case Model_iPAQ_H5xxx: |
1448 | return 255; | 1448 | return 255; |
1449 | 1449 | ||
1450 | default: | 1450 | default: |
1451 | return 2; | 1451 | return 2; |
1452 | } | 1452 | } |
1453 | } | 1453 | } |
1454 | 1454 | ||
1455 | 1455 | ||
1456 | bool iPAQ::hasLightSensor ( ) const | 1456 | bool iPAQ::hasLightSensor ( ) const |
1457 | { | 1457 | { |
1458 | return true; | 1458 | return true; |
1459 | } | 1459 | } |
1460 | 1460 | ||
1461 | int iPAQ::readLightSensor ( ) | 1461 | int iPAQ::readLightSensor ( ) |
1462 | { | 1462 | { |
1463 | int fd; | 1463 | int fd; |
1464 | int val = -1; | 1464 | int val = -1; |
1465 | 1465 | ||
1466 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { | 1466 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { |
1467 | char buffer [8]; | 1467 | char buffer [8]; |
1468 | 1468 | ||
1469 | if ( ::read ( fd, buffer, 5 ) == 5 ) { | 1469 | if ( ::read ( fd, buffer, 5 ) == 5 ) { |
1470 | char *endptr; | 1470 | char *endptr; |
1471 | 1471 | ||
1472 | buffer [4] = 0; | 1472 | buffer [4] = 0; |
1473 | val = ::strtol ( buffer + 2, &endptr, 16 ); | 1473 | val = ::strtol ( buffer + 2, &endptr, 16 ); |
1474 | 1474 | ||
1475 | if ( *endptr != 0 ) | 1475 | if ( *endptr != 0 ) |
1476 | val = -1; | 1476 | val = -1; |
1477 | } | 1477 | } |
1478 | ::close ( fd ); | 1478 | ::close ( fd ); |
1479 | } | 1479 | } |
1480 | 1480 | ||
1481 | return val; | 1481 | return val; |
1482 | } | 1482 | } |
1483 | 1483 | ||
1484 | int iPAQ::lightSensorResolution ( ) const | 1484 | int iPAQ::lightSensorResolution ( ) const |
1485 | { | 1485 | { |
1486 | return 256; | 1486 | return 256; |
1487 | } | 1487 | } |
1488 | 1488 | ||
1489 | /************************************************** | 1489 | /************************************************** |
1490 | * | 1490 | * |
1491 | * Zaurus | 1491 | * Zaurus |
1492 | * | 1492 | * |
1493 | **************************************************/ | 1493 | **************************************************/ |
1494 | 1494 | ||
1495 | // Check whether this device is the sharp zaurus.. | 1495 | // Check whether this device is the sharp zaurus.. |
1496 | // FIXME This gets unnecessary complicated. We should think about splitting the Zaurus | ||
1497 | // class up into individual classes. We need three classes | ||
1498 | // | ||
1499 | // Zaurus-Collie (SA-model w/ 320x240 lcd, for SL5500 and SL5000) | ||
1500 | // Zaurus-Poodle (PXA-model w/ 320x240 lcd, for SL5600) | ||
1501 | // Zaurus-Corgi (PXA-model w/ 640x480 lcd, for C700, C750, C760, and C860) | ||
1502 | // | ||
1503 | // Only question right now is: Do we really need to do it? Because as soon | ||
1504 | // as the OpenZaurus kernel is ready, there will be a unified interface for all | ||
1505 | // Zaurus models (concerning apm, backlight, buttons, etc.) | ||
1506 | // | ||
1507 | // Comments? - mickeyl. | ||
1508 | |||
1496 | bool Zaurus::isZaurus() | 1509 | bool Zaurus::isZaurus() |
1497 | { | 1510 | { |
1498 | 1511 | ||
1499 | // If the special devices by embedix exist, it is quite simple: it is a Zaurus ! | 1512 | // If the special devices by embedix exist, it is quite simple: it is a Zaurus ! |
1500 | if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" ) ){ | 1513 | if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" ) ){ |
1501 | return true; | 1514 | return true; |
1502 | } | 1515 | } |
1503 | 1516 | ||
1504 | // On non-embedix kernels, we have to look closer. | 1517 | // On non-embedix kernels, we have to look closer. |
1505 | bool is_zaurus = false; | 1518 | bool is_zaurus = false; |
1506 | QFile f ( "/proc/cpuinfo" ); | 1519 | QFile f ( "/proc/cpuinfo" ); |
1507 | if ( f. open ( IO_ReadOnly ) ) { | 1520 | if ( f. open ( IO_ReadOnly ) ) { |
1508 | QString model; | 1521 | QString model; |
1509 | QFile f ( "/proc/cpuinfo" ); | 1522 | QFile f ( "/proc/cpuinfo" ); |
1510 | 1523 | ||
1511 | QTextStream ts ( &f ); | 1524 | QTextStream ts ( &f ); |
1512 | QString line; | 1525 | QString line; |
1513 | while( line = ts. readLine ( ) ) { | 1526 | while( line = ts. readLine ( ) ) { |
1514 | if ( line. left ( 8 ) == "Hardware" ) | 1527 | if ( line. left ( 8 ) == "Hardware" ) |
1515 | break; | 1528 | break; |
1516 | } | 1529 | } |
1517 | int loc = line. find ( ":" ); | 1530 | int loc = line. find ( ":" ); |
1518 | if ( loc != -1 ) | 1531 | if ( loc != -1 ) |
1519 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); | 1532 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); |
1520 | 1533 | ||
1521 | if ( model == "Sharp-Collie" | 1534 | if ( model == "Sharp-Collie" |
1522 | || model == "Collie" | 1535 | || model == "Collie" |
1523 | || model == "SHARP Corgi" | 1536 | || model == "SHARP Corgi" |
1524 | || model == "SHARP Shepherd" | 1537 | || model == "SHARP Shepherd" |
1525 | || model == "SHARP Poodle" | 1538 | || model == "SHARP Poodle" |
1526 | || model == "SHARP Husky" | 1539 | || model == "SHARP Husky" |
1527 | ) | 1540 | ) |
1528 | is_zaurus = true; | 1541 | is_zaurus = true; |
1529 | 1542 | ||
1530 | } | 1543 | } |
1531 | return is_zaurus; | 1544 | return is_zaurus; |
1532 | } | 1545 | } |
1533 | 1546 | ||
1534 | 1547 | ||
1535 | void Zaurus::init ( ) | 1548 | void Zaurus::init ( ) |
1536 | { | 1549 | { |
1537 | d-> m_vendorstr = "Sharp"; | 1550 | d-> m_vendorstr = "Sharp"; |
1538 | d-> m_vendor = Vendor_Sharp; | 1551 | d-> m_vendor = Vendor_Sharp; |
1539 | m_embedix = true; // Not openzaurus means: It has an embedix kernel ! | 1552 | m_embedix = true; // Not openzaurus means: It has an embedix kernel ! |
1540 | 1553 | ||
1541 | // QFile f ( "/proc/filesystems" ); | 1554 | // QFile f ( "/proc/filesystems" ); |
1542 | QString model; | 1555 | QString model; |
1543 | 1556 | ||
1544 | // It isn't a good idea to check the system configuration to | 1557 | // It isn't a good idea to check the system configuration to |
1545 | // detect the distribution ! | 1558 | // detect the distribution ! |
1546 | // Otherwise it may happen that any other distribution is detected as openzaurus, just | 1559 | // Otherwise it may happen that any other distribution is detected as openzaurus, just |
1547 | // because it uses a jffs2 filesystem.. | 1560 | // because it uses a jffs2 filesystem.. |
1548 | // (eilers) | 1561 | // (eilers) |
1549 | // if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { | 1562 | // if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { |
1550 | QFile f ("/etc/oz_version"); | 1563 | QFile f ("/etc/oz_version"); |
1551 | if ( f.exists() ){ | 1564 | if ( f.exists() ){ |
1552 | d-> m_vendorstr = "OpenZaurus Team"; | 1565 | d-> m_vendorstr = "OpenZaurus Team"; |
1553 | d-> m_systemstr = "OpenZaurus"; | 1566 | d-> m_systemstr = "OpenZaurus"; |
1554 | d-> m_system = System_OpenZaurus; | 1567 | d-> m_system = System_OpenZaurus; |
1555 | 1568 | ||
1556 | if ( f. open ( IO_ReadOnly )) { | 1569 | if ( f. open ( IO_ReadOnly )) { |
1557 | QTextStream ts ( &f ); | 1570 | QTextStream ts ( &f ); |
1558 | d-> m_sysverstr = ts. readLine ( );//. mid ( 10 ); | 1571 | d-> m_sysverstr = ts. readLine ( );//. mid ( 10 ); |
1559 | f. close ( ); | 1572 | f. close ( ); |
@@ -1562,128 +1575,129 @@ void Zaurus::init ( ) | |||
1562 | // Openzaurus sometimes uses the embedix kernel! | 1575 | // Openzaurus sometimes uses the embedix kernel! |
1563 | // => Check whether this is an embedix kernel | 1576 | // => Check whether this is an embedix kernel |
1564 | FILE *uname = popen("uname -r", "r"); | 1577 | FILE *uname = popen("uname -r", "r"); |
1565 | QString line; | 1578 | QString line; |
1566 | if ( f.open(IO_ReadOnly, uname) ) { | 1579 | if ( f.open(IO_ReadOnly, uname) ) { |
1567 | QTextStream ts ( &f ); | 1580 | QTextStream ts ( &f ); |
1568 | line = ts. readLine ( ); | 1581 | line = ts. readLine ( ); |
1569 | int loc = line. find ( "embedix" ); | 1582 | int loc = line. find ( "embedix" ); |
1570 | if ( loc != -1 ) | 1583 | if ( loc != -1 ) |
1571 | m_embedix = true; | 1584 | m_embedix = true; |
1572 | else | 1585 | else |
1573 | m_embedix = false; | 1586 | m_embedix = false; |
1574 | f. close ( ); | 1587 | f. close ( ); |
1575 | } | 1588 | } |
1576 | pclose(uname); | 1589 | pclose(uname); |
1577 | } | 1590 | } |
1578 | else { | 1591 | else { |
1579 | d-> m_systemstr = "Zaurus"; | 1592 | d-> m_systemstr = "Zaurus"; |
1580 | d-> m_system = System_Zaurus; | 1593 | d-> m_system = System_Zaurus; |
1581 | } | 1594 | } |
1582 | 1595 | ||
1583 | f. setName ( "/proc/cpuinfo" ); | 1596 | f. setName ( "/proc/cpuinfo" ); |
1584 | if ( f. open ( IO_ReadOnly ) ) { | 1597 | if ( f. open ( IO_ReadOnly ) ) { |
1585 | QTextStream ts ( &f ); | 1598 | QTextStream ts ( &f ); |
1586 | QString line; | 1599 | QString line; |
1587 | while( line = ts. readLine ( ) ) { | 1600 | while( line = ts. readLine ( ) ) { |
1588 | if ( line. left ( 8 ) == "Hardware" ) | 1601 | if ( line. left ( 8 ) == "Hardware" ) |
1589 | break; | 1602 | break; |
1590 | } | 1603 | } |
1591 | int loc = line. find ( ":" ); | 1604 | int loc = line. find ( ":" ); |
1592 | if ( loc != -1 ) | 1605 | if ( loc != -1 ) |
1593 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); | 1606 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); |
1594 | } | 1607 | } |
1595 | 1608 | ||
1596 | if ( model == "SHARP Corgi" ) { | 1609 | if ( model == "SHARP Corgi" ) { |
1597 | d-> m_model = Model_Zaurus_SLC7x0; | 1610 | d-> m_model = Model_Zaurus_SLC7x0; |
1598 | d-> m_modelstr = "Zaurus SL-C700"; | 1611 | d-> m_modelstr = "Zaurus SL-C700"; |
1599 | } else if ( model == "SHARP Shepherd" ) { | 1612 | } else if ( model == "SHARP Shepherd" ) { |
1600 | d-> m_model = Model_Zaurus_SLC7x0; | 1613 | d-> m_model = Model_Zaurus_SLC7x0; |
1601 | d-> m_modelstr = "Zaurus SL-C750"; | 1614 | d-> m_modelstr = "Zaurus SL-C750"; |
1602 | } else if ( model == "SHARP Husky" ) { | 1615 | } else if ( model == "SHARP Husky" ) { |
1603 | d-> m_model = Model_Zaurus_SLC7x0; | 1616 | d-> m_model = Model_Zaurus_SLC7x0; |
1604 | d-> m_modelstr = "Zaurus SL-C760"; | 1617 | d-> m_modelstr = "Zaurus SL-C760"; |
1605 | } else if ( model == "SHARP Poodle" ) { | 1618 | } else if ( model == "SHARP Poodle" ) { |
1606 | d-> m_model = Model_Zaurus_SLB600; | 1619 | d-> m_model = Model_Zaurus_SLB600; |
1607 | d-> m_modelstr = "Zaurus SL-B500 or SL-5600"; | 1620 | d-> m_modelstr = "Zaurus SL-B500 or SL-5600"; |
1608 | } else if ( model == "Sharp-Collie" || model == "Collie" ) { | 1621 | } else if ( model == "Sharp-Collie" || model == "Collie" ) { |
1609 | d-> m_model = Model_Zaurus_SL5500; | 1622 | d-> m_model = Model_Zaurus_SL5500; |
1610 | d-> m_modelstr = "Zaurus SL-5500 or SL-5000d"; | 1623 | d-> m_modelstr = "Zaurus SL-5500 or SL-5000d"; |
1611 | } else { | 1624 | } else { |
1612 | d-> m_model = Model_Zaurus_SL5500; | 1625 | d-> m_model = Model_Zaurus_SL5500; |
1613 | d-> m_modelstr = "Zaurus (Model unknown)"; | 1626 | d-> m_modelstr = "Zaurus (Model unknown)"; |
1614 | } | 1627 | } |
1615 | 1628 | ||
1616 | bool flipstate = false; | 1629 | bool flipstate = false; |
1617 | switch ( d-> m_model ) { | 1630 | switch ( d-> m_model ) { |
1618 | case Model_Zaurus_SLA300: | 1631 | case Model_Zaurus_SLA300: |
1619 | d-> m_rotation = Rot0; | 1632 | d-> m_rotation = Rot0; |
1620 | break; | 1633 | break; |
1621 | case Model_Zaurus_SLC7x0: | 1634 | case Model_Zaurus_SLC7x0: |
1622 | // Note: need to 1) set flipstate based on physical screen orientation | 1635 | // Note: need to 1) set flipstate based on physical screen orientation |
1623 | // and 2) check to see if the user overrode the rotation direction | 1636 | // and 2) check to see if the user overrode the rotation direction |
1624 | // using appearance, and if so, remove that item from the Config to | 1637 | // using appearance, and if so, remove that item from the Config to |
1625 | // ensure the rotate applet flips us back to the previous state. | 1638 | // ensure the rotate applet flips us back to the previous state. |
1639 | // treke said he has patches for detecting the phys. so where are they, treke? -mickeyl. | ||
1626 | if ( flipstate ) { | 1640 | if ( flipstate ) { |
1627 | // 480x640 | 1641 | // 480x640 |
1628 | d-> m_rotation = Rot0; | 1642 | d-> m_rotation = Rot0; |
1629 | d-> m_direction = CW; | 1643 | d-> m_direction = CW; |
1630 | } else { | 1644 | } else { |
1631 | // 640x480 | 1645 | // 640x480 |
1632 | d-> m_rotation = Rot270; | 1646 | d-> m_rotation = Rot270; |
1633 | d-> m_direction = CCW; | 1647 | d-> m_direction = CCW; |
1634 | } | 1648 | } |
1635 | break; | 1649 | break; |
1636 | case Model_Zaurus_SLB600: | 1650 | case Model_Zaurus_SLB600: |
1637 | case Model_Zaurus_SL5500: | 1651 | case Model_Zaurus_SL5500: |
1638 | case Model_Zaurus_SL5000: | 1652 | case Model_Zaurus_SL5000: |
1639 | default: | 1653 | default: |
1640 | d-> m_rotation = Rot270; | 1654 | d-> m_rotation = Rot270; |
1641 | break; | 1655 | break; |
1642 | } | 1656 | } |
1643 | m_leds [0] = Led_Off; | 1657 | m_leds [0] = Led_Off; |
1644 | } | 1658 | } |
1645 | 1659 | ||
1646 | void Zaurus::initButtons ( ) | 1660 | void Zaurus::initButtons ( ) |
1647 | { | 1661 | { |
1648 | if ( d-> m_buttons ) | 1662 | if ( d-> m_buttons ) |
1649 | return; | 1663 | return; |
1650 | 1664 | ||
1651 | d-> m_buttons = new QValueList <ODeviceButton>; | 1665 | d-> m_buttons = new QValueList <ODeviceButton>; |
1652 | 1666 | ||
1653 | struct z_button * pz_buttons; | 1667 | struct z_button * pz_buttons; |
1654 | int buttoncount; | 1668 | int buttoncount; |
1655 | switch ( d-> m_model ) { | 1669 | switch ( d-> m_model ) { |
1656 | case Model_Zaurus_SLC7x0: | 1670 | case Model_Zaurus_SLC7x0: |
1657 | pz_buttons = z_buttons_c700; | 1671 | pz_buttons = z_buttons_c700; |
1658 | buttoncount = ARRAY_SIZE(z_buttons_c700); | 1672 | buttoncount = ARRAY_SIZE(z_buttons_c700); |
1659 | break; | 1673 | break; |
1660 | default: | 1674 | default: |
1661 | pz_buttons = z_buttons; | 1675 | pz_buttons = z_buttons; |
1662 | buttoncount = ARRAY_SIZE(z_buttons); | 1676 | buttoncount = ARRAY_SIZE(z_buttons); |
1663 | break; | 1677 | break; |
1664 | } | 1678 | } |
1665 | 1679 | ||
1666 | for ( int i = 0; i < buttoncount; i++ ) { | 1680 | for ( int i = 0; i < buttoncount; i++ ) { |
1667 | struct z_button *zb = pz_buttons + i; | 1681 | struct z_button *zb = pz_buttons + i; |
1668 | ODeviceButton b; | 1682 | ODeviceButton b; |
1669 | 1683 | ||
1670 | b. setKeycode ( zb-> code ); | 1684 | b. setKeycode ( zb-> code ); |
1671 | b. setUserText ( QObject::tr ( "Button", zb-> utext )); | 1685 | b. setUserText ( QObject::tr ( "Button", zb-> utext )); |
1672 | b. setPixmap ( Resource::loadPixmap ( zb-> pix )); | 1686 | b. setPixmap ( Resource::loadPixmap ( zb-> pix )); |
1673 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( zb-> fpressedservice ), | 1687 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( zb-> fpressedservice ), |
1674 | zb-> fpressedaction )); | 1688 | zb-> fpressedaction )); |
1675 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( zb-> fheldservice ), | 1689 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( zb-> fheldservice ), |
1676 | zb-> fheldaction )); | 1690 | zb-> fheldaction )); |
1677 | 1691 | ||
1678 | d-> m_buttons-> append ( b ); | 1692 | d-> m_buttons-> append ( b ); |
1679 | } | 1693 | } |
1680 | 1694 | ||
1681 | reloadButtonMapping ( ); | 1695 | reloadButtonMapping ( ); |
1682 | 1696 | ||
1683 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); | 1697 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); |
1684 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), | 1698 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), |
1685 | this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); | 1699 | this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); |
1686 | } | 1700 | } |
1687 | 1701 | ||
1688 | #include <unistd.h> | 1702 | #include <unistd.h> |
1689 | #include <fcntl.h> | 1703 | #include <fcntl.h> |
@@ -1875,128 +1889,131 @@ bool Zaurus::setLedState ( OLed which, OLedState st ) | |||
1875 | 1889 | ||
1876 | if ( which == Led_Mail ) { | 1890 | if ( which == Led_Mail ) { |
1877 | if ( fd >= 0 ) { | 1891 | if ( fd >= 0 ) { |
1878 | struct sharp_led_status leds; | 1892 | struct sharp_led_status leds; |
1879 | ::memset ( &leds, 0, sizeof( leds )); | 1893 | ::memset ( &leds, 0, sizeof( leds )); |
1880 | leds. which = SHARP_LED_MAIL_EXISTS; | 1894 | leds. which = SHARP_LED_MAIL_EXISTS; |
1881 | bool ok = true; | 1895 | bool ok = true; |
1882 | 1896 | ||
1883 | switch ( st ) { | 1897 | switch ( st ) { |
1884 | case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; | 1898 | case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; |
1885 | case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; | 1899 | case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; |
1886 | case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; | 1900 | case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; |
1887 | default : ok = false; | 1901 | default : ok = false; |
1888 | } | 1902 | } |
1889 | 1903 | ||
1890 | if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) { | 1904 | if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) { |
1891 | m_leds [0] = st; | 1905 | m_leds [0] = st; |
1892 | return true; | 1906 | return true; |
1893 | } | 1907 | } |
1894 | } | 1908 | } |
1895 | } | 1909 | } |
1896 | return false; | 1910 | return false; |
1897 | } | 1911 | } |
1898 | 1912 | ||
1899 | bool Zaurus::setSoftSuspend ( bool soft ) | 1913 | bool Zaurus::setSoftSuspend ( bool soft ) |
1900 | { | 1914 | { |
1901 | if (!m_embedix) { | 1915 | if (!m_embedix) { |
1902 | /* non-Embedix kernels dont have kernel autosuspend */ | 1916 | /* non-Embedix kernels dont have kernel autosuspend */ |
1903 | return ODevice::setSoftSuspend( soft ); | 1917 | return ODevice::setSoftSuspend( soft ); |
1904 | } | 1918 | } |
1905 | 1919 | ||
1906 | bool res = false; | 1920 | bool res = false; |
1907 | int fd; | 1921 | int fd; |
1908 | 1922 | ||
1909 | if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || | 1923 | if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || |
1910 | (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { | 1924 | (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { |
1911 | 1925 | ||
1912 | int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources | 1926 | int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources |
1913 | 1927 | ||
1914 | if ( sources >= 0 ) { | 1928 | if ( sources >= 0 ) { |
1915 | if ( soft ) | 1929 | if ( soft ) |
1916 | sources &= ~APM_EVT_POWER_BUTTON; | 1930 | sources &= ~APM_EVT_POWER_BUTTON; |
1917 | else | 1931 | else |
1918 | sources |= APM_EVT_POWER_BUTTON; | 1932 | sources |= APM_EVT_POWER_BUTTON; |
1919 | 1933 | ||
1920 | if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources | 1934 | if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources |
1921 | res = true; | 1935 | res = true; |
1922 | else | 1936 | else |
1923 | perror ( "APM_IOCGEVTSRC" ); | 1937 | perror ( "APM_IOCGEVTSRC" ); |
1924 | } | 1938 | } |
1925 | else | 1939 | else |
1926 | perror ( "APM_IOCGEVTSRC" ); | 1940 | perror ( "APM_IOCGEVTSRC" ); |
1927 | 1941 | ||
1928 | ::close ( fd ); | 1942 | ::close ( fd ); |
1929 | } | 1943 | } |
1930 | else | 1944 | else |
1931 | perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); | 1945 | perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); |
1932 | 1946 | ||
1933 | return res; | 1947 | return res; |
1934 | } | 1948 | } |
1935 | 1949 | ||
1936 | 1950 | ||
1937 | bool Zaurus::setDisplayBrightness ( int bright ) | 1951 | bool Zaurus::setDisplayBrightness ( int bright ) |
1938 | { | 1952 | { |
1953 | // FIXME The C7x0 have a proc-interface (/proc/drivers/corgi-bl) which | ||
1954 | // is nice to use. Currently it exposes 16+1 levels. Implement this! | ||
1955 | // (or wait for kergoth unifying the interfaces in the OpenZaurus kernel.) | ||
1939 | bool res = false; | 1956 | bool res = false; |
1940 | int fd; | 1957 | int fd; |
1941 | 1958 | ||
1942 | if ( bright > 255 ) | 1959 | if ( bright > 255 ) |
1943 | bright = 255; | 1960 | bright = 255; |
1944 | if ( bright < 0 ) | 1961 | if ( bright < 0 ) |
1945 | bright = 0; | 1962 | bright = 0; |
1946 | 1963 | ||
1947 | if (m_embedix) { | 1964 | if (m_embedix) { |
1948 | if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) { | 1965 | if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) { |
1949 | int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus | 1966 | int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus |
1950 | if ( bright && !bl ) | 1967 | if ( bright && !bl ) |
1951 | bl = 1; | 1968 | bl = 1; |
1952 | res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 ); | 1969 | res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 ); |
1953 | ::close ( fd ); | 1970 | ::close ( fd ); |
1954 | } | 1971 | } |
1955 | } else { | 1972 | } else { |
1956 | #define FB_BACKLIGHT_SET_BRIGHTNESS _IOW('F', 1, u_int) /* set brightness */ | 1973 | #define FB_BACKLIGHT_SET_BRIGHTNESS _IOW('F', 1, u_int) /* set brightness */ |
1957 | if (( fd = ::open ( "/dev/fb0", O_WRONLY )) >= 0 ) { | 1974 | if (( fd = ::open ( "/dev/fb0", O_WRONLY )) >= 0 ) { |
1958 | res = ( ::ioctl ( fd , FB_BACKLIGHT_SET_BRIGHTNESS, bright ) == 0 ); | 1975 | res = ( ::ioctl ( fd , FB_BACKLIGHT_SET_BRIGHTNESS, bright ) == 0 ); |
1959 | ::close ( fd ); | 1976 | ::close ( fd ); |
1960 | } | 1977 | } |
1961 | } | 1978 | } |
1962 | return res; | 1979 | return res; |
1963 | } | 1980 | } |
1964 | 1981 | ||
1965 | 1982 | ||
1966 | int Zaurus::displayBrightnessResolution ( ) const | 1983 | int Zaurus::displayBrightnessResolution ( ) const |
1967 | { | 1984 | { |
1968 | if (m_embedix) | 1985 | if (m_embedix) |
1969 | return 5; | 1986 | return 5; |
1970 | else | 1987 | else |
1971 | return 256; | 1988 | return 256; |
1972 | } | 1989 | } |
1973 | 1990 | ||
1974 | /************************************************** | 1991 | /************************************************** |
1975 | * | 1992 | * |
1976 | * SIMpad | 1993 | * SIMpad |
1977 | * | 1994 | * |
1978 | **************************************************/ | 1995 | **************************************************/ |
1979 | 1996 | ||
1980 | void SIMpad::init ( ) | 1997 | void SIMpad::init ( ) |
1981 | { | 1998 | { |
1982 | d-> m_vendorstr = "SIEMENS"; | 1999 | d-> m_vendorstr = "SIEMENS"; |
1983 | d-> m_vendor = Vendor_SIEMENS; | 2000 | d-> m_vendor = Vendor_SIEMENS; |
1984 | 2001 | ||
1985 | QFile f ( "/proc/hal/model" ); | 2002 | QFile f ( "/proc/hal/model" ); |
1986 | 2003 | ||
1987 | //TODO Implement model checking | 2004 | //TODO Implement model checking |
1988 | //FIXME For now we assume an SL4 | 2005 | //FIXME For now we assume an SL4 |
1989 | 2006 | ||
1990 | d-> m_modelstr = "SL4"; | 2007 | d-> m_modelstr = "SL4"; |
1991 | d-> m_model = Model_SIMpad_SL4; | 2008 | d-> m_model = Model_SIMpad_SL4; |
1992 | 2009 | ||
1993 | switch ( d-> m_model ) { | 2010 | switch ( d-> m_model ) { |
1994 | default: | 2011 | default: |
1995 | d-> m_rotation = Rot0; | 2012 | d-> m_rotation = Rot0; |
1996 | d-> m_direction = CCW; | 2013 | d-> m_direction = CCW; |
1997 | d-> m_holdtime = 1000; // 1000ms | 2014 | d-> m_holdtime = 1000; // 1000ms |
1998 | 2015 | ||
1999 | break; | 2016 | break; |
2000 | } | 2017 | } |
2001 | 2018 | ||
2002 | f. setName ( "/etc/familiar-version" ); | 2019 | f. setName ( "/etc/familiar-version" ); |