1// SPDX-License-Identifier: (GPL-2.0 OR MIT) 2/* 3 * Copyright (C) 2024 Inochi Amaoto <inochiama@outlook.com> 4 */ 5 6#include <dt-bindings/clock/sophgo,cv1800.h> 7#include <dt-bindings/interrupt-controller/irq.h> 8 9/ { 10 soc { 11 emmc: mmc@4300000 { 12 compatible = "sophgo,cv1800b-dwcmshc"; 13 reg = <0x4300000 0x1000>; 14 interrupts = <34 IRQ_TYPE_LEVEL_HIGH>; 15 clocks = <&clk CLK_AXI4_EMMC>, 16 <&clk CLK_EMMC>; 17 clock-names = "core", "bus"; 18 status = "disabled"; 19 }; 20 }; 21}; 22