mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
mmc: sunxi: Add DM_MMC support for H6
Unlike other Allwinner SoC's, H6 uses a different MMC mod clock offset. Connect that with the respective compatible string. Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> Reviewed-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Andre Przywara <andre.przywara@arm.com>
This commit is contained in:
parent
a1925a64d5
commit
9e23338268
1 changed files with 12 additions and 0 deletions
|
@ -680,6 +680,10 @@ static const struct sunxi_mmc_variant sun4i_a10_variant = {
|
|||
.mclk_offset = 0x88,
|
||||
};
|
||||
|
||||
static const struct sunxi_mmc_variant sun50i_h6_variant = {
|
||||
.mclk_offset = 0x830,
|
||||
};
|
||||
|
||||
static const struct udevice_id sunxi_mmc_ids[] = {
|
||||
{
|
||||
.compatible = "allwinner,sun4i-a10-mmc",
|
||||
|
@ -705,6 +709,14 @@ static const struct udevice_id sunxi_mmc_ids[] = {
|
|||
.compatible = "allwinner,sun50i-a64-emmc",
|
||||
.data = (ulong)&sun4i_a10_variant,
|
||||
},
|
||||
{
|
||||
.compatible = "allwinner,sun50i-h6-mmc",
|
||||
.data = (ulong)&sun50i_h6_variant,
|
||||
},
|
||||
{
|
||||
.compatible = "allwinner,sun50i-h6-emmc",
|
||||
.data = (ulong)&sun50i_h6_variant,
|
||||
},
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue