Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,941
» Latest member: Lesliehiz
» Forum threads: 16,330
» Forum posts: 117,428

Full Statistics

Latest Threads
dead Pinebook - help plea...
Forum: General Discussion on Pinebook Pro
Last Post: williamcorlin
03-26-2026, 04:22 PM
» Replies: 3
» Views: 659
Womens In Your City - Ano...
Forum: General
Last Post: Hipocrates
03-26-2026, 01:01 AM
» Replies: 0
» Views: 78
BT PAN - we need iptables...
Forum: Mobian on PinePhone
Last Post: biketool
03-25-2026, 12:57 PM
» Replies: 1
» Views: 463
How can I record video on...
Forum: General Discussion on PinePhone
Last Post: baptx
03-25-2026, 12:55 PM
» Replies: 23
» Views: 18,412
u-boot rk356х (rockchip r...
Forum: Quartz64 Tutorials
Last Post: hamsterbacke
03-25-2026, 09:39 AM
» Replies: 18
» Views: 34,018
A/V output enable
Forum: Linux on Rock64
Last Post: 8lall0
03-24-2026, 04:45 PM
» Replies: 0
» Views: 73
If your USB-C port is fla...
Forum: PinePhone Pro Hardware
Last Post: Zebulon Walton
03-24-2026, 02:25 PM
» Replies: 0
» Views: 94
Pinebook problem
Forum: General Discussion on Pinebook Pro
Last Post: RicTor
03-18-2026, 08:58 AM
» Replies: 2
» Views: 4,691
Pine a64+ power supply
Forum: General Discussion on PINE A64(+)
Last Post: davidspencer
03-18-2026, 01:02 AM
» Replies: 0
» Views: 176
Private / self-hosted "Cl...
Forum: General Discussion on PinePhone
Last Post: cyberb123
03-17-2026, 11:57 AM
» Replies: 8
» Views: 7,224

 
  PinePhone won't boot
Posted by: amadeusp81 - 11-08-2020, 11:36 AM - Forum: General Discussion on PinePhone - Replies (25)

Hello everyone

I got my "Manjaro Community Edition with Convergence Package" a couple of days ago and tried to set the phone up yesterday.

The first time I tried to boot it, I just removed the battery seal, connected it to USB power and gave it a go with no SIM and no SD inserted. A red LED in the upper left corner of the phone started to light up, but the screen did not do anything. After maybe 15 seconds the red LED went off. I retried several times to power on the phone, but it would just not boot.
I assumed that maybe there is no OS on the internal memory, so I went ahead, downloaded beta1-20201104 of Manjaro Phosh and burned it to the SD with dd.

I then inserted the SD into the PinePhone and tried to start it up several times. All I ever got was the red LED. After maybe 10 attempts to boot the PinePhone, the screen was finally lid and I saw the Manjaro logo alongside a loading animation for about a minute before the device has switched itself off again. I was unable to make it boot ever since. All I ever see is the red LED.

I tried to find my way around the wiki, but couldn't find a useful starting point for my case.

Should I try to have a look at the logs on the SD?

Many thanks for your help in advance.

PD: I am new to Linux. Smile


  Recommended window managers?
Posted by: p11 - 11-08-2020, 08:18 AM - Forum: Manjaro on PinePhone - Replies (3)

Phosh is nice at first, but I'm not really happy with it:

* HDMI is not always recognized
* windows do not always fit on the screen. Often they are just too big. Mostly settings windows of other applicaions (which also appear as floating windows in other tiling window managers; can it be that hard to make all windows fullscreen by default?)
* some features expected for a phone are missing

Are there other mobile window managers, I can try on Manjaro?
I tried to run Plasma, but I think it was the desktop variant.

On most systems I use i3, but I think, there's nothing similar yet for mobile. Is it?


  Possible battery and performance improvement
Posted by: xehartnort - 11-08-2020, 07:40 AM - Forum: Linux on Pinebook Pro - Replies (4)

Dear pinebook pro users,

I have spent a certain amount of time reading about the pinebook pro cpu voltages (rk3399) in pine64 wiki overclocking and I have come up with two ideas:

1 - Improve battery by adding a slight undervolt:
The default cpu clocks and voltages for rk3399 big cores are the following (Extracted from https://github.com/torvalds/linux/blob/m...9-opp.dtsi):

Cpu clock - Cpu voltage

408Mhz - 800mV
600Mhz - 800mV
816Mhz - 825mV
1008MHz - 875mV
1200MHz - 950mV
1416MHz - 1025mV
1608Mhz - 1100mV
1800Mhz - 1200mV

As suggested by the wiki, more optimised voltages can be found in: https://github.com/torvalds/linux/blob/m...1-opp.dtsi which are the voltages used in some chromebooks with the rk3399:

Cpu clock - Cpu voltage
408Mhz - 800mV
600Mhz - 800mV
816Mhz - 825mV
1008MHz - 850mV
1200MHz - 900mV
1416MHz - 975mV
1608Mhz - 1050mV
1800Mhz - 1115mV
2016Mhz - 1250mV [last freq can be skipped as it requires a slight overclock]

1.1 - How to apply such improved voltages?

The default ones can be overrided in arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts . This has been already done by tsys in its kernel to overclock to 2000Mhz - 1300mV ( https://gitlab.manjaro.org/tsys/linux-pi...ok-pro.dts ):

Code:
&cluster1_opp {
  opp08 {
    opp-hz = /bits/ 64 <2000000000>;
    opp-microvolt = <1300000>;
  };
};

So in our case we want to change it to the following:

Code:
&cluster1_opp {
  opp03 {
    opp-hz = /bits/ 64 <1008000000>;
    opp-microvolt = <850000>;
  };
  opp04 {
    opp-hz = /bits/ 64 <1200000000>;
    opp-microvolt = <900000>;
  };
  opp05 {
    opp-hz = /bits/ 64 <1416000000>;
    opp-microvolt = <975000>;
  };
  opp06 {
    opp-hz = /bits/ 64 <1608000000>;
    opp-microvolt = <1050000>;
  };
  opp07 {
    opp-hz = /bits/ 64 <1800000000>;
    opp-microvolt = <1150000>;
  };

};
then recompile the kernel, and the new values should be in place Smile

2 - Improve CPU performance with a small overclock:

The main concern with overclocking the CPU in this laptop is that when attached to the charger, the battery will discharge when it is under a big load. My guess is that with the overclock proposed in rk3399-op1-opp.dtsi , the discharging problem can be solved as we are not exceeding the "The highest safe voltage [...] for the big cores is 1.25V" (extracted from the overclocking wiki mentioned at the beginning of the post):

2016Mhz - 1250mV

2.1 - How to apply such overclock?

Following the same guide as for the improved voltages (Section 1.1), we need to add:
Code:
  opp08{
   opp-hz = /bits/ 64 <2016000000>;
   opp-microvolt = <1250000>;
  };


As I don't own a pinebook pro, I can't test any of the proposed changes. Would anyone try them and report if they are stable?


  After update the green light comes on then the system hangs
Posted by: joz_mak - 11-07-2020, 07:04 PM - Forum: Mobian on PinePhone - Replies (6)

Hello,

I have a postmarket phone that has run very well up until now. Today, I upgraded mobian, I turned off the phone, waited a few minites and restarted it but only the green light came on then nothing. I made a fresh re-install, upgraded the system, rebooted and I ended up exactly in the same situation like before - the green light comes on and the phone hangs.


  its really beta
Posted by: quantumphoton - 11-07-2020, 05:29 PM - Forum: PostmarketOS on PinePhone - Replies (6)

i didnt know it was so beta
ive used linux for ten years
but i'm afraid to tinker with
anything on my phone in case
the system becomes unstable...


  timezone offsets all set to null suddenly.
Posted by: pjsf - 11-07-2020, 05:16 PM - Forum: Manjaro on PinePhone - Replies (2)

suddenly today all of my timezone offsets are null.which causes the system time to jump to the end of 2115. I've tried reinstalling tzdata, but that doesn't help. any ideas?


Bug eMMC Fails After Suspend
Posted by: Lodj - 11-07-2020, 02:48 PM - Forum: Linux on Pinebook Pro - Replies (3)

Most of the time, after the device going to sleep and waking up, everything works fine. But on occasion, when the device wakes up, the eMMC does not, and disk requests hang. For example, if I had a terminal already open and type 'ls' in it, it hangs. As one might expect, the DE also starts falling apart rather quickly.

Does anyone know what the issue here is? Is my eMMC chip bad, do I need a new u-boot firmware, is it a kernel or userspace bug?


  New PBP crashing every 5 min
Posted by: Lane23 - 11-07-2020, 02:34 PM - Forum: General Discussion on Pinebook Pro - Replies (2)

Started up my new PBP this morning, install goes well.  A few minutes after initial boot, the screen freezes - I can use the mouse but nothing works.  Tried letting it sit for 5 minutes or so, no dice.  Had to shutdown.  Have restarted 5 times now and the same issue issue persists.  Can’t seem to do anything in settings or terminal before it freezes.  Any advice??

Thanks for reading Smile


  Emmc drive gone? Flashing with Jump Drive
Posted by: muemmel - 11-07-2020, 02:14 PM - Forum: PinePhone Software - Replies (2)

Hi,
 I wanted to flash the another os to the emmc drive.

Therefore I used jumpdrive 0.6 alpha to flash it (https://wiki.pine64.org/index.php/PinePh..._Jumpdrivehttps://github.com/dreemurrs-embedded/Ju.../releases/)

the old os was mounted to /dev/sdb with sdb1 and sdb2 (root, boot)

No I can't find the emmc anymore. Guess, I would have need to mount it into the root partion only and not the whole emmc? So, the drive is gone forever or can it be flashed with uart?


  How to Monitor Power Management Changes?
Posted by: Lousy Fisherman - 11-07-2020, 12:43 PM - Forum: PinePhone Software - Replies (1)

Does anyone know where or how to catch signals from the power management module. DBUS? /proc? I am porting kalliope and I need to shut down whenever the phone sleeps or suspends or even blanks the screen.

Between ACPI, DPM, pm_utils and Crust I am not sure where to look. Or what to look for.

TIA
LF