-
Posts
77 -
Joined
-
Last visited
Content Type
Forums
Store
Crowdfunding
Applications
Events
Raffles
Community Map
Everything posted by firepower
-
@Nick A here are the files for Vontar.h618 bluetooth BCM4334B0.hcd.Murata BCM4334B0.hcd.Samsung
-
here is the complete brcm wifi BT firmware I found it may have firware useful for other wifi BT devices. brcm.zip
-
Tanix Tx6 use Wifi & Bluetooth uses SP6330-X. with 26MHz xtal. for Wifi the brcmfmac-ap6330-sdio firmware works for 26Mhz xtal for bluetooth the BCM4330B1.hcd is used but it is for 37.4MHz xtal I have tried linking to .hcd files that contain 26MHz , but still bluetooth does not work. Good News I have found BCM4330B1.hcd with 26Mhz Xtal Bluetooth is detecting and connecting devices. BCM4330B1.hcd
-
after many day of building and test I have found My TV Box Tanix Tx6 which I use build/patch/kernel/archive/warpme-6.12/0646-arm64-dts-allwinner-h616-add-Tanix-TX6s-axp313-TVbox.patch My TV Box Vontar H618 which I use build/patch/kernel/archive/warpme-6.12/0649-arm64-dts-allwinner-h618-add-vontar-h618-TVbox.patch the Android DTS use different GPIO for bluetooth hex gpio 10 11 13 or dec gpio 16 17 19 (same as transpeed) but warmme patch uses gpio 6 5 4 for my Tanix Tx6s and Vontar H618 I need to edit to Note: &r_pio is gpio connected to CPU not sure if it makes a difference to use &pio
-
How to set correctly GPIO flags in dts files?
firepower replied to TRay's topic in Advanced users - Development
/* Bit 0 express polarity */ #define GPIO_ACTIVE_HIGH 0 #define GPIO_ACTIVE_LOW 1 /* Bit 1 express single-endedness */ #define GPIO_PUSH_PULL 0 #define GPIO_SINGLE_ENDED 2 /* Bit 2 express Open drain or open source */ #define GPIO_LINE_OPEN_SOURCE 0 #define GPIO_LINE_OPEN_DRAIN 4 /* * Open Drain/Collector is the combination of single-ended open drain interface. * Open Source/Emitter is the combination of single-ended open source interface. */ #define GPIO_OPEN_DRAIN (GPIO_SINGLE_ENDED | GPIO_LINE_OPEN_DRAIN) #define GPIO_OPEN_SOURCE (GPIO_SINGLE_ENDED | GPIO_LINE_OPEN_SOURCE) /* Bit 3 express GPIO suspend/resume and reset persistence */ #define GPIO_PERSISTENT 0 #define GPIO_TRANSITORY 8 when combining add the bits #define GPIO_OPEN_DRAIN (GPIO_SINGLE_ENDED | GPIO_LINE_OPEN_DRAIN) is 2+4= 6 gpios = <&pio 0 7 (GPIO_ACTIVE_HIGH|GPIO_OPEN_DRAIN)>; or gpios = <&pio 0 7 4>; -
Bluetooth app opens and scans but does not find any devices.
-
I rebuild with above corrections and also changed the bluetooth GPIO pins to be same as android. Now I can see bluetooth before it was missing. Tanix-tx6s
-
I deleted the build folder and built votar image a second time to make sure. same result. brcmfmac4334-sdio.tanix,tx6s.bin again was requested. just thought it strange. was trying to solve bluetooth not working and see what different dmesg give. originally compiled tanix tx6 then after compile vontar, though it may because used same build folder. that why did again with clean build. also tanix tx6 is requesting brcmfmac-ap6330-sdio.tanix,tx6s.bin /build/patch/u-boot/u-boot-h616 153-add-tanix_tx6s_axp313_defconfig.patch + model = "Tanix TX6s (axp313)"; + compatible = "tanix,tx6s", "allwinner,sun50i-h616"; 160-add-vontar-h618-defconfig.patch + model = "Vontar H618"; + compatible = "tanix,tx6s", "allwinner,sun50i-h616"; /build/patch/kernel/archive/warpme-6.12 0649-arm64-dts-allwinner-h618-add-vontar-h618-TVbox.patch + model = "Vontar H618"; + compatible = "tanix,tx6s", "allwinner,sun50i-h616"; should this be + compatible = "vontar,h618", "allwinner,sun50i-h616";
-
Noticed some strange wifi setting for my Vontar H618, its asking for Tanix,Tx6s wifi firmware I am using brcmfmac4334-sdio.bin and wifi works.
-
Here is an update for Video Acceleration Repository for v4l2request hardware video decoding (rockchip, allwinner) Does no seem to work tested on my Tanix Tx6 and Vontar H618
-
I use instructions here to get openvfd working.
-
latest build Armbian-unofficial 25.05.0-trunk noble, 6.12.11-edge-sunxi64, cinnamon 6.04 tanix-tx6s-axp313.csc working: 3 USB, Wifi, IR remote,LED Clock not working: Bluetooth,Video Acceleration, sound out via jack (2 analog audio output shown) vontar-h618.csc working: 2 USB, Wifi (needed to rename brcmfmac4334-sdio.rockchip,rk3318-box.txt > brcmfmac4334-sdio.txt), IR remote, LED Clock, sound jack out via jack (3 analog audio output shown) not working: Bluetooth, Video Acceleration
-
Yes performance is selected this is whats in /build/config/kernel/linux-sunxi64-edge.config # # DEVFREQ Governors # CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y CONFIG_DEVFREQ_GOV_PERFORMANCE=y CONFIG_DEVFREQ_GOV_POWERSAVE=y CONFIG_DEVFREQ_GOV_USERSPACE=y CONFIG_DEVFREQ_GOV_PASSIVE=y # # CPU Frequency scaling # CONFIG_CPU_FREQ=y CONFIG_CPU_FREQ_GOV_ATTR_SET=y CONFIG_CPU_FREQ_GOV_COMMON=y CONFIG_CPU_FREQ_STAT=y CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set CONFIG_CPU_FREQ_GOV_PERFORMANCE=y CONFIG_CPU_FREQ_GOV_POWERSAVE=m CONFIG_CPU_FREQ_GOV_USERSPACE=m CONFIG_CPU_FREQ_GOV_ONDEMAND=m CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y # # CPU frequency scaling drivers # CONFIG_CPUFREQ_DT=y CONFIG_CPUFREQ_DT_PLATDEV=y CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM=y CONFIG_ARM_SCPI_CPUFREQ=y CONFIG_ARM_BRCMSTB_AVS_CPUFREQ=m CONFIG_ARM_RASPBERRYPI_CPUFREQ=m CONFIG_ARM_SCMI_CPUFREQ=m CONFIG_ACPI_CPPC_CPUFREQ=y # CONFIG_ACPI_CPPC_CPUFREQ_FIE is not set # end of CPU Frequency scaling # end of CPU Power Management
-
I updated above vontar-h618.csc with the changes. I am happy with Tanix-tx6. my sdcard is configured how i want it. to install SDCARD to EMMC run armbian-install
-
created tanix-tx6s-axp313.cscvontar-h618.csc Vontar build ok. but wont boot, trying build again. Tanix Builds ok. Boots ok. IR remote works, led clock works, wifi work.
-
Are you able to enable 3 usb ports by default, as Tanix TX6 has 3, and the transpeed-8k build works on it but only 2 usb ports are enabled.
-
I built latest image Armbian-unofficial 25.05.0-trunk noble, Kernel 6.12.11-edge-sunxi64 tested on Vontar H618 and Tanix TX6 I can't get IR remote to work doing same steps as on previous builds. also dmesg | grep -i bluetooth is blank where previous build had info and errors about bluetooth. maybe due to changes from using warpme patches?
-
Tanix TX6 IR Remote key scan codes. I have both transpeed-8k.toml and tanix-tx6.toml files installed with both remotes working. 1> sudo apt-get install ir-keytable 2> copy the attached file tanix-tx6.toml to /etc/rc_keymaps/protocols/ 3> add the following line to your /etc/rc.local ir-keytable -p NEC -w /etc/rc_keymaps/protocols/transpeed-8k.toml ir-keytable -p NEC -w /etc/rc_keymaps/protocols/tranix-tx6.toml tanix-tx6.toml transpeed-8k.toml
-
found this topic about getting bluetooth to work, maybe some clues here to help get it working https://forum.armbian.com/topic/13218-cant-start-bluetooth-on-orange-pi-zero-plus-2-h5/
-
After playing around with overlays, seems they do not alter existing setting, only add new setting. nothing changes by editing overlays and using sudo armbian-add-overlay /boot/dtb/allwinner/overlay/bluetooth.dts
-
for extra USB port. Try adding this to your .dts &ehci2 { status = "okay"; }; &ohci2 { status = "okay"; }; what is the & for ? overlay dont like it ? I want to make the above in an overlay.
-
I been comparing the different bluetooth patches for transpeed, vontar and tanix TV boxes. I made an overlay bluetooth.dts with the changes i need for my vontar tv box using transpped image. using overlay allows you make changes for testing. got the idea from the openvfd.dts overlay by @MMorales cp bluetooth.dts /boot/dtb/allwinner/overlay/ sudo armbian-add-overlay /boot/dtb/allwinner/overlay/bluetooth.dts bluetooth.dts
-
Thanks for the tip. thats fixed it
-
is it safe to do ? sudo apt update sudo apt upgrade I have been unable to boot after doing this, had to burn fresh .img to sdcard to boot again. I have done this previously with no issues (is this due to ubuntu noble 24.11.0 > 24.11.2 updating ?) here is update and upgrade list and update. No Boot after reboot.