33 lines
612 B
Plaintext
33 lines
612 B
Plaintext
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||
|
/*
|
||
|
* Copyright (c) 2022 Edgeble AI Technologies Pvt. Ltd.
|
||
|
*/
|
||
|
|
||
|
/ {
|
||
|
compatible = "edgeble,neural-compute-module-6a", "rockchip,rk3588";
|
||
|
|
||
|
aliases {
|
||
|
mmc0 = &sdhci;
|
||
|
};
|
||
|
|
||
|
vcc12v_dcin: vcc12v-dcin-regulator {
|
||
|
compatible = "regulator-fixed";
|
||
|
regulator-name = "vcc12v_dcin";
|
||
|
regulator-always-on;
|
||
|
regulator-boot-on;
|
||
|
regulator-min-microvolt = <12000000>;
|
||
|
regulator-max-microvolt = <12000000>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&sdhci {
|
||
|
bus-width = <8>;
|
||
|
no-sdio;
|
||
|
no-sd;
|
||
|
non-removable;
|
||
|
max-frequency = <200000000>;
|
||
|
mmc-hs400-1_8v;
|
||
|
mmc-hs400-enhanced-strobe;
|
||
|
status = "okay";
|
||
|
};
|