Originally posted by jaxa
View Post
Announcement
Collapse
No announcement yet.
Raspberry Pi Supply Chain Issues Beginning To Ease Up
Collapse
X
-
-
Originally posted by coder View PostAgreed. The Pi is like a Swiss Army Knife. Its strength is in its versatility, but it can't be all things to all people. If you need to do anything serious, you really want a more purpose-built tool. Furthermore, the Pi's port layout really isn't ideal for a mini-desktop.
If they maintain the $35 base price for Pi5, then there's nothing to worry about. If they do something like raise it to $50, but point to the Pi4 still being manufactured and sold at $35, then they'll have made a big change to their strategy. They can argue that users who don't need a desktop are still well-served by Pi4 with 1-2 GB, Pi4A if they end up making one, Pi Zero, or Pico.
Comment
-
Originally posted by jaxa View PostIt could become more things to more people with each new generation, as the performance required to have a good desktop experience is almost a non-moving target. They also continue to sell older models, the smaller form factors, and now cheaper, low-RAM models.
If they maintain the $35 base price for Pi5, then there's nothing to worry about. If they do something like raise it to $50, but point to the Pi4 still being manufactured and sold at $35, then they'll have made a big change to their strategy. They can argue that users who don't need a desktop are still well-served by Pi4 with 1-2 GB, Pi4A if they end up making one, Pi Zero, or Pico.
As for "good desktop performance", they need to address GPU performance. It's still hardly better than llvmpipe, in my experience. I know they're thinking about AI acceleration, and I dearly hope they address it via beefing up the GPU, rather than adding a purpose-built hardware block.
- Likes 1
Comment
-
I have a Pi3 B model for a super famicon-like case but I have a Pine64 Quartz64 Model A 8gb version I am waiting to dig into when I get some tinker time. I wanted badly to get the Pi 4 CM4 cluster going with one of those neat 4x ITX/mATX boards but the CM4 is in such high demand the price is insane. Even the Pine64 knockoff CM's using Rock chips are kinda high in price and there is no guarantee they will 'just work' with the motherboard.
Of all things hit by supply chain... these 'hobby' boards have suffered a lot.
Comment
-
Originally posted by BrokenAnsible View PostI wanted badly to get the Pi 4 CM4 cluster going with one of those neat 4x ITX/mATX boards but the CM4 is in such high demand the price is insane.
You can get up to 16x A72 cores in systems from Solid Run:
- Likes 1
Comment
-
Originally posted by Kabbone View Post
I have a Rock64 with a RK3328 and I would say it's quite well supported by mainline. In general I feel pine64 is doing a great job to gather community efforts to mainline as much as possible of their boards.
Mostly you are screwed if you want to use gpu acceleration, but this is not my use case normally
Have you actually tried doing any real networking on them (more then "connect to network, and internet, no more advanced")?
Why I ask is because I have three of them, and tried running them headless.
And they have one glaring problem for me: the MAC-address.
The MAC-address of the internal NIC is supposed to be generated to something machine-uniq set from the CPU-ID in the efuse.
There is code in the main line linux kernel to read this efuse [1]. However how the mainline boot-chain is supposed to do this is by having u-boot reading the efuse, generate the mac, and then handover to the linux-kernel. However mainline u-boot that for example Fedora uses and most other distros use by default do only have code to read the efuse from a rk3399. No code for rk3328. [2]
And last time I tried to boot the main line kernel from rockchips u-boot fork it failed due to main line kernel needing some things their fork failed to provide.
This results in me only being able to use these cards if I manually set a MAC-address in the env for u-boot during boot. If I do not they often get colliding MACs with all the fun stuff that is related.
That, or use a fully customer boot-chain which is not really mainline.
[1] https://git.kernel.org/pub/scm/linux...ckchip-efuse.c
[2] https://source.denx.de/u-boot/u-boot...ckchip-efuse.c
Comment
-
Originally posted by Xake View Post
What operating system are you running?
Have you actually tried doing any real networking on them (more then "connect to network, and internet, no more advanced")?
Why I ask is because I have three of them, and tried running them headless.
And they have one glaring problem for me: the MAC-address.
The MAC-address of the internal NIC is supposed to be generated to something machine-uniq set from the CPU-ID in the efuse.
There is code in the main line linux kernel to read this efuse [1]. However how the mainline boot-chain is supposed to do this is by having u-boot reading the efuse, generate the mac, and then handover to the linux-kernel. However mainline u-boot that for example Fedora uses and most other distros use by default do only have code to read the efuse from a rk3399. No code for rk3328. [2]
And last time I tried to boot the main line kernel from rockchips u-boot fork it failed due to main line kernel needing some things their fork failed to provide.
This results in me only being able to use these cards if I manually set a MAC-address in the env for u-boot during boot. If I do not they often get colliding MACs with all the fun stuff that is related.
That, or use a fully customer boot-chain which is not really mainline.
[1] https://git.kernel.org/pub/scm/linux...ckchip-efuse.c
[2] https://source.denx.de/u-boot/u-boot...ckchip-efuse.c
I was compiling the u-boot myself [1]. I had to go this route in the first place because I have one of the faulty v2 boards struggling with memory speed, so I had to lower it to become stable. In the end I upstreamed my version (except the memory clock change) to Arch, so I guess they still use it in the repos, but it fired of a bit of a discussion because people were using the setting of the MAC address which was not possible with mainline u-boot, you need the Rockchip bootloader for that. So my guess was (without looking in the source code) that this picked up the MAC from e-fuse.
Like I said this was already some time ago, seems like 2 years according to the commits in my repo and this was basically the first time I looked into u-boot so there is a possibility I picked up stuff wrong.
[1] https://git.kabtop.de/kabbone/rock64
Comment
-
Originally posted by Kabbone View PostIn general I feel pine64 is doing a great job to gather community efforts to mainline as much as possible of their boards.Originally posted by Kabbone View PostI was compiling the u-boot myself [1]. I had to go this route in the first place because I have one of the faulty v2 boards struggling with memory speed, so I had to lower it to become stable.
Originally posted by Kabbone View PostIn the end I upstreamed my version (except the memory clock change) to Arch,
Originally posted by Kabbone View Postso I guess they still use it in the repos, but it fired of a bit of a discussion because people were using the setting of the MAC address which was not possible with mainline u-boot, you need the Rockchip bootloader for that. So my guess was (without looking in the source code) that this picked up the MAC from e-fuse.
And neither pine64 nor rockchip has made much effort to make sure these patches for systems like rock64 is mainlined into uboot.
Originally posted by Kabbone View PostLike I said this was already some time ago, seems like 2 years according to the commits in my repo and this was basically the first time I looked into u-boot so there is a possibility I picked up stuff wrong.
That is fun sometimes. But sometimes the things I want to tinker more with is what is running in my docker/k8s-hosts, and be able to update running operating system without it taking a weekend of tinkering so they boot and do not all get the same MAC-address.
I would love if it actually worked good on the rock64. To be able to place the boot-loader into the SPI and use it as a kind of BIOS would be great for USB-boot or netboot.
Just connected one of my rock64 for the first time in a year and tried to boot it with Fedora37, and noticed that they do not seem to even yet have fixed so mainline uboot can detect and boot from the USB-connected SSD I just tried with (tried both USB2 and USB3). If I place uboot and "/boot" on a sd-card, and let it then mount root from the USB-connected SSD it works fine. But yeah, more thing not correctly mainlined and more stuff that "just works" ^TM with my raspberry PI 4 placed next to it.
So I disagree with your original statement still.
Comment
-
Originally posted by Xake View Post
Having to compile your own version of uboot because pine64 has not upstreamed anything that identifies what boards are buggy and handling this is not a great job in mainlineing stuff.
Originally posted by Xake View Post
Arch is not uboot upstream. It is a distribution. One of many.
Originally posted by Xake View Post
It did not. mainline uboot has never had the patches needed to read the e-fuse. You can find it in rockchips uboot repos, however that repo is more lined towards getting all their hardware supported and booting older android or a kernel as old as the ASOP is based on, and with whatever a developer might be able to tinker into something that can boot userland. As such not much in that repo is rebased against something newer then uboot 2017. Which fails to boot many distros based on more modern mainline kernels.
And neither pine64 nor rockchip has made much effort to make sure these patches for systems like rock64 is mainlined into uboot.
Comment
Comment