Tool/software: Linux
Hi,
Presently i am using ti SDK, I want to integrate SD in Am4379-MMC0 interface and emmc flash in Am4379-MMC1, the emmc is SDIN8DE2-4G-XI of SANDISK,
1. I know i need to configure emmc host controller driver in linux, the conifguration is for drivers/mmc/host/omap_hsmmc.c, so i follow this:

2. I don't know whether I need the emmc flash driver for SDIN8DE2-4G-XI chip;
3. The following is my linux starting log:
#######drivers/mmc/host/omap_hsmmc.c omap_hsmmc_probe ***begin*****
###### omap_hsmmc_probe ***res = 0x48060000*****
omap_hsmmc 48060000.mmc: GPIO lookup for consumer cd
omap_hsmmc 48060000.mmc: using device tree for GPIO lookup
of_get_named_gpiod_flags: parsed 'cd-gpios' property of node '/ocp/mmc@48060000[0]' - status (0)
omap_hsmmc 48060000.mmc: Got CD GPIO
omap_hsmmc 48060000.mmc: GPIO lookup for consumer wp
omap_hsmmc 48060000.mmc: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/ocp/mmc@48060000[0]'
of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/ocp/mmc@48060000[0]'
omap_hsmmc 48060000.mmc: using lookup tables for GPIO lookup
omap_hsmmc 48060000.mmc: lookup for GPIO wp failed
#######drivers/mmc/host/omap_hsmmc.c omap_hsmmc_probe ***end*****
#######drivers/mmc/host/omap_hsmmc.c omap_hsmmc_probe ***begin*****
###### omap_hsmmc_probe ***res = 0x481d8000*****
omap_hsmmc 481d8000.mmc: GPIO lookup for consumer cd
omap_hsmmc 481d8000.mmc: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'cd-gpios' property of node '/ocp/mmc@481d8000[0]'
of_get_named_gpiod_flags: can't parse 'cd-gpio' property of node '/ocp/mmc@481d8000[0]'
omap_hsmmc 481d8000.mmc: using lookup tables for GPIO lookup
omap_hsmmc 481d8000.mmc: lookup for GPIO cd failed
omap_hsmmc 481d8000.mmc: GPIO lookup for consumer wp
omap_hsmmc 481d8000.mmc: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/ocp/mmc@481d8000[0]'
of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/ocp/mmc@481d8000[0]'
omap_hsmmc 481d8000.mmc: using lookup tables for GPIO lookup
omap_hsmmc 481d8000.mmc: lookup for GPIO wp failed
#######drivers/mmc/host/omap_hsmmc.c omap_hsmmc_probe ***end*****
4. The address 48060000 is for sd, 481d8000 is emmc flash address, i find the driver run completely;
5. When I login the file system, i only find the device node for SD, they are mmcblk0p1 and mmcblk0p2, but I can't find the device node for the emmac flash;
6. What's the problem, can you help me ?
Thank you!