-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'milbeaut/newsoc' into arm/newsoc
Sugaya Taichi <sugaya.taichi@socionext.com> explains: Here is the series of patches the initial support for SC2000(M10V) of Milbeaut SoCs. "M10V" is the internal name of SC2000, so commonly used in source code. 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 Specifications for developers are below: - Quad-core 32bit Cortex-A7 on ARMv7-A architecture - NEON support - DSP - GPU - MAX 3GB DDR3 - Cortex-M0 for power control - NAND Flash Interface - SD UHS-I - SD UHS-II - SDIO - USB2.0 HOST / Device - USB3.0 HOST / Device - PCI express Gen2 - Ethernet Engine - I2C - UART - SPI - PWM Support is quite minimal for now, since it only includes timer, clock, pictrl and serial controller drivers, so we can only boot to userspace through initramfs. Support for the other peripherals will come eventually. * milbeaut/newsoc: ARM: multi_v7_defconfig: add ARCH_MILBEAUT and ARCH_MILBEAUT_M10V ARM: configs: Add Milbeaut M10V defconfig ARM: dts: milbeaut: Add device tree set for the Milbeaut M10V board clocksource/drivers/timer-milbeaut: Introduce timer for Milbeaut SoCs dt-bindings: timer: Add Milbeaut M10V timer description ARM: milbeaut: Add basic support for Milbeaut m10v SoC dt-bindings: Add documentation for Milbeaut SoCs dt-bindings: arm: Add SMP enable-method for Milbeaut dt-bindings: sram: milbeaut: Add binding for Milbeaut smp-sram Link: https://lore.kernel.org/linux-arm-kernel/1551243056-10521-1-git-send-email-sugaya.taichi@socionext.com/ Signed-off-by: Arnd Bergmann <arnd@arndb.de>
- Loading branch information
Showing
17 changed files
with
651 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
Documentation/devicetree/bindings/arm/socionext/milbeaut.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/arm/milbeaut.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Milbeaut platforms device tree bindings | ||
|
||
maintainers: | ||
- Taichi Sugaya <sugaya.taichi@socionext.com> | ||
- Takao Orito <orito.takao@socionext.com> | ||
|
||
properties: | ||
$nodename: | ||
const: '/' | ||
compatible: | ||
oneOf: | ||
- items: | ||
- enum: | ||
- socionext,milbeaut-m10v-evb | ||
- const: socionext,sc2000a | ||
... |
24 changes: 24 additions & 0 deletions
24
Documentation/devicetree/bindings/sram/milbeaut-smp-sram.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Milbeaut SRAM for smp bringup | ||
|
||
Milbeaut SoCs use a part of the sram for the bringup of the secondary cores. | ||
Once they get powered up in the bootloader, they stay at the specific part | ||
of the sram. | ||
Therefore the part needs to be added as the sub-node of mmio-sram. | ||
|
||
Required sub-node properties: | ||
- compatible : should be "socionext,milbeaut-smp-sram" | ||
|
||
Example: | ||
|
||
sram: sram@0 { | ||
compatible = "mmio-sram"; | ||
reg = <0x0 0x10000>; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
ranges = <0 0x0 0x10000>; | ||
|
||
smp-sram@f100 { | ||
compatible = "socionext,milbeaut-smp-sram"; | ||
reg = <0xf100 0x20>; | ||
}; | ||
}; |
17 changes: 17 additions & 0 deletions
17
Documentation/devicetree/bindings/timer/socionext,milbeaut-timer.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Milbeaut SoCs Timer Controller | ||
|
||
Required properties: | ||
|
||
- compatible : should be "socionext,milbeaut-timer". | ||
- reg : Specifies base physical address and size of the registers. | ||
- interrupts : The interrupt of the first timer. | ||
- clocks: phandle to the input clk. | ||
|
||
Example: | ||
|
||
timer { | ||
compatible = "socionext,milbeaut-timer"; | ||
reg = <0x1e000050 0x20> | ||
interrupts = <0 91 4>; | ||
clocks = <&clk 4>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* Socionext Milbeaut M10V Evaluation Board */ | ||
/dts-v1/; | ||
#include "milbeaut-m10v.dtsi" | ||
|
||
/ { | ||
model = "Socionext M10V EVB"; | ||
compatible = "socionext,milbeaut-m10v-evb", "socionext,sc2000a"; | ||
|
||
aliases { | ||
serial0 = &uart1; | ||
}; | ||
|
||
chosen { | ||
bootargs = "rootwait earlycon"; | ||
stdout-path = "serial0:115200n8"; | ||
}; | ||
|
||
clocks { | ||
uclk40xi: uclk40xi { | ||
compatible = "fixed-clock"; | ||
#clock-cells = <0>; | ||
clock-frequency = <40000000>; | ||
}; | ||
}; | ||
|
||
memory@40000000 { | ||
device_type = "memory"; | ||
reg = <0x40000000 0x80000000>; | ||
}; | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
#include <dt-bindings/input/input.h> | ||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/interrupt-controller/arm-gic.h> | ||
|
||
/ { | ||
compatible = "socionext,sc2000a"; | ||
interrupt-parent = <&gic>; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
|
||
cpus { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
enable-method = "socionext,milbeaut-m10v-smp"; | ||
cpu@f00 { | ||
device_type = "cpu"; | ||
compatible = "arm,cortex-a7"; | ||
reg = <0xf00>; | ||
}; | ||
cpu@f01 { | ||
device_type = "cpu"; | ||
compatible = "arm,cortex-a7"; | ||
reg = <0xf01>; | ||
}; | ||
cpu@f02 { | ||
device_type = "cpu"; | ||
compatible = "arm,cortex-a7"; | ||
reg = <0xf02>; | ||
}; | ||
cpu@f03 { | ||
device_type = "cpu"; | ||
compatible = "arm,cortex-a7"; | ||
reg = <0xf03>; | ||
}; | ||
}; | ||
|
||
timer { /* The Generic Timer */ | ||
compatible = "arm,armv7-timer"; | ||
interrupts = <GIC_PPI 13 | ||
(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>, | ||
<GIC_PPI 14 | ||
(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>, | ||
<GIC_PPI 11 | ||
(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>, | ||
<GIC_PPI 10 | ||
(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>; | ||
clock-frequency = <40000000>; | ||
always-on; | ||
}; | ||
|
||
soc { | ||
compatible = "simple-bus"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
ranges; | ||
interrupt-parent = <&gic>; | ||
|
||
gic: interrupt-controller@1d000000 { | ||
compatible = "arm,cortex-a7-gic"; | ||
interrupt-controller; | ||
#interrupt-cells = <3>; | ||
reg = <0x1d001000 0x1000>, | ||
<0x1d002000 0x1000>; /* CPU I/f base and size */ | ||
}; | ||
|
||
timer@1e000050 { /* 32-bit Reload Timers */ | ||
compatible = "socionext,milbeaut-timer"; | ||
reg = <0x1e000050 0x20>; | ||
interrupts = <0 91 4>; | ||
}; | ||
|
||
uart1: serial@1e700010 { /* PE4, PE5 */ | ||
/* Enable this as ttyUSI0 */ | ||
compatible = "socionext,milbeaut-usio-uart"; | ||
reg = <0x1e700010 0x10>; | ||
interrupts = <0 141 0x4>, <0 149 0x4>; | ||
interrupt-names = "rx", "tx"; | ||
}; | ||
|
||
}; | ||
|
||
sram@0 { | ||
compatible = "mmio-sram"; | ||
reg = <0x0 0x10000>; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
ranges = <0 0x0 0x10000>; | ||
smp-sram@f100 { | ||
compatible = "socionext,milbeaut-smp-sram"; | ||
reg = <0xf100 0x20>; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
CONFIG_SYSVIPC=y | ||
CONFIG_NO_HZ=y | ||
CONFIG_HIGH_RES_TIMERS=y | ||
CONFIG_CGROUPS=y | ||
CONFIG_BLK_DEV_INITRD=y | ||
CONFIG_EMBEDDED=y | ||
CONFIG_PERF_EVENTS=y | ||
CONFIG_ARCH_MILBEAUT=y | ||
CONFIG_ARCH_MILBEAUT_M10V=y | ||
CONFIG_ARM_THUMBEE=y | ||
# CONFIG_VDSO is not set | ||
# CONFIG_CACHE_L2X0 is not set | ||
CONFIG_ARM_ERRATA_430973=y | ||
CONFIG_ARM_ERRATA_720789=y | ||
CONFIG_ARM_ERRATA_754322=y | ||
CONFIG_ARM_ERRATA_754327=y | ||
CONFIG_ARM_ERRATA_764369=y | ||
CONFIG_ARM_ERRATA_775420=y | ||
CONFIG_ARM_ERRATA_798181=y | ||
CONFIG_SMP=y | ||
# CONFIG_SMP_ON_UP is not set | ||
# CONFIG_ARM_CPU_TOPOLOGY is not set | ||
CONFIG_HAVE_ARM_ARCH_TIMER=y | ||
CONFIG_NR_CPUS=16 | ||
CONFIG_THUMB2_KERNEL=y | ||
# CONFIG_THUMB2_AVOID_R_ARM_THM_JUMP11 is not set | ||
# CONFIG_ARM_PATCH_IDIV is not set | ||
CONFIG_HIGHMEM=y | ||
CONFIG_FORCE_MAX_ZONEORDER=12 | ||
CONFIG_SECCOMP=y | ||
CONFIG_KEXEC=y | ||
CONFIG_EFI=y | ||
CONFIG_CPU_FREQ=y | ||
CONFIG_CPU_FREQ_STAT=y | ||
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y | ||
CONFIG_CPU_FREQ_GOV_POWERSAVE=m | ||
CONFIG_CPU_FREQ_GOV_USERSPACE=m | ||
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m | ||
CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y | ||
CONFIG_CPUFREQ_DT=y | ||
CONFIG_QORIQ_CPUFREQ=y | ||
CONFIG_CPU_IDLE=y | ||
CONFIG_ARM_CPUIDLE=y | ||
CONFIG_VFP=y | ||
CONFIG_NEON=y | ||
CONFIG_KERNEL_MODE_NEON=y | ||
CONFIG_EFI_VARS=m | ||
CONFIG_EFI_CAPSULE_LOADER=m | ||
CONFIG_ARM_CRYPTO=y | ||
CONFIG_CRYPTO_SHA1_ARM_NEON=m | ||
CONFIG_CRYPTO_SHA1_ARM_CE=m | ||
CONFIG_CRYPTO_SHA2_ARM_CE=m | ||
CONFIG_CRYPTO_SHA512_ARM=m | ||
CONFIG_CRYPTO_AES_ARM=m | ||
CONFIG_CRYPTO_AES_ARM_BS=m | ||
CONFIG_CRYPTO_AES_ARM_CE=m | ||
CONFIG_CRYPTO_GHASH_ARM_CE=m | ||
CONFIG_CRYPTO_CRC32_ARM_CE=m | ||
CONFIG_CRYPTO_CHACHA20_NEON=m | ||
CONFIG_MODULES=y | ||
CONFIG_MODULE_UNLOAD=y | ||
CONFIG_PARTITION_ADVANCED=y | ||
CONFIG_CMDLINE_PARTITION=y | ||
CONFIG_CMA=y | ||
CONFIG_DEVTMPFS=y | ||
CONFIG_DEVTMPFS_MOUNT=y | ||
CONFIG_DMA_CMA=y | ||
CONFIG_CMA_SIZE_MBYTES=64 | ||
CONFIG_OF_OVERLAY=y | ||
CONFIG_BLK_DEV_LOOP=y | ||
CONFIG_BLK_DEV_RAM=y | ||
CONFIG_BLK_DEV_RAM_SIZE=65536 | ||
CONFIG_SRAM=y | ||
CONFIG_INPUT_FF_MEMLESS=m | ||
CONFIG_INPUT_MATRIXKMAP=y | ||
# CONFIG_INPUT_KEYBOARD is not set | ||
# CONFIG_INPUT_MOUSE is not set | ||
CONFIG_SERIO_LIBPS2=y | ||
CONFIG_VT_HW_CONSOLE_BINDING=y | ||
CONFIG_SERIAL_DEV_BUS=y | ||
# CONFIG_HW_RANDOM is not set | ||
CONFIG_GPIOLIB=y | ||
CONFIG_GPIO_GENERIC_PLATFORM=y | ||
# CONFIG_HWMON is not set | ||
CONFIG_MEDIA_SUPPORT=m | ||
CONFIG_MEDIA_CAMERA_SUPPORT=y | ||
CONFIG_MEDIA_CONTROLLER=y | ||
# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set | ||
# CONFIG_HID is not set | ||
# CONFIG_USB_SUPPORT is not set | ||
CONFIG_SYNC_FILE=y | ||
# CONFIG_VIRTIO_MENU is not set | ||
# CONFIG_IOMMU_SUPPORT is not set | ||
CONFIG_SOC_BRCMSTB=y | ||
CONFIG_MEMORY=y | ||
# CONFIG_ARM_PMU is not set | ||
CONFIG_EXT4_FS=y | ||
CONFIG_AUTOFS4_FS=y | ||
CONFIG_MSDOS_FS=y | ||
CONFIG_VFAT_FS=y | ||
CONFIG_NTFS_FS=y | ||
CONFIG_TMPFS=y | ||
CONFIG_TMPFS_POSIX_ACL=y | ||
CONFIG_CONFIGFS_FS=y | ||
# CONFIG_MISC_FILESYSTEMS is not set | ||
CONFIG_NLS_CODEPAGE_437=y | ||
CONFIG_NLS_ISO8859_1=y | ||
CONFIG_NLS_UTF8=y | ||
CONFIG_KEYS=y | ||
CONFIG_CRYPTO_MANAGER=y | ||
# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set | ||
CONFIG_CRYPTO_SEQIV=m | ||
# CONFIG_CRYPTO_ECHAINIV is not set | ||
CONFIG_CRYPTO_AES=y | ||
# CONFIG_CRYPTO_HW is not set | ||
CONFIG_CRC_CCITT=m | ||
CONFIG_CRC_ITU_T=m | ||
CONFIG_PRINTK_TIME=y | ||
CONFIG_MAGIC_SYSRQ=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
menuconfig ARCH_MILBEAUT | ||
bool "Socionext Milbeaut SoCs" | ||
depends on ARCH_MULTI_V7 | ||
select ARM_GIC | ||
help | ||
This enables support for Socionext Milbeaut SoCs | ||
|
||
if ARCH_MILBEAUT | ||
|
||
config ARCH_MILBEAUT_M10V | ||
bool "Milbeaut SC2000/M10V platform" | ||
select ARM_ARCH_TIMER | ||
select MILBEAUT_TIMER | ||
select PINCTRL | ||
select PINCTRL_MILBEAUT | ||
help | ||
Support for Socionext's MILBEAUT M10V based systems | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
obj-$(CONFIG_SMP) += platsmp.o |
Oops, something went wrong.