Use custom wifi on sdmmc1 instead of the default SDMMC2

Hi all,

I would like to use a custom wifi on sdmmc1 instead of the original wifi connected to sdmmc2 device.
I would like also to use the atwilc1000 15.2.1 driver module on it.
I tried to change the "tegra210-porg-p344i-common.dtsi file lines:

sdhci@700b0200 { /* SDMMC2 for Wifi */
		uhs-mask = <0x8>;
		power-off-rail;
		force-non-removable-rescan;
		status = "disabled";
	};

	sdhci@700b0000 { /* SDMMC1 for SD card */
		default-drv-type = <1>;
		cd-gpios = <&gpio TEGRA_GPIO(Z, 1) 0>;
		sd-uhs-sdr104;
		sd-uhs-sdr50;
		sd-uhs-sdr25;
		sd-uhs-sdr12;
		mmc-ddr-1_8v;
		mmc-hs200-1_8v;
		nvidia,cd-wakeup-capable;
		nvidia,update-pinctrl-settings;
		nvidia,pmc-wakeup = <&tegra_pmc PMC_WAKE_TYPE_GPIO 35
			PMC_TRIGGER_TYPE_NONE>;
		uhs-mask = <0xc>;
		no-sdio;
		no-mmc;
		disable-wp;
		status = "disabled";
	};

To the following:

sdhci@700b0400 {
		status = "disabled";
		/delete-property/ keep-power-in-suspend;
		/delete-property/ non-removable;
	};

	sdhci@700b0000 { /* SDMMC1 for Wifi */
		uhs-mask = <0xc>;
		power-off-rail;
		force-non-removable-rescan;
		status = "okay";
	};

Running the linux on customized board based on nvidia TX2 board, with wilc1000 kernel support, I verified that the wilc_sdio.ko driver was loaded but there is no wlan0 device found.

I gues that the modification is not working so far… could you please help me to configure the SCMMC1 to be used as WIFI and disable then the default WIFI used?

What kind of modifications shoul I do to make this working?

Thanks and best regards.