mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 12:44:03 +02:00
riscv: dts: spacemit: k3: Initial support for CoM260-IFX board
The K3 CoM260-IFX board combine with one 260 pins "Gold Finger" computer module with a carrier board. The module integrates the K3 SoC, LPDDR5, UFS storage, Gigabit Ethernet, Micro SD card, PMIC Chip. The board offers a comprehensive array of interfaces, including MIPI-DSI, MIPI-CSI, DisplayPort, SDIO, SPI, I2S, I2C, CAN-FD, PWM, UART, USB, PCIe, and GMAC. Add initial support for enabling Serial UART and ethernet. Link: https://patch.msgid.link/20260520-02-k3-com260-ifx-v2-2-d55095457cf0@kernel.org Signed-off-by: Yixun Lan <dlan@kernel.org>
This commit is contained in:
parent
3abf3f5c84
commit
cfe5c91cb7
|
|
@ -4,5 +4,6 @@ dtb-$(CONFIG_ARCH_SPACEMIT) += k1-milkv-jupiter.dtb
|
|||
dtb-$(CONFIG_ARCH_SPACEMIT) += k1-musepi-pro.dtb
|
||||
dtb-$(CONFIG_ARCH_SPACEMIT) += k1-orangepi-r2s.dtb
|
||||
dtb-$(CONFIG_ARCH_SPACEMIT) += k1-orangepi-rv2.dtb
|
||||
dtb-$(CONFIG_ARCH_SPACEMIT) += k3-com260-ifx.dtb
|
||||
dtb-$(CONFIG_ARCH_SPACEMIT) += k3-deepcomputing-fml13v05.dtb
|
||||
dtb-$(CONFIG_ARCH_SPACEMIT) += k3-pico-itx.dtb
|
||||
|
|
|
|||
21
arch/riscv/boot/dts/spacemit/k3-com260-ifx.dts
Normal file
21
arch/riscv/boot/dts/spacemit/k3-com260-ifx.dts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
||||
/*
|
||||
* Copyright (c) 2026 SpacemiT (Hangzhou) Technology Co. Ltd
|
||||
* Copyright (c) 2026 Yixun Lan <dlan@kernel.org>
|
||||
*/
|
||||
|
||||
#include "k3-com260.dtsi"
|
||||
|
||||
/ {
|
||||
model = "SpacemiT K3 CoM260 IFX";
|
||||
compatible = "spacemit,k3-com260-ifx", "spacemit,k3-com260", "spacemit,k3";
|
||||
|
||||
aliases {
|
||||
serial0 = &uart0;
|
||||
ethernet0 = ð1;
|
||||
};
|
||||
|
||||
chosen {
|
||||
stdout-path = "serial0:115200n8";
|
||||
};
|
||||
};
|
||||
190
arch/riscv/boot/dts/spacemit/k3-com260.dtsi
Normal file
190
arch/riscv/boot/dts/spacemit/k3-com260.dtsi
Normal file
|
|
@ -0,0 +1,190 @@
|
|||
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
||||
/*
|
||||
* Copyright (c) 2026 SpacemiT (Hangzhou) Technology Co. Ltd
|
||||
* Copyright (c) 2026 Yixun Lan <dlan@kernel.org>
|
||||
*/
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
|
||||
#include "k3.dtsi"
|
||||
#include "k3-pinctrl.dtsi"
|
||||
|
||||
/ {
|
||||
model = "SpacemiT K3 CoM260 Module";
|
||||
compatible = "spacemit,k3-com260", "spacemit,k3";
|
||||
|
||||
memory@100000000 {
|
||||
device_type = "memory";
|
||||
reg = <0x1 0x00000000 0x4 0x00000000>;
|
||||
};
|
||||
|
||||
reg_5v_sys: regulator-5v-sys {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "P5V0_SYS";
|
||||
regulator-min-microvolt = <5000000>;
|
||||
regulator-max-microvolt = <5000000>;
|
||||
regulator-always-on;
|
||||
};
|
||||
};
|
||||
|
||||
&i2c8 {
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&i2c8_cfg>;
|
||||
status = "okay";
|
||||
|
||||
pmic@41 {
|
||||
compatible = "spacemit,p1";
|
||||
reg = <0x41>;
|
||||
interrupts = <64 IRQ_TYPE_LEVEL_HIGH>;
|
||||
vin1-supply = <®_5v_sys>;
|
||||
vin2-supply = <®_5v_sys>;
|
||||
vin3-supply = <®_5v_sys>;
|
||||
vin4-supply = <®_5v_sys>;
|
||||
vin5-supply = <®_5v_sys>;
|
||||
vin6-supply = <®_5v_sys>;
|
||||
aldoin-supply = <®_5v_sys>;
|
||||
dldoin1-supply = <&buck4>;
|
||||
dldoin2-supply = <&buck4>;
|
||||
|
||||
regulators {
|
||||
buck1: buck1 {
|
||||
regulator-min-microvolt = <1050000>;
|
||||
regulator-max-microvolt = <1050000>;
|
||||
regulator-ramp-delay = <5000>;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
buck2: buck2 {
|
||||
regulator-min-microvolt = <1050000>;
|
||||
regulator-max-microvolt = <1050000>;
|
||||
regulator-ramp-delay = <5000>;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
buck3: buck3 {
|
||||
regulator-min-microvolt = <800000>;
|
||||
regulator-max-microvolt = <800000>;
|
||||
regulator-ramp-delay = <5000>;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
buck4: buck4 {
|
||||
regulator-min-microvolt = <2100000>;
|
||||
regulator-max-microvolt = <2100000>;
|
||||
regulator-ramp-delay = <5000>;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
buck5: buck5 {
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
regulator-ramp-delay = <5000>;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
buck6: buck6 {
|
||||
regulator-min-microvolt = <500000>;
|
||||
regulator-max-microvolt = <500000>;
|
||||
regulator-ramp-delay = <5000>;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
aldo1: aldo1 {
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <3300000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
};
|
||||
|
||||
aldo2: aldo2 {
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
};
|
||||
|
||||
aldo3: aldo3 {
|
||||
regulator-min-microvolt = <500000>;
|
||||
regulator-max-microvolt = <3400000>;
|
||||
};
|
||||
|
||||
aldo4: aldo4 {
|
||||
regulator-min-microvolt = <3300000>;
|
||||
regulator-max-microvolt = <3300000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
};
|
||||
|
||||
dldo1: dldo1 {
|
||||
regulator-min-microvolt = <1200000>;
|
||||
regulator-max-microvolt = <1200000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
};
|
||||
|
||||
dldo2: dldo2 {
|
||||
regulator-min-microvolt = <900000>;
|
||||
regulator-max-microvolt = <900000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
};
|
||||
|
||||
dldo3: dldo3 {
|
||||
regulator-min-microvolt = <800000>;
|
||||
regulator-max-microvolt = <800000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
};
|
||||
|
||||
dldo4: dldo4 {
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
regulator-boot-on;
|
||||
};
|
||||
|
||||
dldo5: dldo5 {
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
};
|
||||
|
||||
dldo6: dldo6 {
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
};
|
||||
|
||||
dldo7: dldo7 {
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
ð1 {
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&gmac1_rgmii_0_cfg>, <&gmac1_phy_0_cfg>;
|
||||
phy-mode = "rgmii-id";
|
||||
phy-handle = <&phy1>;
|
||||
status = "okay";
|
||||
|
||||
mdio {
|
||||
phy1: phy@1 {
|
||||
compatible = "ethernet-phy-ieee802.3-c22";
|
||||
reg = <1>;
|
||||
reset-gpios = <&gpio 1 5 GPIO_ACTIVE_LOW>;
|
||||
reset-assert-us = <10000>;
|
||||
reset-deassert-us = <10000>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&uart0 {
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&uart0_0_cfg>;
|
||||
status = "okay";
|
||||
};
|
||||
|
|
@ -45,6 +45,39 @@ gmac0-phy-0-pins {
|
|||
};
|
||||
};
|
||||
|
||||
gmac1_rgmii_0_cfg: gmac1-rgmii-0-cfg {
|
||||
gmac1-rgmii-0-pins {
|
||||
pinmux = <K3_PADCONF(21, 1)>, /* gmac1_rxdv */
|
||||
<K3_PADCONF(22, 1)>, /* gmac1 rx d0 */
|
||||
<K3_PADCONF(23, 1)>, /* gmac1 rx d1 */
|
||||
<K3_PADCONF(24, 1)>, /* gmac1 rx_clk */
|
||||
<K3_PADCONF(25, 1)>, /* gmac1 rx d2 */
|
||||
<K3_PADCONF(26, 1)>, /* gmac1 rx d3 */
|
||||
<K3_PADCONF(27, 1)>, /* gmac1 tx d0 */
|
||||
<K3_PADCONF(28, 1)>, /* gmac1 tx d1 */
|
||||
<K3_PADCONF(29, 1)>, /* gmac1 tx clk */
|
||||
<K3_PADCONF(30, 1)>, /* gmac1 tx d2 */
|
||||
<K3_PADCONF(31, 1)>, /* gmac1 tx d3 */
|
||||
<K3_PADCONF(32, 1)>, /* gmac1 tx_en */
|
||||
<K3_PADCONF(33, 1)>, /* gmac1 mdc */
|
||||
<K3_PADCONF(34, 1)>; /* gmac1 mdio */
|
||||
|
||||
bias-disable;
|
||||
drive-strength = <25>;
|
||||
power-source = <1800>;
|
||||
};
|
||||
};
|
||||
|
||||
gmac1_phy_0_cfg: gmac1-phy-0-cfg {
|
||||
gmac1-phy-0-pins {
|
||||
pinmux = <K3_PADCONF(35, 1)>; /* gmac1 int */
|
||||
|
||||
bias-disable;
|
||||
drive-strength = <25>;
|
||||
power-source = <1800>;
|
||||
};
|
||||
};
|
||||
|
||||
/omit-if-no-ref/
|
||||
i2c8_cfg: i2c8-cfg {
|
||||
i2c8-pins {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user