1// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2/*
3 * Copyright (c) 2022 Edgeble AI Technologies Pvt. Ltd.
4 */
5
6/ {
7	compatible = "edgeble,neural-compute-module-6a", "rockchip,rk3588";
8
9	aliases {
10		mmc0 = &sdhci;
11	};
12
13	vcc12v_dcin: vcc12v-dcin-regulator {
14		compatible = "regulator-fixed";
15		regulator-name = "vcc12v_dcin";
16		regulator-always-on;
17		regulator-boot-on;
18		regulator-min-microvolt = <12000000>;
19		regulator-max-microvolt = <12000000>;
20	};
21};
22
23&sdhci {
24	bus-width = <8>;
25	no-sdio;
26	no-sd;
27	non-removable;
28	mmc-hs400-1_8v;
29	mmc-hs400-enhanced-strobe;
30	status = "okay";
31};
32