|
|
@@ -0,0 +1,729 @@
|
|
|
+From 0ee8053a17e6f4d6dbde0828e775309cba38c171 Mon Sep 17 00:00:00 2001
|
|
|
+From: Christian Marangi <[email protected]>
|
|
|
+Date: Tue, 29 Apr 2025 13:06:59 +0200
|
|
|
+Subject: [PATCH 1/3] airoha: add support for Airoha AN7583 SoC
|
|
|
+
|
|
|
+Add support for Airoha AN7583 SoC. This adds the Kconfig and Makefile
|
|
|
+entry for the SoC, DTSI and initial config for it. Also add the code for
|
|
|
+CPU and RAM initialization. Everything is mostly based on AN7581 that
|
|
|
+share lots of common piece.
|
|
|
+
|
|
|
+Signed-off-by: Christian Marangi <[email protected]>
|
|
|
+---
|
|
|
+ arch/arm/dts/an7583-evb.dts | 67 +++++
|
|
|
+ arch/arm/dts/an7583.dtsi | 387 +++++++++++++++++++++++++++
|
|
|
+ arch/arm/mach-airoha/Kconfig | 14 +
|
|
|
+ arch/arm/mach-airoha/Makefile | 1 +
|
|
|
+ arch/arm/mach-airoha/an7583/Makefile | 3 +
|
|
|
+ arch/arm/mach-airoha/an7583/init.c | 47 ++++
|
|
|
+ board/airoha/an7583/MAINTAINERS | 5 +
|
|
|
+ board/airoha/an7583/Makefile | 3 +
|
|
|
+ board/airoha/an7583/an7583_rfb.c | 16 ++
|
|
|
+ configs/an7583_evb_defconfig | 83 ++++++
|
|
|
+ include/configs/an7583.h | 19 ++
|
|
|
+ 11 files changed, 645 insertions(+)
|
|
|
+ create mode 100644 arch/arm/dts/an7583-evb.dts
|
|
|
+ create mode 100644 arch/arm/dts/an7583.dtsi
|
|
|
+ create mode 100644 arch/arm/mach-airoha/an7583/Makefile
|
|
|
+ create mode 100644 arch/arm/mach-airoha/an7583/init.c
|
|
|
+ create mode 100644 board/airoha/an7583/MAINTAINERS
|
|
|
+ create mode 100644 board/airoha/an7583/Makefile
|
|
|
+ create mode 100644 board/airoha/an7583/an7583_rfb.c
|
|
|
+ create mode 100644 configs/an7583_evb_defconfig
|
|
|
+ create mode 100644 include/configs/an7583.h
|
|
|
+
|
|
|
+--- /dev/null
|
|
|
++++ b/arch/arm/dts/an7583-evb.dts
|
|
|
+@@ -0,0 +1,67 @@
|
|
|
++// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
|
++/dts-v1/;
|
|
|
++
|
|
|
++/* Bootloader installs ATF here */
|
|
|
++/memreserve/ 0x80000000 0x200000;
|
|
|
++
|
|
|
++#include <dt-bindings/leds/common.h>
|
|
|
++#include <dt-bindings/gpio/gpio.h>
|
|
|
++#include <dt-bindings/input/input.h>
|
|
|
++#include "an7583.dtsi"
|
|
|
++
|
|
|
++/ {
|
|
|
++ model = "Airoha AN7583 Evaluation Board";
|
|
|
++ compatible = "airoha,an7583-evb", "airoha,an7583", "airoha,en7583";
|
|
|
++
|
|
|
++ aliases {
|
|
|
++ serial0 = &uart1;
|
|
|
++ };
|
|
|
++
|
|
|
++ chosen {
|
|
|
++ bootargs = "console=ttyS0,115200 earlycon";
|
|
|
++ stdout-path = "serial0:115200n8";
|
|
|
++ linux,usable-memory-range = <0x0 0x80200000 0x0 0x1fe00000>;
|
|
|
++ };
|
|
|
++
|
|
|
++ /* When running as a first-stage bootloader this isn't filled in automatically */
|
|
|
++ memory@80000000 {
|
|
|
++ device_type = "memory";
|
|
|
++ reg = <0x0 0x80000000 0x0 0x20000000>;
|
|
|
++ };
|
|
|
++};
|
|
|
++
|
|
|
++&an7583_pinctrl {
|
|
|
++ pcie0_rst_pins: pcie0-rst-pins {
|
|
|
++ conf {
|
|
|
++ pins = "pcie_reset0";
|
|
|
++ drive-open-drain = <1>;
|
|
|
++ };
|
|
|
++ };
|
|
|
++
|
|
|
++ pcie1_rst_pins: pcie1-rst-pins {
|
|
|
++ conf {
|
|
|
++ pins = "pcie_reset1";
|
|
|
++ drive-open-drain = <1>;
|
|
|
++ };
|
|
|
++ };
|
|
|
++};
|
|
|
++
|
|
|
++&pcie0 {
|
|
|
++ pinctrl-names = "default";
|
|
|
++ pinctrl-0 = <&pcie0_rst_pins>;
|
|
|
++ status = "okay";
|
|
|
++};
|
|
|
++
|
|
|
++&pcie1 {
|
|
|
++ pinctrl-names = "default";
|
|
|
++ pinctrl-0 = <&pcie1_rst_pins>;
|
|
|
++ status = "okay";
|
|
|
++};
|
|
|
++
|
|
|
++&i2c0 {
|
|
|
++ status = "okay";
|
|
|
++};
|
|
|
++
|
|
|
++&snfi {
|
|
|
++ status = "okay";
|
|
|
++};
|
|
|
+--- /dev/null
|
|
|
++++ b/arch/arm/dts/an7583.dtsi
|
|
|
+@@ -0,0 +1,387 @@
|
|
|
++// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
|
++
|
|
|
++#include <dt-bindings/interrupt-controller/irq.h>
|
|
|
++#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
|
++#include <dt-bindings/clock/en7523-clk.h>
|
|
|
++#include <dt-bindings/reset/airoha,an7583-reset.h>
|
|
|
++#include <dt-bindings/leds/common.h>
|
|
|
++#include <dt-bindings/thermal/thermal.h>
|
|
|
++
|
|
|
++/ {
|
|
|
++ interrupt-parent = <&gic>;
|
|
|
++ #address-cells = <2>;
|
|
|
++ #size-cells = <2>;
|
|
|
++
|
|
|
++ reserved-memory {
|
|
|
++ #address-cells = <2>;
|
|
|
++ #size-cells = <2>;
|
|
|
++ ranges;
|
|
|
++
|
|
|
++ atf-reserved-memory@80000000 {
|
|
|
++ no-map;
|
|
|
++ reg = <0x0 0x80000000 0x0 0x40000>;
|
|
|
++ };
|
|
|
++
|
|
|
++ npu-binary@84000000 {
|
|
|
++ no-map;
|
|
|
++ reg = <0x0 0x84000000 0x0 0xa00000>;
|
|
|
++ };
|
|
|
++
|
|
|
++ npu-flag@84b0000 {
|
|
|
++ no-map;
|
|
|
++ reg = <0x0 0x84b00000 0x0 0x100000>;
|
|
|
++ };
|
|
|
++
|
|
|
++ npu-pkt@85000000 {
|
|
|
++ no-map;
|
|
|
++ reg = <0x0 0x85000000 0x0 0x1a00000>;
|
|
|
++ };
|
|
|
++
|
|
|
++ npu-phyaddr@86b00000 {
|
|
|
++ no-map;
|
|
|
++ reg = <0x0 0x86b00000 0x0 0x100000>;
|
|
|
++ };
|
|
|
++
|
|
|
++ npu-rxdesc@86d00000 {
|
|
|
++ no-map;
|
|
|
++ reg = <0x0 0x86d00000 0x0 0x100000>;
|
|
|
++ };
|
|
|
++ };
|
|
|
++
|
|
|
++ psci {
|
|
|
++ compatible = "arm,psci-1.0";
|
|
|
++ method = "smc";
|
|
|
++ };
|
|
|
++
|
|
|
++ cpus {
|
|
|
++ #address-cells = <1>;
|
|
|
++ #size-cells = <0>;
|
|
|
++
|
|
|
++ cpu-map {
|
|
|
++ cluster0 {
|
|
|
++ core0 {
|
|
|
++ cpu = <&cpu0>;
|
|
|
++ };
|
|
|
++
|
|
|
++ core1 {
|
|
|
++ cpu = <&cpu1>;
|
|
|
++ };
|
|
|
++ };
|
|
|
++ };
|
|
|
++
|
|
|
++ cpu0: cpu@0 {
|
|
|
++ device_type = "cpu";
|
|
|
++ compatible = "arm,cortex-a53";
|
|
|
++ reg = <0x0>;
|
|
|
++ enable-method = "psci";
|
|
|
++ next-level-cache = <&l2>;
|
|
|
++ #cooling-cells = <2>;
|
|
|
++ };
|
|
|
++
|
|
|
++ cpu1: cpu@1 {
|
|
|
++ device_type = "cpu";
|
|
|
++ compatible = "arm,cortex-a53";
|
|
|
++ reg = <0x1>;
|
|
|
++ enable-method = "psci";
|
|
|
++ next-level-cache = <&l2>;
|
|
|
++ #cooling-cells = <2>;
|
|
|
++ };
|
|
|
++
|
|
|
++ l2: l2-cache {
|
|
|
++ compatible = "cache";
|
|
|
++ cache-size = <0x80000>;
|
|
|
++ cache-line-size = <64>;
|
|
|
++ cache-level = <2>;
|
|
|
++ cache-unified;
|
|
|
++ };
|
|
|
++ };
|
|
|
++
|
|
|
++ timer {
|
|
|
++ compatible = "arm,armv8-timer";
|
|
|
++ interrupt-parent = <&gic>;
|
|
|
++ interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_LOW>,
|
|
|
++ <GIC_PPI 14 IRQ_TYPE_LEVEL_LOW>,
|
|
|
++ <GIC_PPI 11 IRQ_TYPE_LEVEL_LOW>,
|
|
|
++ <GIC_PPI 10 IRQ_TYPE_LEVEL_LOW>;
|
|
|
++ };
|
|
|
++
|
|
|
++ soc {
|
|
|
++ compatible = "simple-bus";
|
|
|
++ #address-cells = <2>;
|
|
|
++ #size-cells = <2>;
|
|
|
++ ranges;
|
|
|
++
|
|
|
++ gic: interrupt-controller@9000000 {
|
|
|
++ compatible = "arm,gic-v3";
|
|
|
++ interrupt-controller;
|
|
|
++ #interrupt-cells = <3>;
|
|
|
++ #address-cells = <1>;
|
|
|
++ #size-cells = <1>;
|
|
|
++ reg = <0x0 0x09000000 0x0 0x20000>,
|
|
|
++ <0x0 0x09080000 0x0 0x80000>,
|
|
|
++ <0x0 0x09400000 0x0 0x2000>,
|
|
|
++ <0x0 0x09500000 0x0 0x2000>,
|
|
|
++ <0x0 0x09600000 0x0 0x20000>;
|
|
|
++ interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_LOW>;
|
|
|
++ };
|
|
|
++
|
|
|
++ chip_scu: syscon@1fa20000 {
|
|
|
++ compatible = "airoha,en7581-chip-scu", "syscon";
|
|
|
++ reg = <0x0 0x1fa20000 0x0 0x388>;
|
|
|
++ };
|
|
|
++
|
|
|
++ syscon@1fbe3400 {
|
|
|
++ compatible = "airoha,en7581-pbus-csr", "syscon";
|
|
|
++ reg = <0x0 0x1fbe3400 0x0 0xff>;
|
|
|
++ };
|
|
|
++
|
|
|
++ system-controller@1fa20000 {
|
|
|
++ compatible = "syscon", "simple-mfd";
|
|
|
++ reg = <0x0 0x1fb00000 0x0 0x970>;
|
|
|
++
|
|
|
++ scuclk: scuclk {
|
|
|
++ compatible = "airoha,an7583-scu";
|
|
|
++ #clock-cells = <1>;
|
|
|
++ #reset-cells = <1>;
|
|
|
++ };
|
|
|
++
|
|
|
++ mdio_0: mdio-0 {
|
|
|
++ compatible = "airoha,an7583-mdio";
|
|
|
++ resets = <&scuclk AN7583_MDIO0>;
|
|
|
++
|
|
|
++ airoha,bus-id = <0>;
|
|
|
++ };
|
|
|
++
|
|
|
++ mdio_1: mdio-1 {
|
|
|
++ compatible = "airoha,an7583-mdio";
|
|
|
++ resets = <&scuclk AN7583_MDIO1>;
|
|
|
++
|
|
|
++ airoha,bus-id = <1>;
|
|
|
++ };
|
|
|
++ };
|
|
|
++
|
|
|
++ system-controller@1fbf0200 {
|
|
|
++ compatible = "syscon", "simple-mfd";
|
|
|
++ reg = <0x0 0x1fbf0200 0x0 0xc0>;
|
|
|
++
|
|
|
++ an7583_pinctrl: pinctrl {
|
|
|
++ compatible = "airoha,en7583-pinctrl";
|
|
|
++
|
|
|
++ interrupt-parent = <&gic>;
|
|
|
++ interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
++
|
|
|
++ gpio-controller;
|
|
|
++ #gpio-cells = <2>;
|
|
|
++
|
|
|
++ interrupt-controller;
|
|
|
++ #interrupt-cells = <2>;
|
|
|
++ };
|
|
|
++ };
|
|
|
++
|
|
|
++ i2cclock: i2cclock@0 {
|
|
|
++ #clock-cells = <0>;
|
|
|
++ compatible = "fixed-clock";
|
|
|
++
|
|
|
++ /* 20 MHz */
|
|
|
++ clock-frequency = <20000000>;
|
|
|
++ };
|
|
|
++
|
|
|
++ i2c0: i2c0@1fbf8000 {
|
|
|
++ compatible = "mediatek,mt7621-i2c";
|
|
|
++ reg = <0x0 0x1fbf8000 0x0 0x100>;
|
|
|
++
|
|
|
++ clocks = <&i2cclock>;
|
|
|
++
|
|
|
++ /* 100 kHz */
|
|
|
++ clock-frequency = <100000>;
|
|
|
++ #address-cells = <1>;
|
|
|
++ #size-cells = <0>;
|
|
|
++
|
|
|
++ status = "disable";
|
|
|
++ };
|
|
|
++
|
|
|
++ i2c1: i2c1@1fbf8100 {
|
|
|
++ compatible = "mediatek,mt7621-i2c";
|
|
|
++ reg = <0x0 0x1fbf8100 0x0 0x100>;
|
|
|
++
|
|
|
++ clocks = <&i2cclock>;
|
|
|
++
|
|
|
++ /* 100 kHz */
|
|
|
++ clock-frequency = <100000>;
|
|
|
++ #address-cells = <1>;
|
|
|
++ #size-cells = <0>;
|
|
|
++
|
|
|
++ status = "disable";
|
|
|
++ };
|
|
|
++
|
|
|
++ snfi: spi@1fa10000 {
|
|
|
++ compatible = "airoha,en7581-snand";
|
|
|
++ reg = <0x0 0x1fa10000 0x0 0x140>,
|
|
|
++ <0x0 0x1fa11000 0x0 0x600>;
|
|
|
++
|
|
|
++ clocks = <&scuclk EN7523_CLK_SPI>;
|
|
|
++ clock-names = "spi";
|
|
|
++
|
|
|
++ #address-cells = <1>;
|
|
|
++ #size-cells = <0>;
|
|
|
++
|
|
|
++ status = "disabled";
|
|
|
++
|
|
|
++ spi_nand: nand@0 {
|
|
|
++ compatible = "spi-nand";
|
|
|
++ reg = <0>;
|
|
|
++ spi-max-frequency = <50000000>;
|
|
|
++ spi-tx-bus-width = <1>;
|
|
|
++ spi-rx-bus-width = <2>;
|
|
|
++ };
|
|
|
++ };
|
|
|
++
|
|
|
++ uart1: serial@1fbf0000 {
|
|
|
++ compatible = "ns16550";
|
|
|
++ reg = <0x0 0x1fbf0000 0x0 0x30>;
|
|
|
++ reg-io-width = <4>;
|
|
|
++ reg-shift = <2>;
|
|
|
++ interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
++ clock-frequency = <1843200>;
|
|
|
++ bootph-all;
|
|
|
++ };
|
|
|
++
|
|
|
++ uart2: serial@1fbf0300 {
|
|
|
++ compatible = "airoha,en7523-uart";
|
|
|
++ reg = <0x0 0x1fbf0300 0x0 0x30>;
|
|
|
++ reg-io-width = <4>;
|
|
|
++ reg-shift = <2>;
|
|
|
++ interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
++ clock-frequency = <7372800>;
|
|
|
++
|
|
|
++ status = "disabled";
|
|
|
++ };
|
|
|
++
|
|
|
++ hsuart3: serial@1fbe1000 {
|
|
|
++ compatible = "airoha,en7523-uart";
|
|
|
++ reg = <0x0 0x1fbe1000 0x0 0x40>;
|
|
|
++ reg-io-width = <4>;
|
|
|
++ reg-shift = <2>;
|
|
|
++ interrupts = <GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
++ clock-frequency = <7372800>;
|
|
|
++
|
|
|
++ status = "disabled";
|
|
|
++ };
|
|
|
++
|
|
|
++ uart4: serial@1fbf0600 {
|
|
|
++ compatible = "airoha,en7523-uart";
|
|
|
++ reg = <0x0 0x1fbf0600 0x0 0x30>;
|
|
|
++ reg-io-width = <4>;
|
|
|
++ reg-shift = <2>;
|
|
|
++ interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
++ clock-frequency = <7372800>;
|
|
|
++
|
|
|
++ status = "disabled";
|
|
|
++ };
|
|
|
++
|
|
|
++ uart5: serial@1fbf0700 {
|
|
|
++ compatible = "airoha,en7523-uart";
|
|
|
++ reg = <0x0 0x1fbf0700 0x0 0x30>;
|
|
|
++ reg-io-width = <4>;
|
|
|
++ reg-shift = <2>;
|
|
|
++ interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
++ clock-frequency = <7372800>;
|
|
|
++
|
|
|
++ status = "disabled";
|
|
|
++ };
|
|
|
++
|
|
|
++ pciephy: phy@1fa5a000 {
|
|
|
++ compatible = "airoha,en7581-pcie-phy";
|
|
|
++ reg = <0x0 0x1fa5a000 0x0 0xfff>,
|
|
|
++ <0x0 0x1fa5b000 0x0 0xfff>,
|
|
|
++ <0x0 0x1fa5c000 0x0 0xfff>,
|
|
|
++ <0x0 0x1fc10044 0x0 0x4>,
|
|
|
++ <0x0 0x1fc30044 0x0 0x4>,
|
|
|
++ <0x0 0x1fc15030 0x0 0x104>;
|
|
|
++ reg-names = "csr-2l", "pma0", "pma1",
|
|
|
++ "p0-xr-dtime", "p1-xr-dtime",
|
|
|
++ "rx-aeq";
|
|
|
++ #phy-cells = <0>;
|
|
|
++ };
|
|
|
++
|
|
|
++ pcie0: pcie@1fc00000 {
|
|
|
++ compatible = "airoha,an7583-pcie";
|
|
|
++ device_type = "pci";
|
|
|
++ linux,pci-domain = <0>;
|
|
|
++ #address-cells = <3>;
|
|
|
++ #size-cells = <2>;
|
|
|
++
|
|
|
++ reg = <0x0 0x1fc20000 0x0 0x1670>;
|
|
|
++ reg-names = "pcie-mac";
|
|
|
++
|
|
|
++ clocks = <&scuclk EN7523_CLK_PCIE>;
|
|
|
++ clock-names = "sys-ck";
|
|
|
++
|
|
|
++ phys = <&pciephy>;
|
|
|
++ phy-names = "pcie-phy";
|
|
|
++
|
|
|
++ ranges = <0x02000000 0 0x20000000 0x0 0x20000000 0 0x4000000>;
|
|
|
++
|
|
|
++ resets = <&scuclk AN7583_PCIE0_RST>,
|
|
|
++ <&scuclk AN7583_PCIE1_RST>;
|
|
|
++ reset-names = "phy-lane0", "phy-lane1";
|
|
|
++
|
|
|
++ interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
++ bus-range = <0x00 0xff>;
|
|
|
++ #interrupt-cells = <1>;
|
|
|
++ interrupt-map-mask = <0 0 0 7>;
|
|
|
++ interrupt-map = <0 0 0 1 &pcie_intc0 0>,
|
|
|
++ <0 0 0 2 &pcie_intc0 1>,
|
|
|
++ <0 0 0 3 &pcie_intc0 2>,
|
|
|
++ <0 0 0 4 &pcie_intc0 3>;
|
|
|
++
|
|
|
++ status = "disabled";
|
|
|
++
|
|
|
++ pcie_intc0: interrupt-controller {
|
|
|
++ interrupt-controller;
|
|
|
++ #address-cells = <0>;
|
|
|
++ #interrupt-cells = <1>;
|
|
|
++ };
|
|
|
++ };
|
|
|
++
|
|
|
++ pcie1: pcie@1fc20000 {
|
|
|
++ compatible = "airoha,an7583-pcie";
|
|
|
++ device_type = "pci";
|
|
|
++ linux,pci-domain = <1>;
|
|
|
++ #address-cells = <3>;
|
|
|
++ #size-cells = <2>;
|
|
|
++
|
|
|
++ reg = <0x0 0x1fa92000 0x0 0x1670>;
|
|
|
++ reg-names = "pcie-mac";
|
|
|
++
|
|
|
++ clocks = <&scuclk EN7523_CLK_PCIE>;
|
|
|
++ clock-names = "sys-ck";
|
|
|
++
|
|
|
++ phys = <&pciephy>;
|
|
|
++ phy-names = "pcie-phy";
|
|
|
++
|
|
|
++ ranges = <0x02000000 0 0x24000000 0x0 0x24000000 0 0x4000000>;
|
|
|
++
|
|
|
++ resets = <&scuclk AN7583_PCIE0_RST>,
|
|
|
++ <&scuclk AN7583_PCIE1_RST>;
|
|
|
++ reset-names = "phy-lane0", "phy-lane1";
|
|
|
++
|
|
|
++ interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
++ bus-range = <0x00 0xff>;
|
|
|
++ #interrupt-cells = <1>;
|
|
|
++ interrupt-map-mask = <0 0 0 7>;
|
|
|
++ interrupt-map = <0 0 0 1 &pcie_intc1 0>,
|
|
|
++ <0 0 0 2 &pcie_intc1 1>,
|
|
|
++ <0 0 0 3 &pcie_intc1 2>,
|
|
|
++ <0 0 0 4 &pcie_intc1 3>;
|
|
|
++
|
|
|
++ status = "disabled";
|
|
|
++
|
|
|
++ pcie_intc1: interrupt-controller {
|
|
|
++ interrupt-controller;
|
|
|
++ #address-cells = <0>;
|
|
|
++ #interrupt-cells = <1>;
|
|
|
++ };
|
|
|
++ };
|
|
|
++ };
|
|
|
++};
|
|
|
+--- a/arch/arm/mach-airoha/Kconfig
|
|
|
++++ b/arch/arm/mach-airoha/Kconfig
|
|
|
+@@ -17,16 +17,30 @@ config TARGET_AN7581
|
|
|
+ Peripherals include Gigabit Ethernet, switch, USB3.0 and OTG, PCIe,
|
|
|
+ I2S, PCM, S/PDIF, UART, SPI, I2C, IR TX/RX, and PWM.
|
|
|
+
|
|
|
++config TARGET_AN7583
|
|
|
++ bool "Airoha AN7583 SoC"
|
|
|
++ select ARM64
|
|
|
++ help
|
|
|
++ The Airoha AN7583 is a ARM-based SoC with a quad-core Cortex-A7
|
|
|
++ including NEON and GPU, Mali-450 graphics, several DDR3 options,
|
|
|
++ crypto engine, built-in Wi-Fi / Bluetooth combo chip, JPEG decoder,
|
|
|
++ video interfaces supporting HDMI and MIPI, and video codec support.
|
|
|
++ Peripherals include Gigabit Ethernet, switch, USB3.0 and OTG, PCIe,
|
|
|
++ I2S, PCM, S/PDIF, UART, SPI, I2C, IR TX/RX, and PWM.
|
|
|
++
|
|
|
+ endchoice
|
|
|
+
|
|
|
+ config SYS_SOC
|
|
|
+ default "an7581" if TARGET_AN7581
|
|
|
++ default "an7583" if TARGET_AN7583
|
|
|
+
|
|
|
+ config SYS_BOARD
|
|
|
+ default "an7581" if TARGET_AN7581
|
|
|
++ default "an7583" if TARGET_AN7583
|
|
|
+
|
|
|
+ config SYS_CONFIG_NAME
|
|
|
+ default "an7581" if TARGET_AN7581
|
|
|
++ default "an7583" if TARGET_AN7583
|
|
|
+
|
|
|
+ endif
|
|
|
+
|
|
|
+--- a/arch/arm/mach-airoha/Makefile
|
|
|
++++ b/arch/arm/mach-airoha/Makefile
|
|
|
+@@ -3,3 +3,4 @@
|
|
|
+ obj-y += cpu.o
|
|
|
+
|
|
|
+ obj-$(CONFIG_TARGET_AN7581) += an7581/
|
|
|
++obj-$(CONFIG_TARGET_AN7583) += an7583/
|
|
|
+--- /dev/null
|
|
|
++++ b/arch/arm/mach-airoha/an7583/Makefile
|
|
|
+@@ -0,0 +1,3 @@
|
|
|
++# SPDX-License-Identifier: GPL-2.0
|
|
|
++
|
|
|
++obj-y += init.o
|
|
|
+--- /dev/null
|
|
|
++++ b/arch/arm/mach-airoha/an7583/init.c
|
|
|
+@@ -0,0 +1,47 @@
|
|
|
++// SPDX-License-Identifier: GPL-2.0
|
|
|
++
|
|
|
++#include <fdtdec.h>
|
|
|
++#include <init.h>
|
|
|
++#include <asm/armv8/mmu.h>
|
|
|
++#include <asm/system.h>
|
|
|
++
|
|
|
++int print_cpuinfo(void)
|
|
|
++{
|
|
|
++ printf("CPU: Airoha AN7583\n");
|
|
|
++ return 0;
|
|
|
++}
|
|
|
++
|
|
|
++int dram_init(void)
|
|
|
++{
|
|
|
++ return fdtdec_setup_mem_size_base();
|
|
|
++}
|
|
|
++
|
|
|
++int dram_init_banksize(void)
|
|
|
++{
|
|
|
++ return fdtdec_setup_memory_banksize();
|
|
|
++}
|
|
|
++
|
|
|
++void reset_cpu(ulong addr)
|
|
|
++{
|
|
|
++ psci_system_reset();
|
|
|
++}
|
|
|
++
|
|
|
++static struct mm_region an7583_mem_map[] = {
|
|
|
++ {
|
|
|
++ /* DDR */
|
|
|
++ .virt = 0x80000000UL,
|
|
|
++ .phys = 0x80000000UL,
|
|
|
++ .size = 0x80000000UL,
|
|
|
++ .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_OUTER_SHARE,
|
|
|
++ }, {
|
|
|
++ .virt = 0x00000000UL,
|
|
|
++ .phys = 0x00000000UL,
|
|
|
++ .size = 0x20000000UL,
|
|
|
++ .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
|
|
++ PTE_BLOCK_NON_SHARE |
|
|
|
++ PTE_BLOCK_PXN | PTE_BLOCK_UXN
|
|
|
++ }, {
|
|
|
++ 0,
|
|
|
++ }
|
|
|
++};
|
|
|
++struct mm_region *mem_map = an7583_mem_map;
|
|
|
+--- /dev/null
|
|
|
++++ b/board/airoha/an7583/MAINTAINERS
|
|
|
+@@ -0,0 +1,5 @@
|
|
|
++AN7581
|
|
|
++M: Christian Marangi <[email protected]>
|
|
|
++S: Maintained
|
|
|
++N: airoha
|
|
|
++N: an7583
|
|
|
+--- /dev/null
|
|
|
++++ b/board/airoha/an7583/Makefile
|
|
|
+@@ -0,0 +1,3 @@
|
|
|
++# SPDX-License-Identifier: GPL-2.0
|
|
|
++
|
|
|
++obj-y += an7583_rfb.o
|
|
|
+--- /dev/null
|
|
|
++++ b/board/airoha/an7583/an7583_rfb.c
|
|
|
+@@ -0,0 +1,16 @@
|
|
|
++// SPDX-License-Identifier: GPL-2.0
|
|
|
++/*
|
|
|
++ * Author: Christian Marangi <[email protected]>
|
|
|
++ */
|
|
|
++
|
|
|
++#include <asm/global_data.h>
|
|
|
++
|
|
|
++DECLARE_GLOBAL_DATA_PTR;
|
|
|
++
|
|
|
++int board_init(void)
|
|
|
++{
|
|
|
++ /* address of boot parameters */
|
|
|
++ gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100;
|
|
|
++
|
|
|
++ return 0;
|
|
|
++}
|
|
|
+--- /dev/null
|
|
|
++++ b/configs/an7583_evb_defconfig
|
|
|
+@@ -0,0 +1,81 @@
|
|
|
++CONFIG_ARM=y
|
|
|
++CONFIG_ARCH_AIROHA=y
|
|
|
++CONFIG_TARGET_AN7583=y
|
|
|
++CONFIG_TEXT_BASE=0x81E00000
|
|
|
++CONFIG_SYS_MALLOC_F_LEN=0x4000
|
|
|
++CONFIG_NR_DRAM_BANKS=1
|
|
|
++CONFIG_ENV_SIZE=0x4000
|
|
|
++CONFIG_ENV_OFFSET=0x7c000
|
|
|
++CONFIG_DM_GPIO=y
|
|
|
++CONFIG_DEFAULT_DEVICE_TREE="an7583-evb"
|
|
|
++CONFIG_DM_RESET=y
|
|
|
++CONFIG_SYS_LOAD_ADDR=0x81800000
|
|
|
++CONFIG_BUILD_TARGET="u-boot.bin"
|
|
|
++# CONFIG_EFI_LOADER is not set
|
|
|
++CONFIG_FIT=y
|
|
|
++CONFIG_FIT_VERBOSE=y
|
|
|
++CONFIG_BOOTDELAY=3
|
|
|
++CONFIG_DEFAULT_FDT_FILE="an7583-evb"
|
|
|
++CONFIG_SYS_PBSIZE=1049
|
|
|
++CONFIG_SYS_CONSOLE_IS_IN_ENV=y
|
|
|
++# CONFIG_DISPLAY_BOARDINFO is not set
|
|
|
++CONFIG_HUSH_PARSER=y
|
|
|
++CONFIG_SYS_PROMPT="U-Boot> "
|
|
|
++CONFIG_SYS_MAXARGS=8
|
|
|
++CONFIG_CMD_BOOTZ=y
|
|
|
++CONFIG_CMD_BOOTMENU=y
|
|
|
++# CONFIG_CMD_ELF is not set
|
|
|
++# CONFIG_CMD_XIMG is not set
|
|
|
++CONFIG_CMD_BIND=y
|
|
|
++CONFIG_CMD_GPIO=y
|
|
|
++CONFIG_CMD_MMC=y
|
|
|
++CONFIG_CMD_MTD=y
|
|
|
++CONFIG_CMD_SF_TEST=y
|
|
|
++CONFIG_CMD_SPI=y
|
|
|
++# CONFIG_CMD_SETEXPR is not set
|
|
|
++CONFIG_CMD_PING=y
|
|
|
++CONFIG_CMD_EXT4=y
|
|
|
++CONFIG_CMD_FAT=y
|
|
|
++CONFIG_CMD_FS_GENERIC=y
|
|
|
++CONFIG_CMD_MTDPARTS=y
|
|
|
++CONFIG_CMD_LOG=y
|
|
|
++CONFIG_ENV_OVERWRITE=y
|
|
|
++CONFIG_ENV_IS_IN_MMC=y
|
|
|
++CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
|
|
++CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
|
|
|
++CONFIG_NET_RANDOM_ETHADDR=y
|
|
|
++CONFIG_REGMAP=y
|
|
|
++CONFIG_SYSCON=y
|
|
|
++CONFIG_CLK=y
|
|
|
++CONFIG_DMA=y
|
|
|
++CONFIG_LED=y
|
|
|
++CONFIG_LED_GPIO=y
|
|
|
++CONFIG_MMC_HS200_SUPPORT=y
|
|
|
++CONFIG_MTD=y
|
|
|
++CONFIG_DM_MTD=y
|
|
|
++CONFIG_MTD_SPI_NAND=y
|
|
|
++CONFIG_DM_SPI_FLASH=y
|
|
|
++CONFIG_SPI_FLASH_EON=y
|
|
|
++CONFIG_SPI_FLASH_GIGADEVICE=y
|
|
|
++CONFIG_SPI_FLASH_ISSI=y
|
|
|
++CONFIG_SPI_FLASH_MACRONIX=y
|
|
|
++CONFIG_SPI_FLASH_SPANSION=y
|
|
|
++CONFIG_SPI_FLASH_STMICRO=y
|
|
|
++CONFIG_SPI_FLASH_WINBOND=y
|
|
|
++CONFIG_SPI_FLASH_MTD=y
|
|
|
++CONFIG_PHYLIB=y
|
|
|
++CONFIG_PHY=y
|
|
|
++CONFIG_PINCTRL=y
|
|
|
++CONFIG_PINCONF=y
|
|
|
++CONFIG_POWER_DOMAIN=y
|
|
|
++CONFIG_DM_REGULATOR=y
|
|
|
++CONFIG_DM_REGULATOR_FIXED=y
|
|
|
++CONFIG_RAM=y
|
|
|
++CONFIG_DM_SERIAL=y
|
|
|
++CONFIG_SYS_NS16550=y
|
|
|
++CONFIG_SPI=y
|
|
|
++CONFIG_DM_SPI=y
|
|
|
++CONFIG_SHA512=y
|
|
|
++CONFIG_AIROHA_ETH=y
|
|
|
++CONFIG_MMC_MTK=y
|
|
|
++CONFIG_AIROHA_SNFI_SPI=y
|
|
|
+--- /dev/null
|
|
|
++++ b/include/configs/an7583.h
|
|
|
+@@ -0,0 +1,19 @@
|
|
|
++/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
++/*
|
|
|
++ * Configuration for Airoha AN7583
|
|
|
++ */
|
|
|
++
|
|
|
++#ifndef __AN7583_H
|
|
|
++#define __AN7583_H
|
|
|
++
|
|
|
++#include <linux/sizes.h>
|
|
|
++
|
|
|
++#define CFG_SYS_UBOOT_BASE CONFIG_TEXT_BASE
|
|
|
++
|
|
|
++#define CFG_SYS_INIT_RAM_ADDR CONFIG_TEXT_BASE
|
|
|
++#define CFG_SYS_INIT_RAM_SIZE SZ_2M
|
|
|
++
|
|
|
++/* DRAM */
|
|
|
++#define CFG_SYS_SDRAM_BASE 0x80000000
|
|
|
++
|
|
|
++#endif
|