- Jul 04, 2023
-
-
Chandru Dhavamani authored
Update the ti-dm firmware to 09.00.06a for J7200 device. Major Changes compared to 09.00.06 : -Fix stream benchmark performance drop by setting the frequency of MSMC clock to 1GHz in DM MD5 Checksum: 61c40fb4ff175c48681e73914a7fc217 ipc_echo_testb_mcu1_0_release_strip.xer5f Signed-off-by:
Chandru Dhavamani <chandru@ti.com>
-
- Jun 27, 2023
-
-
MD Danish Anwar authored
ICSSG firmware does not process Rx packets once min error frame is received. This commit adds support for ICSSG firmware to process Rx packets once min error frame is recieved. MD5 checksum for added firmwares: 2d31d179d1279219562d2ac0e78733d8 ti-pruss/am65x-sr2-pru0-prueth-fw.elf 6e90595f09a4f03302cf8383ce2af2dd ti-pruss/am65x-sr2-pru1-prueth-fw.elf 22f9574623ce6ad911590d1edbe12a1d ti-pruss/am65x-sr2-rtu0-prueth-fw.elf ce239c3964b5606fbd5571798b7544e9 ti-pruss/am65x-sr2-rtu1-prueth-fw.elf 76dfe8770bb7b874ddf360ba6c7eaf3a ti-pruss/am65x-sr2-txpru0-prueth-fw.elf c68121b5b3c9f29d50e8fedd089f964d ti-pruss/am65x-sr2-txpru1-prueth-fw.elf 6ecbbcb546985ab268f35a7a070ad2e3 ti-pruss/am65x-sr2-pru0-prusw-fw.elf 54fba0a70c5e26fa2f97bea16af491bb ti-pruss/am65x-sr2-pru1-prusw-fw.elf df417e30f503e2a833ff8ea145c2e054 ti-pruss/am65x-sr2-rtu0-prusw-fw.elf 86e5119aa056b2cbb2280175df2a442d ti-pruss/am65x-sr2-rtu1-prusw-fw.elf ad352e8fd6f43dd9fc77b7089e535301 ti-pruss/am65x-sr2-txpru0-prusw-fw.elf 6a30c99973595af57c54122be79cd7a1 ti-pruss/am65x-sr2-txpru1-prusw-fw.elf Based on tag: REL.PRU-ICSS-ETHERNET-SWITCH_02.02.12.04 Signed-off-by:
MD Danish Anwar <danishanwar@ti.com>
-
- Jun 26, 2023
-
-
Praneeth Bajjuri authored
Merge branch 'main' of git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware into ti-linux-firmware * 'main' of git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware : Makefile, copy-firmware: support xz/zstd compressed firmware copy-firmware: silence the last shellcheck warnings copy-firmware: drop obsolete backticks, quote copy-firmware: tweak sed invocation copy-firmware: quote deskdir and dirname check_whence: error if symlinks are in-tree check_whence: error if File: is actually a link check_whence: strip quotation marks linux-firmware: wilc1000: update WILC1000 firmware to v16.0 ice: update ice DDP wireless_edge package to 1.3.10.0 amdgpu: DMCUB updates for DCN 3.1.4 and 3.1.5 Signed-off-by:
Praneeth Bajjuri <praneeth@ti.com>
-
Ravi Gunasekaran authored
Add cut-through support for ICSSG HSR firmware for AM64x 2bec8ecafd1735fe0fa841d5487e4686 ti-pruss/am65x-sr2-pru0-pruhsr-fw.elf 59bdbc8da784c063a3cd09276aca8f85 ti-pruss/am65x-sr2-pru1-pruhsr-fw.elf 65270136e5699b2263b875e3ead01606 ti-pruss/am65x-sr2-rtu0-pruhsr-fw.elf 880fcfc312b6198dedf2cca4513771a8 ti-pruss/am65x-sr2-rtu1-pruhsr-fw.elf 892484981ed861958234bd2dc0b31e80 ti-pruss/am65x-sr2-txpru0-pruhsr-fw.elf 9403d8aa2834eaa1f7912d6c35fe7133 ti-pruss/am65x-sr2-txpru1-pruhsr-fw.elf Based on tag: REL.HSR_1G_01.00.01.00 Signed-off-by:
Ravi Gunasekaran <r-gunasekaran@ti.com>
-
- Jun 25, 2023
-
-
Emil Velikov authored
The kernel has supported compressed firmware for quite some time. So let's add a couple of targets to produce that. In practical terms this means it we'll use ~5x times less space on disk. Reportedly the amd ucode, needs to be uncompressed _within_ the initrd in order to work. Using compressed ucode in late load just works. Ideally this will be addressed by the initrd generators, but considering the files are tiny in size let's skip the compression. v2 - commit message, skip compression for files annotated as Raw v3 - rebase [Drop extra verbose statement in zstd case, Josh Boyer <jwboyer@kernel.org>] Cc: David Woodhouse <dwmw2@infradead.org> Signed-off-by:
Emil Velikov <emil.l.velikov@gmail.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Emil Velikov authored
Signed-off-by:
Emil Velikov <emil.l.velikov@gmail.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Emil Velikov authored
As mentioned by shellcheck backticks are considered legacy. Plus we should ensure the output is quoted, otherwise we'll get word splitting. Signed-off-by:
Emil Velikov <emil.velikov@collabora.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Emil Velikov authored
Add space between the arguments and pattern and combine patterns where possible. Signed-off-by:
Emil Velikov <emil.l.velikov@gmail.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Emil Velikov authored
Properly quote, otherwise we'll get word splitting. In other words: Files might end up installed to /some/foo/, where /some path/foo bar/ is expected. v2: - rebase/split && also quote the $() output Signed-off-by:
Emil Velikov <emil.velikov@collabora.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Emil Velikov authored
Currently we have no symlinks in-tree. Add a simple check, ensuring they don't get added in the future. This allows us to remove the clunky symlink checking code in copy-firmware.sh v2: - tweak helper to produce link and target (based off Adam's patch) v3: - honour quoted target/linkname Signed-off-by:
Emil Velikov <emil.l.velikov@gmail.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Emil Velikov authored
Commits from a few years ago added support for Link entries, over having the symlinks in-tree. At the same time, it didn't add a check whether one didn't add a File entry that is actually a symlink. Do so now, to be on the safe side. v2: - drop copy-firmware.sh changes Signed-off-by:
Emil Velikov <emil.velikov@collabora.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Emil Velikov authored
Earlier commit added check for duplicate entries. Although the commit was picked without one of its dependencies which removes the quotation marks in the File entries. Since the quotation marks are here to stay, escape them as needed in the script. Cc: Emil Velikov <emil.l.velikov@gmail.com> Fixes: 05183b7b ("check_whence: error on duplicate file entries") Signed-off-by:
Emil Velikov <emil.velikov@collabora.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Ajay Singh authored
This patch updates the firmware version for WILC1000 FW version: 16.0 Signed-off-by:
Ajay Singh <ajay.kathat@microchip.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Shekhar Deb authored
Update ice DDP wireless_edge package file to the latest version: 1.3.10.0 Highlight of changes since 1.3.7.0: - Provide Separate IP Fragment Packet Type Groups for Receive Side Scaling (RSS) - Add support to allow Receive Side Scaling (RSS) and Flow Director (FD) on Multicast packets Signed-off-by:
Shekhar Deb <shekhar.deb@intel.com> Tested-by: Pucha Himasekhar Reddy <himasekharx.reddy.pucha@intel.com> (A Contingent worker at Intel) Signed-off-by:
Tony Nguyen <anthony.l.nguyen@intel.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Rodrigo Siqueira authored
DMCUB Updates for DCN 3.1.4 and DCN 3.1.5 From interal git commit fd9e0d6d24f1ce1c7322eeb0a8725327ac76161e. This firmware update bring improvements for: - DCN 3.1.4 (version 0x08001B00): Improve the HDCP transaction. - DCN 3.1.5 (version 0x05000F00): Improves the ABM ramping sequence with PSR/PR and fix incorrect abm inturrupt control. Signed-off-by:
Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
- Jun 21, 2023
-
-
Praneeth Bajjuri authored
Merge branch 'main' of git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware into ti-linux-firmware * 'main' of git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware : amdgpu: update DMCUB to v0.0.172.0 for various AMDGPU ASICs fix broken cirrus firmware symlinks qcom: Update the microcode files for Adreno a630 GPUs. qcom: sdm845: rename the modem firmware qcom: sdm845: update remoteproc firmware Signed-off-by:
Praneeth Bajjuri <praneeth@ti.com>
-
Misael Lopez Cruz authored
Updated Ethernet Switch Firmware for all supported platforms. The firmware changes since last version are relevant to R5F running ETHFW, such as checksum offload and scatter-gather support. There is no compatibility change with respect to Linux virtual MAC driver. MD5 Checksums: 666ec9966efbf15fc80e5286a0f00bd2 ti-eth/j7200/app_remoteswitchcfg_server_strip.xer5f a84507fefb64ea998008e67e5248d93c ti-eth/j721e/app_remoteswitchcfg_server_strip.xer5f a5a7c23e488cd1cef30d4acdb7d0b589 ti-eth/j784s4/app_remoteswitchcfg_server_strip.xer5f Signed-off-by:
Misael Lopez Cruz <misael.lopez@ti.com>
-
- Jun 20, 2023
-
-
Praneeth Bajjuri authored
Renaming ICSSG HSR firmware names to keep it consistent across all firmwares in ti-pruss/ Reported-by:
Ryan Eatmon <reatmon@ti.com> Signed-off-by:
Praneeth Bajjuri <praneeth@ti.com>
-
Ravi Gunasekaran authored
Add support for HSR port-to-port frame forward offloading through a new set of firmware binaries for AM64x. f21cc48099c18e70999c28ca8eddc497 ti-pruss/am65x-sr2-pru0-pru-hsr-fw.elf 2a17ae742d65aff947de66456a10b8dc ti-pruss/am65x-sr2-pru1-pru-hsr-fw.elf e7a0bd3216f9f2a13b35aec261c8b645 ti-pruss/am65x-sr2-rtu0-pru-hsr-fw.elf fe97c4d4b5f6533953601a1526c07a84 ti-pruss/am65x-sr2-rtu1-pru-hsr-fw.elf 6f2b37a01e2bbc236dcf285127a724a3 ti-pruss/am65x-sr2-txpru0-pru-hsr-fw.elf a23dc3b2b21fcb87234c65bef7dcc3de ti-pruss/am65x-sr2-txpru1-pru-hsr-fw.elf Based on tag: REL.HSR_1G_01.00.00.00 Signed-off-by:
Ravi Gunasekaran <r-gunasekaran@ti.com>
-
Hamza Mahfooz authored
DMCUB updates for Navi2x and DCN314. From internal git commit ba25ca4ddd66a74331bf460346bde045804bc75d Tested with DC v3.2.240 Release notes: - Fix hang observed during DP Link Layer compliance testing Signed-off-by:
Hamza Mahfooz <hamza.mahfooz@amd.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
https://github.com/lumag/linux-firmwareJosh Boyer authored
Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Thomas Backlund authored
Commit: 244d6b5c ("cirrus: Add firmware for new Asus ROG Laptops") added several Link: entries for cirrus firmwares, but as link and target exists in the same directory, the extra "cirrus/" path gets them created as broken symlinks. Fix it up by removing the extra "cirrus/" path. Signed-off-by:
Thomas Backlund <tmb@tmb.nu> Fixes: 244d6b5c ("cirrus: Add firmware for new Asus ROG Laptops") Reported-by:
Bit Twister2 <bittwister2@gmail.com> Reported-by:
David GEIGER <geiger.david68210@gmail.com> Cc: Stefan Binding <sbinding@opensource.cirrus.com> Cc: Josh Boyer <jwboyer@kernel.org> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
- Jun 16, 2023
-
-
Chandru Dhavamani authored
Update the ti-dm firmware to 09.00.06 for Jacinto devices. These were generated using SYSFW v09.00.06 j7200 Remove modify_parent_frequency flag for PLL8 Add support to handle firewall exception J721E Remove modify_parent_frequency flag for PLL8 J721S2 Add DSMEK Support Add support to handle firewall exception J784S4 Add DSMEK Support Add support to handle firewall exception MD5 Checksum: 1ada45a788d0d02defa09123dac515b4 ti-dm/j7200/ipc_echo_testb_mcu1_0_release_strip.xer5f 2900300d9eb02243a5bbc51619c5af65 ti-dm/j721e/ipc_echo_testb_mcu1_0_release_strip.xer5f 4ecfa16ae460b9ebcf3ccf5a6be53e78 ti-dm/j721s2/ipc_echo_testb_mcu1_0_release_strip.xer5f a82038bbfe2e52f1e2fa0fe02b6edd31 ti-dm/j784s4/ipc_echo_testb_mcu1_0_release_strip.xer5f Signed-off-by:
Chandru Dhavamani <chandru@ti.com>
-
Chandru Dhavamani authored
Update the System Firmware binaries to v09.00.06 for Jacinto devices. j7200 Remove modify_parent_frequency flag for PLL8 Add support to handle firewall exception J721E Remove modify_parent_frequency flag for PLL8 J721S2 Add DSMEK Support Add support to handle firewall exception J784S4 Add DSMEK Support Add support to handle firewall exception MD5 Checksum: 42f5136f63974fb88dfd4f713325e782 ti-sysfw/ti-fs-firmware-j7200-gp.bin 15fd37d1b5b0b8d807a49037708cb00a ti-sysfw/ti-fs-firmware-j7200-hs-cert.bin be930ea95cefa4a37c82ad09d4473f8a ti-sysfw/ti-fs-firmware-j7200-hs-enc.bin 40be5ffd728430eb063305f74f068897 ti-sysfw/ti-fs-firmware-j7200_sr2-hs-cert.bin 3e8d0a9a5f1ad65f437a90f08852996e ti-sysfw/ti-fs-firmware-j7200_sr2-hs-enc.bin bcf30464af290fddb24469a5d4ee63c6 ti-sysfw/ti-fs-firmware-j7200_sr2-hs-fs-cert.bin 4b4c70d624f2579a8de7152c0113dc47 ti-sysfw/ti-fs-firmware-j7200_sr2-hs-fs-enc.bin 2117149ddd1dd85ec692d4e5360b4c2e ti-sysfw/ti-fs-firmware-j721e-gp.bin 150864cf34353d22c1f95b8ad8f6c7f1 ti-sysfw/ti-fs-firmware-j721e-hs-cert.bin c730c2623cfa1be409bb972cd7d71a05 ti-sysfw/ti-fs-firmware-j721e-hs-enc.bin 15811fa1114cf63ab410e259fdeb30dc ti-sysfw/ti-fs-firmware-j721e_sr1_1-hs-cert.bin f782ecfca7ff34f00eb41b44a0bc9969 ti-sysfw/ti-fs-firmware-j721e_sr1_1-hs-enc.bin 619b29a193b0312593c042ab19706d34 ti-sysfw/ti-fs-firmware-j721e_sr2-hs-cert.bin f2fc628143427c20c7ab1c194d68f41d ti-sysfw/ti-fs-firmware-j721e_sr2-hs-enc.bin 0f0a97ed4d4c9615c112dd84513ad97c ti-sysfw/ti-fs-firmware-j721e_sr2-hs-fs-cert.bin df62231db3a6893d30b1aad77f765743 ti-sysfw/ti-fs-firmware-j721e_sr2-hs-fs-enc.bin 217887064d4ff51ad4d48754a3ccd9e9 ti-sysfw/ti-fs-firmware-j721s2-gp.bin ce8ca3f78729a0bca9ceb1f1100285ea ti-sysfw/ti-fs-firmware-j721s2-hs-cert.bin 989637952b84ccf8ed9c85f4c65f1076 ti-sysfw/ti-fs-firmware-j721s2-hs-enc.bin 6cb0497d5c29a9617001ff389c61dec4 ti-sysfw/ti-fs-firmware-j721s2-hs-fs-cert.bin 79139595cd625f3498893d977364d4a2 ti-sysfw/ti-fs-firmware-j721s2-hs-fs-enc.bin 9d0b391d5988b4042c5bc4cec31a8e93 ti-sysfw/ti-fs-firmware-j784s4-gp.bin af68ece3eab261dc868875621ecb54e4 ti-sysfw/ti-fs-firmware-j784s4-hs-cert.bin 28d51c55fc1a415e04d7e4ae6b35fbe0 ti-sysfw/ti-fs-firmware-j784s4-hs-enc.bin d8148b1401dc6bcda190c6915a05ba16 ti-sysfw/ti-fs-firmware-j784s4-hs-fs-cert.bin 65c6cedb7c84f8e3debcd8024c6bc339 ti-sysfw/ti-fs-firmware-j784s4-hs-fs-enc.bin Signed-off-by:
Chandru Dhavamani <chandru@ti.com>
-
Praneeth Bajjuri authored
This reverts commit be9bc6e0 . This revert was a mistake. Adding the ti-dm update to 09.00.12 version update back. Signed-off-by:
Praneeth Bajjuri <praneeth@ti.com>
-
Praneeth Bajjuri authored
This reverts commit acab7c9a . The revert was a mistake , adding the patch to remove the am62x gp fs-stub back. Signed-off-by:
Praneeth Bajjuri <praneeth@ti.com>
-
- Jun 15, 2023
-
-
Praneeth Bajjuri authored
This reverts commit b20201cb.
-
Praneeth Bajjuri authored
This reverts commit 37d80954.
-
Vishal Mahaveer authored
Update the following ti-dm firmware - REL.MCUSDK.09.00.00.12 for am62x - REL.MCUSDK.09.00.00.12 for am62ax Major changes compared to previous version: - Klocwork MISRA-C issues addressed - Added support for copying FS stub from DDR to TCM - am62x: lpm: WKUP UART, WKUP I2C and WKUP DMTIMER 0/1 wakeup capability enabled - am62x: lpm: MCU only mode supported - am62x: lpm: MCU IPC wakeup capability enabled MD5 Checksum: ffa44170c99614da11e46703ca1c9e3b ti-dm/am62axx/ipc_echo_testb_mcu1_0_release_strip.xer5f 80089fdb75a42832f4478df7272b6279 ti-dm/am62xx/ipc_echo_testb_mcu1_0_release_strip.xer5f Signed-off-by:
Vishal Mahaveer <vishalm@ti.com>
-
Vishal Mahaveer authored
Update System Firmwares to version v09.00.05 for am64x, am62x, am62ax and am65x Major updates: - Fix for instability seen with HS-FS LPM DeepSleep - am64x/am62x/am62ax: Firewall exception interrupt forwarding enabled - system-firmware returns the original binary size when extended encryption extension is present in the application certificate MD5 Checksum: caa0466b90a936f171bf52dd9193cc2e ti-sysfw/ti-fs-firmware-am62ax-gp.bin f87ec232cfd323a93fbe84ab72ea0ec8 ti-sysfw/ti-fs-firmware-am62ax-hs-cert.bin 4a6856fa87834ee4f1ba36fca3c3ebd3 ti-sysfw/ti-fs-firmware-am62ax-hs-enc.bin 6d8bc3bfa49ebfa093cd0c7013a53089 ti-sysfw/ti-fs-firmware-am62ax-hs-fs-cert.bin dffa513157858e72d0399310674c875a ti-sysfw/ti-fs-firmware-am62ax-hs-fs-enc.bin d7028f27ae95513c862e8ea136210d94 ti-sysfw/ti-fs-firmware-am62x-gp.bin 0dc7326694b20c1ce3a5b53996d9f792 ti-sysfw/ti-fs-firmware-am62x-hs-cert.bin 618dde5933dc59064cb68a835cf911de ti-sysfw/ti-fs-firmware-am62x-hs-enc.bin 027bdba67f070c5a98d8ad55c25f1179 ti-sysfw/ti-fs-firmware-am62x-hs-fs-cert.bin c7144ac926e7c8a0e319f3415e38904c ti-sysfw/ti-fs-firmware-am62x-hs-fs-enc.bin 01188ffded393724a8254c5de9477a8a ti-sysfw/ti-fs-stub-firmware-am62x-hs-cert.bin 995d2b2b19e561ad35f31d74df95b971 ti-sysfw/ti-fs-stub-firmware-am62x-hs-enc.bin 3b574dd0b0874307e341fbde1031a44c ti-sysfw/ti-sci-firmware-am64x-gp.bin 02a827d010211f9a4d038e1d516ce02e ti-sysfw/ti-sci-firmware-am64x-hs-cert.bin ba986da6d3d4d733491d7f7fe2eac0ec ti-sysfw/ti-sci-firmware-am64x-hs-enc.bin b59f0e24238dd5a6c9a2a135a65b0405 ti-sysfw/ti-sci-firmware-am64x_sr2-hs-cert.bin 7c5612f2f156cd885c9f7f3385e92466 ti-sysfw/ti-sci-firmware-am64x_sr2-hs-enc.bin af05b145da655ed6e8100df4b49a375c ti-sysfw/ti-sci-firmware-am64x_sr2-hs-fs-cert.bin 00be2d74bcbd4cb1cf618270d4f29877 ti-sysfw/ti-sci-firmware-am64x_sr2-hs-fs-enc.bin b47aa7b9061f3f18201faebd7b1cf6fb ti-sysfw/ti-sci-firmware-am65x-gp.bin 81b72384c184e8ab46427d8c4d05277f ti-sysfw/ti-sci-firmware-am65x-hs-cert.bin 0503a8b75d2cb8b78cd1ecb66c5afe44 ti-sysfw/ti-sci-firmware-am65x-hs-enc.bin 87da2ea3fb7c820d2abbc0e528f9a032 ti-sysfw/ti-sci-firmware-am65x_sr2-gp.bin 1d7abbc8048f5761f21a4694fe59ef7a ti-sysfw/ti-sci-firmware-am65x_sr2-hs-cert.bin 6f74f6391c42a8a0c246289e56310ad0 ti-sysfw/ti-sci-firmware-am65x_sr2-hs-enc.bin Signed-off-by:
Vishal Mahaveer <vishalm@ti.com>
-
Vishal Mahaveer authored
Remove dummy signed am62x gp variant of fs-stub. Binman infrastructure is updated now to take care of this step. Signed-off-by:
Vishal Mahaveer <vishalm@ti.com> Tested-by:
Dhruva Gole <d-gole@ti.com>
-
Krishnamoorthy, Venkatesan authored
Update Inter Processor Communication (IPC) firmwares for am62x and am62ax from the MCU+SDK version 09.00.00.12 Major updates - Add MCU only LPM support for AM62X M4F - Static analysis fixes are done - Generated from MCU+SDK version 09.00.00.12 MD5 Checksum: 2bcc067e660575415f934a49a148029c ti-ipc/am62xx/am62-mcu-m4f0_0-fw 69376115b9b92d8529e4a31c68a33c51 ti-ipc/am62axx/am62a-mcu-r5f0_0-fw bacb514a2a9735b757da0d9ee89ac92d ti-ipc/am62axx/ipc_echo_test_c7x_1_release_strip.xe71 Signed-off-by:
Venkatesan Krishnamoorthy <v-krishnamoorthy@ti.com>
-
- Jun 14, 2023
-
-
Dmitry Baryshkov authored
Update qcom/a630_sqe.fw to version 1.89.01. Signed-off-by:
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
-
Dmitry Baryshkov authored
The Qualcomm SDM845 platform has a modem-less version, called SDA845. It still has the modem DSP, which is used for WiFi, GNSS, etc. The firmware in the qcom/sdm845 dir comes from the Thundercomm RB3 board, which internally has the SDA845 SoC rather than the full SDM845. The SC8180X platform (not yet added to linux-firmware) started using modem.mbn and modem_nm.mbn, the latter being used for no-modem platforms. Follow this example and rename qcom/sdm845/modem.mbn firmware file to modem_nm.mbn. This commit adds a compatibility link for now, to let the device trees to be adapted to this change. It should be removed when the proper qcom/sdm845/modem.mbn is submitted. Cc: Caleb Connolly <caleb.connolly@linaro.org> Signed-off-by:
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
-
Praneeth Bajjuri authored
Merge branch 'main' of git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware into ti-linux-firmware * 'main' of git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware : rtl_bt: Update RTL8852A BT USB firmware to 0xDAC7_480D rtl_bt: Update RTL8852C BT USB firmware to 0x040D_7225 amdgpu: DMCUB updates for various AMDGPU asics linux-firmware: update firmware for MT7922 WiFi device linux-firmware: update firmware for MT7921 WiFi device linux-firmware: update firmware for mediatek bluetooth chip (MT7922) linux-firmware: update firmware for mediatek bluetooth chip (MT7921) i915: Add HuC v8.5.0 for MTL mediatek: Update mt8195 SCP firmware to support hevc Signed-off-by:
Praneeth Bajjuri <praneeth@ti.com>
-
MD Danish Anwar authored
Update ICSSG SR2.0 PRU Ethernet and Switch firmwares to version REL.PRU-ICSS-ETHERNET-SWITCH_02.02.12.03 MD5 checksum for added firmwares: 8a471064288bf58e313690384a8227a0 ti-pruss/am65x-sr2-pru0-prueth-fw.elf 0589b03e6a7b05bc015897e77985cf73 ti-pruss/am65x-sr2-pru0-prusw-fw.elf 1050c3f96f8b4421eb927222c97de9a0 ti-pruss/am65x-sr2-pru1-prueth-fw.elf 1f19664895be6dd45d272fa0821bcafc ti-pruss/am65x-sr2-pru1-prusw-fw.elf 6fed2542212c0a4928ba302a21381d1d ti-pruss/am65x-sr2-rtu0-prueth-fw.elf 28e3e26fe6a81c44a0d1d37cf4e650ed ti-pruss/am65x-sr2-rtu0-prusw-fw.elf 4b89589c9ead9e6e83c2460bf3086869 ti-pruss/am65x-sr2-rtu1-prueth-fw.elf 297c933884723606eab1eb1417d9e50f ti-pruss/am65x-sr2-rtu1-prusw-fw.elf 4fde847389e0a92e0a4d88a10f44c67e ti-pruss/am65x-sr2-txpru0-prueth-fw.elf e8c4ba754cbf6e1acc78a008eebb6d67 ti-pruss/am65x-sr2-txpru0-prusw-fw.elf 2e41c26c4a59dd0f82ea4b45dbd4ecd3 ti-pruss/am65x-sr2-txpru1-prueth-fw.elf baafc32cbdf98a0311159db8e2dc220b ti-pruss/am65x-sr2-txpru1-prusw-fw.elf Based on tag: REL.PRU-ICSS-ETHERNET-SWITCH_02_02_12_03 Signed-off-by:
MD Danish Anwar <danishanwar@ti.com>
-
- Jun 12, 2023
-
-
Dmitry Baryshkov authored
Update remoteproc firmware to the following versions: - ADSP.HT.4.0-00593-SDM845-1 - CDSP.HT.1.0-00559-SDM845-1 - MPSS.AT.4.0.c2-01365-SDM845_GEN_PACK-1 Signed-off-by:
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
-
Hilda Wu authored
This firmware patch update for Realtek RTL8852A BT USB controller. Release Version: 0xDAC7_480D Signed-off-by:
Hilda Wu <hildawu@realtek.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Hilda Wu authored
This firmware patch update for Realtek RTL8852C BT USB controller Note: This firmware patch needs to be used with driver "btrtl: Firmware format v2 support". Please update the driver with this commit: 9a24ce5e29b15c4c6b0c89c04f9df6ce14addefa Release Version: 0x040D_7225 Signed-off-by:
Hilda Wu <hildawu@realtek.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-
Stylon Wang authored
DMCUB Updates for Navi2x, Yellow Carp, DCN321, DCN32, DCN314 From interal git commit 533a5940d7a5bc0d4ba3548eef131f1d5341fd5f Signed-off-by:
Stylon Wang <stylon.wang@amd.com> Signed-off-by:
Josh Boyer <jwboyer@kernel.org>
-