lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 6 Mar 2019 16:36:05 +0100
From:   Arnd Bergmann <arnd@...db.de>
To:     Linus Torvalds <torvalds@...ux-foundation.org>
Cc:     soc@...nel.org, Linux ARM <linux-arm-kernel@...ts.infradead.org>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
        arm-soc <arm@...nel.org>
Subject: [GIT PULL 5/6] ARM: New SoC family support for 5.1

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@...db.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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ