/* Does DATA0 needs to be masked while the clock is updated */
        bool mask_data0;
 
-       /* hardware only supports new timing mode */
+       /*
+        * hardware only supports new timing mode, either due to lack of
+        * a mode switch in the clock controller, or the mmc controller
+        * is permanently configured in the new timing mode, without the
+        * NTSR mode switch.
+        */
        bool needs_new_timings;
 
-       /* hardware can switch between old and new timing modes */
-       bool has_timings_switch;
+       /* clock hardware can switch between old and new timing modes */
+       bool ccu_has_timings_switch;
 };
 
 struct sunxi_mmc_host {
                clock <<= 1;
        }
 
-       if (host->use_new_timings && host->cfg->has_timings_switch) {
+       if (host->use_new_timings && host->cfg->ccu_has_timings_switch) {
                ret = sunxi_ccu_set_mmc_timing_mode(host->clk_mmc, true);
                if (ret) {
                        dev_err(mmc_dev(mmc),
        /* update card clock rate to account for internal divider */
        rate /= div;
 
+       /*
+        * Configure the controller to use the new timing mode if needed.
+        * On controllers that only support the new timing mode, such as
+        * the eMMC controller on the A64, this register does not exist,
+        * and any writes to it are ignored.
+        */
        if (host->use_new_timings) {
                /* Don't touch the delay bits */
                rval = mmc_readl(host, REG_SD_NTSR);
        .idma_des_size_bits = 16,
        .clk_delays = sunxi_mmc_clk_delays,
        .can_calibrate = false,
-       .has_timings_switch = true,
+       .ccu_has_timings_switch = true,
 };
 
 static const struct sunxi_mmc_cfg sun9i_a80_cfg = {
                goto error_free_host;
        }
 
-       if (host->cfg->has_timings_switch) {
+       if (host->cfg->ccu_has_timings_switch) {
                /*
                 * Supports both old and new timing modes.
                 * Try setting the clk to new timing mode.