Message ID | CAK8P3a2+OspNio3=mLoYPjOg_rbYeomYa8TrRaLwU=ZF1ec20w@mail.gmail.com (mailing list archive) |
---|---|
State | Mainlined, archived |
Commit | c889e2a0b053703be7e7591c9a574975440e5502 |
Headers | show |
Series | ARM: SoC changes for 5.1 | expand |
The pull request you sent on Wed, 6 Mar 2019 16:36:05 +0100:
> git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git tags/armsoc-newsoc
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/64b1b217f1a20f15dbedf47e49a25a0b5ee3d53b
Thank you!
The following changes since commit d13937116f1e82bf508a6325111b322c30c85eb9: Linux 5.0-rc6 (2019-02-10 14:42:20 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git tags/armsoc-newsoc for you to fetch changes up to c889e2a0b053703be7e7591c9a574975440e5502: Merge branch 'milbeaut/newsoc' into arm/newsoc (2019-03-01 15:21:04 +0100) ---------------------------------------------------------------- ARM: New SoC family support Two new SoC families are added this time. Sugaya Taichi submitted support for the Milbeaut SoC family from Socionext and explains: "SC2000 is a SoC of the Milbeaut series. equipped with a DSP optimized for computer vision. It also features advanced functionalities such as 360-degree, real-time spherical stitching with multi cameras, image stabilization for without mechanical gimbals, and rolling shutter correction. More detail is below: https://www.socionext.com/en/products/assp/milbeaut/SC2000.html" Interestingly, this one has a history dating back to older chips made by Socionext and previously Matsushita/Panasonic based on their own mn10300 CPU architecture that was removed from the kernel last year. Manivannan Sadhasivam adds support for another SoC family, this is the Bitmain BM1880 chip used in the Sophon Edge TPU developer board. The chip is intended for Deep Learning applications, and comes with dual-core Arm Cortex-A53 to run Linux as well as a RISC-V microcontroller core to control the tensor unit. For the moment, the TPU is not accessible in mainline Linux, so we treat it as a generic Arm SoC. More information is available at https://www.sophon.ai/ Signed-off-by: Arnd Bergmann <arnd@arndb.de> ---------------------------------------------------------------- Arnd Bergmann (2): Merge tag 'bitmain-initial-soc-v5.1' of git://git.kernel.org/.../mani/linux-bitmain into arm/newsoc Merge branch 'milbeaut/newsoc' into arm/newsoc Manivannan Sadhasivam (5): dt-bindings: arm: Document Bitmain BM1880 SoC arm64: Add ARCH_BITMAIN platform arm64: dts: bitmain: Add BM1880 SoC support arm64: dts: bitmain: Add Sophon Egde board support MAINTAINERS: Add entry for Bitmain SoC platform Sugaya Taichi (9): dt-bindings: sram: milbeaut: Add binding for Milbeaut smp-sram dt-bindings: arm: Add SMP enable-method for Milbeaut dt-bindings: Add documentation for Milbeaut SoCs ARM: milbeaut: Add basic support for Milbeaut m10v SoC dt-bindings: timer: Add Milbeaut M10V timer description clocksource/drivers/timer-milbeaut: Introduce timer for Milbeaut SoCs ARM: dts: milbeaut: Add device tree set for the Milbeaut M10V board ARM: configs: Add Milbeaut M10V defconfig ARM: multi_v7_defconfig: add ARCH_MILBEAUT and ARCH_MILBEAUT_M10V Documentation/devicetree/bindings/arm/bitmain.yaml | 18 +++++++ Documentation/devicetree/bindings/arm/cpus.yaml | 1 + Documentation/devicetree/bindings/arm/socionext/milbeaut.yaml | 22 ++++++++ Documentation/devicetree/bindings/sram/milbeaut-smp-sram.txt | 24 +++++++++ Documentation/devicetree/bindings/timer/socionext,milbeaut-timer.txt | 17 ++++++ MAINTAINERS | 7 +++ arch/arm/Kconfig | 2 + arch/arm/Makefile | 1 + arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/milbeaut-m10v-evb.dts | 32 +++++++++++ arch/arm/boot/dts/milbeaut-m10v.dtsi | 95 ++++++++++++++++++++++++++++++++ arch/arm/configs/milbeaut_m10v_defconfig | 119 ++++++++++++++++++++++++++++++++++++++++ arch/arm/configs/multi_v7_defconfig | 2 + arch/arm/mach-milbeaut/Kconfig | 20 +++++++ arch/arm/mach-milbeaut/Makefile | 1 + arch/arm/mach-milbeaut/platsmp.c | 143 ++++++++++++++++++++++++++++++++++++++++++++++++ arch/arm64/Kconfig.platforms | 5 ++ arch/arm64/boot/dts/Makefile | 1 + arch/arm64/boot/dts/bitmain/Makefile | 3 ++ arch/arm64/boot/dts/bitmain/bm1880-sophon-edge.dts | 50 +++++++++++++++++ arch/arm64/boot/dts/bitmain/bm1880.dtsi | 119 ++++++++++++++++++++++++++++++++++++++++ drivers/clocksource/Kconfig | 9 ++++ drivers/clocksource/Makefile | 1 + drivers/clocksource/timer-milbeaut.c | 161 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 24 files changed, 854 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/bitmain.yaml create mode 100644 Documentation/devicetree/bindings/arm/socionext/milbeaut.yaml create mode 100644 Documentation/devicetree/bindings/sram/milbeaut-smp-sram.txt create mode 100644 Documentation/devicetree/bindings/timer/socionext,milbeaut-timer.txt create mode 100644 arch/arm/boot/dts/milbeaut-m10v-evb.dts create mode 100644 arch/arm/boot/dts/milbeaut-m10v.dtsi create mode 100644 arch/arm/configs/milbeaut_m10v_defconfig create mode 100644 arch/arm/mach-milbeaut/Kconfig create mode 100644 arch/arm/mach-milbeaut/Makefile create mode 100644 arch/arm/mach-milbeaut/platsmp.c create mode 100644 arch/arm64/boot/dts/bitmain/Makefile create mode 100644 arch/arm64/boot/dts/bitmain/bm1880-sophon-edge.dts create mode 100644 arch/arm64/boot/dts/bitmain/bm1880.dtsi create mode 100644 drivers/clocksource/timer-milbeaut.c -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#62): https://linux.kernel.org/g/patchwork-soc/message/62 Mute This Topic: https://linux.kernel.org/mt/30286352/1554929 Group Owner: patchwork-soc+owner@linux.kernel.org Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub [patchwork-linux-kernel-org@patchwork.kernel.org] -=-=-=-=-=-=-=-=-=-=-=-