
On Wed, Apr 14, 2021 at 10:12:42AM +0900, Masami Hiramatsu wrote:
Hello Tom,
2021年4月14日(水) 2:47 Tom Rini trini@konsulko.com:
On Wed, Apr 14, 2021 at 12:31:21AM +0900, Masami Hiramatsu wrote:
Add the DeveloperBox 96boards EE support. This board is also known as Socionext SynQuacer E-Series. It contians one "SC2A11" SoC, which has 24-cores of arm Cortex-A53, and 4 DDR3 slots, 3 PCIe slots (1 4x port and 2 1x ports which are expanded via PCIe bridge chip), 2 USB 3.0 ports and 2 USB 2.0 ports, 2 SATA ports and 1 GbE, 64MB NOR flash and 8GB eMMC on standard MicroATX Form Factor.
For more information, see this page; https://www.96boards.org/product/developerbox/
Signed-off-by: Masami Hiramatsu masami.hiramatsu@linaro.org
[snip]
diff --git a/arch/arm/include/asm/arch-sc2a11/gpio.h b/arch/arm/include/asm/arch-sc2a11/gpio.h new file mode 100644 index 0000000000..6779803080 --- /dev/null +++ b/arch/arm/include/asm/arch-sc2a11/gpio.h @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/*
- Copyright 2021 (C) Linaro Ltd.
- */
+#ifndef __ASM_ARCH_SC2A11_GPIO_H +#define __ASM_ARCH_SC2A11_GPIO_H
+#endif
Please update the list in arch/arm/include/asm/gpio.h to not look for asm/arch/gpio.h on this SoC, thanks.
Ah, I missed that. OK, I'll change arch/arm/include/asm/gpio.h.
BTW, isn't it better to introduce CONFIG_ARCH_GENERIC_GPIO instead of updating the header?
Such a clean-up would be appreciated.