/* normal case, no cross section between start and end */
        if (likely(bcm_addr_is_sys_emi(end) || !bcm_addr_is_sys_emi(start))) {
-               l2x0_inv_range(new_start, new_end);
+               l2c210_inv_range(new_start, new_end);
                return;
        }
 
        /* They cross sections, so it can only be a cross from section
         * 2 to section 3
         */
-       l2x0_inv_range(new_start,
+       l2c210_inv_range(new_start,
                bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR-1));
-       l2x0_inv_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR),
+       l2c210_inv_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR),
                new_end);
 }
 
        if (unlikely(end <= start))
                return;
 
-       if ((end - start) >= l2x0_size) {
-               l2x0_clean_all();
-               return;
-       }
-
        new_start = bcm_l2_phys_addr(start);
        new_end = bcm_l2_phys_addr(end);
 
        /* normal case, no cross section between start and end */
        if (likely(bcm_addr_is_sys_emi(end) || !bcm_addr_is_sys_emi(start))) {
-               l2x0_clean_range(new_start, new_end);
+               l2c210_clean_range(new_start, new_end);
                return;
        }
 
        /* They cross sections, so it can only be a cross from section
         * 2 to section 3
         */
-       l2x0_clean_range(new_start,
+       l2c210_clean_range(new_start,
                bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR-1));
-       l2x0_clean_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR),
+       l2c210_clean_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR),
                new_end);
 }
 
                return;
 
        if ((end - start) >= l2x0_size) {
-               l2x0_flush_all();
+               outer_cache.flush_all();
                return;
        }
 
 
        /* normal case, no cross section between start and end */
        if (likely(bcm_addr_is_sys_emi(end) || !bcm_addr_is_sys_emi(start))) {
-               l2x0_flush_range(new_start, new_end);
+               l2c210_flush_range(new_start, new_end);
                return;
        }
 
        /* They cross sections, so it can only be a cross from section
         * 2 to section 3
         */
-       l2x0_flush_range(new_start,
+       l2c210_flush_range(new_start,
                bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR-1));
-       l2x0_flush_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR),
+       l2c210_flush_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR),
                new_end);
 }
 
+/* Broadcom L2C-310 start from ARMs R3P2 or later, and require no fixups */
 static const struct l2c_init_data of_bcm_l2x0_data __initconst = {
        .num_lock = 8,
        .of_parse = l2c310_of_parse,
        .enable = l2c_enable,
-       .fixup = l2c310_fixup,
        .save  = l2c310_save,
        .outer_cache = {
                .inv_range   = bcm_inv_range,