EHL - EMMC
EHL - EMMC
Hello Octocontrabass
i am working on the EMMC interface, i am able to bring up the interface, use commands like send CSD etc,, but unable to read and write,, i am not able to the find SDMA descriptor format, so that i populate and start the transactions
i am working on the EMMC interface, i am able to bring up the interface, use commands like send CSD etc,, but unable to read and write,, i am not able to the find SDMA descriptor format, so that i populate and start the transactions
-
- Member
- Posts: 5512
- Joined: Mon Mar 25, 2013 7:01 pm
Re: EHL - EMMC
The EMMC interface is a standard PCI SD Host Controller Interface. The specification is available here. The "simplified" specification includes the DMA descriptor format, and I think it has everything you need to write a driver for the host controller. (You may need to look elsewhere for information about which commands an EMMC device will understand.)
Re: EHL - EMMC
what a fantastic suggestion,,, Thanks Thanks
i got EMMC working with No DMA, SDMA and ADMA
i got EMMC working with No DMA, SDMA and ADMA
Re: EHL - EMMC
hello Octocontrabass
RDC_636112, section 19 says emmc version 5.1 i suppose,
but the Host version register(0xfe) says 0x1002, i.e version 3(PartA2_SD Host_Controller_Simplified_Specification_Ver4.20.pdf)
i am little confused here
RDC_636112, section 19 says emmc version 5.1 i suppose,
but the Host version register(0xfe) says 0x1002, i.e version 3(PartA2_SD Host_Controller_Simplified_Specification_Ver4.20.pdf)
i am little confused here
-
- Member
- Posts: 5512
- Joined: Mon Mar 25, 2013 7:01 pm
Re: EHL - EMMC
The Host Controller Version register only tells you which version of SDHCI it supports. It doesn't tell you anything about eMMC.
I think you can support eMMC 5.1 using SDHCI 3.0, but I don't know how to tell for sure.
I think you can support eMMC 5.1 using SDHCI 3.0, but I don't know how to tell for sure.
Re: EHL - EMMC
Sorry this is the first time using this interface,,, why is SDHC mixed with emmc(what is the relation between them), even when EHL has separate SD controller
Re: EHL - EMMC
eMMC specification doesn't establish any HC interface standard (unfortunately) and SDA does establish such, but it's optional, so you may end up with an absolutely vendor specific HC at all. fortunately, often it's the SDHCI one for SD. 2 standards are close to each other, some commands are the same, that's why they mix. Almost always HC IP cores handle both standards, you need to read your SoC/chipset manual on what and how is the HC supposed to do. and I believe, you might want also to check for the eMMC specification in addition to the SDA's ones.
Re: EHL - EMMC
Hello Octocontrabass
is tuning required for HS400 mode ?
is tuning required for HS400 mode ?
-
- Member
- Posts: 5512
- Joined: Mon Mar 25, 2013 7:01 pm
Re: EHL - EMMC
Hello Octocontrabass:
After i get control from bootloader, i haver reset EMMC controller and did init,,, Switched to hs:200 mode and used command 21 to tune it and then changed to hS400
is this all that is required?
i have seen in slim bootloader doing additional things
https://github.com/slimbootloader/slimb ... cTuningLib
After i get control from bootloader, i haver reset EMMC controller and did init,,, Switched to hs:200 mode and used command 21 to tune it and then changed to hS400
is this all that is required?
i have seen in slim bootloader doing additional things
https://github.com/slimbootloader/slimb ... cTuningLib
-
- Member
- Posts: 5512
- Joined: Mon Mar 25, 2013 7:01 pm
Re: EHL - EMMC
I think so. Resetting the eMMC controller shouldn't reset its tuning, so only the eMMC device needs to be tuned.
It looks like it's tuning the eMMC controller. You can read about that in the tuning guide (document 641124).
Re: EHL - EMMC
1) sorry my question was incorrect
my intended question was after doing.. "i haver reset EMMC controller and did init,,, Switched to hs:200 mode and used command 21 to tune it and then changed to hS400"
is this DLL tuning what SBL is doing required ?
2) "Resetting the eMMC controller shouldn't reset its tuning, so only the eMMC device needs to be tune",, where is the tune data stored, that emmc can use after reset also
I have requested "document 641124" from intel,, thanks
my intended question was after doing.. "i haver reset EMMC controller and did init,,, Switched to hs:200 mode and used command 21 to tune it and then changed to hS400"
is this DLL tuning what SBL is doing required ?
2) "Resetting the eMMC controller shouldn't reset its tuning, so only the eMMC device needs to be tune",, where is the tune data stored, that emmc can use after reset also
I have requested "document 641124" from intel,, thanks
-
- Member
- Posts: 5512
- Joined: Mon Mar 25, 2013 7:01 pm
Re: EHL - EMMC
I don't think so, but I can't check the tuning guide right now.
The eMMC host controller and the eMMC chip both have their own set of registers for tuning. The tune data is stored in those registers. As far as I know, resetting the eMMC host controller doesn't reset its tune registers, but resetting the eMMC device might reset its tune registers.
The BIOS might also save a copy of the tune data for fast boot, but I don't know if you could use it.