PinePhone modem keeps "disappearing"
#11
(01-24-2023, 09:56 AM)Kevin Kofler Wrote: Hmmm, before I start with that, one question: I see I can enter EDL/QDL mode with the instructions from:
* https://github.com/Biktorgj/quectel_eg25...l-with-adb
* https://xnux.eu/devices/feature/modem-pp...adb-access

but is there a way to get back out of that mode without flashing a firmware?

i think no, beyond reboot and/or removing battery. however, if usb connection stays stable in edl/qdl mode, i think there is an issue with firmware.
  Reply
#12
So, to keep you updated: The last few weeks, the modem has been almost always down (or rather, disconnected from the USB bus). Sometimes, it has come up for a short moment, and the occasional SMS got delivered then, but it was immediately gone again.

Attempting to flash a new firmware is also not possible if the modem does not even show up on USB. But it all looks like a hardware fault anyway.

So unfortunately, the resolution is that I have to buy a replacement. I have ordered a new PinePhone from the EU store (hoping the 2 year warranty there will cover this type of defects – it should by EU laws). The defective one was ordered directly from the Pine Store because that was the only option at the time (April 2021, the EU store was opened July 2022).
  Reply
#13
For the record, it turned out that it is not just the modem: That PinePhone's USB subsystem is completely messed up. It fails to work even with JumpDrive (the computer cannot see it on USB), whereas the new one I just received works just fine with the same JumpDrive image on the same microSD card, the same USB C-A cable and the same computer.

So I will have to resort to WiFi to transfer my data from the broken PinePhone to the new one.
  Reply
#14
(03-20-2023, 01:12 PM)Kevin Kofler Wrote: For the record, it turned out that it is not just the modem: That PinePhone's USB subsystem is completely messed up. It fails to work even with JumpDrive (the computer cannot see it on USB), whereas the new one I just received works just fine with the same JumpDrive image on the same microSD card, the same USB C-A cable and the same computer.

So I will have to resort to WiFi to transfer my data from the broken PinePhone to the new one.

what i have looked the schematics, usb is in a soc chip. although other (physical) components or chips could be the cause as well. not necessarily conclusive, but this increases my feeling that we play some kind lottery game with quality of mainboard and soc chip.
  Reply
#15
Since this is definitely a hardware issue (which I cannot fix) and the replacement I bought works (which also means I am not going to attempt any further debugging), I am marking this as resolved.
  Reply
#16
(03-22-2023, 05:28 PM)Kevin Kofler Wrote: Since this is definitely a hardware issue (which I cannot fix) and the replacement I bought works (which also means I am not going to attempt any further debugging), I am marking this as resolved.

Have you tred the IMEI rebuild on the phone with modem issues?
https://themodemdistro.com/efs_recovery
a pretty easy fix from a running pinephone.
or file a bug
https://github.com/the-modem-distro/pine...sdk/issues

At least come around a bit commenting when you can since we need critical mass of experienced users.
  Reply
#17
The modem is operating just fine when I talk to it over the virtual TTY (well, to be honest, I have not tried it with the newer PinePhone, but with the first one, that was definitely the case), it just does not come up on USB, which is what breaks things, because everything expects the modem to come up on USB. Considering that there are also other USB issues (the external port not working for data), I think this is clearly a USB issue, not a modem issue.
  Reply
#18
(12-11-2025, 04:28 PM)Kevin Kofler Wrote: The modem is operating just fine when I talk to it over the virtual TTY (well, to be honest, I have not tried it with the newer PinePhone, but with the first one, that was definitely the case), it just does not come up on USB, which is what breaks things, because everything expects the modem to come up on USB. Considering that there are also other USB issues (the external port not working for data), I think this is clearly a USB issue, not a modem issue.

I have a PPpro where the modem comes up on most USB but not as a sound device, through all of the firmware changes.
but I can see in the modem's dmesg that it is not able to create the sound device.  Even flashing to stock doesn't fix the issue.  Frustrating as I just bought this replacement system board.
  Reply
#19
I tryed a workaround for modem disappearing, maybe too soon, is only about a couple of hours and about 10 wake up process, but modem never disappeared, my workaround is:
AT+QCFG="usbnet",1
this command change type of usb
0 = PPP & QMI (default)
1= ECM
2=MBIM
3=RNDIS (only for windows, but it can work also for linux)
changing to 1, ECM, seems it fix

P.S. Do you know how send AT commands?
for example
mmcli -m any --command='AT+QCFG="usbnet",1'
for some people mmcli command can fail, there is something to do earlier if it fail, but i forgot

(09-10-2026, 06:23 AM)idice Wrote: I tryed a workaround for modem disappearing, maybe too soon, is only about a couple of hours and about 10 wake up process, but modem never disappeared, my workaround is:
AT+QCFG="usbnet",1
this command change type of usb
0 = PPP & QMI (default)
1= ECM
2=MBIM
3=RNDIS (only for windows, but it can work also for linux)
changing to 1, ECM, seems it fix

P.S. Do you know how send AT commands?
for example
mmcli -m any --command='AT+QCFG="usbnet",1'
for some people mmcli command can fail, there is something to do earlier if it fail, but i forgot

i documentated for giving mmcli command if they fail:
give these two commands

sudo service ModemManager stop
sudo /usr/sbin/ModemManager --debug

now on second shell you can give your mmcli command

after

on first sheet CTRL+C
sudo service ModemManager start
  Reply
#20
(09-10-2026, 06:23 AM)idice Wrote: I tryed a workaround for modem disappearing, maybe too soon, is only about a couple of hours and about 10 wake up process, but modem never disappeared, my workaround is:
AT+QCFG="usbnet",1
this command change type of usb
0 = PPP & QMI (default)
1= ECM
2=MBIM
3=RNDIS (only for windows, but it can work also for linux)
changing to 1, ECM, seems it fix

P.S. Do you know how send AT commands?
for example
mmcli -m any --command='AT+QCFG="usbnet",1'
for some people mmcli command can fail, there is something to do earlier if it fail, but i forgot

(09-10-2026, 06:23 AM)idice Wrote: I tryed a workaround for modem disappearing, maybe too soon, is only about a couple of hours and about 10 wake up process, but modem never disappeared, my workaround is:
AT+QCFG="usbnet",1
this command change type of usb
0 = PPP & QMI (default)
1= ECM
2=MBIM
3=RNDIS (only for windows, but it can work also for linux)
changing to 1, ECM, seems it fix

P.S. Do you know how send AT commands?
for example
mmcli -m any --command='AT+QCFG="usbnet",1'
for some people mmcli command can fail, there is something to do earlier if it fail, but i forgot

i documentated for giving mmcli command if they fail:
give these two commands

sudo service ModemManager stop
sudo /usr/sbin/ModemManager --debug

now on second shell you can give your mmcli command

after

on first sheet CTRL+C
sudo service ModemManager start

i think you are going to be disappointed.

https://forums.quectel.com/t/eg25-freque...ts/57324/5
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Pinephone + Keyboard for sale, little use ruemoo 18 14,477 08-23-2026, 12:17 AM
Last Post: Nambo
  Pinephone - broken power button rorus 14 25,364 05-17-2026, 03:52 PM
Last Post: EuvzO8
  PinePhone 16 GB – Free to a Good Home Anna 2 2,237 01-20-2026, 01:43 PM
Last Post: Anna
Sad PinePhone USB-C port and audio jack failure Kevin Kofler 4 8,594 12-11-2025, 08:57 AM
Last Post: jakfish
  Recycling pinephone as home server mdk 6 4,007 12-01-2025, 02:57 AM
Last Post: mdk
  PinePhone, PinePhone Pro, Keyboard/Accessories for sale brb78 5 3,161 11-30-2025, 05:45 AM
Last Post: biketool
  Modem Issues with the Pinephone Temmie19 5 6,617 07-02-2025, 12:50 PM
Last Post: biketool
Question Third-party cheap touchscreen/LCD for the Pinephone - lost knowledge? mikeb 2 4,871 06-21-2025, 05:19 PM
Last Post: mikeb
  Pinephone not booting sd card... bruv 1 3,580 03-25-2025, 08:51 PM
Last Post: Kevin Kofler
  FOSS fw problem - PinePhonePro, EG25 modem dukla2000 5 6,415 02-05-2025, 02:30 AM
Last Post: biketool

Forum Jump:


Users browsing this thread: 1 Guest(s)