blob: 38e1a1e25f33c60bc046c9304511d3995d0bea7d [file] [log] [blame]
Jagan Teki750d5a82023-01-30 20:27:43 +05301// 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 max-frequency = <200000000>;
29 mmc-hs400-1_8v;
30 mmc-hs400-enhanced-strobe;
31 status = "okay";
32};