Jump to content

Recommended Posts

Posted
  On 6/3/2020 at 9:20 PM, manuti said:

I pass the test fromhttps://github.com/armbian/testings/

Any additional information?

Expand  

 

Thanks for confirming that it works. Focal images are also fixed and uploaded by now.


Well, its good that it works ... at all. I don't have this board so I can't test, but I am soon getting one. And it will be added to the autotest rig.

Posted
  On 6/3/2020 at 9:34 PM, Igor said:

Focal images

Expand  

Downloaded and tested, but Focal 5.6 never boot. Etcher burned OK. Same microSD, same board, same power source, same Ethernet cable than Debian Buster. 

 

I'm going to download again to double check. 

Posted

Just checked Armbian_21.02.0-trunk.4_Rockpi-s_buster_current_5.9.11_minimal image.
Wifi works, USB doesn't (lsusb gives no output).
Also, available frequencies are limited to 1008000, while with the legacy kernel  max freq is 1296000.

 

Here's the report:

+BOOT=yes
+VERSION=21.02.0-trunk.4
+KERNEL=5.9.11-rockchip64
+NETWORK=NT
+WIRELESS=yes
+HDMI=NA
+USB=no
+DVFS=NT
+ARMBIANMONITOR=http://ix.io/2G2R

Posted
  On 11/30/2020 at 4:16 PM, Kalobok said:

Just checked Armbian_21.02.0-trunk.4_Rockpi-s_buster_current_5.9.11_minimal image.
Wifi works, USB doesn't (lsusb gives no output).
Also, available frequencies are limited to 1008000, while with the legacy kernel  max freq is 1296000.

 

Here's the report:

+BOOT=yes
+VERSION=21.02.0-trunk.4
+KERNEL=5.9.11-rockchip64
+NETWORK=NT
+WIRELESS=yes
+HDMI=NA
+USB=no
+DVFS=NT
+ARMBIANMONITOR=http://ix.io/2G2R

Expand  



Do you recall if USB was working on older images? Around the 5.5/6 kernel?

Posted

Yep, I have a feeling I never added the USB nodes to the device tree.

Similar story with the CPU, 1008000 is the max frequency in the upstream dtsi, but the 4.4.x kernel from Rockchip added higher 1296000 and some tuning that needs to be patched in as well.

It should be all be trivial, but I don't have a device to test right now.. If your willing to test, can show you what to edit and once confirmed, we can add the patches to the build system..

 

Posted
  On 12/10/2020 at 12:22 PM, ashthespy said:

Yep, I have a feeling I never added the USB nodes to the device tree.

Similar story with the CPU, 1008000 is the max frequency in the upstream dtsi, but the 4.4.x kernel from Rockchip added higher 1296000 and some tuning that needs to be patched in as well.

It should be all be trivial, but I don't have a device to test right now.. If your willing to test, can show you what to edit and once confirmed, we can add the patches to the build system..

 

Expand  

Yes, I'd like to test, please provide me instructions.

Posted (edited)

For usb, I try this:

 

  Reveal hidden contents

 

But :

 

dmesg | grep usb
[    0.000000] Kernel command line: root=UUID=a1255f02-b778-4121-85dd-b01a09bf801b rootwait rootfstype=ext4 console=ttyS0,1500000  consoleblank=0 loglevel=1 ubootpart=408ad6cd-01 usb-storage.quirks=0x2537:0x1066:u,0x2537:0x1068:u swiotlb=1024  cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1
[    1.365523] usbcore: registered new interface driver usbfs
[    1.365593] usbcore: registered new interface driver hub
[    1.365865] usbcore: registered new device driver usb
[    2.900775] usbcore: registered new interface driver usb-storage
[    2.995068] usbcore: registered new interface driver usbhid
[    2.995074] usbhid: USB HID core driver

lsusb | wc -l
0

 

On radxa image I have :

 

  Reveal hidden contents

 

 

Edited by TRS-80
put long output inside spoiler
Posted

I forgot this:

  Reveal hidden contents

And I fixed this : cp ../armbian-build/config/kernel/linux-rockchip64-current.config .config
But again no device found.

  Reveal hidden contents

I can use armbian with kernel 4.4 for the moment, but I must compile the gpio-ir-recv module, it works
and I have a lot of lines "rc rc0: IR event FIFO is full!" in syslog. With armbian and kernel 5.9 this
module is present and works without these lines.
Perhaps a little effort to fix usb may be better.
 

Posted
  Reveal hidden contents

Super ! Thank you very much !

Posted

@ashthespy, thanks for the hint.

 

USB hubs are now available:

  Quote

anton@rockpi-s:~$ sudo lsusb
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Expand  

But USB devices are not recognized.  

 

Also, max frequency is limited to 1008000

  Quote

anton@rockpi-s:~$ cat /sys/devices/system/cpu/cpufreq/policy0/scaling_available_frequencies
408000 600000 816000 1008000

Expand  

 

Posted
  On 12/17/2020 at 5:06 PM, Kalobok said:

Also, max frequency is limited to 1008000

Expand  


I am not really an expert - but is this a big issue? If it is, we can port the dts patches over from Rockchips's 4.4 kernel..

  

  On 12/17/2020 at 5:06 PM, Kalobok said:

But USB devices are not recognized.  

Expand  


Not sure what is going on then, sorry I am away for the board right now to be of any debugging use..
 

 

Posted
  On 12/18/2020 at 9:56 AM, ashthespy said:

I am not really an expert - but is this a big issue? If it is, we can port the dts patches over from Rockchips's 4.4 kernel..

Expand  

Well, if it's possible, why not to include it? Especially that it's almost 30% increase in frequency. Since the board doesn't tend to overheat, there should be no thermal issues.

Also (and it's quite subjective, I admit), I have an impression that the board is somewhat slow when it has to generate web content for rpimonitor.

 

PS Tried usb with custom-built kernel - the same result (USB hubs are present but devices are not recognized).

Posted

Your usb patch is working for me. My conbee 2 stick was recognised succesfully. Hope it will arrive soon in stable build to get rid of the old kernel.

 

A patch for "normal" cpu speed would be nice to but for my use case its more a nice to have.

Posted
  On 6/4/2020 at 5:31 AM, Igor said:


OK, One problem fixed, more to go ;) Thanks.

Expand  

Wi-Fi issues again

My Rock Pi S show me two Wi-Fi devices but the board only have one, the built-in interface.

Also the wireless connection is unpredictable sometimes shows SSH port sometimes not, sometimes I can find using the Avahi daemon sometimes not...

 

I uploaded the testing from armbian-config tool http://ix.io/2O1s

I also added an image from "nmtui"

 

Any ideas?

 

Screenshot_20210201_231255.jpg

Posted

Rockpi S is not supported and the last release is on 26-Aug-2021.
I have tested armbian 22.08 with bullseye and kernel 5.18 (edge), and it works. My usage: ethernet, usb, audio dac lineout, ir, i2c, spi, gpio.
With kernel 5.15 (current), module snd_soc_rk3308 is loaded, but there is no audio device.

How to build on debian with cross compilers installed :
 

df -h .  # 6,5G needed
git clone https://github.com/armbian/build.git armbian-build
cd armbian-build
sudo apt install debootstrap
sudo modprobe loop
systemd-run -p CPUQuota=$((`nproc`*50))% --scope bash -c './compile.sh BOARD=rockpi-s BRANCH=edge BUILD_MINIMAL=yes BUILD_DESKTOP=no KERNEL_ONLY=no KERNEL_CONFIGURE=no CLEAN_LEVEL=, RELEASE=bullseye SKIP_EXTERNAL_TOOLCHAINS=yes'
cd output/images
ls -l Armbian_22.08.0-trunk_Rockpi-s_bullseye_edge_5.18.5_minimal.img
-rw-rw-r-- 1 root sudo 1061158912 19 juin  21:16 Armbian_22.08.0-trunk_Rockpi-s_bullseye_edge_5.18.5_minimal.img

 

Posted

I realize that the Rockpi S is no longer officially supported.

Why was it dropped?

 

My application does not require audio.

What are the other problems with this board?

I like it because it draws only about 600mW, has built-in Ethernet and 2 USB ports.

 

The last release that supported it [Armbian 22.05] seems to work reasonably well for me.

WiFi, LAN and USB were OK.

SD card works but I could not access the SD flash (4-bit wide EMMC)

 

Running the build instructions posted by sbeaugrand on June 20 now...

 

Any insights appreciated!

 

Posted
  On 6/30/2022 at 8:08 AM, brentr said:

I realize that the Rockpi S is no longer officially supported.

Why was it dropped?

Expand  

Hi Brent,

We don't have a maintainer for this board and we have no budget for development.
If you want to get involved and maintain the Rockpi S, then Armbian is the ideal platform and it would be great if you could to join the team.

https://docs.armbian.com/User-Guide_Board-Support-Rules/

https://www.armbian.com/newsflash/armbian-needs-your-help/

The board is community supported, so you could build an image using the Armbian Build system: https://docs.armbian.com/Developer-Guide_Build-Preparation/

sbeaugrand's post above says that armbian 22.08 with bullseye and kernel 5.18 (edge) worked.  That's a current build.
 

Or you could try some images from the archives: https://www.armbian.com/rockpi-s/#kernels-archive-all

Posted

SD NAND device working!

 

The RockPi S is optionally fitted with an "SD nand" chip.

Near as I can tell, the SD NAND is just an EMMC limited to a 4-bit data bus.

The file rk3308-rock-pi-s.dts has this EMMC defined with status: "disabled"

I merely changed it to "okay" and, voila, the SD NAND works!

 

The odd thing is that the unmodified u-boot has no trouble accessing the SD NAND,

even though the SDnand is also "disabled" in u-boot's dts files.

 

Question:

  I don't have a RockPi S without the SDnand chip.

  If someone does, could they verify that "enable"ing the non-existent part doesn't cause a kernel crash or hang?

  Also, what is your u-boot doing with the missing SDnand device?  Do you see two mmc devices or one?

 

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines