Send commitlog mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:

   1. r2059 - trunk/src/target/OM-2007/openmoko-libs/libmokogsmd
      ([EMAIL PROTECTED])
   2. r2060 - in trunk/src/target/OM-2007/openmoko-libs: .
      libmokogsmd ([EMAIL PROTECTED])
   3. r2061 - trunk/src/target/u-boot/patches
      ([EMAIL PROTECTED])
   4. r2062 - trunk/src/target/u-boot/patches
      ([EMAIL PROTECTED])
   5. r2063 - trunk/src/target/kernel/patches
      ([EMAIL PROTECTED])
--- Begin Message ---
Author: mickey
Date: 2007-05-22 13:44:00 +0200 (Tue, 22 May 2007)
New Revision: 2059

Modified:
   trunk/src/target/OM-2007/openmoko-libs/libmokogsmd/moko-gsmd-connection.h
Log:
libmokogsmd: add prototype for pin-requested signal


Modified: 
trunk/src/target/OM-2007/openmoko-libs/libmokogsmd/moko-gsmd-connection.h
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokogsmd/moko-gsmd-connection.h   
2007-05-22 11:15:33 UTC (rev 2058)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokogsmd/moko-gsmd-connection.h   
2007-05-22 11:44:00 UTC (rev 2059)
@@ -68,6 +68,7 @@
 /* signals */
 void moko_gsmd_connection_incoming_call(MokoGsmdConnection* self, int type);
 void moko_gsmd_connection_call_status_progress(MokoGsmdConnection* self, int 
type);
+void moko_gsmd_connection_pin_requested(MokoGsmdConnection* self, int type);
 //sms
 //gprs
 void moko_gsmd_connection_incoming_clip(MokoGsmdConnection* self, const char* 
number);




--- End Message ---
--- Begin Message ---
Author: mickey
Date: 2007-05-22 14:03:10 +0200 (Tue, 22 May 2007)
New Revision: 2060

Modified:
   trunk/src/target/OM-2007/openmoko-libs/ChangeLog
   trunk/src/target/OM-2007/openmoko-libs/libmokogsmd/moko-gsmd-connection.c
Log:
libmokogsmd: actually emit 'requested-pin' signal


Modified: trunk/src/target/OM-2007/openmoko-libs/ChangeLog
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/ChangeLog    2007-05-22 11:44:00 UTC 
(rev 2059)
+++ trunk/src/target/OM-2007/openmoko-libs/ChangeLog    2007-05-22 12:03:10 UTC 
(rev 2060)
@@ -1,3 +1,9 @@
+2007-05-22  Michael Lauer <[EMAIL PROTECTED]>
+
+       * libmokogsmd/moko-gsmd-connection.h: Add prototype for PIN request 
signal
+       * libmokogsmd/moko-gsmd-connection.c:
+       (_moko_gsmd_connection_eventhandler): Emit PIN request signal
+
 2007-05-22  Thomas Wood  <[EMAIL PROTECTED]>
 
        * libmokogsmd/moko-gsmd-connection.c:
@@ -112,7 +118,7 @@
        * libmokoui/moko-stock.h:
        Add moko-stock for adding OpenMoko stock items
 
-2007-04-27 Dodji Seketeli <[EMAIL PROTECTED]>
+2007-04-27 Dodji Seketeli <[EMAIL PROTECTED]>
 
        * src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-journal.c:
          changed the caller/callee number props into local/distant props.

Modified: 
trunk/src/target/OM-2007/openmoko-libs/libmokogsmd/moko-gsmd-connection.c
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokogsmd/moko-gsmd-connection.c   
2007-05-22 11:44:00 UTC (rev 2059)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokogsmd/moko-gsmd-connection.c   
2007-05-22 12:03:10 UTC (rev 2060)
@@ -276,7 +276,7 @@
         case GSMD_EVT_SIGNAL:
             g_signal_emit( G_OBJECT(self), 
moko_gsmd_connection_signals[SIGNAL_GSMD_EVT_SIGNAL], 0, 
aux->u.signal.sigq.rssi ); break;
         case GSMD_EVT_PIN:
-            //moko_gsmd_connection_signals[SIGNAL_GSMD_EVT_PIN]; break;
+            g_signal_emit( G_OBJECT(self), 
moko_gsmd_connection_signals[SIGNAL_GSMD_EVT_PIN], 0, aux->u.pin.type ); break;
         case GSMD_EVT_OUT_STATUS:
             g_signal_emit( G_OBJECT(self), 
moko_gsmd_connection_signals[SIGNAL_GSMD_EVT_OUT_STATUS], 0, 
aux->u.call_status.prog ); break;
         case GSMD_EVT_OUT_COLP:
@@ -360,7 +360,8 @@
 {
     MokoGsmdConnectionPrivate* priv = GSMD_CONNECTION_GET_PRIVATE(self);
     g_return_if_fail( priv->handle );
-    lgsm_phone_power( priv->handle, on ? 1 : 0 );
+    int result = lgsm_phone_power( priv->handle, on ? 1 : 0 );
+    g_debug( "lgsm_phone_power returned %d", result );
 }
 
 void moko_gsmd_connection_voice_accept(MokoGsmdConnection* self)




--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-05-22 16:35:49 +0200 (Tue, 22 May 2007)
New Revision: 2061

Modified:
   trunk/src/target/u-boot/patches/uboot-hxd8.patch
Log:
hxd8 changes (Matt Hsu):
1) USB charge enable
2) use correct PMU wake up condition
3) PMU PWM enable (for backlight)
4) back light enable
5) turn off RF power at startup


Modified: trunk/src/target/u-boot/patches/uboot-hxd8.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-hxd8.patch    2007-05-22 12:03:10 UTC 
(rev 2060)
+++ trunk/src/target/u-boot/patches/uboot-hxd8.patch    2007-05-22 14:35:49 UTC 
(rev 2061)
@@ -88,7 +88,7 @@
 ===================================================================
 --- /dev/null
 +++ u-boot/board/hxd8/hxd8.c
-@@ -0,0 +1,170 @@
+@@ -0,0 +1,172 @@
 +/*
 + * (C) Copyright 2007 by OpenMoko, Inc.
 + * Author: Harald Welte <[EMAIL PROTECTED]>
@@ -130,7 +130,7 @@
 +#define M_MDIV        0xC3
 +#define M_PDIV        0x4
 +#define M_SDIV        0x1
-+#elif FCLK_SPEED==1   
++#elif FCLK_SPEED==1
 +#if 0
 +#define M_MDIV        0x6e    /* Fout = 399.65MHz */
 +#define M_PDIV        0x3
@@ -204,6 +204,8 @@
 +      gpio->GPHUP = 0x000007FF;
 +      gpio->GPJCON = 0x00000000;
 +
++      /* USB CHG enable */
++      gpio->GPGDAT |= ( 1 << 11);
 +#if 0
 +      /* USB Device Part */
 +      /*GPGCON is reset for USB Device */
@@ -772,8 +774,8 @@
 +                                PCF50606_INT2_CHGWDEXP,
 +      [PCF50606_REG_INT3M]    = PCF50606_INT3_TSCPRES,
 +      [PCF50606_REG_OOCC1]    = PCF50606_OOCC1_RTCWAK |
-+                                PCF50606_OOCC1_CHGWAK |
-+                                PCF50606_OOCC1_EXTONWAK_HIGH,
++                                PCF50606_OOCC1_CHGWAK &
++                                PCF50606_OOCC1_EXTONWAK_NO_WAKEUP,
 +      [PCF50606_REG_OOCC2]    = PCF50606_OOCC2_ONKEYDB_14ms |
 +                                PCF50606_OOCC2_EXTONDB_14ms,
 +      /* gap */
@@ -788,7 +790,7 @@
 +      [PCF50606_REG_DCDEC1]   = 0xe8, /* IO1_3V3: off */
 +      [PCF50606_REG_DCDEC2]   = 0x00,
 +
-+      [PCF50606_REG_DCUDC1]   = 0xe8, /* RF_3V3: on */
++      [PCF50606_REG_DCUDC1]   = 0x08, /* RF_3V3: off */
 +      [PCF50606_REG_DCUDC2]   = 0x30, /* 1.25A current limit */
 +
 +      [PCF50606_REG_IOREGC]   = 0xf8, /* AUDIO_3V3: on */
@@ -811,11 +813,11 @@
 +      /* gap */
 +      [PCF50606_REG_ACDC1]    = 0x00,
 +      [PCF50606_REG_BVMC]     = PCF50606_BVMC_THRSHLD_3V3,
-+      [PCF50606_REG_PWMC1]    = 0x00,
++      [PCF50606_REG_PWMC1]    = 0x1f, /* clock: 512 DC: 15/16*/
 +      [PCF50606_REG_LEDC1]    = 0x00,
 +      [PCF50606_REG_LEDC2]    = 0x00,
-+      [PCF50606_REG_GPOC1]    = 0x00,
-+      [PCF50606_REG_GPOC2]    = 0x00,
++      [PCF50606_REG_GPOC1]    = 0x03, /* PWM ACTIVE */
++      [PCF50606_REG_GPOC2]    = 0x07, /* back light pull low */
 +      [PCF50606_REG_GPOC3]    = 0x00,
 +      [PCF50606_REG_GPOC4]    = 0x00,
 +      [PCF50606_REG_GPOC5]    = 0x00,




--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-05-22 16:43:54 +0200 (Tue, 22 May 2007)
New Revision: 2062

Modified:
   trunk/src/target/u-boot/patches/uboot-20061030-neo1973.patch
Log:
add definition PCF50606_OOCC1_EXTONWAK_NO_WAKEUP


Modified: trunk/src/target/u-boot/patches/uboot-20061030-neo1973.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-20061030-neo1973.patch        
2007-05-22 14:35:49 UTC (rev 2061)
+++ trunk/src/target/u-boot/patches/uboot-20061030-neo1973.patch        
2007-05-22 14:43:54 UTC (rev 2062)
@@ -177,7 +177,7 @@
 ===================================================================
 --- /dev/null
 +++ u-boot/include/pcf50606.h
-@@ -0,0 +1,272 @@
+@@ -0,0 +1,273 @@
 +#ifndef _PCF50606_H
 +#define _PCF50606_H
 +
@@ -272,6 +272,7 @@
 +      PCF50606_OOCC1_CHGWAK   = 0x20,
 +      PCF50606_OOCC1_EXTONWAK_HIGH    = 0x40,
 +      PCF50606_OOCC1_EXTONWAK_LOW     = 0x80,
++      PCF50606_OOCC1_EXTONWAK_NO_WAKEUP = 0x3f,
 +};
 +
 +enum pcf50606_reg_oocc2 {




--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-05-23 11:24:31 +0200 (Wed, 23 May 2007)
New Revision: 2063

Modified:
   trunk/src/target/kernel/patches/asoc.patch
Log:
Fix s3c24xx spinlock lockup bug from 
http://mailman.alsa-project.org/pipermail/alsa-devel/2007-May/001105.html 
(Zoltan Devai)


Modified: trunk/src/target/kernel/patches/asoc.patch
===================================================================
--- trunk/src/target/kernel/patches/asoc.patch  2007-05-22 14:43:54 UTC (rev 
2062)
+++ trunk/src/target/kernel/patches/asoc.patch  2007-05-23 09:24:31 UTC (rev 
2063)
@@ -19134,7 +19134,7 @@
 ===================================================================
 --- /dev/null
 +++ linux-2.6.21-moko/sound/soc/s3c24xx/s3c24xx-pcm.c
-@@ -0,0 +1,462 @@
+@@ -0,0 +1,464 @@
 +/*
 + * s3c24xx-pcm.c  --  ALSA Soc Audio Layer
 + *
@@ -19468,6 +19468,8 @@
 +      if (prtd == NULL)
 +              return -ENOMEM;
 +
++      spin_lock_init(&prtd->lock);
++
 +      runtime->private_data = prtd;
 +      return 0;
 +}




--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to