* [GIT PULL] RISC-V SoC drivers for v6.11
@ 2024-07-07 17:05 Conor Dooley
0 siblings, 0 replies; 3+ messages in thread
From: Conor Dooley @ 2024-07-07 17:05 UTC (permalink / raw)
To: soc; +Cc: conor, linux-riscv
[-- Attachment #1.1: Type: text/plain, Size: 1908 bytes --]
Hey Arnd,
Please pull the addition of a new cache driver.
There's a wee maintainers update in here too, I put the series on this
branch as one patch is cache related and I have no soc driver patches.
Cheers,
Conor.
The following changes since commit 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0:
Linux 6.10-rc1 (2024-05-26 15:20:12 -0700)
are available in the Git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/ riscv-cache-for-v6.11
for you to fetch changes up to 3d41249c1dee0fa22ebd8d27aa0a280edf943a0e:
MAINTAINERS: add microchip soc binding directory to microchip soc driver entry (2024-06-27 17:33:06 +0100)
----------------------------------------------------------------
RISC-V cache drivers for v6.11
StarFive:
A new driver for the cache controller on the jh8100, which didn't
implement Zicbom and thus needs an implementation of non-standard cache
management operations.
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
----------------------------------------------------------------
Conor Dooley (2):
MAINTAINERS: add cache binding directory to cache driver entry
MAINTAINERS: add microchip soc binding directory to microchip soc driver entry
Joshua Yeong (2):
dt-bindings: cache: Add docs for StarFive Starlink cache controller
cache: Add StarFive StarLink cache management
.../cache/starfive,jh8100-starlink-cache.yaml | 66 +++++++++++
MAINTAINERS | 2 +
drivers/cache/Kconfig | 9 ++
drivers/cache/Makefile | 5 +-
drivers/cache/starfive_starlink_cache.c | 130 +++++++++++++++++++++
5 files changed, 210 insertions(+), 2 deletions(-)
create mode 100644 Documentation/devicetree/bindings/cache/starfive,jh8100-starlink-cache.yaml
create mode 100644 drivers/cache/starfive_starlink_cache.c
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
[-- Attachment #2: Type: text/plain, Size: 161 bytes --]
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 3+ messages in thread
* [GIT PULL] RISC-V SoC drivers for v6.11
@ 2024-07-07 17:11 Conor Dooley
0 siblings, 0 replies; 3+ messages in thread
From: Conor Dooley @ 2024-07-07 17:11 UTC (permalink / raw)
To: soc; +Cc: conor, palmer, linux-riscv
[-- Attachment #1.1: Type: text/plain, Size: 1114 bytes --]
Hey Arnd,
Single commit here, I discussed with Palmer about taking these defconfig
patches for board support etc via the soc tree, so we're gonna try that.
For now, only one commit here.
Cheers,
Conor.
The following changes since commit 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0:
Linux 6.10-rc1 (2024-05-26 15:20:12 -0700)
are available in the Git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/ riscv-config-for-v6.11
for you to fetch changes up to d8a7d89abb091fe4c1744241c7a40dbad570fd9e:
riscv: defconfig: Enable StarFive JH7110 drivers (2024-06-12 23:16:55 +0100)
----------------------------------------------------------------
RISC-V config update for v6.11
StarFive:
Enable most of the options needed for the jh7100 based boards to be
properly testable with defconfig.
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
----------------------------------------------------------------
Hal Feng (1):
riscv: defconfig: Enable StarFive JH7110 drivers
arch/riscv/configs/defconfig | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
[-- Attachment #2: Type: text/plain, Size: 161 bytes --]
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 3+ messages in thread
* [GIT PULL] RISC-V SoC drivers for v6.11
@ 2024-07-07 17:20 Conor Dooley
0 siblings, 0 replies; 3+ messages in thread
From: Conor Dooley @ 2024-07-07 17:20 UTC (permalink / raw)
To: soc; +Cc: conor, linux-riscv
[-- Attachment #1.1: Type: text/plain, Size: 1410 bytes --]
Hey Arnd,
Please pull a handful of changes to the Auto Update driver.
Cheers,
Conor.
The following changes since commit 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0:
Linux 6.10-rc1 (2024-05-26 15:20:12 -0700)
are available in the Git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/ riscv-firmware-for-v6.11
for you to fetch changes up to d930eb4fdfee32e0a3e9a5c9c2af8d65857ac4de:
firmware: microchip: use scope-based cleanup where possible (2024-06-05 19:36:17 +0100)
----------------------------------------------------------------
RISC-V firmware drivers for v6.11
Microchip:
Support for writing "bitstream info" to the flash using the auto-update
driver. At this point the "bitstream info" is a glorified dtbo wrapper,
but there's plans to add more info there in the future. Additionally,
rework some allocations in the driver and use scope-based cleanup on
them.
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
----------------------------------------------------------------
Conor Dooley (3):
firmware: microchip: support writing bitstream info to flash
firmware: microchip: move buffer allocation into mpfs_auto_update_set_image_address()
firmware: microchip: use scope-based cleanup where possible
drivers/firmware/microchip/mpfs-auto-update.c | 136 +++++++++++++-------------
1 file changed, 67 insertions(+), 69 deletions(-)
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
[-- Attachment #2: Type: text/plain, Size: 161 bytes --]
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-07 17:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-07 17:05 [GIT PULL] RISC-V SoC drivers for v6.11 Conor Dooley
-- strict thread matches above, loose matches on Subject: below --
2024-07-07 17:11 Conor Dooley
2024-07-07 17:20 Conor Dooley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox