All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnd Bergmann <arnd@arndb.de>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: soc@kernel.org, Linux ARM <linux-arm-kernel@lists.infradead.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	arm-soc <arm@kernel.org>
Subject: [GIT PULL 5/6] ARM: New SoC family support for 5.1
Date: Wed, 6 Mar 2019 16:36:05 +0100	[thread overview]
Message-ID: <CAK8P3a2+OspNio3=mLoYPjOg_rbYeomYa8TrRaLwU=ZF1ec20w@mail.gmail.com> (raw)
In-Reply-To: <CAK8P3a1mnNrpf5moqi4x9BaTNpE9ZUgs-VBjXoG7=AxENwYtbQ@mail.gmail.com>

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

WARNING: multiple messages have this Message-ID (diff)
From: Arnd Bergmann <arnd@arndb.de>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: soc@kernel.org, arm-soc <arm@kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux ARM <linux-arm-kernel@lists.infradead.org>
Subject: [GIT PULL 5/6] ARM: New SoC family support for 5.1
Date: Wed, 6 Mar 2019 16:36:05 +0100	[thread overview]
Message-ID: <CAK8P3a2+OspNio3=mLoYPjOg_rbYeomYa8TrRaLwU=ZF1ec20w@mail.gmail.com> (raw)
In-Reply-To: <CAK8P3a1mnNrpf5moqi4x9BaTNpE9ZUgs-VBjXoG7=AxENwYtbQ@mail.gmail.com>

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

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2019-03-06 15:36 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-06 15:25 [GIT PULL 0/6] ARM: SoC changes for 5.1 Arnd Bergmann
2019-03-06 15:25 ` Arnd Bergmann
2019-03-06 15:33 ` [GIT PULL 2/6] ARM: SoC device tree updates " Arnd Bergmann
2019-03-06 15:33   ` Arnd Bergmann
2019-03-06 18:30   ` pr-tracker-bot
2019-03-06 18:30     ` pr-tracker-bot
2019-03-06 15:34 ` [GIT PULL 3/6] ARM: SoC driver " Arnd Bergmann
2019-03-06 15:34   ` Arnd Bergmann
2019-03-06 18:09   ` Linus Torvalds
2019-03-06 18:09     ` Linus Torvalds
2019-03-06 18:15     ` Russell King - ARM Linux admin
2019-03-06 18:15       ` Russell King - ARM Linux admin
2019-03-06 18:28       ` Linus Torvalds
2019-03-06 18:28         ` Linus Torvalds
2019-03-06 18:30   ` pr-tracker-bot
2019-03-06 18:30     ` pr-tracker-bot
2019-03-06 15:35 ` [GIT PULL 4/6] ARM: SoC defconfig " Arnd Bergmann
2019-03-06 15:35   ` Arnd Bergmann
2019-03-06 18:15   ` Linus Torvalds
2019-03-06 18:15     ` Linus Torvalds
2019-03-06 19:49     ` Arnd Bergmann
2019-03-06 19:49       ` Arnd Bergmann
2019-03-06 18:30   ` pr-tracker-bot
2019-03-06 18:30     ` pr-tracker-bot
2019-03-06 15:36 ` Arnd Bergmann [this message]
2019-03-06 15:36   ` [GIT PULL 5/6] ARM: New SoC family support " Arnd Bergmann
2019-03-06 18:30   ` pr-tracker-bot
2019-03-06 18:30     ` pr-tracker-bot
2019-03-06 15:38 ` [GIT PULL 6/6] ARM: SoC late updates " Arnd Bergmann
2019-03-06 15:38   ` Arnd Bergmann
2019-03-06 18:30   ` pr-tracker-bot
2019-03-06 18:30     ` pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAK8P3a2+OspNio3=mLoYPjOg_rbYeomYa8TrRaLwU=ZF1ec20w@mail.gmail.com' \
    --to=arnd@arndb.de \
    --cc=arm@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=soc@kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.