| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Booting Issues
Forum: PineNote Software
Last Post: d2minik
Yesterday, 12:44 PM
» Replies: 22
» Views: 16,124
|
Window Maker Live for Pin...
Forum: Linux on Pinebook Pro
Last Post: vajak
12-24-2025, 06:00 AM
» Replies: 2
» Views: 390
|
Rrkisp issue with CSI cam...
Forum: Linux on Quartz64
Last Post: lystar
12-24-2025, 02:34 AM
» Replies: 1
» Views: 3,771
|
bookworm vs trixie discus...
Forum: Mobian on PinePhone
Last Post: Kevin Kofler
12-24-2025, 12:11 AM
» Replies: 80
» Views: 45,655
|
Fedora + Phosh for PinePh...
Forum: PinePhone Software
Last Post: shanehill@mail.com
12-23-2025, 09:12 PM
» Replies: 75
» Views: 201,026
|
Trixie - bring up the On ...
Forum: Mobian on PinePhone
Last Post: grump_fiddle_reinstall
12-23-2025, 04:34 AM
» Replies: 0
» Views: 84
|
On-Screen Keyboard Arrow ...
Forum: Mobian on PinePhone
Last Post: grump_fiddle_reinstall
12-23-2025, 04:25 AM
» Replies: 11
» Views: 6,088
|
Armbian has been released...
Forum: News
Last Post: ArmbianForSBCs
12-23-2025, 01:36 AM
» Replies: 21
» Views: 32,330
|
Alarm clock doesn’t work
Forum: Mobian on PinePhone
Last Post: biketool
12-23-2025, 12:12 AM
» Replies: 14
» Views: 24,459
|
Diagnosing and fixing fai...
Forum: PinePhone Pro Software
Last Post: biketool
12-22-2025, 11:59 PM
» Replies: 7
» Views: 637
|
|
|
| What is name of gpio hardware on a rock64? |
|
Posted by: gene83 - 10-04-2017, 12:04 PM - Forum: Linux on Rock64
- Replies (6)
|
 |
The driver code checks for it, and will return a valid answer if its a bcm2709, bcm2835, bcm2836, or a bcm2837. Code is:
Code: #define CPUINFO_BUFSIZE (16*1024) // Should be large enough for now
static platform_t check_platform(void)
{
FILE *fp;
char *buf;
size_t fsize;
platform_t rv = RPI_UNSUPPORTED;
if(!(buf = rtapi_kmalloc(CPUINFO_BUFSIZE, RTAPI_GFP_KERNEL))) {
rtapi_print_msg(RPSPI_ERR, "hm2_rpspi: No dynamic memory\n");
return RPI_UNSUPPORTED;
}
if(!(fp = fopen("/proc/cpuinfo", "r"))) {
rtapi_print_msg(RPSPI_ERR, "hm2_rpspi: Failed to open /proc/cpuinfo\n");
goto check_exit;
}
fsize = fread(buf, 1, CPUINFO_BUFSIZE - 1, fp);
fclose(fp);
// we have truncated cpuinfo return unsupported
if(!fsize || fsize == CPUINFO_BUFSIZE - 1) {
rtapi_print_msg(RPSPI_ERR, "hm2_rpspi: Platform detection memory buffer too small\n");
goto check_exit;
}
/* NUL terminate the buffer */
buf[fsize] = '\0';
if(strstr(buf, "BCM2708")) {
rv = RPI_1;
} else if(strstr(buf, "BCM2709")) {
rv = RPI_2; //for RPI 3 too
} else if(strstr(buf, "BCM2835")) { // starting with 4.8 kernels revision tag has board details
char *rev_val = strstr(buf, "Revision");
if(rev_val) {
char *rev_start = strstr(rev_val, ": ");
unsigned long rev = strtol(rev_start + 2, NULL, 16);
if(rev <= 0xffff)
rv = RPI_1; // pre pi2 revision scheme
else {
switch((rev & 0xf000) >> 12) {
case 0: //bcm2835
rv = RPI_1;
break;
case 1: //bcm2836
case 2: //bcm2837
rv = RPI_2; // peripheral base is same on pi2/3
break;
default:
break;
}
}
}
}
check_exit:
rtapi_kfree(buf);
return rv;
}
And all the c style indenting has been stripped, so how do I post code? This sucks.
Thanks everybody.
Cheers, Gene83
|
|
|
|
not able to flash u-boot onto SD Card |
|
Posted by: consoleadam - 10-04-2017, 03:44 AM - Forum: General Discussion on ROCK64
- Replies (2)
|
 |
greetings,
I have manged to build u-boot as per http://opensource.rock-chips.com/wiki_U-Boot . However, after burning the images to SD card, booting stops before starting my built version of u-boot, i.e., no u-boot prompt!
Serial console output below, also, further down build details.
Can anyone please shed light whats wrong in the process ?
thanks
consoleadam
serial output
========
DDR version 1.06 20170424
In
LPDDR3
786MHz
Bus Width=32 Col=10 Bank=8 Row=15 CS=1 Die Bus-Width=32 Size=1024MB
ddrconfig:1
OUT
Boot1 Release Time: 2017-05-18, version: 2.43
ChipType = 0x11, emmc reinit
emmc reinit
SdmmcInit=2 20
SdmmcInit=0 0
BootCapSize=0
UserCapSize=7587MB
FwPartOffset=2000 , 0
StorageInit ok = 48039
Raw SecureMode = 0
SecureInit read PBA: 0x4
SecureInit read PBA: 0x404
SecureInit read PBA: 0x804
SecureInit read PBA: 0xc04
SecureInit read PBA: 0x1004
SecureInit ret = 0, SecureMode = 0
LoadTrustBL
No find bl30.bin
No find bl32.bin
Load uboot, ReadLba = 2000
Load OK, addr=0x200000, size=0x7b5f4
RunBL31 0x10000
NOTICE: BL31: v1.3(debug):f947c7e
NOTICE: BL31: Built : 09:28:45, May 31 2017
NOTICE: BL31:Rockchip release version: v1.3
INFO: ARM GICv2 driver initiapteed sec cpu_context!
INFO: boot cpu mask: 1
INFO: platng runtime services
WARNING: No OPTEE provided by BL2 boot loadTEE will return SMC_UNK
ERROR: Error initializing runtime sernormal world
INFO: Entry point address = 0x200000
INFO:
-------------------
Build and Flashing in details:
==================
consoleadam@barbarian:~/rock64$ git clone https://github.com/rockchip-linux/u-boot.git
consoleadam@barbarian:~/rock64/u-boot$ make ARCH=arm -j4 CROSS_COMPILE=aarch64-linux-gnu- distclean
consoleadam@barbarian:~/rock64/u-boot$ make ARCH=arm -j4 CROSS_COMPILE=aarch64-linux-gnu- evb-rk3328_defconfig all
BL2 ddr.bin & idbloader.img
-----------------------------
consoleadam@barbarian:~/rock64/u-boot$ dd if=../rkbin/rk33/rk3328_ddr_786MHz_v1.06.bin of=ddr.bin bs=4 skip=1
consoleadam@barbarian:~/rock64/u-boot$ tools/mkimage -n rk3328 -T rksd -d ddr.bin idbloader.img
consoleadam@barbarian:~/rock64/u-boot$ cat ../rkbin/rk33/rk3328_miniloader_v2.43.bin >> idbloader.img
BL3 trust.img & u-boot.img
----------------------------
consoleadam@barbarian:~/rock64/u-boot$ ../rkbin/tools/loaderimage --pack --uboot ./u-boot-dtb.bin uboot.img 0x200000
consoleadam@barbarian:~/rock64/u-boot$ cp ../rkbin/rk33/rk3328_loader_ddr786_v1.06.243.bin ./
consoleadam@barbarian:~/rock64/u-boot$ cat >trust.ini <<EOF
[VERSION]
MAJOR=1
MINOR=2
[BL30_OPTION]
SEC=0
[BL31_OPTION]
SEC=1
PATH=../rkbin/rk33/rk3328_bl31_v1.34.bin
ADDR=0x10000
[BL32_OPTION]
SEC=0
[BL33_OPTION]
SEC=0
[OUTPUT]
PATH=trust.img
EOF
consoleadam@barbarian:~/rock64/u-boot$ ../rkbin/tools/trust_merger trust.ini
flashing
---------
consoleadam@barbarian:~/rock64/u-boot$ sudo dd if=idbloader.img of=/dev/sdb seek=64 bs=512
consoleadam@barbarian:~/rock64/u-boot$ sudo dd if=uboot.img of=/dev/sdb seek=16384 bs=512
consoleadam@barbarian:~/rock64/u-boot$ sudo dd if=trust.img of=/dev/sdb seek=24576 bs=512
|
|
|
|
| eMMC Boots to Recovery Menu |
|
Posted by: Farley56 - 10-03-2017, 01:16 PM - Forum: Android on Rock64
- Replies (3)
|
 |
Had a working Android 7.1.2 eMMC. Not sure what I did to it but now it boots to the Recovery Menu but there's no keyboard or mouse response. Can't move to any selection in the menu. Reload the eMMC? Boot to an SD Card linux image and fix it from there somehow? Thanks for any tips.
|
|
|
|
| Mpeg2 playback broken in Android 0.3.6 firmware in Kodi |
|
Posted by: Blinky - 10-03-2017, 09:39 AM - Forum: Android on Rock64
- Replies (1)
|
 |
1080p Mpeg 2 video playback is broken in latest Android firmware 0.3.6
It now plays with ffmpeg CPU instead of AMCodec(Mediacodec) hardware accelerated in Kodi 17/18 and use 100% CPU.
Eg. 720x480 DVD resolution videos look much smoother now using ffmpeg to play but 720p/1080p plays with skipped frames since it is not hardware accelerated.
Can it be changed so under 720x480(DVD) resolution mpeg 2 videos play with ffmpeg but the rest play with Mediacodec hardware accelerated?
|
|
|
|
| pcsx rearmed on rock64 debian stretch does not go fullscreen |
|
Posted by: RockyBoulder - 10-03-2017, 05:39 AM - Forum: Linux on Rock64
- Replies (2)
|
 |
Hello,
anyone else tried pcsx rearmed on ayfan's debian stretch image?
My experience so far is:
If I compile it on rock64 I get wether neon nor dynacrec support which leads to a working build that is way to slow.
Another approach was to build pcsx reamerd on a raspberry pi 3 and copy over the resulting build. Don't build with neon on raspy, too but at least with the very needed dynarec support. Copied the resulting build over to the rock64: Works and is fast enough thanx to dynarec. (Mulltiarch must be installed, to make it work this way).
One Problem remains:
I only get SDL-Window-Output. No fullscreen. Any ideas?
BTW: Controller works too, tried a Steamcontroller with sc-controller.
|
|
|
|
| Mounting Screws |
|
Posted by: S265 - 10-02-2017, 07:25 PM - Forum: General Discussion on ROCK64
- Replies (3)
|
 |
Just wondering how you guys mount your board? I tried to use some of the screws left over from PC motherboards. They were often supplied with a million screws for this or that. Anyway my smallest screws would not fit the tiny ROCK64. Even the small brass nuts for offsetting a motherboard from its surrounding case would not fit. Dare I say it but - can we enlarge the hole a tiny bit? Or is this a big no-no. Looking for ideas on this.
|
|
|
|
my first impressions |
|
Posted by: llornkcor0 - 10-02-2017, 07:05 PM - Forum: General Discussion on Pinebook
- Replies (1)
|
 |
I have had the laptop for over a month or so and my first impressions are: excellent for a ~$100 laptop! My 12 year old son claimed it as his and wanted to use it for his laptop next year at school. I had to pry it from his hands!
There are a few things that bother me, though, and a few software issues are well.
Hardware:
The display/lid section is heavier than the keyboard section and is a bit difficult to open as the hinge needs to be stiff and lifts up with keyboard, so it takes two hands to open. I like the keyboard and actually feels nice, although the space bar seems flimsier than the rest of the keys.
Standby/suspend battery life is quite excellent. I had forgotten about it, and turned it on after a week or two, and still plenty of battery left.
It seems hardier than I had expected it to be.
Software:
Android - I didn't spend too much time with android here, other than to see that it ran and I could do a few things with it.
Linux - My biggest niggle is that I could not get bluetooth audio working. As in a bluetooth speaker. It would always just play through the speakers, which indicates a (hw)routing issue, which a way too quiet. Ok for a quiet room.
Some flickering of the display from time to time, but generally is ok.
I installed LXQT and am happy for the performance, noting that this is not a beefy developers laptop.
|
|
|
|
|